*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
:root {
    --bg: #FDFAF5;
    --bg-warm: #F8F3EB;
    --bg-blush: #FBF5F0;
    --bg-card: #FFFFFF;
    --gold: #B8935A;
    --gold-light: #CDAC73;
    --gold-dark: #9A7A48;
    --gold-glow: rgba(184, 147, 90, 0.12);
    --blush: #E8CFC0;
    --blush-light: #F2E4DA;
    --rose: #C9A090;
    --text: #3A3027;
    --text-secondary: #6B5E52;
    --text-muted: #9C9183;
    --border: #E8E0D4;
    --border-light: #F0EAE0;
    --white: #FFFFFF;
}
html { scroll-behavior: smooth; }
body {
    font-family: 'Outfit', sans-serif;
    background: var(--bg);
    color: var(--text);
    font-weight: 300;
    line-height: 1.7;
    font-size: 16px;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
h1, h2, h3 { font-family: 'Cormorant Garamond', serif; font-weight: 400; color: var(--text); }
.container { max-width: 1200px; margin: 0 auto; padding: 0 clamp(20px, 5vw, 60px); }
.container--narrow { max-width: 780px; margin: 0 auto; padding: 0 clamp(20px, 5vw, 60px); }

/* NAV */
nav { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; padding: 22px 0; transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1); }
nav.scrolled { background: rgba(253, 250, 245, 0.95); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); padding: 14px 0; box-shadow: 0 1px 0 var(--border-light); }
nav .container { display: flex; align-items: center; justify-content: space-between; }
.nav-logo { display: flex; align-items: center; gap: 14px; text-decoration: none; color: var(--white); transition: color 0.5s; }
nav.scrolled .nav-logo { color: var(--text); }
.nav-monogram { width: 40px; height: 40px; border: 1.2px solid rgba(255,255,255,0.7); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: 'Cormorant Garamond', serif; font-size: 20px; color: var(--white); font-weight: 500; transition: all 0.5s; }
nav.scrolled .nav-monogram { border-color: var(--gold); color: var(--gold); }
.nav-wordmark { font-family: 'Cormorant Garamond', serif; font-size: 15px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--white); font-weight: 500; transition: color 0.5s; text-shadow: 0 1px 4px rgba(0,0,0,0.3); }
nav.scrolled .nav-wordmark { color: var(--text); text-shadow: none; }
.nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }
.nav-links a { text-decoration: none; color: rgba(255,255,255,0.85); font-size: 13px; letter-spacing: 0.06em; text-transform: uppercase; font-weight: 400; transition: color 0.5s, text-shadow 0.5s; text-shadow: 0 1px 4px rgba(0,0,0,0.3); }
nav.scrolled .nav-links a { color: var(--text-secondary); text-shadow: none; }
.nav-links a:hover { color: var(--gold); }
.nav-cta { background: var(--gold) !important; color: var(--white) !important; padding: 11px 26px !important; font-size: 12px !important; letter-spacing: 0.1em !important; text-transform: uppercase !important; cursor: pointer; transition: all 0.3s !important; font-family: 'Outfit', sans-serif !important; font-weight: 500 !important; border-radius: 2px; text-shadow: none !important; }
.nav-cta:hover { background: var(--gold-dark) !important; transform: translateY(-1px); }
.mobile-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.mobile-toggle span { display: block; width: 22px; height: 1.5px; background: var(--white); margin: 5px 0; transition: all 0.5s; }
nav.scrolled .mobile-toggle span { background: var(--text); }

/* HERO */
.hero { position: relative; min-height: 100vh; display: flex; align-items: flex-end; overflow: hidden; }
.hero-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.hero-bg::after { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to bottom, rgba(253,250,245,0.1) 0%, rgba(253,250,245,0.15) 25%, rgba(253,250,245,0.75) 42%, rgba(253,250,245,0.95) 55%, rgba(253,250,245,1) 68%, rgba(253,250,245,1) 100%); }
.hero-content { position: relative; z-index: 2; width: 100%; padding-bottom: clamp(40px, 8vh, 80px); text-align: center; }
.hero-overline { font-family: 'Outfit', sans-serif; font-size: 12px; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold-dark); margin-bottom: 20px; font-weight: 500; background: rgba(253,250,245,0.75); display: inline-block; padding: 8px 20px; border-radius: 40px; border: 1px solid var(--border-light); }
.hero h1 { font-size: clamp(36px, 5.5vw, 68px); line-height: 1.12; font-weight: 300; color: var(--text); margin-bottom: 20px; letter-spacing: -0.01em; }
.hero h1 em { font-style: italic; color: var(--gold); font-weight: 400; }
.hero-sub { font-size: clamp(15px, 1.6vw, 17px); color: var(--text-secondary); max-width: 560px; margin: 0 auto 40px; line-height: 1.75; font-weight: 300; }
.hero-ctas { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 52px; }
.btn-gold { display: inline-block; padding: 16px 40px; background: var(--gold); color: var(--white); text-decoration: none; font-size: 13px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; font-family: 'Outfit', sans-serif; transition: all 0.3s; border-radius: 2px; }
.btn-gold:hover { background: var(--gold-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(184, 147, 90, 0.25); }
.btn-outline { display: inline-block; padding: 16px 40px; background: transparent; color: var(--text-secondary); text-decoration: none; font-size: 13px; font-weight: 400; letter-spacing: 0.1em; text-transform: uppercase; font-family: 'Outfit', sans-serif; transition: all 0.3s; border: 1px solid var(--border); border-radius: 2px; }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }
.hero-stats { display: flex; justify-content: center; gap: clamp(40px, 6vw, 72px); flex-wrap: wrap; }
.hero-stat { text-align: center; }
.hero-stat-number { font-family: 'Cormorant Garamond', serif; font-size: clamp(32px, 4vw, 48px); color: var(--gold); font-weight: 300; display: block; line-height: 1; }
.hero-stat-label { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-muted); margin-top: 6px; font-weight: 400; }
.hero-content > * { opacity: 0; transform: translateY(20px); animation: heroIn 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards; }
.hero-content > :nth-child(1) { animation-delay: 0.2s; }
.hero-content > :nth-child(2) { animation-delay: 0.4s; }
.hero-content > :nth-child(3) { animation-delay: 0.6s; }
.hero-content > :nth-child(4) { animation-delay: 0.8s; }
.hero-content > :nth-child(5) { animation-delay: 1.0s; }
@keyframes heroIn { to { opacity: 1; transform: translateY(0); } }

/* AS SEEN IN MARQUEE */
.seen-in { padding: 40px 0; background: var(--bg); overflow: hidden; position: relative; border-top: 1px solid var(--border-light); border-bottom: 1px solid var(--border-light); }
.seen-in-label { text-align: center; font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; font-weight: 400; }
.marquee { position: relative; width: 100%; overflow: hidden; mask-image: linear-gradient(to right, transparent, black 6%, black 94%, transparent); -webkit-mask-image: linear-gradient(to right, transparent, black 6%, black 94%, transparent); }
.marquee-track { display: flex; align-items: center; gap: 0; width: max-content; animation: marquee-scroll 40s linear infinite; }
.marquee-item { font-family: 'Cormorant Garamond', serif; font-size: 18px; color: var(--text-muted); white-space: nowrap; padding: 0 24px; font-weight: 500; letter-spacing: 0.04em; }
.marquee-sep { color: var(--gold-light); font-size: 8px; flex-shrink: 0; line-height: 1; }
@keyframes marquee-scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-25%); } }

/* ORNAMENT */
.ornament { display: flex; align-items: center; justify-content: center; gap: 16px; padding: 12px 0; color: var(--gold-light); }
.ornament::before, .ornament::after { content: ''; width: 48px; height: 1px; background: var(--border); }
.ornament svg { width: 16px; height: 16px; fill: none; stroke: var(--gold-light); stroke-width: 1; }

/* SECTION LABEL */
.section-label { font-size: 11px; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; font-weight: 400; display: block; }

/* ESSENCE */
.essence { padding: clamp(80px, 12vw, 130px) 0; }
.essence-inner { text-align: center; }
.essence h2 { font-size: clamp(28px, 4vw, 44px); line-height: 1.25; margin-bottom: 28px; font-weight: 300; }
.essence-body { font-size: 17px; color: var(--text-secondary); max-width: 640px; margin: 0 auto; line-height: 1.85; }
.essence-quote { margin-top: 56px; padding: 44px 40px; background: var(--bg-warm); border-left: 3px solid var(--gold-light); text-align: left; max-width: 640px; margin-left: auto; margin-right: auto; border-radius: 0 4px 4px 0; }
.essence-quote blockquote { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: clamp(18px, 2.2vw, 22px); color: var(--text); line-height: 1.6; margin-bottom: 16px; font-weight: 400; }
.essence-quote cite { font-family: 'Outfit', sans-serif; font-style: normal; font-size: 13px; color: var(--gold); letter-spacing: 0.08em; text-transform: uppercase; font-weight: 400; }

/* SERVICES */
.services { padding: clamp(80px, 12vw, 130px) 0; background: var(--bg-blush); }
.services-header { text-align: center; margin-bottom: 60px; }
.services-header h2 { font-size: clamp(28px, 4vw, 42px); font-weight: 300; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 1000px; margin: 0 auto; }
.service-card { background: var(--white); padding: 36px 28px; border: 1px solid var(--border-light); border-radius: 4px; transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1); position: relative; overflow: hidden; }
.service-card::before { content: ''; position: absolute; top: 0; left: 0; width: 0; height: 2px; background: var(--gold-light); transition: width 0.4s; }
.service-card:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(58, 48, 39, 0.06); border-color: var(--blush); }
.service-card:hover::before { width: 100%; }
.service-number { font-family: 'Cormorant Garamond', serif; font-size: 32px; color: var(--blush); font-weight: 300; margin-bottom: 16px; display: block; line-height: 1; }
.service-card h3 { font-size: 22px; font-weight: 400; margin-bottom: 10px; line-height: 1.3; }
.service-card p { font-size: 14px; color: var(--text-muted); line-height: 1.7; }
.service-card.span-2 { grid-column: span 2; }
.service-card.span-3 { grid-column: span 3; }

/* DESTINATIONS */
.destinations { padding: clamp(80px, 12vw, 120px) 0; }
.destinations-header { text-align: center; margin-bottom: 48px; }
.destinations-header h2 { font-size: clamp(26px, 3.5vw, 38px); font-weight: 300; }
.dest-grid { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; max-width: 900px; margin: 0 auto; }
.dest-pill { padding: 12px 24px; border: 1px solid var(--border); border-radius: 40px; font-size: 14px; color: var(--text-secondary); letter-spacing: 0.03em; transition: all 0.3s; font-weight: 300; cursor: default; background: var(--white); }
.dest-pill:hover { border-color: var(--gold-light); color: var(--gold-dark); background: var(--gold-glow); }

/* FOUNDER */
.founder { padding: clamp(80px, 12vw, 140px) 0; background: var(--bg-warm); }
.founder-grid { display: grid; grid-template-columns: 0.85fr 1fr; gap: clamp(40px, 7vw, 88px); align-items: center; }
.founder-img-wrap { position: relative; }
.founder-img-frame { position: absolute; top: -10px; left: -10px; right: 10px; bottom: 10px; border: 1px solid var(--gold-light); border-radius: 4px; opacity: 0.5; }
.founder-img { width: 100%; aspect-ratio: 3/4; object-fit: cover; object-position: center top; border-radius: 4px; position: relative; z-index: 1; }
.founder-text h2 { font-size: clamp(28px, 3.5vw, 40px); font-weight: 300; margin-bottom: 24px; line-height: 1.2; }
.founder-text p { font-size: 16px; color: var(--text-secondary); line-height: 1.8; margin-bottom: 16px; }
.founder-sig { margin-top: 28px; padding-top: 20px; border-top: 1px solid var(--border); }
.founder-sig .name { font-family: 'Cormorant Garamond', serif; font-size: 22px; color: var(--text); font-weight: 500; display: block; margin-bottom: 2px; }
.founder-sig .role { font-size: 13px; color: var(--text-muted); letter-spacing: 0.06em; }

/* TEAM */
.team { padding: clamp(80px, 12vw, 130px) 0; }
.team-header { text-align: center; margin-bottom: 48px; }
.team-header h2 { font-size: clamp(26px, 3.5vw, 38px); font-weight: 300; margin-bottom: 16px; }
.team-header p { font-size: 16px; color: var(--text-secondary); max-width: 580px; margin: 0 auto; line-height: 1.7; }
.team-photo-wrap { max-width: 1000px; margin: 0 auto; position: relative; border-radius: 4px; overflow: hidden; border: 1px solid var(--border-light); }
.team-photo { width: 100%; display: block; }
.team-caption { padding: 20px 24px; background: var(--bg-warm); border-top: 1px solid var(--border-light); }
.team-caption p { font-size: 14px; color: var(--text-muted); font-style: italic; line-height: 1.55; text-align: center; }

/* LAUNCH */
.launch { padding: clamp(60px, 10vw, 100px) 0; background: var(--bg-blush); }
.launch-inner { text-align: center; max-width: 680px; margin: 0 auto; }
.launch-date { display: inline-block; padding: 10px 28px; border: 1px solid var(--gold-light); border-radius: 40px; font-size: 13px; color: var(--gold-dark); letter-spacing: 0.1em; text-transform: uppercase; font-weight: 400; margin-bottom: 24px; }
.launch h2 { font-size: clamp(26px, 3.5vw, 36px); font-weight: 300; margin-bottom: 16px; }
.launch p { font-size: 16px; color: var(--text-secondary); line-height: 1.75; }
.launch-venue { margin-top: 12px; font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 18px; color: var(--gold); }

/* CTA */
.cta-section { padding: clamp(80px, 12vw, 140px) 0; }
.cta-card { max-width: 760px; margin: 0 auto; text-align: center; padding: clamp(48px, 8vw, 72px) clamp(24px, 5vw, 56px); background: var(--white); border: 1px solid var(--border-light); border-radius: 4px; position: relative; }
.cta-card::before { content: ''; position: absolute; top: -1px; left: 50%; transform: translateX(-50%); width: 72px; height: 2px; background: var(--gold-light); border-radius: 1px; }
.cta-card h2 { font-size: clamp(26px, 3.5vw, 36px); font-weight: 300; margin-bottom: 14px; }
.cta-card p { font-size: 16px; color: var(--text-secondary); max-width: 480px; margin: 0 auto 32px; line-height: 1.7; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* FOOTER */
footer { padding: 56px 0 36px; border-top: 1px solid var(--border); background: var(--bg-warm); }
.footer-inner { display: flex; justify-content: space-between; align-items: flex-start; flex-wrap: wrap; gap: 40px; }
.footer-brand .nav-monogram { width: 36px; height: 36px; font-size: 16px; margin-bottom: 12px; border-color: var(--gold); color: var(--gold); }
.footer-tagline { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 15px; color: var(--text-muted); }
.footer-links { display: flex; gap: 48px; }
.footer-col h4 { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 14px; font-weight: 500; }
.footer-col a { display: block; color: var(--text-secondary); text-decoration: none; font-size: 14px; margin-bottom: 10px; transition: color 0.3s; }
.footer-col a:hover { color: var(--gold); }
.footer-bottom { margin-top: 40px; padding-top: 20px; border-top: 1px solid var(--border); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
.footer-copyright { font-size: 13px; color: var(--text-muted); }
.footer-socials { display: flex; gap: 24px; }
.footer-socials a { color: var(--text-muted); text-decoration: none; font-size: 13px; letter-spacing: 0.04em; transition: color 0.3s; }
.footer-socials a:hover { color: var(--gold); }

/* PROMO BAR */
.promo-bar { position: fixed; bottom: 0; left: 0; right: 0; background: var(--text); z-index: 999; transform: translateY(100%); transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1); }
.promo-bar.visible { transform: translateY(0); }
.promo-bar-inner { max-width: 1200px; margin: 0 auto; padding: 20px clamp(20px, 5vw, 60px); display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.promo-content { flex: 1; }
.promo-headline { font-family: 'Cormorant Garamond', serif; font-size: clamp(17px, 2vw, 22px); color: var(--white); font-weight: 400; line-height: 1.3; }
.promo-sub { font-size: 13px; color: rgba(255,255,255,0.5); margin-top: 4px; font-weight: 300; }
.promo-actions { display: flex; align-items: center; gap: 20px; flex-shrink: 0; }
.promo-cta-btn { display: inline-block; padding: 12px 28px; background: var(--gold); color: var(--white); text-decoration: none; font-size: 13px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; font-family: 'Outfit', sans-serif; border-radius: 2px; transition: all 0.3s; white-space: nowrap; }
.promo-cta-btn:hover { background: var(--gold-dark); transform: translateY(-1px); }
.promo-badge { font-size: 11px; color: rgba(255,255,255,0.35); letter-spacing: 0.06em; white-space: nowrap; }
.promo-close { position: absolute; top: 50%; right: clamp(8px, 2vw, 20px); transform: translateY(-50%); background: none; border: none; font-size: 20px; color: rgba(255,255,255,0.4); cursor: pointer; line-height: 1; padding: 8px; transition: color 0.3s; }
.promo-close:hover { color: var(--white); }
@media (max-width: 640px) {
    .promo-bar-inner { flex-direction: column; text-align: center; padding-right: 40px; }
    .promo-actions { flex-direction: column; gap: 10px; }
}

/* ANIMATIONS */
.fade-up { opacity: 0; transform: translateY(24px); transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1); }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.stagger-child { opacity: 0; transform: translateY(18px); transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1); }
.stagger-child.visible { opacity: 1; transform: translateY(0); }

/* RESPONSIVE */
@media (max-width: 900px) {
    .services-grid { grid-template-columns: 1fr 1fr; }
    .service-card.span-2 { grid-column: span 2; }
    .service-card.span-3 { grid-column: span 2; }
    .founder-grid { grid-template-columns: 1fr; text-align: center; }
    .founder-img-wrap { max-width: 380px; margin: 0 auto; }
    .founder-img-frame { display: none; }
}
@media (max-width: 640px) {
    .nav-links { display: none; }
    .mobile-toggle { display: block; }
    .nav-links.open { display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: rgba(253, 250, 245, 0.98); backdrop-filter: blur(20px); padding: 24px; gap: 20px; border-bottom: 1px solid var(--border); }
    .services-grid { grid-template-columns: 1fr; }
    .service-card.span-2 { grid-column: span 1; }
    .service-card.span-3 { grid-column: span 1; }
    .footer-links { flex-direction: column; gap: 28px; }
    .footer-inner { flex-direction: column; }

    /* HERO MOBILE */
    .hero { min-height: auto; align-items: stretch; flex-direction: column; }
    .hero-bg { position: relative; height: 56vh; flex-shrink: 0; }
    .hero-bg::after {
        background: linear-gradient(to bottom, rgba(253,250,245,0) 0%, rgba(253,250,245,0.15) 40%, rgba(253,250,245,0.6) 65%, rgba(253,250,245,1) 85%);
    }
    .hero-content { padding: 0 20px 40px; }
    .hero h1 { font-size: 34px; margin-bottom: 14px; }
    .hero-overline { font-size: 10px; letter-spacing: 0.2em; padding: 6px 16px; margin-bottom: 14px; }
    .hero-sub { font-size: 15px; margin-bottom: 28px; }
    .hero-ctas { margin-bottom: 36px; }
    .hero-ctas .btn-gold,
    .hero-ctas .btn-outline { padding: 14px 32px; width: 100%; text-align: center; }
    .hero-stats { gap: 32px; }
    .hero-stat-number { font-size: 32px; }
    .hero-stat-label { font-size: 10px; }
}
