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

:root {
  --cream: #faf7f2;
  --warm-white: #fff9f3;
  --sand: #e8dfd0;
  --taupe: #c4ae96;
  --warm-brown: #a67c52;
  --dark-brown: #8b6f47;
  --sage: #8a9e8c;
  --sage-light: #c8d5c9;
  --accent-gold: #b8924a;
  --text-dark: #2c1f14;
  --text-mid: #5c4a3a;
  --text-light: #8a7a6e;
  --section-pad: clamp(80px, 10vw, 140px);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--text-dark);
  overflow-x: hidden;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--warm-brown);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ─── NAV ─── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 8vw;
  transition: background 0.4s, box-shadow 0.4s;
}
nav.scrolled {
  background: rgba(250, 247, 242, 0.96);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 var(--sand);
}
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--dark-brown);
  text-decoration: none;
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-mid);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--warm-brown); }
.nav-links a[aria-current="page"] {
  color: var(--warm-brown);
  border-bottom: 1px solid var(--accent-gold);
  padding-bottom: 2px;
}
.nav-cta {
  background: var(--warm-brown);
  color: var(--cream) !important;
  padding: 10px 22px;
  border-radius: 2px;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--dark-brown) !important; color: var(--cream) !important; }
.nav-cta[aria-current="page"] { border-bottom: none; padding-bottom: 10px; }
.nav-hamburger { display: none; cursor: pointer; flex-direction: column; gap: 5px; background: none; border: none; padding: 4px; }
.nav-hamburger span { display: block; width: 24px; height: 1.5px; background: var(--text-dark); transition: 0.3s; }

/* ─── HERO ─── */
#home {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding-top: 80px;
  background: linear-gradient(180deg, var(--warm-white) 0%, var(--cream) 100%);
  overflow: hidden;
  position: relative;
}
.hero-bg-circle {
  position: absolute;
  width: 60vw; height: 60vw;
  max-width: 700px; max-height: 700px;
  right: -10vw; top: 50%;
  transform: translateY(-50%);
  background: radial-gradient(circle, var(--sage-light) 0%, transparent 70%);
  opacity: 0.4;
  pointer-events: none;
}
.hero-text {
  padding: 6vw 6vw 6vw 8vw;
  position: relative;
  z-index: 2;
  animation: fadeUp 0.9s ease both;
}
.hero-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 36px;
  height: 1px;
  background: var(--accent-gold);
}
.hero-text h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--dark-brown);
  margin-bottom: 28px;
}
.hero-text h1 em {
  font-style: italic;
  color: var(--warm-brown);
}
.hero-text p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--text-mid);
  max-width: 480px;
  margin-bottom: 44px;
}
.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.btn-primary {
  display: inline-block;
  padding: 12px 28px;
  border: 1.5px solid var(--warm-brown);
  color: var(--warm-brown);
  background: transparent;
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: background 0.25s, color 0.25s, transform 0.2s;
}
.btn-primary:hover { background: var(--warm-brown); color: var(--cream); transform: translateY(-2px); }
.btn-outline {
  display: inline-block;
  padding: 12px 28px;
  border: 1.5px solid var(--warm-brown);
  color: var(--warm-brown);
  background: transparent;
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: background 0.25s, color 0.25s, transform 0.2s;
}
.btn-outline:hover { background: var(--warm-brown); color: var(--cream); transform: translateY(-2px); }
.hero-image {
  position: relative;
  height: 100vh;
  overflow: hidden;
  animation: fadeIn 1.1s ease both 0.2s;
}
.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

/* ─── SECTION SHARED ─── */
section { padding: var(--section-pad) 8vw; }
.section-label {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.section-label::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--accent-gold);
}
h2.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--dark-brown);
  margin-bottom: 28px;
}
h2.section-title em { font-style: italic; color: var(--warm-brown); }

/* Page header offset so fixed nav doesn't overlap top content on inner pages */
.page-top { padding-top: clamp(120px, 16vh, 180px); }

/* Generic intro band on landing + inner pages */
.intro-band {
  background: var(--cream);
  text-align: center;
}
.intro-band .section-label { justify-content: center; }
.intro-band p {
  font-size: 1.15rem;
  line-height: 1.85;
  color: var(--text-mid);
  max-width: 680px;
  margin: 0 auto;
}

/* Teaser row of what-I-help-with on the home page */
.teaser-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1000px;
  margin: 56px auto 0;
}
.teaser-card {
  padding: 40px 32px;
  background: var(--warm-white);
  border: 1.5px solid var(--sand);
  border-radius: 2px;
  text-align: left;
  transition: border-color 0.25s, transform 0.25s;
}
.teaser-card:hover { border-color: var(--taupe); transform: translateY(-4px); }
.teaser-card .service-icon { font-size: 1.6rem; margin-bottom: 18px; }
.teaser-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--dark-brown);
  margin-bottom: 12px;
}
.teaser-card p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--text-mid);
}
.teaser-card .teaser-link {
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--warm-brown);
  text-decoration: none;
  transition: gap 0.2s;
}
.teaser-card .teaser-link:hover { gap: 14px; }

/* Dual-button row inside CTA bands */
.cta-band .hero-btns { justify-content: center; }

/* ─── ABOUT ─── */
#about {
  background: var(--cream);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8vw;
  align-items: center;
}
.about-image {
  position: relative;
}
.about-image img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 2px;
  display: block;
}
.about-image::before {
  content: '';
  position: absolute;
  inset: -16px -16px 16px 16px;
  border: 1.5px solid var(--sand);
  border-radius: 2px;
  z-index: -1;
}
.about-credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}
.credential-tag {
  padding: 8px 16px;
  background: var(--sand);
  color: var(--warm-brown);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 2px;
}
.about-text p {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--text-mid);
  margin-bottom: 18px;
}

/* ─── WHAT I HELP WITH (pain points) ─── */
#challenges {
  background: #ddd1c2;
  color: var(--text-dark);
  text-align: center;
}
#challenges .section-label {
  justify-content: center;
  color: var(--warm-brown);
}
#challenges .section-label::before {
  background: var(--warm-brown);
}
#challenges h2.section-title {
  color: var(--text-dark);
  margin-bottom: 18px;
}
#challenges h2.section-title em {
  color: var(--warm-brown);
}
#challenges > p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(44,31,20,0.7); /* text-dark, semi-transparent */
  max-width: 620px;
  margin: 0 auto 64px;
}
.challenges-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  max-width: 900px;
  margin: 0 auto;
}
.challenge-card {
  padding: 44px 32px;
  background: rgba(255,255,255,0.18);
  text-align: left;
  transition: background 0.25s;
  border-radius: 2px;
  border: 1.5px solid #d2c7ad;
}
.challenge-card:hover {
  background: rgba(255,255,255,0.32);
}
.challenge-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  color: var(--warm-brown);
  opacity: 0.4;
  line-height: 1;
  margin-bottom: 20px;
}
.challenge-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 12px;
}
.challenge-card p {
  font-size: 0.88rem;
  line-height: 1.7;
  color: var(--text-mid);
}

/* ─── SERVICES ─── */
#services {
  background: var(--warm-white);
}
.services-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8vw;
  align-items: start;
  margin-bottom: 80px;
}
.services-intro p {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--text-mid);
}
.services-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.service-card {
  padding: 50px 44px;
  border: 1.5px solid var(--sand);
  border-radius: 2px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.25s, transform 0.25s;
  background: var(--warm-white);
}
.service-card:hover { border-color: var(--taupe); transform: translateY(-4px); }
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px;
  height: 0;
  background: var(--warm-brown);
  transition: height 0.3s;
}
.service-card:hover::before { height: 100%; }
.service-icon {
  font-size: 1.8rem;
  margin-bottom: 24px;
}
.service-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--dark-brown);
  margin-bottom: 16px;
  line-height: 1.2;
}
.service-card p {
  font-size: 0.92rem;
  line-height: 1.75;
  color: var(--text-mid);
  margin-bottom: 28px;
}
.service-card a {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--warm-brown);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.2s;
}
.service-card a:hover { gap: 14px; }

/* ─── TESTIMONIALS ─── */
#testimonials {
  background: var(--cream);
  text-align: center;
}
#testimonials .section-label { justify-content: center; }
#testimonials h2.section-title { margin-bottom: 64px; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  max-width: 1000px;
  margin: 0 auto;
}
.testimonial-card {
  padding: 48px 44px;
  background: var(--warm-white);
  border-radius: 2px;
  text-align: left;
  position: relative;
}
.testimonial-card::before {
  content: '"';
  font-family: 'Cormorant Garamond', serif;
  font-size: 6rem;
  color: var(--sand);
  line-height: 0.6;
  position: absolute;
  top: 36px;
  left: 36px;
}
.testimonial-card blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-style: italic;
  line-height: 1.7;
  color: var(--text-mid);
  margin-bottom: 28px;
  padding-top: 32px;
}
.testimonial-author {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-gold);
}

/* ─── SPEAKING ─── */
#speaking {
  background: var(--warm-white);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8vw;
  align-items: center;
}
.speaking-image {
  position: relative;
}
.speaking-image::before {
  content: '';
  position: absolute;
  inset: -16px -16px 16px 16px;
  border: 1.5px solid var(--sand);
  border-radius: 2px;
  z-index: -1;
}
.speaking-image img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 2px;
}
.speaking-topics {
  margin: 32px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.speaking-topic {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 0.94rem;
  color: var(--text-mid);
  line-height: 1.6;
}
.speaking-topic::before {
  content: '—';
  color: var(--accent-gold);
  flex-shrink: 0;
  margin-top: 1px;
}
#speaking p {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--text-mid);
}

/* ─── CONTACT ─── */
#contact {
  background: var(--cream);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8vw;
  align-items: start;
}
.contact-info p {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--text-mid);
  margin-bottom: 32px;
}
.contact-info-items { margin-top: 36px; }
.contact-info-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.contact-info-item span:first-child,
.contact-info-item .ci-icon {
  font-size: 1.1rem;
  line-height: 1;
  display: inline-flex;
  align-items: center;
}
.contact-info-item span:last-child,
.contact-info-item .ci-text {
  font-size: 0.92rem;
  color: var(--text-mid);
  line-height: 1.6;
}
.contact-info-item a { color: var(--warm-brown); text-decoration: none; }
.contact-info-item a:hover { text-decoration: underline; }
.contact-fallback {
  margin-top: 8px;
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.7;
}
.contact-fallback a { color: var(--warm-brown); }
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: stretch;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
}
.form-group { display: flex; flex-direction: column; gap: 0px; }
.form-group label {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 4px;
  margin-top: 8px;
}
.form-row .form-group label { margin-top: 0; }
.form-group:first-child label { margin-top: 0; }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 16px 20px;
  background: var(--warm-white);
  border: 1.5px solid var(--sand);
  border-radius: 2px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.94rem;
  color: var(--text-dark);
  transition: border-color 0.2s;
  outline: none;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--warm-brown); }
.form-group textarea { resize: vertical; min-height: 130px; }
.form-group select:invalid { color: var(--text-light); }
.form-group select option[value=""] { color: var(--text-light); }
.form-submit {
  margin-top: 8px;
  padding: 14px 0;
  background: linear-gradient(135deg, var(--warm-brown) 0%, var(--dark-brown) 100%);
  color: var(--cream);
  border: none;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.94rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: filter 0.25s, transform 0.2s;
  text-align: center;
  display: block;
  width: 100%;
  box-sizing: border-box;
}
.form-submit:hover { filter: brightness(1.08); transform: translateY(-2px); }
.contact-form form { width: 100%; }
.form-success {
  display: none;
  padding: 22px;
  background: var(--sage-light);
  color: var(--dark-brown);
  border-radius: 2px;
  font-size: 0.94rem;
  line-height: 1.65;
  text-align: center;
}
.form-reset-btn {
  margin-top: 12px;
  padding: 12px 0;
  background: transparent;
  color: var(--warm-brown);
  border: 1.5px solid var(--warm-brown);
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: background 0.25s, color 0.25s, transform 0.2s;
  width: 100%;
}
.form-reset-btn:hover {
  background: var(--warm-brown);
  color: var(--cream);
  transform: translateY(-2px);
}
/* Fixed image placeholder styles */
.hero-image img, .about-image img, .speaking-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-image {
  min-height: 500px;
}

/* ─── CTA BAND ─── */
.cta-band {
  background: linear-gradient(135deg, var(--sage-light) 0%, var(--cream) 100%);
  text-align: center;
  padding: var(--section-pad) 8vw;
}
.cta-band .section-label { justify-content: center; }
.cta-band h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--dark-brown);
  margin-bottom: 20px;
}
.cta-band h2 em { font-style: italic; color: var(--warm-brown); }
.cta-band p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-mid);
  max-width: 560px;
  margin: 0 auto 36px;
}

/* ─── PULL QUOTE (home) ─── */
.pull-quote {
  background: var(--warm-white);
  text-align: center;
}
.pull-quote blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.4rem, 2.6vw, 2.1rem);
  font-style: italic;
  line-height: 1.5;
  color: var(--dark-brown);
  max-width: 820px;
  margin: 0 auto 24px;
}
.pull-quote .testimonial-author { display: block; }
.pull-quote a {
  display: inline-block;
  margin-top: 32px;
}

/* ─── LEGAL / PROSE PAGES ─── */
.prose {
  max-width: 760px;
  margin: 0 auto;
  padding: clamp(120px, 16vh, 180px) 8vw var(--section-pad);
}
.prose .section-label { margin-bottom: 16px; }
.prose h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 400;
  color: var(--dark-brown);
  line-height: 1.15;
  margin-bottom: 12px;
}
.prose .updated {
  font-size: 0.82rem;
  color: var(--text-light);
  margin-bottom: 32px;
}
.prose .legal-note {
  background: var(--sand);
  border-left: 3px solid var(--accent-gold);
  padding: 18px 22px;
  border-radius: 2px;
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--text-mid);
  margin-bottom: 40px;
}
.prose h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--dark-brown);
  margin: 40px 0 14px;
}
.prose p, .prose li {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--text-mid);
  margin-bottom: 16px;
}
.prose ul { margin: 0 0 16px 22px; }
.prose a { color: var(--warm-brown); }

/* ─── 404 ─── */
.notfound {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 8vw;
  background: linear-gradient(180deg, var(--warm-white) 0%, var(--cream) 100%);
}
.notfound .num {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(5rem, 14vw, 9rem);
  color: var(--taupe);
  line-height: 1;
  margin-bottom: 12px;
}
.notfound h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 400;
  color: var(--dark-brown);
  margin-bottom: 18px;
}
.notfound p {
  font-size: 1.05rem;
  color: var(--text-mid);
  max-width: 460px;
  margin-bottom: 36px;
  line-height: 1.7;
}

/* ─── FOOTER ─── */
footer {
  background: #ddd1c2;
  padding: 60px 8vw 36px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 5vw;
  margin-bottom: 60px;
}
.footer-brand p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 16px;
  color: var(--accent-gold);
}
.footer-brand span {
  font-size: 0.85rem;
  color: var(--text-mid);
  line-height: 1.7;
  display: block;
}
.footer-col h4 {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 20px;
  color: var(--accent-gold);
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul li a {
  font-size: 0.88rem;
  color: var(--text-mid);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--dark-brown); }
.footer-bottom {
  border-top: 1px solid rgba(0,0,0,0.08);
  padding-top: 28px;
}
.footer-bottom p {
  font-size: 0.78rem;
  color: var(--text-mid);
}

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-text, .hero-image { animation: none; }
}

/* ─── MOBILE NAV OVERLAY ─── */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--warm-white);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 36px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  color: var(--dark-brown);
  text-decoration: none;
  letter-spacing: 0.05em;
}
.mobile-close {
  position: absolute;
  top: 24px; right: 6vw;
  font-size: 1.8rem;
  cursor: pointer;
  color: var(--text-dark);
  background: none;
  border: none;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  #home { grid-template-columns: 1fr; }
  .hero-image { height: 60vw; min-height: 320px; order: -1; }
  .hero-text { padding: 48px 6vw; }
  #about, #speaking, #contact { grid-template-columns: 1fr; }
  .about-image, .speaking-image { order: -1; }
  .services-intro { grid-template-columns: 1fr; }
  .services-cards { grid-template-columns: 1fr; }
  .challenges-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .teaser-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 36px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  section { padding: clamp(60px, 14vw, 90px) 7vw; }
  .footer-inner { grid-template-columns: 1fr; }
  .hero-text h1 { font-size: clamp(2.4rem, 9vw, 3.2rem); }
  .challenge-card, .service-card, .testimonial-card, .teaser-card { padding: 32px 26px; }
  .mobile-menu a { font-size: 1.6rem; }
}
