/* =====================================================
   MELISSA PSYCHOLOGY — EDITORIAL DESIGN SYSTEM
   ===================================================== */

:root {
  /* Color */
  --color-bg:        #FAF8F5;
  --color-bg-alt:     #EFE4D2;
  --color-bg-dark:    #1C1A17;
  --color-text:       #222222;
  --color-text-soft:  #666666;
  --color-text-inverse: #FAF8F5;
  --color-accent:     #A69277;   /* muted taupe */
  --color-accent-soft:#C9BCA5;
  --color-copper:     #E8832E;   /* bold warm orange, for icons/highlights/CTAs */
  --color-copper-dark: #8B5E38;  /* muted dark copper, for Learn More buttons */
  --color-copper-light: #F3B87A; /* soft elegant light orange, for detail-page action buttons */
  --color-orange:     #DD7A34;   /* vivid warm orange, for result stat numbers */
  --color-border:     #E1DACB;
  --color-border-dark: rgba(250,248,245,0.28);

  /* Type */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Layout */
  --container: 1180px;
  --gutter: clamp(24px, 6vw, 96px);
  --section-pad: clamp(72px, 12vw, 160px);

  /* Motion */
  --ease: cubic-bezier(0.65, 0, 0.35, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; height: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}
body {
  margin: 0;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
main { flex: 1 0 auto; }
.footer { flex-shrink: 0; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
button { font: inherit; background: none; border: none; cursor: pointer; color: inherit; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 500; margin: 0; letter-spacing: -0.01em; }
p { margin: 0; }

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  background: var(--color-text); color: var(--color-bg); padding: 12px 20px;
}
.skip-link:focus { left: 16px; top: 16px; }

:focus-visible {
  outline: 2px solid var(--color-copper);
  outline-offset: 3px;
}

.section-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-copper);
  margin-bottom: 18px;
  font-weight: 500;
}
.eyebrow.center { text-align: center; }
.center { text-align: center; }

h1 { font-size: clamp(2rem, 4vw, 2.9rem); line-height: 1.15; }
h2 { font-size: clamp(2rem, 4vw, 2.9rem); line-height: 1.15; }
h3 { font-size: clamp(1.35rem, 2.4vw, 1.7rem); line-height: 1.25; }

/* ---------- Reveal on scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* =====================================================
   BUTTONS
   ===================================================== */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 16px 34px;
  border: 1px solid currentColor;
  border-radius: 999px;
  background: transparent;
  transition: background 0.4s var(--ease), color 0.4s var(--ease), border-color 0.4s var(--ease), transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 14px 28px -16px rgba(28,26,23,0.35); }
.btn-solid {
  background: var(--color-text);
  border-color: var(--color-text);
  color: var(--color-bg);
}
.btn-solid:hover { background: transparent; color: var(--color-text); }

.btn-outline {
  background: transparent;
  border-color: var(--color-text);
  color: var(--color-text);
}
.btn-outline:hover { background: var(--color-text); color: var(--color-bg); }

.btn-ghost-light {
  background: transparent;
  border-color: var(--color-text-inverse);
  color: var(--color-text-inverse);
}
.btn-ghost-light:hover { background: var(--color-text-inverse); color: var(--color-bg-dark); }

.btn-whatsapp {
  background: var(--color-copper);
  border-color: var(--color-copper);
  color: var(--color-bg);
}
.btn-whatsapp:hover { background: transparent; color: var(--color-copper); }

/* =====================================================
   NAVIGATION
   ===================================================== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 26px 0;
  background:
    radial-gradient(ellipse 60% 220% at 12% 0%, rgba(232,131,46,0.28) 0%, transparent 70%),
    linear-gradient(150deg, #17140f 0%, #0e0c0a 60%, #1a1512 100%);
  transition: padding 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.nav.is-scrolled {
  padding: 14px 0;
  box-shadow: 0 8px 24px -12px rgba(0,0,0,0.45);
}
.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.02em;
  color: var(--color-text-inverse);
  white-space: nowrap;
}

.nav-links {
  display: flex;
  gap: 32px;
  font-size: 0.82rem;
  letter-spacing: 0.03em;
}
.nav-links a {
  color: var(--color-text-inverse);
  position: relative;
  padding-bottom: 4px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1px;
  background: currentColor;
  transition: width 0.35s var(--ease);
}
.nav-links a:hover::after { width: 100%; }
.nav-links a.is-current::after { width: 100%; background: var(--color-copper); }

.nav-right { display: flex; align-items: center; gap: 22px; }

.lang-switch {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  color: var(--color-text-inverse);
}
.lang-btn { opacity: 0.6; transition: opacity 0.3s var(--ease); padding: 2px; }
.lang-btn.is-active, .lang-btn:hover { opacity: 1; }
.lang-divider { opacity: 0.45; }

.nav-cta { padding: 10px 20px; font-size: 0.72rem; }
.nav-cta.btn-outline { color: var(--color-text-inverse); border-color: var(--color-text-inverse); }
.nav-cta.btn-outline:hover { background: var(--color-text-inverse); color: var(--color-bg-dark); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  width: 26px;
}
.nav-toggle span {
  display: block; height: 1px; width: 100%;
  background: var(--color-text-inverse);
  transition: transform 0.35s var(--ease);
}

/* Home page nav — matches the video's own night-sky gradient (colors
   sampled directly from the top of the hero video) so there's no visible
   seam between the nav and the footage. Scoped to .nav-mono (index.html only). */
.nav.nav-mono {
  background: linear-gradient(90deg,
    #05080d 0%,
    #070b11 6.2%,
    #090f16 12.5%,
    #0a111a 18.8%,
    #0e161e 25%,
    #0f1721 31.2%,
    #131c26 37.5%,
    #18202c 43.8%,
    #192331 50%,
    #1a2533 56.2%,
    #172838 62.5%,
    #152537 68.8%,
    #112134 75%,
    #0e2130 81.2%,
    #0e202f 87.5%,
    #0b1c29 93.8%,
    #081726 100%);
}
.nav.nav-mono .nav-logo,
.nav.nav-mono .nav-links a,
.nav.nav-mono .lang-switch {
  color: var(--color-text-inverse);
}
.nav.nav-mono .nav-links a.is-current::after { background: var(--color-text-inverse); }
.nav.nav-mono .nav-toggle span { background: var(--color-text-inverse); }
.nav.nav-mono .nav-cta.btn-outline { color: var(--color-text-inverse); border-color: var(--color-text-inverse); }
.nav.nav-mono .nav-cta.btn-outline:hover { background: var(--color-text-inverse); color: var(--color-bg-dark); }

/* =====================================================
   HERO
   ===================================================== */
.hero {
  position: relative;
}

/* Full-bleed huge photo — the actual first page */
.hero-photo-full {
  position: relative;
  width: 100%;
  height: 100svh;
  min-height: 620px;
  overflow: hidden;
}
.hero-motion {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: #08080a;
  z-index: 1;
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 42%;
}
@media (prefers-reduced-motion: reduce) {
  .hero-video { animation: none; }
}
.hero-photo-veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(245deg, rgba(0,0,0,0.12) 30%, rgba(0,0,0,0.42) 55%, rgba(0,0,0,0.52) 100%);
  pointer-events: none;
  z-index: 2;
}
.hero-photo-content {
  position: absolute;
  top: 30%;
  left: 6%;
  right: 56%;
  text-align: left;
  z-index: 3;
}
@media (min-width: 981px) {
  .hero-photo-content { top: 35%; }
}
.hero-photo-text {
  text-align: center;
  max-width: 50ch;
  margin: 0 auto;
}
.hero-photo-text h1 {
  font-family: var(--font-body);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.55;
  font-weight: 400;
  letter-spacing: -0.005em;
  color: #FAFAFA;
  text-shadow: 0 1px 20px rgba(0,0,0,0.4);
  text-wrap: balance;
}
.hero-photo-text em {
  font-style: italic;
  font-family: var(--font-display);
}
.hero-photo-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  margin-top: 42px;
  flex-wrap: wrap;
}
@media (min-width: 981px) {
  .hero-photo-actions { margin-top: 60px; }
}
.hero-photo-actions .btn-solid {
  background: var(--color-bg);
  border-color: var(--color-bg);
  color: var(--color-text);
}
.hero-photo-actions .btn-solid:hover {
  background: transparent;
  border-color: var(--color-text-inverse);
  color: var(--color-text-inverse);
}
.hero-photo-actions .btn-outline {
  background: transparent;
  border-color: var(--color-text-inverse);
  color: var(--color-text-inverse);
}
.hero-photo-actions .btn-outline:hover {
  background: var(--color-text-inverse);
  color: var(--color-bg-dark);
}
.hero-photo-actions .btn {
  padding: 13px 26px;
  font-size: 0.72rem;
}

@media (max-width: 980px) {
  .hero-photo-content { top: 26%; left: 6%; right: 46%; }
}
@media (max-width: 620px) {
  .hero-photo-content { top: auto; bottom: 6%; right: 6%; left: 6%; }
  .hero-photo-text h1 { font-size: 0.8rem; line-height: 1.5; margin-bottom: 44px; }
  .hero-photo-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    margin-top: 0;
  }
  .hero-photo-actions .btn {
    text-align: center;
    padding: 9px 18px;
    font-size: 0.68rem;
    letter-spacing: 0.06em;
  }
  .intro .eyebrow {
    font-size: 0.56rem;
    letter-spacing: 0.1em;
    white-space: nowrap;
  }
}

/* ============================================================
   ABOUT — portrait hero (photo + short bio, no titles)
   Desktop: bio sits as an overlay in the empty gray area beside
   her face. Mobile: bio moves below the photo, in normal flow,
   never overlapping the face.
   ============================================================ */
.about-portrait {
  position: relative;
}
.about-portrait-media {
  position: relative;
  width: 100%;
  aspect-ratio: 1448 / 1086;
  overflow: hidden;
  background: #b4b4b4;
}
.about-portrait-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 32% 30%;
  display: block;
}
.about-portrait-bio {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.about-portrait-bio-inner {
  position: absolute;
  left: 50%;
  right: 5%;
  top: 16%;
  bottom: 28%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-portrait-bio-inner p {
  font-family: var(--font-body);
  font-size: 0.92rem;
  line-height: 1.7;
  letter-spacing: 0.01em;
  color: #3a3a3a;
  text-align: center;
  max-width: 34ch;
  margin: 0;
}
.about-portrait-bio-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 4px;
}

@media (max-width: 860px) {
  .about-portrait-media {
    aspect-ratio: 4 / 5;
  }
  .about-portrait-img {
    object-position: 38% 22%;
  }
  .about-portrait-bio {
    position: absolute;
    inset: 0;
    pointer-events: none;
    padding: 0;
  }
  .about-portrait-bio-inner {
    position: absolute;
    left: 64%;
    right: 6%;
    top: 25%;
    bottom: 53%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .about-portrait-bio-inner p {
    font-size: 0.38rem;
    line-height: 1.45;
    max-width: none;
    margin: 0;
    color: #2c2c2c;
  }
}

/* About page nav — matches the portrait's light gray studio backdrop,
   sampled directly from the photo, so there's no visible seam. Text
   flips to dark since the background here is light, not dark.
   Scoped to .nav-about-mono (about.html only). */
.nav.nav-about-mono {
  background: linear-gradient(90deg,
    #999999 0%,
    #a8a8a8 20%,
    #afafaf 40%,
    #afafaf 60%,
    #a5a5a4 80%,
    #969696 100%);
}
.nav.nav-about-mono .nav-logo,
.nav.nav-about-mono .nav-links a,
.nav.nav-about-mono .lang-switch {
  color: #2a2a2a;
}
.nav.nav-about-mono .nav-links a.is-current::after { background: #2a2a2a; }
.nav.nav-about-mono .nav-toggle span { background: #2a2a2a; }
.nav.nav-about-mono .nav-cta.btn-outline { color: #2a2a2a; border-color: #2a2a2a; }
.nav.nav-about-mono .nav-cta.btn-outline:hover { background: #2a2a2a; color: #f5f5f5; }

@media (max-width: 760px) {
  .nav.nav-about-mono { padding: 13px 0; }
  .nav.nav-about-mono .nav-logo { font-size: 0.56rem; }
  .nav.nav-about-mono .lang-switch { font-size: 0.38rem; gap: 3px; }
  .nav.nav-about-mono .nav-toggle { width: 20px; gap: 5px; }
}

/* Intro statement section — the big editorial headline, right below the hero */
.intro {
  padding: clamp(70px, 11vw, 130px) 0 clamp(90px, 12vw, 150px);
  position: relative;
  background:
    radial-gradient(ellipse 65% 55% at 12% 15%, rgba(232,131,46,0.4) 0%, transparent 60%),
    radial-gradient(ellipse 55% 50% at 88% 85%, rgba(120,90,60,0.28) 0%, transparent 55%),
    radial-gradient(ellipse 90% 70% at 50% 100%, rgba(60,48,36,0.5) 0%, transparent 70%),
    linear-gradient(150deg, #17140f 0%, #0e0c0a 55%, #1a1512 100%);
  overflow: hidden;
}
.intro::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(115deg, rgba(255,255,255,0.015) 0px, rgba(255,255,255,0.015) 1px, transparent 1px, transparent 3px);
  pointer-events: none;
}
.intro .section-inner { position: relative; z-index: 1; }
.intro .eyebrow { color: var(--color-copper); }
.intro-title {
  font-family: var(--font-body);
  font-weight: 300;
  font-style: normal;
  font-size: clamp(1.5rem, 2.8vw, 2.15rem);
  line-height: 1.6;
  letter-spacing: -0.005em;
  max-width: 42ch;
  margin: 0 auto clamp(56px, 8vw, 90px);
  color: var(--color-text-inverse);
}

/* Premium single-bar statistics */
.stats-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 880px;
  margin: 0 auto;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.35) 0%, rgba(255,255,255,0) 40%),
    var(--color-bg-alt);
  border: 1px solid var(--color-border);
  border-radius: 20px;
  padding: clamp(26px, 3vw, 38px) clamp(18px, 3vw, 40px);
  gap: clamp(12px, 2.4vw, 28px);
  box-shadow: 0 1px 1px rgba(60,45,25,0.03), 0 20px 40px -28px rgba(60,45,25,0.35);
  transition: border-color 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.stats-bar:hover {
  border-color: var(--color-copper);
  box-shadow: 0 1px 1px rgba(60,45,25,0.04), 0 26px 48px -26px rgba(60,45,25,0.42);
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1;
  justify-content: center;
  min-width: 0;
}
.stat-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(232,131,46,0.1);
  color: var(--color-copper);
  transition: transform 0.45s var(--ease), background 0.45s var(--ease);
}
.stat-icon svg { width: 24px; height: 24px; display: block; }
.stat-item:hover .stat-icon {
  transform: translateY(-3px) scale(1.08);
  background: rgba(232,131,46,0.16);
}

.stat-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
  text-align: left;
  min-width: 0;
}
.stat-value {
  display: flex;
  align-items: baseline;
  gap: 2px;
  font-family: var(--font-body);
}
.stat-value .stat-number {
  font-family: var(--font-body);
  font-weight: 600;
  font-style: normal;
  font-size: clamp(1.2rem, 1.8vw, 1.5rem);
  color: var(--color-text);
  letter-spacing: -0.01em;
  line-height: 1;
}
.stat-value .stat-plus {
  font-family: var(--font-body);
  font-weight: 500;
  font-style: normal;
  font-size: clamp(0.95rem, 1.3vw, 1.1rem);
  color: var(--color-copper);
  line-height: 1;
}
.stat-label {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-text-soft);
  white-space: normal;
  line-height: 1.35;
  max-width: 16ch;
}
.stat-divider {
  width: 1px;
  align-self: stretch;
  background: var(--color-border);
  flex-shrink: 0;
}

/* Dark-mode variant: the stats bar sits inside the dark .intro section */
.intro .stats-bar {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0) 45%),
    rgba(255,255,255,0.03);
  border-color: rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  box-shadow: 0 1px 1px rgba(0,0,0,0.2), 0 24px 48px -28px rgba(0,0,0,0.6);
}
.intro .stats-bar:hover {
  border-color: var(--color-copper);
  box-shadow: 0 1px 1px rgba(0,0,0,0.25), 0 30px 56px -26px rgba(0,0,0,0.7);
}
.intro .stat-divider { background: rgba(255,255,255,0.14); }
.intro .stat-value .stat-number { color: var(--color-text-inverse); }
.intro .stat-label { color: rgba(250,248,245,0.62); }
.intro .stat-icon { background: rgba(232,131,46,0.18); }
.intro .stat-item:hover .stat-icon { background: rgba(232,131,46,0.28); }

@media (max-width: 760px) {
  .stats-bar {
    flex-direction: column;
    align-items: stretch;
    gap: 22px;
    max-width: 340px;
  }
  .stat-divider { width: 100%; height: 1px; }
  .stat-item { justify-content: center; }
  .stat-text { text-align: center; }
  .stat-value { justify-content: center; }
  .stat-label { white-space: normal; max-width: 22ch; }
}

/* =====================================================
   ABOUT PAGE
   ===================================================== */
.about-hero { padding: clamp(150px, 16vw, 200px) 0 clamp(70px, 9vw, 110px); }
.about-hero-grid {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
}
.about-hero-media {
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 1px 1px rgba(60,45,25,0.04), 0 30px 54px -30px rgba(40,30,18,0.4);
}
.about-hero-photo {
  width: 100%;
  height: auto;
  display: block;
  filter: grayscale(0.35) contrast(1.04);
}
.about-hero-copy h1 { margin-bottom: 56px; }
.service-detail-psychotherapy .about-hero-copy h1 { text-align: center; }
.service-detail-psychotherapy .about-hero-copy .eyebrow { justify-content: center; text-align: center; }
.service-detail-coaching .about-hero-copy h1 { text-align: center; }
.service-detail-coaching .about-hero-copy .eyebrow { justify-content: center; text-align: center; }
@media (min-width: 861px) {
  .service-detail-coaching .about-hero-grid { grid-template-columns: 1.25fr 1fr; }
  .service-detail-coaching .about-hero-copy .eyebrow { font-size: 0.56rem; }
}
.service-detail-couples .about-hero-copy h1 { text-align: center; }
.service-detail-couples .about-hero-copy .eyebrow { justify-content: center; text-align: center; }
.about-hero-copy .eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 32px;
  white-space: nowrap;
  letter-spacing: 0.12em;
}
.about-hero-copy .eyebrow::before {
  content: '';
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #3EBD6E;
  box-shadow: 0 0 0 3px rgba(62,189,110,0.2);
  flex-shrink: 0;
}
.about-hero-lead {
  font-family: var(--font-display);
  font-style: normal;
  font-weight: 400;
  font-size: 1.2rem;
  color: var(--color-text);
  margin-top: 8px;
  margin-bottom: 20px;
  line-height: 1.6;
  text-align: center;
}
.about-hero-copy p:not(.about-hero-lead) { color: var(--color-text-soft); font-weight: 300; font-size: 1.02rem; line-height: 1.7; }

.about-quote { padding: clamp(50px, 8vw, 90px) 0; background: var(--color-bg-alt); }
.pull-quote {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.4rem, 3vw, 2rem);
  line-height: 1.5;
  color: var(--color-text);
  position: relative;
  padding: 0 20px;
}
.pull-quote::before {
  content: '';
  display: block;
  width: 46px; height: 2px;
  background: var(--color-copper);
  margin: 0 auto 28px;
}

.about-cta {
  padding: clamp(70px, 9vw, 110px) 0;
  text-align: center;
  background: var(--color-bg);
}
.about-cta-actions { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }
@media (min-width: 861px) {
  .about-cta-actions { margin-top: 46px; }
}
.about-cta-actions .btn {
  padding: 11px 24px;
  font-size: 0.72rem;
}
@media (max-width: 860px) {
  .about-cta-actions .btn {
    padding: 8px 16px;
    font-size: 0.58rem;
  }
}
.about-cta-actions .btn-solid {
  background: var(--color-copper);
  border-color: var(--color-copper);
  color: var(--color-bg);
}
.about-cta-actions .btn-solid:hover {
  background: transparent;
  color: var(--color-copper);
}
.about-cta-actions .btn-outline {
  background: transparent;
  border-color: var(--color-text);
  color: var(--color-text);
}
.about-cta-actions .btn-outline:hover {
  background: var(--color-text);
  color: var(--color-bg);
}

@media (max-width: 860px) {
  .about-hero-grid { grid-template-columns: 1fr; }
  .about-hero-copy h1 { text-align: center; }
  .about-hero-copy .eyebrow { font-size: 0.5rem; letter-spacing: 0.03em; white-space: nowrap; margin-bottom: 24px; justify-content: center; text-align: center; }
  .service-detail-psychotherapy.about-hero { padding-bottom: 20px; }
  .service-detail-psychotherapy.service-detail-body { padding-top: 8px; }
  .service-detail-psychotherapy .about-hero-copy .eyebrow { font-size: 0.36rem; }
  .service-detail-psychotherapy .about-hero-lead { font-size: 0.66rem; line-height: 1.55; }
  .service-detail-psychotherapy .service-detail-col h2 { font-size: 0.7rem; margin-bottom: 14px; }
  .service-detail-psychotherapy .service-detail-list { gap: 8px; }
  .service-detail-psychotherapy .service-detail-list li { font-size: 0.56rem; padding-left: 16px; }
  .service-detail-psychotherapy.service-detail-pricing h2 { font-size: 1.5rem; margin-bottom: 16px; }
  .service-detail-psychotherapy .price-row { font-size: 0.56rem; padding: 10px 0; }
  .service-detail-psychotherapy .price-value { font-size: 0.62rem; }
  .service-detail-psychotherapy .price-value em { font-size: 0.42rem; }
  .service-detail-psychotherapy .service-detail-btn { font-size: 0.44rem; padding: 7px 14px; }

  .service-detail-coaching.about-hero { padding-bottom: 20px; }
  .service-detail-coaching.service-detail-body { padding-top: 8px; }
  .service-detail-coaching .about-hero-copy .eyebrow { font-size: 0.36rem; }
  .service-detail-coaching .about-hero-lead { font-size: 0.66rem; line-height: 1.55; }
  .service-detail-coaching .service-detail-col h2 { font-size: 0.7rem; margin-bottom: 14px; }
  .service-detail-coaching .service-detail-list { gap: 8px; }
  .service-detail-coaching .service-detail-list li { font-size: 0.56rem; padding-left: 16px; }
  .service-detail-coaching.service-detail-pricing h2 { font-size: 1.5rem; margin-bottom: 16px; }
  .service-detail-coaching .price-row { font-size: 0.56rem; padding: 10px 0; }
  .service-detail-coaching .price-value { font-size: 0.62rem; }
  .service-detail-coaching .price-value em { font-size: 0.42rem; }
  .service-detail-coaching .service-detail-btn { font-size: 0.44rem; padding: 7px 14px; }

  .service-detail-couples.about-hero { padding-bottom: 20px; }
  .service-detail-couples.service-detail-body { padding-top: 8px; }
  .service-detail-couples .about-hero-copy .eyebrow { font-size: 0.36rem; }
  .service-detail-couples .about-hero-lead { font-size: 0.66rem; line-height: 1.55; }
  .service-detail-couples .service-detail-col h2 { font-size: 0.7rem; margin-bottom: 14px; }
  .service-detail-couples .service-detail-list { gap: 8px; }
  .service-detail-couples .service-detail-list li { font-size: 0.56rem; padding-left: 16px; }
  .service-detail-couples.service-detail-pricing h2 { font-size: 1.5rem; margin-bottom: 16px; }
  .service-detail-couples .price-row { font-size: 0.56rem; padding: 10px 0; }
  .service-detail-couples .price-value { font-size: 0.62rem; }
  .service-detail-couples .price-value em { font-size: 0.42rem; }
  .service-detail-couples .service-detail-btn { font-size: 0.44rem; padding: 7px 14px; }
}

/* =====================================================
   APPROACH
   ===================================================== */
.approach { padding: var(--section-pad) 0; background: var(--color-bg-alt); }
.approach-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(40px, 6vw, 90px);
}
.approach-intro h2 { margin-bottom: 20px; }
.approach-intro p { color: var(--color-text-soft); font-weight: 300; max-width: 40ch; }
.approach-list {
  display: grid;
  gap: 0;
}
.approach-item {
  padding: 28px 0;
  border-top: 1px solid var(--color-border);
}
.approach-list .approach-item:last-child { border-bottom: 1px solid var(--color-border); }
.approach-item h3 { margin-bottom: 10px; font-size: 1.2rem; }
.approach-item p { color: var(--color-text-soft); font-weight: 300; font-size: 0.98rem; max-width: 52ch; }

/* =====================================================
   SERVICES
   ===================================================== */
.services {
  padding: var(--section-pad) 0;
  background: var(--color-bg);
}
.services > .section-inner:first-child { margin-bottom: clamp(64px, 9vw, 110px); }
.services > .section-inner h1 {
  max-width: 24ch;
  margin: 0 auto;
  font-family: var(--font-display);
  font-weight: 500;
  font-style: normal;
}
.services .eyebrow { color: var(--color-copper); font-size: 0.86rem; }

@media (max-width: 620px) {
  .services > .section-inner:first-child { margin-top: 28px; }
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(40px, 4vw, 60px);
  max-width: 1560px;
  margin: 0 auto;
  padding: 0 var(--gutter);
  align-items: stretch;
}

.service-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #F5F1EA;
  border: 1px solid #DDD4C7;
  border-radius: 24px;
  overflow: hidden;
  transition: border-color 0.4s var(--ease), transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.service-card:hover {
  border-color: var(--color-copper-dark);
  transform: translateY(-6px);
  box-shadow: 0 40px 70px -36px rgba(60,45,25,0.3);
}
.service-card-media { flex: none; width: 100%; }
.service-card-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  object-position: center 72%;
  display: block;
  filter: grayscale(0.22) contrast(1.04) saturate(1.05);
}
.service-card-img-coaching { object-position: center 55%; }
.service-card-img-couples {
  position: relative;
  z-index: 1;
  object-fit: contain;
  background: transparent;
}
.service-card-media-couples { position: relative; overflow: hidden; }
.service-card-img-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: blur(22px) brightness(0.92) grayscale(0.22) contrast(1.04) saturate(1.05);
  transform: scale(1.15);
}
.service-card-body {
  padding: clamp(32px, 2.6vw, 40px);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex-grow: 1;
}

.service-meta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.62rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-copper-dark);
  margin-bottom: 18px;
  font-weight: 500;
  white-space: nowrap;
}
.service-meta::before {
  content: '';
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #3EBD6E;
  box-shadow: 0 0 0 3px rgba(62,189,110,0.2);
  flex-shrink: 0;
}
.service-card-title {
  font-size: clamp(1.55rem, 1.9vw, 1.85rem);
  color: var(--color-text);
  margin-bottom: 28px;
  line-height: 1.25;
}
.service-card-divider { display: none; }

.service-card-pricing {
  display: grid;
  gap: 16px;
  margin-bottom: 30px;
  justify-items: center;
}
.price-tier { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.price-label {
  font-size: 0.8rem;
  color: var(--color-text-soft);
  font-weight: 300;
}
.price-amount {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--color-text);
}
.price-amount em {
  font-style: normal;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--color-copper);
  margin-left: 6px;
}

.service-card-btn {
  align-self: center;
  margin-top: auto;
  padding: 13px 30px;
  background: linear-gradient(135deg, #17140f 0%, #2c2015 50%, #6e4527 100%);
  border-color: #17140f;
  color: var(--color-bg);
}
.service-card-btn:hover {
  background: transparent;
  border-color: var(--color-copper-dark);
  color: var(--color-copper-dark);
}

@media (max-width: 1100px) {
  .services-grid { max-width: 900px; grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 700px) {
  .services-grid { max-width: 480px; grid-template-columns: 1fr; }
}

/* =====================================================
   SERVICE DETAIL PAGES
   ===================================================== */
.service-detail-body { padding: clamp(24px, 4vw, 48px) 0 clamp(60px, 8vw, 100px); }
.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 90px);
}
.service-detail-col h2 {
  font-size: clamp(1.3rem, 2.2vw, 1.6rem);
  margin-bottom: 24px;
}
.service-detail-list { display: grid; gap: 12px; }
.service-detail-list li {
  color: var(--color-text-soft);
  font-weight: 300;
  font-size: 0.98rem;
  line-height: 1.6;
  padding-left: 22px;
  position: relative;
}
.service-detail-list li::before {
  content: '';
  position: absolute; left: 0; top: 0.55em;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--color-copper);
}
.service-detail-note {
  font-style: italic;
  font-family: var(--font-display);
  color: var(--color-copper);
  margin-top: 20px;
  font-size: 0.95rem;
}

.service-detail-pricing {
  padding: clamp(60px, 8vw, 100px) 0;
  position: relative;
  color: var(--color-text-inverse);
  text-align: center;
  background:
    radial-gradient(ellipse 65% 55% at 12% 15%, rgba(232,131,46,0.4) 0%, transparent 60%),
    radial-gradient(ellipse 55% 50% at 88% 85%, rgba(120,90,60,0.28) 0%, transparent 55%),
    radial-gradient(ellipse 90% 70% at 50% 100%, rgba(60,48,36,0.5) 0%, transparent 70%),
    linear-gradient(150deg, #17140f 0%, #0e0c0a 55%, #1a1512 100%);
  overflow: hidden;
}
.service-detail-pricing::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(115deg, rgba(255,255,255,0.015) 0px, rgba(255,255,255,0.015) 1px, transparent 1px, transparent 3px);
  pointer-events: none;
}
.service-detail-pricing .section-inner { position: relative; z-index: 1; }
.service-detail-pricing h2 { margin-bottom: 40px; color: var(--color-text-inverse); }
.service-detail-pricing .pricing {
  max-width: 520px;
  margin: 0 auto 36px;
  text-align: left;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0) 45%),
    rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  backdrop-filter: blur(8px);
  box-shadow: 0 1px 1px rgba(0,0,0,0.2), 0 24px 48px -28px rgba(0,0,0,0.6);
}
.service-detail-pricing .price-row { border-bottom-color: rgba(255,255,255,0.12); }
.service-detail-pricing .price-value { color: var(--color-text-inverse); }

.service-detail-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.service-detail-btn {
  background: transparent;
  border-color: var(--color-copper-light);
  color: var(--color-copper-light);
}
.service-detail-btn:hover {
  background: var(--color-copper-light);
  color: #3A2410;
}

.service-detail-faq { padding: clamp(60px, 8vw, 100px) 0; }
.service-detail-faq h2 { text-align: center; margin-bottom: 40px; }
.service-detail-faq .faq-list { grid-template-columns: 1fr; max-width: 720px; }

@media (max-width: 860px) {
  .service-detail-grid { grid-template-columns: 1fr; gap: 48px; }
}

.pricing {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.5) 0%, rgba(255,255,255,0) 45%),
    var(--color-bg-alt);
  border: 1px solid var(--color-border);
  border-radius: 16px;
  padding: 6px 22px;
  margin-bottom: 28px;
}
.price-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  padding: 18px 0;
  border-bottom: 1px solid var(--color-border);
  font-size: 0.95rem;
}
.price-row:last-child { border-bottom: none; }
.price-value { font-family: var(--font-display); font-size: 1.1rem; white-space: nowrap; color: var(--color-text); }
.price-value em { display: block; font-style: normal; font-family: var(--font-body); font-size: 0.72rem; color: var(--color-copper); letter-spacing: 0.05em; text-transform: uppercase; margin-top: 4px; text-align: right; font-weight: 600; }

.learn-more {
  display: flex; align-items: center; gap: 12px;
  font-size: 0.82rem; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--color-text);
  margin-bottom: 8px;
  padding: 6px 0;
  transition: color 0.35s var(--ease);
}
.learn-more:hover { color: var(--color-copper); }
.learn-more-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 26px; height: 26px;
  border: 1px solid var(--color-copper);
  color: var(--color-copper);
  border-radius: 50%;
  font-size: 0.9rem;
  transition: transform 0.35s var(--ease), background 0.35s var(--ease), color 0.35s var(--ease);
}
.learn-more:hover .learn-more-icon { background: var(--color-copper); color: var(--color-bg); }
.learn-more[aria-expanded="true"] .learn-more-icon { transform: rotate(45deg); background: var(--color-copper); color: var(--color-bg); }

.learn-more-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease), margin 0.5s var(--ease);
}
.learn-more-panel p { font-weight: 500; margin: 18px 0 12px; }
.learn-more-panel ul { display: grid; gap: 9px; }
.learn-more-panel li {
  color: var(--color-text-soft);
  font-weight: 300;
  font-size: 0.95rem;
  padding-left: 20px;
  position: relative;
}
.learn-more-panel li::before {
  content: '';
  position: absolute; left: 0; top: 0.55em;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--color-copper);
}
.learn-more-panel + .btn { margin-top: 30px; }


/* =====================================================
   MY APPROACH (compact text block, sits above Areas I Support)
   ===================================================== */
.approach-simple {
  padding: clamp(60px, 8vw, 100px) 0;
  background: #adadad;
}
.approach-simple-text {
  max-width: 66ch;
  margin: 0 auto 22px;
  color: #333333;
  font-weight: 300;
  font-size: clamp(0.88rem, 1.3vw, 1.05rem);
  line-height: 1.75;
}
.approach-simple-text:last-child { margin-bottom: 0; }
@media (max-width: 860px) {
  .approach-simple-text {
    font-size: 0.56rem;
    line-height: 1.55;
  }
}
.approach-subheading {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-copper);
  margin: clamp(40px, 6vw, 64px) auto 22px;
}

/* =====================================================
   AREAS I SUPPORT
   ===================================================== */
.areas {
  padding: clamp(60px, 8vw, 100px) 0;
  position: relative;
  color: var(--color-text-inverse);
  background:
    radial-gradient(ellipse 65% 55% at 12% 15%, rgba(232,131,46,0.4) 0%, transparent 60%),
    radial-gradient(ellipse 55% 50% at 88% 85%, rgba(120,90,60,0.28) 0%, transparent 55%),
    radial-gradient(ellipse 90% 70% at 50% 100%, rgba(60,48,36,0.5) 0%, transparent 70%),
    linear-gradient(150deg, #17140f 0%, #0e0c0a 55%, #1a1512 100%);
  overflow: hidden;
}
.areas::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(115deg, rgba(255,255,255,0.015) 0px, rgba(255,255,255,0.015) 1px, transparent 1px, transparent 3px);
  pointer-events: none;
}
.areas .section-inner { position: relative; z-index: 1; }
.areas .eyebrow { color: var(--color-copper); }
.areas h2 { margin-bottom: 40px; font-size: clamp(1.7rem, 3.6vw, 2.4rem); color: var(--color-text-inverse); }
.areas-card {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0) 45%),
    rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px;
  padding: clamp(22px, 3vw, 32px);
  max-width: 760px;
  margin: 0 auto;
  backdrop-filter: blur(8px);
  box-shadow: 0 1px 1px rgba(0,0,0,0.2), 0 24px 48px -28px rgba(0,0,0,0.6);
}
.areas-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}
.area-chip {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  color: rgba(250,248,245,0.85);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 999px;
  padding: 6px 12px;
  transition: color 0.35s var(--ease), background 0.35s var(--ease), border-color 0.35s var(--ease), transform 0.35s var(--ease);
}
.area-chip:hover {
  color: var(--color-bg);
  background: var(--color-copper);
  border-color: var(--color-copper);
  transform: translateY(-2px);
}

@media (max-width: 860px) {
  .areas-card {
    padding: 14px;
    border-radius: 14px;
    max-width: 92%;
  }
  .area-chip {
    font-size: 0.42rem;
    padding: 3px 7px;
  }
  .areas-list { gap: 4px; }
}

/* =====================================================
   TESTIMONIALS / RESULTS
   ===================================================== */
.testimonials {
  padding: var(--section-pad) 0;
  position: relative;
  color: var(--color-text);
  background: var(--color-bg);
  overflow: hidden;
}
.testimonials .section-inner { position: relative; z-index: 1; }
.testimonials .eyebrow { color: var(--color-copper); }
.testimonials h1 { color: var(--color-text); max-width: 18ch; margin: 0 auto; }

.results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(18px, 2.4vw, 28px);
  max-width: 1080px;
  margin: clamp(50px, 7vw, 76px) auto 0;
}
.result-card {
  background: #F5F1EA;
  border: 1px solid #DDD4C7;
  border-radius: 18px;
  padding: clamp(28px, 3vw, 34px) clamp(24px, 2.6vw, 30px);
  box-shadow: 0 1px 1px rgba(60,45,25,0.04), 0 24px 48px -32px rgba(40,30,18,0.25);
  transition: border-color 0.5s var(--ease), transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.result-card:hover {
  border-color: var(--color-copper-dark);
  transform: translateY(-6px);
  box-shadow: 0 30px 54px -30px rgba(40,30,18,0.35);
}
.result-stat {
  display: block;
  font-family: var(--font-body);
  font-weight: 700;
  font-style: normal;
  font-size: clamp(2.1rem, 3.8vw, 2.7rem);
  letter-spacing: -0.02em;
  color: var(--color-orange);
  line-height: 1;
  margin-bottom: 14px;
}
.result-metric {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--color-copper-dark);
  margin-bottom: 16px;
}
.result-card h3 {
  font-size: 1.15rem;
  color: var(--color-text);
  margin-bottom: 12px;
  line-height: 1.3;
}
.result-desc {
  font-size: 0.72rem;
  font-weight: 300;
  line-height: 1.55;
  color: var(--color-text-soft);
  margin-bottom: 22px;
}
.result-name {
  display: block;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 10px;
}
.result-location {
  font-weight: 400;
  color: var(--color-text-soft);
}
.result-quote {
  font-family: var(--font-body);
  font-style: italic;
  font-weight: 400;
  font-size: 0.96rem;
  line-height: 1.65;
  color: var(--color-text);
}

@media (max-width: 860px) {
  .results-grid { grid-template-columns: 1fr; max-width: 460px; gap: 32px; }
  .testimonials { padding-top: 110px; }
  .result-quote { font-size: 0.64rem; line-height: 1.5; }
  .result-name { font-size: 0.48rem; margin-bottom: 8px; }
}

/* =====================================================
   BLOG (placeholder)
   ===================================================== */
.blog { padding: var(--section-pad) 0; }
.blog h2 { margin-bottom: 18px; }
.blog-sub { color: var(--color-text-soft); font-weight: 300; max-width: 46ch; margin: 0 auto; }

/* =====================================================
   FAQ
   ===================================================== */
.faq { padding: var(--section-pad) 0; }
.faq-header { max-width: 640px; margin: 0 auto clamp(44px, 6vw, 66px); }
.faq-header h1 { margin-bottom: 36px; }
.faq-header p:not(.eyebrow) { color: var(--color-text-soft); font-weight: 300; font-size: 0.7rem; line-height: 1.6; }

.faq-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 18px;
  align-content: start;
  max-width: 1080px;
  margin: 0 auto;
}
.faq-item { align-self: start; }

.faq-item {
  background: #F5F1EA;
  border: 1px solid #DDD4C7;
  border-radius: 14px;
  margin-bottom: 10px;
  overflow: hidden;
  transition: border-color 0.35s var(--ease), box-shadow 0.35s var(--ease), transform 0.35s var(--ease);
}
.faq-item:hover {
  border-color: var(--color-copper-dark);
  box-shadow: 0 16px 32px -22px rgba(60,45,25,0.28);
  transform: translateY(-2px);
}
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 16px 20px;
  text-align: left;
  font-size: 0.88rem;
  font-weight: 500;
  transition: color 0.35s var(--ease);
}
.faq-question:hover { color: var(--color-copper); }
.faq-icon {
  flex-shrink: 0;
  display: inline-flex; align-items: center; justify-content: center;
  width: 22px; height: 22px;
  border: 1px solid var(--color-copper);
  color: var(--color-copper);
  border-radius: 50%;
  font-size: 0.8rem;
  transition: transform 0.35s var(--ease), background 0.35s var(--ease), color 0.35s var(--ease);
}
.faq-question:hover .faq-icon { background: var(--color-copper); color: var(--color-bg); }
.faq-question[aria-expanded="true"] .faq-icon { transform: rotate(45deg); background: var(--color-copper); color: var(--color-bg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s var(--ease);
}
.faq-answer p, .faq-answer li {
  color: var(--color-text-soft);
  font-weight: 300;
  font-size: 0.82rem;
  line-height: 1.6;
  max-width: 58ch;
}
.faq-answer p { padding: 0 20px 14px; }
.faq-answer p:first-child { padding-top: 2px; }
.faq-answer p:last-child { padding-bottom: 20px; }
.faq-answer ul { padding: 0 20px 14px 40px; display: grid; gap: 6px; }
.faq-answer ul:first-child { padding-top: 2px; }
.faq-answer ul + p { padding-top: 0; }

/* =====================================================
   CONTACT
   ===================================================== */
.contact {
  padding: clamp(140px, 16vw, 220px) 0 clamp(20px, 3vw, 36px);
  position: relative;
  color: var(--color-text);
  background: var(--color-bg);
  overflow: hidden;
}
.contact .section-inner { position: relative; z-index: 1; }
.contact .eyebrow { color: var(--color-copper); }
.contact-inner { text-align: center; }
.contact-inner h1 { max-width: 18ch; margin: 0 auto; color: var(--color-text); }
.contact-sub { max-width: 46ch; margin: 56px auto 84px; color: var(--color-text-soft); font-weight: 300; }
.contact-actions { display: flex; justify-content: center; gap: 18px; flex-wrap: wrap; margin-bottom: 130px; }
.contact-actions .btn-outline { border-color: var(--color-text); color: var(--color-text); }
.contact-actions .btn-outline:hover { background: var(--color-text); color: var(--color-bg); }

.contact-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}
.contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #5C3A22;
  color: var(--color-bg);
  transition: background 0.35s var(--ease), transform 0.35s var(--ease);
}
.contact-icon svg { width: 18px; height: 18px; }
.contact-icon:hover {
  background: #472C1A;
  transform: translateY(-3px);
}

/* =====================================================
   FOOTER
   ===================================================== */
.footer {
  padding: 44px 0;
  position: relative;
  color: var(--color-text-inverse);
  background:
    radial-gradient(ellipse 60% 80% at 90% 0%, rgba(232,131,46,0.32) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 10% 100%, rgba(120,90,60,0.24) 0%, transparent 55%),
    linear-gradient(150deg, #17140f 0%, #0e0c0a 55%, #1a1512 100%);
  overflow: hidden;
}
.footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(115deg, rgba(255,255,255,0.015) 0px, rgba(255,255,255,0.015) 1px, transparent 1px, transparent 3px);
  pointer-events: none;
}
.footer-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-logo { font-family: var(--font-display); font-size: 1rem; color: var(--color-text-inverse); }
.footer-nav { display: flex; gap: 22px; font-size: 0.82rem; flex-wrap: wrap; }
.footer-nav a { color: rgba(250,248,245,0.8); }
.footer-nav a:hover { color: var(--color-copper); }
.footer-legal {
  display: flex; gap: 18px; align-items: center; flex-wrap: wrap;
  font-size: 0.78rem;
  color: rgba(250,248,245,0.55);
}
.footer-legal a { color: rgba(250,248,245,0.55); }
.footer-legal a:hover { color: var(--color-copper); }

@media (max-width: 860px) {
  .footer { padding: 18px 0; }
  .footer-inner { gap: 10px; }
  .footer-logo { font-size: 0.68rem; }
  .footer-nav { gap: 12px; font-size: 0.56rem; }
  .footer-legal { gap: 10px; font-size: 0.52rem; }
}

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 980px) {
  .about-grid, .approach-grid, .service-grid { grid-template-columns: 1fr; }
  .faq-list { grid-template-columns: 1fr; }
  .faq { padding-top: 110px; }
  .service-alt .service-grid { direction: ltr; }
  .service-alt .service-media { order: -1; }
}

@media (max-width: 760px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-toggle { display: flex; }

  .nav.is-open .nav-links {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0; right: 0;
    height: 100vh;
    width: 46vw;
    max-width: 190px;
    background: linear-gradient(150deg, #17140f 0%, #0e0c0a 60%, #1a1512 100%);
    padding: 90px 22px;
    gap: 22px;
    box-shadow: -10px 0 40px rgba(0,0,0,0.5);
  }
  .nav.is-open .nav-links a { color: var(--color-text-inverse); font-size: 0.92rem; }
  .nav.is-open .nav-toggle span:first-child { transform: translateY(3.5px) rotate(45deg); background: var(--color-text-inverse); }
  .nav.is-open .nav-toggle span:last-child { transform: translateY(-3.5px) rotate(-45deg); background: var(--color-text-inverse); }

  .contact-actions .btn { padding: 10px 20px; font-size: 0.66rem; }
  .contact-actions { flex-direction: column; align-items: stretch; }
  .contact-links .contact-icon { width: 28px; height: 28px; }
  .contact { padding: 140px 0 30px; }
  .contact-sub { margin: 40px 0 64px; }
  .contact-actions { margin-bottom: 100px; }
  .contact-links .contact-icon svg { width: 13px; height: 13px; }
  .contact-links { gap: 10px; }
  .price-row { flex-direction: column; align-items: flex-start; gap: 4px; }
  .price-value em { text-align: left; }
}
