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

        :root {
            --font-heading: 'Cormorant Garamond', serif;
            --font-accent: 'Great Vibes', cursive;
            --font-body: 'Montserrat', sans-serif;
            --gold: #ad9271;
            --gold-light: #c9b49a;
            --gold-deep: #7b6e64;
            --accent: #cc3366;
            --ink: #1a1817;
            --ink-soft: #5a5451;
            --ink-light: #9a9390;
            --cream: #faf8f5;
            --cream-dark: #f0ece6;
            --white: #ffffff;
            --line: rgba(173, 146, 113, .18);
        }

        html {
            /* Lenis handles smooth scrolling */
        }

        /* ── SCROLLBAR ────────────────────────────── */
        ::-webkit-scrollbar {
            width: 8px;
        }

        ::-webkit-scrollbar-track {
            background: var(--white);
        }

        ::-webkit-scrollbar-thumb {
            background: rgba(173, 146, 113, 0.4);
            border-radius: 4px;
        }

        ::-webkit-scrollbar-thumb:hover {
            background: var(--gold);
        }

        body {
            font-family: var(--font-body);
            font-weight: 300;
            background: var(--white);
            color: var(--ink);
            overflow-x: hidden;
        }

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

        a {
            text-decoration: none;
            color: inherit;
        }

        /* ── TYPOGRAPHY ───────────────────────────── */
        .f-cinzel {
            font-family: 'Cinzel', Georgia, serif;
        }

        .f-cormorant {
            font-family: 'Cormorant Garamond', Georgia, serif;
        }

        /* ── NAV ──────────────────────────────────── */
        .nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 130;
            padding: 0 3rem;
            height: 76px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            transition: background 400ms ease, box-shadow 400ms ease;
        }

        .nav.scrolled {
            background: rgba(255, 255, 255, .96);
            backdrop-filter: blur(12px);
            box-shadow: 0 1px 0 var(--line);
        }

        .nav-logo {
            font-family: var(--font-heading);
            font-size: 1.15rem;
            font-weight: 600;
            letter-spacing: .18em;
            text-transform: uppercase;
            color: var(--white);
            transition: color 400ms ease;
        }

        .nav.scrolled .nav-logo {
            color: var(--ink);
        }

        .nav-links {
            display: flex;
            gap: 2.5rem;
            list-style: none;
        }

        .nav-links a {
            font-size: .72rem;
            font-weight: 500;
            letter-spacing: .14em;
            text-transform: uppercase;
            color: rgba(255, 255, 255, .85);
            transition: color 250ms ease;
        }

        .nav.scrolled .nav-links a {
            color: var(--ink-soft);
        }

        .nav-links a:hover {
            color: var(--gold) !important;
        }

        .nav-cta {
            font-size: .72rem;
            font-weight: 500;
            letter-spacing: .12em;
            text-transform: uppercase;
            padding: .6rem 1.4rem;
            border: 1px solid rgba(255, 255, 255, .55);
            color: var(--white);
            border-radius: 2px;
            transition: all 250ms ease;
        }

        .nav.scrolled .nav-cta {
            border-color: var(--gold);
            color: var(--gold-deep);
        }

        .nav-cta:hover {
            background: var(--gold);
            border-color: var(--gold);
            color: var(--white) !important;
        }

        /* ── HERO ─────────────────────────────────── */
        .hero-section {
            display: flex;
            flex-direction: row;
            height: 100svh;
            min-height: 680px;
            overflow: hidden;
            background: var(--white);
            position: relative;
        }

        .hero-image {
            flex: 1.2;
            height: 100%;
            position: relative;
        }

        .hero-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .hero-content {
            flex: 1;
            padding: 6rem 5rem;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: flex-start;
            background: var(--white);
            color: var(--ink);
        }

        .hero-eyebrow {
            font-size: .75rem;
            letter-spacing: .22em;
            text-transform: uppercase;
            color: var(--gold);
            margin-bottom: 1.2rem;
        }

        .hero-title {
            font-family: var(--font-heading);
            font-size: clamp(1.8rem, 3.2vw, 2.5rem);
            font-weight: 400;
            line-height: 1.2;
            color: var(--ink);
            margin-bottom: 1.5rem;
        }

        .hero-title em {
            font-style: italic;
            font-family: var(--font-accent);
            font-size: 1.35em;
            font-weight: 300;
            color: var(--gold);
        }

        .hero-desc {
            font-family: var(--font-body);
            font-size: 0.95rem;
            font-weight: 300;
            line-height: 1.75;
            color: var(--ink-soft);
            max-width: 440px;
            margin-bottom: 2.5rem;
        }

        .hero-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 1rem 2.5rem;
            background: var(--ink);
            color: var(--white) !important;
            font-family: var(--font-body);
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 2px;
            font-size: 0.8rem;
            border: 1px solid var(--ink);
            border-radius: 2px;
            transition: all 0.4s ease;
            text-decoration: none;
        }

        .hero-btn:hover {
            background: transparent;
            color: var(--ink) !important;
        }

        @media (max-width: 900px) {
            .hero-section {
                flex-direction: column;
                height: auto;
                min-height: auto;
            }

            .hero-image {
                height: 50svh;
                width: 100%;
                flex: none;
            }

            .hero-content {
                padding: 4rem 2rem;
                flex: none;
            }
        }

        /* ── MARQUEE ──────────────────────────────── */
        .marquee-wrap {
            background: var(--ink);
            overflow: hidden;
            padding: 1.25rem 0;
        }

        .marquee-track {
            display: flex;
            gap: 0;
            animation: marquee 55s linear infinite;
            width: max-content;
        }

        .marquee-segment {
            display: flex;
            align-items: center;
            gap: 3rem;
            padding-right: 3rem;
            font-family: var(--font-heading);
            font-size: .8rem;
            font-weight: 400;
            letter-spacing: .25em;
            text-transform: uppercase;
            color: var(--white);
            white-space: nowrap;
        }

        .marquee-dot {
            width: 4px;
            height: 4px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.4);
            flex-shrink: 0;
        }

        @keyframes marquee {
            from {
                transform: translateX(0);
            }

            to {
                transform: translateX(-50%);
            }
        }

        /* ── SECTION UTILITIES ────────────────────── */
        .section {
            padding: 7rem 5rem;
        }

        .section-sm {
            padding: 4.5rem 5rem;
        }

        .label {
            font-size: .68rem;
            font-weight: 500;
            letter-spacing: .2em;
            text-transform: uppercase;
            color: var(--gold);
            display: block;
            margin-bottom: 1.2rem;
        }

        .section-title {
            font-family: var(--font-heading);
            font-weight: 400;
            font-size: clamp(1.6rem, 3vw, 2.5rem);
            line-height: 1.25;
            color: var(--ink);
        }

        .section-title em {
            font-style: italic;
            font-family: var(--font-accent);
            font-size: 1.1em;
            font-weight: 300;
            color: var(--gold);
        }

        .body-text {
            font-size: .97rem;
            line-height: 1.8;
            color: var(--ink-soft);
            max-width: 58ch;
        }

        .divider {
            width: 50px;
            height: 1px;
            background: var(--gold);
            margin: 2rem 0;
        }

        /* ── INTRO ────────────────────────────────── */
        .intro {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 5rem;
            align-items: center;
        }

        .intro-img-wrap {
            position: relative;
        }

        .intro-img-main {
            width: 100%;
            aspect-ratio: 4/5;
            /* ═══ REPLACE: intro image ═══ */
            background: url('../assets/DSCF4222.JPG') center/cover;
        }

        .intro-img-accent {
            position: absolute;
            width: 48%;
            aspect-ratio: 1;
            /* ═══ REPLACE: accent image ═══ */
            background: url('../assets/145cad9e-ee69-4bed-9e6a-f6bf4f0b4900.jpg') center/cover;
            bottom: -2.5rem;
            right: -2.5rem;
            border: 6px solid var(--white);
            box-shadow: 0 20px 60px rgba(0, 0, 0, .12);
        }

        .intro-badge {
            position: absolute;
            top: 2rem;
            left: -3rem;
            background: var(--white);
            border-left: 3px solid var(--gold);
            padding: 1.2rem 1.4rem;
            box-shadow: 0 12px 40px rgba(0, 0, 0, .08);
        }

        .intro-badge-num {
            font-family: var(--font-heading);
            font-size: 2.2rem;
            font-weight: 500;
            color: var(--ink);
            line-height: 1;
        }

        .intro-badge-text {
            font-size: .72rem;
            letter-spacing: .1em;
            text-transform: uppercase;
            color: var(--ink-light);
            margin-top: .35rem;
        }

        .intro-text {
            display: flex;
            flex-direction: column;
        }

        .intro-quote {
            font-family: var(--font-heading);
            font-size: clamp(1.4rem, 2.5vw, 1.8rem);
            font-style: italic;
            line-height: 1.5;
            color: var(--ink-soft);
            border-left: 2px solid var(--gold);
            padding-left: 1.5rem;
            margin: 2.5rem 0;
        }

        .cta-link {
            display: inline-flex;
            align-items: center;
            gap: .75rem;
            font-size: .75rem;
            font-weight: 500;
            letter-spacing: .14em;
            text-transform: uppercase;
            color: var(--gold-deep);
            align-self: flex-start;
            transition: gap 250ms ease;
        }

        .cta-link::after {
            content: '→';
            font-size: 1rem;
            transition: transform 250ms ease;
        }

        .cta-link:hover {
            gap: 1.1rem;
        }

        .cta-link:hover::after {
            transform: translateX(4px);
        }

        /* ── SERVICES ─────────────────────────────── */
        .services-section {
            background: var(--cream);
        }

        .services-header {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            margin-bottom: 4rem;
            align-items: end;
        }

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

        .service-card {
            background: var(--white);
            position: relative;
            overflow: hidden;
            cursor: pointer;
            transition: transform 350ms ease, box-shadow 350ms ease;
        }

        .service-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 24px 60px rgba(0, 0, 0, .1);
        }

        .service-img {
            aspect-ratio: 3/4;
            overflow: hidden;
        }

        .service-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 600ms ease;
            filter: grayscale(20%);
        }

        .service-card:hover .service-img img {
            transform: scale(1.06);
            filter: grayscale(0%);
        }

        .service-info {
            padding: 1.6rem 1.8rem 2rem;
        }

        .service-num {
            font-family: var(--font-accent);
            font-size: .9rem;
            font-style: italic;
            color: var(--gold);
            margin-bottom: .6rem;
        }

        .service-name {
            font-family: var(--font-heading);
            font-size: 1.05rem;
            font-weight: 400;
            color: var(--ink);
            margin-bottom: .6rem;
        }

        .service-desc {
            font-size: .88rem;
            line-height: 1.7;
            color: var(--ink-soft);
        }

        .service-card::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--gold);
            transition: width 350ms ease;
        }

        .service-card:hover::after {
            width: 100%;
        }

        /* ── GALLERY ──────────────────────────────── */
        .gallery-section {
            padding: 0;
            position: relative;
        }

        .gallery-slider {
            position: relative;
            overflow: hidden;
            height: 72vh;
            min-height: 520px;
        }

        .gallery-slide {
            position: absolute;
            inset: 0;
            opacity: 0;
            transition: opacity 800ms ease;
        }

        .gallery-slide.active {
            opacity: 1;
        }

        .gallery-slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center 65%;
            filter: grayscale(15%);
        }

        .gallery-slide::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(to right, rgba(20, 16, 12, .5) 0%, transparent 55%);
        }

        .gallery-overlay {
            position: absolute;
            bottom: 4rem;
            left: 5rem;
            z-index: 2;
        }

        .gallery-counter {
            font-family: var(--font-accent);
            font-size: .9rem;
            font-style: italic;
            color: rgba(255, 255, 255, .6);
            margin-bottom: 1rem;
            white-space: nowrap;
        }

        .gallery-caption {
            font-family: var(--font-heading);
            font-size: clamp(1.4rem, 3vw, 2.2rem);
            font-weight: 400;
            color: var(--white);
            max-width: 100%;
            line-height: 1.3;
            white-space: nowrap;
        }

        .gallery-nav {
            position: absolute;
            right: 5rem;
            top: 50%;
            transform: translateY(-50%);
            z-index: 2;
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .gallery-btn {
            width: 52px;
            height: 52px;
            border: 1px solid rgba(255, 255, 255, .4);
            background: transparent;
            color: var(--white);
            font-size: 1.1rem;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 250ms ease;
            border-radius: 1px;
        }

        .gallery-btn:hover {
            background: var(--gold);
            border-color: var(--gold);
        }

        .gallery-dots {
            position: absolute;
            bottom: 4rem;
            right: 5rem;
            z-index: 2;
            display: flex;
            gap: .6rem;
        }

        .gallery-dot {
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: rgba(255, 255, 255, .35);
            border: none;
            cursor: pointer;
            transition: all 250ms ease;
            padding: 0;
        }

        .gallery-dot.active {
            background: var(--gold);
            transform: scale(1.4);
        }

        .gallery-cta-bar {
            background: var(--cream);
            padding: 2.5rem 5rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .gallery-cta-text {
            font-family: var(--font-heading);
            font-size: clamp(1.2rem, 2vw, 1.5rem);
            font-style: italic;
            font-weight: 500;
            color: var(--ink-soft);
        }

        /* ── STATS (New Design) ───────────────────── */
        .stats-section {
            background: #EEE8E0;
            padding: 6rem 5rem;
            display: grid;
            grid-template-columns: repeat(4, minmax(0, 1fr));
            gap: 1.5rem;
        }

        .stat-card {
            background: var(--white);
            position: relative;
            padding: 3rem 2.8rem 2.8rem;
            cursor: default;
            overflow: hidden;
            opacity: 0;
            transform: translateY(22px);
            transition: opacity 600ms ease, transform 600ms ease, box-shadow 380ms ease;
        }

        .stat-card.in-view {
            opacity: 1;
            transform: translateY(0);
        }

        .stat-card.in-view:hover {
            transform: translateY(-6px);
            box-shadow: 0 28px 56px rgba(90, 70, 50, .1);
        }

        .stat-card:nth-child(1) {
            transition-delay: 0ms;
        }

        .stat-card:nth-child(2) {
            transition-delay: 100ms;
        }

        .stat-card:nth-child(3) {
            transition-delay: 200ms;
        }

        .stat-card:nth-child(4) {
            transition-delay: 300ms;
        }

        .stat-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            height: 2px;
            width: 0;
            background: var(--gold);
            transition: width 420ms cubic-bezier(.4, 0, .2, 1);
        }

        .stat-card:hover::before {
            width: 100%;
        }

        .stat-card::after {
            content: attr(data-roman);
            position: absolute;
            bottom: -0.6rem;
            right: 1.8rem;
            font-family: var(--font-heading);
            font-size: 6rem;
            font-weight: 600;
            color: var(--gold);
            opacity: .055;
            line-height: 1;
            pointer-events: none;
            user-select: none;
            letter-spacing: -.02em;
        }

        .stat-number {
            display: flex;
            align-items: baseline;
            gap: .2rem;
            line-height: 1;
            margin-bottom: 1.6rem;
        }

        .stat-num {
            font-family: var(--font-heading);
            font-size: clamp(3rem, 4.5vw, 4.2rem);
            font-weight: 600;
            color: var(--ink);
            letter-spacing: -.02em;
            line-height: 1;
            transition: color 300ms ease;
        }

        .stat-card:hover .stat-num {
            color: var(--gold-deep);
        }

        .stat-suffix {
            font-family: var(--font-heading);
            font-style: italic;
            font-weight: 400;
            font-size: clamp(1.6rem, 2.5vw, 2.2rem);
            color: var(--gold);
            line-height: 1;
            margin-bottom: .15em;
        }

        .stat-divider {
            width: 28px;
            height: 1px;
            background: var(--gold-light);
            margin-bottom: 1.2rem;
            transition: width 380ms ease;
        }

        .stat-card:hover .stat-divider {
            width: 46px;
        }

        .stat-label {
            font-family: var(--font-body);
            font-size: .65rem;
            font-weight: 500;
            letter-spacing: .24em;
            text-transform: uppercase;
            color: var(--ink-light);
            transition: color 300ms ease;
        }

        .stat-card:hover .stat-label {
            color: var(--gold-deep);
        }

        /* ── TESTIMONIAL ──────────────────────────── */
        .testimonial-section {
            background: var(--cream);
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .testimonial-icon {
            font-family: var(--font-accent);
            font-size: 5rem;
            line-height: 1;
            color: var(--gold);
            margin-bottom: .5rem;
            opacity: .6;
        }

        .testimonial-quote {
            font-family: var(--font-heading);
            font-size: clamp(1.5rem, 3vw, 2rem);
            font-style: italic;
            font-weight: 400;
            line-height: 1.5;
            color: var(--ink);
            max-width: 54ch;
            margin: 0 auto 2.5rem;
            min-height: 9rem;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .testimonial-author {
            font-size: .72rem;
            letter-spacing: .18em;
            text-transform: uppercase;
            color: var(--gold);
        }

        .testimonial-nav {
            display: flex;
            gap: .6rem;
            margin-top: 2.5rem;
        }

        .testimonial-dot {
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: var(--gold-light);
            border: none;
            cursor: pointer;
            padding: 0;
            transition: background 250ms;
        }

        .testimonial-dot.active {
            background: var(--gold-deep);
            width: 22px;
            border-radius: 3px;
        }

        /* ── CONTACT / CTA (Cleaned) ─────────────── */
        .cta-section {
            background: var(--cream);
            padding: 7rem 5rem;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .cta-card {
            background: var(--white);
            display: grid;
            grid-template-columns: 4fr 6fr;
            width: 100%;
            max-width: 1200px;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.06);
            overflow: hidden;
            border: 1px solid var(--brand-line);
        }

        .cta-img {
            position: relative;
            width: 100%;
            height: 100%;
        }

        .cta-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            filter: grayscale(10%);
        }

        .cta-form-wrap {
            padding: 5rem;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .cta-form-wrap .label {
            color: var(--gold);
        }

        .cta-form-wrap .section-title {
            color: var(--ink);
        }

        .cta-form-wrap .section-title em {
            color: var(--gold);
        }

        .cta-form-wrap .divider {
            background: var(--gold);
            opacity: 0.4;
            margin: 2rem 0 3rem;
        }

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

        .form-group {
            display: flex;
            flex-direction: column;
            gap: .2rem;
            margin-bottom: 1.8rem;
        }

        .form-group label {
            font-size: .65rem;
            letter-spacing: .12em;
            text-transform: uppercase;
            color: var(--ink-light);
        }

        .form-control {
            background: transparent;
            border: none;
            border-bottom: 1px solid rgba(26, 24, 23, 0.15);
            border-radius: 0;
            color: var(--ink);
            font-family: var(--font-body);
            font-size: .95rem;
            padding: .6rem 0;
            outline: none;
            transition: border-color 250ms ease;
            width: 100%;
        }

        .form-control::placeholder {
            color: rgba(26, 24, 23, 0.3);
        }

        .form-control:focus {
            border-bottom-color: var(--gold);
        }

        /* ── CUSTOM SELECT ────────────────────────── */
        .custom-select {
            position: relative;
            width: 100%;
        }

        .custom-select-trigger {
            background: transparent;
            border-bottom: 1px solid rgba(26, 24, 23, 0.15);
            color: rgba(26, 24, 23, 0.3);
            font-family: var(--font-body);
            font-size: .95rem;
            padding: .6rem 0;
            padding-right: 1.5rem;
            cursor: pointer;
            transition: border-color 250ms ease, color 250ms ease;
            position: relative;
            user-select: none;
        }

        .custom-select-trigger.selected {
            color: var(--ink);
        }

        .custom-select-trigger::after {
            content: '';
            position: absolute;
            right: 0.2rem;
            top: 50%;
            transform: translateY(-50%);
            width: 0.6em;
            height: 0.6em;
            background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%231A1817%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E");
            background-repeat: no-repeat;
            background-position: center;
            background-size: contain;
            transition: transform 300ms ease;
        }

        .custom-select.open .custom-select-trigger {
            border-bottom-color: var(--gold);
        }

        .custom-select.open .custom-select-trigger::after {
            transform: translateY(-50%) rotate(180deg);
            background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23ad9271%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E");
        }

        .custom-select-options {
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background: var(--white);
            border: 1px solid rgba(26, 24, 23, 0.05);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
            margin-top: 0.2rem;
            list-style: none;
            padding: 0.5rem 0;
            z-index: 10;
            opacity: 0;
            visibility: hidden;
            transform: translateY(10px);
            transition: all 300ms ease;
        }

        .custom-select.open .custom-select-options {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .custom-select-options li {
            padding: 0.8rem 1.2rem;
            font-family: var(--font-body);
            font-size: 0.85rem;
            color: var(--ink-soft);
            cursor: pointer;
            transition: background 250ms, color 250ms;
        }

        .custom-select-options li:hover {
            background: var(--cream);
            color: var(--gold-deep);
        }

        .submit-btn {
            width: 100%;
            padding: 1.1rem;
            background: var(--ink);
            border: 1px solid var(--ink);
            border-radius: 0;
            font-family: var(--font-body);
            font-size: .75rem;
            font-weight: 500;
            letter-spacing: .16em;
            text-transform: uppercase;
            color: var(--white);
            cursor: pointer;
            margin-top: 1.5rem;
            transition: all 300ms ease;
        }

        .submit-btn:hover {
            background: transparent;
            color: var(--ink);
        }

        /* ── FOOTER ───────────────────────────────── */
        footer {
            background: #110f0e;
            color: rgba(255, 255, 255, .75);
            padding: 4rem 5rem 2.5rem;
        }

        .footer-top {
            display: grid;
            grid-template-columns: 1.4fr 1fr 1fr 1fr;
            gap: 3rem;
            padding-bottom: 3rem;
            border-bottom: 1px solid rgba(255, 255, 255, .07);
        }

        .footer-brand {
            font-family: var(--font-heading);
            font-size: 1.1rem;
            letter-spacing: .2em;
            color: var(--white);
            margin-bottom: 1.2rem;
        }

        .footer-about {
            font-size: .86rem;
            line-height: 1.75;
            max-width: 32ch;
        }

        .footer-col-title {
            font-size: .67rem;
            letter-spacing: .18em;
            text-transform: uppercase;
            color: rgba(255, 255, 255, .95);
            margin-bottom: 1.4rem;
        }

        .footer-links {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: .7rem;
        }

        .footer-links a {
            font-size: .86rem;
            color: rgba(255, 255, 255, .7);
            transition: color 250ms;
        }

        .footer-links a:hover {
            color: var(--gold-light);
        }

        .footer-bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 2rem;
            font-size: .76rem;
        }

        .footer-social {
            display: flex;
            gap: 1.2rem;
        }

        .footer-social a {
            font-size: .76rem;
            letter-spacing: .1em;
            text-transform: uppercase;
            color: rgba(255, 255, 255, .7);
            transition: color 250ms;
        }

        .footer-social a:hover {
            color: var(--gold-light);
        }

        /* ── REVEAL ANIMATION ─────────────────────── */
        .reveal {
            opacity: 0;
            transform: translateY(28px);
            transition: opacity 700ms ease, transform 700ms ease;
        }

        .reveal.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .reveal-delay-1 {
            transition-delay: 120ms;
        }

        .reveal-delay-2 {
            transition-delay: 240ms;
        }

        .reveal-delay-3 {
            transition-delay: 360ms;
        }

        .reveal-delay-4 {
            transition-delay: 480ms;
        }

        /* ── FAQ ──────────────────────────────────── */
        .faq-section {
            background: var(--white);
            padding-bottom: 6rem;
        }

        .faq-container {
            max-width: 800px;
            margin: 0 auto;
            padding: 0 5rem;
        }

        .faq-item {
            border-bottom: 1px solid rgba(26, 24, 23, 0.1);
        }

        .faq-question {
            width: 100%;
            text-align: left;
            background: transparent;
            border: none;
            padding: 1.8rem 0;
            font-family: var(--font-heading);
            font-size: clamp(1.2rem, 2vw, 1.5rem);
            color: var(--ink);
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: color 300ms ease;
        }

        .faq-question:hover,
        .faq-item.active .faq-question {
            color: var(--gold);
        }

        .faq-icon {
            position: relative;
            width: 16px;
            height: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            margin-left: 1rem;
        }

        .faq-icon::before,
        .faq-icon::after {
            content: '';
            position: absolute;
            background: var(--ink);
            transition: transform 300ms ease, background 300ms ease;
        }

        .faq-question:hover .faq-icon::before,
        .faq-question:hover .faq-icon::after,
        .faq-item.active .faq-icon::before,
        .faq-item.active .faq-icon::after {
            background: var(--gold);
        }

        .faq-icon::before {
            width: 100%;
            height: 1px;
        }

        .faq-icon::after {
            width: 1px;
            height: 100%;
        }

        .faq-item.active .faq-icon::after {
            transform: rotate(90deg);
            opacity: 0;
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 400ms cubic-bezier(0.4, 0, 0.2, 1);
        }

        .faq-answer p {
            padding-bottom: 1.8rem;
            color: var(--ink-soft);
            font-size: 0.95rem;
            line-height: 1.7;
            max-width: 70ch;
        }

        /* ── INSTAGRAM ────────────────────────────── */
        .insta-section {
            background: var(--cream);
            padding: 5rem 0 0;
        }

        .insta-header {
            text-align: center;
            margin-bottom: 3rem;
        }

        .insta-title {
            font-family: var(--font-heading);
            font-size: clamp(2rem, 3vw, 2.5rem);
            color: var(--ink);
            font-weight: 400;
            font-style: italic;
            margin: 0.5rem 0 1rem;
        }

        .insta-link {
            font-family: var(--font-body);
            font-size: 0.8rem;
            letter-spacing: .15em;
            text-transform: uppercase;
            color: var(--gold);
            text-decoration: none;
            transition: color 250ms ease;
            position: relative;
            display: inline-block;
        }

        .insta-link::after {
            content: '';
            position: absolute;
            width: 100%;
            height: 1px;
            bottom: -4px;
            left: 0;
            background: currentColor;
            transform: scaleX(0);
            transform-origin: right;
            transition: transform 300ms ease;
        }

        .insta-link:hover::after {
            transform: scaleX(1);
            transform-origin: left;
        }

        .insta-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 0;
            width: 100%;
        }

        .insta-item {
            position: relative;
            aspect-ratio: 1;
            overflow: hidden;
            display: block;
            background: #1a1817; /* Dark background to prevent white/cream flashing during scale transitions */
            /* Fix for Safari/Chrome transform scale bleeding out of overflow: hidden */
            -webkit-backface-visibility: hidden;
            -moz-backface-visibility: hidden;
            backface-visibility: hidden;
            -webkit-transform: translate3d(0, 0, 0);
            -moz-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
        }

        .insta-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 600ms ease;
            will-change: transform;
            -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
            -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
        }

        .insta-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(26, 24, 23, 0.4);
            opacity: 0;
            transition: opacity 400ms ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .insta-overlay::after {
            content: '';
            width: 32px;
            height: 32px;
            background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22%23ffffff%22%20stroke-width%3D%221.5%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Crect%20x%3D%222%22%20y%3D%222%22%20width%3D%2220%22%20height%3D%2220%22%20rx%3D%225%22%20ry%3D%225%22%3E%3C%2Frect%3E%3Cpath%20d%3D%22M16%2011.37A4%204%200%201%201%2012.63%208%204%204%200%200%201%2016%2011.37z%22%3E%3C%2Fpath%3E%3Cline%20x1%3D%2217.5%22%20y1%3D%226.5%22%20x2%3D%2217.51%22%20y2%3D%226.5%22%3E%3C%2Fline%3E%3C%2Fsvg%3E");
            background-size: cover;
            opacity: 0;
            transform: translateY(10px);
            transition: all 400ms ease;
        }

        .insta-item:hover img {
            transform: scale(1.08);
        }

        .insta-item:hover .insta-overlay {
            opacity: 1;
        }

        .insta-item:hover .insta-overlay::after {
            opacity: 1;
            transform: translateY(0);
        }

        /* ── RESPONSIVE ───────────────────────────── */
        @media (max-width: 1100px) {

            .section {
                padding: 5.5rem 3rem;
            }

            .section-sm {
                padding: 3.5rem 3rem;
            }

            .intro {
                gap: 3rem;
            }

            .services-grid {
                grid-template-columns: 1fr 1fr;
            }

            .stats-section {
                grid-template-columns: repeat(2, 1fr);
                gap: 1.5rem;
                padding: 3.5rem 3rem;
            }

            .cta-section {
                padding: 5.5rem 3rem;
            }

            .cta-card {
                grid-template-columns: 1fr;
            }

            .cta-img {
                height: 380px;
                aspect-ratio: auto;
            }

            .cta-form-wrap {
                padding: 3.5rem;
            }

            .footer-top {
                grid-template-columns: 1fr 1fr;
            }

            .insta-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        @media (max-width: 768px) {
            .nav {
                padding: 0 1.25rem;
            }

            .nav-links {
                display: none;
            }

            .section {
                padding: 4rem 1.25rem;
            }

            .section-sm {
                padding: 2.8rem 1.25rem;
            }

            .hero-section {
                flex-direction: column;
                height: auto;
                min-height: auto;
            }

            .hero-image {
                height: 45svh;
                width: 100%;
                flex: none;
            }

            .hero-content {
                padding: 3rem 1.25rem 3.5rem;
                flex: none;
            }

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

            .intro-img-accent {
                display: none;
            }

            .intro-badge {
                left: 0;
                top: 1rem;
                padding: 0.8rem 1rem;
            }

            .intro-badge-num {
                font-size: 1.8rem;
            }

            .services-header {
                grid-template-columns: 1fr;
                gap: 1.5rem;
                margin-bottom: 2.5rem;
            }

            .services-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .stats-section {
                grid-template-columns: 1fr 1fr;
                padding: 2.8rem 1.25rem;
                gap: 1rem;
            }

            .cta-section {
                padding: 4rem 1.25rem;
            }

            .cta-img {
                display: none;
                /* Hide CTA image on mobile for better proportion */
            }

            .cta-form-wrap {
                padding: 2.5rem 1.25rem;
            }

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

            .footer-top {
                grid-template-columns: 1fr;
                gap: 2rem;
                padding-bottom: 2rem;
            }

            .footer-bottom {
                flex-direction: column;
                gap: 1.5rem;
                text-align: center;
            }

            .faq-container {
                padding: 0 1.25rem;
            }

            /* Gallery mobile styling */
            .gallery-slider {
                height: 50vh;
                min-height: 320px;
            }

            .gallery-overlay {
                left: 1.25rem;
                right: 1.25rem;
                bottom: 4.5rem;
                text-align: center;
            }

            .gallery-caption {
                max-width: 100%;
                margin: 0 auto;
                font-size: 1.5rem;
            }

            .gallery-nav {
                display: none;
                /* Swipe/dots focus on mobile */
            }

            .gallery-dots {
                bottom: 2rem;
                left: 50%;
                right: auto;
                transform: translateX(-50%);
            }

            .gallery-cta-bar {
                flex-direction: column;
                gap: 1.2rem;
                text-align: center;
                padding: 2rem 1.25rem;
            }

            .gallery-cta-text {
                font-size: 1.1rem;
            }

            /* Instagram mobile styling */
            .insta-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .insta-grid .insta-item:nth-child(5) {
                display: none;
                /* Make it a 2x2 grid */
            }

            /* Hide desktop CTA & show hamburger */
            .nav-cta {
                display: none;
            }

            .nav-toggle {
                display: flex;
            }
        }

        @media (max-width: 480px) {
            .stats-section {
                grid-template-columns: 1fr;
            }

            .stat-card {
                padding: 2.5rem 1.8rem;
            }
        }

        /* ── Hamburger Menu Toggle ── */
        .nav-toggle {
            display: none;
            flex-direction: column;
            justify-content: space-between;
            width: 26px;
            height: 18px;
            background: transparent;
            border: none;
            cursor: pointer;
            padding: 0;
            z-index: 150;
            position: relative;
        }

        .hamburger-bar {
            width: 100%;
            height: 2px;
            background-color: var(--ink);
            border-radius: 2px;
            transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                width 0.3s ease,
                background-color 0.4s ease;
            transform-origin: right center;
        }

        /* Micro-interaction on hover */
        @media (hover: hover) {
            .nav-toggle:hover .hamburger-bar:nth-child(2) {
                width: 70%;
            }

            .nav-toggle:hover .hamburger-bar:nth-child(1) {
                width: 85%;
            }
        }

        /* Active State for Hamburger */
        .nav-toggle.active .hamburger-bar:nth-child(1) {
            transform: rotate(-45deg) translate(-2px, -3px);
            width: 100%;
            background-color: var(--ink);
        }

        .nav-toggle.active .hamburger-bar:nth-child(2) {
            opacity: 0;
            transform: scaleX(0);
        }

        .nav-toggle.active .hamburger-bar:nth-child(3) {
            transform: rotate(45deg) translate(-2px, 3px);
            width: 100%;
            background-color: var(--ink);
        }

        /* Mobile Menu Overlay */
        .mobile-menu-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100svh;
            background: rgba(250, 248, 245, 0.96);
            /* Matches --cream */
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            z-index: 120;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            clip-path: circle(0px at calc(100% - 2.5rem) 38px);
            transition: clip-path 0.85s cubic-bezier(0.77, 0, 0.175, 1);
            pointer-events: none;
            padding: 2rem;
        }

        .mobile-menu-overlay.active {
            clip-path: circle(150% at calc(100% - 2.5rem) 38px);
            pointer-events: all;
        }

        .mobile-menu-links {
            list-style: none;
            text-align: center;
            display: flex;
            flex-direction: column;
            gap: 2rem;
            padding: 0;
            margin-bottom: 3rem;
        }

        .mobile-menu-links li {
            overflow: hidden;
        }

        .mobile-menu-links a {
            font-family: var(--font-heading);
            font-size: clamp(1.8rem, 6vw, 2.4rem);
            font-weight: 400;
            letter-spacing: 0.12em;
            color: var(--ink);
            text-transform: uppercase;
            display: inline-block;
            transform: translateY(105%);
            opacity: 0;
            transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1),
                opacity 0.6s ease;
        }

        /* Staggered text animations */
        .mobile-menu-overlay.active .mobile-menu-links a {
            transform: translateY(0);
            opacity: 1;
        }

        .mobile-menu-overlay.active .mobile-menu-links li:nth-child(1) a {
            transition-delay: 0.15s;
        }

        .mobile-menu-overlay.active .mobile-menu-links li:nth-child(2) a {
            transition-delay: 0.22s;
        }

        .mobile-menu-overlay.active .mobile-menu-links li:nth-child(3) a {
            transition-delay: 0.29s;
        }

        .mobile-menu-overlay.active .mobile-menu-links li:nth-child(4) a {
            transition-delay: 0.36s;
        }

        .mobile-menu-links a:hover {
            color: var(--gold);
            transform: translateY(-2px);
        }

        .mobile-menu-cta-wrap {
            margin-top: 1rem;
        }

        .mobile-menu-cta {
            display: inline-block !important;
            font-family: var(--font-body) !important;
            font-size: 0.85rem !important;
            font-weight: 500 !important;
            letter-spacing: 2px !important;
            text-transform: uppercase !important;
            padding: 1rem 2.8rem !important;
            background: var(--ink) !important;
            color: var(--white) !important;
            border: 1px solid var(--ink) !important;
            border-radius: 2px;
            transform: translateY(105%) !important;
            opacity: 0 !important;
            transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.36s,
                opacity 0.6s ease 0.36s,
                background 250ms ease,
                color 250ms ease !important;
        }

        .mobile-menu-overlay.active .mobile-menu-cta {
            transform: translateY(0) !important;
            opacity: 1 !important;
        }

        .mobile-menu-cta:hover {
            background: transparent !important;
            color: var(--ink) !important;
        }

        /* Mobile Menu Footer Details */
        .mobile-menu-footer {
            text-align: center;
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.8s ease 0.45s, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.45s;
            max-width: 320px;
            width: 100%;
        }

        .mobile-menu-overlay.active .mobile-menu-footer {
            opacity: 1;
            transform: translateY(0);
        }

        .mobile-menu-divider {
            width: 40px;
            height: 1px;
            background: var(--gold);
            margin: 0 auto 1.5rem;
        }

        .mobile-menu-info {
            font-size: 0.75rem;
            font-weight: 500;
            color: var(--ink-soft);
            letter-spacing: 0.1em;
            margin-bottom: 0.5rem;
        }

        .mobile-menu-info a {
            transition: color 250ms ease;
        }

        .mobile-menu-info a:hover {
            color: var(--gold);
        }

        .mobile-menu-address {
            font-size: 0.7rem;
            color: var(--ink-light);
            line-height: 1.5;
            margin-bottom: 1.5rem;
        }

        .mobile-menu-socials {
            display: flex;
            justify-content: center;
            gap: 1.5rem;
        }

        .mobile-menu-socials a {
            font-size: 0.7rem;
            font-weight: 500;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            color: var(--gold-deep);
            transition: color 250ms ease;
        }

        .mobile-menu-socials a:hover {
            color: var(--ink);
        }

        /* User Requested Styles */
        body {
            font-family: var(--font-body);
            font-weight: 300;
        }

        h1,
        h2,
        h3,
        .nav-logo {
            font-family: var(--font-heading);
            font-weight: 400;
        }

        h1 em,
        h2 em,
        .hero-title em {
            font-family: var(--font-accent);
            font-size: 1.4em;
            font-style: normal;
        }

        .nav-links a,
        .hero-btn,
        .nav-cta,
        .btn {
            font-family: var(--font-body);
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 2px;
            font-size: 0.85rem;
        }

        .marquee-segment span,
        .marquee-banner p {
            font-family: var(--font-heading);
            font-size: 1.2rem;
            letter-spacing: 1px;
        }

        .nav-logo,
        .nav-links a,
        .nav-cta {
            color: #111 !important;
        }

        .nav-cta {
            border-color: #111 !important;
        }

        .nav-cta:hover {
            background: #111 !important;
            color: #fff !important;
            border-color: #111 !important;
        }

        .nav {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        }

        @media (max-width: 900px) {
            .nav-links {
                display: none !important;
            }

            .nav-cta {
                display: none !important;
            }

            .nav-toggle {
                display: flex !important;
            }
        }

        /* ── Floating WhatsApp Button ── */
        .floating-whatsapp {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background-color: var(--gold-deep);
            /* Elegant deep gold */
            color: var(--white);
            padding: 12px 22px;
            border-radius: 50px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
            z-index: 999;
            display: flex;
            align-items: center;
            gap: 10px;
            font-family: var(--font-body);
            font-size: 0.8rem;
            font-weight: 500;
            letter-spacing: 1px;
            text-transform: uppercase;
            text-decoration: none;
            /* transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1),
                background-color 0.3s ease; */
            transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1),
                background-color 0.3s ease,
                opacity 0.3s ease;
        }

        .floating-whatsapp:hover {
            transform: translateY(-4px);
            box-shadow: 0 15px 35px rgba(123, 110, 100, 0.35);
            background-color: var(--ink);
            /* Hover color: Dark anthracite/black */
            color: var(--white) !important;
        }

        .floating-whatsapp.is-hidden {
            opacity: 0 !important;
            pointer-events: none !important;
            transform: translateY(20px) !important;
        }

        .whatsapp-icon {
            width: 16px;
            height: 16px;
            fill: currentColor;
        }

        @media (max-width: 768px) {
            .floating-whatsapp {
                bottom: 20px;
                right: 20px;
                padding: 14px 26px;
                /* Larger padding for mobile touch */
                font-size: 0.9rem;
                /* Larger font size */
                box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
            }

            .whatsapp-icon {
                width: 18px;
                height: 18px;
            }
        }