/*=========================================
GOOGLE FONTS
=========================================*/

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Inter:wght@300;400;500;600;700;800&display=swap');

/*=========================================
RESET
=========================================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    font-family:'Inter',sans-serif;

    background:#F8F5EF;

    color:#2B2B2B;

    overflow-x:hidden;

}

img{
    max-width:100%;
    display:block;
}

a{
    text-decoration:none;
}

ul{
    list-style:none;
}

/*=========================================
CONTAINER
=========================================*/

.container{

    width:100%;

    max-width:1400px;

    margin:auto;

    display:flex;

    align-items:center;

    justify-content:space-between;

    padding:18px 35px;

}

/*=========================================
HEADER
=========================================*/

.header{

    position:fixed;

    top:22px;

    left:50%;

    transform:translateX(-50%);

    width:92%;

    max-width:1450px;

    z-index:9999;

    border-radius:22px;

    background:rgba(255, 255, 255, 0.72);

    backdrop-filter:blur(18px);

    -webkit-backdrop-filter:blur(18px);

    border:1px solid rgba(198,166,100,.25);

    transition:.4s ease;

    box-shadow:

    0 15px 40px rgba(0,0,0,.05),

    inset 0 1px rgba(255,255,255,.45);

}

/*=========================================
HEADER ON SCROLL
=========================================*/

.header.scrolled{

    background:rgba(248,245,239,.95);

    box-shadow:

    0 18px 50px rgba(0,0,0,.08);

}

/*=========================================
LOGO
=========================================*/

.logo{

    display:flex;

    align-items:center;

}

.logo img{

    height:82px;

    width:auto;

    transition:.3s;

}

.logo:hover img{

    transform:scale(1.03);

}

/*=========================================
NAVBAR
=========================================*/

.navbar{

    display:flex;

    align-items:center;

}

/*=========================================
NAV LINKS
=========================================*/

.nav-links{

    display:flex;

    align-items:center;

    gap:48px;

}

.nav-links li{

    position:relative;

}

.nav-links a{

    color:#1B4332;

    font-size:17px;

    font-weight:600;

    letter-spacing:.4px;

    transition:.3s;

    position:relative;

}

/* Premium Underline */

.nav-links a::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-10px;

    width:0;

    height:2px;

    background:#C6A664;

    transition:.35s;

}

.nav-links a:hover::after,

.nav-links a.active::after{

    width:100%;

}

.nav-links a:hover{

    color:#0F3325;

}

/*=========================================
RIGHT SIDE
=========================================*/

.header-right{

    display:flex;

    align-items:center;

    gap:22px;

}

/*=========================================
REQUEST BUTTON
=========================================*/

.quote-btn{

    background:#1B4332;

    color:#fff;

    padding:15px 32px;

    border-radius:50px;

    font-size:15px;

    font-weight:600;

    border:1px solid rgba(198,166,100,.25);

    transition:.35s;

}

.quote-btn:hover{

    background:#143827;

    transform:translateY(-3px);

    box-shadow:

    0 12px 25px rgba(27,67,50,.18);

}

/*=========================================
MENU BUTTON
=========================================*/

.menu-btn{

    display:none;

    font-size:24px;

    cursor:pointer;

    color:#1B4332;

}

/*=========================================
RESPONSIVE
=========================================*/
/* =====================================================
   PREMIUM COMPACT MOBILE MENU
   ===================================================== */

@media (max-width: 991px){

    .navbar{
        position: fixed;

        top: 88px;
        right: 2.5%;

        width: 300px;
        height: auto;
        max-height: calc(100vh - 110px);

        padding: 18px 24px;

        background: #F3EFE6;

        border: 1px solid rgba(198,166,100,.28);
        border-radius: 14px;

        box-shadow:
            0 20px 50px rgba(0,0,0,.14),
            0 4px 15px rgba(0,0,0,.05);

        display: block;

        transform: translateY(-12px) scale(.97);
        opacity: 0;
        visibility: hidden;

        transition:
            opacity .3s ease,
            transform .35s cubic-bezier(.22,.61,.36,1),
            visibility .3s ease;

        z-index: 100000;
    }

    .navbar.active{
        transform: translateY(0) scale(1);
        opacity: 1;
        visibility: visible;
    }


    /* NAVIGATION */

    .nav-links{
        width: 100%;

        display: flex;
        flex-direction: column;

        gap: 0;
    }

    .nav-links li{
        width: 100%;
        border-bottom: 1px solid rgba(27,67,50,.08);
    }

    .nav-links li:last-child{
        border-bottom: none;
    }


    /* LINKS */

    .nav-links a{
        display: flex;
        align-items: center;

        width: 100%;
        height: 47px;

        padding: 0 5px;

        color: #1B4332;

        font-size: 14px;
        font-weight: 600;
        letter-spacing: .15px;

        transition:
            color .25s ease,
            padding-left .25s ease;
    }

    .nav-links a::after{
        display: none;
    }

    .nav-links a:hover,
    .nav-links a.active{
        color: #C6A664;
        padding-left: 9px;
    }


    /* SMALL GOLD ACTIVE MARK */

    .nav-links a::before{
        content: "";

        width: 3px;
        height: 0;

        margin-right: 0;

        background: #C6A664;

        transition: height .25s ease;
    }

    .nav-links a:hover::before,
    .nav-links a.active::before{
        height: 15px;
        margin-right: 7px;
    }


    /* HAMBURGER */

    .menu-btn{
        display: flex;
        align-items: center;
        justify-content: center;

        width: 40px;
        height: 40px;

        padding: 0;

        background: transparent;
        border: 0;

        color: #1B4332;
        font-size: 21px;

        position: relative;
        z-index: 100001;
    }

    .menu-btn i{
        transition: transform .3s ease;
    }

    .menu-btn.active i{
        transform: rotate(90deg);
    }


    /* HEADER */

    .header{
        width: 95%;
        top: 16px;
        border-radius: 18px;
    }

    .header .container{
        min-height: 70px;
        padding: 7px 18px;
    }

    .logo img{
        height: 62px;
    }

    .quote-btn{
        display: none;
    }
}


/* SMALL PHONES */

@media (max-width: 576px){

    .navbar{
        top: 78px;
        right: 3%;

        width: 275px;

        padding: 14px 20px;

        border-radius: 13px;
    }

    .nav-links a{
        height: 44px;
        font-size: 13.5px;
    }

    .header{
        top: 12px;
        width: 94%;
    }

    .header .container{
        min-height: 64px;
        padding: 6px 16px;
    }

    .logo img{
        height: 57px;
    }

    .menu-btn{
        width: 38px;
        height: 38px;
        font-size: 19px;
    }
}
/*=========================================
HERO SECTION
=========================================*/
/* =========================================
   HERO SECTION
========================================= */
/* =========================================
   HERO SECTION
========================================= */

.hero {
    position: relative;

    width: 100%;
    height: 100vh;
    min-height: 650px;

    display: flex;
    align-items: center;

    overflow: hidden;

    padding: 0;

    /* ORIGINAL HERO IMAGE */
    background-image: url("../images/hero.png");
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
}


/* =========================================
   HERO OVERLAY
   Transparent so image colors stay original
========================================= */

.hero-overlay {
    position: absolute;
    inset: 0;

    z-index: 1;

    background: transparent;

    pointer-events: none;
}


/* =========================================
   HERO CONTAINER
========================================= */

.hero-container {
    position: relative;
    z-index: 2;

    width: 100%;
    max-width: 1400px;

    height: 100%;

    margin: 0 auto;

    padding: 40px 50px;

    display: flex;
    align-items: center;
}


/* =========================================
   HERO CONTENT
========================================= */

.hero-content {
    width: 58%;
    max-width: 720px;
}


/* =========================================
   SUBTITLE
========================================= */

.hero-subtitle {
    display: inline-block;

    margin-bottom: 20px;

    color: #020500;

    font-size: 13px;
    font-weight: 700;

    letter-spacing: 3px;

    text-transform: uppercase;
}


/* =========================================
   HERO HEADING
========================================= */

.hero h1 {
    margin: 0 0 25px;

    font-family: "Cormorant Garamond", serif;

    font-size: clamp(48px, 5.5vw, 78px);

    line-height: 1.02;

    font-weight: 600;

    letter-spacing: -1px;

    color: #1B4332;
}


/* =========================================
   HERO PARAGRAPH
========================================= */

.hero p {
    max-width: 650px;

    margin: 0 0 14px;

    font-family: "Inter", sans-serif;

    font-size: 17px;

    line-height: 1.8;

    font-weight: 400;

    color: #ffffff;
}

.hero p:last-of-type {
    margin-bottom: 0;
}


/* =========================================
   HERO BUTTONS
========================================= */

.hero-buttons {
    display: flex;

    align-items: center;

    gap: 16px;

    margin-top: 32px;
}


/* =========================================
   PRIMARY BUTTON
========================================= */

.hero-btn {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-height: 54px;

    padding: 0 32px;

    background: #1B4332;

    color: #FFFFFF;

    border: 1px solid #1B4332;

    border-radius: 50px;

    font-size: 15px;

    font-weight: 600;

    transition:
        transform 0.3s ease,
        background 0.3s ease,
        box-shadow 0.3s ease;
}

.hero-btn:hover {
    background: #143827;

    transform: translateY(-3px);

    box-shadow:
        0 12px 28px rgba(27, 67, 50, 0.20);
}


/* =========================================
   OUTLINE BUTTON
========================================= */

.hero-outline-btn {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-height: 54px;

    padding: 0 32px;

    background: transparent;

    color: #ffffff;

    border: 1px solid #C6A664;

    border-radius: 50px;

    font-size: 15px;

    font-weight: 600;

    transition:
        transform 0.3s ease,
        background 0.3s ease,
        color 0.3s ease,
        box-shadow 0.3s ease;
}

.hero-outline-btn:hover {
    background: #C6A664;

    color: #FFFFFF;

    transform: translateY(-3px);

    box-shadow:
        0 12px 28px rgba(198, 166, 100, 0.20);
}


/* =========================================
   REMOVE FLOATING IMAGE
========================================= */

.hero-image {
    display: none !important;
}


/* =========================================
   LAPTOP
========================================= */

@media (min-width: 992px) and (max-width: 1400px) {

    .hero {
        background-position: center right;
    }

    .hero-container {
        padding-left: 40px;
        padding-right: 40px;
    }

    .hero-content {
        width: 60%;
    }

}


/* =========================================
   SHORT LAPTOP SCREENS
========================================= */

@media (min-width: 992px) and (max-height: 800px) {

    .hero {
        height: 100vh;
        min-height: 600px;

        padding: 0;
    }

    .hero-container {
        padding-top: 30px;
        padding-bottom: 30px;
    }

    .hero h1 {
        font-size: clamp(46px, 5vw, 64px);

        margin-bottom: 18px;
    }

    .hero p {
        font-size: 15px;

        line-height: 1.65;
    }

    .hero-buttons {
        margin-top: 24px;
    }

    .hero-btn,
    .hero-outline-btn {
        min-height: 50px;

        padding-left: 28px;
        padding-right: 28px;
    }

}


/* =========================================
   LARGE TABLETS
========================================= */

@media (max-width: 991px) {

    .hero {
        height: 100vh;

        min-height: 680px;

        padding: 0;

        background-position: center center;
    }

    .hero-container {
        height: 100%;

        padding: 100px 40px 45px;

        align-items: center;
    }

    .hero-content {
        width: 70%;

        max-width: 650px;
    }

    .hero h1 {
        font-size: clamp(46px, 7vw, 64px);

        line-height: 1.03;
    }

    .hero p {
        font-size: 16px;

        line-height: 1.75;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .hero {
        width: 100%;

        height: 100svh;

        min-height: 680px;

        padding: 0;

        display: flex;

        align-items: center;

        overflow: hidden;

        /* SAME ORIGINAL IMAGE */
        background-image: url("../images/hero.png");

        background-size: cover;

        background-position: center center;

        background-repeat: no-repeat;
    }


    /* No image color modification */

    .hero-overlay {
        background: transparent;
    }


    .hero-container {
        width: 100%;

        height: 100%;

        padding: 105px 20px 30px;

        display: flex;

        align-items: center;
    }


    .hero-content {
        width: 100%;

        max-width: 600px;
    }


    .hero-subtitle {
        margin-bottom: 14px;

        font-size: 10px;

        line-height: 1.4;

        letter-spacing: 1.8px;
    }


    .hero h1 {
        margin-bottom: 18px;

        font-size: clamp(40px, 11.5vw, 56px);

        line-height: 1.02;

        letter-spacing: -0.5px;
    }


    .hero p {
        max-width: 550px;

        margin-bottom: 10px;

        font-size: 14px;

        line-height: 1.65;
    }


    .hero-buttons {
        width: 100%;

        max-width: 330px;

        margin-top: 24px;

        display: flex;

        flex-direction: column;

        align-items: stretch;

        gap: 10px;
    }


    .hero-btn,
    .hero-outline-btn {
        width: 100%;

        min-height: 50px;

        padding: 0 20px;

        font-size: 13px;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {

    .hero {
        height: 100svh;

        min-height: 650px;

        padding: 0;

        /* SAME IMAGE - NO COLOR CHANGE */
        background-image: url("../images/hero.png");

        background-size: cover;

        background-position: center center;
    }


    .hero-container {
        padding: 100px 16px 25px;
    }


    .hero-subtitle {
        font-size: 9px;

        letter-spacing: 1.5px;

        margin-bottom: 12px;
    }


    .hero h1 {
        font-size: 42px;

        line-height: 1.03;

        letter-spacing: -0.4px;

        margin-bottom: 16px;
    }


    .hero p {
        font-size: 13px;

        line-height: 1.58;

        margin-bottom: 8px;
    }


    .hero-buttons {
        width: 100%;

        max-width: none;

        margin-top: 20px;

        gap: 9px;
    }


    .hero-btn,
    .hero-outline-btn {
        min-height: 49px;

        font-size: 12px;
    }

}


/* =========================================
   VERY SMALL PHONES
========================================= */

@media (max-width: 360px) {

    .hero {
        min-height: 620px;

        background-position: center center;
    }


    .hero-container {
        padding: 95px 15px 20px;
    }


    .hero-subtitle {
        font-size: 8.5px;

        letter-spacing: 1.3px;
    }


    .hero h1 {
        font-size: 37px;

        line-height: 1.02;

        margin-bottom: 14px;
    }


    .hero p {
        font-size: 12px;

        line-height: 1.55;
    }


    .hero-buttons {
        margin-top: 17px;
    }


    .hero-btn,
    .hero-outline-btn {
        min-height: 46px;

        font-size: 11px;
    }

}


/* =========================================
   WHY FOXONATURALS
   PREMIUM FULL-SCREEN SECTION
========================================= */

.why-foxonaturals {
    position: relative;

    width: 100%;
    height: 100vh;
    height: 100svh;

    min-height: 650px;

    display: flex;
    align-items: center;

    background: #F8F5EF;
    color: #2B2B2B;

    overflow: hidden;
}


/* =========================================
   MAIN CONTAINER
========================================= */

.why-container {
    width: 100%;
    max-width: 1280px;

    height: auto;

    margin: 0 auto;

    padding: 55px 40px;

    display: flex;
    flex-direction: column;
}


/* =========================================
   HEADER AREA
========================================= */

.why-heading {
    display: grid;

    grid-template-columns: 1.05fr .95fr;

    align-items: end;

    gap: 90px;

    padding-bottom: 35px;

    border-bottom: 1px solid rgba(27, 67, 50, 0.14);
}


/* =========================================
   EYEBROW
========================================= */

.why-eyebrow {
    display: block;

    margin-bottom: 13px;

    color: #C6A664;

    font-family: "Inter", sans-serif;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 3px;

    line-height: 1;

    text-transform: uppercase;
}


/* =========================================
   MAIN HEADING
========================================= */

.why-heading h2 {
    margin: 0;

    max-width: 650px;

    color: #1B4332;

    font-family: "Cormorant Garamond", serif;

    font-size: clamp(48px, 5vw, 70px);

    font-weight: 600;

    line-height: .96;

    letter-spacing: -1.5px;
}


/* =========================================
   INTRODUCTION
========================================= */

.why-heading-right {
    max-width: 490px;

    padding-bottom: 3px;
}

.why-heading-right p {
    margin: 0 0 9px;

    color: #555;

    font-family: "Inter", sans-serif;

    font-size: 14px;

    font-weight: 400;

    line-height: 1.65;
}

.why-heading-right p:last-child {
    margin-bottom: 0;

    color: #777;
}


/* =========================================
   FEATURES GRID
========================================= */

.why-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    margin-top: 24px;

    border-top: 1px solid rgba(27, 67, 50, 0.12);
    border-left: 1px solid rgba(27, 67, 50, 0.12);
}


/* =========================================
   FEATURE CARD
========================================= */

.why-card {
    position: relative;

    height: 145px;

    padding: 20px 23px;

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    background: rgba(255, 255, 255, 0.16);

    border-right: 1px solid rgba(27, 67, 50, 0.12);
    border-bottom: 1px solid rgba(27, 67, 50, 0.12);

    transition:
        background .25s ease,
        transform .25s ease;
}


/* =========================================
   CARD HOVER
========================================= */

.why-card:hover {
    background: rgba(255, 255, 255, 0.7);

    transform: translateY(-2px);
}


/* =========================================
   NUMBER
========================================= */

.why-number {
    display: block;

    color: #C6A664;

    font-family: "Inter", sans-serif;

    font-size: 9px;

    font-weight: 600;

    letter-spacing: 1.5px;
}


/* =========================================
   CARD CONTENT
========================================= */

.why-card-content {
    max-width: 360px;
}


/* =========================================
   CARD TITLE
========================================= */

.why-card h3 {
    margin: 0 0 7px;

    color: #174936;

    font-family: "Cormorant Garamond", serif;

    font-size: 26px;

    font-weight: 600;

    line-height: 1;

    letter-spacing: -.2px;
}


/* =========================================
   CARD DESCRIPTION
========================================= */

.why-card p {
    margin: 0;

    max-width: 370px;

    color: #666;

    font-family: "Inter", sans-serif;

    font-size: 11.5px;

    font-weight: 400;

    line-height: 1.5;
}


/* =========================================
   LAPTOP
========================================= */

@media (min-width: 992px) and (max-height: 800px) {

    .why-foxonaturals {
        min-height: 600px;
    }

    .why-container {
        padding-top: 38px;
        padding-bottom: 38px;
    }

    .why-heading {
        padding-bottom: 24px;

        gap: 70px;
    }

    .why-eyebrow {
        margin-bottom: 10px;

        font-size: 9px;
    }

    .why-heading h2 {
        font-size: 50px;
    }

    .why-heading-right p {
        font-size: 12px;

        line-height: 1.5;
    }

    .why-grid {
        margin-top: 18px;
    }

    .why-card {
        height: 118px;

        padding: 14px 18px;
    }

    .why-card h3 {
        font-size: 22px;

        margin-bottom: 5px;
    }

    .why-card p {
        font-size: 10px;

        line-height: 1.4;
    }

}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

    .why-foxonaturals {
        min-height: 650px;
    }

    .why-container {
        padding: 45px 30px;
    }

    .why-heading {
        grid-template-columns: 1fr 1fr;

        gap: 35px;

        padding-bottom: 25px;
    }

    .why-heading h2 {
        font-size: 48px;
    }

    .why-heading-right p {
        font-size: 12px;

        line-height: 1.55;
    }

    .why-grid {
        margin-top: 18px;
    }

    .why-card {
        height: 125px;

        padding: 15px 17px;
    }

    .why-card h3 {
        font-size: 21px;
    }

    .why-card p {
        font-size: 9.5px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .why-foxonaturals {
        height: 100svh;

        min-height: 600px;

        align-items: center;
    }

    .why-container {
        padding: 25px 16px;
    }


    /* Heading */

    .why-heading {
        display: block;

        padding-bottom: 16px;
    }

    .why-eyebrow {
        margin-bottom: 8px;

        font-size: 8px;

        letter-spacing: 2px;
    }

    .why-heading h2 {
        font-size: 38px;

        line-height: .98;

        letter-spacing: -.6px;
    }

    .why-heading-right {
        margin-top: 13px;

        max-width: 100%;
    }

    .why-heading-right p {
        margin-bottom: 4px;

        font-size: 10px;

        line-height: 1.45;
    }


    /* 2 x 3 grid */

    .why-grid {
        grid-template-columns: repeat(2, 1fr);

        margin-top: 14px;
    }

    .why-card {
        height: 104px;

        padding: 11px 12px;
    }

    .why-number {
        font-size: 7px;

        letter-spacing: 1px;
    }

    .why-card h3 {
        margin-bottom: 4px;

        font-size: 18px;

        line-height: .98;
    }

    .why-card p {
        font-size: 8px;

        line-height: 1.35;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {

    .why-container {
        padding: 20px 13px;
    }

    .why-heading {
        padding-bottom: 13px;
    }

    .why-heading h2 {
        font-size: 34px;
    }

    .why-heading-right {
        margin-top: 10px;
    }

    .why-heading-right p {
        font-size: 9px;

        line-height: 1.4;
    }

    .why-grid {
        margin-top: 11px;
    }

    .why-card {
        height: 94px;

        padding: 9px 10px;
    }

    .why-card h3 {
        font-size: 16px;
    }

    .why-card p {
        font-size: 7.3px;

        line-height: 1.3;
    }

}


/* =========================================
   VERY SMALL PHONES
========================================= */

@media (max-width: 360px) {

    .why-container {
        padding: 17px 10px;
    }

    .why-heading h2 {
        font-size: 30px;
    }

    .why-heading-right p {
        font-size: 8px;
    }

    .why-card {
        height: 88px;

        padding: 8px 9px;
    }

    .why-card h3 {
        font-size: 15px;
    }

    .why-card p {
        font-size: 6.8px;
    }

}
/* =========================================
   WHY FOXONATURALS
========================================= */

.why-foxonaturals {
    position: relative;

    width: 100%;
    height: 100vh;
    height: 100svh;

    min-height: 650px;

    display: flex;
    align-items: center;

    background: #F8F5EF;
    color: #2B2B2B;

    overflow: hidden;
}


/* =========================================
   MAIN CONTAINER
========================================= */

.why-container {
    width: 100%;
    max-width: 1580px;

    margin: 0 auto;

    padding: 40px 35px;

    display: grid;

    grid-template-columns: 0.82fr 1.18fr;

    gap: 85px;

    align-items: center;
}


/* =========================================
   LEFT CONTENT
========================================= */

.why-intro {
    width: 100%;
    max-width: 620px;

    display: flex;
    flex-direction: column;
    align-items: flex-start;
}


/* =========================================
   EYEBROW
========================================= */

.why-eyebrow {
    display: block;

    margin-bottom: 20px;

    color: #C6A664;

    font-family: "Inter", sans-serif;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 3.5px;

    line-height: 1;

    text-transform: uppercase;
}


/* =========================================
   MAIN HEADING
========================================= */

.why-intro h2 {
    margin: 0;

    max-width: 620px;

    color: #1B4332;

    font-family: "Cormorant Garamond", serif;

    font-size: clamp(68px, 5.2vw, 88px);

    font-weight: 600;

    line-height: 0.94;

    letter-spacing: -2px;
}


/* =========================================
   DESCRIPTION
========================================= */

.why-description {
    margin-top: 34px;

    max-width: 560px;
}

.why-description p {
    margin: 0;

    color: #5D5D5D;

    font-family: "Inter", sans-serif;

    font-size: 17px;

    font-weight: 400;

    line-height: 1.7;
}


/* =========================================
   REQUEST QUOTE
========================================= */

.why-quote-btn {
    margin-top: 32px;

    min-height: 58px;

    padding: 0 32px;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 20px;

    background: #1B4332;

    color: #FFFFFF;

    border: 1px solid #1B4332;

    border-radius: 50px;

    font-family: "Inter", sans-serif;

    font-size: 15px;

    font-weight: 600;

    text-decoration: none;

    transition:
        background .3s ease,
        transform .3s ease,
        box-shadow .3s ease;
}

.why-quote-btn span {
    font-size: 22px;

    line-height: 1;
}

.why-quote-btn:hover {
    background: #143827;

    transform: translateY(-3px);

    box-shadow:
        0 12px 30px rgba(27, 67, 50, .18);
}


/* =========================================
   RIGHT GRID
========================================= */

.why-grid {
    width: 100%;

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    border-top: 1px solid rgba(27, 67, 50, .13);

    border-left: 1px solid rgba(27, 67, 50, .13);
}


/* =========================================
   FEATURE CARD
========================================= */

.why-card {
    position: relative;

    height: 190px;

    padding: 24px 27px;

    display: flex;

    flex-direction: column;

    justify-content: space-between;

    background: rgba(255, 255, 255, .14);

    border-right: 1px solid rgba(27, 67, 50, .13);

    border-bottom: 1px solid rgba(27, 67, 50, .13);

    transition:
        background .3s ease,
        transform .3s ease;
}


/* =========================================
   HOVER
========================================= */

@media (hover: hover) and (pointer: fine) {

    .why-card:hover {
        background: rgba(255, 255, 255, .78);

        transform: translateY(-3px);
    }

}


/* =========================================
   NUMBER
========================================= */

.why-number {
    display: block;

    color: #C6A664;

    font-family: "Inter", sans-serif;

    font-size: 11px;

    font-weight: 600;

    letter-spacing: 1.8px;
}


/* =========================================
   CARD CONTENT
========================================= */

.why-card-content {
    max-width: 450px;
}


/* =========================================
   CARD TITLE
========================================= */

.why-card h3 {
    margin: 0 0 12px;

    color: #1B4332;

    font-family: "Cormorant Garamond", serif;

    font-size: 32px;

    font-weight: 600;

    line-height: 1;

    letter-spacing: -.4px;
}


/* =========================================
   CARD DESCRIPTION
========================================= */

.why-card p {
    margin: 0;

    max-width: 430px;

    color: #666;

    font-family: "Inter", sans-serif;

    font-size: 13px;

    font-weight: 400;

    line-height: 1.55;
}


/* =========================================
   LARGE DESKTOP
========================================= */

@media (min-width: 1600px) {

    .why-container {
        max-width: 1650px;

        padding-left: 40px;
        padding-right: 40px;

        gap: 100px;
    }

    .why-intro h2 {
        font-size: 92px;
    }

    .why-description {
        margin-top: 38px;

        max-width: 580px;
    }

    .why-description p {
        font-size: 18px;
    }

    .why-quote-btn {
        margin-top: 35px;

        min-height: 60px;

        padding: 0 34px;

        font-size: 15px;
    }

    .why-card {
        height: 200px;

        padding: 27px 30px;
    }

    .why-card h3 {
        font-size: 34px;
    }

    .why-card p {
        font-size: 13.5px;
    }

}


/* =========================================
   LAPTOP 1366 / 1440
   BIG BUT STILL ONE SCREEN
========================================= */

@media (min-width: 992px) and (max-height: 850px) {

    .why-foxonaturals {
        min-height: 600px;
    }

    .why-container {
        max-width: 1450px;

        padding: 25px 35px;

        gap: 65px;
    }

    .why-eyebrow {
        margin-bottom: 15px;

        font-size: 10px;
    }

    .why-intro h2 {
        font-size: 64px;

        line-height: .95;
    }

    .why-description {
        margin-top: 25px;

        max-width: 500px;
    }

    .why-description p {
        font-size: 14px;

        line-height: 1.6;
    }

    .why-quote-btn {
        margin-top: 25px;

        min-height: 50px;

        padding: 0 27px;

        font-size: 13px;
    }

    .why-card {
        height: 155px;

        padding: 19px 21px;
    }

    .why-card h3 {
        font-size: 27px;

        margin-bottom: 8px;
    }

    .why-card p {
        font-size: 11px;

        line-height: 1.45;
    }

}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) and (min-width: 768px) {

    .why-foxonaturals {
        min-height: 650px;
    }

    .why-container {
        padding: 40px 30px;

        grid-template-columns: .82fr 1.18fr;

        gap: 35px;
    }

    .why-intro h2 {
        font-size: 53px;
    }

    .why-description {
        margin-top: 22px;
    }

    .why-description p {
        font-size: 13px;
    }

    .why-quote-btn {
        min-height: 50px;

        font-size: 12px;
    }

    .why-card {
        height: 135px;

        padding: 16px 17px;
    }

    .why-card h3 {
        font-size: 23px;
    }

    .why-card p {
        font-size: 9.5px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .why-foxonaturals {
        height: auto;

        min-height: 100svh;

        overflow: visible;
    }

    .why-container {
        display: block;

        padding: 65px 18px 55px;
    }

    .why-intro {
        max-width: 100%;
    }

    .why-eyebrow {
        margin-bottom: 14px;

        font-size: 9px;

        letter-spacing: 2px;
    }

    .why-intro h2 {
        font-size: 47px;

        line-height: .96;

        letter-spacing: -.9px;
    }

    .why-description {
        margin-top: 22px;

        max-width: 100%;
    }

    .why-description p {
        font-size: 13px;

        line-height: 1.65;
    }

    .why-quote-btn {
        margin-top: 24px;

        min-height: 50px;

        padding: 0 24px;

        font-size: 12px;
    }

    .why-grid {
        margin-top: 35px;

        grid-template-columns: repeat(2, 1fr);
    }

    .why-card {
        height: 155px;

        padding: 17px 14px;
    }

    .why-card h3 {
        font-size: 21px;

        margin-bottom: 7px;
    }

    .why-card p {
        font-size: 9px;

        line-height: 1.45;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {

    .why-container {
        padding: 58px 15px 50px;
    }

    .why-intro h2 {
        font-size: 42px;
    }

    .why-description p {
        font-size: 12px;
    }

    .why-grid {
        margin-top: 30px;
    }

    .why-card {
        height: 145px;

        padding: 15px 12px;
    }

    .why-card h3 {
        font-size: 19px;
    }

    .why-card p {
        font-size: 8px;
    }

}

/* =========================================================
   FOXONATURALS — PRODUCTS
========================================================= */

.products-section {
    position: relative;

    width: 100%;

    min-height: 100vh;
    min-height: 100svh;

    display: flex;
    align-items: center;

    background: #F3EFE6;

    overflow: hidden;
}


/* =========================================================
   CONTAINER
========================================================= */

.products-container {
    position: relative;
    z-index: 2;

    width: 100%;
    max-width: 1780px;

    margin: 0 auto;

    padding: 70px 45px;

    display: flex;
    flex-direction: column;
    justify-content: center;
}


/* =========================================================
   HEADING
========================================================= */

.products-heading {
    text-align: center;

    margin-bottom: 48px;
}


/* =========================================================
   EYEBROW
========================================================= */

.products-eyebrow {
    display: block;

    margin-bottom: 16px;

    color: #C6A664;

    font-family: "Inter", sans-serif;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 4px;

    text-transform: uppercase;
}


/* =========================================================
   MAIN HEADING
========================================================= */

.products-heading h2 {
    margin: 0;

    color: #1B4332;

    font-family: "Cormorant Garamond", serif;

    font-size: clamp(64px, 5.3vw, 94px);

    font-weight: 600;

    line-height: .9;

    letter-spacing: -2px;
}


/* =========================================================
   INTRO
========================================================= */

.products-heading p {
    max-width: 760px;

    margin: 22px auto 0;

    color: #59615C;

    font-family: "Inter", sans-serif;

    font-size: 16px;

    line-height: 1.7;
}


/* =========================================================
   CARD GRID
========================================================= */

.products-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 20px;

    width: 100%;
}


/* =========================================================
   CARD
========================================================= */

.product-card {
    position: relative;

    height: 475px;

    overflow: hidden;

    border-radius: 4px;

    isolation: isolate;

    background: #1B4332;
}


/* =========================================================
   BACKGROUND IMAGE
========================================================= */

.product-image {
    position: absolute;

    inset: 0;

    z-index: -2;

    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;

    transform: scale(1.01);

    transition: transform .8s cubic-bezier(.2,.7,.2,1);
}


/* =========================================================
   USE YOUR ACTUAL IMAGES HERE
========================================================= */

.product-card-raw .product-image {
    background-image:
        url("../images/raw-makhana.jpg");
}

.product-card-premium .product-image {
    background-image:
        url("../images/premium-makhana.jpg");
}

.product-card-roasted .product-image {
    background-image:
        url("../images/roasted-makhana.jpg");
}


/* =========================================================
   IMAGE OVERLAY
========================================================= */

.product-overlay {
    position: absolute;

    inset: 0;

    z-index: -1;

    background:
        linear-gradient(
            180deg,
            rgba(10,35,25,.18) 0%,
            rgba(10,35,25,.30) 28%,
            rgba(10,35,25,.58) 60%,
            rgba(10,35,25,.94) 100%
        );

    transition: background .5s ease;
}


/* =========================================================
   CARD HOVER
========================================================= */

@media (hover: hover) and (pointer: fine) {

    .product-card:hover .product-image {
        transform: scale(1.07);
    }

    .product-card:hover .product-overlay {
        background:
            linear-gradient(
                180deg,
                rgba(10,35,25,.12) 0%,
                rgba(10,35,25,.28) 30%,
                rgba(10,35,25,.65) 65%,
                rgba(10,35,25,.96) 100%
            );
    }

}


/* =========================================================
   CARD TOP
========================================================= */

.product-card-top {
    position: absolute;

    top: 26px;
    left: 27px;
    right: 27px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}


/* NUMBER */

.product-card-top span {
    color: #D4B978;

    font-family: "Inter", sans-serif;

    font-size: 12px;
    font-weight: 600;

    letter-spacing: 2px;
}


/* CATEGORY */

.product-card-top small {
    color: rgba(255,255,255,.82);

    font-family: "Inter", sans-serif;

    font-size: 9px;
    font-weight: 600;

    letter-spacing: 2.5px;

    text-transform: uppercase;
}


/* =========================================================
   CARD CONTENT
========================================================= */

.product-card-content {
    position: absolute;

    left: 28px;
    right: 28px;
    bottom: 27px;
}


/* =========================================================
   TITLE
========================================================= */

.product-card h3 {
    margin: 0 0 14px;

    color: #FFFFFF;

    font-family: "Cormorant Garamond", serif;

    font-size: 46px;

    font-weight: 600;

    line-height: .92;

    letter-spacing: -.8px;
}


/* =========================================================
   DESCRIPTION
========================================================= */

.product-card-content > p {
    max-width: 470px;

    margin: 0;

    color: rgba(255,255,255,.88);

    font-family: "Inter", sans-serif;

    font-size: 13px;

    line-height: 1.65;
}


/* =========================================================
   DETAIL
========================================================= */

.product-detail {
    margin-top: 17px;

    padding-top: 13px;

    border-top: 1px solid rgba(255,255,255,.22);
}


/* LABEL */

.product-detail span {
    display: block;

    margin-bottom: 6px;

    color: #D4B978;

    font-family: "Inter", sans-serif;

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 2px;

    text-transform: uppercase;
}


/* TEXT */

.product-detail strong {
    display: block;

    color: rgba(255,255,255,.86);

    font-family: "Inter", sans-serif;

    font-size: 10.5px;

    font-weight: 500;

    line-height: 1.5;
}


/* NOTE */

.product-detail em {
    display: block;

    margin-top: 5px;

    color: rgba(255,255,255,.60);

    font-family: "Inter", sans-serif;

    font-size: 8px;

    font-style: normal;

    line-height: 1.4;
}


/* =========================================================
   CTA
========================================================= */

.product-cta {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 18px;

    margin-top: 20px;

    min-width: 180px;
    min-height: 48px;

    padding: 0 23px;

    border-radius: 50px;

    background: #1B4332;

    border: 1px solid rgba(198,166,100,.45);

    color: #FFFFFF;

    font-family: "Inter", sans-serif;

    font-size: 12px;
    font-weight: 600;

    text-decoration: none;

    transition:
        background .3s ease,
        border-color .3s ease,
        transform .3s ease;
}


/* ARROW */

.product-cta b {
    color: #D4B978;

    font-size: 17px;
    font-weight: 400;

    transition: transform .3s ease;
}


/* HOVER */

.product-cta:hover {
    background: #C6A664;

    border-color: #C6A664;

    color: #FFFFFF;

    transform: translateY(-2px);
}

.product-cta:hover b {
    color: #FFFFFF;

    transform: translateX(4px);
}


/* =========================================================
   LARGE DESKTOP
========================================================= */

@media (min-width: 1600px) {

    .products-container {
        max-width: 1850px;

        padding-left: 55px;
        padding-right: 55px;
    }

    .products-heading {
        margin-bottom: 55px;
    }

    .products-heading h2 {
        font-size: 100px;
    }

    .products-heading p {
        font-size: 18px;
    }

    .products-grid {
        gap: 24px;
    }

    .product-card {
        height: 500px;
    }

    .product-card h3 {
        font-size: 50px;
    }

    .product-card-content > p {
        font-size: 14px;
    }
}


/* =========================================================
   LAPTOP
========================================================= */

@media (min-width: 992px) and (max-height: 850px) {

    .products-container {
        padding-top: 35px;
        padding-bottom: 35px;
    }

    .products-heading {
        margin-bottom: 30px;
    }

    .products-eyebrow {
        margin-bottom: 9px;

        font-size: 9px;
    }

    .products-heading h2 {
        font-size: 62px;
    }

    .products-heading p {
        margin-top: 13px;

        font-size: 12px;
    }

    .products-grid {
        gap: 16px;
    }

    .product-card {
        height: 350px;
    }

    .product-card-top {
        top: 19px;

        left: 20px;
        right: 20px;
    }

    .product-card-content {
        left: 21px;
        right: 21px;
        bottom: 20px;
    }

    .product-card h3 {
        font-size: 34px;
    }

    .product-card-content > p {
        font-size: 10px;
    }

    .product-detail {
        margin-top: 12px;

        padding-top: 9px;
    }

    .product-detail span {
        font-size: 7px;
    }

    .product-detail strong {
        font-size: 8px;
    }

    .product-cta {
        min-height: 40px;

        min-width: 150px;

        margin-top: 13px;

        font-size: 9px;
    }
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) and (min-width: 768px) {

    .products-section {
        min-height: 100svh;
    }

    .products-container {
        padding: 60px 30px;
    }

    .products-heading h2 {
        font-size: 64px;
    }

    .products-heading p {
        font-size: 13px;
    }

    .product-card {
        height: 390px;
    }

    .product-card h3 {
        font-size: 35px;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .products-section {
        min-height: 100svh;

        height: auto;

        overflow: hidden;
    }


    .products-container {
        padding: 58px 0 50px;
    }


    /* HEADING */

    .products-heading {
        text-align: left;

        padding: 0 18px;

        margin-bottom: 28px;
    }

    .products-eyebrow {
        margin-bottom: 11px;

        font-size: 8px;

        letter-spacing: 2.5px;
    }

    .products-heading h2 {
        font-size: 43px;

        line-height: .95;

        letter-spacing: -.7px;
    }

    .products-heading p {
        margin-top: 15px;

        font-size: 11px;

        line-height: 1.6;
    }


    /* =====================================================
       MOBILE HORIZONTAL CAROUSEL
    ===================================================== */

    .products-grid {

        display: flex;

        gap: 14px;

        width: 100%;

        padding: 0 18px;

        overflow-x: auto;
        overflow-y: hidden;

        scroll-snap-type: x mandatory;

        scroll-behavior: smooth;

        scrollbar-width: none;

        -webkit-overflow-scrolling: touch;
    }


    .products-grid::-webkit-scrollbar {
        display: none;
    }


    /* =====================================================
       BIG MOBILE CARDS
    ===================================================== */

    .product-card {

        flex: 0 0 88vw;

        width: 88vw;

        height: 475px;

        min-height: 475px;

        border-radius: 5px;

        scroll-snap-align: center;
    }


    .product-card-top {

        top: 22px;

        left: 21px;
        right: 21px;
    }


    .product-card-top span {
        font-size: 9px;
    }


    .product-card-top small {
        font-size: 7px;

        letter-spacing: 2px;
    }


    .product-card-content {

        left: 21px;
        right: 21px;

        bottom: 21px;
    }


    .product-card h3 {

        font-size: 39px;

        line-height: .93;

        margin-bottom: 13px;
    }


    .product-card-content > p {

        font-size: 11px;

        line-height: 1.6;
    }


    .product-detail {

        margin-top: 16px;

        padding-top: 11px;
    }


    .product-detail span {
        font-size: 7px;
    }


    .product-detail strong {
        font-size: 8.5px;
    }


    .product-detail em {
        font-size: 7px;
    }


    .product-cta {

        width: 100%;

        min-height: 50px;

        margin-top: 18px;

        font-size: 11px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .products-container {
        padding-top: 53px;
    }

    .products-heading {
        padding-left: 16px;
        padding-right: 16px;

        margin-bottom: 24px;
    }

    .products-heading h2 {
        font-size: 40px;
    }

    .products-heading p {
        font-size: 10.5px;
    }

    .products-grid {
        padding-left: 16px;
        padding-right: 16px;

        gap: 12px;
    }

    .product-card {

        flex-basis: 89vw;

        width: 89vw;

        height: 455px;

        min-height: 455px;
    }

    .product-card h3 {
        font-size: 36px;
    }
}


/* =========================================================
   VERY SMALL MOBILE
========================================================= */

@media (max-width: 360px) {

    .products-heading h2 {
        font-size: 37px;
    }

    .product-card {

        height: 440px;

        min-height: 440px;
    }

    .product-card h3 {
        font-size: 33px;
    }
}


/* =========================================================
   FROM BIHAR TO THE WORLD
   FOXONATURALS — ONE SCREEN TIMELINE
========================================================= */

/* =========================================================
   ORIGIN SECTION — RESPONSIVE REBUILD
   Colour palette intentionally unchanged
========================================================= */

.origin-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    min-height: 100svh;

    display: flex;
    align-items: center;

    background: #F8F5EF;
    color: #2B2B2B;

    overflow: hidden;
}


/* =========================================================
   SUBTLE SECTION DIFFERENTIATION
========================================================= */

.origin-section::before {
    content: "";
    position: absolute;

    width: min(55vw, 700px);
    height: min(55vw, 700px);

    right: -320px;
    top: -300px;

    border-radius: 50%;

    background: rgba(198, 166, 100, 0.055);

    pointer-events: none;
}


/* =========================================================
   CONTAINER
========================================================= */

.origin-container {
    position: relative;
    z-index: 2;

    width: 100%;
    max-width: 1500px;

    min-height: 100vh;
    min-height: 100svh;

    margin: 0 auto;

    padding: 90px 60px 55px;

    display: flex;
    flex-direction: column;
    justify-content: center;
}


/* =========================================================
   HEADER
========================================================= */

.origin-header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.75fr);

    column-gap: clamp(50px, 7vw, 110px);

    align-items: end;

    margin-bottom: clamp(55px, 6vh, 80px);
}


/* =========================================================
   EYEBROW
========================================================= */

.origin-eyebrow {
    grid-column: 1 / -1;

    display: block;

    margin-bottom: 16px;

    color: #C6A664;

    font-family: "Inter", sans-serif;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 3.5px;

    text-transform: uppercase;
}


/* =========================================================
   HEADING
========================================================= */

.origin-header h2 {
    margin: 0;

    color: #1B4332;

    font-family: "Cormorant Garamond", serif;

    font-size: clamp(64px, 6.2vw, 100px);

    font-weight: 600;

    line-height: 0.88;

    letter-spacing: -2.5px;
}


/* =========================================================
   INTRO
========================================================= */

.origin-header p {
    max-width: 620px;

    margin: 0 0 4px;

    color: #5C625D;

    font-family: "Inter", sans-serif;

    font-size: clamp(15px, 1.1vw, 18px);

    line-height: 1.7;
}


/* =========================================================
   TIMELINE
========================================================= */

.origin-timeline {
    position: relative;

    width: 100%;

    margin-top: 0;
}


/* =========================================================
   TIMELINE BASE LINE
========================================================= */

.timeline-line {
    position: absolute;

    left: 0;
    right: 0;

    top: 10px;

    height: 1px;

    background: rgba(27, 67, 50, 0.16);
}


/* =========================================================
   GOLD PROGRESS
========================================================= */

.timeline-progress {
    position: absolute;

    left: 0;
    top: 0;

    width: 0;
    height: 1px;

    background: #C6A664;

    transition:
        width 1s cubic-bezier(.22, .61, .36, 1);
}


/* =========================================================
   TIMELINE ITEMS
========================================================= */

.timeline-items {
    display: grid;

    grid-template-columns: repeat(6, minmax(0, 1fr));

    width: 100%;

    gap: 0;
}


/* =========================================================
   INDIVIDUAL ITEM
========================================================= */

.timeline-item {
    position: relative;

    padding-right: clamp(20px, 2vw, 38px);

    opacity: 0.38;

    transform: translateY(12px);

    transition:
        opacity 0.65s ease,
        transform 0.65s cubic-bezier(.22, .61, .36, 1);
}


/* =========================================================
   ACTIVE
========================================================= */

.timeline-item.active {
    opacity: 1;

    transform: translateY(0);
}


/* =========================================================
   NUMBER
========================================================= */

.timeline-number {
    position: relative;
    z-index: 5;

    display: flex;

    align-items: center;
    justify-content: center;

    width: 22px;
    height: 22px;

    margin-bottom: 28px;

    border: 1px solid #C6A664;

    border-radius: 50%;

    background: #F8F5EF;
    color: #C6A664;

    font-family: "Inter", sans-serif;

    font-size: 8px;
    font-weight: 700;

    transition:
        background 0.35s ease,
        color 0.35s ease,
        transform 0.35s ease;
}


/* =========================================================
   ACTIVE NUMBER
========================================================= */

.timeline-item.active .timeline-number {
    background: #C6A664;

    color: #FFFFFF;

    transform: scale(1.15);
}


/* =========================================================
   ITEM TITLE
========================================================= */

.timeline-item h3 {
    margin: 0 0 11px;

    color: #1B4332;

    font-family: "Cormorant Garamond", serif;

    font-size: clamp(26px, 2vw, 34px);

    font-weight: 600;

    line-height: 0.95;

    letter-spacing: -0.5px;
}


/* =========================================================
   ITEM DESCRIPTION
========================================================= */

.timeline-item p {
    max-width: 220px;

    margin: 0;

    color: #69706B;

    font-family: "Inter", sans-serif;

    font-size: clamp(11px, 0.8vw, 14px);

    line-height: 1.55;
}


/* =========================================================
   COMMITMENT
========================================================= */

.origin-commitment {
    display: grid;

    grid-template-columns: 1.25fr 1fr 1fr;

    column-gap: 40px;

    align-items: center;

    margin-top: clamp(55px, 6vh, 75px);

    padding-top: 24px;

    border-top: 1px solid rgba(27, 67, 50, 0.14);
}


/* =========================================================
   COMMITMENT LABEL
========================================================= */

.origin-commitment span {
    display: block;

    margin-bottom: 8px;

    color: #C6A664;

    font-family: "Inter", sans-serif;

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 2.2px;

    text-transform: uppercase;
}


/* =========================================================
   COMMITMENT TEXT
========================================================= */

.origin-commitment h3 {
    margin: 0;

    color: #1B4332;

    font-family: "Cormorant Garamond", serif;

    font-size: clamp(27px, 2vw, 36px);

    font-weight: 600;

    line-height: 1;
}


/* =========================================================
   LARGE DESKTOP
========================================================= */

@media (min-width: 1600px) {

    .origin-container {
        max-width: 1650px;
        padding-left: 70px;
        padding-right: 70px;
    }

    .origin-header {
        margin-bottom: 80px;
    }

    .origin-header h2 {
        font-size: 104px;
    }

    .origin-header p {
        font-size: 18px;
        max-width: 650px;
    }

    .timeline-item h3 {
        font-size: 35px;
    }

    .timeline-item p {
        font-size: 14px;
        max-width: 235px;
    }

    .origin-commitment {
        margin-top: 75px;
    }

    .origin-commitment h3 {
        font-size: 38px;
    }
}


/* =========================================================
   LAPTOP / SHORT DESKTOP
========================================================= */

@media (min-width: 1100px) and (max-height: 850px) {

    .origin-container {
        padding-top: 75px;
        padding-bottom: 40px;
    }

    .origin-header {
        margin-bottom: 48px;
    }

    .origin-header h2 {
        font-size: clamp(62px, 5.5vw, 82px);
    }

    .origin-header p {
        font-size: 14px;
        line-height: 1.65;
    }

    .timeline-number {
        width: 20px;
        height: 20px;

        margin-bottom: 22px;
    }

    .timeline-item h3 {
        font-size: 26px;
    }

    .timeline-item p {
        font-size: 11px;
    }

    .origin-commitment {
        margin-top: 42px;
        padding-top: 18px;
    }

    .origin-commitment h3 {
        font-size: 27px;
    }
}


/* =========================================================
   TABLET LANDSCAPE / TABLET
========================================================= */

@media (max-width: 1099px) and (min-width: 768px) {

    .origin-section {
        min-height: 850px;
    }

    .origin-container {
        padding: 80px 45px 50px;
    }

    .origin-header {
        grid-template-columns: 1fr;

        gap: 20px;

        margin-bottom: 55px;
    }

    .origin-eyebrow {
        margin-bottom: 12px;
    }

    .origin-header h2 {
        font-size: clamp(62px, 8vw, 88px);
    }

    .origin-header p {
        max-width: 700px;

        font-size: 15px;

        line-height: 1.65;
    }

    /* Horizontal timeline becomes a clean grid */
    .timeline-line {
        display: none;
    }

    .timeline-progress {
        display: none;
    }

    .timeline-items {
        grid-template-columns: repeat(3, minmax(0, 1fr));

        column-gap: 40px;
        row-gap: 48px;
    }

    .timeline-item {
        padding-right: 20px;
    }

    .timeline-number {
        width: 22px;
        height: 22px;

        margin-bottom: 17px;
    }

    .timeline-item h3 {
        font-size: 29px;

        margin-bottom: 9px;
    }

    .timeline-item p {
        max-width: 230px;

        font-size: 12px;
    }

    .origin-commitment {
        grid-template-columns: 1fr 1fr 1fr;

        margin-top: 50px;

        padding-top: 20px;

        column-gap: 25px;
    }

    .origin-commitment span {
        font-size: 8px;
    }

    .origin-commitment h3 {
        font-size: 26px;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .origin-section {
        min-height: auto;

        height: auto;

        overflow: hidden;
    }

    .origin-container {
        min-height: auto;

        padding:
            90px
            22px
            45px;

        justify-content: flex-start;
    }


    /* -----------------------------------------------------
       HEADER
    ----------------------------------------------------- */

    .origin-header {
        display: block;

        margin-bottom: 45px;
    }

    .origin-eyebrow {
        margin-bottom: 12px;

        font-size: 9px;

        letter-spacing: 2.5px;
    }

    .origin-header h2 {
        font-size: clamp(48px, 13vw, 68px);

        line-height: 0.9;

        letter-spacing: -1px;
    }

    .origin-header p {
        max-width: 100%;

        margin-top: 18px;

        font-size: 13px;

        line-height: 1.6;
    }


    /* -----------------------------------------------------
       MOBILE TIMELINE
    ----------------------------------------------------- */

    .origin-timeline {
        padding-left: 28px;
    }


    /* Vertical line */

    .timeline-line {
        display: block;

        left: 8px;

        top: 0;
        bottom: 0;

        width: 1px;

        height: auto;

        right: auto;
    }

    .timeline-progress {
        width: 1px;

        height: 0;

        transition:
            height 1s cubic-bezier(.22, .61, .36, 1);
    }

    .timeline-items {
        display: grid;

        grid-template-columns: 1fr;

        row-gap: 38px;
    }

    .timeline-item {
        padding:
            0
            0
            0
            22px;

        transform: translateY(10px);
    }

    .timeline-number {
        position: absolute;

        left: -28px;
        top: 0;

        width: 18px;
        height: 18px;

        margin: 0;

        font-size: 7px;
    }

    .timeline-item h3 {
        font-size: clamp(27px, 8vw, 36px);

        margin-bottom: 8px;

        line-height: 0.95;
    }

    .timeline-item p {
        max-width: 320px;

        font-size: 11px;

        line-height: 1.55;
    }


    /* -----------------------------------------------------
       COMMITMENT
    ----------------------------------------------------- */

    .origin-commitment {
        grid-template-columns: 1fr;

        row-gap: 20px;

        margin-top: 45px;

        padding-top: 20px;
    }

    .origin-commitment span {
        margin-bottom: 6px;

        font-size: 7px;

        letter-spacing: 1.8px;
    }

    .origin-commitment h3 {
        font-size: 27px;

        line-height: 1;
    }
}


/* =========================================================
   SMALL PHONE
========================================================= */

@media (max-width: 480px) {

    .origin-container {
        padding:
            78px
            18px
            38px;
    }

    .origin-header {
        margin-bottom: 38px;
    }

    .origin-eyebrow {
        font-size: 8px;

        letter-spacing: 2.2px;
    }

    .origin-header h2 {
        font-size: clamp(43px, 13vw, 58px);

        letter-spacing: -0.8px;
    }

    .origin-header p {
        margin-top: 15px;

        font-size: 12px;

        line-height: 1.55;
    }

    .origin-timeline {
        padding-left: 25px;
    }

    .timeline-line {
        left: 7px;
    }

    .timeline-item {
        padding-left: 20px;
    }

    .timeline-number {
        left: -25px;

        width: 17px;
        height: 17px;

        font-size: 6px;
    }

    .timeline-items {
        row-gap: 32px;
    }

    .timeline-item h3 {
        font-size: clamp(25px, 8vw, 32px);

        margin-bottom: 7px;
    }

    .timeline-item p {
        font-size: 10.5px;

        max-width: 280px;
    }

    .origin-commitment {
        margin-top: 38px;

        padding-top: 18px;

        row-gap: 18px;
    }

    .origin-commitment h3 {
        font-size: 24px;
    }
}


/* =========================================================
   VERY SMALL PHONE
========================================================= */

@media (max-width: 360px) {

    .origin-container {
        padding:
            70px
            16px
            32px;
    }

    .origin-header {
        margin-bottom: 34px;
    }

    .origin-header h2 {
        font-size: 40px;
    }

    .origin-header p {
        font-size: 11px;
    }

    .origin-timeline {
        padding-left: 23px;
    }

    .timeline-line {
        left: 6px;
    }

    .timeline-item {
        padding-left: 18px;
    }

    .timeline-number {
        left: -23px;

        width: 16px;
        height: 16px;
    }

    .timeline-items {
        row-gap: 29px;
    }

    .timeline-item h3 {
        font-size: 24px;
    }

    .timeline-item p {
        font-size: 10px;
    }

    .origin-commitment {
        margin-top: 34px;
    }

    .origin-commitment h3 {
        font-size: 22px;
    }
}


/* =========================================================
   ACCESSIBILITY / REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .timeline-item,
    .timeline-number,
    .timeline-progress {
        transition: none;
    }
}

/* =========================================================
   GLOBAL SUPPLY
========================================================= */
/* =========================================================
   GLOBAL SECTION — LARGER / STRONGER VERSION
   Colour theme unchanged
========================================================= *
/* =========================================================
   GLOBAL SECTION
   ========================================================= */

.global-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    min-height: 100svh;

    display: flex;
    align-items: center;

    background: #1B4332;
    color: #FFFFFF;

    overflow: hidden;
}

.global-section::before {
    content: "";
    position: absolute;

    width: min(58vw, 800px);
    height: min(58vw, 800px);

    right: -340px;
    top: -380px;

    border-radius: 50%;
    border: 1px solid rgba(198,166,100,.18);

    box-shadow:
        0 0 0 90px rgba(198,166,100,.025),
        0 0 0 180px rgba(198,166,100,.018);

    pointer-events: none;
}


/* =========================================================
   CONTAINER
   ========================================================= */

.global-container {
    position: relative;
    z-index: 2;

    width: 100%;
    max-width: 1650px;

    min-height: 100vh;
    min-height: 100svh;

    margin: 0 auto;
    padding: 75px 55px 50px;

    display: grid;
    grid-template-columns: minmax(360px,.82fr) minmax(560px,1.18fr);

    gap: clamp(55px,6vw,100px);
    align-items: center;
}


/* =========================================================
   LEFT CONTENT
   ========================================================= */

.global-content {
    max-width: 680px;
}

.global-eyebrow {
    display: block;
    margin-bottom: 17px;

    color: #C6A664;

    font-family: "Inter", sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.global-content h2 {
    margin: 0;

    color: #FFFFFF;

    font-family: "Cormorant Garamond", serif;
    font-size: clamp(65px,6vw,100px);
    font-weight: 600;
    line-height: .87;
    letter-spacing: -2.5px;
}

.global-intro {
    max-width: 600px;
    margin: 28px 0 0;

    color: rgba(255,255,255,.72);

    font-family: "Inter", sans-serif;
    font-size: clamp(15px,1vw,17px);
    line-height: 1.7;
}


/* =========================================================
   CTA
   ========================================================= */

.global-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 18px;

    margin-top: 32px;

    min-height: 55px;
    padding: 0 30px;

    background: #C6A664;
    color: #FFFFFF;

    border: 1px solid #C6A664;
    border-radius: 50px;

    font-family: "Inter", sans-serif;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;

    transition: .3s ease;
}

.global-cta span {
    font-size: 20px;
    transition: transform .3s ease;
}

.global-cta:hover {
    background: #B59655;
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0,0,0,.18);
}

.global-cta:hover span {
    transform: translateX(4px);
}


/* =========================================================
   TABLE / PANEL
   ========================================================= */

.global-panel {
    width: 100%;

    border: 1px solid rgba(255,255,255,.18);
    background: rgba(255,255,255,.035);
}

.global-panel-heading {
    padding: 23px 27px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;

    border-bottom: 1px solid rgba(255,255,255,.14);
}

.global-panel-heading span {
    flex-shrink: 0;

    color: #C6A664;

    font-family: "Inter", sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
}

.global-panel-heading p {
    max-width: 410px;
    margin: 0;

    color: rgba(255,255,255,.60);

    font-family: "Inter", sans-serif;
    font-size: 12px;
    line-height: 1.55;
}


/* =========================================================
   REQUIREMENTS
   ========================================================= */

.global-requirements {
    display: grid;
    grid-template-columns: repeat(3,minmax(0,1fr));
}

.global-requirement {
    min-height: 120px;
    padding: 21px 22px;

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    border-right: 1px solid rgba(255,255,255,.11);
    border-bottom: 1px solid rgba(255,255,255,.11);

    transition: background .3s ease;
}

.global-requirement:nth-child(3n) {
    border-right: none;
}

.global-requirement:hover {
    background: rgba(198,166,100,.08);
}


/* TABLE LABEL */

.global-requirement span {
    color: #C6A664;

    font-family: "Inter", sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    line-height: 1.4;
}


/* TABLE CONTENT */

.global-requirement strong {
    color: rgba(255,255,255,.95);

    font-family: "Inter", sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.45;
}


/* =========================================================
   MARKETS
   ========================================================= */

.global-markets {
    padding: 24px 27px 27px;
}

.global-markets > span {
    display: block;
    margin-bottom: 12px;

    color: #C6A664;

    font-family: "Inter", sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
}

.market-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 9px;

    margin-bottom: 15px;
}

.market-list b {
    color: rgba(255,255,255,.90);

    font-family: "Inter", sans-serif;
    font-size: 14px;
    font-weight: 500;
}

.market-list i {
    color: #C6A664;
    font-size: 10px;
    font-style: normal;
}

.global-markets p {
    max-width: 800px;
    margin: 0;

    color: rgba(255,255,255,.50);

    font-family: "Inter", sans-serif;
    font-size: 12px;
    line-height: 1.55;
}


/* =========================================================
   LAPTOP
   ========================================================= */

@media (max-width:1300px) and (min-width:992px) {

    .global-container {
        padding: 60px 35px 40px;
        gap: 45px;
    }

    .global-content h2 {
        font-size: clamp(58px,6vw,78px);
    }

    .global-intro {
        font-size: 14px;
    }

    .global-panel-heading {
        padding: 20px 22px;
    }

    .global-panel-heading span {
        font-size: 10px;
    }

    .global-panel-heading p {
        font-size: 11px;
    }

    .global-requirement {
        min-height: 112px;
        padding: 19px 18px;
    }

    .global-requirement span {
        font-size: 10px;
    }

    .global-requirement strong {
        font-size: 15px;
    }

    .global-markets {
        padding: 21px 22px 23px;
    }

    .global-markets > span {
        font-size: 10px;
    }

    .market-list b {
        font-size: 13px;
    }

    .global-markets p {
        font-size: 11px;
    }
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width:991px) and (min-width:768px) {

    .global-section {
        min-height: auto;
    }

    .global-container {
        min-height: auto;

        padding: 70px 35px 55px;

        grid-template-columns: 1fr;
        gap: 50px;
    }

    .global-content {
        max-width: 800px;
    }

    .global-content h2 {
        font-size: clamp(65px,9vw,88px);
    }

    .global-intro {
        font-size: 15px;
    }

    .global-panel-heading {
        padding: 22px 24px;
    }

    .global-panel-heading span {
        font-size: 10px;
    }

    .global-panel-heading p {
        font-size: 11px;
    }

    .global-requirement {
        min-height: 112px;
        padding: 20px;
    }

    .global-requirement span {
        font-size: 10px;
    }

    .global-requirement strong {
        font-size: 14px;
    }

    .global-markets {
        padding: 22px 24px 25px;
    }

    .market-list b {
        font-size: 12px;
    }

    .global-markets p {
        font-size: 10px;
    }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width:767px) {

    .global-section {
        height: auto;
        min-height: 100svh;
    }

    .global-container {
        min-height: auto;

        padding: 65px 20px 45px;

        display: flex;
        flex-direction: column;
        gap: 40px;
    }

    .global-eyebrow {
        font-size: 9px;
        letter-spacing: 2.4px;
    }

    .global-content h2 {
        font-size: clamp(50px,14vw,68px);
    }

    .global-intro {
        font-size: 13px;
    }

    .global-cta {
        width: auto;
        min-height: 50px;
        padding: 0 23px;
        font-size: 11px;
    }


    /* TABLE HEADER */

    .global-panel-heading {
        padding: 19px;
        display: block;
    }

    .global-panel-heading span {
        font-size: 8px;
    }

    .global-panel-heading p {
        margin-top: 8px;
        font-size: 10px;
    }


    /* TABLE */

    .global-requirements {
        grid-template-columns: repeat(2,minmax(0,1fr));
    }

    .global-requirement {
        min-height: 100px;
        padding: 16px;
    }

    .global-requirement:nth-child(3n) {
        border-right: 1px solid rgba(255,255,255,.11);
    }

    .global-requirement:nth-child(2n) {
        border-right: none;
    }

    .global-requirement span {
        font-size: 9px;
    }

    .global-requirement strong {
        font-size: 13px;
    }


    /* MARKETS */

    .global-markets {
        padding: 20px;
    }

    .global-markets > span {
        font-size: 9px;
    }

    .market-list {
        gap: 7px;
    }

    .market-list b {
        font-size: 11px;
    }

    .global-markets p {
        font-size: 10px;
    }
}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width:480px) {

    .global-container {
        padding: 58px 17px 40px;
        gap: 36px;
    }

    .global-content h2 {
        font-size: clamp(46px,14vw,60px);
    }

    .global-intro {
        font-size: 12px;
    }

    .global-cta {
        width: 100%;
    }

    .global-panel-heading {
        padding: 17px;
    }

    .global-panel-heading span {
        font-size: 8px;
    }

    .global-panel-heading p {
        font-size: 9.5px;
    }

    .global-requirement {
        min-height: 96px;
        padding: 14px;
    }

    .global-requirement span {
        font-size: 8px;
    }

    .global-requirement strong {
        font-size: 12px;
    }

    .global-markets {
        padding: 17px;
    }

    .global-markets > span {
        font-size: 8px;
    }

    .market-list b {
        font-size: 10px;
    }

    .global-markets p {
        font-size: 9px;
    }
}


/* =========================================================
   VERY SMALL PHONES
   ========================================================= */

@media (max-width:360px) {

    .global-container {
        padding: 52px 14px 35px;
    }

    .global-content h2 {
        font-size: 43px;
    }

    .global-requirement {
        min-height: 90px;
        padding: 12px;
    }

    .global-requirement span {
        font-size: 7.5px;
    }

    .global-requirement strong {
        font-size: 11px;
    }

    .market-list b {
        font-size: 9.5px;
    }

    .global-markets p {
        font-size: 8.5px;
    }
}


/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion:reduce) {

    .global-cta,
    .global-cta span,
    .global-requirement {
        transition: none;
    }
}

/* =========================================================
   FAQ SECTION
   ========================================================= */

.faq-section {
    width: 100%;
    background: #F3EFE6;
    color: #1B4332;
    font-family: "Inter", sans-serif;
    overflow: hidden;
}

.faq-container {
    width: min(1500px, calc(100% - 80px));
    margin: 0 auto;
    padding: 65px 0;

    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(380px, .92fr);
    gap: 55px;
    align-items: center;
}


/* =========================================================
   LEFT — FAQ HEADER
   ========================================================= */

.faq-content {
    min-width: 0;
}

.faq-eyebrow {
    display: block;
    margin-bottom: 14px;

    color: #C6A664;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .16em;
    line-height: 1.4;
}

.faq-content h2 {
    margin: 0 0 32px;

    color: #1B4332;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(52px, 5vw, 76px);
    font-weight: 500;
    line-height: .9;
    letter-spacing: -.035em;
}


/* =========================================================
   FAQ LIST
   ========================================================= */

.faq-list {
    width: 100%;
    border-top: 1px solid rgba(27, 67, 50, .20);
}

.faq-item {
    width: 100%;
    border-bottom: 1px solid rgba(27, 67, 50, .20);
}


/* =========================================================
   QUESTION
   ========================================================= */

.faq-question {
    width: 100%;
    min-height: 70px;
    padding: 17px 0;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;

    border: 0;
    outline: 0;
    background: transparent;

    color: #1B4332;

    font-family: "Inter", sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
    text-align: left;

    cursor: pointer;

    transition: color .25s ease;
}

.faq-question:hover {
    color: #C6A664;
}

.faq-question span {
    max-width: calc(100% - 50px);
}


/* =========================================================
   PLUS ICON
   ========================================================= */

.faq-question b {
    flex: 0 0 29px;

    width: 29px;
    height: 29px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(27, 67, 50, .32);
    border-radius: 50%;

    color: #1B4332;

    font-family: Arial, sans-serif;
    font-size: 20px;
    font-weight: 300;
    line-height: 1;

    transition:
        transform .3s ease,
        background .3s ease,
        color .3s ease,
        border-color .3s ease;
}

.faq-question:hover b {
    border-color: #C6A664;
    color: #C6A664;
}

.faq-item.active .faq-question b {
    transform: rotate(45deg);

    background: #1B4332;
    border-color: #1B4332;

    color: #F3EFE6;
}


/* =========================================================
   FAQ ANSWER
   ========================================================= */

.faq-answer {
    max-height: 0;
    overflow: hidden;

    opacity: 0;

    transition:
        max-height .4s ease,
        opacity .25s ease,
        padding .3s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 50px 23px 0;

    opacity: 1;
}

.faq-answer p {
    max-width: 720px;
    margin: 0;

    color: #5C625D;

    font-size: 14px;
    font-weight: 400;
    line-height: 1.7;
}


/* =========================================================
   RIGHT — CTA CARD
   ========================================================= */

.faq-cta {
    position: relative;

    width: 100%;
    min-height: 545px;
    padding: 38px;

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    background: #1B4332;
    color: #F3EFE6;

    overflow: hidden;
}


/* Elegant inner border */

.faq-cta::before {
    content: "";

    position: absolute;
    inset: 9px;

    border: 1px solid rgba(198, 166, 100, .25);

    pointer-events: none;
}


/* =========================================================
   CTA TOP
   ========================================================= */

.faq-cta-top {
    position: relative;
    z-index: 2;

    display: flex;
    align-items: center;
    gap: 14px;
}

.faq-cta-top > span {
    flex-shrink: 0;

    color: #C6A664;

    font-size: 10px;
    font-weight: 700;
    letter-spacing: .16em;
    line-height: 1.4;
}

.faq-cta-line {
    width: 100%;
    height: 1px;

    background: rgba(198, 166, 100, .35);
}


/* =========================================================
   CTA CONTENT
   ========================================================= */

.faq-cta-content {
    position: relative;
    z-index: 2;
}

.faq-cta-content h3 {
    margin: 0;

    color: #F3EFE6;

    font-family: "Cormorant Garamond", serif;
    font-size: clamp(47px, 4.5vw, 68px);
    font-weight: 500;
    line-height: .91;
    letter-spacing: -.035em;
}


/* Gold subtitle */

.faq-cta-subtitle {
    margin: 27px 0 10px;

    color: #C6A664;

    font-size: 13px;
    font-weight: 600;
    line-height: 1.5;
    letter-spacing: .025em;
}


/* Description */

.faq-cta-description {
    max-width: 470px;
    margin: 0;

    color: rgba(243, 239, 230, .76);

    font-size: 14px;
    font-weight: 400;
    line-height: 1.7;
}


/* =========================================================
   CTA ACTIONS
   ========================================================= */

.faq-cta-actions {
    position: relative;
    z-index: 2;

    width: 100%;

    display: flex;
    flex-direction: column;
    gap: 9px;
}


/* =========================================================
   BUTTON BASE
   ========================================================= */

.faq-cta-actions a {
    width: 100%;
    min-height: 51px;
    padding: 14px 20px;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;

    box-sizing: border-box;

    text-decoration: none;

    font-family: "Inter", sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .09em;
    text-transform: uppercase;

    transition:
        transform .25s ease,
        background .25s ease,
        color .25s ease,
        border-color .25s ease;
}


/* =========================================================
   PRIMARY BUTTON
   ========================================================= */

.faq-primary-btn {
    background: #C6A664;
    color: #1B4332;

    border: 1px solid #C6A664;
}

.faq-primary-btn span {
    font-size: 18px;
    font-weight: 400;
    line-height: 0;

    transition: transform .25s ease;
}

.faq-primary-btn:hover {
    background: #B59655;
    border-color: #B59655;

    transform: translateY(-2px);
}

.faq-primary-btn:hover span {
    transform: translateX(4px);
}


/* =========================================================
   SECONDARY BUTTON
   ========================================================= */

.faq-secondary-btn {
    background: transparent;
    color: #F3EFE6;

    border: 1px solid rgba(243, 239, 230, .30);
}

.faq-secondary-btn:hover {
    background: rgba(243, 239, 230, .06);

    border-color: #C6A664;
    color: #C6A664;

    transform: translateY(-2px);
}


/* =========================================================
   LARGE DESKTOP
   ========================================================= */

@media (min-width: 1450px) {

    .faq-container {
        padding: 75px 0;
        gap: 65px;
    }

    .faq-question {
        font-size: 17px;
    }

    .faq-answer p {
        font-size: 15px;
    }

    .faq-cta {
        min-height: 570px;
        padding: 42px;
    }
}


/* =========================================================
   LAPTOP
   ========================================================= */

@media (max-width: 1200px) {

    .faq-container {
        width: min(100% - 60px, 1200px);
        padding: 55px 0;

        grid-template-columns: 1.05fr .95fr;
        gap: 40px;
    }

    .faq-content h2 {
        font-size: clamp(50px, 6vw, 68px);
        margin-bottom: 27px;
    }

    .faq-question {
        min-height: 66px;
        font-size: 15px;
    }

    .faq-answer p {
        font-size: 13.5px;
    }

    .faq-cta {
        min-height: 510px;
        padding: 34px;
    }

    .faq-cta-content h3 {
        font-size: clamp(44px, 5vw, 60px);
    }

    .faq-cta-description {
        font-size: 13.5px;
    }
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 900px) {

    .faq-container {
        width: min(100% - 50px, 700px);
        padding: 55px 0;

        grid-template-columns: 1fr;
        gap: 45px;
    }

    .faq-content h2 {
        font-size: clamp(50px, 10vw, 68px);
    }

    .faq-question {
        min-height: 67px;
        font-size: 16px;
    }

    .faq-answer p {
        font-size: 14px;
    }

    .faq-cta {
        min-height: 450px;
        padding: 36px;
    }

    .faq-cta-content h3 {
        font-size: clamp(45px, 9vw, 63px);
    }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 600px) {

    .faq-container {
        width: calc(100% - 36px);
        padding: 45px 0;

        gap: 38px;
    }

    .faq-eyebrow {
        margin-bottom: 11px;
        font-size: 9px;
        letter-spacing: .14em;
    }

    .faq-content h2 {
        margin-bottom: 25px;
        font-size: 52px;
    }


    /* QUESTIONS */

    .faq-question {
        min-height: 62px;
        padding: 16px 0;

        font-size: 15px;
        line-height: 1.4;
    }

    .faq-question b {
        flex-basis: 27px;

        width: 27px;
        height: 27px;

        font-size: 18px;
    }


    /* ANSWERS */

    .faq-item.active .faq-answer {
        padding: 0 5px 20px 0;
    }

    .faq-answer p {
        font-size: 13.5px;
        line-height: 1.65;
    }


    /* CTA */

    .faq-cta {
        min-height: 420px;
        padding: 31px 24px;
    }

    .faq-cta::before {
        inset: 8px;
    }

    .faq-cta-top > span {
        font-size: 9px;
    }

    .faq-cta-content h3 {
        font-size: 48px;
    }

    .faq-cta-subtitle {
        margin-top: 23px;
        font-size: 12px;
    }

    .faq-cta-description {
        font-size: 13px;
        line-height: 1.65;
    }


    /* BUTTONS */

    .faq-cta-actions {
        gap: 8px;
    }

    .faq-cta-actions a {
        min-height: 49px;
        font-size: 9px;
    }

    .faq-primary-btn span {
        font-size: 17px;
    }
}


/* =========================================================
   SMALL PHONES
   ========================================================= */

@media (max-width: 380px) {

    .faq-container {
        width: calc(100% - 30px);
        padding: 40px 0;
    }

    .faq-content h2 {
        font-size: 48px;
    }

    .faq-question {
        font-size: 14px;
    }

    .faq-answer p {
        font-size: 13px;
    }

    .faq-cta {
        min-height: 400px;
        padding: 28px 21px;
    }

    .faq-cta-content h3 {
        font-size: 45px;
    }
}
/* =========================================================
   FOXONATURALS FOOTER
========================================================= */
/* =====================================================
   FOXO NATURALS — PREMIUM FOOTER
   ===================================================== */

.site-footer{
    position:relative;

    background:#1B4332;
    color:#F3EFE6;

    padding:85px 0 0;

    overflow:hidden;
}


/* SUBTLE BACKGROUND DETAIL */

.site-footer::before{
    content:"";

    position:absolute;
    top:-180px;
    right:-180px;

    width:420px;
    height:420px;

    border:1px solid rgba(198,166,100,.08);
    border-radius:50%;

    pointer-events:none;
}

.site-footer::after{
    content:"";

    position:absolute;
    bottom:-240px;
    left:-200px;

    width:480px;
    height:480px;

    border:1px solid rgba(198,166,100,.06);
    border-radius:50%;

    pointer-events:none;
}


.footer-container{
    position:relative;
    z-index:2;

    width:90%;
    max-width:1400px;

    margin:0 auto;
}


/* =====================================================
   TOP
   ===================================================== */

.footer-top{
    display:grid;
    grid-template-columns:1.35fr .9fr;

    gap:100px;

    padding-bottom:65px;
}


/* BRAND */

.footer-brand{
    max-width:580px;
}

.footer-eyebrow{
    display:flex;
    align-items:center;
    gap:12px;

    color:#C6A664;

    font-size:10px;
    font-weight:700;
    letter-spacing:2.2px;
}

.footer-eyebrow::before{
    content:"";

    width:28px;
    height:1px;

    background:#C6A664;
}

.footer-brand h2{
    margin:20px 0 20px;

    color:#F3EFE6;

    font-family:"Cormorant Garamond",serif;

    font-size:48px;
    font-weight:500;
    line-height:1.03;
    letter-spacing:-.5px;
}

.footer-brand p{
    max-width:440px;

    margin:0;

    color:rgba(243,239,230,.62);

    font-size:14px;
    line-height:1.8;
}


/* =====================================================
   CONTACT
   ===================================================== */

.footer-contact{
    padding-top:7px;
}

.footer-title{
    display:block;

    margin-bottom:20px;

    color:#C6A664;

    font-size:10px;
    font-weight:700;
    letter-spacing:1.8px;
}


/* ACTIONS */

.footer-actions{
    display:flex;
    flex-direction:column;
    gap:10px;

    max-width:390px;
}

.footer-action{
    position:relative;

    display:flex;
    align-items:center;

    min-height:66px;

    padding:10px 14px;

    border:1px solid rgba(243,239,230,.16);
    background:rgba(255,255,255,.025);

    color:#F3EFE6;

    text-decoration:none;

    transition:
        border-color .3s ease,
        background .3s ease,
        transform .3s ease,
        box-shadow .3s ease;
}

.footer-action:hover{
    border-color:rgba(198,166,100,.65);

    background:rgba(198,166,100,.07);

    transform:translateX(5px);

    box-shadow:0 10px 30px rgba(0,0,0,.12);
}


/* ICON */

.footer-action-icon{
    width:40px;
    height:40px;

    display:flex;
    align-items:center;
    justify-content:center;

    margin-right:14px;

    border:1px solid rgba(198,166,100,.28);

    color:#C6A664;

    font-size:14px;

    transition:
        background .3s ease,
        color .3s ease,
        transform .3s ease;
}

.footer-action:hover .footer-action-icon{
    background:#C6A664;
    color:#1B4332;

    transform:rotate(-4deg);
}


/* TEXT */

.footer-action-text{
    display:flex;
    flex-direction:column;

    gap:4px;
}

.footer-action-text small{
    color:rgba(243,239,230,.45);

    font-size:8px;
    font-weight:700;

    letter-spacing:1.4px;
}

.footer-action-text strong{
    color:#F3EFE6;

    font-size:14px;
    font-weight:600;
}


/* ARROW */

.footer-action-arrow{
    margin-left:auto;

    color:#C6A664;

    font-size:18px;

    transition:
        transform .3s ease;
}

.footer-action:hover .footer-action-arrow{
    transform:translateX(5px);
}


/* PRIMARY */

.footer-action-primary{
    border-color:rgba(198,166,100,.38);
}

.footer-action-primary:hover{
    background:#C6A664;
    border-color:#C6A664;
}

.footer-action-primary:hover .footer-action-icon{
    background:#1B4332;
    color:#C6A664;
}

.footer-action-primary:hover .footer-action-text small{
    color:rgba(27,67,50,.62);
}

.footer-action-primary:hover .footer-action-text strong,
.footer-action-primary:hover .footer-action-arrow{
    color:#1B4332;
}


/* =====================================================
   DIVIDER
   ===================================================== */

.footer-divider{
    display:flex;
    align-items:center;
    gap:16px;

    width:100%;

    margin-bottom:45px;
}

.footer-divider span{
    height:1px;
    flex:1;

    background:rgba(243,239,230,.10);
}

.footer-divider i{
    flex:none;

    color:#C6A664;

    font-size:9px;
    font-style:normal;

    animation:footerPulse 3s ease-in-out infinite;
}

@keyframes footerPulse{

    0%,100%{
        opacity:.45;
        transform:scale(.85);
    }

    50%{
        opacity:1;
        transform:scale(1);
    }
}


/* =====================================================
   LEGAL
   ===================================================== */

.footer-lower{
    padding-bottom:42px;
}

.footer-legal{
    display:flex;
    align-items:center;
    justify-content:space-between;

    gap:30px;
}

.footer-legal .footer-title{
    margin:0;
    white-space:nowrap;
}

.footer-legal-links{
    display:flex;
    align-items:center;
    justify-content:flex-end;

    flex-wrap:wrap;

    gap:0;
}

.footer-legal-links a{
    position:relative;

    padding:0 17px;

    color:rgba(243,239,230,.55);

    font-size:12px;

    transition:
        color .25s ease;
}

.footer-legal-links a:first-child{
    padding-left:0;
}

.footer-legal-links a:hover{
    color:#C6A664;
}

.footer-legal-links a:not(:last-child)::after{
    content:"";

    position:absolute;
    right:0;
    top:50%;

    width:3px;
    height:3px;

    border-radius:50%;

    background:rgba(198,166,100,.55);

    transform:translateY(-50%);
}


/* =====================================================
   BOTTOM
   ===================================================== */

.footer-bottom{
    min-height:70px;

    border-top:1px solid rgba(243,239,230,.10);

    display:flex;
    align-items:center;
    justify-content:space-between;

    gap:20px;
}


/* COPYRIGHT */

.footer-copyright{
    display:flex;
    align-items:center;
    gap:9px;
}

.footer-dot{
    width:5px;
    height:5px;

    border-radius:50%;

    background:#C6A664;
}

.footer-copyright p{
    margin:0;

    color:rgba(243,239,230,.42);

    font-size:10px;
    letter-spacing:.3px;
}


/* LOCATION */

.footer-location{
    display:flex;
    align-items:center;
    gap:8px;
}

.footer-location i{
    color:#C6A664;
    font-size:10px;
}

.footer-location span{
    color:rgba(243,239,230,.55);

    font-size:9px;
    font-weight:600;

    letter-spacing:1.6px;
}


/* =====================================================
   TABLET
   ===================================================== */

@media(max-width:850px){

    .site-footer{
        padding-top:65px;
    }

    .footer-top{
        grid-template-columns:1fr;

        gap:45px;
    }

    .footer-brand h2{
        font-size:42px;
    }

    .footer-actions{
        max-width:100%;
        flex-direction:row;
    }

    .footer-action{
        flex:1;
    }

    .footer-legal{
        align-items:flex-start;
        flex-direction:column;
        gap:20px;
    }

    .footer-legal-links{
        justify-content:flex-start;
    }

    .footer-legal-links a:first-child{
        padding-left:0;
    }
}


/* =====================================================
   MOBILE
   ===================================================== */

@media(max-width:576px){

    .site-footer{
        padding-top:55px;
    }

    .footer-container{
        width:88%;
    }

    .footer-top{
        gap:38px;
        padding-bottom:45px;
    }

    .footer-brand h2{
        font-size:35px;
        line-height:1.05;
    }

    .footer-brand p{
        font-size:13px;
        line-height:1.7;
    }

    .footer-actions{
        flex-direction:column;
        gap:8px;
    }

    .footer-action{
        min-height:60px;
    }

    .footer-divider{
        margin-bottom:35px;
    }

    .footer-lower{
        padding-bottom:30px;
    }

    .footer-legal-links{
        display:grid;
        grid-template-columns:1fr 1fr;

        width:100%;
    }

    .footer-legal-links a{
        padding:8px 0 !important;
        font-size:11px;
    }

    .footer-legal-links a::after{
        display:none;
    }

    .footer-bottom{
        min-height:auto;

        padding:20px 0;

        align-items:flex-start;
        flex-direction:column;

        gap:10px;
    }
}
/* =====================================================
   PREMIUM LOADING SCREEN
   ===================================================== */

.site-loader{
    position:fixed;
    inset:0;

    z-index:999999;

    display:flex;
    align-items:center;
    justify-content:center;

    background:#1B4332;

    opacity:1;
    visibility:visible;

    transition:
        opacity .65s ease,
        visibility .65s ease;
}

.site-loader.loaded{
    opacity:0;
    visibility:hidden;
    pointer-events:none;
}


/* CONTENT */

.loader-content{
    width:90%;
    max-width:420px;

    display:flex;
    flex-direction:column;
    align-items:center;

    text-align:center;

    animation:loaderEnter .8s ease both;
}


/* BRAND */

.loader-brand{
    color:#F3EFE6;

    font-family:"Cormorant Garamond",serif;

    font-size:34px;
    font-weight:500;

    letter-spacing:4px;

    line-height:1;
}


/* GOLD DIVIDER */

.loader-mark{
    display:flex;
    align-items:center;

    width:150px;

    gap:12px;

    margin:22px 0 17px;
}

.loader-mark span{
    height:1px;
    flex:1;

    background:rgba(198,166,100,.45);
}

.loader-mark i{
    color:#C6A664;

    font-size:10px;
    font-style:normal;

    animation:loaderPulse 1.4s ease-in-out infinite;
}


/* LOCATION */

.loader-location{
    color:rgba(243,239,230,.48);

    font-size:8px;
    font-weight:600;

    letter-spacing:2.2px;
}


/* =====================================================
   ANIMATIONS
   ===================================================== */

@keyframes loaderEnter{

    from{
        opacity:0;
        transform:translateY(10px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }

}

@keyframes loaderPulse{

    0%,100%{
        opacity:.35;
        transform:scale(.8);
    }

    50%{
        opacity:1;
        transform:scale(1.15);
    }

}


/* =====================================================
   MOBILE
   ===================================================== */

@media(max-width:576px){

    .loader-brand{
        font-size:29px;
        letter-spacing:3px;
    }

    .loader-mark{
        width:125px;
        margin:19px 0 15px;
    }

    .loader-location{
        font-size:7px;
        letter-spacing:1.8px;
    }

}/* =========================================================
   PREMIUM MAKHANA — QUOTE MODAL
   Dark Green #1B4332
   Gold      #C6A664
   Cream     #F3EFE6
   Gray      #5C625D
   ========================================================= */


/* ---------------------------------------------------------
   MODAL
   --------------------------------------------------------- */
/* =========================================================
   FOXO NATURALS
   PREMIUM BUSINESS ENQUIRY POPUP
   ========================================================= */


/* =========================================================
   MODAL
   ========================================================= */

.quote-modal {
    position: fixed;
    inset: 0;
    z-index: 99999;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 24px;

    opacity: 0;
    visibility: hidden;

    transition:
        opacity .35s ease,
        visibility .35s ease;
}

.quote-modal.active {
    opacity: 1;
    visibility: visible;
}


/* =========================================================
   DARK BACKDROP
   ========================================================= */

.quote-overlay {
    position: absolute;
    inset: 0;

    background: rgba(12, 31, 24, .78);

    backdrop-filter: blur(11px);
    -webkit-backdrop-filter: blur(11px);
}


/* =========================================================
   MAIN POPUP
   ========================================================= */

.quote-popup {
    position: relative;
    z-index: 2;

    width: min(1080px, 94vw);

    background: #F3EFE6;

    border: 1px solid rgba(198, 166, 100, .58);

    box-shadow:
        0 35px 100px rgba(0, 0, 0, .38);

    transform: translateY(18px) scale(.975);

    transition:
        transform .4s cubic-bezier(.22, .61, .36, 1);
}

.quote-modal.active .quote-popup {
    transform: translateY(0) scale(1);
}


/* =========================================================
   GOLD TOP ACCENT
   ========================================================= */

.quote-popup::before {
    content: "";

    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    height: 3px;

    background: #C6A664;
}


/* =========================================================
   CLOSE BUTTON
   ========================================================= */

.quote-close {
    position: absolute;
    top: 20px;
    right: 22px;

    z-index: 20;

    width: 40px;
    height: 40px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 0;

    border: 1px solid rgba(27, 67, 50, .20);
    border-radius: 50%;

    background: transparent;

    color: #1B4332;

    font-family: Arial, sans-serif;
    font-size: 22px;
    font-weight: 300;
    line-height: 1;

    cursor: pointer;

    transition:
        background .25s ease,
        color .25s ease,
        border-color .25s ease,
        transform .3s ease;
}

.quote-close:hover {
    background: #1B4332;

    border-color: #1B4332;

    color: #F3EFE6;

    transform: rotate(90deg);
}


/* =========================================================
   HEADER
   ========================================================= */

.quote-header {
    position: relative;

    display: grid;

    grid-template-columns: 1fr 1.15fr;

    align-items: end;

    column-gap: 70px;

    padding: 48px 56px 32px;

    border-bottom: 1px solid rgba(27, 67, 50, .13);
}


/* =========================================================
   EYEBROW
   ========================================================= */

.quote-header > span {
    display: flex;
    align-items: center;

    gap: 10px;

    margin-bottom: 14px;

    color: #C6A664;

    font-family: "Inter", sans-serif;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 2.5px;
}

.quote-header > span::before {
    content: "";

    width: 6px;
    height: 6px;

    flex: 0 0 6px;

    background: #C6A664;

    border-radius: 50%;
}


/* =========================================================
   HEADING
   ========================================================= */

.quote-header h2 {
    margin: 0;

    color: #1B4332;

    font-family: "Cormorant Garamond", serif;

    font-size: 60px;
    font-weight: 500;

    line-height: .9;

    letter-spacing: -1.8px;
}


/* =========================================================
   HEADER DESCRIPTION
   ========================================================= */

.quote-header p {
    max-width: 440px;

    margin: 0 0 3px;

    color: #5C625D;

    font-family: "Inter", sans-serif;

    font-size: 14px;

    line-height: 1.7;
}


/* =========================================================
   FORM AREA
   ========================================================= */

.quote-form {
    position: relative;

    display: grid;

    grid-template-columns: 1fr 1fr;

    grid-template-rows: repeat(6, auto);

    column-gap: 0;
    row-gap: 18px;

    padding: 36px 0 40px;
}


/* =========================================================
   CENTRAL DIVIDER
   ========================================================= */

.quote-form::before {
    content: "";

    position: absolute;

    top: 36px;
    bottom: 40px;

    left: 50%;

    width: 1px;

    background: rgba(27, 67, 50, .13);

    pointer-events: none;
}


/* =========================================================
   ALL FIELDS
   ========================================================= */

.quote-field {
    min-width: 0;

    display: flex;
    flex-direction: column;

    gap: 8px;

    box-sizing: border-box;
}


/* =========================================================
   LEFT COLUMN
   NAME
   COMPANY
   EMAIL
   PHONE
   COUNTRY
   BUYER TYPE
   ========================================================= */

.quote-field:nth-child(1),
.quote-field:nth-child(2),
.quote-field:nth-child(3),
.quote-field:nth-child(4),
.quote-field:nth-child(5),
.quote-field:nth-child(6) {

    grid-column: 1;

    margin-left: 56px;
    margin-right: 36px;
}


/* =========================================================
   RIGHT COLUMN
   GRADE
   QUANTITY
   PACKAGING
   REQUIREMENT
   ========================================================= */

.quote-field:nth-child(7),
.quote-field:nth-child(8),
.quote-field:nth-child(9),
.quote-field:nth-child(10) {

    grid-column: 2;

    margin-left: 36px;
    margin-right: 56px;
}


/* =========================================================
   FIELD POSITIONS
   ========================================================= */

/* LEFT */

.quote-field:nth-child(1) {
    grid-row: 1;
}

.quote-field:nth-child(2) {
    grid-row: 2;
}

.quote-field:nth-child(3) {
    grid-row: 3;
}

.quote-field:nth-child(4) {
    grid-row: 4;
}

.quote-field:nth-child(5) {
    grid-row: 5;
}

.quote-field:nth-child(6) {
    grid-row: 6;
}


/* RIGHT */

.quote-field:nth-child(7) {
    grid-row: 1;
}

.quote-field:nth-child(8) {
    grid-row: 2;
}

.quote-field:nth-child(9) {
    grid-row: 3;
}

.quote-field:nth-child(10) {
    grid-row: 4 / span 2;
}


/* =========================================================
   LABELS
   ========================================================= */

.quote-field label {
    color: #1B4332;

    font-family: "Inter", sans-serif;

    font-size: 10.5px;

    font-weight: 700;

    letter-spacing: 1.3px;

    line-height: 1;
}


/* =========================================================
   INPUTS
   ========================================================= */

.quote-field input,
.quote-field select,
.quote-field textarea {
    width: 100%;

    box-sizing: border-box;

    border: 1px solid rgba(27, 67, 50, .19);

    border-radius: 2px;

    outline: none;

    background: rgba(255, 255, 255, .30);

    color: #1B4332;

    font-family: "Inter", sans-serif;

    transition:
        border-color .25s ease,
        background .25s ease,
        box-shadow .25s ease;
}


/* =========================================================
   INPUT + SELECT
   ========================================================= */

.quote-field input,
.quote-field select {
    height: 46px;

    padding: 0 16px;

    font-size: 13px;
}


/* =========================================================
   TEXTAREA
   ========================================================= */

.quote-field textarea {
    height: 108px;

    min-height: 108px;

    padding: 13px 16px;

    resize: none;

    font-size: 13px;

    line-height: 1.55;
}


/* =========================================================
   PLACEHOLDERS
   ========================================================= */

.quote-field input::placeholder,
.quote-field textarea::placeholder {
    color: #92968F;

    opacity: 1;
}


/* =========================================================
   SELECT
   ========================================================= */

.quote-field select {
    cursor: pointer;
}


/* =========================================================
   FOCUS
   ========================================================= */

.quote-field input:focus,
.quote-field select:focus,
.quote-field textarea:focus {
    border-color: #C6A664;

    background: rgba(255, 255, 255, .65);

    box-shadow:
        0 0 0 3px rgba(198, 166, 100, .12);
}


/* =========================================================
   SUBMIT AREA
   ========================================================= */

.quote-submit-area {
    grid-column: 2;
    grid-row: 6;

    display: flex;
    align-items: center;

    gap: 20px;

    margin-left: 36px;
    margin-right: 56px;

    margin-top: 4px;
}


/* =========================================================
   SUBMIT BUTTON
   ========================================================= */

.quote-submit {
    position: relative;

    min-width: 190px;
    height: 50px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 22px;

    padding: 0 26px;

    border: 1px solid #1B4332;

    background: #1B4332;

    color: #F3EFE6;

    font-family: "Inter", sans-serif;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 1.5px;

    cursor: pointer;

    overflow: hidden;

    isolation: isolate;

    transition: color .25s ease;
}


/* GOLD HOVER */

.quote-submit::before {
    content: "";

    position: absolute;
    inset: 0;

    z-index: -1;

    background: #C6A664;

    transform: translateX(-101%);

    transition:
        transform .35s cubic-bezier(.22, .61, .36, 1);
}

.quote-submit:hover::before {
    transform: translateX(0);
}


/* ARROW */

.quote-submit span {
    font-size: 18px;
    font-weight: 300;

    transition: transform .25s ease;
}

.quote-submit:hover span {
    transform: translateX(5px);
}


/* =========================================================
   RESPONSE NOTE
   ========================================================= */

.quote-submit-area small {
    max-width: 190px;

    color: #69706B;

    font-family: "Inter", sans-serif;

    font-size: 10.5px;

    line-height: 1.5;
}


/* =========================================================
   LAPTOP
   ========================================================= */

@media (min-width: 769px) and (max-width: 1200px) {

    .quote-popup {
        width: min(1000px, 94vw);
    }

    .quote-header {
        padding: 40px 44px 26px;

        column-gap: 45px;
    }

    .quote-header h2 {
        font-size: 50px;
    }

    .quote-header p {
        font-size: 13px;
    }

    .quote-form {
        padding: 30px 0 32px;

        row-gap: 16px;
    }

    .quote-form::before {
        top: 30px;
        bottom: 32px;
    }

    .quote-field:nth-child(1),
    .quote-field:nth-child(2),
    .quote-field:nth-child(3),
    .quote-field:nth-child(4),
    .quote-field:nth-child(5),
    .quote-field:nth-child(6) {
        margin-left: 44px;
        margin-right: 26px;
    }

    .quote-field:nth-child(7),
    .quote-field:nth-child(8),
    .quote-field:nth-child(9),
    .quote-field:nth-child(10) {
        margin-left: 26px;
        margin-right: 44px;
    }

    .quote-field {
        gap: 7px;
    }

    .quote-field label {
        font-size: 10px;
    }

    .quote-field input,
    .quote-field select {
        height: 42px;

        font-size: 12.5px;
    }

    .quote-field textarea {
        height: 94px;
        min-height: 94px;

        font-size: 12.5px;
    }

    .quote-submit-area {
        margin-left: 26px;
        margin-right: 44px;
    }

    .quote-submit {
        height: 46px;

        min-width: 175px;
    }
}


/* =========================================================
   SHORT LAPTOP
   1366x768 / 1280x720 ETC.
   ========================================================= */

@media (min-width: 769px) and (max-height: 720px) {

    .quote-modal {
        padding: 14px;
    }

    .quote-popup {
        width: min(1000px, 95vw);
    }

    .quote-header {
        padding: 30px 38px 20px;

        column-gap: 35px;
    }

    .quote-header > span {
        margin-bottom: 9px;

        font-size: 9.5px;
    }

    .quote-header h2 {
        font-size: 42px;
    }

    .quote-header p {
        font-size: 11.5px;
    }

    .quote-form {
        padding: 22px 0 24px;

        row-gap: 12px;
    }

    .quote-form::before {
        top: 22px;
        bottom: 24px;
    }

    .quote-field:nth-child(1),
    .quote-field:nth-child(2),
    .quote-field:nth-child(3),
    .quote-field:nth-child(4),
    .quote-field:nth-child(5),
    .quote-field:nth-child(6) {
        margin-left: 38px;
        margin-right: 23px;
    }

    .quote-field:nth-child(7),
    .quote-field:nth-child(8),
    .quote-field:nth-child(9),
    .quote-field:nth-child(10) {
        margin-left: 23px;
        margin-right: 38px;
    }

    .quote-field {
        gap: 5px;
    }

    .quote-field label {
        font-size: 9px;
    }

    .quote-field input,
    .quote-field select {
        height: 36px;

        padding: 0 13px;

        font-size: 11.5px;
    }

    .quote-field textarea {
        height: 74px;
        min-height: 74px;

        padding: 10px 13px;

        font-size: 11.5px;
    }

    .quote-submit-area {
        margin-left: 23px;
        margin-right: 38px;
    }

    .quote-submit {
        min-width: 160px;

        height: 42px;

        font-size: 10px;
    }

    .quote-submit-area small {
        font-size: 9px;
    }
}


/* =========================================================
   MOBILE / PHONE
   ========================================================= */

@media (max-width: 768px) {

    .quote-modal {
        padding: 10px;
    }

    .quote-popup {
        width: 100%;

        max-height: calc(100vh - 20px);

        overflow-y: auto;

        overscroll-behavior: contain;
    }


    /* HEADER */

    .quote-header {
        display: block;

        padding: 38px 26px 26px;
    }

    .quote-header h2 {
        font-size: 44px;
    }

    .quote-header p {
        max-width: 500px;

        margin-top: 16px;

        font-size: 13.5px;
    }


    /* FORM */

    .quote-form {
        display: flex;
        flex-direction: column;

        gap: 20px;

        padding: 30px 26px 34px;
    }


    /* REMOVE DESKTOP DIVIDER */

    .quote-form::before {
        display: none;
    }


    /* RESET FIELD MARGINS */

    .quote-field:nth-child(1),
    .quote-field:nth-child(2),
    .quote-field:nth-child(3),
    .quote-field:nth-child(4),
    .quote-field:nth-child(5),
    .quote-field:nth-child(6),
    .quote-field:nth-child(7),
    .quote-field:nth-child(8),
    .quote-field:nth-child(9),
    .quote-field:nth-child(10) {
        margin-left: 0;
        margin-right: 0;
    }

    .quote-field {
        gap: 8px;
    }

    .quote-field label {
        font-size: 11px;
    }


    /* INPUTS */

    .quote-field input,
    .quote-field select {
        height: 48px;

        font-size: 14px;
    }

    .quote-field textarea {
        height: 100px;

        min-height: 100px;

        font-size: 14px;
    }


    /* SUBMIT */

    .quote-submit-area {
        margin: 8px 0 0;

        display: flex;
        flex-direction: column;

        align-items: stretch;

        gap: 12px;
    }

    .quote-submit {
        width: 100%;

        height: 50px;

        font-size: 12px;
    }

    .quote-submit-area small {
        max-width: none;

        text-align: center;

        font-size: 11px;
    }
}


/* =========================================================
   SMALL PHONE
   ========================================================= */

@media (max-width: 480px) {

    .quote-modal {
        padding: 8px;
    }

    .quote-popup {
        max-height: calc(100vh - 16px);
    }

    .quote-close {
        top: 15px;
        right: 15px;

        width: 36px;
        height: 36px;

        font-size: 20px;
    }

    .quote-header {
        padding: 34px 20px 22px;
    }

    .quote-header > span {
        font-size: 9.5px;

        letter-spacing: 2px;
    }

    .quote-header h2 {
        font-size: 38px;

        letter-spacing: -1px;
    }

    .quote-header p {
        margin-top: 14px;

        font-size: 12.5px;
    }

    .quote-form {
        padding: 26px 20px 30px;

        gap: 18px;
    }

    .quote-field label {
        font-size: 10.5px;
    }

    .quote-field input,
    .quote-field select {
        height: 46px;

        font-size: 13px;
    }

    .quote-field textarea {
        height: 92px;
        min-height: 92px;

        font-size: 13px;
    }

    .quote-submit {
        height: 48px;

        font-size: 11.5px;
    }

    .quote-submit-area small {
        font-size: 10.5px;
    }
}
/* =========================================================
   CONTACT INFO POPUP
   ========================================================= */

.contact-modal {
    position: fixed;
    inset: 0;
    z-index: 100000;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 20px;

    opacity: 0;
    visibility: hidden;

    transition: opacity .3s ease, visibility .3s ease;
}

.contact-modal.active {
    opacity: 1;
    visibility: visible;
}


/* BACKDROP */

.contact-modal-overlay {
    position: absolute;
    inset: 0;

    background: rgba(12, 32, 24, .78);

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}


/* CARD */

.contact-modal-card {
    position: relative;
    z-index: 2;

    width: min(520px, 92vw);

    padding: 48px 50px 45px;

    box-sizing: border-box;

    background: #F3EFE6;

    border: 1px solid rgba(198, 166, 100, .65);

    box-shadow: 0 30px 90px rgba(0,0,0,.35);

    text-align: center;

    transform: translateY(15px) scale(.97);

    transition: transform .35s cubic-bezier(.22,.61,.36,1);
}

.contact-modal.active .contact-modal-card {
    transform: translateY(0) scale(1);
}


/* GOLD TOP LINE */

.contact-modal-card::before {
    content: "";

    position: absolute;
    top: 0;
    left: 50%;

    width: 55px;
    height: 3px;

    background: #C6A664;

    transform: translateX(-50%);
}


/* CLOSE */

.contact-modal-close {
    position: absolute;
    top: 17px;
    right: 19px;

    width: 36px;
    height: 36px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 0;

    border: 1px solid rgba(27,67,50,.18);
    border-radius: 50%;

    background: transparent;

    color: #1B4332;

    font-size: 22px;
    font-weight: 300;

    cursor: pointer;

    transition: .25s ease;
}

.contact-modal-close:hover {
    background: #1B4332;
    color: #F3EFE6;

    transform: rotate(90deg);
}


/* EYEBROW */

.contact-modal-eyebrow {
    display: block;

    margin-bottom: 13px;

    color: #C6A664;

    font-family: "Inter", sans-serif;

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 2.5px;
}


/* HEADING */

.contact-modal-card h2 {
    margin: 0;

    color: #1B4332;

    font-family: "Cormorant Garamond", serif;

    font-size: 57px;
    font-weight: 500;

    line-height: .88;

    letter-spacing: -1.5px;
}


/* DESCRIPTION */

.contact-modal-description {
    max-width: 360px;

    margin: 18px auto 30px;

    color: #5C625D;

    font-family: "Inter", sans-serif;

    font-size: 11px;

    line-height: 1.6;
}


/* CONTACT ITEMS */

.contact-modal-items {
    border-top: 1px solid rgba(27,67,50,.13);
    border-bottom: 1px solid rgba(27,67,50,.13);
}


/* ITEM */

.contact-modal-item {
    display: flex;
    align-items: center;

    padding: 17px 5px;

    text-align: left;

    text-decoration: none;

    transition: padding .25s ease;
}

.contact-modal-item + .contact-modal-item {
    border-top: 1px solid rgba(27,67,50,.10);
}


/* ICON */

.contact-modal-icon {
    width: 38px;
    height: 38px;

    flex: 0 0 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-right: 15px;

    border: 1px solid rgba(198,166,100,.55);

    color: #1B4332;

    font-size: 13px;
}


/* LABEL */

.contact-modal-item small {
    display: block;

    margin-bottom: 4px;

    color: #C6A664;

    font-family: "Inter", sans-serif;

    font-size: 7px;
    font-weight: 700;

    letter-spacing: 1.5px;
}


/* VALUE */

.contact-modal-item strong {
    display: block;

    color: #1B4332;

    font-family: "Inter", sans-serif;

    font-size: 14px;
    font-weight: 500;
}


/* HOVER */

.contact-modal-item:hover {
    padding-left: 10px;
}

.contact-modal-item:hover strong {
    color: #C6A664;
}


/* FOOTER */

.contact-modal-footer {
    margin-top: 24px;

    color: #69706B;

    font-family: "Inter", sans-serif;

    font-size: 8px;

    letter-spacing: .4px;
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 600px) {

    .contact-modal {
        padding: 12px;
    }

    .contact-modal-card {
        width: 100%;

        padding: 42px 25px 32px;
    }

    .contact-modal-card h2 {
        font-size: 47px;
    }

    .contact-modal-description {
        margin: 15px auto 24px;

        font-size: 10px;
    }

    .contact-modal-item {
        padding: 15px 2px;
    }

    .contact-modal-item strong {
        font-size: 12px;
    }
}