/* ===================================================
   MAYA — Ultra-Luxury Travel Concierge
   Cinematic · Editorial · Bespoke
   =================================================== */

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

:root {
    /* Palette */
    --ivory: #FAF8F5;
    --champagne: #F3EDE5;
    --sand: #E8DDD1;
    --sand-dark: #D4C8B8;
    --warm-white: #FDFCFA;
    --navy: #0C1F2E;
    --navy-mid: #152F42;
    --navy-light: #1E3F56;
    --charcoal: #171717;
    --text: #2A2A2A;
    --text-mid: #5C5C5C;
    --text-light: #8A8A8A;
    --gold: #C2A46B;
    --gold-light: #C2A46B;
    --gold-muted: rgba(194, 164, 107, 0.25);
    --white: #FFFFFF;

    /* Type */
    --serif: 'Cormorant Garamond', Georgia, serif;
    --sans: 'Montserrat', 'Helvetica Neue', sans-serif;

    /* Layout */
    --nav-h: 88px;
    --section-v: 180px;
    --container: 1320px;
    --gutter: 72px;
}

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

body {
    font-family: var(--sans);
    font-weight: 300;
    color: var(--text);
    background: var(--champagne);
    line-height: 1.7;
    overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }

.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--gutter);
}

/* ===== SHARED TYPOGRAPHY ===== */
.overline {
    display: block;
    font-family: var(--sans);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 22px;
}

.overline.light { color: var(--gold-light); }

.heading-lg {
    font-family: var(--serif);
    font-size: 60px;
    font-weight: 500;
    color: #2A2A2A;
    line-height: 1.15;
    margin-bottom: 24px;
    letter-spacing: 0px;
}

.heading-lg.light { color: var(--white); }

.heading-lg em {
    font-style: italic;
    font-weight: 300;
}

.accent-line {
    width: 48px;
    height: 1px;
    background: var(--gold);
    margin-bottom: 34px;
}

.accent-line.center {
    margin-left: auto;
    margin-right: auto;
}

.section-head {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 90px;
}

.section-head .heading-lg { margin-bottom: 44px; }
.archetype-head .heading-lg { margin-bottom: 44px; }

.head-desc {
    font-size: 15px;
    color: var(--text-mid);
    line-height: 1.9;
    font-weight: 300;
}

.lead-text {
    font-family: var(--sans);
    font-size: 15px;
    font-weight: 300;
    color: var(--text-mid);
    line-height: 2;
    margin-bottom: 30px;
}

.body-text {
    font-size: 14px;
    color: var(--text-mid);
    line-height: 2;
    margin-bottom: 16px;
}

/* ===== PRELOADER ===== */
.preloader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: #F7F4F0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1),
                visibility 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    padding: 0;
    margin: 0;
}

.preloader-logo {
    display: block;
    max-width: 420px;
    width: 100%;
    height: auto;
    background: transparent;
    border: none;
    box-shadow: none;
    outline: none;
    mix-blend-mode: multiply;
    opacity: 0;
    animation: preloaderLogoIn 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s forwards;
}

@keyframes preloaderLogoIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.preloader-bar { display: none; }
.preloader-fill { display: none; }

@media (max-width: 540px) {
    .preloader-logo { max-width: 260px; }
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--nav-h);
    z-index: 1000;
    background: transparent;
    transition: all 0.5s ease;
}

.navbar.scrolled {
    background: rgba(243, 237, 229, 0.96);
    backdrop-filter: blur(24px);
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.04);
    height: 72px;
}

.nav-container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--gutter);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    line-height: 0;
}

/* Logo is already gold + transparent — no filter needed in either state */
.nav-logo-img {
    display: block;
    height: 96px;
    width: auto;
    opacity: 0.92;
    filter: brightness(0) invert(50%) sepia(100%) saturate(150%) brightness(107%);
    transition: opacity 0.5s ease;
}

.navbar.scrolled .nav-logo-img {
    opacity: 1;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 42px;
    align-items: center;
}

.nav-links a {
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.6);
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.4s ease;
}

.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
    border: 1px solid rgba(255,255,255,0.25) !important;
    padding: 10px 26px !important;
    letter-spacing: 2px !important;
    transition: all 0.4s ease !important;
}

.nav-cta::after { display: none !important; }
.nav-cta:hover { background: rgba(255,255,255,0.08) !important; border-color: rgba(255,255,255,0.5) !important; }

.navbar.scrolled .nav-links a { color: var(--text-light); }
.navbar.scrolled .nav-links a:hover { color: var(--charcoal); }

.navbar.scrolled .nav-cta {
    border-color: var(--charcoal) !important;
    color: var(--charcoal) !important;
}

.navbar.scrolled .nav-cta:hover {
    background: var(--charcoal) !important;
    color: var(--white) !important;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 7px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    z-index: 1001;
}

.nav-toggle span {
    width: 28px;
    height: 1px;
    background: var(--white);
    transition: all 0.35s ease;
    display: block;
}

.navbar.scrolled .nav-toggle span { background: var(--charcoal); }

/* ===== HERO ===== */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 860px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    overflow: hidden;
}

.hero-media {
    position: absolute;
    inset: 0;
}

.hero-media video,
.hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg,
            rgba(8, 48, 56, 0.38) 0%,
            rgba(8, 48, 56, 0.28) 45%,
            rgba(8, 48, 56, 0.50) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    max-width: 900px;
    width: 100%;
    padding: calc(var(--nav-h) + 15vh) 40px 0;
}

.hero-line {
    width: 1px;
    height: 60px;
    background: var(--gold-light);
    margin: 0 auto 52px;
    opacity: 0;
    animation: fadeDown 1s 0.2s forwards;
}

.hero-title {
    font-family: var(--sans);
    font-size: clamp(36px, 5.8vw, 88px);
    font-weight: 200;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    line-height: 1.4;
    margin-bottom: 64px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.ht-line {
    display: block;
    color: rgba(255, 255, 255, 0.92);
    clip-path: inset(0 100% 0 0);
    white-space: nowrap;
}

.ht-line:nth-child(1) {
    animation: typeReveal 2s linear 0.7s forwards;
}

.ht-line:nth-child(2) {
    animation: typeReveal 2s linear 1.4s forwards;
}

@keyframes typeReveal {
    from { clip-path: inset(0 100% 0 0); }
    to   { clip-path: inset(0 0% 0 0); }
}

.hero-subtitle {
    font-size: 20px;
    font-weight: 300;
    letter-spacing: 2.5px;
    color: #EDD07A;
    margin-bottom: 56px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 1s 0.9s forwards;
}

.btn-hero {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    font-family: var(--sans);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--white);
    padding: 20px 52px;
    border: 1px solid rgba(255,255,255,0.3);
    background: transparent;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.5s ease;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 1s 1.1s forwards;
}

.btn-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--white);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 0;
}

.btn-hero:hover::before { transform: scaleX(1); }
.btn-hero:hover { color: var(--navy); border-color: var(--white); }
.btn-hero span, .btn-hero svg { position: relative; z-index: 1; }
.btn-hero svg { transition: transform 0.3s ease; }
.btn-hero:hover svg { transform: translateX(4px); }

.hero-bottom {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    opacity: 0;
    animation: fadeUp 1s 1.6s forwards;
}

.hero-scroll {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

.scroll-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold-light);
    animation: pulse 2s infinite;
}

.hero-scroll span {
    font-size: 9px;
    font-weight: 400;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
}

@keyframes fadeUp {
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeDown {
    to { opacity: 0.6; }
}

@keyframes pulse {
    0%, 100% { opacity: 0.4; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.6); }
}

/* ===== ABOUT ===== */
.about {
    padding: var(--section-v) 0;
    background: var(--champagne);
}

.about-inner {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 110px;
    align-items: center;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--gutter);
}

.about-image { position: relative; }

.about-img-wrap {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3 / 4;
}

.about-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: contrast(1.04) brightness(0.97);
}

.about-image:hover .about-img-wrap img {
    transform: scale(1.04);
}

.about-img-border {
    position: absolute;
    top: -20px;
    left: -20px;
    right: 20px;
    bottom: 20px;
    border: 1px solid var(--gold-muted);
    z-index: -1;
}

.about-img-badge {
    position: absolute;
    bottom: -28px;
    right: -28px;
    background: var(--charcoal);
    padding: 30px 34px;
    display: flex;
    align-items: center;
    gap: 16px;
    z-index: 2;
}

.badge-num {
    font-family: var(--serif);
    font-size: 40px;
    font-weight: 300;
    color: var(--gold-light);
    line-height: 1;
}

.badge-txt {
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    line-height: 1.6;
}

.about-text .heading-lg { margin-bottom: 40px; }

.about-metrics {
    display: flex;
    align-items: center;
    gap: 0;
    margin-top: 52px;
    padding-top: 48px;
    border-top: 1px solid var(--sand);
}

.metric { text-align: center; flex: 1; }

.metric-num {
    font-family: var(--serif);
    font-size: 52px;
    font-weight: 300;
    color: var(--navy);
    line-height: 1;
}

.metric-sym {
    font-family: var(--serif);
    font-size: 28px;
    color: var(--gold);
}

.metric-label {
    display: block;
    font-size: 9px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-light);
    margin-top: 12px;
}

.metric-divider {
    width: 1px;
    height: 48px;
    background: var(--sand);
}

/* ===== CINEMATIC BREAK ===== */
.cinematic-break {
    position: relative;
    height: 70vh;
    min-height: 500px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
}

.cinematic-break > img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 120%;
    object-fit: cover;
    object-position: center 40%;
}

.cinematic-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(12,31,46,0.7) 0%, transparent 60%);
}

.cinematic-caption {
    position: relative;
    z-index: 2;
    padding: 0 var(--gutter) 140px;
    max-width: var(--container);
    width: 100%;
    margin: 0 auto;
}

.cinematic-caption .overline { margin-bottom: 14px; }

.cinematic-caption h3 {
    font-family: var(--serif);
    font-size: 46px;
    font-weight: 300;
    color: var(--white);
    line-height: 1.2;
}

/* ===== SERVICES ===== */
.services {
    padding: var(--section-v) 0 80px;
    background: var(--champagne);
}

/* Accordion two-column layout */
.services .container {
    display: flex;
    flex-direction: column;
}

.services .container > .section-head {
    flex-shrink: 0;
}

.accordion-col-left,
.accordion-col-right {
    /* laid out via the wrapper below */
}

/* We need a wrapper — injected via the existing container flex */
.services .container {
    display: block;
}

.services .container::after {
    content: '';
    display: table;
    clear: both;
}

/* Two-column accordion grid using CSS grid on a wrapping approach */
.accordion-col {
    width: calc(50% - 16px);
    float: left;
}

.accordion-col-left {
    margin-right: 16px;
}

.accordion-col-right {
    margin-left: 16px;
}

/* Services heading override */
.services .heading-lg {
    font-family: var(--sans);
    font-weight: 200;
    letter-spacing: 3px;
    text-transform: uppercase;
    line-height: 1.3;
    color: #2A2A2A;
}

/* Individual accordion item */
.acc-item {
    background: var(--white);
    margin-bottom: 12px;
    position: relative;
    overflow: hidden;
    transition: box-shadow 0.4s ease, border-color 0.4s ease;
    border: 1px solid transparent;
}

.acc-item.active {
    border-color: var(--sand);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.05);
}

/* Gold accent top line on active */
.acc-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    transform: scaleX(0);
    transition: transform 0.4s ease;
    z-index: 2;
}

.acc-item.active::before {
    transform: scaleX(1);
}

/* Trigger / Header */
.acc-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 22px;
    padding: 32px 36px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: var(--sans);
    transition: all 0.3s ease;
}

.acc-trigger:hover {
    background: rgba(176, 141, 87, 0.04);
}

.acc-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--sand);
    border-radius: 50%;
    transition: all 0.4s ease;
}

.acc-icon i {
    font-size: 17px;
    color: var(--gold);
    transition: all 0.4s ease;
}

.acc-item.active .acc-icon {
    background: var(--charcoal);
    border-color: var(--charcoal);
    box-shadow: 0 6px 24px rgba(12, 31, 46, 0.12);
}

.acc-item.active .acc-icon i {
    color: var(--gold-light);
}

.acc-title {
    flex: 1;
    font-family: var(--serif);
    font-size: 21px;
    font-weight: 500;
    color: var(--text);
    letter-spacing: 0.2px;
    transition: color 0.3s ease;
}

.acc-item.active .acc-title {
    color: var(--text);
}

/* Plus / Minus toggle */
.acc-plus {
    width: 20px;
    height: 20px;
    position: relative;
    flex-shrink: 0;
}

.acc-plus span {
    position: absolute;
    background: var(--gold);
    transition: all 0.35s ease;
}

.acc-plus span:first-child {
    width: 14px;
    height: 1px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.acc-plus span:last-child {
    width: 1px;
    height: 14px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.acc-item.active .acc-plus span:last-child {
    transform: translate(-50%, -50%) rotate(90deg);
    opacity: 0;
}

/* Panel — collapsed by default */
.acc-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.acc-panel-inner {
    padding: 0 36px 40px 110px;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.35s ease 0.1s, transform 0.35s ease 0.1s;
}

.acc-item.active .acc-panel-inner {
    opacity: 1;
    transform: translateY(0);
}

.acc-lead {
    font-family: var(--serif);
    font-size: 18px;
    font-weight: 400;
    font-style: italic;
    color: var(--text);
    line-height: 1.65;
    margin-bottom: 16px;
}

.acc-body {
    font-size: 13px;
    font-weight: 300;
    color: var(--text-mid);
    line-height: 2;
}

/* Subtle left gold bar on active */
.acc-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: var(--gold);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.4s ease;
}

.acc-item.active::after {
    transform: scaleY(1);
}

/* ===== GALLERY ===== */
.gallery {
    padding: var(--section-v) 0 0;
    background: var(--ivory);
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    grid-template-rows: 320px 320px;
    gap: 6px;
    margin-top: 0;
}

.g-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.g-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.g-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(12,31,46,0.65) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

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

.g-caption {
    position: absolute;
    bottom: 28px;
    left: 30px;
    z-index: 2;
    opacity: 0;
    transform: translateY(14px);
    transition: all 0.5s ease 0.1s;
}

.g-item:hover .g-caption {
    opacity: 1;
    transform: translateY(0);
}

.g-caption span {
    display: block;
    font-family: var(--serif);
    font-size: 26px;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 2px;
}

.g-caption em {
    font-family: var(--sans);
    font-size: 10px;
    font-weight: 400;
    font-style: normal;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold-light);
}

.g-wide {
    grid-column: span 2;
}

.g-tall {
    grid-row: span 2;
}

/* ===== QUOTE ===== */
.quote-section {
    position: relative;
    height: 550px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quote-section > img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 130%;
    object-fit: cover;
}

.quote-overlay {
    position: absolute;
    inset: 0;
    background: rgba(12, 31, 46, 0.7);
}

.quote-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 720px;
    padding: 0 40px;
}

.quote-mark {
    color: var(--gold-muted);
    margin-bottom: 28px;
}

.quote-content blockquote {
    font-family: var(--serif);
    font-size: 38px;
    font-weight: 300;
    font-style: italic;
    line-height: 1.45;
    color: var(--white);
    margin-bottom: 28px;
}

.quote-content cite {
    font-family: var(--sans);
    font-size: 10px;
    font-weight: 500;
    font-style: normal;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold-light);
}

/* ===== CONNECT ===== */
.connect {
    padding: var(--section-v) 0;
    background: var(--ivory);
}

.social-row {
    display: flex;
    justify-content: center;
    gap: 64px;
}

.soc-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.soc-circle {
    width: 92px;
    height: 92px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--sand);
    border-radius: 50%;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.soc-circle::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--charcoal);
    border-radius: 50%;
    transform: scale(0);
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.soc-circle i {
    font-size: 24px;
    color: var(--charcoal);
    position: relative;
    z-index: 1;
    transition: color 0.4s ease;
}

.soc-link span {
    font-size: 9px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-light);
    transition: color 0.3s ease;
}

.soc-link:hover .soc-circle {
    border-color: var(--charcoal);
    transform: translateY(-8px);
    box-shadow: 0 18px 50px rgba(26, 26, 26, 0.12);
}

.soc-link:hover .soc-circle::before { transform: scale(1); }
.soc-link:hover .soc-circle i { color: var(--gold-light); }
.soc-link:hover span { color: var(--text); }

/* ===== CONTACT ===== */
.contact {
    position: relative;
    padding: var(--section-v) 0;
    overflow: hidden;
}

.contact-bg {
    position: absolute;
    inset: 0;
}

.contact-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(12,31,46,0.94) 0%, rgba(12,31,46,0.85) 100%);
}

.contact-container {
    position: relative;
    z-index: 2;
}

.contact .container {
    position: relative;
    z-index: 2;
}

.contact-left,
.contact-right {
    /* grid children */
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: start;
}

.contact-desc {
    font-size: 15px;
    color: rgba(255,255,255,0.55);
    line-height: 2;
    margin-bottom: 48px;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.ci-row {
    display: flex;
    align-items: center;
    gap: 18px;
    font-size: 13px;
    font-weight: 300;
    color: rgba(255,255,255,0.65);
}

.ci-icon {
    width: 46px;
    height: 46px;
    min-width: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50%;
    color: var(--gold-light);
    font-size: 13px;
}

.form-card {
    background: rgba(255,255,255,0.04);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,0.06);
    padding: 56px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.fg { position: relative; }

.fg input,
.fg textarea {
    width: 100%;
    padding: 20px 0;
    font-family: var(--sans);
    font-size: 13px;
    font-weight: 300;
    color: var(--white);
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    outline: none;
    transition: border-color 0.4s ease;
    resize: none;
}

.fg input::placeholder,
.fg textarea::placeholder { color: transparent; }

.fg input:focus,
.fg textarea:focus { border-color: var(--gold); }

.fg label {
    position: absolute;
    top: 20px;
    left: 0;
    font-size: 12px;
    font-weight: 300;
    color: rgba(255,255,255,0.35);
    pointer-events: none;
    transition: all 0.35s ease;
}

.fg input:focus ~ label,
.fg input:not(:placeholder-shown) ~ label,
.fg textarea:focus ~ label,
.fg textarea:not(:placeholder-shown) ~ label {
    top: -6px;
    font-size: 9px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold-light);
}

.btn-submit {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: var(--sans);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--navy);
    background: var(--gold);
    border: none;
    padding: 20px 48px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.5s ease;
    margin-top: 8px;
}

.btn-submit::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gold-light);
    transform: translateX(-100%);
    transition: transform 0.5s ease;
    z-index: 0;
}

.btn-submit:hover::before { transform: translateX(0); }
.btn-submit span, .btn-submit svg { position: relative; z-index: 1; }

.btn-submit:hover {
    box-shadow: 0 12px 40px rgba(176, 141, 87, 0.3);
    transform: translateY(-2px);
}

.form-success {
    display: none;
    text-align: center;
    padding: 60px 20px;
}

.form-success.active {
    display: block;
    animation: fadeUp 0.7s forwards;
}

.success-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 24px;
    border: 1px solid var(--gold-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.success-icon i {
    font-size: 22px;
    color: var(--gold-light);
}

.form-success h3 {
    font-family: var(--serif);
    font-size: 34px;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 14px;
}

.form-success p {
    font-size: 13px;
    color: rgba(255,255,255,0.55);
    line-height: 1.9;
}

/* ===== FOOTER ===== */
.footer {
    padding: 48px 0;
    background: var(--champagne);
}

.footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 26px;
}

.footer-logo {
    font-family: var(--serif);
    font-size: 18px;
    font-weight: 400;
    color: var(--gold);
    letter-spacing: 4px;
}

.footer-social {
    display: flex;
    gap: 24px;
}

.footer-social a {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--sand-dark);
    border-radius: 50%;
    color: var(--text-light);
    font-size: 15px;
    transition: all 0.4s ease;
}

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

.footer-copy {
    font-size: 10px;
    color: var(--text-light);
    letter-spacing: 2px;
}

/* ===== SCROLL REVEAL ===== */
.reveal {
    opacity: 0;
    transform: translateY(60px);
    transition: all 1.1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

/* ===== APPOINTMENT ===== */
.appointment {
    position: relative;
    padding: var(--section-v) 0;
    overflow: hidden;
}

.appt-bg {
    position: absolute;
    inset: 0;
}

.appt-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.appt-bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(12,31,46,0.95) 0%, rgba(12,31,46,0.87) 100%);
}

.appt-container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: start;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--gutter);
}

.appt-left { padding-top: 8px; }

.appt-desc {
    font-size: 15px;
    color: rgba(255,255,255,0.55);
    line-height: 2;
    margin-bottom: 0;
}

.appt-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 40px;
}

.appt-full { grid-column: 1 / -1; }

.appt-hint {
    font-family: var(--sans);
    font-size: 10px;
    font-weight: 300;
    color: rgba(255,255,255,0.28);
    letter-spacing: 0.3px;
    padding-bottom: 12px;
}

/* ===== AGENT CONTACT ===== */
.agent-contact {
    padding: var(--section-v) 0;
    background: var(--ivory);
    text-align: center;
}

.agent-contact-inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--gutter);
}

.agent-contact-list {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 72px;
    margin-top: 8px;
    flex-wrap: wrap;
}

.agent-contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    color: var(--text);
    text-decoration: none;
    transition: color 0.35s ease;
}

.agent-contact-item:hover {
    color: var(--gold);
}

.agent-contact-icon {
    width: 54px;
    height: 54px;
    min-width: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--sand);
    border-radius: 50%;
    color: var(--gold);
    font-size: 15px;
    transition: background 0.35s ease, border-color 0.35s ease, color 0.35s ease;
}

.agent-contact-item:hover .agent-contact-icon {
    background: var(--charcoal);
    border-color: var(--charcoal);
    color: var(--gold-light);
}

.agent-contact-item span {
    font-family: var(--sans);
    font-size: 15px;
    font-weight: 300;
    letter-spacing: 0.5px;
    color: var(--text-mid);
    transition: color 0.35s ease;
}

.agent-contact-item:hover span {
    color: var(--text);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
    .about-inner { gap: 70px; }

    .gallery-grid {
        grid-template-rows: 280px 280px;
    }
}

@media (max-width: 1024px) {
    :root {
        --gutter: 50px;
        --section-v: 140px;
    }

    .heading-lg { font-size: 50px; }
    .appointment .heading-lg { font-size: 57px; }
    .contact-container { gap: 60px; }
}

@media (max-width: 900px) {
    :root {
        --gutter: 40px;
        --section-v: 120px;
    }

    /* Nav mobile */
    .nav-logo-img { height: 76px; }
    .nav-toggle { display: flex; }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 340px;
        height: 100vh;
        flex-direction: column;
        background: var(--charcoal);
        padding: 120px 50px;
        gap: 0;
        transition: right 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        box-shadow: -20px 0 80px rgba(0, 0, 0, 0.4);
    }

    .nav-links.open { right: 0; }

    .nav-links li { border-bottom: 1px solid rgba(255,255,255,0.05); }

    .nav-links a {
        color: rgba(255,255,255,0.5) !important;
        font-size: 11px;
        display: block;
        padding: 22px 0;
    }

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

    .nav-cta {
        border: none !important;
        padding: 22px 0 !important;
        color: var(--gold-light) !important;
    }

    .nav-toggle.open span:nth-child(1) {
        transform: rotate(45deg) translate(4px, 4px);
    }

    .nav-toggle.open span:nth-child(2) {
        transform: rotate(-45deg) translate(4px, -4px);
    }

    .nav-toggle.open span { background: var(--white) !important; }

    .heading-lg { font-size: 44px; }

    .about-inner {
        grid-template-columns: 1fr 1fr;
        gap: 50px;
    }

    .contact-container {
        grid-template-columns: 1fr 1fr;
        gap: 50px;
    }

    .gallery-grid {
        grid-template-rows: 240px 240px;
    }

    .cinematic-caption h3 { font-size: 36px; }

    .acc-trigger { padding: 28px 30px; gap: 18px; }
    .acc-panel-inner { padding: 0 30px 34px 100px; }
    .acc-icon { width: 48px; height: 48px; min-width: 48px; }
    .acc-icon i { font-size: 16px; }
    .acc-title { font-size: 19px; }
}

@media (max-width: 768px) {
    :root {
        --gutter: 30px;
        --section-v: 100px;
    }

    .hero { min-height: 740px; }
    .hero-content { padding-top: calc(var(--nav-h) + 10vh); }
    .hero-title { font-size: 36px; letter-spacing: 0.16em; }
    .heading-lg { font-size: 40px; }
    .appointment .heading-lg { font-size: 45px; }
    .lead-text { font-size: 20px; }

    .about-inner {
        grid-template-columns: 1fr;
        gap: 56px;
    }

    .about-image {
        max-width: 400px;
        margin: 0 auto;
    }

    .about-img-border {
        top: -14px;
        left: -14px;
        right: 14px;
        bottom: 14px;
    }

    .about-img-badge {
        bottom: -18px;
        right: -14px;
        padding: 22px 26px;
    }

    .badge-num { font-size: 32px; }

    /* Accordion stays two-column on tablet */
    .accordion-col {
        width: calc(50% - 10px);
    }

    .accordion-col-left { margin-right: 10px; }
    .accordion-col-right { margin-left: 10px; }

    .acc-trigger { padding: 24px 26px; gap: 16px; }
    .acc-panel-inner { padding: 0 26px 30px 90px; }
    .acc-icon { width: 44px; height: 44px; min-width: 44px; }
    .acc-icon i { font-size: 15px; }
    .acc-title { font-size: 18px; }
    .acc-lead { font-size: 16px; }
    .acc-body { font-size: 12px; }
    .acc-item { margin-bottom: 10px; }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 220px 220px 220px;
    }

    .g-wide { grid-column: span 2; }

    .g-tall { grid-row: span 1; }

    .social-row { gap: 36px; }
    .soc-circle { width: 76px; height: 76px; }
    .soc-circle i { font-size: 21px; }

    .appt-container { grid-template-columns: 1fr; gap: 52px; }
    .appt-grid { grid-template-columns: 1fr; }

    .contact-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .form-card { padding: 40px; }

    .cinematic-break { height: 50vh; min-height: 380px; }
    .cinematic-caption h3 { font-size: 30px; }
    .cinematic-caption { padding-bottom: 50px; }

    .quote-section { height: 440px; }
    .quote-content blockquote { font-size: 30px; }

    .metric-num { font-size: 42px; }

    .agent-contact-list { gap: 44px; }
    .agent-contact-item span { font-size: 14px; }
}

@media (max-width: 540px) {
    :root {
        --gutter: 24px;
        --section-v: 88px;
    }

    .nav-logo-img { height: 62px; }

    .hero { min-height: 680px; }
    .hero-content { padding-top: calc(var(--nav-h) + 8vh); }
    .hero-title { font-size: 26px; letter-spacing: 0.14em; margin-bottom: 48px; }
    .hero-subtitle { font-size: 16px; letter-spacing: 1.5px; }

    .agent-contact-list { flex-direction: column; gap: 32px; align-items: flex-start; padding: 0 8px; }
    .agent-contact-item span { font-size: 13px; }
    .hero-line { height: 40px; margin-bottom: 36px; }

    .btn-hero { padding: 16px 38px; font-size: 9px; }

    .heading-lg { font-size: 34px; }
    .appointment .heading-lg { font-size: 38px; }
    .lead-text { font-size: 18px; }

    .about-metrics { gap: 0; }
    .metric-num { font-size: 36px; }
    .metric-divider { height: 36px; }

    .appt-full { grid-column: 1; }

    /* Accordion stays two-column at small sizes */
    .accordion-col {
        width: calc(50% - 8px);
    }

    .accordion-col-left { margin-right: 8px; }
    .accordion-col-right { margin-left: 8px; }

    .acc-trigger { padding: 20px 20px; gap: 12px; }
    .acc-panel-inner { padding: 0 20px 26px 72px; }
    .acc-icon { width: 38px; height: 38px; min-width: 38px; }
    .acc-icon i { font-size: 13px; }
    .acc-title { font-size: 15px; }
    .acc-lead { font-size: 14px; }
    .acc-body { font-size: 11px; line-height: 1.85; }
    .acc-item { margin-bottom: 8px; }
    .acc-plus { width: 16px; height: 16px; }
    .acc-plus span:first-child { width: 10px; }
    .acc-plus span:last-child { height: 10px; }

    .gallery-grid {
        grid-template-rows: 190px 190px 190px;
        gap: 4px;
    }

    .social-row { gap: 22px; }
    .soc-circle { width: 62px; height: 62px; }
    .soc-circle i { font-size: 18px; }
    .soc-link span { font-size: 8px; letter-spacing: 2px; }

    .form-card { padding: 28px; }
    .btn-submit { padding: 18px 36px; }
    .appointment .btn-submit { padding: 20px 44px; }

    .cinematic-break { height: 45vh; min-height: 320px; }
    .cinematic-caption h3 { font-size: 26px; }
    .cinematic-caption { padding-bottom: 36px; }

    .quote-section { height: 380px; }
    .quote-content blockquote { font-size: 24px; }
    .quote-content { padding: 0 24px; }
}

/* ===== CINEMATIC STATEMENT — overrides ===== */
.cinematic-break {
    height: 62vh;
    min-height: 440px;
    align-items: flex-start;
}

.cinematic-overlay {
    background: transparent;
}

.cinematic-caption {
    padding: 15vh var(--gutter) 0;
    text-align: left;
    max-width: var(--container);
    margin: 0 auto;
    width: 100%;
}

.cinematic-heading {
    font-family: var(--serif);
    font-size: 40px;
    font-weight: 400;
    color: #EDD07A;
    letter-spacing: 0.10em;
    line-height: 1.15;
    margin-bottom: 18px;
    text-transform: uppercase;
}

.cinematic-rule {
    width: 40px;
    height: 1px;
    background: var(--gold);
    margin: 0 0 16px;
}

.cinematic-sub {
    font-family: var(--sans);
    font-size: 11px;
    font-weight: 300;
    letter-spacing: 3px;
    color: rgba(237, 208, 122, 0.88);
    text-transform: uppercase;
}

/* ===== ABOUT IMAGE — disable hover zoom ===== */
.about-image:hover .about-img-wrap img {
    transform: none;
}

/* ===== ARCHETYPE QUIZ ===== */
.archetype {
    background: var(--champagne);
    padding: 80px 0 16px;
}

.archetype-container {
    width: 100%;
    max-width: 820px;
    margin: 0 auto;
    padding: 0 var(--gutter);
    text-align: center;
}

.archetype-head {
    margin-bottom: 76px;
}

.archetype-intro {
    font-family: var(--sans);
    font-size: 14px;
    font-weight: 300;
    color: var(--text-mid);
    line-height: 2.1;
    max-width: 520px;
    margin: 0 auto;
    letter-spacing: 0.3px;
}

.arch-stage {
    position: relative;
    min-height: 300px;
    transition: min-height 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.arch-question {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
    transition: opacity 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.arch-question.arch-visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.arch-question.arch-exit {
    opacity: 0;
    transform: translateY(-16px);
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.arch-q-num {
    font-family: var(--sans);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 28px;
}

.arch-q-text {
    font-family: var(--serif);
    font-size: 30px;
    font-weight: 400;
    color: var(--text);
    line-height: 1.3;
    margin-bottom: 44px;
}

.arch-choices {
    display: flex;
    gap: 14px;
    justify-content: center;
}

.arch-choice {
    flex: 1;
    max-width: 340px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 26px 28px;
    background: transparent;
    border: 1px solid rgba(194, 164, 107, 0.35);
    cursor: pointer;
    text-align: left;
    transition: border-color 0.3s ease, background 0.3s ease;
    font-family: var(--sans);
}

.arch-choice:hover {
    border-color: var(--gold);
    background: rgba(194, 164, 107, 0.08);
}

.choice-letter {
    font-family: var(--serif);
    font-size: 24px;
    font-weight: 400;
    color: var(--gold);
    line-height: 1;
    flex-shrink: 0;
    padding-top: 2px;
}

.choice-text {
    font-size: 12px;
    font-weight: 300;
    letter-spacing: 0.8px;
    line-height: 1.8;
    color: var(--text-mid);
}

.arch-result {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
    transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    text-align: center;
}

.arch-result.arch-visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.arch-result-label {
    font-family: var(--sans);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 18px;
}

.arch-result-title {
    font-family: var(--serif);
    font-size: 50px;
    font-weight: 400;
    color: var(--text);
    line-height: 1.2;
    margin-bottom: 42px;
}

.arch-result-desc {
    font-size: 13px;
    font-weight: 300;
    color: var(--text-mid);
    line-height: 2.1;
    max-width: 460px;
    margin: 0 auto 48px;
    letter-spacing: 0.3px;
}

.btn-arch {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 18px 52px;
    border: 1px solid var(--gold);
    color: var(--gold);
    font-family: var(--sans);
    font-size: 9px;
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
    background: transparent;
    cursor: pointer;
    transition: background 0.3s ease, color 0.3s ease;
    text-decoration: none;
}

.btn-arch:hover {
    background: var(--gold);
    color: var(--charcoal);
}

.arch-progress-bar {
    width: 100%;
    max-width: 480px;
    height: 1px;
    background: rgba(194, 164, 107, 0.28);
    margin: 56px auto 0;
}

.arch-progress-fill {
    height: 100%;
    background: var(--gold);
    width: 0%;
    transition: width 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ===== ARCHETYPE + CINEMATIC responsive overrides ===== */
@media (max-width: 1024px) {
    .cinematic-heading { font-size: 35px; }
}

@media (max-width: 768px) {
    .cinematic-break { height: 55vh; min-height: 360px; }
    .cinematic-caption { padding-top: 14vh; padding-bottom: 0; }
    .cinematic-heading { font-size: 32px; letter-spacing: 0.08em; }

    .arch-stage { min-height: 440px; }
    .arch-q-text { font-size: 26px; margin-bottom: 36px; }
    .arch-choices { flex-direction: column; align-items: center; }
    .arch-choice { max-width: 100%; width: 100%; }
    .arch-result-title { font-size: 40px; }
    .archetype-head { margin-bottom: 56px; }

    /* Tightened archetype → appointment gap */
    .archetype { padding-bottom: 16px; }
    .appointment { padding-top: 16px; }
}

@media (max-width: 540px) {
    .cinematic-break { height: 50vh; min-height: 300px; }
    .cinematic-caption { padding-top: 12vh; padding-bottom: 0; }
    .cinematic-heading { font-size: 26px; letter-spacing: 0.07em; }
    .cinematic-sub { font-size: 10px; letter-spacing: 2.5px; }

    .arch-stage { min-height: 480px; }
    .arch-q-text { font-size: 22px; margin-bottom: 28px; }
    .arch-choice { padding: 22px 20px; gap: 14px; }
    .arch-result-title { font-size: 32px; }
    .btn-arch { padding: 16px 38px; font-size: 8px; }
    .arch-progress-bar { margin-top: 40px; }
    .archetype-intro { font-size: 13px; }

    /* Tightened archetype → appointment gap */
    .archetype { padding-bottom: 16px; }
    .appointment { padding-top: 16px; }
}

/* ===== APPOINTMENT — beige background ===== */
.appointment {
    background: var(--champagne);
    padding-top: 16px;
}

.appointment .heading-lg {
    font-size: 68px;
    line-height: 1.05;
    margin-bottom: 20px;
}

.appointment .btn-submit {
    padding: 26px 68px;
}

.appointment .appt-desc {
    color: var(--text-mid);
}

.appointment .fg input,
.appointment .fg textarea {
    color: var(--text);
    border-bottom-color: rgba(42, 42, 42, 0.15);
}

.appointment .fg label {
    color: var(--text-light);
}

.appointment .appt-hint {
    color: var(--text-light);
}

.appointment .form-card {
    background: var(--white);
    border: 1px solid var(--sand);
    backdrop-filter: none;
}

.appointment .form-success h3 {
    color: var(--text);
}

.appointment .form-success p {
    color: var(--text-mid);
}

/* ===== FOOTER — warm deep charcoal ===== */

.footer-contact-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 36px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--sand-dark);
    width: 100%;
    flex-wrap: wrap;
}

.footer-contact-link {
    display: flex;
    align-items: center;
    gap: 11px;
    color: var(--text-mid);
    text-decoration: none;
    font-family: var(--sans);
    font-size: 12px;
    font-weight: 300;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.footer-contact-link:hover {
    color: var(--gold);
}

.footer-contact-link i {
    font-size: 11px;
    color: var(--gold);
    opacity: 0.8;
}

.footer-contact-divider {
    width: 1px;
    height: 14px;
    background: var(--sand-dark);
}

@media (max-width: 540px) {
    .footer-contact-row { gap: 18px; }
    .footer-contact-divider { display: none; }
    .footer-contact-link { font-size: 11px; }
}
