:root {
    --bg: #F8F6F2;
    --bg2: #F2EDE3;
    --bg3: #EDE6D9;
    --card: #fff;
    --dark: #1C1917;
    --dark2: #252220;
    --t1: #1A1A1A;
    --t2: #5A5752;
    --t3: #8E8B85;
    --gold: #C58A38;
    --gold-l: #D4A159;
    --gold-bg: rgba(197, 138, 56, .10);
    --gold-glow: rgba(197, 138, 56, .18);
    --walnut: #423023;
    --walnut-hov: #322318;
    --oak: #B98755;
    --border: #E7E2D8;
    --border-dk: #332F2B;
    --pill: 9999px;
    --r24: 24px;
    --r16: 16px;
    --r8: 8px;
    --sh1: 0 4px 20px rgba(0, 0, 0, .03);
    --sh2: 0 16px 40px -10px rgba(35, 25, 15, .07);
    --sh3: 0 20px 50px -12px rgba(28, 25, 23, .12);
    --ease: cubic-bezier(.25, 1, .5, 1);
    --tr: .25s cubic-bezier(.25, 1, .5, 1);
    --font: 'SF Pro Display', 'SF Pro Text', -apple-system, BlinkMacSystemFont, 'Inter', system-ui, sans-serif;
    --section-gap: 7rem;
    --section-gap-sm: 4rem;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased
}

body {
    background: var(--bg);
    color: var(--t1);
    font-family: var(--font);
    line-height: 1.6;
    overflow-x: hidden
}

h1,
h2,
h3,
h4 {
    font-family: var(--font);
    font-weight: 700;
    letter-spacing: -.02em;
    color: var(--t1)
}

p {
    color: var(--t2)
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--tr)
}

img {
    display: block;
    max-width: 100%
}

ul {
    list-style: none
}

.container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 80px
}

.gold {
    color: var(--gold);
    font-style: normal
}

.tag {
    display: inline-block;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .18em;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: .7rem;
    background: var(--gold-bg);
    padding: .22rem .75rem;
    border-radius: var(--pill);
    border: 1px solid rgba(197, 138, 56, .18);
}

.tag-gold {
    color: var(--gold-l)
}

/* ── NAVBAR ── */
.navbar-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    width: 100%;
    pointer-events: none
}

.navbar {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 72px;
    padding: 0 52px;
    background: rgba(248, 246, 242, .65);
    backdrop-filter: blur(28px);
    -webkit-backdrop-filter: blur(28px);
    border-bottom: 1px solid rgba(218, 212, 200, .28);
    transition: .35s cubic-bezier(.22, 1, .36, 1);
    pointer-events: auto;
    overflow: hidden;
}

.nav-links {

    display: flex;

    gap: 58px;

    margin-left: auto;

    margin-right: 36px;

}

.nav-link {

    position: relative;

    font-weight: 500;

}

.nav-link::after {

    content: "";

    position: absolute;

    bottom: -8px;

    left: 0;

    width: 0;

    height: 2px;

    background: #C58A38;

    transition: .35s;

}

.nav-link:hover::after {

    width: 100%;

}

.navbar.scrolled {
    background: rgba(247, 244, 238, .98);
    border-bottom: 1px solid rgba(225, 217, 204, .8);
    box-shadow: 0 4px 20px rgba(0, 0, 0, .04);
    min-height: 80px;
    padding: 0 3.5rem
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: .75rem;
    margin-left: -24px;
}

.nav-logo-img {
    height: 90px;
    width: auto;
    object-fit: contain;
    mix-blend-mode: multiply;
    transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.brand-logo:hover .nav-logo-img {
    transform: scale(1.03);
}

.footer-logo-img {
    height: 90px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.95;
    transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.footer-brand:hover .footer-logo-img {
    transform: scale(1.03);
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1
}

.brand-name {
    font-family: var(--font);
    font-size: 1.23rem;
    font-weight: 800;
    letter-spacing: .14em;
    color: var(--t1)
}

.brand-sub {
    font-size: .66rem;
    font-weight: 600;
    letter-spacing: .28em;
    color: var(--t3);
    margin-top: 1px
}

.nav-links {
    display: flex;
    align-items: center;
    gap: clamp(1rem, 2.5vw, 3.5rem);
    margin-left: auto;
    margin-right: 2rem;
    flex-shrink: 1;
    min-width: 0;
    overflow: hidden;
}

.nav-link {
    font-family: var(--font);
    font-size: .88rem;
    font-weight: 500;
    color: var(--t1);
    position: relative;
    padding: .2rem 0;
    white-space: nowrap;
    flex-shrink: 0;
}

.nav-link:hover {
    color: var(--gold)
}

.nav-link.active {
    font-weight: 600
}

.active-dot {
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 4.5px;
    height: 4.5px;
    background: var(--gold);
    border-radius: 50%
}

.btn-contact-nav {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    padding: .52rem 1.35rem;
    border: 1px solid var(--gold);
    border-radius: var(--pill);
    background: transparent;
    color: var(--t1);
    font-family: var(--font);
    font-size: .84rem;
    font-weight: 600;
    transition: var(--tr);
    flex-shrink: 0;
    white-space: nowrap;
}

.btn-contact-nav:hover {
    background: var(--gold);
    color: #fff;
    box-shadow: 0 6px 20px rgba(197, 138, 56, .3)
}

/* ── HERO SECTION ── */
/* =========================================================
   HERO SECTION
========================================================= */

.hero-section {
    position: relative;
    background-color: #F8F6F2;
    background-image: url('hero_texture.png');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    padding-top: 120px;
    padding-bottom: var(--section-gap-sm);
    overflow-x: hidden;
}

/* Decorative pieces */

.blob {
    position: absolute;
    z-index: 5;
    pointer-events: none;
    opacity: 0.85;
}

.blob-left {
    left: 32px;
    top: 280px;
    width: 104px;
    opacity: 0.85;
}

.blob-right {
    right: 32px;
    top: 280px;
    width: 96px;
    opacity: 0.85;
}

/* Pendant — centered above arch, floats through navbar */
.pendant-img-wrap {
    position: absolute;
    top: -0px;
    left: 37%;
    transform: translateX(-50%);
    width: 200px;
    z-index: 1100;
    pointer-events: none;
    animation: pendulum 6s ease-in-out infinite alternate;
}

@keyframes pendulum {
    from {
        transform: translateX(-50%) rotate(-0.8deg);
    }

    to {
        transform: translateX(-50%) rotate(.8deg);
    }
}

/* ========================================================= */
.arch-container {
    position: relative;
    width: min(1450px, 92vw);
    height: 780px;
    margin: 20px auto 0;
    overflow: hidden;
    border-radius: 720px 720px 0 0;
    background: linear-gradient(180deg, #F3EFE8, #ECE7DF);
    border: 1px solid rgba(223, 214, 201, .55);
    box-shadow: inset 0 2px 0 rgba(255, 255, 255, .9), 0 40px 90px rgba(35, 30, 20, .05);
}

.arch-hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    transform: scale(1.0);
    z-index: 1;
    filter: brightness(1.06) contrast(1.03) saturate(1.04);
    transition: transform .8s cubic-bezier(.22, 1, .36, 1);
}

.arch-container:hover .arch-hero-bg {
    transform: scale(1.02);
}

/* ========================================================= */
.arch-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: transparent;
    pointer-events: none;
}

/* ========================================================= */
.arch-content {
    position: absolute;
    left: 50%;
    top: 20px;
    transform: translateX(-50%);
    width: calc(100% - 64px);
    max-width: 760px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    z-index: 10;
    box-sizing: border-box;
    padding: 30px 40px;
    isolation: isolate;
}

/* Blurred cream glow — scoped to text block only via pseudo-element */
.arch-content::before {
    content: '';
    position: absolute;
    inset: -30%;
    z-index: -1;
    border-radius: 50%;
    background: radial-gradient(ellipse 85% 75% at 50% 22%,
            rgba(245, 240, 232, 0.92) 0%,
            rgba(245, 240, 232, 0.65) 35%,
            rgba(245, 240, 232, 0.22) 62%,
            rgba(245, 240, 232, 0) 100%);
    filter: blur(40px);
    pointer-events: none;
}

/* =========================================================
   BADGE (OUTSIDE SEMI-CIRCLE)
========================================================= */
.hero-badge-outer {
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 20;
    margin-bottom: -18px;
}

.badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 4px 15px;
    border-radius: 999px;
    background: #FFFFFF;
    border: none;
    font-size: 10px;
    font-weight: 650;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: #5E5A54;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06), 0 2px 6px rgba(0, 0, 0, 0.03);
    margin: 0;
}

.badge-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #C58A38;
}

/* =========================================================
   HERO TITLE
========================================================= */
.hero-title {
    font-family: "SF Pro Display", -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: clamp(4.5rem, 9.5vw, 70px);
    font-weight: 550;
    line-height: .92;
    letter-spacing: -0.01em;
    text-transform: uppercase;
    color: #1D1D1F;
    margin: 0;
}

.gold-text {
    color: #C58A38;
}

/* ========================================================= */
.hero-sub {
    margin-top: 20px;
    max-width: 620px;
    font-size: 1.12rem;
    font-weight: 500;
    line-height: 1.6;
    color: #FFFFFF;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.55), 0 2px 20px rgba(0, 0, 0, 0.35);
}

/* ========================================================= */
.hero-ctas {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin-top: 26px;
}

/* ========================================================= */
.btn-dark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    height: 52px;
    padding: 0 30px;
    border-radius: 999px;
    background: #36281E;
    color: #FFFFFF;
    border: none;
    font-family: "SF Pro Display", -apple-system, sans-serif;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    box-shadow: 0 12px 28px rgba(40, 25, 15, 0.30);
    transition: all .3s cubic-bezier(.22, 1, .36, 1);
}

.btn-dark:hover {
    transform: translateY(-2px);
    background: #2A1F17;
    box-shadow: 0 16px 32px rgba(40, 25, 15, 0.38);
}

/* ========================================================= */
.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    height: 52px;
    padding: 0 30px;
    border-radius: 999px;
    background: #F7F3EC;
    color: #332B25;
    border: 1px solid #D1BF9F;
    font-family: "SF Pro Display", -apple-system, sans-serif;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.04);
    transition: all .3s cubic-bezier(.22, 1, .36, 1);
}

.btn-outline svg {
    color: #B37F38;
}

.btn-outline:hover {
    background: #FFFFFF;
    border-color: #B37F38;
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
}

/* ========================================================= */
.social-proof {
    margin-top: 22px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 550;
    color: #FFFFFF;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.55), 0 2px 20px rgba(0, 0, 0, 0.35);
}

.stars {

    font-size: 15px;

    letter-spacing: 3px;

    color: #C58A38;

}

/* ========================================================= */

.scroll-cue {

    position: absolute;

    left: 50%;

    bottom: 35px;

    transform: translateX(-50%);

    display: flex;

    flex-direction: column;

    align-items: center;

    gap: 8px;

}

.mouse-shell {

    width: 28px;

    height: 46px;

    border-radius: 999px;

    border: 1.6px solid rgba(0, 0, 0, .25);

    display: flex;

    justify-content: center;

    padding-top: 7px;

    background: rgba(255, 255, 255, .28);

    backdrop-filter: blur(12px);

}

.mouse-dot {

    width: 4px;

    height: 8px;

    border-radius: 999px;

    background: #3D342D;

    animation: wheel 2s infinite;

}

@keyframes wheel {

    0% {

        transform: translateY(0);

        opacity: 1;

    }

    80% {

        transform: translateY(13px);

        opacity: 0;

    }

    100% {

        transform: translateY(0);

        opacity: 0;

    }

}

.scroll-cue span {

    font-size: 11px;

    font-weight: 700;

    letter-spacing: .18em;

    color: white;

    text-shadow: 0 2px 10px rgba(0, 0, 0, .4);

}


@keyframes whl {
    0% {
        transform: translateY(0);
        opacity: 1;
    }

    80% {
        transform: translateY(12px);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 0;
    }
}

/* ── BUTTONS ── */


.btn-outline-white {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    padding: .85rem 2rem;
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .3);
    border-radius: var(--pill);
    font-family: var(--font);
    font-size: .92rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--tr)
}

.btn-outline-white:hover {
    background: rgba(255, 255, 255, .1);
    border-color: var(--gold)
}

.btn-lg {
    padding: 1.1rem 2.4rem;
    font-size: 1rem
}

.btn-block {
    width: 100%
}

/* ── STATS BAR ── */
/* =========================================================
   FLOATING STATS BAR
========================================================= */

.stats-bar-wrap {
    position: relative;
    z-index: 50;
    width: 100%;
    background: var(--bg2);
    border-top: 1px solid rgba(197, 138, 56, 0.12);
    border-bottom: 1px solid rgba(197, 138, 56, 0.12);
    padding: 1.25rem 0;
}

.stats-bar {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding: 0 24px;
}

.stat {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 6px 20px;
    border-right: 1px solid rgba(197, 138, 56, 0.2);
}

.stat:last-child {
    border-right: none;
}

.stat-ico {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #C58A38;
    flex-shrink: 0;
}

.stat-num {
    font-size: 28px;
    font-weight: 800;
    line-height: 1.15;
    color: #111111;
    letter-spacing: -0.02em;
}

.stat-lbl {
    margin-top: 2px;
    font-size: 13px;
    color: #777777;
    font-weight: 500;
    white-space: nowrap;
}

/* ── SECTIONS ── */
.section {
    padding-top: calc(var(--section-gap) * 0.55);
    padding-bottom: calc(var(--section-gap) * 0.45);
    position: relative
}

.stats-bar-wrap+.section {
    padding-top: var(--section-gap)
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4.5rem;
    align-items: center
}

.sec-hdr {
    text-align: center;
    margin-bottom: 4rem
}

.sec-heading {
    font-size: 2.7rem;
    line-height: 1.15;
    font-weight: 700;
    margin-bottom: 1.1rem
}

.sec-sub {
    font-size: 1.05rem;
    color: var(--t2);
    max-width: 560px;
    margin: 0 auto
}

/* ── ABOUT ── */
.about-section {
    background: linear-gradient(160deg, var(--bg2) 0%, var(--bg3) 100%);
}

.about-img-frame {
    position: relative;
    border-radius: var(--r24);
    overflow: hidden;
    box-shadow: var(--sh2)
}

.about-img {
    width: 100%;
    height: 530px;
    object-fit: cover
}

.float-card {
    position: absolute;
    bottom: 2rem;
    right: -1.5rem;
    background: rgba(255, 255, 255, .9);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border);
    padding: 1.4rem 1.7rem;
    border-radius: var(--r16);
    max-width: 270px;
    box-shadow: var(--sh3)
}

.float-tag {
    font-size: .63rem;
    font-weight: 800;
    letter-spacing: .15em;
    color: var(--gold);
    margin-bottom: .25rem
}

.float-title {
    font-family: var(--font);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--t1)
}

.float-card p {
    font-size: .78rem;
    color: var(--t2);
    margin-top: .25rem;
    line-height: 1.4
}

.lead-text {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--t1);
    line-height: 1.6;
    margin-bottom: 1.1rem
}

.body-text {
    font-size: .95rem;
    color: var(--t2);
    line-height: 1.7;
    margin-bottom: 2rem
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2.5rem
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: .8rem;
    font-size: .93rem;
    color: var(--t2)
}

.chk {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--gold-bg);
    color: var(--gold);
    font-size: .72rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px
}

/* ── PRODUCTS ── */
.products-section {
    background: var(--bg)
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem
}

.prod-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--r24);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: var(--sh1);
    transition: var(--tr)
}

.prod-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--sh3);
    border-color: rgba(197, 138, 56, .4)
}

.prod-img-box {
    position: relative;
    height: 275px;
    overflow: hidden
}

.prod-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s var(--ease)
}

.prod-card:hover .prod-img {
    transform: scale(1.06)
}

.prod-badge {
    position: absolute;
    top: 1.1rem;
    right: 1.1rem;
    padding: .3rem .8rem;
    background: rgba(26, 26, 26, .72);
    backdrop-filter: blur(6px);
    color: #fff;
    font-size: .62rem;
    font-weight: 700;
    letter-spacing: .1em;
    border-radius: var(--pill)
}

.prod-body {
    padding: 1.8rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1
}

.prod-cat {
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .15em;
    color: var(--gold);
    margin-bottom: .4rem
}

.prod-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--t1);
    margin-bottom: .75rem;
    line-height: 1.25
}

.prod-desc {
    font-size: .88rem;
    color: var(--t2);
    line-height: 1.6;
    margin-bottom: 1.3rem
}

.prod-specs {
    display: flex;
    flex-wrap: wrap;
    gap: .45rem;
    margin-bottom: 1.6rem;
    margin-top: auto
}

.prod-specs span {
    font-size: .7rem;
    font-weight: 600;
    padding: .28rem .65rem;
    background: linear-gradient(135deg, #FDF9F2 0%, #F5EDDC 100%);
    color: #6B5E47;
    border-radius: var(--r8);
    border: 1px solid rgba(197, 138, 56, .15);
}

.prod-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    font-family: var(--font);
    font-size: .85rem;
    font-weight: 700;
    letter-spacing: .05em;
    text-transform: uppercase;
    color: #FFFFFF;
    background: var(--dark);
    padding: 10px 22px;
    border-radius: var(--pill);
    transition: var(--tr);
    box-shadow: var(--sh1);
    margin-top: 12px;
}

.prod-link:hover {
    background: var(--walnut);
    transform: translateY(-2px);
    box-shadow: var(--sh2);
    color: #FFFFFF;
}

.prod-link span {
    transition: transform var(--tr);
}

.prod-link:hover span {
    transform: translateX(4px);
}

/* ── WHY ── */
.why-section {
    background: linear-gradient(160deg, var(--bg3) 0%, var(--bg2) 100%);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem
}

.why-card {
    background: #fff;
    border: 1px solid var(--border);
    border-top: 3px solid transparent;
    border-radius: var(--r24);
    padding: 2.4rem 2rem;
    box-shadow: var(--sh1);
    transition: var(--tr);
    background-clip: padding-box;
}

.why-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--sh2);
    border-color: var(--gold);
    border-top-color: var(--gold);
}

.why-ico {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    background: linear-gradient(135deg, #FDF8EF 0%, #F6E8CB 100%);
    border: 1px solid rgba(197, 138, 56, .20);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.4rem;
    box-shadow: 0 3px 10px rgba(197, 138, 56, .12);
}

.why-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--t1);
    margin-bottom: .65rem
}

.why-card p {
    font-size: .9rem;
    color: var(--t2);
    line-height: 1.6
}

/* ── FOUNDERS ── */
.founders-section {
    background: linear-gradient(160deg, var(--bg) 0%, var(--bg2) 100%);
    overflow: hidden;
    position: relative;
}

/* Decorative ambient glow behind section */
.founders-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 900px;
    height: 340px;
    background: radial-gradient(ellipse at 50% 0%, rgba(197, 138, 56, .07) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.founders-section .container {
    position: relative;
    z-index: 1;
}

/* Gold rule above heading */
.founders-section .sec-hdr::before {
    content: '';
    display: block;
    width: 56px;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--gold-l));
    border-radius: 999px;
    margin: 0 auto 1.4rem;
}

.founders-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

/* ── CARD ── */
.founder-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 28px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: var(--tr);
    box-shadow: var(--sh2);
    position: relative;
}

.founder-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--sh3);
    border-color: rgba(197, 138, 56, .4);
}

/* ── Portrait ── */
.founder-img-wrap {
    position: relative;
    height: 480px;
    overflow: hidden;
    flex-shrink: 0;
}

.founder-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 18%;
    transition: transform .85s var(--ease);
    filter: brightness(.95) contrast(1.04);
}

.founder-card img[src*="ajay_ranka"] {
    object-position: center 45%;
}

.founder-card:hover .founder-img {
    transform: scale(1.05);
    filter: brightness(1) contrast(1.04);
}

/* Gradient overlay — name lives here */
.founder-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0) 30%,
            rgba(20, 15, 10, 0.25) 58%,
            rgba(20, 15, 10, 0.82) 100%);
    pointer-events: none;
}

/* Name & title live inside the image overlay */
.founder-img-identity {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.6rem 1.8rem;
    z-index: 2;
}

.founder-img-name {
    font-size: 1.32rem;
    font-weight: 800;
    color: #F5F0E8;
    letter-spacing: -.01em;
    line-height: 1.2;
    margin: 0 0 .2rem;
}

.founder-img-role {
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--gold-l);
}

.founder-role-pill {
    position: absolute;
    top: 1.2rem;
    right: 1.4rem;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 5px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.35);
    font-size: .65rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: #fff;
}

.founder-role-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--gold);
    flex-shrink: 0;
}

/* ── Card body ── */
.founder-body {
    padding: 2rem 2.2rem 2.2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    border-top: 1px solid var(--border);
}

/* Pull-quote with gold left border */
.founder-quote-mark {
    display: none;
}

.founder-quote {
    font-size: 1.02rem;
    font-weight: 400;
    color: var(--t2);
    line-height: 1.75;
    font-style: italic;
    padding-left: 1.2rem;
    border-left: 3px solid var(--gold);
    margin-bottom: 1.8rem;
    position: relative;
}

.founder-quote::before {
    content: '\201C';
    font-family: Georgia, serif;
    font-size: 3.2rem;
    color: var(--gold);
    opacity: .25;
    position: absolute;
    top: -.7rem;
    left: 1rem;
    line-height: 1;
    pointer-events: none;
}

.founder-divider {
    display: none;
}

/* Meta row — name + socials */
.founder-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.6rem;
}

.founder-name {
    font-size: 1.18rem;
    font-weight: 800;
    color: var(--t1);
    letter-spacing: -.01em;
    line-height: 1.2;
}

.founder-title {
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--gold);
    margin-top: .22rem;
}

.founder-socials {
    display: flex;
    gap: .6rem;
}

.founder-social-link {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: var(--bg2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--t2);
    transition: var(--tr);
}

.founder-social-link:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(197, 138, 56, .3);
}

/* Achievement list */
.founder-achievements {
    display: flex;
    flex-direction: column;
    gap: .65rem;
    margin-top: auto;
    padding-top: 1.4rem;
    border-top: 1px solid var(--border);
}

.founder-achievements li {
    display: flex;
    align-items: flex-start;
    gap: .75rem;
    font-size: .84rem;
    color: var(--t2);
    line-height: 1.5;
}

.founder-achievements .chk {
    background: var(--gold-bg);
    color: var(--gold);
    border: 1px solid rgba(197, 138, 56, .18);
}

/* ── CTA ── */
.cta-section {
    background: var(--bg)
}

.cta-box {
    position: relative;
    background: radial-gradient(circle at 50% -10%, #3A2B1E 0%, #1A1715 100%);
    border-radius: 32px;
    padding: 5.5rem 3rem;
    text-align: center;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, .25);
    border: 1px solid rgba(197, 138, 56, .2)
}

.cta-spot {
    position: absolute;
    top: -80px;
    left: 50%;
    transform: translateX(-50%);
    width: 500px;
    height: 280px;
    background: radial-gradient(circle, rgba(197, 138, 56, .22) 0%, transparent 70%);
    pointer-events: none
}

.cta-title {
    font-size: 3.2rem;
    line-height: 1.1;
    color: #fff;
    margin: .4rem 0 1.2rem
}

.cta-sub {
    font-size: 1.05rem;
    color: #BDB9B3;
    margin-bottom: 2.8rem;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6
}

.cta-btns {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.4rem
}

/* ── FOOTER ── */
.footer {
    background: var(--dark);
    padding: calc(var(--section-gap) * 0.55) 0 2.5rem
}

.footer-grid {
    display: grid;
    grid-template-columns: 2.2fr 1fr 1fr 1.8fr;
    gap: 3.5rem;
    margin-bottom: 4rem
}

.footer-brand .brand-name {
    color: #fff !important
}

.footer-tagline {
    font-size: .87rem;
    color: #8E8B85;
    margin: 1.2rem 0 1.6rem;
    max-width: 300px;
    line-height: 1.6
}

.footer-socials {
    display: flex;
    gap: 1rem
}

.footer-socials a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--border-dk);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #C2BFB9;
    transition: var(--tr)
}

.footer-socials a:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-2px)
}

.footer-col h4 {
    font-family: var(--font);
    font-size: .95rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1.4rem;
    letter-spacing: .02em
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: .8rem
}

.footer-col a {
    font-size: .87rem;
    color: #A39E95
}

.footer-col a:hover {
    color: var(--gold)
}

.footer-newsletter p {
    font-size: .85rem;
    color: #8E8B85;
    margin-bottom: 1.1rem;
    line-height: 1.5
}

.nl-form {
    display: flex;
    background: var(--dark2);
    border: 1px solid var(--border-dk);
    border-radius: var(--pill);
    padding: 4px 5px
}

.nl-form input {
    background: transparent;
    border: none;
    outline: none;
    color: #fff;
    font-family: var(--font);
    font-size: .83rem;
    padding: .55rem 1rem;
    flex-grow: 1
}

.nl-form input::placeholder {
    color: #6E6B65
}

.nl-form button {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--gold);
    border: none;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--tr)
}

.nl-form button:hover {
    background: var(--walnut)
}

.gold-line {
    height: 1px;
    background: linear-gradient(90deg, rgba(197, 138, 56, 0) 0%, rgba(197, 138, 56, .4) 50%, rgba(197, 138, 56, 0) 100%);
    margin-bottom: 2rem
}

.footer-btm {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: .8rem;
    color: #6E6B65
}

.footer-legal {
    display: flex;
    gap: 1.8rem
}

.footer-legal a:hover {
    color: var(--gold)
}

/* ── MODAL ── */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(26, 23, 20, .75);
    backdrop-filter: blur(8px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s ease
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: auto
}

.modal-card {
    position: relative;
    background: #fff;
    border-radius: 24px;
    padding: 3rem;
    width: 90%;
    max-width: 600px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, .3);
    border: 1px solid var(--border);
    transform: translateY(20px);
    transition: transform .3s ease
}

.modal-overlay.active .modal-card {
    transform: translateY(0)
}

.modal-x {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: var(--t3);
    cursor: pointer
}

.modal-x:hover {
    color: var(--t1)
}

.modal-title {
    font-size: 1.75rem;
    color: var(--t1);
    margin: .2rem 0
}

.modal-sub {
    font-size: .87rem;
    color: var(--t2)
}

.modal-form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    margin-top: 1.5rem
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem
}

.form-g {
    display: flex;
    flex-direction: column;
    gap: .35rem
}

.form-g label {
    font-size: .78rem;
    font-weight: 600;
    color: var(--t1)
}

.form-g input,
.form-g select,
.form-g textarea {
    padding: .72rem 1rem;
    border: 1px solid var(--border);
    border-radius: var(--r8);
    font-family: var(--font);
    font-size: .88rem;
    background: var(--bg);
    color: var(--t1);
    outline: none;
    transition: var(--tr)
}

.form-g input:focus,
.form-g select:focus,
.form-g textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(197, 138, 56, .15)
}

/* ── TOAST ── */
.toast {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: var(--dark);
    color: #fff;
    padding: 1rem 1.5rem;
    border-radius: var(--pill);
    display: flex;
    align-items: center;
    gap: .75rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .3);
    z-index: 3000;
    transform: translateY(80px);
    opacity: 0;
    transition: all .4s var(--ease);
    border: 1px solid var(--gold)
}

.toast.show {
    transform: translateY(0);
    opacity: 1
}

.toast-ico {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--gold);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .72rem;
    font-weight: 800
}

/* ── REVEAL ANIMATIONS ── */
.reveal-up,
.reveal-left,
.reveal-right {
    opacity: 0;
    transition: all .8s var(--ease)
}

.reveal-up {
    transform: translateY(40px)
}

.reveal-left {
    transform: translateX(-40px)
}

.reveal-right {
    transform: translateX(40px)
}

.reveal-up.active,
.reveal-left.active,
.reveal-right.active {
    opacity: 1;
    transform: translate(0, 0)
}

/* ── MOBILE HAMBURGER ── */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: none;
    border: 1px solid var(--border);
    border-radius: var(--r8);
    cursor: pointer;
    padding: 8px;
    pointer-events: auto;
    transition: var(--tr);
    flex-shrink: 0;
}
.mobile-menu-btn span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--t1);
    border-radius: 2px;
    transition: all .3s ease;
    transform-origin: center;
}
.mobile-menu-btn.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.mobile-menu-btn.open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}
.mobile-menu-btn.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ── MOBILE NAV DRAWER ── */
.mobile-nav-drawer {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(248, 246, 242, .98);
    backdrop-filter: blur(28px);
    -webkit-backdrop-filter: blur(28px);
    border-bottom: 1px solid var(--border);
    z-index: 999;
    padding: 1.2rem 1.5rem 1.8rem;
    box-shadow: 0 12px 30px rgba(0,0,0,.08);
    transform: translateY(-10px);
    opacity: 0;
    transition: opacity .3s ease, transform .3s ease;
    pointer-events: none;
}
.mobile-nav-drawer.open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}
.mobile-nav-drawer ul {
    display: flex;
    flex-direction: column;
    gap: .1rem;
    margin-bottom: 1.2rem;
}
.mobile-nav-drawer ul li a {
    display: block;
    padding: .75rem .5rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--t1);
    border-bottom: 1px solid rgba(231,226,216,.5);
    transition: color .2s;
}
.mobile-nav-drawer ul li:last-child a {
    border-bottom: none;
}
.mobile-nav-drawer ul li a:hover {
    color: var(--gold);
}
.mobile-nav-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .45rem;
    padding: .75rem 1.5rem;
    border: 1px solid var(--gold);
    border-radius: var(--pill);
    background: transparent;
    color: var(--t1);
    font-size: .9rem;
    font-weight: 600;
    transition: var(--tr);
    width: 100%;
    text-align: center;
}
.mobile-nav-cta:hover {
    background: var(--gold);
    color: #fff;
}

/* ── RESPONSIVE ── */
@media(max-width:1200px) {
    .container {
        padding: 0 40px
    }

    .stats-bar-wrap {
        padding: 0 40px
    }

    .hero-title {
        font-size: 4.2rem
    }

    .arch-container {
        width: 92%
    }

    .products-grid,
    .why-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .founders-grid {
        grid-template-columns: 1fr
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem
    }
}

/* ── Tablet — nav link gap reduction before hamburger ── */
@media(max-width:1100px) {
    .nav-links {
        gap: 1.5rem;
        margin-right: 1.2rem;
    }
    .nav-link {
        font-size: 0.82rem;
    }
}

@media(max-width:1024px) {
    .navbar {
        padding: 0 32px;
    }
    .nav-links {
        gap: 1.2rem;
        margin-right: 1rem;
    }
    .nav-link {
        font-size: 0.8rem;
    }
}

@media(max-width:768px) {
    :root {
        --section-gap: 5rem;
        --section-gap-sm: 3rem
    }

    .container {
        padding: 0 20px
    }

    .stats-bar-wrap {
        padding: 0;
    }

    /* Show hamburger, hide desktop nav elements */
    .mobile-menu-btn {
        display: flex;
    }
    .mobile-nav-drawer {
        display: block;
    }
    .nav-links {
        display: none
    }
    .btn-contact-nav {
        display: none;
    }

    /* Navbar adjustments */
    .navbar {
        padding: 0 20px;
        height: 64px;
    }
    .navbar.scrolled {
        padding: 0 20px;
        min-height: 64px;
    }
    .mobile-nav-drawer {
        top: 64px;
    }
    .nav-logo-img {
        height: 70px;
    }
    .brand-logo {
        margin-left: 0;
    }

    /* Hero */
    .hero-section {
        padding-top: 100px;
    }
    .hero-title {
        font-size: clamp(2.2rem, 8vw, 2.8rem);
    }
    .arch-container {
        width: 96%;
        height: min(680px, 85vw + 200px);
        border-top-left-radius: clamp(140px, 40vw, 280px);
        border-top-right-radius: clamp(140px, 40vw, 280px);
    }
    .arch-content {
        padding: 3.5rem 1.5rem 1rem;
        width: calc(100% - 32px);
    }
    .hero-sub {
        font-size: 0.95rem;
        margin-top: 14px;
    }
    .pendant-img-wrap {
        left: 38%;
        width: 90px;
    }
    .hero-badge-outer {
        margin-bottom: -12px;
    }
    .badge-pill {
        font-size: 9px;
        padding: 3px 12px;
    }
    .hero-ctas {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        gap: 12px;
        margin-top: 18px;
    }
    .btn-dark,
    .btn-outline {
        width: 100%;
        justify-content: center;
        height: 48px;
        font-size: 14px;
    }
    .social-proof {
        font-size: 12px;
        margin-top: 16px;
    }
    .scroll-cue {
        bottom: 20px;
    }

    /* Stats bar */
    .stats-bar {
        grid-template-columns: 1fr 1fr;
        gap: 0;
        padding: 0;
    }
    .stat {
        border-right: none;
        padding: 12px 16px;
        border-bottom: 1px solid rgba(197,138,56,.12);
    }
    .stat:nth-child(1),
    .stat:nth-child(2) {
        border-bottom: 1px solid rgba(197,138,56,.12);
    }
    .stat:nth-child(3),
    .stat:nth-child(4) {
        border-bottom: none;
    }
    .stat:nth-child(odd) {
        border-right: 1px solid rgba(197,138,56,.2);
    }
    .stat-num {
        font-size: 22px;
    }
    .stat-lbl {
        font-size: 11px;
        white-space: normal;
    }

    /* About section */
    .grid-2 {
        grid-template-columns: 1fr;
        gap: 2.5rem
    }
    .about-img {
        height: 320px;
    }
    .float-card {
        right: .5rem;
        bottom: .5rem;
        max-width: 220px;
        padding: 1rem 1.2rem;
    }
    .float-card p {
        display: none;
    }

    /* Products */
    .products-grid,
    .why-grid,
    .founders-grid {
        grid-template-columns: 1fr
    }
    .prod-img-box {
        height: 220px;
    }
    .sec-heading {
        font-size: 2rem;
    }
    .sec-hdr {
        margin-bottom: 2.5rem;
    }

    /* Founders */
    .founder-img-wrap {
        height: 320px;
    }
    .founder-body {
        padding: 1.5rem 1.5rem 1.8rem;
    }

    /* CTA section */
    .cta-box {
        padding: 3.5rem 1.5rem;
        border-radius: 20px;
    }
    .cta-title {
        font-size: clamp(1.8rem, 6vw, 2.2rem);
    }
    .cta-sub {
        font-size: 0.95rem;
        margin-bottom: 2rem;
    }
    .cta-btns {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    .btn-lg {
        padding: .9rem 1.8rem;
        font-size: .9rem;
        width: 100%;
        justify-content: center;
        max-width: 320px;
    }
    .btn-outline-white {
        width: 100%;
        justify-content: center;
        max-width: 320px;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem
    }
    .footer-btm {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    .footer-legal {
        gap: 1rem;
    }
    .footer-tagline {
        max-width: 100%;
    }

    /* Modal */
    .form-row {
        grid-template-columns: 1fr
    }
    .modal-card {
        padding: 2rem 1.5rem;
        width: 95%;
    }
    .modal-title {
        font-size: 1.4rem;
    }

    /* Blobs — hide on mobile to prevent horizontal overflow */
    .blob-left,
    .blob-right {
        display: none;
    }
}

/* ── Small mobile (430px and below) ── */
@media(max-width:430px) {
    .container {
        padding: 0 16px;
    }
    .hero-title {
        font-size: clamp(2rem, 9vw, 2.5rem);
    }
    .arch-container {
        width: 100%;
        border-radius: 0;
        border-top-left-radius: clamp(120px, 35vw, 200px);
        border-top-right-radius: clamp(120px, 35vw, 200px);
        height: min(600px, 130vw);
    }
    .arch-content {
        padding: 3rem 1rem 1rem;
    }
    .pendant-img-wrap {
        width: 80px;
        left: 40%;
    }
    .hero-sub {
        font-size: 0.88rem;
    }
    .hero-ctas {
        max-width: 280px;
    }
    .prod-body {
        padding: 1.4rem;
    }
    .why-card {
        padding: 1.8rem 1.4rem;
    }
    .sec-heading {
        font-size: 1.75rem;
    }
    .footer {
        padding: 3rem 0 2rem;
    }
    .toast {
        bottom: 1rem;
        right: 1rem;
        left: 1rem;
        font-size: 0.85rem;
    }
    /* Nav logo smaller on very small screens */
    .nav-logo-img {
        height: 60px;
    }
    /* Stats: 2-col preserved, but tighten gap/padding */
    .stat {
        padding: 10px 12px;
    }
    .stat-num {
        font-size: 20px;
    }
    .stat-lbl {
        font-size: 10px;
    }
    .stat-ico svg {
        width: 18px;
        height: 18px;
    }
}