/* VARS */

:root {
    --navbarHeight: 90px;
}

/* DEFAULTS */

html {
    height: 100%;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    background-color: #fff;
    font-family: "owners-text", "Arial", sans-serif;
    color: #000;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.43;
    overflow-x: hidden;
    /* max-width: 1360px; */
}

@media (max-width:991px) {
    body {
        font-size: 16px;
    }
}

img,
object,
embed {
    max-width: 100%;
}

a:hover,
a:focus,
a:active {
    outline: none !important;
}

strong,
b {
    font-weight: 500;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
    font-family: "owners-narrow", "Arial", sans-serif;
    color: #000;
    font-weight: 800;
    line-height: 0.87;
    margin: 0;
    text-transform: uppercase;
}

h1,
.h1 {
    font-size: 82px;
}

h2,
.h2 {
    font-size: 62px;
}

h3,
.h3 {
    font-size: 24px;
}

h4,
.h4,
h5,
.h5,
h6,
.h6 {
    font-size: 14px;
}

@media (max-width:991px) {

    h1,
    .h1 {
        font-size: 46px;
    }

    h2,
    .h2 {
        font-size: 36px;
    }
}


p {
    margin: 0;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color .3s ease;
}

textarea {
    resize: vertical;
}

img {
    max-width: 100%;
    height: auto;
}

picture {
    display: flex;
    /* height: auto; */
    height: 100%;
}

button {
    outline: none !important;
    background-color: transparent;
    cursor: pointer;
}

body.nav-opened {
    overflow: hidden;
}

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

*:before,
*:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
input[type=number] {
    -moz-appearance: textfield;
}

.container {
    position: relative;
    max-width: 1600px;
    margin: 0 auto;
    width: 100%;
    padding: 0 40px;
}

main {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    height: 100%;
    transition: padding .3s ease;
    /* max-width: 1360px; */
    margin: 0 auto;
}

.block-wrapper {
    max-width: 1390px;
    margin: 0 auto;
}

.grecaptcha-badge {
    display: none !important;
}

/* btns */

.btn {
    color: #000;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 1.07;
    padding: 18px 25px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 9px;
    border-radius: 8px;
    border: 2px solid transparent;
    transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease, opacity 0.3s ease;
    font-family: 'owners-xwide';
    text-transform: uppercase;
    letter-spacing: 1.92px;
}

.btn > svg,
.btn .icon-arrow {
    flex-shrink: 0;
    transition: transform 0.25s ease;
}

.btn-primary:hover,
.btn-primary:active,
.btn-primary:focus-within {
    background: #000;
    border-color: #000;
    color: #fff;
    opacity: 1;
}

.btn-primary:hover svg path,
.btn-primary:active svg path,
.btn-primary:focus-within svg path,
.btn-primary:hover svg line,
.btn-primary:active svg line,
.btn-primary:focus-within svg line {
    stroke: #fff;
}

.btn-tertiary:hover,
.btn-tertiary:active,
.btn-tertiary:focus-within,
.btn-custom:hover,
.btn-custom:active,
.btn-custom:focus-within {
    background: #ffc202;
    border-color: #ffc202;
    color: #000;
    opacity: 1;
}

.btn-tertiary:hover svg path,
.btn-tertiary:active svg path,
.btn-tertiary:focus-within svg path,
.btn-tertiary:hover svg line,
.btn-tertiary:active svg line,
.btn-tertiary:focus-within svg line {
    stroke: #000;
}

.btn svg path,
.btn svg line {
    transition: stroke 0.3s ease;
}

.btn-secondary:hover,
.btn-secondary:active,
.btn-secondary:focus-within {
    opacity: 0.8;
}

.btn:hover > svg,
.btn:active > svg,
.btn:focus-within > svg,
.btn:hover .icon-arrow,
.btn:active .icon-arrow,
.btn:focus-within .icon-arrow {
    transform: translateX(4px);
}

.btn-primary {
    background: #FFC202;
    border-color: #FFC202;
}

.btn-secondary {
    background: #EEE4DE;
    border-color: #EEE4DE;
}

.btn-tertiary {
    background: #000;
    border-color: #000;
    color: #fff;
}

.btn-custom {
    background: #E0E0E0;
    border-color: #E0E0E0;
}

.btn-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

@media (max-width:479px) {
    .btn {
        width: 100%;
        justify-content: space-between;
    }
}

/* 404: grow to fill <main> (between fixed nav + footer), center content */

.error-page {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    min-height: 0;
    padding: 24px 0;
    box-sizing: border-box;
}

.error-page .container {
    display: flex;
    justify-content: center;
    width: 100%;
}

.error-page .error-page-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
}

/* nav sticky */

.navbar-default {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    -webkit-transition: top .3s ease, box-shadow .3s ease, background .3s ease;
    transition: top .3s ease, box-shadow .3s ease, background .3s ease;
    z-index: 1002;
}

body.admin-bar .navbar-default {
    top: 32px;
}

.navbar-sticky .navbar-default {
    background: rgba(0, 0, 0, 0.75);
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
}

.navbar-sticky .nav-wrapper {
    padding: 20px 0;
}

/* nav sticky */

/* nav */

.nav-wrapper {
    padding: 40px 0;
    transition: padding .3s ease;
}

.nav-wrapper-inner {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    transition: max-height .3s ease;
    max-height: 500px;
}

.nav-wrapper .main-logo {
    transition: transform .3s ease, opacity .3s ease;
    position: relative;
    z-index: 9;
    transform-origin: left top;
}

.nav-wrapper .main-logo img {
    transition: opacity .3s ease;
}

.navbar-sticky .main-logo {
    transform: scale(0.2);
}

.nav-wrapper .hamburger {
    display: none;
}

.navbar-sticky .nav-wrapper-inner {
    max-height: 50px;
    align-items: normal;
}

.nav-primary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.navbar-nav {
    display: flex;
    align-items: center;
    list-style-type: none;
    gap: 32px;
    padding: 0;
    margin: 0;
    scrollbar-width: thin;
}

.navbar-nav a {
    text-transform: uppercase;
    font-size: 13px;
    padding: 20px 0;
    font-weight: 500;
    letter-spacing: 2.08px;
    font-family: 'owners-xwide';
    color: #fff;
}

.navbar-nav li.active a,
.navbar-nav a:hover {
    color: #FFCD22;
}

@media (min-width:1200px) {
    .hamburger-logo {
        display: none;
    }

    .nav-btn {
        display: none;
    }
}

@media (max-width:1199px) {

    .container {
        padding: 0 20px;
    }

    .navbar-sticky .nav-wrapper {
        padding: 0 0 24px;
    }

    .nav-primary {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        transform: translateX(100%);
        transition: transform .3s ease;
        background-color: #000;
        height: 100dvh;
        padding: 25px;
    }

    .nav-primary.active {
        transform: translateX(0);
    }

    .navbar-nav li.active a,
    .navbar-nav a:hover {
        color: #FFC202;
    }

    .nav-wrapper .main-logo {
        max-width: 115px
    }

    .navbar-sticky .main-logo {
        transform: scale(0.4);
    }

    .nav-wrapper {
        padding: 0;
    }

    .nav-wrapper-inner {
        padding: 12px 0;
    }

    .nav-wrapper .hamburger {
        display: none;
        flex-direction: column;
        cursor: pointer;
        z-index: 99;
    }

    .nav-wrapper .bar {
        width: 23px;
        height: 2px;
        background-color: #FDF8F4;
        margin: 4px 0;
        transition: 0.4s;
    }

    .nav-wrapper .hamburger {
        display: flex;
    }

    .nav-primary {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 100%;
    }

    .navbar-nav {
        display: flex;
        flex-direction: column;
        gap: 16px;
        height: 100%;
    }

    .navbar-nav li {
        text-align: center;
    }

    .navbar-nav a {
        font-size: 20px;
        letter-spacing: 3.2px;
        line-height: 1.97;
    }

    .nav-menu-wrapper {
        width: 100%;
        padding: 0;
    }

    .nav-menu-wrapper nav {
        transform: translateX(100%);
        transition: transform .3s ease;
        position: absolute;
        left: 0;
        top: 0;
        z-index: 99;
        width: 100%;
    }

    .nav-menu-wrapper.active nav {
        transform: translateX(0);
    }

    .nav-wrapper .bar.active:nth-child(1) {
        transform: rotate(-45deg) translate(-3px, 4px);
    }

    .nav-wrapper .bar.active:nth-child(2) {
        transform: rotate(45deg) translate(-4px, -4px);
    }

    .nav-menu-wrapper {
        border-bottom: 0;
    }

    .menu-navigation-container {
        margin-top: auto;
        margin-bottom: auto;
    }

    .hidden-mobile {
        display: none;
    }
}

/* nav */

@media (min-width:992px) {

    .hide-desktop {
        display: none;
    }
}

@media (max-width:991px) {

    .container {
        padding: 0 16px;
    }
    
    .hide-mobile {
        display: none;
    }
}

.headline {
    font-size: 13px;
    font-family: 'owners-xwide';
    letter-spacing: 1.3px;
    text-transform: uppercase;
    font-weight: 500;
}

.bg-beige {
    background-color: #EEE4DE;
}


/* footer */

footer {
    padding: 60px 0;
    background-color: #000;
    color: #fff;
}

.footer-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 16px;
}

.footer-wrapper .footer-logo {
    width: calc(30% - 12px);
}

.footer-wrapper .footer-logo img {
    max-width: 145px;
    width: 100%;
    height: auto;
}

.footer-wrapper .footer-text {
    width: calc(40% - 12px);
    font-size: 27px;
    font-family: 'owners-wide';
    font-weight: 500;
    line-height: 1.07;
}

.footer-wrapper .footer-menu {
    width: calc(15% - 12px);
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-wrapper .footer-menu-title {
    color: rgba(253, 248, 244, 0.60);
    font-family: "owners-xwide";
    font-size: 13px;
    font-weight: 500;
    line-height: 1.27;
    letter-spacing: 1.3px;
    text-transform: uppercase;
}

.footer-wrapper .footer-menu ul {
    display: flex;
    flex-direction: column;
    gap: 0;
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.footer-wrapper .footer-menu ul a {
    text-transform: uppercase;
    color: #fff;
    font-size: 12px;
    line-height: 1.77;
    letter-spacing: 1.92px;
    font-family: 'owners-xwide';
    transition: color 0.2s ease;
}

.footer-wrapper .footer-menu ul a:hover,
.footer-wrapper .footer-menu ul a:focus-visible {
    color: #FFC202;
}

@media (max-width:1199px) {
    .footer-wrapper .footer-logo {
        width: calc(20% - 12px);
    }

    .footer-wrapper .footer-text {
        width: calc(35% - 12px);
    }

    .footer-wrapper .footer-menu {
        width: calc(22.5% - 12px);
    }
}


@media (max-width:991px) {

    footer {
        padding: 46px 0;
    }

    .footer-wrapper {
        flex-wrap: wrap;
        gap: 32px;
    }

    .footer-wrapper .footer-logo,
    .footer-wrapper .footer-text,
    .footer-wrapper .footer-menu {
        width: 100%;
    }

    .footer-wrapper .footer-text {
        font-size: 22px;
    }
}

/* footer */

section {
    position: relative;
}

.block-anchor {
    position: absolute;
    top: calc(var(--navbarHeight) * -1);
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Scroll reveal (front end only): .scroll-reveal-skip = instant; .scroll-reveal-el--N = staged order */
@media (prefers-reduced-motion: no-preference) {
    body.scroll-reveal-enabled main section .scroll-reveal-skip {
        opacity: 1;
        transform: none;
        transition: none;
    }

    body.scroll-reveal-enabled main section .scroll-reveal-el {
        opacity: 0;
        transform: translate3d(0, 16px, 0);
        transition:
            opacity 1.25s cubic-bezier(0.22, 1, 0.36, 1),
            transform 1.25s cubic-bezier(0.22, 1, 0.36, 1);
    }

    body.scroll-reveal-enabled main section .scroll-reveal-el--1 {
        transition-delay: 0s;
    }

    body.scroll-reveal-enabled main section .scroll-reveal-el--2 {
        transition-delay: 0.22s;
    }

    body.scroll-reveal-enabled main section .scroll-reveal-el--3 {
        transition-delay: 0.44s;
    }

    body.scroll-reveal-enabled main section .scroll-reveal-el--4 {
        transition-delay: 0.66s;
    }

    body.scroll-reveal-enabled main section .scroll-reveal-el--5 {
        transition-delay: 0.88s;
    }

    body.scroll-reveal-enabled main section .scroll-reveal-el--6 {
        transition-delay: 1.1s;
    }

    body.scroll-reveal-enabled main section.scroll-reveal--visible .scroll-reveal-el {
        opacity: 1;
        transform: none;
    }

    /* Sections without staged elements: stagger top-level blocks only */
    body.scroll-reveal-enabled main section:not(:has(.scroll-reveal-el)) > *:not(.scroll-reveal-skip) {
        opacity: 0;
        transform: translate3d(0, 16px, 0);
        transition:
            opacity 1.25s cubic-bezier(0.22, 1, 0.36, 1),
            transform 1.25s cubic-bezier(0.22, 1, 0.36, 1);
    }

    body.scroll-reveal-enabled main section:not(:has(.scroll-reveal-el)) > *:not(.scroll-reveal-skip):nth-child(1) {
        transition-delay: 0s;
    }

    body.scroll-reveal-enabled main section:not(:has(.scroll-reveal-el)) > *:not(.scroll-reveal-skip):nth-child(2) {
        transition-delay: 0.22s;
    }

    body.scroll-reveal-enabled main section:not(:has(.scroll-reveal-el)) > *:not(.scroll-reveal-skip):nth-child(3) {
        transition-delay: 0.44s;
    }

    body.scroll-reveal-enabled main section:not(:has(.scroll-reveal-el)) > *:not(.scroll-reveal-skip):nth-child(4) {
        transition-delay: 0.66s;
    }

    body.scroll-reveal-enabled main section:not(:has(.scroll-reveal-el)) > *:not(.scroll-reveal-skip):nth-child(5) {
        transition-delay: 0.88s;
    }

    body.scroll-reveal-enabled main section:not(:has(.scroll-reveal-el)) > *:not(.scroll-reveal-skip):nth-child(n + 6) {
        transition-delay: 1.1s;
    }

    body.scroll-reveal-enabled main section.scroll-reveal--visible:not(:has(.scroll-reveal-el)) > *:not(.scroll-reveal-skip) {
        opacity: 1;
        transform: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    body.scroll-reveal-enabled main section .scroll-reveal-el,
    body.scroll-reveal-enabled main section:not(:has(.scroll-reveal-el)) > *:not(.scroll-reveal-skip) {
        opacity: 1;
        transform: none;
        transition: none;
    }
}