/* ============================================================
   Melissa Kiely Counselling — Stylesheet v6
   Cobalt + warm ivory + soft clay · Two fonts (no cursive)
   ============================================================ */

:root {
  /* ---- Palette v6 ----
     Cobalt + warm ivory + soft clay.
     Cobalt carries the brand chrome (header, footer, primary CTA, headings,
     one feature band). The body of the site sits on white with warm-ivory
     card surfaces and warm-taupe hairlines, so the cobalt reads as a
     considered accent rather than the whole canvas. A muted clay tone
     provides the human/warm counter-note (icons, ornaments, hairlines). */

  /* ---- The three theme-base tokens ----
     Everything else is *derived* from these three with color-mix(), so if a
     base ever changes, hovers / soft tints / shadows all follow automatically. */

  /* PRIMARY base — forest green (header, footer, headings, links) */
  --color-cobalt-deep:   rgb(56, 87, 27);

  /* BACKGROUND base — page surface (rich cream) */
  --color-bg:            rgb(255, 242, 213);


  /* (ACCENT base is defined a few lines below — kept near its variants) */

  /* Cobalt variants — derived from --color-cobalt-deep */
  --color-cobalt:        color-mix(in srgb, var(--color-cobalt-deep), white 12%);   /* mid cobalt */
  --color-cobalt-darker: color-mix(in srgb, var(--color-cobalt-deep), black 25%);   /* CTA hover */
  --color-cobalt-soft:   color-mix(in srgb, var(--color-cobalt-deep), white 45%);   /* soft cobalt */

  /* Background variants — derived from --color-bg by mixing in a touch of warm taupe.
     This keeps cards warm even if the user picks a cooler bg. */
  --color-bg-warm:       color-mix(in srgb, var(--color-bg) 92%, #B8AE9B);
  --color-bg-light:      var(--color-bg);
  --color-surface:       var(--color-bg-warm);
  --color-surface-warm:  color-mix(in srgb, var(--color-bg) 80%, #B8AE9B);

  /* Backwards-compat tokens — rewired to the new palette
     (keep variable names so rules elsewhere don't need rewriting) */
  --color-navy:          var(--color-cobalt-deep);
  --color-navy-darkest:  var(--color-cobalt-darker);
  --color-cobalt-dark:   var(--color-cobalt-deep);

  /* ACCENT base — the CTA / feature-button colour on cream grounds (moss
     green). Variants derived via color-mix(). The header pill takes its own
     slightly brighter step of the same ramp (--color-accent-nav) because the
     dark header flatters a livelier green than the cream body does. */
  --color-accent:        rgb(94, 150, 54);    /* #5E9636 — moss */
  --color-accent-nav:    rgb(105, 168, 63);   /* #69A83F — leaf, header pill only */

  --color-accent-deep:   color-mix(in srgb, var(--color-accent), black 22%);
  --color-accent-soft:   color-mix(in srgb, var(--color-accent), white 45%);

  /* Legacy aliases — keep so older rules continue to work */
  --color-clay:          var(--color-accent);
  --color-clay-soft:     var(--color-accent-soft);
  --color-clay-pale:     #DCEEEC;

  /* Sage tokens repurposed:
     - sage-dark  = primary brand cobalt (links, headings)
     - sage       = warm gold (hover/accent on white)
     - sage-light = soft cobalt (for use on the dark band only)
     - sage-muted = warm taupe (border tone) */
  --color-sage-dark:     var(--color-cobalt-deep);
  --color-sage:          var(--color-accent);
  --color-sage-light:    var(--color-cobalt-soft);
  --color-sage-muted:    #E7DFD0;

  /* Gold tokens */
  --color-gold:          var(--color-accent);
  --color-gold-light:    var(--color-accent-soft);

  /* Taupe tokens — true warm neutrals for borders / muted surfaces */
  --color-taupe:         #B8AE9B;
  --color-taupe-light:   #E2DAC9;
  --color-taupe-pale:    #F1ECE0;

  /* Form feedback — the only non-brand hue on the site, used solely to mark a
     validation error or a failed send. Kept muted so it warns without alarming. */
  --color-error:         #9C3A2E;
  --color-error-bg:      #FBEDE9;
  --color-error-line:    #E0BDB4;

  /* Text — warm charcoal, no blue tint */
  --color-text:          #2A2723;
  --color-text-light:    #5A554D;
  --color-text-muted:    #8A8478;
  --color-heading:       var(--color-cobalt-deep);
  --color-white:         #FFFFFF;

  /* Solid deep cobalt header — no aqua haze behind it */
  --color-bg-header:     var(--color-cobalt-deep);

  /* Two fonts only */
  --font-heading: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-body:    'DM Sans', 'Segoe UI', system-ui, sans-serif;

  --container-max:  1100px;
  --section-pad-y:  3.6rem;
  --header-height:  72px;
  --radius:         8px;
  --radius-sm:      6px;
  --shadow-warm:    0 3px 18px rgba(60, 45, 30, 0.08);
  --shadow-warm-lg: 0 6px 32px rgba(60, 45, 30, 0.12);
  --transition:     0.35s ease;
}


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

html {
  scroll-padding-top: var(--header-height);
}

@media (prefers-reduced-motion: no-preference) {
  html { scroll-behavior: smooth; }
}

body {
  font-family: var(--font-body);
  font-size: 1.075rem;
  line-height: 1.75;
  color: var(--color-text);
  background-color: var(--color-bg);   /* clean white — no overlays, no haze */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }

a {
  color: var(--color-sage-dark);
  text-decoration: none;
  transition: color var(--transition);
}
a:hover { color: var(--color-sage); }

ul { list-style: none; }


/* ---------- Skip link (keyboard a11y) ---------- */
.skip-link {
  position: absolute;
  left: 0;
  top: 0;
  padding: 0.6rem 1rem;
  background: var(--color-sage-dark);
  color: #F4F9FA;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  border-radius: 0 0 var(--radius-sm) 0;
  transform: translateY(-110%);
  transition: transform var(--transition);
  z-index: 10003;
}
.skip-link:focus {
  transform: translateY(0);
  color: #F4F9FA;
  outline: 2px solid var(--color-gold-light);
  outline-offset: 2px;
}


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

.content-narrow {
  max-width: 700px;
  margin: 0 auto;
}

.section {
  padding: var(--section-pad-y) 0;
}


/* ---------- Section headings ---------- */
.section-heading {
  font-family: var(--font-heading);
  font-weight: 600;            /* bolder, per Melissa's request */
  font-size: clamp(2rem, 4.2vw, 2.7rem);
  color: var(--color-heading);
  text-align: center;
  margin-bottom: 0.5rem;
  letter-spacing: 0.005em;
}

/* "You might be struggling with" — slightly enlarged */
.section-heading--lg {
  font-size: clamp(2.2rem, 4.8vw, 3rem);
}

.section-subhead {
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 400;
  font-size: 1.15rem;
  color: var(--color-text-light);
  text-align: center;
  margin-bottom: 2rem;
}

.section-heading + .tag-cloud,
.section-heading + .fee-cards,
.section-heading + .about-grid,
.section-heading + .contact-intro,
.section-heading + p:not(.section-subhead) {
  margin-top: 1.75rem;
}

.section-cta {
  text-align: center;
  margin-top: 2rem;
}

/* Small section icon — sits above a heading (psychology icon accents) */
.section-icon {
  display: block;
  width: 56px;
  height: auto;
  margin: 0 auto 0.9rem;
  opacity: 0.85;
}


/* ---------- "Welcome" / inner large heading ----------
   This used to be the cursive script heading; now uses the heading serif,
   bolder, in deep cobalt — keeping the visual weight without a third font. */
.script-heading {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: clamp(2.6rem, 5.5vw, 3.6rem);
  color: var(--color-heading);
  line-height: 1.15;
  margin-bottom: 0.75rem;
  letter-spacing: 0.005em;
}

.script-heading--sm {
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  margin-bottom: 1rem;
}


/* ---------- Ornament (section-break) ----------
   Now uses one of Melissa's psychology icons in place of the diamond,
   flanked by the same faint hairlines. */
.ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 1.4rem 1rem;
  color: var(--color-taupe);
}
.ornament-line {
  display: block;
  flex: 0 1 90px;
  height: 1px;
  background: linear-gradient(90deg, transparent, currentColor 35%, currentColor 65%, transparent);
  opacity: 0.55;
}
.ornament-icon {
  display: block;
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  object-fit: contain;
  opacity: 0.85;
  filter: drop-shadow(0 1px 1px rgba(60, 45, 30, 0.10));
}
@media (max-width: 800px) {
  .ornament { gap: 0.75rem; padding: 1rem 1rem; }
  .ornament-line { flex-basis: 60px; }
  .ornament-icon { width: 32px; height: 32px; }
}


/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 1.05rem;
  letter-spacing: 0.08em;
  padding: 0.85rem 2.4rem;
  border-radius: 2px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background-color var(--transition), color var(--transition), box-shadow var(--transition), transform var(--transition);
  text-align: center;
  position: relative;
}

/* Primary CTA — warm aged gold to match the header CTA.
   Cobalt + gold is the classic editorial pairing (museum signage,
   Penguin Classics). White text reads cleanly on the deep gold and the
   same colour now binds the header & body CTAs into one brand voice. */
.btn-primary {
  background: var(--color-accent);
  color: #FFFFFF;
  border-color: var(--color-accent);
  box-shadow:
    0 1px 0 rgba(0, 0, 0, 0.06),
    0 6px 18px -6px color-mix(in srgb, var(--color-accent) 40%, transparent);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.92rem;
}
.btn-primary:hover {
  background: var(--color-accent-deep);
  border-color: var(--color-accent-deep);
  color: #FFFFFF;
  transform: translateY(-1px);
  box-shadow:
    0 2px 0 rgba(0, 0, 0, 0.08),
    0 10px 22px -6px color-mix(in srgb, var(--color-accent) 50%, transparent);
}
.btn-primary:active {
  transform: translateY(1px);
  box-shadow:
    0 1px 0 rgba(0, 0, 0, 0.06),
    0 3px 8px -3px color-mix(in srgb, var(--color-accent) 35%, transparent);
}

.btn-secondary {
  background: transparent;
  color: var(--color-cobalt-deep);
  border-color: var(--color-cobalt-deep);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.92rem;
}
.btn-secondary:hover {
  background: var(--color-cobalt-deep);
  color: #FFFFFF;
}

.btn-full { width: 100%; letter-spacing: 0.12em; text-transform: uppercase; font-size: 0.92rem; }


/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  min-height: var(--header-height);       /* min-height so a tall child can never bleed out */
  background: var(--color-cobalt-deep);   /* solid cobalt, no transparency */

  z-index: 10001;
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06) inset;
  transition: box-shadow var(--transition);
}
.site-header.scrolled {
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.06) inset,
    0 4px 18px rgba(30, 58, 138, 0.20);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-height);
}


.logo {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
/* Header sits on the deep navy band, so logo / nav / hamburger
   switch to a light ink for legibility. */
.logo span {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  color: #FFFFFF;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.logo:hover span { color: var(--color-clay-soft); }

/* Nav */
.main-nav ul {
  display: flex;
  align-items: center;
  gap: 0.15rem;
}
.main-nav a {
  display: block;
  padding: 0.45rem 0.9rem;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.92);
  border-radius: 4px;
  transition: all var(--transition);
  letter-spacing: 0.02em;
  position: relative;
  white-space: nowrap;                    /* labels never fold to a 2nd line */
}

.main-nav a::before {
  content: '';
  position: absolute;
  top: -4px;
  left: 20%; right: 20%;
  height: 2px;
  background: var(--color-clay);          /* warm clay hairline accent */
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform var(--transition);
}
.main-nav a:hover::before { transform: scaleX(1); }
.main-nav a:hover { color: var(--color-clay-soft); }

/* Header CTA — warm aged gold against the cobalt band: classic editorial
   contrast, and matches the primary body CTA so the brand voice is unified. */
.nav-cta {
  background: var(--color-accent-nav, var(--color-accent)) !important;
  color: #FFFFFF !important;
  font-weight: 500 !important;
  margin-left: 0.75rem;
  border-radius: 4px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.20);
}
.nav-cta::before { display: none !important; }
.nav-cta:hover {
  background: color-mix(in srgb, var(--color-accent-nav, var(--color-accent)), black 22%) !important;
  color: #FFFFFF !important;
}

/* Hamburger */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 10002;
}
.hamburger,
.hamburger::before,
.hamburger::after {
  display: block;
  width: 24px; height: 2px;
  background: #FFFFFF;     /* light, to read on the cobalt header */
  border-radius: 2px;
  transition: all var(--transition);
}
.hamburger { position: relative; }
.hamburger::before, .hamburger::after {
  content: '';
  position: absolute;
  left: 0;
}
.hamburger::before { top: -7px; }
.hamburger::after  { top:  7px; }
.nav-toggle[aria-expanded="true"] .hamburger { background: transparent; }
.nav-toggle[aria-expanded="true"] .hamburger::before { transform: rotate(45deg); top: 0; }
.nav-toggle[aria-expanded="true"] .hamburger::after  { transform: rotate(-45deg); top: 0; }


/* ============================================================
   HERO
   ============================================================ */
.hero {
  padding-top: calc(var(--header-height) + 2.5rem);
  padding-bottom: 0.5rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
}

.hero-text .script-heading { margin-bottom: 0.4rem; }

.hero-intro {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  font-weight: 500;
  color: var(--color-heading);
  line-height: 1.5;
  letter-spacing: 0.005em;
  margin-bottom: 1.4rem;
}

.hero-text p { margin-bottom: 0.85rem; }
.hero-text .btn { margin-top: 0.5rem; }


/* ---- Photo frame — cream-card / polaroid look ---- */
.hero-image {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.photo-frame {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  width: 100%;
  max-width: 380px;
  padding: 14px 14px 0;
  background: #FFFFFF;                                  /* clean ivory-white card */
  border-radius: 4px;
  box-shadow:
    inset 0 0 0 1px var(--color-taupe-light),
    0 1px 2px rgba(60, 45, 30, 0.06),
    0 10px 28px -8px rgba(60, 45, 30, 0.14),
    0 22px 48px -18px rgba(60, 45, 30, 0.12);
}

.photo-frame-inner {
  position: relative;
  border-radius: 2px;
  overflow: hidden;
  box-shadow:
    inset 0 0 0 1px rgba(60, 45, 30, 0.10),
    0 1px 2px rgba(60, 45, 30, 0.06);
}

.photo-frame-inner::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  box-shadow: inset 0 0 30px rgba(60, 45, 30, 0.04);
  border-radius: 2px;
}

.photo-frame img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 520px;
  object-fit: cover;
  border-radius: 2px;
}

.photo-frame-caption {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.1rem 1rem 1.3rem;
  position: relative;
}

.photo-frame-caption::before {
  content: '';
  position: absolute;
  top: 0.55rem;
  left: 28%;
  right: 28%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-clay-soft), transparent);
}

/* Was script — now serif italic for an elegant signature feel without a third font */
.photo-frame-name {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.55rem;
  font-weight: 500;
  color: var(--color-heading);
  line-height: 1.1;
  margin-top: 0.35rem;
}

.photo-frame-credentials {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--color-text-muted);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-top: 0.45rem;
}


/* ---- Featured quote band ----
   A single, calm slab of deep cobalt — bookended by a single warm clay
   hairline. No gradient (the previous symmetric 5-stop gradient read as
   patchy / busy on a calm therapy site). */
.quote-band {
  position: relative;
  margin-top: 3.5rem;
  padding: 3.25rem 0;
  background: var(--color-cobalt-deep);
  border-top: 1px solid rgba(0, 0, 0, 0.12);
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}

.quote-band::before,
.quote-band::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: min(60%, 520px);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-clay-soft), transparent);
  opacity: 0.55;
}
.quote-band::before { top: 1rem; }
.quote-band::after  { bottom: 1rem; }

.hero-quote {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 1rem;
  text-align: center;
  position: relative;
}

/* The quote band sits on cobalt — quote glyph is a warm clay accent,
   text & caption are an off-white ivory for warmth. */
.hero-quote::before {
  content: '\201C';
  position: absolute;
  top: -2.6rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 5rem;
  line-height: 1;
  color: var(--color-clay-soft);
  opacity: 0.7;
  pointer-events: none;
}

.hero-quote blockquote p {
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.25rem, 2.4vw, 1.55rem);
  color: #FBF8F2;                        /* warm ivory ink on cobalt */
  line-height: 1.6;
  margin-bottom: 0;
}

.hero-quote figcaption {
  font-family: var(--font-heading);
  font-size: 0.92rem;
  color: var(--color-clay-soft);         /* clay caption — warm signature */
  margin-top: 1rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.hero-quote figcaption::before { content: '— '; letter-spacing: 0; }


/* ============================================================
   TAG CLOUD
   ============================================================ */
.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.55rem;
  max-width: 820px;
  margin: 0 auto 2.5rem;
  padding: 0;
}

.tag {
  display: inline-block;
  padding: 0.45rem 1.15rem;
  background: var(--color-bg-warm);              /* warm ivory chip */
  color: var(--color-cobalt-deep);
  border: 1px solid var(--color-taupe-light);
  border-radius: 50px;
  font-size: 0.88rem;
  white-space: nowrap;
  cursor: default;
  user-select: none;
  box-shadow: 0 1px 3px rgba(60, 45, 30, 0.04);
}


/* Reassurance */
.reassurance {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.reassurance p { margin-bottom: 0.85rem; }
.reassurance p:last-child { margin-bottom: 0; }

/* The reassuring "Contact me for a free 20-minute chat…" line that sits
   between the reassurance paragraphs and the CTA button.
   Same body font + size as the surrounding paragraphs so it reads cleanly,
   just slightly weighted and in the cobalt heading colour. */
.reassurance-cta-text {
  max-width: 720px;
  margin: 1.75rem auto 0;
  text-align: center;
  font-family: var(--font-body);
  font-size: 1.075rem;
  font-weight: 500;
  color: var(--color-heading);
  line-height: 1.65;
}


/* ============================================================
   WHAT TO EXPECT
   ============================================================ */
#what-to-expect { text-align: center; }
#what-to-expect p { margin-bottom: 0.85rem; }

/* Small framed photo of the counselling room */
.room-photo {
  display: block;
  width: 100%;
  max-width: 320px;
  margin: 0 auto 2rem;
  padding: 10px 10px 0;
  background: #FFFFFF;
  border-radius: 4px;
  box-shadow:
    inset 0 0 0 1px var(--color-taupe-light),
    0 6px 22px -8px rgba(60, 45, 30, 0.16);
}
.room-photo img {
  width: 100%;
  height: auto;
  border-radius: 2px;
  box-shadow: inset 0 0 0 1px rgba(60, 45, 30, 0.08);
}
.room-photo-caption {
  text-align: center;
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 0.82rem;
  color: var(--color-text-muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.85rem 0.5rem 1rem;
}

/* "There is no pressure or obligation…" — matches .reassurance-cta-text:
   body font at body size, weight 500, cobalt — readable & accessible
   without heavy decoration. */
.emphasis {
  max-width: 720px;
  margin: 1rem auto 0;
  text-align: center;
  font-family: var(--font-body);
  font-size: 1.075rem;
  font-weight: 500;
  color: var(--color-heading);
  line-height: 1.65;
  letter-spacing: 0;
}


/* ============================================================
   FEES
   ============================================================ */
.fee-cards {
  display: flex;
  justify-content: center;
  gap: 1.75rem;
  margin-bottom: 1.75rem;
  flex-wrap: wrap;
}

.fee-card {
  background: var(--color-bg-warm);              /* warm ivory card */
  border: 1px solid var(--color-taupe-light);
  border-top: 3px solid var(--color-cobalt-deep);/* cobalt header rule */
  border-radius: var(--radius);
  box-shadow: var(--shadow-warm);
  padding: 2rem 2.5rem;
  text-align: center;
  flex: 0 1 260px;
  transition: transform var(--transition), box-shadow var(--transition);
}
.fee-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-warm-lg);
}

.fee-icon { color: var(--color-clay); margin-bottom: 0.6rem; }

.fee-card h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--color-heading);
  margin-bottom: 0.15rem;
}
.fee-location { font-size: 0.83rem; color: var(--color-text-muted); margin-bottom: 0.8rem; }
.fee-price {
  font-family: var(--font-heading);
  font-size: 2.6rem;
  font-weight: 600;
  color: var(--color-heading);
  line-height: 1.1;
}
.fee-per { font-size: 0.83rem; color: var(--color-text-muted); margin-top: 0.15rem; }
.fee-note {
  text-align: center;
  color: var(--color-text-light);
  font-size: 0.95rem;
  font-style: italic;
  max-width: 600px;
  margin: 0 auto;
}


/* ============================================================
   ABOUT ME
   ============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 2.5rem;
  align-items: start;
}
.about-text p { margin-bottom: 0.85rem; }

.about-qualifications h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--color-heading);
  margin-bottom: 0.8rem;
}
.about-qualifications ul { padding: 0; margin-bottom: 1.75rem; }
.about-qualifications li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.55rem;
  font-size: 0.93rem;
}
.about-qualifications li::before {
  content: '';
  position: absolute;
  left: 0; top: 0.6rem;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--color-clay);                  /* warm clay bullet */
  box-shadow: 0 0 0 2px var(--color-bg);
}

.bacp-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--color-bg-warm);
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-taupe-light);
  box-shadow: 0 2px 10px rgba(60, 45, 30, 0.05);
}
.bacp-badge img { flex-shrink: 0; width: 160px; height: auto; max-width: 100%; }
.bacp-badge p { font-size: 0.86rem; color: var(--color-text-light); line-height: 1.55; margin: 0; }

.directory-link {
  color: var(--color-sage-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--transition);
}
.directory-link:hover { color: var(--color-sage); }


/* ============================================================
   CONTACT
   ============================================================ */
.contact-intro {
  text-align: center;
  max-width: 580px;
  margin: -0.25rem auto 2rem;
  color: var(--color-text-light);
  font-size: 1.02rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 2.5rem;
  align-items: start;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding-top: 0.5rem;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
}
.contact-icon {
  width: 26px; height: 26px;
  flex-shrink: 0;
  color: var(--color-sage-dark);
  margin-top: 0.15rem;
}
.contact-label {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.1rem;
}
.contact-item a, .contact-item p { font-size: 0.95rem; color: var(--color-text); }
.contact-item a:hover { color: var(--color-sage); }

.contact-form {
  background: var(--color-bg-warm);              /* warm ivory form */
  border: 1px solid var(--color-taupe-light);
  border-top: 3px solid var(--color-cobalt-deep);
  border-radius: var(--radius);
  box-shadow: var(--shadow-warm);
  padding: 2rem 2.25rem;
}
.form-group { margin-bottom: 1.1rem; }
.form-group label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-text);
  margin-bottom: 0.3rem;
}
.optional { font-weight: 300; color: var(--color-text-muted); font-size: 0.83rem; }
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.7rem 0.9rem;
  font-family: var(--font-body);
  font-size: 0.93rem;
  color: var(--color-text);
  background: #FFFFFF;
  border: 1.5px solid var(--color-taupe-light);
  border-radius: var(--radius-sm);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--color-cobalt-deep);
  box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.15);
  background: #FFFFFF;
}
.form-group textarea { resize: vertical; min-height: 100px; }

/* Honeypot.
   Positioned off-screen rather than display:none — bots detect and skip the latter.
   Combined with tabindex="-1" and aria-hidden on the wrapper, no sighted, keyboard or
   screen-reader visitor can reach it. */
.hp-wrap {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-error {
  margin-top: 0.35rem;
  font-size: 0.85rem;
  line-height: 1.5;
  color: var(--color-error);
}

/* Shown above the form when a message could not be sent. The form itself stays
   filled in underneath, so nothing the visitor wrote is lost. */
.form-notice {
  padding: 0.95rem 1.1rem;
  margin-bottom: 1.35rem;
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--color-error);
  background: var(--color-error-bg);
  border: 1px solid var(--color-error-line);
  border-radius: var(--radius-sm);
}
.form-notice p + p { margin-top: 0.4rem; }
.form-notice a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Replaces the form once a message has gone through. Matches the form's card
   treatment so the column doesn't visibly collapse. */
.contact-thanks {
  background: var(--color-bg-warm);
  border: 1px solid var(--color-taupe-light);
  border-top: 3px solid var(--color-accent);
  border-radius: var(--radius);
  box-shadow: var(--shadow-warm);
  padding: 2rem 2.25rem;
}
.contact-thanks h3 {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.4rem;
  color: var(--color-heading);
  margin-bottom: 0.6rem;
  line-height: 1.3;
}
.contact-thanks p { font-size: 0.95rem; color: var(--color-text-light); }
.contact-thanks a { color: var(--color-sage-dark); text-decoration: underline; text-underline-offset: 3px; }
.contact-thanks a:hover { color: var(--color-sage); }

/* Map thumbnail — sits under the contact details column */
.contact-map {
  margin-top: 0.5rem;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--color-taupe-light);
  box-shadow: var(--shadow-warm);
  background: var(--color-bg-warm);
}
.contact-map iframe {
  display: block;
  width: 100%;
  height: 220px;
  border: 0;
}
.contact-map-link {
  display: block;
  padding: 0.55rem 0.9rem;
  font-size: 0.83rem;
  color: var(--color-text-light);
  border-top: 1px solid var(--color-taupe-light);
  transition: color var(--transition);
}
.contact-map-link:hover { color: var(--color-sage-dark); }


/* ============================================================
   FAQ PAGE
   Questions render collapsed (native <details>) and expand on click.
   ============================================================ */
.faq-page {
  /* first section on the page — clear the fixed header, like .hero */
  padding-top: calc(var(--header-height) + 2.5rem);
}

.faq-subhead {
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0;
}

.faq-cta-top { margin-top: 1.4rem; margin-bottom: 2.6rem; }

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.faq-item {
  background: var(--color-bg-warm);
  border: 1px solid var(--color-taupe-light);
  border-radius: var(--radius-sm);
  box-shadow: 0 2px 10px rgba(60, 45, 30, 0.05);
  transition: box-shadow var(--transition);
}
.faq-item[open] { box-shadow: var(--shadow-warm); }

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.05rem 1.4rem;
  cursor: pointer;
  list-style: none;                 /* hide the default disclosure triangle */
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:focus-visible {
  outline: 2px solid var(--color-cobalt-deep);
  outline-offset: 2px;
  border-radius: var(--radius-sm);
}

.faq-question {
  font-family: var(--font-heading);
  font-size: 1.22rem;
  font-weight: 600;
  color: var(--color-heading);
  line-height: 1.35;
}
.faq-item summary:hover .faq-question { color: var(--color-sage); }

/* Plus that becomes a minus when open */
.faq-marker {
  position: relative;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
}
.faq-marker::before,
.faq-marker::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 16px; height: 2px;
  background: var(--color-sage);
  border-radius: 1px;
  transform: translate(-50%, -50%);
  transition: transform var(--transition);
}
.faq-marker::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq-item[open] .faq-marker::after { transform: translate(-50%, -50%) rotate(0deg); }

.faq-answer {
  padding: 0 1.4rem 1.3rem;
  border-top: 1px solid var(--color-taupe-light);
}
.faq-answer p {
  padding-top: 0.9rem;
  font-size: 0.98rem;
  color: var(--color-text-light);
  line-height: 1.7;
}

@media (max-width: 800px) {
  .faq-item summary { padding: 0.9rem 1.1rem; }
  .faq-answer { padding: 0 1.1rem 1.1rem; }
  .faq-question { font-size: 1.1rem; }
}


/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--color-cobalt-deep);    /* matches the header — solid forest green */
  color: rgba(255, 255, 255, 0.85);
  padding: 2.5rem 0;
  text-align: center;
}

.footer-leaf {
  color: var(--color-clay-soft);
  margin: 0 auto 0.6rem;
  display: block;
  opacity: 0.85;
}
.footer-name {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: 0.1rem;
}
.footer-credentials { font-size: 0.83rem; margin-bottom: 0.6rem; opacity: 0.75; }
.footer-copy { font-size: 0.76rem; opacity: 0.55; }


/* ============================================================
   TESTIMONIALS
   Sits on the rich cream page surface (predominant), with forest green
   used only as accent + bounding: a green hairline framing the section
   and a green edge-rule + quotation glyph on each warm ivory card. This
   keeps the close of the page light & calm, distinct from the single
   Jung blockquote (which is the one full green band).
   ============================================================ */
.testimonials {
  position: relative;
  padding: var(--section-pad-y) 0;
  background: var(--color-bg);              /* rich cream — predominant */
  border-top: 2px solid var(--color-cobalt-deep);     /* forest-green bounding (top only) */
}

.testimonials .section-heading {
  color: var(--color-heading);             /* forest green heading */
  margin-bottom: 2.5rem;
}

.testimonial-list {
  max-width: 760px;
  margin: 0 auto;
}

/* Testimonials read as quiet, centred passages separated by the same faint
   hairline motif used in the page ornaments — no boxed "cards", just an
   elegant forest-green quotation glyph crowning each one. */
.testimonial {
  position: relative;
  text-align: center;
  padding: 2.5rem 1rem 2rem;
}
.testimonial:first-child { padding-top: 0.5rem; }

/* Faint forest-green hairline between testimonials */
.testimonial + .testimonial::after {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(55%, 360px);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-cobalt-deep), transparent);
  opacity: 0.4;
}

/* Quotation-mark crown — forest green glyph centred above each quote */
.testimonial::before {
  content: '\201C';
  display: block;
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 2.8rem;
  line-height: 0.6;
  color: var(--color-cobalt-deep);
  opacity: 0.55;
  margin-bottom: 0.6rem;
}

.testimonial blockquote p {
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  color: var(--color-text);                 /* warm charcoal on cream */
  line-height: 1.6;
  margin: 0 auto;
  max-width: 640px;
}
.testimonial blockquote p + p { margin-top: 0.75rem; }

@media (max-width: 800px) {
  .testimonial { padding: 2.1rem 0.5rem 1.75rem; }
  .testimonial::before { font-size: 2.4rem; }
}




/* ============================================================
   FADE-IN
   ============================================================ */

.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .fade-in {
    opacity: 1;
    transform: none;
    transition: none;
  }
}


/* ============================================================
   RESPONSIVE
   ============================================================ */

/* Tablet (≤1024px) */
@media (max-width: 1024px) {
  :root { --section-pad-y: 3rem; }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  .hero-image { order: -1; }
  .photo-frame { max-width: 320px; margin: 0 auto; }

  .about-grid { grid-template-columns: 1fr; gap: 1.75rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 1.75rem; }
}

/* Mobile nav collapse (≤1024px) */
@media (max-width: 1024px) {
  :root {
    --section-pad-y: 2.5rem;
    --header-height: 60px;
  }

  .nav-toggle { display: block; }


  .main-nav {
    position: fixed;
    top: 0; right: 0;
    width: 280px;
    height: 100vh; height: 100dvh;
    background: var(--color-bg-warm);                    /* warm ivory drawer */
    box-shadow: -6px 0 30px rgba(60, 45, 30, 0.18);
    transform: translateX(100%);
    transition: transform var(--transition);
    padding: calc(var(--header-height) + 1.5rem) 1.5rem 2rem;
    z-index: 10001;
  }
  /* In the open mobile drawer, links sit on warm ivory — flip them to cobalt */
  .main-nav a { color: var(--color-cobalt-deep); }
  .main-nav a:hover { color: var(--color-clay); }
  .main-nav.open { transform: translateX(0); }
  .main-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0.25rem;
  }
  .main-nav a {
    padding: 0.7rem 1rem;
    font-size: 1.05rem;
    border-radius: var(--radius-sm);
  }
  .main-nav a::before { display: none; }
  .nav-cta {
    margin-left: 0 !important;
    margin-top: 0.6rem;
    text-align: center;
  }

  .script-heading { font-size: 2.4rem; }
  .photo-frame { max-width: 300px; }

  .quote-band { padding: 2.25rem 0; margin-top: 2.5rem; }
  .quote-band::before { top: 0.7rem; }
  .quote-band::after  { bottom: 0.7rem; }
  .hero-quote::before { top: -1.8rem; font-size: 3.8rem; }

  .tag { font-size: 0.82rem; padding: 0.4rem 0.9rem; }
  .fee-cards { gap: 1rem; }
  .fee-card { padding: 1.5rem 1.75rem; }
  .fee-price { font-size: 2.2rem; }
  .contact-form { padding: 1.5rem 1.25rem; }
  .section-heading { font-size: 1.75rem; }
  .section-heading--lg { font-size: 1.95rem; }
  .ornament svg { width: 130px; }
  .section-icon { width: 48px; }
}

/* Small mobile (≤480px) */
@media (max-width: 480px) {
  .container { padding: 0 1rem; }
  .script-heading { font-size: 2.1rem; }
  .photo-frame { max-width: 260px; padding: 10px 10px 0; }
  .photo-frame-name { font-size: 1.35rem; }
  .photo-frame-credentials { font-size: 0.66rem; letter-spacing: 0.18em; }
  .hero-intro { font-size: 1.18rem; }
  .hero-quote blockquote p { font-size: 1.08rem; }
  .fee-card { flex: 0 1 100%; }
  .btn { padding: 0.75rem 1.7rem; font-size: 1rem; }
  .room-photo { max-width: 260px; }
}


/* Nav overlay */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(30, 58, 138, 0.35);     /* cobalt scrim */
  z-index: 10000;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
.nav-overlay.active {
  opacity: 1;
  pointer-events: auto;
}
