/* ==========================================================================
   Aspire Harbor — Master Stylesheet
   ========================================================================== */

/* ---------- Design Tokens ---------- */
:root {
  /* Brand colors */
  --navy-900: #0B1F35;
  --navy-800: #0F2A44;
  --navy-700: #1A3A5C;
  --navy-500: #2E5A80;
  --navy-100: #DDE7F1;

  --gold-600: #B58436;
  --gold-500: #D4A24C;
  --gold-400: #E8B968;
  --gold-100: #FBEED4;

  --teal-600: #3A8578;
  --teal-500: #4A9B8E;
  --teal-100: #DBEDE9;

  --cream: #FAF7F2;
  --cream-dark: #F0EBE1;
  --white: #FFFFFF;

  --ink-900: #0F1419;
  --ink-700: #2C3540;
  --ink-500: #5E6672;
  --ink-300: #9AA1AC;
  --ink-100: #E5E7EB;

  /* Typography */
  --font-serif: 'Fraunces', 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Spacing */
  --container: 1200px;
  --gutter: clamp(20px, 4vw, 40px);

  /* Elevation */
  --shadow-sm: 0 2px 8px rgba(15, 42, 68, 0.06);
  --shadow-md: 0 8px 24px rgba(15, 42, 68, 0.10);
  --shadow-lg: 0 20px 60px rgba(15, 42, 68, 0.15);

  /* Motion */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --dur: 300ms;
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-700);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--dur) var(--ease); }
button { font: inherit; cursor: pointer; border: 0; background: none; }

/* Typography */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  color: var(--navy-900);
  margin: 0 0 0.6em;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.15;
}
h1 { font-size: clamp(2.4rem, 5.5vw, 4.2rem); font-weight: 400; }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.8rem); }
h3 { font-size: clamp(1.35rem, 2.4vw, 1.7rem); }
h4 { font-size: 1.15rem; }
p  { margin: 0 0 1em; }

.eyebrow {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--gold-600);
  margin-bottom: 1rem;
  display: inline-block;
}

.lead { font-size: 1.2rem; color: var(--ink-500); line-height: 1.55; max-width: 42em; }

/* ---------- Layout ---------- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}
section { padding: clamp(60px, 9vw, 120px) 0; }
.section-tight { padding: clamp(40px, 6vw, 80px) 0; }

/* ---------- Navigation ---------- */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 247, 242, 0.85);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid rgba(15, 42, 68, 0.06);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-serif);
  font-size: 1.35rem;
  color: var(--navy-900);
  font-weight: 500;
  letter-spacing: -0.01em;
}
.brand-mark {
  width: 38px; height: 38px;
  background: linear-gradient(135deg, var(--navy-800), var(--navy-500));
  border-radius: 10px;
  display: grid; place-items: center;
  color: var(--gold-400);
  font-weight: 700;
  font-family: var(--font-serif);
  font-size: 1.05rem;
  box-shadow: var(--shadow-sm);
}
.brand-mark svg { width: 22px; height: 22px; }

.nav-links {
  display: flex;
  gap: 34px;
  list-style: none;
  margin: 0; padding: 0;
  align-items: center;
}
.nav-links a {
  font-size: 0.94rem;
  font-weight: 500;
  color: var(--ink-700);
  position: relative;
  padding: 6px 0;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  bottom: 0;
  height: 2px;
  background: var(--gold-500);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur) var(--ease);
}
.nav-links a:hover, .nav-links a.active { color: var(--navy-900); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }

.nav-cta {
  padding: 10px 20px;
  border-radius: 999px;
  background: var(--navy-900);
  color: var(--cream) !important;
  font-size: 0.9rem;
  font-weight: 500;
  transition: transform var(--dur) var(--ease), background var(--dur) var(--ease);
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--navy-700); transform: translateY(-1px); }

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  color: var(--navy-900);
}
.nav-toggle svg { width: 26px; height: 26px; margin: auto; }

@media (max-width: 900px) {
  .nav-links {
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--cream);
    flex-direction: column;
    gap: 0;
    padding: 12px 0 20px;
    border-bottom: 1px solid var(--ink-100);
    box-shadow: var(--shadow-md);
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease);
  }
  .nav-links.open { opacity: 1; pointer-events: auto; transform: translateY(0); }
  .nav-links li { width: 100%; }
  .nav-links a { display: block; padding: 14px var(--gutter); }
  .nav-links a::after { display: none; }
  .nav-cta { margin: 8px var(--gutter); text-align: center; }
  .nav-toggle { display: grid; place-items: center; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 999px;
  font-family: var(--font-sans);
  font-size: 0.98rem;
  font-weight: 500;
  transition: transform var(--dur) var(--ease), background var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
  cursor: pointer;
}
.btn-primary {
  background: var(--navy-900);
  color: var(--cream);
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover { background: var(--navy-700); transform: translateY(-2px); box-shadow: var(--shadow-md); }

.btn-gold {
  background: var(--gold-500);
  color: var(--navy-900);
  box-shadow: var(--shadow-sm);
}
.btn-gold:hover { background: var(--gold-400); transform: translateY(-2px); box-shadow: var(--shadow-md); }

.btn-outline {
  background: transparent;
  color: var(--navy-900);
  border: 1.5px solid var(--navy-900);
}
.btn-outline:hover { background: var(--navy-900); color: var(--cream); }

.btn-ghost {
  color: var(--navy-900);
  padding: 10px 0;
}
.btn-ghost .arrow { transition: transform var(--dur) var(--ease); }
.btn-ghost:hover .arrow { transform: translateX(6px); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: clamp(70px, 10vw, 130px) 0 clamp(80px, 12vw, 140px);
  overflow: hidden;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.hero h1 {
  color: var(--navy-900);
}
.hero h1 em {
  font-style: italic;
  color: var(--gold-600);
  font-family: var(--font-serif);
}
.hero .lead { margin-top: 1.2rem; margin-bottom: 2rem; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-visual {
  position: relative;
  aspect-ratio: 4 / 5;
  max-width: 460px;
  margin-left: auto;
}
.hero-visual .blob {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--navy-800) 0%, var(--navy-500) 50%, var(--teal-500) 100%);
  border-radius: 60% 40% 55% 45% / 50% 55% 45% 50%;
  box-shadow: var(--shadow-lg);
  animation: morph 18s var(--ease) infinite;
}
.hero-visual .accent {
  position: absolute;
  width: 120px; height: 120px;
  border-radius: 50%;
  background: var(--gold-500);
  right: -20px; top: 30px;
  box-shadow: var(--shadow-md);
  opacity: 0.95;
}
.hero-visual .accent-2 {
  position: absolute;
  width: 70px; height: 70px;
  border-radius: 50%;
  background: var(--cream);
  border: 3px solid var(--navy-900);
  left: -20px; bottom: 40px;
}
.hero-visual .dots {
  position: absolute;
  right: 20px; bottom: 20px;
  display: grid;
  grid-template-columns: repeat(6, 8px);
  gap: 10px;
  opacity: 0.8;
}
.hero-visual .dots span {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--navy-900);
}
@keyframes morph {
  0%, 100% { border-radius: 60% 40% 55% 45% / 50% 55% 45% 50%; }
  33% { border-radius: 45% 55% 40% 60% / 55% 45% 55% 45%; }
  66% { border-radius: 50% 50% 45% 55% / 60% 40% 55% 45%; }
}

.hero-bg-shape {
  position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, var(--gold-100) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: -1;
}

@media (max-width: 800px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { margin: 0 auto; max-width: 340px; }
}

/* ---------- Stat strip ---------- */
.stats {
  background: var(--navy-900);
  color: var(--cream);
  padding: 50px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}
.stat-num {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--gold-400);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(250, 247, 242, 0.75);
}
@media (max-width: 700px) { .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; } }

/* ---------- Section heads ---------- */
.section-head {
  max-width: 780px;
  margin: 0 auto 60px;
  text-align: center;
}
.section-head.left { margin-left: 0; text-align: left; }

/* ---------- Service cards (verticals) ---------- */
.verticals {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.vertical-card {
  background: var(--white);
  border-radius: 20px;
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--ink-100);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease);
  display: flex;
  flex-direction: column;
}
.vertical-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold-500);
}
.vertical-card .icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  display: grid; place-items: center;
  margin-bottom: 22px;
  color: var(--cream);
}
.vertical-card:nth-child(1) .icon { background: linear-gradient(135deg, var(--navy-800), var(--navy-500)); }
.vertical-card:nth-child(2) .icon { background: linear-gradient(135deg, var(--teal-600), var(--teal-500)); }
.vertical-card:nth-child(3) .icon { background: linear-gradient(135deg, var(--gold-600), var(--gold-400)); color: var(--navy-900); }
.vertical-card .icon svg { width: 28px; height: 28px; }
.vertical-card h3 { margin-bottom: 8px; }
.vertical-card .tagline {
  font-size: 0.82rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink-500); margin-bottom: 14px; font-weight: 600;
}
.vertical-card p { color: var(--ink-500); margin-bottom: 24px; flex-grow: 1; }
.vertical-card .card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
  color: var(--navy-900);
  font-size: 0.95rem;
}
.vertical-card .card-link .arrow { transition: transform var(--dur) var(--ease); }
.vertical-card .card-link:hover .arrow { transform: translateX(4px); }

@media (max-width: 900px) { .verticals { grid-template-columns: 1fr; } }

/* ---------- Pillars ---------- */
.pillars-section { background: var(--white); }
.pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 40px;
}
.pillar {
  padding: 28px 0;
}
.pillar .num {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  color: var(--gold-500);
  line-height: 1;
  margin-bottom: 14px;
}
.pillar h4 { color: var(--navy-900); margin-bottom: 8px; }
.pillar p { font-size: 0.95rem; color: var(--ink-500); margin: 0; }
@media (max-width: 800px) { .pillars { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .pillars { grid-template-columns: 1fr; } }

/* ---------- Growth Compass ---------- */
.gc-section { background: linear-gradient(180deg, var(--cream) 0%, var(--cream-dark) 100%); }
.gc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 20px;
}
.gc-card {
  background: var(--white);
  border-radius: 24px;
  padding: 44px 40px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--ink-100);
  position: relative;
  overflow: hidden;
}
.gc-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
}
.gc-card:nth-child(1)::before { background: linear-gradient(90deg, var(--navy-800), var(--teal-500)); }
.gc-card:nth-child(2)::before { background: linear-gradient(90deg, var(--gold-500), var(--teal-500)); }

.gc-card h3 { color: var(--navy-900); margin-bottom: 6px; }
.gc-card .sub { font-size: 0.85rem; color: var(--ink-500); margin-bottom: 20px; font-weight: 500; }
.gc-card ul { list-style: none; padding: 0; margin: 20px 0 0; }
.gc-card li {
  padding: 10px 0 10px 26px;
  position: relative;
  font-size: 0.98rem;
  border-bottom: 1px solid var(--ink-100);
}
.gc-card li:last-child { border-bottom: 0; }
.gc-card li::before {
  content: '';
  position: absolute;
  left: 0; top: 18px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold-500);
}
@media (max-width: 800px) { .gc-grid { grid-template-columns: 1fr; } }

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--navy-900);
  color: var(--cream);
  border-radius: 28px;
  padding: clamp(50px, 6vw, 80px) clamp(30px, 5vw, 70px);
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(212, 162, 76, 0.25) 0%, transparent 65%);
  border-radius: 50%;
}
.cta-band h2 { color: var(--cream); margin: 0 0 12px; }
.cta-band p { color: rgba(250, 247, 242, 0.85); margin: 0; }
.cta-band .cta-actions { display: flex; gap: 14px; flex-wrap: wrap; justify-content: flex-end; position: relative; z-index: 1; }
@media (max-width: 800px) {
  .cta-band { grid-template-columns: 1fr; text-align: center; }
  .cta-band .cta-actions { justify-content: center; }
}

/* ---------- Testimonials ---------- */
.testimonials-section { background: var(--white); }
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.testimonial {
  background: var(--cream);
  border-radius: 18px;
  padding: 32px 28px;
  position: relative;
}
.testimonial .quote-mark {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  color: var(--gold-500);
  line-height: 0.5;
  position: absolute;
  top: 24px; left: 22px;
  opacity: 0.5;
}
.testimonial blockquote {
  margin: 30px 0 20px;
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--navy-900);
  font-style: italic;
  line-height: 1.55;
}
.testimonial .attr {
  display: flex; align-items: center; gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--ink-100);
}
.testimonial .avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy-800), var(--teal-500));
  display: grid; place-items: center;
  color: var(--cream);
  font-weight: 600;
  font-size: 0.9rem;
}
.testimonial .name { font-weight: 600; color: var(--navy-900); font-size: 0.95rem; }
.testimonial .role { font-size: 0.82rem; color: var(--ink-500); }
@media (max-width: 900px) { .testimonials { grid-template-columns: 1fr; } }

/* ---------- Founder cards ---------- */
.founders {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}
.founder-card {
  background: var(--white);
  border-radius: 24px;
  padding: 40px 32px 36px;
  text-align: center;
  border: 1px solid var(--ink-100);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.founder-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.founder-avatar {
  width: 100px; height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy-800), var(--teal-500));
  display: grid; place-items: center;
  color: var(--cream);
  font-family: var(--font-serif);
  font-size: 2rem;
  margin: 0 auto 22px;
  box-shadow: var(--shadow-md);
}
.founder-card:nth-child(2) .founder-avatar { background: linear-gradient(135deg, var(--teal-600), var(--gold-500)); }
.founder-card:nth-child(3) .founder-avatar { background: linear-gradient(135deg, var(--gold-600), var(--navy-500)); }
.founder-card h3 { margin-bottom: 4px; }
.founder-card .role { color: var(--gold-600); font-weight: 500; font-size: 0.9rem; margin-bottom: 16px; text-transform: uppercase; letter-spacing: 0.1em; }
.founder-card p { color: var(--ink-500); font-size: 0.98rem; }
@media (max-width: 900px) { .founders { grid-template-columns: 1fr; } }

/* ---------- Program grid ---------- */
.program-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 40px;
}
.program {
  background: var(--white);
  padding: 26px 24px;
  border-radius: 14px;
  border: 1px solid var(--ink-100);
  transition: border-color var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.program:hover { border-color: var(--gold-500); transform: translateY(-3px); }
.program .icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: var(--gold-100);
  color: var(--gold-600);
  display: grid; place-items: center;
  margin-bottom: 16px;
}
.program .icon svg { width: 22px; height: 22px; }
.program h4 { color: var(--navy-900); margin-bottom: 6px; }
.program p { color: var(--ink-500); font-size: 0.92rem; margin: 0; }

/* ---------- Page hero (interior pages) ---------- */
.page-hero {
  background: linear-gradient(135deg, var(--navy-900), var(--navy-700));
  color: var(--cream);
  padding: clamp(80px, 10vw, 130px) 0 clamp(60px, 8vw, 100px);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  bottom: -100px; left: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(212, 162, 76, 0.2), transparent 65%);
  border-radius: 50%;
}
.page-hero::after {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(74, 155, 142, 0.2), transparent 65%);
  border-radius: 50%;
}
.page-hero .eyebrow { color: var(--gold-400); }
.page-hero h1 { color: var(--cream); }
.page-hero p { color: rgba(250, 247, 242, 0.85); max-width: 42em; font-size: 1.15rem; margin-bottom: 0; position: relative; z-index: 1; }
.page-hero-inner { position: relative; z-index: 1; }

/* ---------- Two-col text/visual ---------- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(30px, 5vw, 70px);
  align-items: center;
}
.two-col.reverse { direction: rtl; }
.two-col.reverse > * { direction: ltr; }
.two-col img, .two-col .visual { border-radius: 20px; box-shadow: var(--shadow-md); }
@media (max-width: 800px) { .two-col { grid-template-columns: 1fr; } .two-col.reverse { direction: ltr; } }

/* ---------- Resources / cards ---------- */
.resource-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 40px;
}
.resource {
  background: var(--white);
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--ink-100);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
  display: flex;
  flex-direction: column;
}
.resource:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.resource .thumb {
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, var(--navy-800), var(--teal-500));
  position: relative;
  display: grid; place-items: center;
}
.resource:nth-child(2n) .thumb { background: linear-gradient(135deg, var(--teal-600), var(--gold-500)); }
.resource:nth-child(3n) .thumb { background: linear-gradient(135deg, var(--gold-500), var(--navy-500)); }
.resource .thumb svg { width: 50px; height: 50px; color: rgba(250, 247, 242, 0.7); }
.resource .body { padding: 24px 26px 28px; flex-grow: 1; display: flex; flex-direction: column; }
.resource .tag {
  font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--gold-600); font-weight: 600; margin-bottom: 10px;
}
.resource h4 { margin-bottom: 8px; }
.resource p { color: var(--ink-500); font-size: 0.92rem; flex-grow: 1; }
.resource .read-more { color: var(--navy-900); font-weight: 500; font-size: 0.95rem; margin-top: 8px; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 780px; margin: 40px auto 0; }
.faq {
  border-bottom: 1px solid var(--ink-100);
  padding: 6px 0;
}
.faq summary {
  padding: 22px 0;
  cursor: pointer;
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--navy-900);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  transition: color var(--dur) var(--ease);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+';
  font-family: var(--font-sans);
  font-size: 1.5rem;
  color: var(--gold-500);
  transition: transform var(--dur) var(--ease);
  flex-shrink: 0;
}
.faq[open] summary::after { transform: rotate(45deg); }
.faq[open] summary { color: var(--gold-600); }
.faq .faq-body { padding: 0 0 22px; color: var(--ink-500); }

/* ---------- Contact form ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 50px;
}
.contact-info h3 { margin-bottom: 20px; }
.contact-info .info-item { margin-bottom: 24px; }
.contact-info .info-item .label {
  font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--gold-600); font-weight: 600; margin-bottom: 4px;
}
.contact-info .info-item .value {
  font-family: var(--font-serif); font-size: 1.15rem; color: var(--navy-900);
}
.contact-info .info-item a:hover { color: var(--gold-600); }

.contact-form {
  background: var(--white);
  padding: 44px 40px;
  border-radius: 24px;
  border: 1px solid var(--ink-100);
  box-shadow: var(--shadow-sm);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--navy-900);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 10px;
  border: 1.5px solid var(--ink-100);
  background: var(--cream);
  font: inherit;
  font-size: 0.98rem;
  color: var(--ink-900);
  transition: border-color var(--dur) var(--ease), background var(--dur) var(--ease);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold-500);
  background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 120px; font-family: inherit; }
.form-status { margin-top: 16px; padding: 12px 16px; border-radius: 10px; display: none; font-size: 0.92rem; }
.form-status.success { display: block; background: var(--teal-100); color: var(--teal-600); }

@media (max-width: 800px) {
  .contact-grid { grid-template-columns: 1fr; gap: 30px; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 30px 26px; }
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy-900);
  color: rgba(250, 247, 242, 0.75);
  padding: 70px 0 30px;
  margin-top: 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}
.site-footer .brand { color: var(--cream); margin-bottom: 16px; }
.footer-tag { max-width: 30em; font-size: 0.94rem; margin: 0 0 20px; }
.footer-col h5 {
  font-family: var(--font-sans);
  color: var(--gold-400);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin: 0 0 18px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { color: rgba(250, 247, 242, 0.75); font-size: 0.94rem; }
.footer-col a:hover { color: var(--gold-400); }
.footer-bottom {
  border-top: 1px solid rgba(250, 247, 242, 0.15);
  padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 14px;
  font-size: 0.85rem;
}
.social { display: flex; gap: 12px; }
.social a {
  width: 36px; height: 36px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: rgba(250, 247, 242, 0.08);
  color: var(--cream);
  transition: background var(--dur) var(--ease);
}
.social a:hover { background: var(--gold-500); color: var(--navy-900); }
.social svg { width: 16px; height: 16px; }
@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 500px) { .footer-grid { grid-template-columns: 1fr; } }

/* ---------- Reveal on scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms var(--ease), transform 700ms var(--ease);
}
.reveal.in { opacity: 1; transform: translateY(0); }

/* ---------- Utility ---------- */
.bg-white { background: var(--white); }
.bg-cream { background: var(--cream); }
.text-center { text-align: center; }
.mt-40 { margin-top: 40px; }
.mb-0 { margin-bottom: 0; }
