﻿/* =========================================================
   ROOT / GLOBAL
   ========================================================= */
:root {
    scroll-padding-top: 110px;
}

*,
.site-header,
.site-header * {
    box-sizing: border-box;
}

body {
    margin: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    color: var(--text);
    font-family: var(--sans);
    line-height: 1.55;
    overflow-y: scroll;
}

    body.has-mobile-cta {
        padding-bottom: calc(var(--kc-mobile-cta-h) + env(safe-area-inset-bottom, 0px));
    }

    body.is-menu {
        min-height: 100vh;
        padding-top: 75px;
        background-color: #FBF9F5;
    }

        body.is-menu main {
            flex: 1 0 auto;
        }

        body.is-menu .kcMenuFooter {
            margin-top: auto;
        }

#footer {
    margin-top: auto;
}

img {
    filter: saturate(0.95) contrast(1.05);
}

.card,
.menu-card {
    border: none;
}

a {
    color: inherit;
    text-decoration: none;
}

p {
    max-width: 64ch;
}

/* =========================================================
   ACCESSIBILITY
   ========================================================= */
.skip-link {
    position: absolute;
    top: 12px;
    left: -999px;
    z-index: 9999;
    padding: 10px 14px;
    border-radius: 10px;
    background: var(--text);
    color: #fff;
}

    .skip-link:focus {
        left: 12px;
    }

.sr-only,
.ohnohoney {
    position: absolute;
    overflow: hidden;
    pointer-events: none;
}

.sr-only {
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.ohnohoney {
    top: 0;
    left: 0;
    z-index: -1;
    width: 0;
    height: 0;
    opacity: 0;
}

/* =========================================================
   LAYOUT
   ========================================================= */
.container {
    width: min(var(--container), calc(100% - var(--pad) * 2));
    margin: 0 auto;
}

.home-section {
    padding: clamp(64px, 6vw, 48px) 0;
}

.home-section-head {
    display: flex;
    flex-direction: column;
    max-width: 780px;
    margin-bottom: 32px;
}

/* =========================================================
   TYPOGRAPHY
   ========================================================= */
.h1,
.h2,
.h3 {
    margin: 0;
    font-family: var(--serif);
    font-weight: 500;
    letter-spacing: -0.02em;
}

/* HERO */
.h1 {
    font-size: clamp(36px, 3.6vw, 56px);
    line-height: 1.04;
}

/* SECTION TITLES */
.h2 {
    font-size: clamp(28px, 2.4vw, 42px);
    line-height: 1.08;
}

/* SUBHEAD */
.h3 {
    font-size: 20px;
    line-height: 1.2;
    letter-spacing: -0.01em;
}

.lead {
    margin: 14px 0 0;
    font-size: clamp(16px, 1.2vw, 18px);
    color: var(--muted);
}

.small {
    font-size: 13px;
}

.muted {
    color: var(--muted);
}

.eyebrow {
    margin: 0 0 10px;
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(27, 27, 27, 0.6);
}

/* =========================================================
   LINKS / BUTTONS
   ========================================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 11px 16px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 12px;
    background: transparent;
    cursor: pointer;
    font-weight: 700;
    text-decoration: none;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: transform var(--t-fast) var(--ease), background var(--t-fast) var(--ease), border-color var(--t-fast) var(--ease), box-shadow var(--t-fast) var(--ease);
    will-change: transform;
}

    .btn:hover {
        transform: translateY(-1px);
        opacity: .9;
    }

    .btn:active {
        transform: translateY(0);
    }

    .btn:focus {
        outline: none;
        box-shadow: 0 0 0 6px var(--focus);
    }

.btn-sm {
    padding: 9px 14px;
    font-size: 13px;
}

.btn-primary {
    color: #fff;
    border-color: rgba(47, 46, 42, 0.4) !important;
    background: linear-gradient(180deg, #2c2a26, #1f1d1a);
    box-shadow: 0 6px 18px rgba(0,0,0,0.12);
    transition: opacity .2s ease, background .2s ease;
}

    .btn-primary:hover {
        transform: translateY(-1px);
        opacity: .9;
    }

.btn-ghost {
    background: rgba(255,255,255,.6);
    border: 1px solid rgba(27,27,27,.08);
    transition: background .2s ease, border-color .2s ease;
}

.btn--primary {
    background: rgba(255, 255, 255, 0.92);
    color: #111;
}

.btn--ghost {
    background: rgba(0, 0, 0, 0.25);
    color: #fff;
}

/* =========================================================
   HEADER
   ========================================================= */
.site-header {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 100;
    width: 100%;
    padding: 5px 0;
    background: transparent;
    transition: background 320ms cubic-bezier(.2, .8, .2, 1), box-shadow 320ms cubic-bezier(.2, .8, .2, 1);
}

    .site-header:not(.is-scrolled) {
        border-bottom: none;
    }

        .site-header:not(.is-scrolled) .nav-menu a,
        .site-header:not(.is-scrolled) .brand-text {
            color: rgba(27, 27, 27, 0.95);
        }

    .site-header[data-glass] {
        border-bottom: 1px solid rgba(27, 27, 27, 0.06);
        background: rgba(250, 247, 242, 0.6);
    }

    .site-header .logo-wrap {
        padding: 8px 14px;
        border: 1px solid rgba(0, 0, 0, 0.06);
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.75);
        backdrop-filter: blur(8px);
    }

    .site-header.is-scrolled {
        background: linear-gradient(to bottom, rgba(255,255,255,0.75), rgba(255,255,255,0.6));
        backdrop-filter: blur(12px) saturate(140%);
        -webkit-backdrop-filter: blur(12px) saturate(140%);
        box-shadow: 0 8px 20px rgba(0,0,0,0.06), inset 0 1px 0 rgba(255,255,255,0.6);
    }

        .site-header.is-scrolled::before {
            display: none;
        }

        .site-header.is-scrolled::after {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: rgba(255,255,255,0.8);
        }

    .site-header .navBarBtn {
        transition: color 220ms ease, text-shadow 220ms ease;
    }

.header-inner,
.header-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px 16px;
}

.header-wrap {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 16px;
}

.header-nav,
.header-actions {
    display: flex;
    align-items: center;
}

.header-nav {
    justify-content: center;
    min-width: 0;
}

.header-actions {
    justify-content: flex-end;
    gap: 10px;
}

.brand {
    padding: 0;
    border: 0;
    background: none;
    box-shadow: none;
}

    .brand picture,
    .brand-logo {
        display: block;
    }

.brand-logo {
    display: inline-flex;
    align-items: center;
}

    .brand-logo img {
        width: auto;
        height: 80px;
        object-fit: contain;
    }

/* ===== LOGO CROSSFADE SYSTEM ===== */

.brand-logo {
    position: relative;
    display: inline-flex;
    align-items: center;
}

    /* stack logos */
    .brand-logo img {
        position: absolute;
        top: 0;
        left: 0;
        height: 56px;
        width: auto;
        object-fit: contain;
        transition: opacity 280ms cubic-bezier(.2,.8,.2,1);
    }

/* default state = HERO (white logo) */
.logo-dark {
    opacity: 0;
}

.logo-light {
    opacity: 1;
}

/* after scroll */
.site-header.is-scrolled .logo-dark {
    opacity: 1;
}

.site-header.is-scrolled .logo-light {
    opacity: 0;
}

:root {
    --header-progress: 0;
}

.brand-logo--dual {
    position: relative;
    display: inline-block;
    width: 100px;
    height: 56px;
}

    .brand-logo--dual .brand-logo__img {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: contain;
        transition: opacity 280ms cubic-bezier(.2,.8,.2,1);
        will-change: opacity;
    }

.brand-logo__img--dark {
    opacity: var(--header-progress);
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.10));
}

.brand-logo__img--light {
    opacity: calc(1 - var(--header-progress));
    filter: drop-shadow(0 6px 18px rgba(0, 0, 0, 0.28));
}

.site-header:not(.is-scrolled) .navBarBtn {
    color: rgba(255,255,255,0.92);
}

.site-header.is-scrolled .navBarBtn {
    color: rgba(27,27,27,0.85);
}

.site-header:not(.is-scrolled) .trust-chip {
    color: rgba(255,255,255,0.92);
}

.site-header.is-scrolled .trust-chip {
    color: rgba(27,27,27,0.85);
}

.site-header:not(.is-scrolled) .trust-chip img {
    filter: brightness(1.2) saturate(0.9) drop-shadow(0 2px 6px rgba(0,0,0,0.35));
}

.site-header.is-scrolled .trust-chip img {
    filter: saturate(0.85);
}

.site-header:not(.is-scrolled) .trust-chip {
    opacity: 0.95;
}

.site-header.is-scrolled .trust-chip {
    opacity: 1;
}

.site-header::before {
    opacity: 0;
}

body.theme-site.is-home .site-header:not(.is-scrolled) .navBarBtn {
    color: rgba(255,255,255,0.92) !important;
    text-shadow: 0 2px 6px rgba(0,0,0,0.35), 0 0 14px rgba(0,0,0,0.22);
}

.site-header.is-scrolled .navBarBtn:hover {
    color: rgba(27,27,27,1);
}

.site-header:not(.is-scrolled) .navBarBtn:hover {
    color: rgba(255,255,255,1);
}

/* ===== HERO (dark background) ===== */
.site-header:not(.is-scrolled) .navBarBtn:hover,
.site-header:not(.is-scrolled) .navBarBtn:focus-visible {
    color: rgba(255,255,255,1);
}

/* ===== SCROLLED (light glass background) ===== */
.site-header.is-scrolled .navBarBtn:hover,
.site-header.is-scrolled .navBarBtn:focus-visible {
    color: rgba(27,27,27,1);
}

@media (max-width: 1024px) {
    .brand-logo--dual {
        width: 122px;
        height: 40px;
    }
}

@media (max-width: 860px) {
    .brand-logo--dual {
        width: 116px;
        height: 38px;
    }
}

.brand-mark {
    width: 12px;
    height: 12px;
    border-radius: 999px;
    background: radial-gradient(circle at 30% 30%, rgba(178, 154, 100, 1), rgba(178, 154, 100, 0.35));
    box-shadow: 0 0 0 6px rgba(178, 154, 100, 0.12);
}

.brand.mini .brand-text {
    font-size: 14px;
}

#kateLogo {
    display: block;
    width: auto;
    height: 56px;
    object-fit: contain;
    filter: drop-shadow(0 6px 16px rgba(0, 0, 0, 0.18));
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 18px;
}

    .nav-menu a {
        padding: 8px 10px;
        border-radius: 999px;
        font-size: 14px;
        color: rgba(27, 27, 27, 0.8);
        transition: background var(--t-fast) var(--ease), color var(--t-fast) var(--ease);
    }

        .nav-menu a:hover {
            background: rgba(255, 255, 255, 0.55);
            color: rgba(27, 27, 27, 0.92);
        }

        .nav-menu a.active {
            opacity: 1;
            font-weight: 500;
        }

.nav-toggle {
    display: none;
}

.nav-left {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    gap: 18px;
    min-width: 0;
}

.desktop-only {
    display: flex !important;
}

.mobile-only {
    display: none !important;
}

/* =========================================================
   TRUST CHIP
   ========================================================= */
.trust-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: inherit;
}

    .trust-chip img {
        width: 20px;
        height: 20px;
        filter: saturate(0.85);
    }

.trust-text {
    display: flex;
    flex-direction: column;
    line-height: 1.05;
}

    .trust-text span:first-child,
    .trust-text span:last-child {
        font-size: 10px;
        letter-spacing: .5px;
        text-transform: uppercase;
        font-weight: 900;
    }

.trust-chip--compact span {
    font-size: 12px;
}

/* =========================================================
   NAV BUTTONS / MEGA / DROPDOWN
   ========================================================= */
.navBarBtn-wrap {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.navBarBtn {
    position: relative;
    padding: 8px 2px !important;
    border-radius: 0 !important;
    background: none !important;
    box-shadow: none !important;
    font-size: 14px !important;
    line-height: 1 !important;    
    transition: background-color .2s ease, box-shadow .2s ease, transform .15s ease;
    color: #1b1b1b;
    text-shadow: none !important;
    font-weight: 500;
    letter-spacing: -0.01em;
}

    .navBarBtn::after {
        content: "";
        position: absolute;
        bottom: -2px;
        left: 0;
        display: block;
        width: 0;
        height: 1px;
        background: rgba(178, 154, 100, 0.85);
        opacity: 0;
        transform: scaleX(0.6);
        transform-origin: left;
        transition: width .18s ease, opacity .18s ease, transform .18s ease;
    }

    .navBarBtn:hover,
    .navBarBtn:focus-visible {
        outline: none;
        background: none !important;
        box-shadow: none !important;
        filter: none !important;
        transform: none !important;
    }

        .navBarBtn:hover::after,
        .navBarBtn:focus-visible::after {
            width: 100%;
            opacity: 1;
            transform: scaleX(1);
        }

    .navBarBtn:active {
        color: #fff !important;
        background-color: rgb(0 0 0 / .6);
    }

.nav-mega,
.nav-dropdown {
    position: relative;
}

.nav-mega__btn {
    border: none !important;
    background: none !important;
    letter-spacing: 0.02em;
}

.nav-mega__panel {
    position: absolute;
    top: calc(100% + 16px);
    left: 50%;
    z-index: 3000;
    width: min(1280px, calc(100vw - 32px));
    max-width: 92vw;
    padding: 18px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 18px;
    background: rgb(255 255 255 / .96);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
    backdrop-filter: blur(10px);
    transform: translateX(-50%);
}

.nav-mega__header {
    margin-bottom: 14px;
    text-align: center;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .14px;
    text-transform: uppercase;
    color: #111;
    opacity: .75;
}

.nav-mega__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    justify-content: center;
}

.mega-card {
    position: relative;
    overflow: hidden;
    border-radius: 14px;
    background: #f6f6f6;
    box-shadow: 0 6px 16px rgb(0 0 0 / .12);
    text-decoration: none;
    transition: transform .25s ease, box-shadow .25s ease;
}

    .mega-card img {
        display: block;
        width: 100%;
        height: 180px;
        object-fit: cover;
    }

    .mega-card span {
        position: absolute;
        inset: auto 0 0;
        padding: 10px;
        font-size: 13px;
        font-weight: 700;
        color: #fff;
        background: linear-gradient(to top, rgb(0 0 0 / .65), rgb(0 0 0 / .05));
    }

    .mega-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 16px 34px rgba(0, 0, 0, 0.16);
    }

    .mega-card:focus-visible {
        outline: none;
        transform: translateY(-2px);
        box-shadow: 0 0 0 6px rgba(178, 154, 100, 0.25), 0 16px 34px rgba(0, 0, 0, 0.16);
    }

.mega-card--vegan span {
    background: linear-gradient(to top, rgb(46 125 50 / .85), rgb(46 125 50 / .25));
}

.newTag {
    opacity: 0.75;
    font-weight: 500;
}

/* Contact dropdown */
.nav-dropdown {
    display: inline-flex;
    align-items: center;
}

    .nav-dropdown > button.navBarBtn {
        border: 0;
        cursor: pointer;
    }

    .nav-dropdown > [aria-expanded="true"] + .nav-dropdown__menu {
        display: block;
    }

.nav-dropdown__btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.nav-dropdown__menu {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    z-index: 1200;
    min-width: 220px;
    padding: 10px;
    border: 1px solid rgba(27, 27, 27, 0.1);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.14);
    opacity: 0;
    pointer-events: none;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transform: translateY(6px);
    transition: opacity 180ms cubic-bezier(.2, .8, .2, 1), transform 180ms cubic-bezier(.2, .8, .2, 1);
}

.nav-dropdown:focus-within .nav-dropdown__menu {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.nav-dropdown__menu .dropdownTitle {
    margin-bottom: 8px;
    font-size: 11px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: rgba(27, 27, 27, 0.55);
}

.nav-dropdown__menu a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 12px;
    border-radius: 12px;
    color: rgba(27, 27, 27, 0.88);
    font-size: 13px;
    font-weight: 850;
    text-decoration: none;
    transition: background 160ms ease, transform 160ms ease;
}

    .nav-dropdown__menu a:hover {
        transform: translateX(2px);
        background: rgba(178, 154, 100, 0.14);
    }

    .nav-dropdown__menu a:focus-visible,
    .nav-dropdown__btn:focus-visible {
        outline: 3px solid rgba(178, 154, 100, 0.35);
        outline-offset: 2px;
    }

.nav-dropdown__menu .highlight {
    border: 1px solid rgba(0, 104, 64, 0.15);
    background: rgba(0, 104, 64, 0.08);
    font-weight: 900;
}

/* =========================================================
   HERO ROTATOR
   ========================================================= */
.hero-rotator {
    position: relative;
    overflow: hidden;
    width: 100%;
    /*height: clamp(420px, 68vh, 780px);*/
    height: clamp(420px, 62vh, 720px);
    border-radius: 0 !important;
    background: #000;
}
.hero-rotator__h1 {
    margin: 6px 0 0;
    max-width: 28ch;
    font-size: clamp(14px, 1.15vw, 18px);
    line-height: 1.45;
    font-weight: 500;
    letter-spacing: -0.01em;
    color: rgba(255,255,255,0.9);
    text-wrap: balance;
}

@media (max-width: 768px) {
    .hero-rotator__h1 {
        margin-top: 10px;
        max-width: 26ch;
        font-size: clamp(13px, 3.5vw, 15px);
        line-height: 1.42;
        color: rgba(255,255,255,0.84);
    }
}
    .hero-rotator::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(to right, rgba(0, 0, 0, 0.48) 0%, rgba(0, 0, 0, 0.28) 42%, rgba(0, 0, 0, 0.10) 72%, rgba(0, 0, 0, 0.04) 100%), linear-gradient(to bottom, rgba(16, 14, 10, 0.22) 0%, rgba(16, 14, 10, 0.08) 38%, rgba(16, 14, 10, 0.16) 100%);
        pointer-events: none;
        z-index: 1;
    }

.hero-rotator__video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0;
    transition: opacity .6s cubic-bezier(.4, 0, .2, 1);
    will-change: opacity;
}

    .hero-rotator__video.is-active {
        opacity: 1;
    }

.hero-rotator__content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 12px;
    max-width: 1180px;
    height: 100%;
    margin-inline: auto;
    padding: calc(80px + clamp(18px, 4vw, 44px)) 16px clamp(18px, 4vw, 44px);
    color: #fff;
    text-shadow: 0 4px 18px rgba(0, 0, 0, 0.22);
}

.hero-rotator__kicker {
    margin-bottom: 0.5rem;
    color: #fff;
    font-size: .85rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-variant-caps: all-small-caps;
    opacity: .8;
    transform: translateY(6px);
    animation: heroFadeUp .85s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    transition: opacity .6s ease, transform .6s ease;
}

.hero-rotator__title {
    margin: 0;
    font-size: clamp(28px, 4vw, 54px);
    line-height: 1.05;
}

.hero-rotator__sub {
    max-width: 56ch;
    margin: 0;
    font-size: clamp(14px, 1.6vw, 18px);
    opacity: .95;
}

.hero-rotator__cta {
    display: flex;
    gap: 12px;
    margin-top: 16px;
    opacity: 0;
    animation: heroFadeUp .85s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    animation-delay: .46s;
}

    .hero-rotator__cta .btn {
        transform: none;
    }

.hero-rotator__tap {
    position: absolute;
    right: 14px;
    bottom: 14px;
    z-index: 3;
    padding: 10px 12px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.35);
    color: #fff;
    font-weight: 700;
    cursor: pointer;
}

.hero-title {
    margin: 0;
    color: #F9F7F2;
    font-size: clamp(32px, 4.5vw, 56px);
    font-weight: 700;
    letter-spacing: -0.01em;
    text-shadow: 0 4px 18px rgba(0, 0, 0, 0.22);
    opacity: 0;
    transform: translateY(10px);
    animation: heroFadeUp .85s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    animation-delay: .2s;
}

.hero-sub {
    margin-top: 6px;
    max-width: 52ch;
    font-size: clamp(14px, 1.6vw, 18px);
    opacity: 0;
    animation: heroFadeUp .85s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    animation-delay: .45s;
    color: rgba(255,255,255,0.82);
}

.gold-shimmer {
    background: linear-gradient(110deg, #b8923a 0%, #e8cf7a 25%, #fff8d9 45%, #fff3c0 55%, #e8cf7a 75%, #b8923a 100%);
    background-size: 220% 100%;
    color: transparent;
    animation: goldShimmer 5.5s ease-in-out infinite;
    -webkit-background-clip: text;
    background-clip: text;
}

.hero-title .gold-shimmer {
    filter: drop-shadow(0 6px 22px rgba(232, 207, 122, 0.28));
}

/* =========================================================
   MENUS
   ========================================================= */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 34px;
}

.menu-card {
    overflow: hidden;
    border: 1px solid rgba(27, 27, 27, 0.1);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.58);
    box-shadow: var(--shadow-soft);
    transition: transform .2s ease, box-shadow .2s ease;
}

    .menu-card:hover {
        transform: none;
        box-shadow: 0 10px 24px rgba(0,0,0,.08);
    }

.menu-card__link {
    display: block;
    height: 100%;
    color: inherit;
    text-decoration: none;
}

.menu-media {
    overflow: hidden;
    aspect-ratio: 4 / 2.8;
    border-radius: 20px 20px 0 0;
}

    .menu-media img {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.menu-card:hover .menu-media img {
    transform: scale(1.02);
    transition: transform .6s ease;
}

.menu-body {
    padding: 12px 16px 14px;
}

    .menu-body p {
        margin: 8px 0 0;
    }

.menu-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.menus-note {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 18px;
}

.menus-cta {
    margin-top: 36px;
    text-align: center;
}

.menu-link,
.menu-card__cta {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--accent-2);
}

    .menu-link::after,
    .menu-card__cta::after {
        content: "";
        position: absolute;
        bottom: -2px;
        left: 0;
        width: 100%;
        height: 1px;
        background: rgba(178, 154, 100, 0.7);
        transform: scaleX(.5);
        transform-origin: left;
        transition: transform .2s ease;
    }

    .menu-link:hover::after,
    .menu-card:hover .menu-card__cta::after {
        transform: scaleX(1);
    }

.note {
    padding: 16px;
    border: 1px solid rgba(27, 27, 27, 0.1);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.46);
}

/* =========================================================
   TIMELINE
   ========================================================= */
.timeline {
    --dot: 32px;
    --progress: 0;
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin: 34px 0 0;
    padding: 0;
    list-style: none;
}

    .timeline::before,
    .timeline::after {
        content: "";
        position: absolute;
        top: calc(var(--dot) / 2 + 16px);
        right: 20px;
        left: 20px;
        z-index: 1;
        height: 2px;
        border-radius: 999px;
    }

    .timeline::before {
        background: rgba(27, 27, 27, 0.2);
    }

    .timeline::after {
        background: rgba(178, 154, 100, 0.9);
        transform: scaleX(var(--progress));
        transform-origin: left center;
        transition: transform 180ms linear;
        will-change: transform;
    }

.timeline-step {
    position: relative;
    z-index: 2;
    min-height: 160px;
    padding: 16px;
    border: 1px solid rgba(27, 27, 27, 0.1);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.54);
    box-shadow: var(--shadow-soft);
}

.timeline .step-dot {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    margin-bottom: 16px;
    border: 2px solid var(--accent);
    border-radius: 999px;
    background: #fff;
    color: var(--accent);
    font-size: 13px;
    font-weight: 700;
    transform: scale(1);
    transition: background-color 260ms var(--ease), border-color 260ms var(--ease), color 260ms var(--ease), transform 320ms var(--ease), box-shadow 320ms var(--ease);
}

.timeline-step.is-complete .step-dot {
    border-color: var(--accent);
    background: var(--accent);
    color: #fff;
    box-shadow: 0 0 0 10px rgba(178, 154, 100, 0.18);
}

.timeline-step.is-active .step-dot {
    border-color: var(--accent);
    transform: scale(1.06);
    box-shadow: 0 0 0 12px rgba(178, 154, 100, 0.18);
}

.timeline-step:not(.is-complete):not(.is-active) .step-dot {
    border-color: rgba(178, 154, 100, 0.55);
    background: #fff;
    color: rgba(178, 154, 100, 0.95);
}

.step-body p {
    margin: 10px 0 0;
    color: var(--muted);
}

/* =========================================================
   CONTACT
   ========================================================= */
.contact {
    background: #F1EDE6;
}

.contact-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: start;
    gap: 20px;
}

.contact-bullets {
    display: grid;
    gap: 12px;
    margin-top: 18px;
}

.bullet-title {
    font-weight: 600;
}

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
    padding: 56px 0 28px;
    background: linear-gradient(to bottom, #2A2723, #1F1D1A);
    position: relative;
    margin-top: 0;
}


.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.footer-grid {
    display: grid;
    align-items: start;
}

.footer-brand {
    padding-top: 6px;
}

    .footer-brand > * + * {
        margin-top: 14px;
    }

.footer-logo img {
    display: block;
    width: auto;
    height: 80px;
    object-fit: contain;
    transform: translate(-2px);
}

.footer-tag {
    color: rgba(27, 27, 27, 0.6);
    margin: 16px 0 14px;
    max-width: 42ch;
    font-size: 14px;
    line-height: 1.65;
    opacity: 0.8;
}

.footer-title {
    color: rgba(27, 27, 27, 0.55);
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 16px;
    letter-spacing: 0.14em;
    opacity: 0.55;
}

.footer-links,
.footer-bottom-links {
    display: flex;
    gap: 14px 10px;
    flex-wrap: wrap;
    margin-top: 20px;
    padding-top: 10px;    
}

    .footer-links a {
        padding: 8px 10px;
        border-radius: 999px;
        color: rgba(27, 27, 27, 0.75);
        font-size: 14px;
    }

        .footer-links a:hover {
            background: rgba(255, 255, 255, 0.55);
        }

.footer-list {
    display: grid;
    gap: 6px;
    margin: 0;
    padding: 0;
    list-style: none;
}

    .footer-list a {
        padding: 4px 0;
        background: none;
        color: rgba(255,255,255,0.76);
        font-size: 14px;
        font-weight: 400;
        line-height: 1.35;
        opacity: 0.85;
    }

        .footer-list a:hover,
        .footer-list a:focus-visible {
            color: rgba(27, 27, 27, 0.95);
            background: linear-gradient(to bottom, #2A2723, #1F1D1A);
            opacity: 1;
        }

.footer-note {
    margin-top: 12px;
}

.footer-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 12px;
}

.footer-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    opacity: .8;
    color: rgba(255,255,255,0.84);
    font-size: 13px;
}

    .footer-badge img {
        filter: saturate(0.85) brightness(0.96);
    }

    .footer-badge.is-muted {
        background: rgba(255, 255, 255, 0.55);
    }

.footer-badge--heritage {
    border: 1px solid rgba(178, 154, 100, 0.35);
    background: rgba(178, 154, 100, 0.12);
    color: rgba(255, 255, 255, 0.95);
}

.footer-badge .dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: rgba(178, 154, 100, 0.95);
    box-shadow: 0 0 0 6px rgba(178, 154, 100, 0.12);
}

.footer-cta {
    margin-top: 14px;
}

    .footer-cta .btn {
        width: 100%;
        justify-content: center;
        border-radius: 14px;
    }

.footer-cta-link {
    display: inline-block;
    margin-top: 12px;
    padding-bottom: 3px;
    border-bottom: 1px solid rgba(178, 154, 100, 0.55);
    color: rgba(27, 27, 27, 0.85);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: border-color .2s ease;
}

    .footer-cta-link:hover {
        border-color: rgba(178, 154, 100, 0.8);
    }

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-top: 20px;
    padding-top: 10px;
    border-top: 1px solid rgba(255,255,255,0.035);
}

    .footer-bottom p {
        font-size: 11.5px;
        letter-spacing: .04em;
        opacity: .75;
        color: rgba(255,255,255,0.72);
    }

.footer-bottom-links a {
    padding: 0;
    border-radius: 0;
    text-decoration: none;
    color: rgba(255,255,255,0.72);
    opacity: 0.7;
}

    .footer-bottom-links a:hover {
        background: none;
        color: rgba(27, 27, 27, 0.9);
    }

.footer-disclaimer {
    max-width: 900px;
    margin: 0 auto 6px;
    color: rgba(255, 255, 255, .7);
    font-size: 12px;
    line-height: 1.6;
}

    .footer-disclaimer span {
        color: rgba(255, 255, 255, .55);
    }

.footer-proprietary {
    margin-top: 6px;
    color: #a89f96;
    font-size: 11px;
    opacity: .7;
}

/* Menu footer */
.kcMenuFooter {
    padding: 12px 14px;
    border-top: 1px solid #e3e5e8;
    background: #2A2723;
    color: rgba(255, 255, 255, .85);
    font-size: 12px;
    line-height: 1.5;
    text-align: center;
}
.footer-col {
    min-width: 0;
}

    .footer-col:not(.footer-brand) {
        max-width: 220px;
    }
/* =========================================================
   FAB / MOBILE BAR
   ========================================================= */
.mobileBar {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1000;
    padding-bottom: env(safe-area-inset-bottom, 0px);
}

.whatsapp-fab {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 999;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border-radius: 999px;
    background: #25D366;
    box-shadow: 0 10px 24px rgb(0 0 0 / .25), 0 0 0 1px rgb(255 255 255 / .18) inset;
    color: #fff;
    text-decoration: none;
    transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

    .whatsapp-fab img {
        display: block;
        width: 28px;
        height: 28px;
    }

.whatsapp-fab__label {
    font-size: 14px;
    font-weight: 700;
    white-space: nowrap;
}

/* =========================================================
   REVEAL / MOTION
   ========================================================= */
.reveal {
    opacity: 0;
    transform: translateY(14px);
    transition: opacity var(--t-slow) var(--ease), transform var(--t-slow) var(--ease);
    transition-delay: var(--d, 0ms);
}

    .reveal.is-visible {
        opacity: 1;
        transform: translateY(0);
    }

    .reveal.delay-1 {
        transition-delay: 80ms;
    }

    .reveal.delay-2 {
        transition-delay: 160ms;
    }

    .reveal.delay-3 {
        transition-delay: 240ms;
    }

/* =========================================================
   THEME / PAGE-SPECIFIC OVERRIDES
   ========================================================= */
body.theme-site.is-home .menu-card,
body.theme-site.is-home .testimonial,
body.theme-site.is-home .note,
body.theme-site.is-home .trust-logo {
    border: 1px solid rgba(27, 27, 27, 0.08);
    background: rgba(255, 255, 255, 0.72);
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.07);
}

body.theme-site.is-home .stat {
    border: 1px solid rgba(27, 27, 27, 0.07);
    background: rgba(255, 255, 255, 0.78);
}

body.theme-site.is-home footer.footer {
    border-top: 1px solid rgba(255,255,255,0.025);
    background: #2A2723;
}

    body.theme-site.is-home footer.footer::before {
        background: linear-gradient(to right, transparent, rgba(178, 154, 100, 0.65), transparent);
        opacity: 1;
    }

body.theme-site.is-home .footer-title {
    color: rgba(255, 255, 255, 0.7);
}

body.theme-site.is-home .footer-tag,
body.theme-site.is-home .footer-note,
body.theme-site.is-home .footer-bottom p,
body.theme-site.is-home .footer-list a,
body.theme-site.is-home .footer-bottom-links a {
    color: rgba(255, 255, 255, 0.78);
}

    body.theme-site.is-home .footer-list a:hover,
    body.theme-site.is-home .footer-bottom-links a:hover {
        color: rgba(178, 154, 100, 1);
    }

body.theme-site.is-home .site-header:not(.is-scrolled) .navBarBtn {
    color: rgba(255,255,255,0.92) !important;
    text-shadow: 0 2px 6px rgba(0,0,0,0.35), 0 0 14px rgba(0,0,0,0.25);
}

    body.theme-site.is-home .site-header:not(.is-scrolled) .navBarBtn:hover,
    body.theme-site.is-home .site-header:not(.is-scrolled) .navBarBtn:focus-visible {
        color: rgba(255, 255, 255, 0.98) !important;
    }

    body.theme-site.is-home .site-header:not(.is-scrolled) .navBarBtn::after {
        background: rgba(255, 255, 255, 0.75);
        backdrop-filter: blur(6px);
    }

body.is-menu .site-header {
    z-index: 1000;    
    background: rgba(247, 243, 236, 0.9);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.045);
    backdrop-filter: saturate(140%) blur(10px);
    -webkit-backdrop-filter: saturate(140%) blur(10px);
}

body.is-menu .header-wrap {
    position: relative;
}

body.is-menu .navBarBtn,
body.is-menu .navBarBtn:link,
body.is-menu .navBarBtn:visited {
    /*color: rgba(27,27,27,0.88);*/
    color: #1b1b1b;
    text-shadow: none !important;
    font-weight: 500;
    letter-spacing: -0.01em;
}

    body.is-menu .navBarBtn:hover,
    body.is-menu .navBarBtn:focus-visible {
        color: rgba(27, 27, 27, 0.95) !important;
    }

body.is-menu .navBarBtn--cny {
    color: #fff !important;
}

body.is-menu .nav-mega__header {
    color: #111;
}

body.is-menu .site-header .trust-chip {
    color: rgba(27,27,27,0.85);
    opacity: 1;
}

    body.is-menu .site-header .trust-chip img {
        filter: saturate(0.85);
    }

/* Homepage hero CTAs — premium editorial */
body.theme-site.is-home .hero-rotator__cta {
    gap: 28px;
    margin-top: 24px;
    align-items: center;
}

    body.theme-site.is-home .hero-rotator__cta .btn {
        position: relative;
        min-height: auto;
        padding: 0 0 3px;
        border: 0;
        border-radius: 0;
        background: transparent;
        box-shadow: none;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        color: rgba(255,255,255,.94);
        font-size: 14px;
        font-weight: 650;
        letter-spacing: .01em;
        text-shadow: 0 3px 14px rgba(0,0,0,.28);
    }

        body.theme-site.is-home .hero-rotator__cta .btn:first-child {
            font-weight: 720;
            color: rgba(255,255,255,.96);
        }

        body.theme-site.is-home .hero-rotator__cta .btn:last-child {
            color: rgba(255,255,255,.88);
        }

        body.theme-site.is-home .hero-rotator__cta .btn::after {
            content: "→";
            margin-left: 6px;
            opacity: .72;
            transition: transform .18s ease, opacity .18s ease;
            transform: translateY(-1px);
        }

        body.theme-site.is-home .hero-rotator__cta .btn:hover {
            opacity: 1;
            transform: none;
        }

            body.theme-site.is-home .hero-rotator__cta .btn:hover::before {
                width: calc(100% - 22px);
            }

            body.theme-site.is-home .hero-rotator__cta .btn:hover::after {
                transform: translateX(3px);
                opacity: 1;
            }

        body.theme-site.is-home .hero-rotator__cta .btn:focus-visible {
            outline: none;
            box-shadow: 0 0 0 4px rgba(255,255,255,.18);
            border-radius: 6px;
        }

/* =========================================================
   MOBILE / RESPONSIVE
   ========================================================= */
@media (max-width: 1024px) {
    #kateLogo {
        height: 34px;
    }

    .header-nav {
        display: none !important;
    }

    .desktop-only {
        display: none !important;
    }

    .mobile-only,
    .mnav {
        display: block !important;
    }

    .header-wrap {
        max-width: 1500px;
        justify-content: space-between;
        padding: 0 18px;
    }

    .trust-chip {
        border: none;
    }
}

@media (max-width: 980px) {
    .hero-content {
        grid-template-columns: 1fr;
        padding-top: 10px;
    }

    .hero-card {
        justify-self: start;
    }

    .menu-grid,
    .contact-inner,
    .form-grid,
    .timeline {
        grid-template-columns: 1fr;
    }

    .menus-note,
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .timeline::before,
    .timeline::after {
        display: none;
    }

    .footer-inner,
    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 860px) {    
    .brand-logo img {
        height: 50px;
    }

    .nav-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        border: 1px solid rgba(27, 27, 27, 0.14);
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.55);
        cursor: pointer;
    }

    .nav-menu {
        position: absolute;
        top: 62px;
        right: max(var(--pad), 12px);
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 6px;
        width: min(320px, calc(100% - var(--pad) * 2));
        padding: 10px;
        border: 1px solid rgba(27, 27, 27, 0.1);
        border-radius: 18px;
        background: rgba(255, 255, 255, 0.92);
        box-shadow: var(--shadow);
    }

        .nav-menu a {
            padding: 12px;
        }

        .nav-menu.is-open {
            display: flex;
        }
}

@media (max-width: 768px) {
    .hero-rotator__cta .btn {
        animation-duration: .5s;
    }
}

@media (max-width: 640px) {
    .whatsapp-fab {
        padding: 12px;
    }

    .whatsapp-fab__label {
        display: none;
    }
}

@media (max-width: 620px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 520px) {
    .trust-logo {
        height: 56px;
        padding: 8px 12px;
    }

        .trust-logo img {
            max-width: 120px;
            height: 26px;
        }
}

@media screen and (max-width: 480px) {
    body.is-menu {
        padding-top: 55px;
    }
}

@media (max-width: 480px) {
    .kcMenuFooter {
        padding: 14px 12px;
        font-size: 11px;
    }
}

/* =========================================================
   MOBILE DRAWER
   ========================================================= */
@media (min-width: 1025px) {
    .mnav,
    .mnav-backdrop {
        display: none !important;
    }
}

@media (max-width: 1024px) {    
    /* menu pages keep floating light header */
    body.is-menu .site-header {
        padding: 6px 0;
        background: rgba(255,255,255,0.85);
        box-shadow: 0 4px 12px rgba(0,0,0,.04);
        backdrop-filter: saturate(140%) blur(10px);
        -webkit-backdrop-filter: saturate(140%) blur(10px);
        width: calc(100% - 24px);
        margin: 8px 12px;
        border-radius: 18px;
    }

    /* homepage stays transparent until scrolled */
    body.theme-site.is-home .site-header:not(.is-scrolled) {
        margin: 0;
        border-radius: 0;
        padding: 4px 0;
        background: transparent;
        box-shadow: none;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }

    body.theme-site.is-home .site-header.is-scrolled {
        padding: 6px 0;
        background: rgba(255,255,255,0.85);
        box-shadow: 0 4px 12px rgba(0,0,0,.04);
        backdrop-filter: saturate(140%) blur(10px);
        -webkit-backdrop-filter: saturate(140%) blur(10px);
        width: calc(100% - 24px);
        margin: 8px 12px;
        border-radius: 18px;
    }

    body.theme-site.is-home .site-header:not(.is-scrolled) .mnav-toggle {
        background: rgba(0, 0, 0, 0.16);
        border: 1px solid rgba(255, 255, 255, 0.14);
        box-shadow: none;
    }

    body.theme-site.is-home .site-header:not(.is-scrolled) .mnav-toggle {
        color: rgba(255, 255, 255, 0.92);
    }

    .mnav {
        position: fixed;
        top: 0;
        right: 0;
        z-index: 1200;
        display: block;
        overflow: hidden;
        width: min(92vw, 420px);
        height: 100dvh;
        border-left: 1px solid rgba(0, 0, 0, .06);
        border-top-left-radius: 22px;
        border-bottom-left-radius: 22px;
        background: linear-gradient(180deg, #ffffff 0%, #fbfbfb 100%);
        box-shadow: -18px 0 54px rgba(0, 0, 0, .2);
        transform: translateX(100%);
        transition: transform .25s ease;
        -webkit-overflow-scrolling: touch;
    }

        .mnav.is-open {
            transform: translateX(0);
        }

    .mnav-backdrop {
        position: fixed;
        inset: 0;
        z-index: 1100;
        background: rgba(0, 0, 0, .52);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
    }

    body.mnav-lock {
        overflow: hidden;
    }

    .mnav-toggle {
        padding: 0;
        width: 40px;
        height: 40px;
        border-radius: 10px;
        background: rgba(0,0,0,.04);
        border: 1px solid rgba(0,0,0,.05);
    }

        .mnav-toggle:hover {
            background: rgba(0, 0, 0, .03);
        }

    .mnav__top {
        position: sticky;
        top: 0;
        z-index: 2;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 10px 12px;
        border-bottom: 1px solid rgba(0, 0, 0, .06);
        background: rgba(255, 255, 255, .92);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
    }

    .mnav__trust {
        display: inline-flex;
        align-items: center;
        gap: 5px;
        font-size: 10.5px;
        text-transform: uppercase;
        color: rgba(0,0,0,0.65);
        opacity: 0.72;
        font-weight: 650;
        letter-spacing: 0.06em;
    }
        .mnav__trust img {
            width: 20px;
            height: 20px;
            filter: grayscale(1) contrast(1.1);
        }
    .mnav__trustText {
        line-height: 1.05;
    }
    .mnav__close {
        display: grid;
        place-items: center;
        width: 40px;
        height: 40px;
        padding: 0;
        border: 1px solid rgba(0, 0, 0, .1);
        border-radius: 12px;
        background: rgba(255, 255, 255, .8);
        box-shadow: none;
        cursor: pointer;
        font-size: 18px;
        font-weight: 600;
        appearance: none;
    }

        .mnav__close:hover {
            background: rgba(0, 0, 0, .03);
        }

    .mnav__cta {
        display: grid;
        gap: 10px;
        margin: 8px 12px;
        padding: 12px 14px;
        border: none;
        background: transparent;
        box-shadow: none;
    }

    .mnav__btn {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 14px;
        border-radius: 16px;
        font-weight: 800;
        letter-spacing: .2px;
        text-align: center;
        text-decoration: none;
    }

    .mnav__btn--cny {
        height: 42px;
        border-radius: 10px;
        font-weight: 600;
        letter-spacing: .2px;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0 16px;
        max-width: 92%;
        margin: 8px auto 4px;
        color: #6a1410;
        transition: background 0.2s ease, transform 0.12s ease;
        background: rgba(122, 23, 18, 0.05);
        border: 1px solid rgba(122, 23, 18, 0.08);
    }
        .mnav__btn--cny:active {
            background: rgba(122, 23, 18, 0.12);
            transform: scale(0.98);
        }

    .mnav__links {
        margin-top: 6px;
        padding: 8px 0 16px;
        background: #fff;
    }

    .mnav__link {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        margin: 0 10px;
        padding: 12px 14px;
        border: 0;
        border-radius: 14px;
        background: transparent;
        color: inherit;
        font-size: 15px;
        font-weight: 750;
        text-decoration: none;
        cursor: pointer;
        transition: background .16s ease, transform .16s ease;
    }

        .mnav__link:hover {
            transform: translateX(1px);
            background: rgba(0, 0, 0, .03);
        }

        .mnav__link:active {
            transform: none;
            background: rgba(198, 40, 40, .06);
        }

    .mnav__accordion {
        position: relative;
        margin: 6px 10px 8px;
        border: 1px solid rgba(0, 0, 0, .06);
        border-radius: 16px;
        font-weight: 700;
        font-size: 16.5px;
        letter-spacing: -0.01em;
        background: rgba(17, 24, 39, 0.025);
    }

        .mnav__accordion .mnav__link {
            margin: 0 !important;
            padding: 13px 14px !important;
            border-radius: 16px !important;
            background: transparent !important;
            transform: none !important;
        }

        .mnav__accordion .mnav__chev {
            width: auto !important;
            height: auto !important;
            margin-left: 8px;
            border: 0 !important;
            opacity: .75;
            transform: rotate(0deg);
            transition: transform .18s ease, opacity .18s ease;
            transform: translateY(-1px);
        }

        .mnav__accordion[aria-expanded="true"] .mnav__chev {
            opacity: .95;
            transform: rotate(180deg);
        }

    .mnav__submenu {
        margin: 8px 10px 12px !important;
        padding: 8px !important;
        border: 1px solid rgba(0, 0, 0, .06) !important;
        border-radius: 16px !important;
        background: rgba(255, 255, 255, .92) !important;
        box-shadow: 0 10px 24px rgba(0, 0, 0, .06);
    }

    .mnav__sublink {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        margin: 0 !important;
        padding: 11px 12px !important;
        border: 0;
        border-radius: 12px !important;
        background: transparent;
        color: inherit;
        font-size: 14px;
        font-weight: 650;
        text-decoration: none;
        cursor: pointer;
        transition: background 0.18s ease, transform 0.12s ease;
    }

        .mnav__sublink + .mnav__sublink {
            margin-top: 2px !important;
        }

        .mnav__sublink:hover {
            transform: none !important;
            background: rgba(0, 0, 0, .03) !important;
        }
        .mnav__link:active,
        .mnav__sublink:active {
            transform: scale(0.995);
        }

    .mnav__divider {
        height: 1px;
        margin: 12px 14px;
        background: linear-gradient(to right, transparent, rgba(0, 0, 0, .12), transparent);
    }

    .mnav__brand {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }

        .mnav__brand img {
            display: block;
            width: auto;
            height: 34px;
        }

    .mnav__link[href^="tel"],
    .mnav__link[href^="https://wa.me"] {
        justify-content: flex-start !important;
    }
    .mobile-only.header-actions {
        display: flex !important;
        align-items: center;
        justify-content: flex-end;
        gap: 6px;
        flex-wrap: nowrap;
    }
    .trust-chip {
        width: 40px;
        height: 40px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

        .trust-chip img {
            width: 26px;
            height: 26px;
            transform: translateY(-0.5px);
            opacity: 0.8;
        }

    .trust-chip--compact span {
        font-size: 12px;
    }
    .trust-chip,
    .mnav-toggle {
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

@media (max-width: 420px) {
    .mnav {
        box-shadow: -14px 0 44px rgba(0, 0, 0, .18);
    }

    .mnav__cta {
        margin: 10px;
    }

    .mnav__link {
        margin: 0 8px;
    }

    .mnav__submenu {
        margin: 6px 8px 10px;
    }
}

/* =========================================================
   REDUCED MOTION / INTERACTION
   ========================================================= */
@media (hover: hover) {
    .whatsapp-fab:hover {
        transform: translateY(-2px);
        filter: brightness(1.05);
        box-shadow: 0 14px 32px rgb(0 0 0 / .28), 0 0 0 1px rgb(255 255 255 / .25) inset;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
        scrollbar-gutter: stable;
    }

    .reveal,
    .timeline .step-dot,
    .btn,
    .mnav,
    .mnav__link,
    .mnav__sublink {
        transition: none !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }

    .timeline-step.is-active .step-dot {
        transform: none;
    }

    .timeline::after {
        transition: none;
    }
}

/* =========================================================
   KEYFRAMES
   ========================================================= */
@keyframes pulse {
    0%, 100% {
        opacity: .55;
        transform: translateY(0);
    }

    50% {
        opacity: 1;
        transform: translateY(6px);
    }
}

@keyframes goldShimmer {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

@keyframes heroFadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes cnyShimmer {
    from {
        transform: translateX(-60%);
    }

    to {
        transform: translateX(60%);
    }
}

@keyframes cnyPillFloatPulse {
    0%, 100% {
        filter: brightness(1);
        transform: translate(0, 0) scale(1);
    }

    50% {
        filter: brightness(1.05);
        transform: translate(-1px, -1px) scale(1.08);
    }
}

/* =========================================
   FOOTER — APPLE V2 REFINEMENT
   ========================================= */

.footer {
    padding: 72px 0 30px;
    background: #211e1b;
}

.footer-grid {
    grid-template-columns: 1.08fr 0.92fr 0.92fr 0.92fr;
    gap: 28px 36px;
}

.footer-brand > * + * {
    margin-top: 12px;
}

.footer-logo img {
    height: 76px;
}

.footer-since {
    display: inline-block;
    color: rgba(255,255,255,0.48);
    font-size: 12px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.footer-title {
    margin-bottom: 16px;
    color: rgba(255,255,255,0.46);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.footer-list {
    gap: 8px;
}

    .footer-list a {
        color: rgba(255,255,255,0.72);
        font-size: 14px;
        line-height: 1.38;
        opacity: 1;
        transition: color .18s ease, opacity .18s ease;
    }

        .footer-list a:hover,
        .footer-list a:focus-visible {
            color: rgba(255,255,255,0.94);
            background: none;
            opacity: 1;
        }
.footer-list,
.footer-note {
    margin-top: 0;
}
.footer-note {
    margin-top: 14px;
    color: rgba(255,255,255,0.52);
    font-size: 13px;
}

.footer-trust {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
    color: rgba(255,255,255,0.62);
    font-size: 13px;
    line-height: 1.5;
}

    .footer-trust a {
        color: rgba(255,255,255,0.68);
        transition: color .18s ease;
    }

        .footer-trust a:hover,
        .footer-trust a:focus-visible {
            color: rgba(255,255,255,0.92);
        }

.footer-social {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 14px;
}

    .footer-social a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        transition: opacity .18s ease, transform .18s ease;
        opacity: 0.5;
        transform: scale(0.9);
    }

        .footer-social a:hover,
        .footer-social a:focus-visible {
            opacity: 0.9;
            transform: translateY(-1px);
        }

    .footer-social img {
        width: 22px;
        height: 22px;
        object-fit: contain;
    }

.footer-badges,
.footer-badge,
.footer-badge--heritage {
    all: unset;
}

.footer-bottom {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 16px;
    max-width: var(--container);
    margin-left: auto;
    margin-right: auto;
    padding-left: 16px;
    padding-right: 16px;
    margin-top: 16px;
    padding-top: 10px;
}
.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 18px;
    transform: translateY(1px);
    padding-right: 90px;
}

    .footer-bottom p,
    .footer-bottom-links a {
        color: rgba(255,255,255,0.54);
        font-size: 12px;
        letter-spacing: 0.02em;        
        line-height: 1.35;
        opacity: 0.65;
    }

        .footer-bottom-links a:hover {
            color: rgba(255,255,255,0.86);
            opacity: 0.85;
        }
        .footer-bottom-links a + a::before {
            content: "";
            width: 3px;
            height: 3px;
            border-radius: 50%;
            background: rgba(255,255,255,0.4);
            margin-right: 16px;
        }

@media (max-width: 980px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 28px 24px;
    }
}

@media (max-width: 620px) {
    .footer {
        padding: 56px 0 24px;
    }

        .footer::before {
            margin-bottom: 28px;
        }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .footer-logo img {
        height: 68px;
    }

    .footer-bottom {
        gap: 10px;
        align-items: flex-start;
    }
}
/* =========================================
   MOBILE DRAWER — APPLE-STYLE NAV LIST
   ========================================= */
@media (max-width: 1024px) {
    .mnav__links {
        margin-top: 8px;
        padding: 6px 12px 18px;
        background: transparent;
    }

    .mnav__group {
        margin-bottom: 14px;
        padding: 4px;
        border-radius: 18px;
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        background: #ffffff;
        border: none;
        box-shadow: 0 4px 12px rgba(0,0,0,.04);
    }

        .mnav__group + .mnav__group {
            margin-top: 12px;
        }

    .mnav__link,
    .mnav__sublink,
    .mnav__accordion {
        -webkit-tap-highlight-color: transparent;
    }

    .mnav__link {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 14px;
        width: 100%;
        margin: 0;
        padding: 15px 14px;
        border: 0;
        border-radius: 14px;
        background: transparent;
        color: #1f2937;
        font-size: 16px;
        line-height: 1.25;
        font-weight: 650;
        letter-spacing: -0.01em;
        text-decoration: none;
        cursor: pointer;
        transition: background .18s ease, color .18s ease, transform .12s ease;
    }

        .mnav__link + .mnav__link {
            margin-top: 2px;
        }

        .mnav__link::after {
            content: "";
            position: absolute;
            left: 14px;
            right: 14px;
            bottom: -1px;
            height: 1px;
            background: rgba(0,0,0,.03);
        }

    .mnav__group > .mnav__link:last-child::after,
    .mnav__group > .mnav__accordion:last-child::after,
    .mnav__group > .mnav__submenu:last-child + .mnav__link::after,
    .mnav__group > .mnav__submenu:last-child::after {
        display: none;
    }

    .mnav__link:hover {
        background: rgba(17, 24, 39, 0.03);
        transform: translateX(1px);
    }

    .mnav__link:active {
        background: rgba(122, 23, 18, 0.06);
        transform: scale(0.995);
    }

    .mnav__accordion {
        position: relative;
        margin: 0;
        border: 0;
        border-radius: 14px;
        background: transparent;
    }

        .mnav__accordion::after {
            content: "";
            position: absolute;
            left: 14px;
            right: 14px;
            bottom: -1px;
            height: 1px;
            background: rgba(17, 24, 39, 0.06);
        }

        .mnav__accordion .mnav__chev {
            flex: 0 0 auto;
            width: 18px !important;
            height: 18px !important;
            margin-left: 10px;
            border: 0 !important;
            opacity: 0.7;
            transform: rotate(0deg);
            transition: transform .18s ease, opacity .18s ease;
        }

        .mnav__accordion[aria-expanded="true"] {
            background: rgba(17, 24, 39, 0.04);
        }

            .mnav__accordion[aria-expanded="true"] .mnav__chev {
                opacity: 0.95;
                transform: rotate(180deg);
            }
    .mnav__chev {
        margin-right: 2px;
    }
    .mnav__submenu {
        border: 0 !important;
        border-radius: 0 !important;
        background: transparent !important;
        box-shadow: none !important;
        margin: 4px 0 8px !important;
        padding: 4px 0 6px 8px !important;
    }

    .mnav__sublink {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        margin: 0 !important;
        border: 0;
        border-radius: 12px !important;
        background: transparent;
        line-height: 1.3;
        letter-spacing: -0.01em;
        text-decoration: none;
        transition: background .16s ease, color .16s ease, transform .12s ease;
        padding: 9px 14px 9px 16px !important;
        font-size: 14px;
        font-weight: 560;
        color: rgba(31, 41, 55, 0.82);
    }

        .mnav__sublink::before {
            display:none;
            /*content: "";
            position: absolute;
            left: 14px;
            top: 50%;
            border-radius: 999px;
            transform: translateY(-50%);
            width: 4px;
            height: 4px;
            background: rgba(122, 23, 18, 0.25);*/
        }

        .mnav__sublink + .mnav__sublink {
            margin-top: 1px !important;
        }

        .mnav__sublink:hover {
            color: #111827 !important;
            background: rgba(17, 24, 39, 0.025);
        }

/*    .mnav__sublink--all {
        border-radius: 8px;
        background: rgba(122, 23, 18, 0.045);
        color: #7a1712;
        font-weight: 600 !important;
    }
    
        .mnav__sublink--all::before {
            background: rgba(122, 23, 18, 0.68);
        }
*/
    .mnav__divider {
        height: 1px;
        margin: 14px 8px;
        background: linear-gradient( to right, transparent, rgba(17, 24, 39, 0.1), transparent );
    }

    .mnav__sectionLabel {
        padding: 2px 14px 10px;
        color: rgba(17, 24, 39, 0.42);
        font-size: 11px;
        font-weight: 600;
        letter-spacing: 0.16em;
        text-transform: uppercase;
    }

    .mnav__contact .mnav__link {
        font-weight: 620;
    }
}