/* ============================================================
   Harmony Embodied Counselling — Sunset Serene Theme
   ============================================================
   Fonts  : Cormorant Garamond (headings) + DM Sans (body/UI)
   Palette: Warm cream · Honey gold · Sage · Lavender CTAs
   Mood   : Sun-warmed, painterly, tranquil at dusk
   ============================================================ */

/* ---------- Custom Properties ---------- */
:root {
  /* Core palette */
  --cream:           #faf6f0;
  --cream-deep:      #f2ebe0;
  --cream-warm:      #ede3d0;

  /* Sage — secondary nature accent */
  --sage:            #8fa888;
  --sage-light:      #c8d8c2;

  /* Teal — cool complement */
  --teal:            #6aacaa;
  --teal-deep:       #4d8f8d;

  /* Sunset warmth — the differentiating accent family */
  --gold:            #e8c87a;
  --gold-deep:       #c9a24a;
  --honey:           #d4915a;
  --peach:           #e8c0a0;
  --amber:           #c47c3a;

  /* Lavender — reserved exclusively for CTA buttons */
  --lavender:        #b3b8d8;
  --lavender-hover:  #9298c0;
  --lavender-light:  #dde0ef;

  /* Neutrals */
  --beige:           #c9b99a;
  --text-dark:       #3d3a35;
  --text-mid:        #6b6560;
  --text-light:      #a09890;
  --white:           #ffffff;

  /* Section-label warm override */
  --label-color:     #9a7340;

  /* Typography */
  --font-serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-sans:  'DM Sans', system-ui, -apple-system, sans-serif;

  /* Radii */
  --radius-sm:   8px;
  --radius-md:   18px;
  --radius-lg:   36px;
  --radius-pill: 9999px;

  /* Shadows */
  --shadow-soft: 0 4px 30px rgba(61, 58, 53, 0.07);
  --shadow-card: 0 8px 40px rgba(61, 58, 53, 0.09);

  /* Layout */
  --max-w: 1100px;
  --nav-h: 72px;
  --ease:  0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-dark);
  background-color: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  /* Guard: keep decorative bleed elements from creating horizontal scroll on mobile */
  overflow-x: hidden;
}

img   { max-width: 100%; height: auto; display: block; }
a     { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
address { font-style: normal; }
button  { font-family: inherit; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.2;
  color: var(--text-dark);
}
h1 { font-size: clamp(2.8rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 3.5vw, 3rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); }

p {
  color: var(--text-mid);
  margin-bottom: 1.1em;
}
p:last-child { margin-bottom: 0; }

/* ---------- Layout ---------- */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
}

.section-label {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.70rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--label-color);
  margin-bottom: 0.85rem;
}

/* ---------- Scroll Reveal ---------- */
.fade-up {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1) var(--fade-delay, 0s),
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1) var(--fade-delay, 0s);
}
.fade-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 0.85rem 2.1rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  cursor: pointer;
  border: 2px solid transparent;
  transition:
    background var(--ease),
    border-color var(--ease),
    color var(--ease),
    transform var(--ease),
    box-shadow var(--ease);
  white-space: nowrap;
}

/* Primary — lavender, consistent everywhere */
.btn--primary {
  background: var(--lavender);
  color: var(--white);
  border-color: var(--lavender);
}
.btn--primary:hover,
.btn--primary:focus-visible {
  background: var(--lavender-hover);
  border-color: var(--lavender-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(179, 184, 216, 0.42);
}

/* Secondary — warm cream outline */
.btn--secondary {
  background: transparent;
  color: var(--text-dark);
  border-color: rgba(201, 185, 154, 0.65);
}
.btn--secondary:hover,
.btn--secondary:focus-visible {
  border-color: var(--lavender);
  color: var(--lavender);
  background: rgba(179, 184, 216, 0.08);
}

.btn--full { width: 100%; text-align: center; }

/* ---------- NAVIGATION ---------- */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 200;
  background: rgba(250, 246, 240, 0.93);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: box-shadow var(--ease);
}
.nav--scrolled {
  box-shadow: 0 2px 28px rgba(61, 58, 53, 0.09);
}
.nav__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.nav__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.nav__logo-img {
  height: 48px;
  width: 48px;
  flex-shrink: 0;
  object-fit: contain;
  image-rendering: -webkit-optimize-contrast;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}
.nav__links a {
  font-size: 0.84rem;
  color: var(--text-mid);
  transition: color var(--ease);
  white-space: nowrap;
}
.nav__links a:hover { color: var(--lavender); }
.nav__book {
  display: inline-flex !important;
  align-items: center;
  padding: 0.5rem 1.3rem;
  background: var(--lavender);
  color: var(--white) !important;
  border-radius: var(--radius-pill);
  font-size: 0.8rem !important;
  font-weight: 500 !important;
  transition: background var(--ease), transform var(--ease) !important;
}
.nav__book:hover {
  background: var(--lavender-hover) !important;
  transform: translateY(-1px) !important;
  color: var(--white) !important;
}

/* Hamburger */
.nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  flex-shrink: 0;
}
.nav__toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: opacity var(--ease), transform var(--ease);
}
.nav__toggle--open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle--open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__toggle--open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- HERO — Sunset image full-bleed ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: calc(var(--nav-h) + 5rem) 2rem 6rem;

  /* The client's hero image */
  background-image: url('../images/hero-sunset.avif');
  background-size: cover;
  background-position: center 40%;
  background-repeat: no-repeat;
}

/* Layered cream radial overlay — lets sunset glow through while protecting text legibility */
.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    /* Warm cream softening centre — main text zone */
    radial-gradient(
      ellipse 75% 65% at 50% 55%,
      rgba(250, 246, 240, 0.70) 0%,
      rgba(250, 246, 240, 0.32) 50%,
      transparent 72%
    ),
    /* Gold warmth bloom at sunset source (lower-centre) */
    radial-gradient(
      ellipse 60% 40% at 50% 82%,
      rgba(232, 200, 122, 0.22) 0%,
      transparent 65%
    ),
    /* Soft dark edge vignette — top and bottom depth */
    linear-gradient(
      to bottom,
      rgba(61, 58, 53, 0.10) 0%,
      transparent 22%,
      transparent 68%,
      rgba(61, 58, 53, 0.20) 100%
    );
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 680px;
}

.hero__eyebrow {
  font-family: var(--font-sans);
  font-size: 0.70rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--label-color);
  margin-bottom: 1.1rem;
  /* Soft text shadow keeps legibility on image */
  text-shadow: 0 1px 12px rgba(250, 246, 240, 0.7);
}

.hero__heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.1em;
  margin-bottom: 1.6rem;
  text-shadow: 0 2px 20px rgba(250, 246, 240, 0.55);
}
.hero__heading-main {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(4rem, 8vw, 7.5rem);
  font-weight: 300;
  font-style: italic;
  letter-spacing: 0.04em;
  line-height: 1;
  color: var(--text-dark);
}
.hero__heading-sub {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 300;
  font-style: italic;
  letter-spacing: 0.08em;
  color: var(--text-mid);
  line-height: 1.4;
}

.hero__body {
  font-size: clamp(0.97rem, 1.5vw, 1.10rem);
  color: var(--text-dark);
  font-weight: 300;
  line-height: 1.9;
  max-width: 560px;
  margin: 0 auto 2.75rem;
  text-shadow: 0 1px 10px rgba(250, 246, 240, 0.65);
}

.hero__ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---------- PHILOSOPHY PULL-QUOTE ---------- */
.philosophy {
  padding: 6.5rem 2rem;
  /* Warm golden-hour gradient band */
  background:
    radial-gradient(ellipse 80% 100% at 50% 50%,
      rgba(232, 200, 122, 0.16) 0%,
      transparent 68%),
    linear-gradient(135deg,
      rgba(212, 145, 90, 0.10) 0%,
      rgba(232, 200, 122, 0.12) 38%,
      rgba(179, 184, 216, 0.08) 70%,
      rgba(143, 168, 136, 0.10) 100%);
  border-top:    1px solid rgba(201, 185, 154, 0.28);
  border-bottom: 1px solid rgba(201, 185, 154, 0.28);
  text-align: center;
}
.philosophy__inner { max-width: 700px; margin: 0 auto; }
.philosophy__text {
  font-family: var(--font-serif);
  font-size: clamp(1.25rem, 2.3vw, 1.75rem);
  font-style: italic;
  font-weight: 300;
  color: var(--text-dark);
  line-height: 1.78;
  margin-bottom: 1.4rem;
}
.philosophy__attr {
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--label-color);
  font-weight: 500;
  margin: 0;
}

/* ---------- ABOUT ---------- */
.about {
  padding: 9rem 0;
  position: relative;
  overflow-x: clip; /* contain the decorative photo halo so it can't cause page-wide horizontal scroll on mobile */
  background:
    radial-gradient(ellipse 58% 52% at 0%   30%, rgba(212, 145, 90, 0.14) 0%, transparent 62%),
    radial-gradient(ellipse 50% 45% at 95%  68%, rgba(143, 168, 136, 0.22) 0%, transparent 62%),
    radial-gradient(ellipse 42% 38% at 52%  12%, rgba(232, 200, 122, 0.20) 0%, transparent 58%),
    radial-gradient(ellipse 44% 42% at 18%  88%, rgba(179, 184, 216, 0.16) 0%, transparent 58%),
    var(--cream);
}
.about__inner {
  display: grid;
  grid-template-columns: 1fr 1.55fr;
  gap: 5.5rem;
  align-items: start;
}

/* Organic photo treatment — soft watercolour halo */
.about__image-col {
  position: relative;
}
.about__image-col::before {
  content: '';
  position: absolute;
  inset: -14% -20%;
  border-radius: 55% 45% 50% 50% / 48% 52% 48% 52%;
  background: radial-gradient(
    ellipse 80% 80% at 50% 50%,
    rgba(232, 200, 122, 0.24) 0%,
    rgba(212, 145, 90, 0.12) 40%,
    rgba(143, 168, 136, 0.12) 62%,
    transparent 75%
  );
  filter: blur(32px);
  z-index: 0;
}
.about__photo {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center top;
  border-radius: 58% 42% 52% 48% / 46% 54% 46% 54%;
  -webkit-mask-image: radial-gradient(
    ellipse 88% 88% at 50% 48%,
    black 42%, rgba(0,0,0,0.85) 58%, transparent 78%
  );
  mask-image: radial-gradient(
    ellipse 88% 88% at 50% 48%,
    black 42%, rgba(0,0,0,0.85) 58%, transparent 78%
  );
  filter: drop-shadow(0 8px 32px rgba(61, 58, 53, 0.11));
}
.about__text-col h2 { margin-bottom: 1.5rem; }
.about__text-col p  { font-size: 0.97rem; }
.about__credentials {
  margin-top: 2.25rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(201, 185, 154, 0.40);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.about__credentials span {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.83rem;
  color: var(--sage);
  font-weight: 400;
}
.about__credentials span::before {
  content: '';
  flex-shrink: 0;
  width: 18px;
  height: 1px;
  background: var(--beige);
}

/* ---------- APPROACH ---------- */
.approach {
  padding: 9rem 0;
  position: relative;
  background:
    radial-gradient(ellipse 55% 42% at  6%  12%, rgba(212, 145, 90, 0.20) 0%, transparent 65%),
    radial-gradient(ellipse 44% 50% at 93%   7%, rgba(232, 200, 122, 0.28) 0%, transparent 62%),
    radial-gradient(ellipse 58% 46% at 83%  83%, rgba(179, 184, 216, 0.22) 0%, transparent 65%),
    radial-gradient(ellipse 48% 40% at 11%  89%, rgba(143, 168, 136, 0.22) 0%, transparent 62%),
    radial-gradient(ellipse 42% 36% at 52%  48%, rgba(250, 246, 240, 0.55) 0%, transparent 60%),
    #f2e8d8;
}
.approach__header { margin-bottom: 3.5rem; }
.approach__heading { margin-bottom: 0.85rem; }
.approach__intro {
  max-width: 580px;
  font-size: 1.02rem;
  margin-bottom: 0;
}

/* ── Organic blob cards ──────────────────────────────────────────── */
.approach__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.approach__card {
  border-radius: 55% 45% 48% 52% / 52% 48% 54% 46%;
  padding: 3.2rem 2.6rem;
  position: relative;
  text-align: center;
  transition: transform var(--ease), box-shadow var(--ease);
  box-shadow: 0 4px 22px rgba(61, 58, 53, 0.07);
}
.approach__card:hover {
  transform: translateY(-6px) rotate(0.6deg);
  box-shadow: 0 18px 52px rgba(61, 58, 53, 0.13);
}
/* Varied organic radii per card */
.approach__card:nth-child(1) { border-radius: 55% 45% 48% 52% / 52% 48% 54% 46%; background: rgba(236, 202, 178, 0.32); }
.approach__card:nth-child(2) { border-radius: 45% 55% 52% 48% / 48% 54% 46% 52%; background: rgba(210, 143, 122, 0.26); }
.approach__card:nth-child(3) { border-radius: 52% 48% 44% 56% / 56% 44% 52% 48%; background: rgba(177, 118, 134, 0.24); }
.approach__card:nth-child(4) { border-radius: 48% 52% 56% 44% / 52% 48% 46% 54%; background: rgba(166, 152, 160, 0.30); }
.approach__card:nth-child(5) { border-radius: 56% 44% 48% 52% / 46% 54% 52% 48%; background: rgba(92, 84, 121, 0.20); }
.approach__card:nth-child(6) { border-radius: 44% 56% 52% 48% / 54% 46% 48% 52%; background: rgba(74, 111, 141, 0.22); }
.approach__card:nth-child(7) { border-radius: 52% 48% 46% 54% / 48% 52% 56% 44%; background: rgba(103, 157, 174, 0.24); }
.approach__card:nth-child(8) { border-radius: 46% 54% 54% 46% / 56% 44% 46% 54%; background: rgba(171, 213, 215, 0.34); }
.approach__card:nth-child(9) { border-radius: 54% 46% 50% 50% / 44% 56% 52% 48%; background: rgba(236, 202, 178, 0.30); }

.approach__card h3 {
  font-size: 1.08rem;
  margin-bottom: 0.75rem;
  color: var(--text-dark);
}
.approach__card p {
  font-size: 0.875rem;
  line-height: 1.77;
  margin: 0;
  color: var(--text-mid);
}

/* ---------- SERVICES ---------- */
.services {
  padding: 9rem 0;
  position: relative;
  background:
    radial-gradient(ellipse 50% 45% at 90%  10%, rgba(179, 184, 216, 0.22) 0%, transparent 62%),
    radial-gradient(ellipse 55% 40% at  5%  80%, rgba(232, 200, 122, 0.26) 0%, transparent 62%),
    radial-gradient(ellipse 45% 50% at 85%  85%, rgba(143, 168, 136, 0.22) 0%, transparent 60%),
    radial-gradient(ellipse 40% 38% at 20%  15%, rgba(212, 145, 90,  0.18) 0%, transparent 60%),
    radial-gradient(ellipse 38% 35% at 50%  50%, rgba(250, 246, 240, 0.50) 0%, transparent 58%),
    #f5ede0;
}
.services__header { margin-bottom: 3rem; }
.services h2   { margin-bottom: 0.85rem; }
.services__intro {
  max-width: 560px;
  font-size: 1.02rem;
  margin-bottom: 0;
}
.services__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

/* Clean rectangular service cards — deliberately distinct from approach blobs */
.services__item {
  background: rgba(255, 255, 255, 0.82);
  border-radius: 18px;
  padding: 2.25rem 2.4rem 2.25rem 2.4rem;
  text-align: left;
  border-top: 4px solid var(--honey);
  box-shadow:
    0 2px 12px rgba(61, 58, 53, 0.06),
    0 8px 32px rgba(61, 58, 53, 0.07);
  transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
  position: relative;
}
.services__item:hover {
  transform: translateY(-4px);
  box-shadow:
    0 4px 16px rgba(61, 58, 53, 0.08),
    0 16px 48px rgba(61, 58, 53, 0.11);
}

/* Rotate through palette accents per card */
.services__item:nth-child(1) { border-top-color: #eccab2; }
.services__item:nth-child(2) { border-top-color: #d28f7a; }
.services__item:nth-child(3) { border-top-color: #b17686; }
.services__item:nth-child(4) { border-top-color: #5c5479; }
.services__item:nth-child(5) { border-top-color: #4a6f8d; }
.services__item--wide {
  grid-column: 1 / -1;
  border-top-color: #679dae;
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 2.75rem;
  align-items: start;
}
.services__item--wide h3,
.services__item--wide p {
  /* override text-align so wide card also reads left */
  text-align: left;
}
.services__item h3 {
  font-size: 1.08rem;
  color: var(--text-dark);
  margin-bottom: 0.65rem;
}
.services__item p { font-size: 0.925rem; line-height: 1.8; }
.services__address {
  font-size: 0.8rem !important;
  color: var(--text-light) !important;
  font-style: italic;
  margin-top: 0.5rem !important;
}

/* ---------- FEES & BOOKING ---------- */
.fees {
  padding: 9rem 0;
  background:
    radial-gradient(ellipse 65% 60% at 15% 20%, rgba(232, 200, 122, 0.18) 0%, transparent 65%),
    radial-gradient(ellipse 55% 50% at 88% 80%, rgba(179, 184, 216, 0.16) 0%, transparent 62%),
    linear-gradient(155deg, #f0e8d5 0%, var(--cream) 55%, #eef4ed 100%);
}
.fees__inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 5rem;
  align-items: start;
}
.fees__text h2  { margin-bottom: 1.25rem; }
.fees__amount {
  font-size: 1.35rem;
  color: var(--amber) !important;
  margin-bottom: 1.75rem;
  font-weight: 400;
}
.fees__amount strong {
  font-family: var(--font-serif);
  font-size: 2.8rem;
  font-weight: 300;
}
.fees__text p   { font-size: 0.94rem; margin-bottom: 1rem; }
.fees__text .btn { margin-top: 1.75rem; }

.fees__box {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 2.75rem;
  box-shadow: var(--shadow-soft);
}
.fees__box h3 { font-size: 1.3rem; margin-bottom: 2.25rem; }
.fees__steps {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  counter-reset: steps;
}
.fees__steps li {
  position: relative;
  padding-left: 3rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  counter-increment: steps;
}
.fees__steps li::before {
  content: counter(steps);
  position: absolute;
  left: 0; top: 0.05em;
  width: 1.7rem; height: 1.7rem;
  background: var(--lavender);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 500;
  flex-shrink: 0;
}
.fees__steps strong { font-size: 0.93rem; color: var(--text-dark); font-weight: 500; }
.fees__steps span   { font-size: 0.86rem; color: var(--text-mid);   line-height: 1.65; }

/* ---------- CONTACT ---------- */
.contact {
  padding: 9rem 0;
  background:
    radial-gradient(ellipse 50% 55% at 95% 10%, rgba(232, 200, 122, 0.16) 0%, transparent 62%),
    radial-gradient(ellipse 45% 45% at  5% 85%, rgba(143, 168, 136, 0.16) 0%, transparent 62%),
    var(--cream-deep);
}
.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 5rem;
  align-items: start;
}
.contact__info h2     { margin-bottom: 1rem; }
.contact__info > p    { margin-bottom: 2.25rem; font-size: 0.975rem; }
.contact__details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2.75rem;
}
.contact__details li { display: flex; flex-direction: column; gap: 0.25rem; }
.contact__label {
  font-size: 0.67rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--label-color);
  font-weight: 500;
}
.contact__details a,
.contact__details span,
.contact__details address {
  font-size: 0.93rem;
  color: var(--text-dark);
  line-height: 1.6;
  transition: color var(--ease);
}
.contact__details a:hover { color: var(--lavender); }

/* Form */
.contact__form-col h3 { font-size: 1.4rem; margin-bottom: 1.75rem; }
.contact__form  { display: flex; flex-direction: column; gap: 1.25rem; }
.contact__honeypot { display: none; }
.form-group     { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-mid);
  letter-spacing: 0.03em;
}
.form-optional { font-weight: 400; color: var(--text-light); }
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.8rem 1.05rem;
  background: var(--white);
  border: 1.5px solid rgba(201, 185, 154, 0.45);
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: 0.93rem;
  color: var(--text-dark);
  transition: border-color var(--ease), box-shadow var(--ease);
  appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-light); }
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--lavender);
  box-shadow: 0 0 0 3px rgba(179, 184, 216, 0.20);
}
.form-group textarea { resize: vertical; min-height: 128px; }

/* ---------- FOOTER ---------- */
.footer {
  background: #2c2820;
  padding: 5rem 0 2rem;
  color: rgba(255, 255, 255, 0.50);
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.footer__brand { display: flex; flex-direction: column; gap: 0.5rem; }
.footer__name {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--white);
  font-weight: 400;
}
.footer__practitioner { font-size: 0.83rem; }
.footer__address      { font-size: 0.78rem; line-height: 1.6; }
.footer__links,
.footer__contact { display: flex; flex-direction: column; gap: 0.8rem; }
.footer__links a,
.footer__contact a {
  font-size: 0.83rem;
  color: rgba(255, 255, 255, 0.50);
  transition: color var(--ease);
}
.footer__links a:hover,
.footer__contact a:hover { color: var(--gold); }
.footer__copy {
  text-align: center;
  font-size: 0.73rem;
  color: rgba(255, 255, 255, 0.28);
  letter-spacing: 0.03em;
}

/* ---------- RESPONSIVE — Tablet (≤960px) ---------- */
@media (max-width: 960px) {
  .about__inner   { grid-template-columns: 1fr; gap: 3.5rem; }
  .about__photo   { max-width: 320px; margin: 0 auto; }
  .approach__grid { grid-template-columns: repeat(2, 1fr); }
  .fees__inner    { grid-template-columns: 1fr; gap: 3rem; }
  .contact__inner { grid-template-columns: 1fr; gap: 3.5rem; }
  .footer__inner  { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .footer__brand  { grid-column: 1 / -1; }
}

/* ---------- RESPONSIVE — Mobile (≤660px) ---------- */
@media (max-width: 660px) {
  :root { --nav-h: 60px; }

  /* Mobile nav drawer */
  .nav__links {
    display: none;
    position: fixed;
    inset: var(--nav-h) 0 auto 0;
    background: rgba(250, 246, 240, 0.98);
    flex-direction: column;
    align-items: flex-start;
    padding: 1.75rem 2rem 2rem;
    gap: 1.25rem;
    border-top: 1px solid var(--cream-deep);
    box-shadow: 0 12px 40px rgba(61, 58, 53, 0.10);
    max-height: calc(100svh - var(--nav-h));
    overflow-y: auto;
  }
  .nav__links--open { display: flex; }
  .nav__toggle      { display: flex; }
  .nav__book {
    padding: 0.6rem 1.4rem !important;
    font-size: 0.85rem !important;
  }

  /* Hero */
  .hero {
    padding: calc(var(--nav-h) + 3.5rem) 1.25rem 4.5rem;
    min-height: 100svh;
    background-position: center 38%;
  }
  .hero__ctas { flex-direction: column; align-items: stretch; }

  /* Grids */
  .approach__grid      { grid-template-columns: 1fr; }
  .services__grid      { grid-template-columns: 1fr; }
  .services__item--wide {
    grid-column: auto;
    grid-template-columns: 1fr;
  }
  .footer__inner { grid-template-columns: 1fr; gap: 2rem; }

  .container      { padding: 0 1.25rem; }
  .nav__logo-img  { height: 44px; }

  /* Reduce section padding on mobile */
  .philosophy, .about, .approach,
  .services, .fees, .contact { padding-top: 6rem; padding-bottom: 6rem; }
}

/* ---------- Focus Styles (Accessibility) ---------- */
:focus-visible {
  outline: 2px solid var(--lavender);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ---------- Reduced Motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .fade-up {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
