/* ===========================================================
   MAISON ALADDIN — SHARED BRAND STYLES
   =========================================================== */

:root {
  --navy:#0E2A47; --navy-deep:#06121F; --navy-soft:#1A3A5C;
  --gold:#B8860B; --gold-light:#D4A437; --gold-pale:#E8D5A0;
  --cream:#FAF6EE; --cream-warm:#F2EBDB; --cream-soft:#F8F3E8;
  --ink:#161616; --grey:#6B6B6B; --grey-light:#9B9B9B;
  --line:#E5DFD0; --line-soft:#EFEADD;
}

*,*::before,*::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; }
body {
  font-family:'Inter', sans-serif;
  color:var(--ink); background:var(--cream);
  line-height:1.65; font-weight:400; font-size:17px;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
  background:var(--cream);
}
html { background:var(--cream); }
h1, h2, h3, h4, .serif {
  font-family:'Cormorant Garamond', serif;
  font-weight:400; letter-spacing:-0.005em;
  line-height:1.1; color:var(--navy);
}

/* DARK-SECTION HEADING PROTECTION
   The global h1-h4 color:var(--navy) above causes navy-on-navy invisibility
   when a heading sits inside a section with a navy background. These selectors
   override for every known dark-background pattern across the site. */
[style*="background:#06121F"] h1,
[style*="background:#06121F"] h2,
[style*="background:#06121F"] h3,
[style*="background:#06121F"] h4,
[style*="background: #06121F"] h1,
[style*="background: #06121F"] h2,
[style*="background: #06121F"] h3,
[style*="background: #06121F"] h4,
[style*="background:#0E2A47"] h1,
[style*="background:#0E2A47"] h2,
[style*="background:#0E2A47"] h3,
[style*="background:#0E2A47"] h4,
[style*="background: #0E2A47"] h1,
[style*="background: #0E2A47"] h2,
[style*="background: #0E2A47"] h3,
[style*="background: #0E2A47"] h4,
.still-band h2,
.app-hero h1,
.app-hero h2,
.app-body h2,
.app-body h3,
.mp-pillars h2,
.lr-stats h2,
.lr-table h2,
.final-cta h2,
.fo-hero h1,
.fo-hero h1 .word,
.fo-process h1,
.fo-process h2,
.fo-process h3,
.fo-quote blockquote,
.fo-cta h1,
.fo-cta h2,
.dark-section h1,
.dark-section h2,
.dark-section h3 {
  color: var(--cream);
}

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

.wrap { max-width:1280px; margin:0 auto; padding:0 40px; }
.narrow { max-width:880px; margin:0 auto; padding:0 40px; }
.tight { max-width:680px; margin:0 auto; padding:0 40px; }
@media (max-width:720px) { .wrap, .narrow, .tight { padding:0 24px; } }

/* ============ NAVIGATION (refined — text-only Enquire) ============ */
nav.top {
  position:fixed; top:0; left:0; right:0; z-index:100;
  padding:24px 0; transition:all 0.5s ease; background:transparent;
}
nav.top.scrolled {
  background:rgba(250, 246, 238, 0.95);
  backdrop-filter:blur(20px);
  -webkit-backdrop-filter:blur(20px);
  padding:14px 0; border-bottom:1px solid var(--line-soft);
}
nav.top .wrap { display:flex; align-items:center; justify-content:space-between; }
.brand {
  font-family:'Cormorant Garamond', serif;
  font-weight:500; font-size:24px; color:var(--cream);
  letter-spacing:0.04em; transition:color 0.5s ease;
}
nav.top.scrolled .brand { color:var(--navy); }
.brand em { font-style:italic; color:var(--gold-light); font-weight:400; }
nav.top.scrolled .brand em { color:var(--gold); }
.nav-center { display:flex; gap:36px; align-items:center; }
.nav-center a {
  font-size:13px; color:var(--cream); font-weight:500;
  letter-spacing:0.08em; text-transform:uppercase;
  transition:color 0.3s;
}
nav.top.scrolled .nav-center a { color:var(--navy); }
.nav-center a:hover { color:var(--gold-light); }
nav.top.scrolled .nav-center a:hover { color:var(--gold); }

/* REFINED: nav CTA is now a text link with thin gold underline, not a filled button */
.nav-cta {
  background:transparent;
  color:var(--cream);
  padding:6px 0;
  font-size:13px;
  font-weight:500;
  letter-spacing:0.18em;
  text-transform:uppercase;
  border-bottom:1px solid var(--gold-light);
  transition:all 0.3s;
}
nav.top.scrolled .nav-cta {
  color:var(--navy);
  border-bottom-color:var(--gold);
}
.nav-cta:hover {
  color:var(--gold-light);
  border-bottom-color:transparent;
}
nav.top.scrolled .nav-cta:hover {
  color:var(--gold);
  border-bottom-color:transparent;
}
@media (max-width:900px) { .nav-center { display:none; } }

/* ============ NAV DROPDOWNS ============ */
.nav-dropdown { position:relative; display:inline-block; }
.nav-dropdown-trigger { display:inline-flex; align-items:center; gap:6px; cursor:default; }
.nav-dropdown-trigger::after {
  content:''; width:6px; height:6px; border-right:1px solid currentColor; border-bottom:1px solid currentColor;
  transform:rotate(45deg); opacity:0.55; margin-top:-2px;
  transition:transform 0.3s, opacity 0.3s;
}
.nav-dropdown:hover .nav-dropdown-trigger::after { transform:rotate(225deg); opacity:0.9; margin-top:2px; }
.nav-dropdown-menu {
  position:absolute; top:100%; left:50%; transform:translateX(-50%) translateY(8px);
  min-width:240px; padding:14px 0; margin-top:18px;
  background:#06121F;
  border:1px solid rgba(184,134,11,0.4);
  box-shadow:0 16px 40px rgba(0,0,0,0.35);
  opacity:0; visibility:hidden; pointer-events:none;
  transition:opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
  z-index:120;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity:1; visibility:visible; pointer-events:auto;
  transform:translateX(-50%) translateY(0);
}
.nav-dropdown-menu::before {
  content:''; position:absolute; left:0; right:0; top:-18px; height:18px;
}
.nav-dropdown-menu a {
  display:block; padding:11px 26px;
  font-family:'Cormorant Garamond', serif; font-style:italic;
  font-size:17px; color:var(--cream) !important; letter-spacing:0;
  text-transform:none !important; font-weight:400;
  transition:color 0.25s, background 0.25s;
}
.nav-dropdown-menu a:hover { color:var(--gold-light) !important; background:rgba(184,134,11,0.06); }
nav.top.scrolled .nav-dropdown-menu { background:#FAF6EE; border-color:rgba(184,134,11,0.4); box-shadow:0 16px 40px rgba(14,42,71,0.18); }
nav.top.scrolled .nav-dropdown-menu a { color:var(--navy) !important; }
nav.top.scrolled .nav-dropdown-menu a:hover { color:var(--gold) !important; background:rgba(184,134,11,0.08); }

/* ============ BUTTONS ============ */
.btn {
  display:inline-block; padding:18px 40px;
  font-size:12px; font-weight:600; letter-spacing:0.18em;
  text-transform:uppercase; transition:all 0.3s ease;
  cursor:pointer; border:none; text-align:center;
}
.btn-gold { background:var(--gold); color:var(--navy-deep); }
.btn-gold:hover {
  background:var(--cream); transform:translateY(-2px);
  box-shadow:0 18px 40px rgba(0,0,0,0.25);
}
.btn-ghost {
  background:transparent; color:var(--cream);
  border:1px solid rgba(250, 246, 238, 0.4);
}
.btn-ghost:hover { background:var(--cream); color:var(--navy-deep); border-color:var(--cream); }
.btn-navy { background:var(--navy); color:var(--cream); }
.btn-navy:hover {
  background:var(--gold); color:var(--navy-deep); transform:translateY(-2px);
}
.btn-outline {
  background:transparent; color:var(--navy);
  border:1px solid var(--navy);
}
.btn-outline:hover { background:var(--navy); color:var(--cream); }

/* ============ TYPOGRAPHY ============ */
.eyebrow {
  color:var(--gold); font-size:13px;
  letter-spacing:0.4em; text-transform:uppercase;
  font-weight:500; margin-bottom:24px;
  display:flex; align-items:center; gap:14px;
}
.eyebrow::before { content:''; width:32px; height:1px; background:var(--gold); }
.eyebrow.center { justify-content:center; text-align:center; }
.eyebrow.center::after { content:''; width:32px; height:1px; background:var(--gold); }
.title {
  font-size:clamp(40px, 6vw, 72px); line-height:1.05;
  margin-bottom:32px; font-weight:400;
}
.title em { font-style:italic; color:var(--gold); font-weight:400; }
.title.center { text-align:center; }
.sub {
  font-size:19px; color:var(--grey); line-height:1.6;
  max-width:640px;
}
.sub.center { text-align:center; margin:0 auto 72px; }

/* ============ SECTIONS ============ */
section { padding:140px 0; position:relative; }
@media (max-width:720px) { section { padding:90px 0; } }

/* ============ PAGE HEADERS ============ */
.page-hero {
  min-height:60vh; padding:160px 0 80px;
  background:linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 60%, var(--navy-soft) 100%);
  color:var(--cream); display:flex; align-items:center;
  position:relative; overflow:hidden;
}
.page-hero::before {
  content:''; position:absolute; inset:0;
  background:radial-gradient(circle at 30% 20%, rgba(184, 134, 11, 0.15) 0%, transparent 50%);
  pointer-events:none;
}
.page-hero .wrap { position:relative; z-index:2; text-align:center; }
.page-hero .eyebrow { justify-content:center; color:var(--gold-light); }
.page-hero .eyebrow::before { background:var(--gold-light); }
.page-hero h1 {
  font-size:clamp(48px, 7vw, 88px);
  color:var(--cream); margin-bottom:28px; font-weight:300;
}
.page-hero h1 em { color:var(--gold-light); font-style:italic; }
.page-hero p.lede {
  font-size:clamp(17px, 1.8vw, 21px); color:rgba(250,246,238,0.75);
  max-width:680px; margin:0 auto; line-height:1.65; font-weight:300;
}

/* ============ SERVICES / CARDS ============ */
.services-grid {
  display:grid; grid-template-columns:repeat(3, 1fr); gap:32px;
}
@media (max-width:900px) { .services-grid { grid-template-columns:1fr; } }
.service-card {
  background:var(--navy-deep); padding:56px 40px;
  border:1px solid rgba(184, 134, 11, 0.18);
  transition:all 0.4s ease; position:relative;
}
.service-card:hover { border-color:var(--gold); transform:translateY(-6px); }
.service-num {
  font-family:'Cormorant Garamond', serif; font-style:italic;
  color:var(--gold); font-size:14px; letter-spacing:0.2em;
  margin-bottom:24px;
}
.service-name {
  font-size:38px; color:var(--cream); font-weight:400;
  line-height:1.1; margin-bottom:8px;
}
.service-tagline {
  color:var(--gold-light); font-size:14px; font-style:italic;
  margin-bottom:28px; font-family:'Cormorant Garamond', serif;
}
.service-desc {
  color:rgba(250, 246, 238, 0.8); line-height:1.7;
  margin-bottom:28px; font-size:15px;
}
.service-list { list-style:none; margin-bottom:36px; }
.service-list li {
  color:rgba(250, 246, 238, 0.75); font-size:14px;
  padding:10px 0; padding-left:18px; position:relative;
  border-top:1px solid rgba(184, 134, 11, 0.12);
}
.service-list li:last-child { border-bottom:1px solid rgba(184, 134, 11, 0.12); }
.service-list li::before {
  content:'✦'; color:var(--gold); position:absolute;
  left:0; top:11px; font-size:10px;
}
.service-price {
  color:var(--gold-light); font-family:'Cormorant Garamond', serif;
  font-style:italic; font-size:20px; font-weight:400;
  padding-top:20px; border-top:1px solid rgba(184, 134, 11, 0.3);
}

.services-light .service-card {
  background:var(--cream); border:1px solid var(--line);
}
.services-light .service-card:hover { border-color:var(--gold); }
.services-light .service-name { color:var(--navy); }
.services-light .service-tagline { color:var(--gold); }
.services-light .service-desc { color:var(--ink); }
.services-light .service-list li { color:var(--ink); border-color:var(--line); }
.services-light .service-list li:last-child { border-bottom:1px solid var(--line); }
.services-light .service-price { color:var(--gold); border-top-color:var(--line); }

/* ============ MEMBERSHIP TIERS ============ */
.tiers-grid {
  display:grid; grid-template-columns:repeat(3, 1fr); gap:24px;
}
@media (max-width:900px) { .tiers-grid { grid-template-columns:1fr; } }
.tier {
  background:var(--cream); border:1px solid var(--line);
  padding:48px 36px; position:relative; transition:all 0.4s ease;
}
.tier.featured {
  background:var(--navy); color:var(--cream);
  border-color:var(--navy); transform:scale(1.03); z-index:2;
}
.tier:hover { box-shadow:0 30px 60px rgba(14, 42, 71, 0.1); transform:translateY(-4px); }
.tier.featured:hover { transform:scale(1.03) translateY(-4px); }
.tier h3 { font-size:32px; font-weight:400; margin-bottom:6px; color:inherit; }
.tier.featured h3 { color:var(--cream); }
.tier-for {
  color:var(--gold); font-size:13px; letter-spacing:0.15em;
  text-transform:uppercase; font-weight:600; margin-bottom:32px;
}
.tier.featured .tier-for { color:var(--gold-light); }
.tier-price {
  font-family:'Cormorant Garamond', serif; font-size:56px;
  color:var(--navy); line-height:1; margin-bottom:4px; font-weight:400;
}
.tier.featured .tier-price { color:var(--cream); }
.tier-price-sub { color:var(--grey); font-size:13px; letter-spacing:0.1em; margin-bottom:32px; }
.tier.featured .tier-price-sub { color:rgba(250, 246, 238, 0.6); }
.tier-features { list-style:none; margin-bottom:36px; }
.tier-features li {
  padding:12px 0; font-size:14px; color:var(--ink);
  border-top:1px solid var(--line); display:flex; gap:12px;
}
.tier.featured .tier-features li { color:rgba(250, 246, 238, 0.85); border-top-color:rgba(250, 246, 238, 0.1); }
.tier-features li:last-child { border-bottom:1px solid var(--line); }
.tier.featured .tier-features li:last-child { border-bottom-color:rgba(250, 246, 238, 0.1); }
.tier-features li::before { content:'✓'; color:var(--gold); font-weight:600; flex-shrink:0; }

/* ============ MANIFESTO / QUOTE ============ */
.manifesto { background:var(--cream); padding:80px 0 40px; text-align:center; }
.manifesto-quote {
  font-family:'Cormorant Garamond', serif;
  font-size:clamp(28px, 4vw, 48px); color:var(--navy);
  font-style:italic; line-height:1.35; font-weight:400;
  max-width:980px; margin:0 auto;
}
.manifesto-quote .gold { color:var(--gold); font-style:normal; }
.manifesto-ornament { color:var(--gold); font-size:18px; letter-spacing:1.2em; margin-top:48px; }

/* ============ FOOTER ============ */
footer {
  background:var(--navy-deep); color:rgba(250, 246, 238, 0.7); padding:96px 0 32px;
}
.footer-top {
  display:grid; grid-template-columns:2fr 1fr 1fr 1fr;
  gap:64px; margin-bottom:80px; padding-bottom:48px;
  border-bottom:1px solid rgba(184, 134, 11, 0.15);
}
@media (max-width:800px) { .footer-top { grid-template-columns:1fr 1fr; gap:40px; } }
@media (max-width:540px) { .footer-top { grid-template-columns:1fr; } }
.footer-brand .brand { color:var(--cream); font-size:28px; }
.footer-brand p { margin-top:24px; font-size:14px; line-height:1.8; max-width:340px; }
.footer-col h4 {
  color:var(--gold-light); font-size:11px;
  letter-spacing:0.25em; text-transform:uppercase;
  margin-bottom:24px; font-weight:600;
  font-family:'Inter', sans-serif;
}
.footer-col a, .footer-col span {
  display:block; color:rgba(250, 246, 238, 0.65);
  font-size:14px; padding:7px 0; transition:color 0.3s;
}
.footer-col a:hover { color:var(--gold-light); }
.footer-bottom {
  display:flex; justify-content:space-between; flex-wrap:wrap;
  gap:16px; font-size:12px; color:rgba(250, 246, 238, 0.4);
  letter-spacing:0.08em;
}

/* ============ EDITORIAL ============ */
.editorial { background:var(--cream); padding:160px 0; }
.editorial p { font-size:18px; line-height:1.8; color:var(--ink); margin-bottom:24px; }
.editorial p:first-of-type::first-letter {
  font-family:'Cormorant Garamond', serif;
  font-size:80px; line-height:0.85; float:left;
  color:var(--gold); margin:8px 14px 0 0; font-weight:500;
}
.editorial .sig {
  font-family:'Cormorant Garamond', serif; font-style:italic;
  color:var(--gold); font-size:28px; margin-top:32px;
}

/* ============ STATS BAR ============ */
.stats {
  display:grid; grid-template-columns:repeat(auto-fit, minmax(160px, 1fr));
  gap:32px; padding:48px 0; margin-top:48px;
  border-top:1px solid var(--line);
}
.stat-num {
  font-family:'Cormorant Garamond', serif;
  font-size:48px; color:var(--navy); line-height:1; font-weight:500;
}
.stat-label {
  font-size:11px; color:var(--grey);
  letter-spacing:0.2em; text-transform:uppercase; margin-top:8px;
}

/* ============ JOURNAL / ARTICLES ============ */
.journal-grid {
  display:grid; grid-template-columns:repeat(3, 1fr); gap:32px;
}
@media (max-width:900px) { .journal-grid { grid-template-columns:1fr; } }
.article-card {
  background:var(--cream); border:1px solid var(--line);
  transition:all 0.4s ease; cursor:pointer;
}
.article-card:hover { transform:translateY(-6px); box-shadow:0 24px 60px rgba(14, 42, 71, 0.1); }
.article-image {
  aspect-ratio:4/3;
  background:linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
  position:relative; overflow:hidden;
  display:flex; align-items:center; justify-content:center;
  color:var(--gold-pale); font-family:'Cormorant Garamond', serif;
  font-style:italic; font-size:14px; letter-spacing:0.2em;
  text-transform:uppercase; padding:24px;
}
.article-image::before { content:''; position:absolute; inset:16px; border:1px solid rgba(184, 134, 11, 0.3); }
.article-image.warm { background:linear-gradient(135deg, var(--gold) 0%, #8B6708 100%); }
.article-image.cream {
  background:linear-gradient(135deg, var(--cream-warm) 0%, var(--gold-pale) 100%);
  color:var(--navy);
}
.article-content { padding:32px 28px; }
.article-cat {
  color:var(--gold); font-size:10px; letter-spacing:0.3em;
  text-transform:uppercase; font-weight:600; margin-bottom:14px;
}
.article-title { font-size:24px; color:var(--navy); line-height:1.2; margin-bottom:14px; font-weight:400; }
.article-excerpt { color:var(--grey); font-size:14px; line-height:1.6; margin-bottom:16px; }
.article-meta { color:var(--grey-light); font-size:12px; letter-spacing:0.1em; }

/* ============ FORMS ============ */
.form-row { display:flex; gap:0; max-width:520px; margin:0 auto; }
.form-row input {
  flex:1; padding:20px 24px; background:var(--cream);
  border:1px solid var(--navy); border-right:none;
  font-family:'Inter', sans-serif; font-size:15px; color:var(--navy);
}
.form-row input::placeholder { color:var(--grey-light); }
.form-row input:focus { outline:none; background:var(--cream-soft); }
.form-row button {
  background:var(--navy); color:var(--cream); border:none;
  padding:0 36px; font-size:11px; font-weight:600;
  letter-spacing:0.18em; text-transform:uppercase;
  cursor:pointer; transition:all 0.3s;
}
.form-row button:hover { background:var(--gold); color:var(--navy-deep); }
@media (max-width:540px) {
  .form-row { flex-direction:column; }
  .form-row input { border-right:1px solid var(--navy); border-bottom:none; }
  .form-row button { padding:18px; }
}

.long-form { max-width:560px; margin:0 auto; }
.long-form .field { margin-bottom:24px; }
.long-form label {
  display:block; font-size:11px; color:var(--grey);
  letter-spacing:0.2em; text-transform:uppercase;
  margin-bottom:8px; font-weight:500;
}
.long-form input, .long-form textarea, .long-form select {
  width:100%; padding:14px 18px; background:var(--cream);
  border:1px solid var(--line); border-bottom:1px solid var(--navy);
  font-family:'Inter', sans-serif; font-size:15px; color:var(--navy);
}
.long-form input:focus, .long-form textarea:focus, .long-form select:focus {
  outline:none; border-color:var(--gold);
}
.long-form textarea { min-height:140px; resize:vertical; }
.long-form button {
  background:var(--navy); color:var(--cream); border:none;
  padding:18px 40px; font-size:11px; font-weight:600;
  letter-spacing:0.18em; text-transform:uppercase;
  cursor:pointer; transition:all 0.3s; margin-top:12px;
}
.long-form button:hover { background:var(--gold); color:var(--navy-deep); }

/* ============ CTA SECTION ============ */
.final-cta {
  background:linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 100%);
  color:var(--cream); padding:180px 0; text-align:center;
  position:relative; overflow:hidden;
}
.final-cta::before {
  content:''; position:absolute; inset:0;
  background:radial-gradient(circle at 50% 50%, rgba(184, 134, 11, 0.15) 0%, transparent 60%);
}
.final-cta .wrap { position:relative; z-index:2; }
.final-cta .eyebrow { color:var(--gold-light); justify-content:center; }
.final-cta .eyebrow::before, .final-cta .eyebrow::after { background:var(--gold-light); }
.final-cta h2 {
  font-size:clamp(40px, 7vw, 80px);
  color:var(--cream); margin-bottom:36px; line-height:1.05; font-weight:300;
}
.final-cta h2 em { font-style:italic; color:var(--gold-light); }
.final-cta p {
  color:rgba(250, 246, 238, 0.75); font-size:20px;
  max-width:580px; margin:0 auto 56px; line-height:1.6;
}

/* ============ REVEAL ============ */
.reveal {
  opacity:0; transform:translateY(40px);
  transition:opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.in { opacity:1; transform:translateY(0); }

/* ============ MOBILE MENU — SCROLL FIX ============ */
/* Sitewide override: makes mobile menu scrollable on tall content, tightens spacing on short screens */
#mobile-menu {
  align-items: center !important;
  justify-content: flex-start !important;
  padding: 90px 24px 60px !important;
  overflow-y: auto !important;
  -webkit-overflow-scrolling: touch !important;
}
#mobile-menu .mobile-nav { width:100%; max-width:520px; padding:8px 0; }
#mobile-menu .mobile-nav a {
  font-size: clamp(24px, 5.4vw, 38px) !important;
  padding: 11px 0 !important;
  line-height: 1.18 !important;
}
@media (max-height: 720px) {
  #mobile-menu .mobile-nav a { font-size: clamp(20px, 4.6vw, 30px) !important; padding: 8px 0 !important; }
  #mobile-menu { padding: 70px 24px 40px !important; }
}
@media (max-height: 580px) {
  #mobile-menu .mobile-nav a { font-size: 18px !important; padding: 6px 0 !important; }
  #mobile-menu .menu-ornament { display:none !important; }
}
