@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,700;1,400;1,500&family=DM+Sans:wght@300;400;500&family=DM+Serif+Display:ital@0;1&display=swap');

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

:root {
  --forest: #0f2444;
  --forest-mid: #1a3a6b;
  --forest-light: #2d5a9e;
  --cream: #f8f7f5;
  --cream-dark: #eeeae4;
  --gold: #c9a96e;
  --gold-light: #e2c998;
  --gold-pale: #f5edd8;
  --ink: #1a1a1f;
  --ink-mid: #3a3a42;
  --ink-light: #5c5c66;
  --ink-xlight: #8f8f9a;
  --white: #ffffff;
  --border: rgba(15,36,68,0.12);
  --border-gold: rgba(201,169,110,0.3);

  --serif: 'Playfair Display', 'Georgia', serif;
  --serif-display: 'DM Serif Display', 'Georgia', serif;
  --sans: 'DM Sans', system-ui, sans-serif;

  --nav-h: 72px;
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html { scroll-behavior: smooth; font-size: 16px; }

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

/* ────────── SCROLLBAR ────────── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--forest-light); border-radius: 2px; }

/* ────────── SELECTION ────────── */
::selection { background: var(--gold-pale); color: var(--forest); }

/* ────────── NAV ────────── */
#site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  height: var(--nav-h);
  background: var(--forest);
  box-shadow: 0 1px 0 rgba(201,169,110,0.15);
  transition: box-shadow 0.3s var(--ease);
}
#site-nav.scrolled {
  box-shadow: 0 2px 12px rgba(15,36,68,0.25);
}
.nav-inner {
  max-width: 1280px; margin: 0 auto;
  height: 100%; padding: 0 3rem;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  font-family: var(--serif); font-size: 1.1rem; font-weight: 400;
  color: var(--white); text-decoration: none; letter-spacing: 0.01em;
}
.nav-links { display: flex; align-items: center; gap: 2.5rem; list-style: none; }
.nav-links a {
  font-size: 0.75rem; font-weight: 400; letter-spacing: 0.12em;
  text-transform: uppercase; color: rgba(255,255,255,0.7);
  text-decoration: none; position: relative; transition: color 0.3s;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -3px; left: 0; width: 0; height: 1px;
  background: var(--gold); transition: width 0.3s var(--ease);
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a:hover { color: var(--white); }
.nav-links a.active { color: var(--gold-light); }

.nav-cta {
  font-size: 0.72rem; font-weight: 500; letter-spacing: 0.12em;
  text-transform: uppercase; text-decoration: none;
  padding: 0.55rem 1.4rem;
  border: 1px solid rgba(201,169,110,0.5);
  color: var(--gold-light);
  transition: all 0.3s;
}
.nav-cta:hover { background: var(--gold); color: var(--forest); border-color: var(--gold); }

/* Mobile nav */
.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.nav-toggle span {
  display: block; width: 22px; height: 1.5px;
  background: var(--white); transition: all 0.3s;
}
.mobile-menu {
  display: none; position: fixed; top: var(--nav-h); left: 0; right: 0;
  background: var(--forest); border-bottom: 1px solid rgba(201,169,110,0.2);
  flex-direction: column; padding: 2rem 3rem; gap: 1.5rem;
  z-index: 199;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 0.8rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.75); text-decoration: none;
}
.mobile-menu a:hover { color: var(--gold-light); }

@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .nav-inner { padding: 0 1.5rem; }
}

/* ────────── MAIN ────────── */
main { padding-top: var(--nav-h); }

/* ────────── HERO ────────── */
.hero {
  position: relative;
  min-height: calc(100vh - var(--nav-h));
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
}
.hero-left {
  background: var(--forest);
  display: flex; flex-direction: column; justify-content: center;
  padding: 6rem 5rem 6rem 7vw;
  position: relative; z-index: 1;
}
.hero-left::after {
  content: '';
  position: absolute; right: -60px; top: 0; bottom: 0;
  width: 120px;
  background: var(--forest);
  clip-path: polygon(0 0, 40% 0, 100% 50%, 40% 100%, 0 100%);
  z-index: 2;
}
.hero-eyebrow {
  font-size: 0.7rem; font-weight: 500; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 1.8rem;
  display: flex; align-items: center; gap: 0.8rem;
}
.hero-eyebrow::before { content: ''; width: 32px; height: 1px; background: var(--gold); }
.hero-quote {
  font-family: var(--serif); font-style: italic;
  font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 400;
  color: var(--white); line-height: 1.2;
  margin-bottom: 0.6rem;
}
.hero-attr {
  font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255,255,255,0.35); margin-bottom: 2.5rem;
}
.hero-divider { width: 40px; height: 1px; background: var(--gold); margin-bottom: 2rem; }
.hero-desc {
  font-size: 1rem; font-weight: 300; color: rgba(255,255,255,0.72);
  line-height: 1.8; max-width: 420px; margin-bottom: 3rem;
}
.hero-badges {
  display: flex; flex-wrap: wrap; gap: 0.6rem; margin-bottom: 2.5rem;
}
.hero-badge {
  font-size: 0.65rem; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.35rem 0.9rem;
  border: 1px solid rgba(201,169,110,0.35);
  color: var(--gold-light); border-radius: 100px;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-right {
  position: relative; overflow: hidden;
}
.hero-right img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
  filter: brightness(0.88) saturate(0.9);
}
.hero-right::before {
  content: '';
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(135deg, var(--forest) 0%, transparent 40%);
  opacity: 0.5;
}
.hero-stat-bar {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 2;
  background: rgba(28,58,46,0.85);
  backdrop-filter: blur(8px);
  display: flex; justify-content: space-around; padding: 1.5rem 2rem;
}
.hero-stat { text-align: center; }
.hero-stat-num {
  font-family: var(--serif); font-size: 1.8rem; font-weight: 400;
  color: var(--gold); display: block; line-height: 1;
}
.hero-stat-label {
  font-size: 0.65rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.5); margin-top: 0.3rem;
}

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-left { padding: calc(var(--nav-h) + 2rem) 2rem 4rem; }
  .hero-left::after { display: none; }
  .hero-right { height: 50vh; }
}

/* ────────── BUTTONS ────────── */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--sans); font-size: 0.75rem; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  text-decoration: none; padding: 0.85rem 2rem;
  transition: all 0.3s var(--ease); cursor: pointer; border: none;
}
.btn-primary {
  background: var(--gold); color: var(--forest);
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); }
.btn-outline-light {
  background: transparent; color: var(--white);
  border: 1px solid rgba(255,255,255,0.4);
}
.btn-outline-light:hover { background: rgba(255,255,255,0.1); }
.btn-outline-dark {
  background: transparent; color: var(--forest);
  border: 1px solid var(--forest);
}
.btn-outline-dark:hover { background: var(--forest); color: var(--white); }
.btn-forest {
  background: var(--forest); color: var(--white);
}
.btn-forest:hover { background: var(--forest-mid); transform: translateY(-1px); }
.btn svg { width: 14px; height: 14px; transition: transform 0.3s; }
.btn:hover svg { transform: translateX(3px); }

/* ────────── SECTION BASE ────────── */
section { padding: 7rem 2rem; }
.container { max-width: 1200px; margin: 0 auto; }
.container-narrow { max-width: 860px; margin: 0 auto; }
.container-wide { max-width: 1400px; margin: 0 auto; }

.eyebrow {
  font-size: 0.68rem; font-weight: 500; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--gold);
  display: flex; align-items: center; gap: 0.75rem;
  margin-bottom: 1.2rem;
}
.eyebrow::before { content: ''; width: 28px; height: 1px; background: var(--gold); flex-shrink: 0; }

.section-title {
  font-family: var(--serif); font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400; line-height: 1.15; color: var(--ink);
  margin-bottom: 1.5rem;
}
.section-title em { font-style: italic; color: inherit; }
.section-title-light { color: var(--white); }
.section-title-light em { font-style: italic; color: inherit; }

.body-text { font-size: 1rem; font-weight: 300; color: var(--ink-light); line-height: 1.85; }

.rule { width: 48px; height: 1px; background: var(--gold); margin: 1.5rem 0; }

/* ────────── INTRO SECTION ────────── */
.intro-section { background: var(--white); position: relative; overflow: hidden; }
.intro-section::before {
  content: '"'; font-family: var(--serif); font-size: 40rem;
  position: absolute; right: -3rem; top: -10rem;
  color: rgba(28,58,46,0.03); line-height: 1; pointer-events: none;
}
.intro-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 8rem; align-items: center; }
@media (max-width: 900px) { .intro-grid { grid-template-columns: 1fr; gap: 3rem; } }
.intro-body p { margin-bottom: 1.2rem; }

.pill-list { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 2rem; }
.pill {
  font-size: 0.72rem; letter-spacing: 0.08em;
  padding: 0.45rem 1.1rem;
  background: var(--gold-pale); color: var(--forest);
  border-radius: 100px; font-weight: 400;
}

/* ────────── APPROACH CARDS ────────── */
.approach-section { background: var(--forest); }
.approach-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(255,255,255,0.08); margin-top: 4rem; }
@media (max-width: 768px) { .approach-grid { grid-template-columns: 1fr; } }
.approach-card {
  background: var(--forest); padding: 3rem 2.5rem;
  transition: background 0.3s;
}
.approach-card:hover { background: var(--forest-mid); }
.approach-num {
  font-family: var(--serif); font-size: 3.5rem; font-weight: 400;
  color: rgba(201,169,110,0.2); line-height: 1;
  margin-bottom: 1.2rem; display: block;
}
.approach-card h3 {
  font-family: var(--serif); font-size: 1.3rem; font-weight: 400;
  color: var(--white); margin-bottom: 0.8rem;
}
.approach-card p { font-size: 0.9rem; color: rgba(255,255,255,0.55); line-height: 1.8; }

/* ────────── SPECIALTIES ────────── */
.specialties-section { background: var(--cream-dark); }
.spec-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; margin-top: 4rem; }
@media (max-width: 900px) { .spec-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .spec-grid { grid-template-columns: 1fr; } }
.spec-card {
  background: var(--white); padding: 2.5rem 2rem;
  border-bottom: 2px solid transparent;
  transition: border-color 0.3s, transform 0.3s;
}
.spec-card:hover { border-color: var(--gold); transform: translateY(-3px); }
.spec-icon { font-size: 1.5rem; margin-bottom: 1rem; }
.spec-card h3 {
  font-family: var(--serif); font-size: 1.05rem; font-weight: 500;
  color: var(--ink); margin-bottom: 0.5rem;
}
.spec-card p { font-size: 0.85rem; color: var(--ink-light); line-height: 1.7; }

/* ────────── ABOUT PAGE ────────── */
.about-hero-section { background: var(--forest); padding: 6rem 2rem 0; }
.about-hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; max-width: 1200px; margin: 0 auto; align-items: end; }
@media (max-width: 900px) { .about-hero-grid { grid-template-columns: 1fr; } }
.about-hero-content { padding: 2rem 5rem 5rem 0; }
.about-hero-img {
  width: 100%; max-height: 600px; object-fit: cover; object-position: top;
  display: block;
}
.about-bio-section { background: var(--white); }
.about-bio-grid { display: grid; grid-template-columns: 1fr 2fr; gap: 6rem; align-items: start; }
@media (max-width: 900px) { .about-bio-grid { grid-template-columns: 1fr; gap: 3rem; } .credential-block { position: static !important; top: auto !important; } }
.credential-block { position: sticky; top: calc(var(--nav-h) + 2rem); }
.credential-item { margin-bottom: 2rem; padding-bottom: 2rem; border-bottom: 1px solid var(--border); }
.credential-item:last-child { border-bottom: none; }
.credential-label {
  font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 0.4rem;
}
.credential-value { font-size: 0.92rem; color: var(--ink-mid); line-height: 1.6; }
.bio-text p { margin-bottom: 1.5rem; font-size: 1rem; color: var(--ink-light); line-height: 1.9; }
.bio-text p:first-child { font-size: 1.15rem; color: var(--ink); }
.signature {
  font-family: var(--serif); font-style: italic; font-size: 1.5rem;
  color: var(--forest); margin-top: 2.5rem;
}

/* ────────── THERAPY PAGE ────────── */
.therapy-header { background: var(--cream-dark); padding: 6rem 2rem 4rem; }
.services-section { background: var(--white); }
.service-block {
  display: grid; grid-template-columns: 1fr 2fr; gap: 4rem;
  align-items: start; padding: 4rem 0;
  border-bottom: 1px solid var(--border);
}
.service-block:last-child { border-bottom: none; }
@media (max-width: 768px) { .service-block { grid-template-columns: 1fr; gap: 1.5rem; } .service-label-col { position: static !important; top: auto !important; } }
.service-label-col { position: sticky; top: calc(var(--nav-h) + 2rem); }
.service-num {
  font-family: var(--serif); font-size: 4rem; font-weight: 400;
  color: var(--cream-dark); line-height: 1;
}
.service-name {
  font-family: var(--serif); font-size: 1.8rem; font-weight: 400;
  color: var(--forest); line-height: 1.2;
}
.service-list { list-style: none; display: flex; flex-direction: column; gap: 0.8rem; }
.service-list li {
  display: flex; gap: 1rem; align-items: flex-start;
  font-size: 0.95rem; color: var(--ink-light); line-height: 1.6;
  padding-bottom: 0.8rem; border-bottom: 1px solid var(--border);
}
.service-list li:last-child { border-bottom: none; }
.service-list li::before { content: '→'; color: var(--gold); flex-shrink: 0; margin-top: 0.05em; }

/* ────────── APPOINTMENTS ────────── */
.appt-hero { background: var(--forest); padding: 6rem 2rem; }
.appt-content { background: var(--white); }
.appt-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 6rem; }
@media (max-width: 900px) { .appt-grid { grid-template-columns: 1fr; } .appt-sidebar { position: static !important; top: auto !important; } }
.appt-block { margin-bottom: 4rem; padding-bottom: 4rem; border-bottom: 1px solid var(--border); }
.appt-block:last-child { border-bottom: none; margin-bottom: 0; }
.appt-block h2 { font-family: var(--serif); font-size: 1.8rem; color: var(--forest); margin-bottom: 1rem; }
.appt-block p { color: var(--ink-light); margin-bottom: 0.8rem; font-size: 0.95rem; line-height: 1.8; }
.ins-list { list-style: none; margin-top: 1rem; display: flex; flex-direction: column; gap: 0.6rem; }
.ins-list li { display: flex; gap: 0.8rem; font-size: 0.9rem; color: var(--ink-light); line-height: 1.5; }
.ins-list li::before { content: '—'; color: var(--gold); flex-shrink: 0; }
.appt-sidebar { position: sticky; top: calc(var(--nav-h) + 2rem); }
.sidebar-card {
  background: var(--forest); color: var(--white);
  padding: 2.5rem; margin-bottom: 1.5rem;
}
.sidebar-card h3 { font-family: var(--serif); font-size: 1.3rem; margin-bottom: 1rem; }
.sidebar-card p { font-size: 0.88rem; color: rgba(255,255,255,0.65); line-height: 1.75; margin-bottom: 1rem; }
.sidebar-card a { color: var(--gold-light); text-decoration: none; }
.sidebar-card a:hover { text-decoration: underline; }
.info-card { background: var(--gold-pale); padding: 2rem; }
.info-card h3 { font-family: var(--serif); font-size: 1.1rem; color: var(--forest); margin-bottom: 0.8rem; }
.info-card p { font-size: 0.85rem; color: var(--ink-mid); line-height: 1.7; }

/* ────────── FAQ ────────── */
.faq-section { background: var(--white); }
.faq-layout { display: grid; grid-template-columns: 1fr 2fr; gap: 6rem; }
@media (max-width: 900px) { .faq-layout { grid-template-columns: 1fr; gap: 3rem; } }
.faq-intro h2 { font-family: var(--serif); font-size: 2.5rem; line-height: 1.2; color: var(--forest); }
.faq-intro p { margin-top: 1.5rem; color: var(--ink-light); font-size: 0.95rem; line-height: 1.8; }
.faq-accordion { border-top: 1px solid var(--border); }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-btn {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  background: none; border: none; cursor: pointer;
  padding: 1.8rem 0; text-align: left; gap: 2rem;
}
.faq-question {
  font-family: var(--serif); font-size: 1.1rem; font-weight: 400; color: var(--ink);
}
.faq-icon {
  width: 28px; height: 28px; border: 1px solid var(--border);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: all 0.3s; color: var(--forest);
  font-size: 1.1rem; line-height: 1;
}
.faq-btn.open .faq-icon { background: var(--forest); color: var(--white); border-color: var(--forest); transform: rotate(45deg); }
.faq-answer {
  max-height: 0; overflow: hidden;
  font-size: 0.95rem; color: var(--ink-light); line-height: 1.85;
  transition: max-height 0.45s var(--ease), padding 0.3s;
}
.faq-answer.open { max-height: 500px; padding-bottom: 1.8rem; }
.faq-answer strong { color: var(--forest); }

/* ────────── CONTACT ────────── */
.contact-section { background: var(--white); }
.contact-layout { display: grid; grid-template-columns: 1fr 1.5fr; gap: 6rem; }
@media (max-width: 900px) { .contact-layout { grid-template-columns: 1fr; gap: 3rem; } }
.contact-info-block { margin-bottom: 2.5rem; }
.contact-info-block h3 { font-family: var(--serif); font-size: 1.2rem; color: var(--forest); margin-bottom: 0.8rem; }
.contact-info-block p, .contact-info-block a {
  font-size: 0.95rem; color: var(--ink-light); text-decoration: none; line-height: 1.7;
}
.contact-info-block a:hover { color: var(--forest); }
.emergency-banner {
  background: #fff5f5; border-left: 3px solid #c0392b;
  padding: 1.2rem 1.5rem; margin-top: 2rem;
  font-size: 0.85rem; color: #7a2a2a; line-height: 1.6;
}
.contact-form { display: flex; flex-direction: column; gap: 1.5rem; }
.form-row { display: flex; flex-direction: column; gap: 0.4rem; }
.form-row label {
  font-size: 0.68rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--ink-xlight); font-weight: 500;
}
.form-row input, .form-row textarea, .form-row select {
  border: none; border-bottom: 1px solid var(--border);
  background: transparent; padding: 0.8rem 0;
  font-family: var(--sans); font-size: 0.95rem; color: var(--ink);
  outline: none; transition: border-color 0.3s; width: 100%;
  appearance: none;
}
.form-row input:focus, .form-row textarea:focus, .form-row select:focus {
  border-color: var(--forest);
}
.form-row textarea { min-height: 120px; resize: vertical; }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
@media (max-width: 600px) { .form-row-2 { grid-template-columns: 1fr; } }

/* ────────── BLOG ────────── */
.blog-hero-section { background: var(--forest); padding: 6rem 2rem 4rem; }
.blog-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2rem; margin-top: 4rem;
}
@media (max-width: 900px) { .blog-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .blog-grid { grid-template-columns: 1fr; } }
.blog-card {
  background: var(--white); display: flex; flex-direction: column;
  transition: transform 0.3s;
}
.blog-card:hover { transform: translateY(-4px); }
.blog-card-img {
  width: 100%; height: 200px; object-fit: cover;
  display: block; background: var(--cream-dark);
}
.blog-card-img-placeholder {
  width: 100%; height: 200px;
  background: linear-gradient(135deg, var(--forest) 0%, var(--forest-light) 100%);
  display: flex; align-items: center; justify-content: center;
}
.blog-card-img-placeholder span { font-family: var(--serif); font-size: 3rem; color: rgba(255,255,255,0.15); }
.blog-card-body { padding: 2rem; flex: 1; display: flex; flex-direction: column; }
.blog-card-meta {
  font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 0.8rem;
}
.blog-card-title {
  font-family: var(--serif); font-size: 1.1rem; font-weight: 400;
  color: var(--ink); line-height: 1.35; margin-bottom: 0.8rem; flex: 1;
}
.blog-card-excerpt { font-size: 0.85rem; color: var(--ink-light); line-height: 1.7; margin-bottom: 1.2rem; }
.blog-card-link {
  font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--forest); text-decoration: none; font-weight: 500;
  display: flex; align-items: center; gap: 0.4rem;
  transition: gap 0.3s;
}
.blog-card-link:hover { gap: 0.7rem; }

/* ────────── CTA BANNER ────────── */
.cta-section { background: var(--gold-pale); padding: 7rem 2rem; text-align: center; }
.cta-section .section-title { color: var(--forest); }
.cta-section p { color: var(--ink-mid); max-width: 540px; margin: 0 auto 3rem; font-size: 1rem; }

/* ────────── FOOTER ────────── */
#site-footer { background: var(--ink); color: rgba(255,255,255,0.55); }
.footer-top {
  display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 3rem; padding: 5rem 2rem 4rem; max-width: 1200px; margin: 0 auto;
}
@media (max-width: 900px) { .footer-top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-top { grid-template-columns: 1fr; } }
.footer-brand { font-family: var(--serif); font-size: 1.3rem; color: var(--white); margin-bottom: 1rem; }
.footer-tagline { font-size: 0.88rem; line-height: 1.75; max-width: 260px; }
.footer-col-title {
  font-size: 0.65rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.2rem;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links a {
  font-size: 0.88rem; color: rgba(255,255,255,0.45); text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--white); }
.footer-contact p { font-size: 0.88rem; margin-bottom: 0.5rem; }
.footer-contact a { color: rgba(255,255,255,0.45); text-decoration: none; transition: color 0.2s; }
.footer-contact a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  max-width: 1200px; margin: 0 auto;
  padding: 1.8rem 2rem;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 0.5rem;
}
.footer-bottom p { font-size: 0.75rem; color: rgba(255,255,255,0.25); }
.license-badges { display: flex; gap: 1.5rem; }
.license-badge { font-size: 0.65rem; letter-spacing: 0.08em; color: rgba(255,255,255,0.2); }

/* ────────── PAGE HERO (inner pages) ────────── */
.page-hero {
  background: var(--forest); padding: 5rem 2rem 4rem;
  position: relative; overflow: hidden;
}
.page-hero::after {
  content: ''; position: absolute;
  width: 600px; height: 600px; border-radius: 50%;
  right: -200px; top: -200px;
  background: rgba(255,255,255,0.02);
  pointer-events: none;
}
.page-hero-inner { max-width: 1200px; margin: 0 auto; }
.page-hero h1 {
  font-family: var(--serif); font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 400; color: var(--white); margin-bottom: 0.5rem;
}
.page-hero p { color: rgba(255,255,255,0.45); font-size: 0.88rem; letter-spacing: 0.05em; }

/* ────────── SCROLL ANIMATIONS ────────── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
