/* ==========================================================
   Pathway Art Therapy — site styles
   Colours and fonts live in :root below. Change them there
   and the whole site updates.
   ========================================================== */

:root {
  --cream: #fbf6ec;
  --paper: #fffdf8;
  --sand: #f4e9d3;
  --blush: #f6e0d5;
  --gold: #e3a93a;
  --gold-soft: #f3d995;
  --gold-text: #8a5a06;
  --terracotta: #cf7d5c;
  --green: #33614a;
  --green-deep: #1f3b2e;
  --green-soft: #e3ece2;
  --ink: #2a2925;
  --muted: #5b574e;
  --line: #e8dcc4;

  --radius: 24px;
  --shadow: 0 22px 44px -26px rgba(64, 46, 16, .45);
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Figtree", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-brand: "Aboreto", "Figtree", sans-serif;
  --wrap: 1160px;
  --header-h: 76px;
}

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 12px); }
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font: 400 1.0625rem/1.65 var(--font-body);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--green); text-underline-offset: .18em; }
a:hover { color: var(--green-deep); }
:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; border-radius: 6px; }

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -.01em;
  color: var(--green-deep);
  margin: 0 0 .5em;
}
h1 { font-size: clamp(2.4rem, 5vw, 3.9rem); }
h2 { font-size: clamp(1.9rem, 3.5vw, 2.75rem); }
h3, .h3 { font-size: 1.35rem; }
p { margin: 0 0 1em; }
ul, ol { margin: 0; padding: 0; }

.wrap { width: min(100% - 2.5rem, var(--wrap)); margin-inline: auto; }
.narrow { max-width: 820px; }
.center { text-align: center; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.skip { position: absolute; left: -999px; top: 0; background: var(--green-deep); color: #fff; padding: .6rem 1rem; z-index: 100; border-radius: 0 0 12px 0; }
.skip:focus { left: 0; }

/* Small uppercase label with a dotted "pathway" line */
.eyebrow {
  display: inline-flex; align-items: center; gap: .7rem;
  font-family: var(--font-brand);
  font-size: .8rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--gold-text);
  margin: 0 0 1rem;
}
.eyebrow::before {
  content: ""; width: 38px; height: 6px;
  background: radial-gradient(circle, var(--gold) 2.2px, transparent 2.7px) 0 50% / 9px 6px repeat-x;
}

/* Highlighter-pen emphasis inside headings */
h1 em, h2 em {
  font-style: italic;
  color: var(--green);
  background: linear-gradient(transparent 60%, rgba(243, 217, 149, .95) 60%, rgba(243, 217, 149, .95) 92%, transparent 92%);
  -webkit-box-decoration-break: clone; box-decoration-break: clone;
  padding: 0 .08em;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .85rem 1.5rem;
  border-radius: 999px;
  border: 2px solid transparent;
  font: 600 1rem/1.2 var(--font-body);
  text-decoration: none;
  cursor: pointer;
  transition: transform .15s ease, background-color .15s ease, color .15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--green); color: #fff; }
.btn-primary:hover { background: var(--green-deep); color: #fff; }
.btn-ghost { border-color: var(--green); color: var(--green); background: transparent; }
.btn-ghost:hover { background: var(--green); color: #fff; }
.btn[disabled] { opacity: .6; cursor: wait; transform: none; }

.link-arrow { font-weight: 600; text-decoration: none; color: var(--green); }
.link-arrow::after { content: " \2192"; transition: margin .15s; }
.link-arrow:hover::after { margin-left: .2rem; }

/* ---------- Header & navigation ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(251, 246, 236, .94);
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(232, 220, 196, .7);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: var(--header-h); }
.brand { display: flex; align-items: center; gap: .75rem; text-decoration: none; color: var(--green-deep); }
.brand img { width: 30px; height: auto; }
.brand-name { font-family: var(--font-brand); font-size: 1.1rem; letter-spacing: .16em; line-height: 1.05; text-transform: uppercase; }
.brand-name small { display: block; font-size: .64rem; letter-spacing: .26em; color: var(--gold-text); margin-top: .2rem; }

.nav > ul { list-style: none; display: flex; align-items: center; gap: .15rem; }
.nav li { list-style: none; }
.nav > ul > li { position: relative; }
.nav > ul > li > a:not(.btn) {
  display: block; padding: .55rem .85rem; border-radius: 999px;
  color: var(--ink); text-decoration: none; font-weight: 500; font-size: .97rem;
}
.nav > ul > li > a:not(.btn):hover,
.nav > ul > li > a[aria-current="page"] { background: var(--sand); color: var(--green-deep); }
.has-sub > a::after {
  content: ""; display: inline-block; width: 6px; height: 6px; margin-left: .45rem;
  border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor;
  transform: translateY(-3px) rotate(45deg);
}
.sub {
  position: absolute; top: calc(100% + 6px); left: 0; min-width: 260px;
  background: var(--paper); border: 1px solid var(--line); border-radius: 18px;
  padding: .5rem; box-shadow: var(--shadow);
  opacity: 0; visibility: hidden; transform: translateY(6px);
  transition: opacity .15s, transform .15s, visibility .15s;
}
.sub::before { content: ""; position: absolute; left: 0; right: 0; top: -10px; height: 10px; } /* hover bridge */
.has-sub:hover .sub, .has-sub:focus-within .sub { opacity: 1; visibility: visible; transform: none; }
.sub a { display: block; padding: .6rem .85rem; border-radius: 12px; color: var(--ink); text-decoration: none; font-size: .95rem; }
.sub a:hover { background: var(--cream); color: var(--green-deep); }
.nav-cta { margin-left: .6rem; }
.nav-cta .btn { padding: .7rem 1.25rem; }

.nav-toggle { display: none; width: 46px; height: 46px; border: 0; border-radius: 12px; background: transparent; cursor: pointer; position: relative; }
.bars, .bars::before, .bars::after {
  position: absolute; left: 12px; width: 22px; height: 2px; border-radius: 2px;
  background: var(--green-deep); transition: transform .2s, background-color .2s, top .2s;
}
.bars { top: 22px; }
.bars::before, .bars::after { content: ""; left: 0; }
.bars::before { top: -7px; }
.bars::after { top: 7px; }
.nav-toggle[aria-expanded="true"] .bars { background: transparent; }
.nav-toggle[aria-expanded="true"] .bars::before { top: 0; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] .bars::after { top: 0; transform: rotate(-45deg); }

/* ---------- Sections ---------- */
.section { padding: clamp(3.5rem, 8vw, 6.5rem) 0; }
.section-tight { padding-top: 1rem; }
.section-sand { background: var(--sand); }
.section-paper { background: var(--paper); }
.section-head { max-width: 660px; margin-bottom: 2.75rem; }
.section-head.center { margin-inline: auto; }
.section-head p:not(.eyebrow) { color: var(--muted); font-size: 1.1rem; }

/* ---------- Hero ---------- */
.hero { padding: clamp(2.5rem, 6vw, 5rem) 0 clamp(3.5rem, 7vw, 6rem); overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.hero-lead { font-size: 1.2rem; color: var(--muted); max-width: 36ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin: 1.9rem 0 1.7rem; }
.trust { list-style: none; display: flex; flex-wrap: wrap; gap: .5rem 1.3rem; font-size: .93rem; color: var(--muted); }
.trust li { display: flex; align-items: center; gap: .5rem; }
.trust li::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--gold); }

.hero-media { position: relative; isolation: isolate; max-width: 460px; justify-self: end; width: 100%; }
.hero-media::before {
  content: ""; position: absolute; inset: 10% -9% -7% 12%; z-index: -1;
  background: var(--gold-soft);
  border-radius: 58% 42% 55% 45% / 50% 58% 42% 50%;
}
.hero-media .sun { position: absolute; width: 92px; top: -34px; left: -40px; filter: drop-shadow(0 2px 6px rgba(251, 246, 236, .9)); }

/* Arched photo frame, like a window */
.arch { border-radius: 999px 999px 28px 28px; overflow: hidden; aspect-ratio: 4 / 5; box-shadow: var(--shadow); background: var(--sand); }
.arch img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- Quote band ---------- */
.quote-band { background: var(--green-deep); color: #f6efe0; padding: clamp(3rem, 6vw, 4.5rem) 0; text-align: center; }
.quote-band blockquote { margin: 0 auto; max-width: 46ch; font-family: var(--font-display); font-style: italic; font-size: clamp(1.35rem, 2.5vw, 1.95rem); line-height: 1.4; }
.quote-band cite { display: block; margin-top: 1.1rem; font-family: var(--font-brand); font-style: normal; font-size: .8rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold-soft); }

/* ---------- "Sound familiar?" list ---------- */
.feel-grid { list-style: none; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.feel {
  display: flex; gap: .95rem; align-items: flex-start;
  background: var(--paper); border: 1px solid var(--line); border-radius: 20px;
  padding: 1.3rem 1.4rem; font-size: 1.05rem; line-height: 1.5;
}
.feel::before {
  content: ""; flex: none; width: 12px; height: 12px; margin-top: .4rem; border-radius: 50%;
  background: var(--gold); box-shadow: 0 0 0 5px rgba(227, 169, 58, .18);
}
.feel:nth-child(3n+2)::before { background: var(--green); box-shadow: 0 0 0 5px rgba(51, 97, 74, .14); }
.feel:nth-child(3n)::before { background: var(--terracotta); box-shadow: 0 0 0 5px rgba(207, 125, 92, .18); }
.note { margin: 2.5rem auto 0; max-width: 40ch; text-align: center; font-family: var(--font-display); font-style: italic; font-size: clamp(1.25rem, 2.2vw, 1.55rem); line-height: 1.4; color: var(--green-deep); }

/* ---------- Cards ---------- */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.card {
  display: flex; flex-direction: column; overflow: hidden;
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  color: inherit; text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); color: inherit; }
.card img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.card-body { display: flex; flex-direction: column; flex: 1; padding: 1.5rem 1.5rem 1.7rem; }
.card-body p { color: var(--muted); }
.card-body .link-arrow { margin-top: auto; }
.tag { font-size: .78rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--gold-text); margin-bottom: .5rem; }
.fine { font-size: .92rem; }

/* ---------- Split (photo + text) ---------- */
.split { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(2rem, 6vw, 5rem); align-items: center; }
.split-media { position: relative; isolation: isolate; max-width: 420px; width: 100%; }
.split-media::before {
  content: ""; position: absolute; inset: -5% 12% 14% -7%; z-index: -1;
  background: var(--blush); border-radius: 48% 52% 40% 60% / 55% 45% 55% 45%;
}
.creds { list-style: none; display: grid; gap: .5rem; margin: 1.4rem 0 2rem; }
.creds li { display: flex; gap: .6rem; align-items: baseline; }
.creds li::before { content: ""; flex: none; width: 8px; height: 8px; border-radius: 50%; background: var(--gold); transform: translateY(-2px); }

/* ---------- Steps along a dotted path ---------- */
.steps { list-style: none; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; position: relative; }
.steps::before {
  content: ""; position: absolute; top: 31px; left: 16%; right: 16%; height: 6px;
  background: radial-gradient(circle, var(--gold) 2.6px, transparent 3.1px) 0 50% / 15px 6px repeat-x;
}
.step { position: relative; display: flex; flex-direction: column; align-items: center; gap: 1.1rem; }
.step-num {
  position: relative; z-index: 1; display: grid; place-items: center; flex: none;
  width: 68px; height: 68px; border-radius: 50%;
  background: var(--paper); border: 2px solid var(--gold);
  font-family: var(--font-display); font-size: 1.6rem; color: var(--green-deep);
}
.step-card { width: 100%; height: 100%; background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.6rem; }
.step-card p { color: var(--muted); margin: 0; }
.meta { display: flex; flex-wrap: wrap; gap: .4rem; margin: 0 0 .9rem; }
.pill { font-size: .8rem; font-weight: 600; padding: .25rem .7rem; border-radius: 999px; background: var(--green-soft); color: var(--green-deep); }
.pill-gold { background: var(--gold-soft); color: #5a3c05; }
.actions { display: flex; flex-wrap: wrap; justify-content: center; gap: .8rem; margin-top: 2.5rem; }

/* ---------- Testimonial ---------- */
.testimonial { background: var(--green-soft); text-align: center; }
.testimonial figure { margin: 0 auto; }
.testimonial blockquote { margin: 0 0 1.6rem; font-family: var(--font-display); font-size: clamp(1.3rem, 2.4vw, 1.7rem); line-height: 1.45; color: var(--green-deep); }
.testimonial blockquote::before { content: "\201C"; display: block; font-size: 5rem; line-height: .7; color: var(--gold); }

/* ---------- Call to action ---------- */
.cta-box {
  display: grid; grid-template-columns: 1.4fr auto; gap: 2rem; align-items: center;
  background: var(--gold-soft); border-radius: 32px; padding: clamp(2rem, 5vw, 3.5rem);
  position: relative; overflow: hidden; isolation: isolate;
}
.cta-box::after {
  content: ""; position: absolute; z-index: -1; right: -60px; bottom: -80px; width: 260px; height: 260px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 253, 248, .75) 2.2px, transparent 2.7px) 0 0 / 14px 14px;
}
.cta-box p { margin: 0; color: #4b3a14; font-size: 1.1rem; }
.cta-box .actions { margin: 0; justify-content: flex-end; }

/* ---------- Page hero (inner pages) ---------- */
.page-hero { padding: clamp(3rem, 7vw, 5rem) 0 2rem; }
.lead { font-size: 1.2rem; color: var(--muted); max-width: 54ch; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1.35fr .65fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.contact-form {
  position: relative; display: grid; gap: 1.15rem;
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  padding: clamp(1.5rem, 4vw, 2.5rem); box-shadow: var(--shadow);
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.15rem; }
.contact-form label { display: grid; gap: .4rem; font-weight: 600; font-size: .95rem; color: var(--green-deep); }
.opt { font-weight: 400; color: var(--muted); }
.contact-form input, .contact-form select, .contact-form textarea {
  width: 100%; font: inherit; font-weight: 400; color: var(--ink);
  background: var(--cream); border: 1.5px solid var(--line); border-radius: 14px; padding: .8rem 1rem;
}
.contact-form select {
  -webkit-appearance: none; appearance: none; padding-right: 2.6rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%231f3b2e' stroke-width='1.8' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 1rem center;
}
.contact-form textarea { resize: vertical; min-height: 150px; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus {
  outline: none; border-color: var(--green); box-shadow: 0 0 0 4px rgba(51, 97, 74, .15);
}
.contact-form .btn { justify-self: start; }
.hp { position: absolute !important; left: -9999px; }
.form-status { margin: 0; font-weight: 500; }
.form-status:empty { display: none; }
.form-status.ok { color: var(--green); background: var(--green-soft); padding: .9rem 1rem; border-radius: 14px; }
.form-status.err { color: #8f3521; background: #f8e3dc; padding: .9rem 1rem; border-radius: 14px; }
.privacy-note { font-size: .88rem; color: var(--muted); margin: 0; }

.contact-aside { display: grid; gap: 1.4rem; }
.contact-aside .arch { max-width: 300px; aspect-ratio: 1 / 1.1; }
.aside-card { background: var(--sand); border-radius: var(--radius); padding: 1.8rem; }
.aside-card hr { border: 0; border-top: 1px dashed #d8c7a3; margin: 1.5rem 0; }
.aside-card p:last-child { margin-bottom: 0; }
.small-note { font-size: .88rem; color: var(--muted); margin: 0; }

/* ---------- Footer ---------- */
.site-footer { background: var(--green-deep); color: #e6dfcf; padding: 4rem 0 2rem; }
.site-footer a { color: #f6efe0; text-decoration: none; }
.site-footer a:hover { color: var(--gold-soft); text-decoration: underline; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2.5rem; }
.footer-grid ul { list-style: none; display: grid; gap: .45rem; }
.site-footer .brand { color: #f6efe0; margin-bottom: 1rem; }
.site-footer .brand-name small { color: var(--gold-soft); }
.footer-grid p { max-width: 34ch; }
.footer-h { font-family: var(--font-brand); font-size: .8rem; font-weight: 400; letter-spacing: .2em; text-transform: uppercase; color: var(--gold-soft); margin-bottom: 1rem; }
.footer-base {
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: .75rem;
  margin-top: 3rem; padding-top: 1.5rem; border-top: 1px solid rgba(246, 239, 224, .18);
  font-size: .88rem; color: #bfb8a6;
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  /* No blur on small screens: it would trap the fixed menu inside the header */
  .site-header { -webkit-backdrop-filter: none; backdrop-filter: none; background: var(--cream); }
  .nav-toggle { display: inline-block; }
  .nav {
    position: fixed; inset: var(--header-h) 0 0 0; z-index: 49;
    background: var(--cream); padding: 1rem 1.25rem 3rem; overflow-y: auto;
    display: none;
  }
  .nav.open { display: block; }
  .nav > ul { flex-direction: column; align-items: stretch; gap: 0; }
  .nav > ul > li > a:not(.btn) { font-size: 1.15rem; padding: .8rem .5rem; border-radius: 12px; }
  .has-sub > a::after { display: none; }
  .sub {
    position: static; opacity: 1; visibility: visible; transform: none;
    min-width: 0; padding: 0 0 .6rem .9rem; border: 0; box-shadow: none; background: transparent;
  }
  .sub a { color: var(--muted); }
  .nav-cta { margin: 1rem 0 0; }
  .nav-cta .btn { width: 100%; padding: 1rem; }
  body.menu-open { overflow: hidden; }
}

@media (max-width: 860px) {
  .hero-grid, .split, .contact-grid, .cta-box { grid-template-columns: 1fr; }
  .hero-media { justify-self: center; max-width: 360px; margin-top: 1rem; }
  .hero-media .sun { width: 76px; left: -22px; }
  .split-media { justify-self: center; max-width: 340px; }
  .cards { grid-template-columns: 1fr; max-width: 520px; margin-inline: auto; }
  .feel-grid { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr; gap: 1.2rem; }
  .steps::before {
    top: 0; bottom: 0; left: 31px; right: auto; width: 6px; height: auto;
    background: radial-gradient(circle, var(--gold) 2.6px, transparent 3.1px) 50% 0 / 6px 15px repeat-y;
  }
  .step { flex-direction: row; align-items: flex-start; }
  .cta-box .actions { justify-content: flex-start; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > :first-child { grid-column: 1 / -1; }
}

@media (max-width: 560px) {
  body { font-size: 1rem; }
  .feel-grid, .field-row { grid-template-columns: 1fr; }
  .hero-actions .btn, .actions .btn { width: 100%; }
  .footer-grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; scroll-behavior: auto !important; }
}

/* ==========================================================
   Inner page components
   ========================================================== */

/* Page hero with an optional photo */
.page-hero-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.page-hero-grid .arch { max-width: 360px; width: 100%; justify-self: end; }
.page-hero .hero-actions { margin-bottom: 0; }
.location-note {
  display: flex; width: fit-content; align-items: center; gap: .5rem;
  padding: .4rem .95rem; margin: 0 0 1.3rem; border-radius: 999px;
  background: var(--green-soft); color: var(--green-deep); font-size: .88rem; font-weight: 600;
}
.location-note::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--green); }

/* Long-form text */
.prose { max-width: 68ch; }
.prose h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); margin-top: 2.2em; }
.prose h2:first-child, .prose > :first-child { margin-top: 0; }
.prose h3 { margin-top: 1.8em; }
.prose ul { list-style: none; display: grid; gap: .55rem; margin: 0 0 1.4em; }
.prose ul li { position: relative; padding-left: 1.4rem; }
.prose ul li::before { content: ""; position: absolute; left: 0; top: .62em; width: 8px; height: 8px; border-radius: 50%; background: var(--gold); }
.prose blockquote {
  margin: 1.6em 0; padding: 1.2rem 1.5rem; border-left: 4px solid var(--gold);
  background: var(--paper); border-radius: 0 16px 16px 0;
  font-family: var(--font-display); font-style: italic; font-size: 1.2rem; line-height: 1.5; color: var(--green-deep);
}
.prose img { border-radius: var(--radius); margin: 1.6em 0; }

/* Main text with a sticky side column */
.content-grid { display: grid; grid-template-columns: minmax(0, 1fr) 340px; gap: clamp(2rem, 5vw, 4.5rem); align-items: start; }
.side { position: sticky; top: calc(var(--header-h) + 1.5rem); display: grid; gap: 1.2rem; }

/* Small feature tiles */
.tiles { list-style: none; display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1rem; margin: 0 0 1.5rem; }
.tile { background: var(--paper); border: 1px solid var(--line); border-radius: 20px; padding: 1.4rem; }
.tile h3 { font-size: 1.15rem; margin-bottom: .35em; }
.tile p { margin: 0; color: var(--muted); font-size: .98rem; }

/* Fees */
.fee-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.2rem; align-items: stretch; }
.fee-card { display: flex; flex-direction: column; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.8rem; }
.fee-card.featured { border: 2px solid var(--gold); box-shadow: var(--shadow); }
.fee-card .tag { display: block; }
.fee-card h3 { margin-bottom: .2em; }
.price { font-family: var(--font-display); font-size: 2.5rem; line-height: 1; color: var(--green-deep); margin: .5rem 0 .2rem; }
.price small { font-family: var(--font-body); font-size: .9rem; font-weight: 500; color: var(--muted); margin-left: .2rem; }
.price-alt { font-weight: 600; color: var(--green-deep); margin: 1rem 0 .2rem; }
.fee-card ul { list-style: none; display: grid; gap: .45rem; margin: 1rem 0 0; font-size: .96rem; color: var(--muted); }
.fee-card ul li { position: relative; padding-left: 1.3rem; }
.fee-card ul li::before { content: ""; position: absolute; left: 0; top: .6em; width: 7px; height: 7px; border-radius: 50%; background: var(--gold); }
.fee-card .fine { color: var(--muted); margin: 0; }
.fee-card .btn { margin-top: auto; align-self: flex-start; }
.fee-card .btn-spacer { flex: 1; min-height: 1.5rem; }
.fees-note { text-align: center; color: var(--muted); font-size: .98rem; margin: 2rem auto 0; max-width: 62ch; }

/* Scope-of-practice and info notices */
.notice { background: var(--paper); border: 1px dashed #d4c29c; border-radius: 20px; padding: 1.3rem 1.5rem; font-size: .95rem; color: var(--muted); }
.notice strong { color: var(--green-deep); }
.notice p:last-child { margin-bottom: 0; }

/* Banner, for waitlists and announcements */
.banner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1rem; background: var(--blush); border-radius: 20px; padding: 1.2rem 1.5rem; }
.banner p { margin: 0; font-weight: 500; color: var(--green-deep); }

/* FAQ accordion (uses <details>, works without JavaScript) */
.faq { display: grid; gap: .8rem; max-width: 820px; }
.faq details { background: var(--paper); border: 1px solid var(--line); border-radius: 18px; padding: 0 1.4rem; }
.faq summary {
  position: relative; cursor: pointer; list-style: none;
  padding: 1.15rem 2.2rem 1.15rem 0;
  font-family: var(--font-display); font-size: 1.2rem; line-height: 1.3; color: var(--green-deep);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; position: absolute; right: .3rem; top: 50%; width: 10px; height: 10px;
  border-right: 2px solid var(--gold-text); border-bottom: 2px solid var(--gold-text);
  transform: translateY(-70%) rotate(45deg); transition: transform .2s;
}
.faq details[open] summary::after { transform: translateY(-30%) rotate(-135deg); }
.faq .answer { padding: 0 0 1.3rem; color: var(--muted); }
.faq .answer p:last-child, .faq .answer ul:last-child { margin-bottom: 0; }
.faq .answer ul { list-style: none; display: grid; gap: .4rem; margin: 0 0 1em; }
.faq .answer ul li { position: relative; padding-left: 1.3rem; }
.faq .answer ul li::before { content: ""; position: absolute; left: 0; top: .62em; width: 7px; height: 7px; border-radius: 50%; background: var(--gold); }

/* Testimonials */
.quote-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.4rem; }
.quote-card { display: flex; flex-direction: column; gap: 1rem; margin: 0; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 2rem; }
.quote-card blockquote { margin: 0; font-family: var(--font-display); font-size: 1.2rem; line-height: 1.5; color: var(--green-deep); }
.quote-card blockquote::before { content: "\201C"; display: block; font-size: 3.5rem; line-height: .6; color: var(--gold); margin-bottom: .6rem; }
.quote-card figcaption { margin-top: auto; font-size: .9rem; font-weight: 600; letter-spacing: .04em; color: var(--gold-text); }

/* Blog */
.post-index { list-style: none; display: grid; gap: .6rem; margin: 1.5rem 0 0; }
.post-index a { font-family: var(--font-display); font-size: 1.2rem; text-decoration: none; }
.post-index span { display: block; font-size: .9rem; color: var(--muted); }
.post { max-width: 720px; margin-inline: auto; }
.post + .post { margin-top: 5rem; padding-top: 4rem; border-top: 1px dashed #d4c29c; }
.post h2 { font-size: clamp(1.8rem, 3.4vw, 2.5rem); }
.post-meta { color: var(--muted); font-size: .92rem; margin-bottom: 1.6rem; }
.post-image { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; border-radius: var(--radius); margin-bottom: 2rem; }

/* Site-wide scope-of-practice line in the footer */
.footer-scope { margin-top: 2.5rem; }
.footer-scope p { margin: 0; max-width: 90ch; font-size: .88rem; line-height: 1.6; color: #cfc8b6; }

@media (max-width: 860px) {
  .page-hero-grid, .content-grid { grid-template-columns: 1fr; }
  .page-hero-grid .arch { justify-self: center; max-width: 320px; }
  .side { position: static; }
}

/* Spacing when a note or banner follows another block */
.notice, .banner { margin-top: 1.5rem; }
.notice:first-child, .banner:first-child, .side > .notice, .side > .banner { margin-top: 0; }

/* Name under a testimonial */
.testimonial figcaption { margin: -.4rem 0 1.6rem; font-size: .9rem; font-weight: 600; letter-spacing: .04em; color: var(--gold-text); }

/* Price written in words rather than numbers */
.price.price-text { font-size: 1.6rem; line-height: 1.2; }

/* Portrait photo inside a blog post */
.prose img.portrait { width: 100%; max-width: 440px; margin-inline: auto; }

/* Small price breakdown table inside a fee card */
.fee-table { width: 100%; border-collapse: collapse; margin: 1.2rem 0 .6rem; font-size: .92rem; }
.fee-table caption { text-align: left; font-weight: 600; color: var(--green-deep); margin-bottom: .5rem; }
.fee-table th, .fee-table td { padding: .45rem .2rem; border-bottom: 1px dashed #d8c7a3; text-align: left; }
.fee-table th { font-size: .78rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--gold-text); }
.fee-table th:last-child, .fee-table td:last-child { text-align: right; }
.fee-table td:last-child { font-weight: 600; color: var(--green-deep); }
.fee-table tbody tr:last-child td { border-bottom: 0; }
