/* =====================================================================
   By Lorraine Clinic — site.css
   Rose-Mauve Editorial. Design tokens, base, components, page modules.
   ===================================================================== */

/* ---------- Design Tokens ---------- */
:root {
  /* Brand — derived from Lorraine's logo (#907070) */
  --c-mauve:        #907070;
  --c-mauve-deep:   #6E5658;
  --c-mauve-soft:   #D6BFC0;
  --c-mauve-mist:   #ECDDDC;
  --c-plum:         #3F2A2E;
  --c-cream:        #FAF6F2;
  --c-cream-warm:   #F2EAE2;
  --c-bone:         #FFFFFF;
  --c-line:         #E5D9D6;
  --c-muted:        #8C7A77;
  --c-gold:         #B8956A;

  /* Typography */
  --f-display: "Cormorant Garamond", "EB Garamond", Georgia, serif;
  --f-body:    "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --f-script:  "Pinyon Script", "Allura", cursive;

  /* Type scale (modular ~1.25, base 17px) */
  --fs-xs:   0.75rem;
  --fs-sm:   0.875rem;
  --fs-base: 1.0625rem;
  --fs-md:   1.25rem;
  --fs-lg:   1.625rem;
  --fs-xl:   2.125rem;
  --fs-2xl:  3rem;
  --fs-3xl:  4.25rem;
  --fs-4xl:  5.75rem;

  /* Spacing */
  --s-1: 0.25rem; --s-2: 0.5rem;  --s-3: 0.75rem; --s-4: 1rem;
  --s-5: 1.5rem;  --s-6: 2rem;    --s-7: 3rem;    --s-8: 4rem;
  --s-9: 6rem;    --s-10: 8rem;

  /* Layout */
  --maxw: 1280px;
  --maxw-narrow: 760px;
  --gutter: clamp(1rem, 4vw, 2.5rem);

  /* Misc */
  --radius: 2px;
  --radius-md: 4px;
  --shadow-soft: 0 24px 64px -28px rgba(63, 42, 46, 0.18);
  --shadow-press: 0 4px 12px rgba(63, 42, 46, 0.10);
  --t-fast: 180ms cubic-bezier(.2,.7,.2,1);
  --t-med:  320ms cubic-bezier(.2,.7,.2,1);
}

/* ---------- Reset / Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--f-body);
  font-size: var(--fs-base);
  line-height: 1.65;
  color: var(--c-plum);
  background: var(--c-cream);
  font-feature-settings: "kern", "liga";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html, body { overflow-x: hidden; }

img, picture, video, svg { max-width: 100%; display: block; }
button { font: inherit; color: inherit; cursor: pointer; }

a {
  color: var(--c-mauve-deep);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color var(--t-fast), border-color var(--t-fast);
}
a:hover { color: var(--c-plum); border-bottom-color: currentColor; }

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5 {
  font-family: var(--f-display);
  font-weight: 500;
  line-height: 1.15;
  color: var(--c-plum);
  letter-spacing: -0.01em;
  margin: 0 0 var(--s-4);
}
h1 { font-size: clamp(2.25rem, 4.5vw, var(--fs-3xl)); font-weight: 400; }
h2 { font-size: clamp(1.75rem, 3.5vw, var(--fs-2xl)); font-weight: 400; }
h3 { font-size: var(--fs-xl); }
h4 { font-size: var(--fs-lg); }
h5 { font-size: var(--fs-md); font-family: var(--f-body); font-weight: 500; letter-spacing: 0.04em; text-transform: uppercase; }

p { margin: 0 0 var(--s-4); }
.lede { font-family: var(--f-display); font-style: italic; font-size: var(--fs-lg); color: var(--c-muted); margin-bottom: var(--s-6); line-height: 1.5; }
.script { font-family: var(--f-script); font-weight: 400; color: var(--c-mauve-deep); font-size: 1.15em; }
.eyebrow {
  display: inline-block;
  font-size: var(--fs-xs);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-mauve);
  margin-bottom: var(--s-4);
  font-weight: 500;
}

/* ---------- Layout ---------- */
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter); }
.wrap--narrow { max-width: var(--maxw-narrow); }
.section { padding: clamp(var(--s-8), 10vw, var(--s-10)) 0; }
.section--alt { background: var(--c-cream-warm); }

.skip-link {
  position: absolute; left: -9999px; top: var(--s-3);
  background: var(--c-plum); color: var(--c-cream); padding: var(--s-3) var(--s-4);
  z-index: 999; border-radius: var(--radius);
}
.skip-link:focus { left: var(--s-3); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: var(--s-2);
  padding: var(--s-3) var(--s-5);
  font-size: var(--fs-sm); font-weight: 500;
  letter-spacing: 0.04em; text-transform: uppercase;
  border-radius: var(--radius); border: 1.5px solid transparent;
  transition: all var(--t-fast);
  cursor: pointer;
  font-family: var(--f-body);
}
.btn:hover { transform: translateY(-1px); box-shadow: var(--shadow-press); border-bottom-color: transparent; }
.btn .arrow { transition: transform var(--t-fast); }
.btn:hover .arrow { transform: translateX(3px); }
.btn-primary { background: var(--c-plum); color: var(--c-cream); border-color: var(--c-plum); }
.btn-primary:hover { background: var(--c-mauve-deep); border-color: var(--c-mauve-deep); color: var(--c-cream); }
.btn-outline { background: transparent; color: var(--c-plum); border-color: var(--c-plum); }
.btn-outline:hover { background: var(--c-plum); color: var(--c-cream); }
.btn-cream { background: var(--c-cream); color: var(--c-plum); border-color: var(--c-cream); }
.btn-cream:hover { background: var(--c-mauve-soft); border-color: var(--c-mauve-soft); }
.btn-outline-cream { background: transparent; color: var(--c-cream); border-color: var(--c-cream); }
.btn-outline-cream:hover { background: var(--c-cream); color: var(--c-plum); }

/* ---------- Header / Nav ---------- */
.site-header {
  --header-h: 96px;                 /* used to anchor mobile drawer (logo 70px + padding) */
  position: sticky; top: 0; z-index: 50;
  background: rgba(250, 246, 242, 0.94);
  backdrop-filter: saturate(120%) blur(10px);
  border-bottom: 1px solid var(--c-line);
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: var(--s-5); padding: var(--s-3) 0; min-height: var(--header-h); }

/* Brand */
.brand { display: inline-flex; align-items: center; gap: var(--s-3); border-bottom: none; color: var(--c-plum); }
.brand:hover { border-bottom: none; color: var(--c-mauve-deep); }
.brand-mark { display: inline-flex; align-items: center; line-height: 0; color: inherit; flex-shrink: 1; min-width: 0; }
.brand-mark svg { height: 70px; width: auto; display: block; color: inherit; max-width: 100%; }

/* Disciplines strip — full-width subtle ribbon above the nav */
.disciplines-strip {
  background: var(--c-mauve-mist);
  border-bottom: 1px solid var(--c-line);
}
.disciplines-strip-text {
  margin: 0;
  padding: 8px 0;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-mauve-deep);
  text-align: center;
  font-weight: 500;
}
@media (max-width: 980px) {
  /* Hidden on mobile — saves space and keeps drawer alignment clean */
  .disciplines-strip { display: none; }
}

/* Nav links (desktop) */
.nav-links {
  display: flex; gap: var(--s-5); list-style: none; margin: 0; padding: 0;
  align-items: center;
}
.nav-links > li { position: relative; }
.nav-links a {
  font-size: var(--fs-sm); letter-spacing: 0.04em;
  color: var(--c-plum); border-bottom: none;
  padding: var(--s-2) 0; position: relative;
  display: inline-flex; align-items: center; gap: 4px;
}
.nav-caret { font-size: 10px; transition: transform var(--t-fast); }
.nav-has-dropdown:hover > a .nav-caret,
.nav-has-dropdown:focus-within > a .nav-caret { transform: translateY(1px); }

.nav-links > li > a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px;
  height: 1px; background: var(--c-mauve); transform: scaleX(0); transform-origin: left;
  transition: transform var(--t-fast);
}
.nav-links > li > a:hover::after,
.nav-links > li > a.is-active::after { transform: scaleX(1); }

/* Dropdowns (desktop) */
.nav-dropdown {
  position: absolute; top: 100%; left: -16px; min-width: 240px;
  list-style: none; margin: 0; padding: var(--s-3);
  background: var(--c-bone);
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  opacity: 0; visibility: hidden; transform: translateY(-4px);
  transition: opacity var(--t-fast), transform var(--t-fast), visibility var(--t-fast);
  pointer-events: none;
}
.nav-has-dropdown:hover > .nav-dropdown,
.nav-has-dropdown:focus-within > .nav-dropdown {
  opacity: 1; visibility: visible; transform: none; pointer-events: auto;
}
.nav-dropdown li a {
  display: block; padding: var(--s-2) var(--s-3); font-size: var(--fs-sm);
  color: var(--c-plum); white-space: nowrap;
}
.nav-dropdown li a::after { display: none; }
.nav-dropdown li a:hover { background: var(--c-cream-warm); color: var(--c-mauve-deep); }
.nav-dropdown-all { border-top: 1px solid var(--c-line); margin-top: var(--s-2); padding-top: var(--s-2); }
.nav-dropdown-all a { color: var(--c-mauve-deep) !important; }

/* Nav actions (CTA + hamburger) */
.nav-actions { display: flex; align-items: center; gap: var(--s-3); }
.nav-cta { padding: var(--s-2) var(--s-4); font-size: var(--fs-xs); }
.nav-toggle {
  display: none; background: none; border: 0; padding: var(--s-2);
  width: 40px; height: 40px;
  align-items: center; justify-content: center; flex-direction: column;
}
.nav-toggle span { display: block; width: 22px; height: 1.5px; background: var(--c-plum); margin: 3px 0; transition: var(--t-fast); }

/* ----------------- MOBILE ----------------- */
@media (max-width: 980px) {
  .site-header { --header-h: 80px; }   /* shorter on mobile */
  .brand-mark svg { height: 56px; }
  .brand--footer .brand-mark svg { height: 60px; }
  .nav-cta { padding: var(--s-2) var(--s-3); font-size: 11px; }

  .nav-links {
    /* Anchor to header bottom rather than fixed offset — fixes the
       overlap bug where the drawer's border peeked above the button area. */
    position: fixed; left: 0; right: 0;
    top: var(--header-h);
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--c-cream);
    padding: var(--s-3) var(--gutter) var(--s-5);
    border-bottom: 1px solid var(--c-line);
    /* translateY moves the WHOLE drawer above the header — using calc keeps it
       just above the header bottom edge, so no border peeks through. */
    transform: translateY(calc(-100% - var(--header-h)));
    transition: transform var(--t-med);
    max-height: calc(100vh - var(--header-h));
    overflow-y: auto;
  }
  .nav-links.is-open { transform: translateY(0); }
  .nav-links > li { width: 100%; border-bottom: 1px solid var(--c-line); }
  .nav-links > li:last-child { border-bottom: 0; }
  .nav-links > li > a {
    display: flex; justify-content: space-between; align-items: center;
    padding: var(--s-3) 0; width: 100%;
  }
  .nav-links > li > a::after { display: none; }

  /* Dropdowns become inline collapsibles on mobile */
  .nav-dropdown {
    position: static; opacity: 1; visibility: visible; transform: none; pointer-events: auto;
    border: 0; box-shadow: none; background: transparent;
    padding: 0 0 var(--s-3) var(--s-4);
    min-width: 0;
    display: none;
  }
  .nav-has-dropdown.is-expanded .nav-dropdown { display: block; }
  .nav-has-dropdown.is-expanded > a .nav-caret { transform: rotate(180deg); }
  .nav-dropdown li a { padding: var(--s-2) 0; }
  .nav-dropdown-all { border-top: 0; margin: 0; padding: var(--s-2) 0 0; }

  .nav-toggle { display: inline-flex; }
}

/* Very narrow phones: trim logo further so Book button + hamburger fit */
@media (max-width: 420px) {
  .brand-mark svg { height: 44px; }
  .nav-cta .arrow { display: none; }
  .nav { gap: var(--s-3); }
}

/* ---------- Page header (used by all interior pages) ---------- */
.page-header { padding: var(--s-9) 0 var(--s-7); background: linear-gradient(180deg, var(--c-mauve-mist) 0%, var(--c-cream) 100%); }
.page-header h1 { margin-bottom: var(--s-4); }
.page-header .lede { max-width: 60ch; }
.breadcrumbs { font-size: var(--fs-sm); color: var(--c-muted); margin-bottom: var(--s-5); }
.breadcrumbs a { color: var(--c-muted); border-bottom: none; }
.breadcrumbs a:hover { color: var(--c-plum); }
.page-header-actions { display: flex; gap: var(--s-3); flex-wrap: wrap; margin-top: var(--s-5); }

/* ---------- Placeholder notice ---------- */
.placeholder-notice {
  background: var(--c-cream-warm);
  border-left: 3px solid var(--c-mauve);
  padding: var(--s-5);
  margin: 0 0 var(--s-7);
  font-size: var(--fs-sm);
  color: var(--c-muted);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.placeholder-notice strong { color: var(--c-plum); font-weight: 600; display: block; margin-bottom: var(--s-2); }
.placeholder-notice a { color: var(--c-mauve-deep); }

.placeholder-bullets { padding-left: var(--s-5); }
.placeholder-bullets li { margin-bottom: var(--s-2); color: var(--c-muted); }

/* ---------- Term cloud (used on treatment placeholders to surface SEO terms) ---------- */
.term-cloud {
  list-style: none; padding: 0; margin: 0 0 var(--s-6);
  display: flex; flex-wrap: wrap; gap: var(--s-2);
}
.term-cloud li {
  background: var(--c-bone);
  border: 1px solid var(--c-line);
  padding: var(--s-2) var(--s-4);
  font-size: var(--fs-sm);
  color: var(--c-plum);
  border-radius: 999px;
}
.term-cloud--soft li {
  background: var(--c-mauve-mist);
  border-color: transparent;
  color: var(--c-mauve-deep);
  font-style: italic;
}

/* ---------- Section title ---------- */
.section-title { text-align: center; margin-bottom: var(--s-7); }

/* ---------- Treatment cards / grids ---------- */
.tx-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: var(--s-5);
}
.tx-card {
  grid-column: span 4;
  background: var(--c-bone);
  border: 1px solid var(--c-line);
  padding: var(--s-6);
  border-bottom: none;
  display: flex; flex-direction: column;
  transition: transform var(--t-med), box-shadow var(--t-med);
}
.tx-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-soft); border-bottom: 1px solid var(--c-line); }
.tx-card.is-wide { grid-column: span 6; }
.tx-card h3 { margin-bottom: var(--s-3); }
.tx-card p { color: var(--c-muted); flex: 1; }
.tx-card .tx-arrow { margin-top: var(--s-4); font-size: var(--fs-sm); color: var(--c-mauve-deep); letter-spacing: 0.04em; text-transform: uppercase; }

@media (max-width: 920px) {
  .tx-card, .tx-card.is-wide { grid-column: span 12; }
}

/* ---------- Related grid ---------- */
.related-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: var(--s-4); }
.related-card {
  background: var(--c-bone); border: 1px solid var(--c-line);
  padding: var(--s-5); border-bottom: none;
  display: flex; flex-direction: column;
  transition: transform var(--t-fast), box-shadow var(--t-fast);
}
.related-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-soft); border-bottom: 1px solid var(--c-line); }
.related-card h4 { margin-bottom: var(--s-2); font-size: var(--fs-md); }
.related-card p { color: var(--c-muted); font-size: var(--fs-sm); margin-bottom: var(--s-4); flex: 1; }
.related-card .related-arrow { font-size: var(--fs-xs); letter-spacing: 0.1em; text-transform: uppercase; color: var(--c-mauve-deep); }

/* ---------- Concerns grid (homepage by-concern section) ---------- */
.concerns-intro { text-align: center; max-width: 60ch; margin: 0 auto var(--s-7); }
.concerns-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-4);
}
.concern-tile {
  background: var(--c-bone); border: 1px solid var(--c-line);
  padding: var(--s-5); border-bottom: 1px solid var(--c-line);
  display: flex; flex-direction: column;
  transition: transform var(--t-fast), border-color var(--t-fast), box-shadow var(--t-fast);
}
.concern-tile:hover {
  transform: translateY(-3px); border-color: var(--c-mauve);
  box-shadow: var(--shadow-soft);
}
.concern-tile h4 { margin-bottom: var(--s-2); font-size: var(--fs-md); }
.concern-tile p { color: var(--c-muted); font-size: var(--fs-sm); margin-bottom: var(--s-4); flex: 1; }
.concern-tile .related-arrow { font-size: var(--fs-xs); letter-spacing: 0.1em; text-transform: uppercase; color: var(--c-mauve-deep); }
@media (max-width: 920px) { .concerns-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .concerns-grid { grid-template-columns: 1fr; } }

/* ---------- CTA strip ---------- */
.cta-strip {
  background: var(--c-plum);
  color: var(--c-cream);
  padding: clamp(var(--s-7), 8vw, var(--s-9));
  text-align: center;
  border-radius: var(--radius);
}
.cta-strip h2 { color: var(--c-cream); margin-bottom: var(--s-6); }
.cta-strip .script { color: var(--c-mauve-soft); }
.cta-actions { display: flex; gap: var(--s-3); justify-content: center; flex-wrap: wrap; }

/* ---------- Hero (homepage) ---------- */
.hero { padding: var(--s-9) 0 var(--s-8); background: linear-gradient(180deg, var(--c-mauve-mist) 0%, var(--c-cream) 100%); }
.hero-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: var(--s-8); align-items: center; }
.hero h1 { font-size: clamp(2.5rem, 5.5vw, var(--fs-4xl)); margin-bottom: var(--s-5); }
.hero-eyebrow { color: var(--c-mauve-deep); }
.hero-image-placeholder {
  aspect-ratio: 4/5; background: var(--c-mauve-soft);
  display: grid; place-items: center;
  color: var(--c-cream); font-family: var(--f-display); font-style: italic;
}
@media (max-width: 920px) { .hero-grid { grid-template-columns: 1fr; } }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--c-plum); color: var(--c-cream);
  padding: var(--s-9) 0 var(--s-5);
}
.site-footer a { color: var(--c-mauve-soft); }
.site-footer a:hover { color: var(--c-cream); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr repeat(4, 1fr);
  gap: var(--s-6);
  margin-bottom: var(--s-7);
}
.footer-brand p { color: var(--c-mauve-soft); margin-top: var(--s-3); max-width: 32ch; }
.brand--footer { color: var(--c-cream); }
.brand--footer:hover { color: var(--c-mauve-soft); }
.brand--footer .brand-mark svg { height: 80px; max-width: 260px; }
.footer-col h5 { color: var(--c-cream); margin-bottom: var(--s-4); font-size: var(--fs-xs); letter-spacing: 0.18em; }
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: var(--s-2); font-size: var(--fs-sm); }
.footer-nap li { color: var(--c-mauve-soft); }
.footer-bottom {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: var(--s-3);
  padding-top: var(--s-5);
  border-top: 1px solid rgba(214, 191, 192, 0.2);
  font-size: var(--fs-xs); color: var(--c-mauve-soft); letter-spacing: 0.04em;
}
@media (max-width: 1100px) { .footer-grid { grid-template-columns: 1fr 1fr 1fr; } }
@media (max-width: 760px)  { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px)  { .footer-grid { grid-template-columns: 1fr; } }

/* ---------- Draft watermark for editorial team (only visible in dev) ---------- */
body.is-draft::before {
  content: "DRAFT — noindex";
  position: fixed; top: 80px; right: var(--s-4); z-index: 100;
  background: var(--c-gold); color: var(--c-bone);
  padding: var(--s-1) var(--s-3);
  font-size: var(--fs-xs); letter-spacing: 0.1em; text-transform: uppercase;
  border-radius: var(--radius); pointer-events: none;
  opacity: 0.85;
}

/* ---------- Contact page ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--s-7);
  align-items: start;
}
@media (max-width: 920px) { .contact-grid { grid-template-columns: 1fr; } }

.hours-list { list-style: none; padding: 0; margin: 0; color: var(--c-muted); }
.hours-list li {
  display: flex; justify-content: space-between;
  border-bottom: 1px solid var(--c-line);
  padding: var(--s-2) 0;
}

/* ---------- Reveal-on-scroll utility ---------- */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity 600ms, transform 600ms; }
.reveal.is-visible { opacity: 1; transform: none; }

/* =====================================================================
   Treatment-page components
   ===================================================================== */

/* ---------- Treatment page header (hero) ---------- */
.tx-hero {
  background: linear-gradient(180deg, var(--c-mauve-mist) 0%, var(--c-cream) 100%);
  padding: var(--s-9) 0 var(--s-7);
}
.tx-hero-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: var(--s-7);
  align-items: stretch;
}
@media (max-width: 880px) {
  .tx-hero-grid { grid-template-columns: 1fr; }
}
.tx-hero .breadcrumbs { margin-bottom: var(--s-4); }
.tx-hero h1 { margin-bottom: var(--s-4); }
.tx-hero .lede { font-size: var(--fs-md); max-width: 56ch; margin-bottom: var(--s-5); }
.tx-hero-actions { display: flex; gap: var(--s-3); flex-wrap: wrap; }
.tx-hero-image {
  aspect-ratio: 4 / 5;
  background: var(--c-cream-warm) center/cover no-repeat;
  border: 1px solid var(--c-line);
  position: relative;
}
.tx-hero-image::after {
  content: attr(data-placeholder);
  position: absolute; inset: 0;
  display: grid; place-items: center;
  color: var(--c-muted); font-style: italic; font-size: var(--fs-sm);
  background: linear-gradient(135deg, var(--c-mauve-mist), var(--c-cream-warm));
}
.tx-hero-image.has-image::after { display: none; }

/* ---------- Key points strip (badges of quick benefits) ---------- */
.tx-keypoints {
  background: var(--c-bone);
  border-top: 1px solid var(--c-line);
  border-bottom: 1px solid var(--c-line);
  padding: var(--s-5) 0;
}
.tx-keypoints-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-5);
}
@media (max-width: 880px) { .tx-keypoints-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .tx-keypoints-grid { grid-template-columns: 1fr; } }
.tx-keypoint { display: flex; flex-direction: column; gap: 2px; }
.tx-keypoint .label { font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--c-muted); }
.tx-keypoint .value { font-family: var(--f-display); font-size: var(--fs-md); color: var(--c-plum); }

/* ---------- Article body styling ---------- */
.tx-body { padding: var(--s-8) 0; }
.tx-body-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: var(--s-7);
  align-items: start;
}
@media (max-width: 880px) {
  .tx-body-grid { grid-template-columns: 1fr; }
  .tx-aside { order: -1; }
}
.tx-prose h2 { margin-top: var(--s-7); margin-bottom: var(--s-3); }
.tx-prose h2:first-child { margin-top: 0; }
.tx-prose h3 { margin-top: var(--s-5); margin-bottom: var(--s-2); font-size: var(--fs-md); }
.tx-prose p, .tx-prose ul, .tx-prose ol { margin-bottom: var(--s-4); }
.tx-prose ul, .tx-prose ol { padding-left: var(--s-5); }
.tx-prose li { margin-bottom: var(--s-2); }
.tx-prose blockquote {
  border-left: 2px solid var(--c-mauve);
  padding: var(--s-2) 0 var(--s-2) var(--s-5);
  margin: var(--s-5) 0;
  font-family: var(--f-display);
  font-size: var(--fs-md);
  color: var(--c-plum);
  font-style: italic;
}

/* ---------- Process steps ---------- */
.tx-process { margin: var(--s-6) 0; }
.tx-process ol { list-style: none; padding: 0; counter-reset: step; }
.tx-process li {
  counter-increment: step;
  padding-left: 56px;
  position: relative;
  padding-bottom: var(--s-4);
  margin-bottom: var(--s-4);
  border-bottom: 1px solid var(--c-line);
}
.tx-process li:last-child { border-bottom: 0; margin-bottom: 0; }
.tx-process li::before {
  content: counter(step);
  position: absolute; left: 0; top: 0;
  width: 40px; height: 40px;
  background: var(--c-mauve-mist);
  color: var(--c-mauve-deep);
  border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--f-display); font-size: 18px;
}
.tx-process h4 { font-family: var(--f-display); font-size: var(--fs-md); margin-bottom: 4px; color: var(--c-plum); }
.tx-process p { color: var(--c-muted); margin: 0; }

/* ---------- Sidebar (sticky enquiry / quick facts) ---------- */
.tx-aside .tx-aside-card {
  background: var(--c-bone);
  border: 1px solid var(--c-line);
  padding: var(--s-5);
  position: sticky; top: calc(var(--header-h) + var(--s-3));
}
.tx-aside h3 { font-size: var(--fs-md); margin-bottom: var(--s-3); }
.tx-aside .quickfacts { list-style: none; padding: 0; margin: 0 0 var(--s-4); }
.tx-aside .quickfacts li {
  display: flex; justify-content: space-between;
  padding: var(--s-2) 0;
  border-bottom: 1px solid var(--c-line);
  font-size: var(--fs-sm);
}
.tx-aside .quickfacts li:last-child { border-bottom: 0; }
.tx-aside .quickfacts .label { color: var(--c-muted); }
.tx-aside .quickfacts .value { color: var(--c-plum); font-weight: 500; text-align: right; }
.tx-aside .btn { width: 100%; justify-content: center; text-align: center; margin-bottom: var(--s-2); }

/* =====================================================================
   Before/after slider
   ===================================================================== */
.ba-section {
  background: var(--c-bone);
  padding: var(--s-8) 0;
  border-top: 1px solid var(--c-line);
}
.ba-section-head { text-align: center; max-width: 60ch; margin: 0 auto var(--s-6); }

/* Carousel wrapper — only one .ba is visible at a time */
.ba-carousel { max-width: 760px; margin: 0 auto; position: relative; }
.ba-carousel .ba { display: none; }
.ba-carousel .ba.is-active { display: block; }

/* 2-column grid of sliders (when not a carousel) */
.ba-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s-5);
  max-width: 1000px;
  margin: 0 auto;
}
@media (max-width: 720px) {
  .ba-grid { grid-template-columns: 1fr; }
}

/* 2-column split: slider beside descriptive content (for single-pair display) */
.ba-split {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}
.ba-split-media .ba { margin: 0; }
.ba-split-copy .eyebrow { display: block; margin-bottom: var(--s-3); }
.ba-split-copy h2 {
  font-family: var(--f-display);
  font-size: clamp(2rem, 3.5vw, 2.6rem);
  font-weight: 400;
  margin: 0 0 var(--s-4);
  color: var(--c-plum);
  line-height: 1.15;
}
.ba-split-lede {
  font-size: 1.05rem;
  color: var(--c-muted);
  margin-bottom: var(--s-5);
  line-height: 1.6;
}
.ba-split-list {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--s-5);
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
}
.ba-split-list li {
  position: relative;
  padding-left: 1.5rem;
  font-size: 0.96rem;
  color: var(--c-muted);
  line-height: 1.55;
}
.ba-split-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--c-mauve);
}
.ba-split-list strong {
  color: var(--c-plum);
  font-weight: 600;
}
.ba-split-note {
  font-size: 0.85rem;
  color: var(--c-muted);
  font-style: italic;
  margin: 0;
  padding-top: var(--s-4);
  border-top: 1px solid var(--c-line);
}
@media (max-width: 860px) {
  .ba-split {
    grid-template-columns: 1fr;
    gap: var(--s-6);
  }
  .ba-split-copy { text-align: left; }
}

/* Single .ba container (one before/after pair) */
.ba {
  background: var(--c-cream-warm);
  border: 1px solid var(--c-line);
}

.ba-frame {
  --ba-pos: 50%;
  position: relative;
  aspect-ratio: 700 / 373;       /* matches the matched-pair source images */
  overflow: hidden;
  cursor: ew-resize;
  user-select: none;
  touch-action: pan-y;
}

/* Both images stretch full frame. The "before" sits on top, clipped */
.ba-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}
/* The "before" image overlays the "after" and uses clip-path to reveal
   only the left portion. This is the technique yolo-before-after uses and
   it avoids the squashing problem of nested overflow:hidden wrappers. */
.ba-frame .ba-before {
  clip-path: inset(0 calc(100% - var(--ba-pos)) 0 0);
  -webkit-clip-path: inset(0 calc(100% - var(--ba-pos)) 0 0);
  /* Add a subtle white edge at the divider line via a separator pseudo-element on .ba-frame */
}
/* Vertical divider line — purely decorative, sits where the clip ends */
.ba-frame::after {
  content: "";
  position: absolute; top: 0; bottom: 0;
  left: var(--ba-pos);
  width: 2px;
  background: var(--c-cream);
  box-shadow: 0 0 0 1px rgba(74, 53, 60, 0.15);
  pointer-events: none;
  z-index: 1;
}

.ba-handle {
  position: absolute; top: 0; bottom: 0;
  left: var(--ba-pos);
  width: 44px;
  transform: translateX(-50%);
  background: transparent;
  border: 0;
  cursor: ew-resize;
  display: grid; place-items: center;
  pointer-events: none;          /* hover-mode: handle follows but doesn't block */
}
.ba-handle-grip {
  position: relative;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--c-cream); color: var(--c-plum);
  display: grid; place-items: center;
  font-size: 16px; font-weight: 600; letter-spacing: -2px;
  box-shadow: 0 2px 12px rgba(74, 53, 60, 0.25);
  pointer-events: auto;          /* but the grip itself is focusable */
}
.ba-handle:focus-visible .ba-handle-grip {
  outline: 2px solid var(--c-mauve-deep); outline-offset: 3px;
}

/* On touch devices, the handle needs pointer-events for dragging */
@media (hover: none) and (pointer: coarse) {
  .ba-handle { pointer-events: auto; }
}

.ba-label {
  position: absolute; top: var(--s-3);
  font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase;
  background: rgba(74, 53, 60, 0.7); color: var(--c-cream);
  padding: 4px 10px; border-radius: 2px;
  pointer-events: none;
  z-index: 2;
}
.ba-label-before { left: var(--s-3); }
.ba-label-after  { right: var(--s-3); }

/* Carousel navigation arrows */
.ba-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 44px; height: 44px;
  background: rgba(250, 246, 242, 0.95);
  border: 1px solid var(--c-line);
  border-radius: 50%;
  display: grid; place-items: center;
  color: var(--c-plum);
  font-size: 20px;
  cursor: pointer;
  z-index: 3;
  transition: background var(--t-fast), transform var(--t-fast);
}
.ba-nav:hover { background: var(--c-cream); transform: translateY(-50%) scale(1.05); }
.ba-nav-prev { left: -22px; }
.ba-nav-next { right: -22px; }
.ba-counter {
  text-align: center;
  margin-top: var(--s-3);
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--c-muted);
}
@media (max-width: 720px) {
  .ba-nav-prev { left: 10px; }
  .ba-nav-next { right: 10px; }
}

/* Hover hint — subtle pulse on idle */
.ba-hint {
  position: absolute; bottom: var(--s-3); left: 50%; transform: translateX(-50%);
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  background: rgba(74, 53, 60, 0.5); color: var(--c-cream);
  padding: 6px 12px; border-radius: 2px;
  pointer-events: none;
  z-index: 2;
  animation: ba-hint-fade 3s ease-in-out infinite;
}
@keyframes ba-hint-fade {
  0%, 80%, 100% { opacity: 0; }
  10%, 50% { opacity: 1; }
}

/* Empty state — when no images supplied */
.ba--empty .ba-frame {
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, var(--c-mauve-mist), var(--c-cream-warm));
  cursor: default;
  display: grid; place-items: center;
}
.ba--empty .ba-handle, .ba--empty .ba-label, .ba--empty .ba-img, .ba--empty .ba-hint { display: none; }
.ba--empty .ba-frame::after { display: none; }
.ba-empty-msg {
  text-align: center; padding: var(--s-5);
  color: var(--c-muted); font-style: italic;
}
.ba-empty-msg strong { display: block; font-family: var(--f-display); font-style: normal; color: var(--c-plum); font-size: var(--fs-md); margin-bottom: var(--s-1); }

/* =====================================================================
   Treatment hero video
   ===================================================================== */
.tx-hero-video {
  position: relative;
  aspect-ratio: 9 / 16;          /* portrait video like Lorraine's lip vid */
  background: var(--c-cream-warm);
  border: 1px solid var(--c-line);
  overflow: hidden;
  width: 100%;
}
.tx-hero-video video {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}

/* =====================================================================
   Image gallery + lightbox
   ===================================================================== */
.gallery-section { padding: var(--s-8) 0; }
.gallery-section-head { text-align: center; max-width: 60ch; margin: 0 auto var(--s-6); }
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-2);
}
@media (max-width: 880px) { .gallery { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 480px) { .gallery { grid-template-columns: repeat(2, 1fr); } }
.gallery-item {
  display: block;
  border: 0;
  aspect-ratio: 1;
  overflow: hidden;
  position: relative;
}
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 400ms ease;
}
.gallery-item:hover img { transform: scale(1.04); }
.gallery--empty {
  background: linear-gradient(135deg, var(--c-mauve-mist), var(--c-cream-warm));
  padding: var(--s-7); text-align: center;
  color: var(--c-muted); font-style: italic;
  border: 1px dashed var(--c-line);
}
.gallery--empty strong {
  display: block; font-family: var(--f-display); color: var(--c-plum);
  font-style: normal; font-size: var(--fs-md); margin-bottom: var(--s-1);
}

/* Lightbox modal */
.lightbox {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(20, 12, 18, 0.92);
  display: grid; place-items: center;
  padding: var(--s-5);
}
.lightbox[hidden] { display: none; }
.lightbox-figure {
  max-width: 90vw; max-height: 85vh;
  margin: 0;
  display: flex; flex-direction: column; align-items: center; gap: var(--s-3);
}
.lightbox-img {
  max-width: 100%; max-height: 80vh;
  object-fit: contain;
  display: block;
}
.lightbox-caption { color: var(--c-cream); font-size: var(--fs-sm); text-align: center; max-width: 60ch; }
.lightbox-counter {
  position: absolute; bottom: var(--s-4);
  color: var(--c-cream); font-size: var(--fs-xs); letter-spacing: 0.1em;
}
.lightbox-close, .lightbox-prev, .lightbox-next {
  position: absolute; background: rgba(250, 246, 242, 0.1);
  color: var(--c-cream); border: 0; cursor: pointer;
  width: 48px; height: 48px; border-radius: 50%;
  font-size: 28px; line-height: 1;
  display: grid; place-items: center;
  transition: background var(--t-fast);
}
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover {
  background: rgba(250, 246, 242, 0.2);
}
.lightbox-close { top: var(--s-4); right: var(--s-4); }
.lightbox-prev  { left: var(--s-4);  top: 50%; transform: translateY(-50%); }
.lightbox-next  { right: var(--s-4); top: 50%; transform: translateY(-50%); }

/* =====================================================================
   FAQ accordion
   ===================================================================== */
.faq-section { padding: var(--s-8) 0; background: var(--c-bone); border-top: 1px solid var(--c-line); }
.faq-section-head { text-align: center; max-width: 60ch; margin: 0 auto var(--s-6); }
.faq { max-width: 760px; margin: 0 auto; }
.faq details {
  border-bottom: 1px solid var(--c-line);
}
.faq details:first-child { border-top: 1px solid var(--c-line); }
.faq summary {
  list-style: none;
  cursor: pointer;
  padding: var(--s-4) 0;
  font-family: var(--f-display);
  font-size: var(--fs-md);
  color: var(--c-plum);
  position: relative;
  padding-right: 40px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  position: absolute; right: 0; top: 50%; transform: translateY(-50%);
  width: 28px; height: 28px;
  border: 1px solid var(--c-mauve);
  border-radius: 50%;
  color: var(--c-mauve-deep);
  display: grid; place-items: center;
  font-family: var(--f-body); font-weight: 300; font-size: 18px;
  transition: transform var(--t-fast);
}
.faq details[open] summary::after { content: "−"; }
.faq .faq-body {
  color: var(--c-muted);
  padding-bottom: var(--s-4);
  transition: max-height 300ms ease;
}
.faq .faq-body p { margin: 0 0 var(--s-3); }
.faq .faq-body p:last-child { margin-bottom: 0; }

/* =====================================================================
   Form styling (applied site-wide — picks up the contact-form module's
   bare semantic HTML and styles it to match the brand)
   ===================================================================== */

/* Form layout — assumes form is inside .wrap--narrow or similar */
form[data-cf-form],
form.cf-form,
.contact-form-col form {
  display: block;
}

/* Field group wrapper — matches the contact-form module's data-cf-field */
[data-cf-field] {
  margin-bottom: var(--s-4);
}

/* Labels — small, uppercase letterspacing for editorial feel */
[data-cf-field] label,
form label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-mauve-deep);
  margin-bottom: var(--s-2);
  font-weight: 500;
}

/* The required asterisk (added by the form module after the label) */
form label .required,
form .required {
  color: var(--c-mauve);
  margin-left: 4px;
}

/* Inputs, textareas, selects — unified base */
form input[type="text"],
form input[type="email"],
form input[type="tel"],
form input[type="url"],
form input[type="number"],
form input[type="date"],
form textarea,
form select {
  width: 100%;
  padding: var(--s-3);
  border: 1px solid var(--c-line);
  background: var(--c-bone);
  font-family: var(--f-body);
  font-size: var(--fs-sm);
  color: var(--c-plum);
  border-radius: 2px;
  transition: border-color var(--t-fast), background var(--t-fast), box-shadow var(--t-fast);
  -webkit-appearance: none;
  appearance: none;
}

/* Select dropdown — custom caret */
form select {
  background-image:
    linear-gradient(45deg, transparent 50%, var(--c-mauve-deep) 50%),
    linear-gradient(135deg, var(--c-mauve-deep) 50%, transparent 50%);
  background-position:
    calc(100% - 18px) 50%,
    calc(100% - 13px) 50%;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
  padding-right: var(--s-7);
  cursor: pointer;
}

/* Disabled/locked select — used when treatment is pre-selected on a treatment page */
form select[disabled],
form select.is-locked {
  background-color: var(--c-cream-warm);
  color: var(--c-plum);
  cursor: not-allowed;
  border-style: dashed;
  opacity: 1;        /* override browser default which fades disabled */
}

/* Textarea: comfortable height, no resize handle on x-axis */
form textarea {
  min-height: 140px;
  resize: vertical;
  line-height: 1.6;
}

/* Placeholder styling */
form input::placeholder,
form textarea::placeholder {
  color: var(--c-muted);
  opacity: 0.7;
  font-style: italic;
}

/* Focus state — mauve border + soft glow */
form input:focus,
form textarea:focus,
form select:focus {
  outline: none;
  border-color: var(--c-mauve);
  background: var(--c-cream);
  box-shadow: 0 0 0 3px rgba(144, 112, 112, 0.15);
}

/* Submit button — match the site's btn-primary */
form button[type="submit"],
form input[type="submit"] {
  font-family: var(--f-body);
  font-size: var(--fs-xs);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: var(--s-3) var(--s-6);
  background: var(--c-mauve-deep);
  color: var(--c-cream);
  border: 1px solid var(--c-mauve-deep);
  cursor: pointer;
  transition: background var(--t-fast), transform var(--t-fast);
  border-radius: 2px;
  margin-top: var(--s-3);
}
form button[type="submit"]:hover,
form input[type="submit"]:hover {
  background: var(--c-plum);
  border-color: var(--c-plum);
}
form button[type="submit"]:active,
form input[type="submit"]:active {
  transform: translateY(1px);
}
form button[type="submit"]:disabled {
  background: var(--c-muted);
  border-color: var(--c-muted);
  cursor: not-allowed;
}

/* Error messages from the form module */
[data-cf-error] {
  font-size: var(--fs-xs);
  color: #b04848;
  margin-top: var(--s-1);
  font-style: italic;
}
[data-cf-error]:empty {
  display: none;
}

/* Success message after submission */
[data-cf-success],
.cf-form__success {
  background: var(--c-cream-warm);
  border-left: 3px solid var(--c-mauve);
  padding: var(--s-4) var(--s-5);
  color: var(--c-plum);
  margin: var(--s-4) 0;
  font-family: var(--f-display);
  font-size: var(--fs-md);
}

/* Inline form helpers — eg. "Currently enquiring about: Lip Blush" notice */
.form-context-note {
  background: var(--c-mauve-mist);
  border: 1px solid var(--c-mauve-soft);
  padding: var(--s-3) var(--s-4);
  margin-bottom: var(--s-5);
  font-size: var(--fs-sm);
  color: var(--c-plum);
  border-radius: 2px;
}
.form-context-note strong {
  font-family: var(--f-display);
  font-size: var(--fs-md);
  display: block;
  color: var(--c-mauve-deep);
  margin-top: 2px;
}

/* Honeypot field — hidden from real users, catches bots */
[data-cf-honeypot] {
  position: absolute !important;
  left: -9999px !important;
  width: 1px; height: 1px;
  overflow: hidden;
}

/* =====================================================================
   Concern page — new components
   ===================================================================== */

/* Centred section header */
.section-head-centred {
  text-align: center;
  max-width: 64ch;
  margin: 0 auto var(--s-6);
}
.section-head-centred .eyebrow { display: block; margin-bottom: var(--s-3); }
.section-head-centred h2 {
  font-family: var(--f-display);
  font-size: clamp(2rem, 3.5vw, 2.6rem);
  font-weight: 400;
  margin: 0 0 var(--s-4);
  color: var(--c-plum);
  line-height: 1.15;
}
.section-head-centred p {
  font-size: 1.05rem;
  color: var(--c-muted);
  line-height: 1.65;
  margin: 0;
}

/* Concern hero image */
.tx-hero-image-wrap { display: flex; align-items: center; }
.concern-hero-image {
  margin: 0;
  width: 100%;
  position: relative;
  border: 1px solid var(--c-line);
  background: var(--c-cream-warm);
  overflow: hidden;
}
.concern-hero-image img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}
.concern-hero-image figcaption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.65) 100%);
  color: #fff;
  padding: var(--s-5) var(--s-4) var(--s-3);
  font-size: 0.85rem;
  font-style: italic;
  text-align: center;
}

/* Causes grid (3 column at desktop, 2 at tablet, 1 at mobile) */
.causes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-5);
  max-width: 1100px;
  margin: 0 auto;
}
@media (max-width: 920px) { .causes-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .causes-grid { grid-template-columns: 1fr; } }

.cause-card {
  background: var(--c-cream);
  border: 1px solid var(--c-line);
  padding: var(--s-5);
}
.cause-card h3 {
  font-family: var(--f-display);
  font-size: 1.25rem;
  font-weight: 500;
  margin: 0 0 var(--s-3);
  color: var(--c-mauve-deep);
  line-height: 1.25;
}
.cause-card p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--c-muted);
  line-height: 1.6;
}

/* Solution split: text + image side by side */
.solution-split {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}
.solution-text h2 {
  font-family: var(--f-display);
  font-size: clamp(2rem, 3.5vw, 2.6rem);
  font-weight: 400;
  margin: 0 0 var(--s-4);
  color: var(--c-plum);
  line-height: 1.15;
}
.solution-text .eyebrow { display: block; margin-bottom: var(--s-3); }
.solution-text .prose {
  margin-bottom: var(--s-5);
}
.solution-image img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid var(--c-line);
  aspect-ratio: 4 / 5;
  object-fit: cover;
}
@media (max-width: 860px) {
  .solution-split { grid-template-columns: 1fr; }
  .solution-image { order: -1; max-width: 480px; margin: 0 auto; }
}

/* CTA subline */
.cta-sub {
  text-align: center;
  margin: var(--s-4) auto var(--s-5);
  max-width: 56ch;
  color: var(--c-muted);
  font-size: 0.98rem;
  line-height: 1.6;
}

/* tx-process — centred variant for concern pages
   (constrains to readable width and centres the column) */
.tx-process--centred { max-width: 760px; margin: 0 auto; }
.tx-process--centred li { background: var(--c-cream); padding: var(--s-4) var(--s-4) var(--s-4) 64px; border: 1px solid var(--c-line); margin-bottom: var(--s-3); border-radius: 0; }
.tx-process--centred li:last-child { margin-bottom: 0; }
.tx-process--centred li::before { left: var(--s-4); top: var(--s-4); }

/* Sidebar card eyebrow + description spacing for concern pages */
.tx-aside-card .eyebrow {
  display: block;
  margin-bottom: var(--s-2);
}
.tx-aside-card-desc {
  color: var(--c-muted);
  font-size: var(--fs-sm);
  line-height: 1.55;
  margin: 0 0 var(--s-4);
}

/* =====================================================================
   Concern hub — large concern cards with images
   ===================================================================== */
.concern-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s-5);
  max-width: 1100px;
  margin: 0 auto;
}
@media (max-width: 760px) {
  .concern-cards { grid-template-columns: 1fr; }
}

.concern-card {
  display: flex;
  flex-direction: column;
  background: var(--c-cream);
  border: 1px solid var(--c-line);
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  transition: transform 250ms ease, box-shadow 250ms ease, border-color 250ms ease;
}
.concern-card:hover,
.concern-card:focus-visible {
  transform: translateY(-2px);
  border-color: var(--c-mauve);
  box-shadow: 0 12px 32px -16px rgba(144, 112, 112, 0.35);
}
.concern-card-media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--c-cream-warm);
}
.concern-card-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}
.concern-card:hover .concern-card-media img { transform: scale(1.04); }
.concern-card-body {
  padding: var(--s-5);
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
  flex: 1;
}
.concern-card-body .eyebrow { display: block; }
.concern-card-body h3 {
  font-family: var(--f-display);
  font-size: 1.45rem;
  font-weight: 500;
  margin: 0;
  color: var(--c-plum);
  line-height: 1.2;
}
.concern-card-body p {
  margin: 0;
  font-size: 0.96rem;
  color: var(--c-muted);
  line-height: 1.6;
  flex: 1;
}
.concern-card-cta {
  color: var(--c-mauve-deep);
  font-weight: 500;
  font-size: 0.92rem;
  margin-top: var(--s-2);
}
.concern-card:hover .concern-card-cta { color: var(--c-plum); }

/* Gallery strip CTA button under the hub gallery */
.gallery-strip-cta {
  display: flex;
  justify-content: center;
  margin-top: var(--s-6);
}

/* =====================================================================
   About page — E-E-A-T storytelling components
   ===================================================================== */

/* HERO */
.about-hero {
  padding: var(--s-7) 0 var(--s-8);
  background: linear-gradient(180deg, var(--c-mauve-mist) 0%, var(--c-cream) 100%);
  border-bottom: 1px solid var(--c-line);
}
.about-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  margin-top: var(--s-5);
}
.about-hero-text h1 {
  font-family: var(--f-display);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 400;
  margin: var(--s-3) 0 var(--s-2);
  color: var(--c-plum);
  line-height: 1.1;
  letter-spacing: -0.01em;
}
.about-hero-role {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--c-mauve-deep);
  margin: 0 0 var(--s-5);
  letter-spacing: 0.01em;
}
.about-hero-text .lede {
  font-size: 1.1rem;
  line-height: 1.65;
  color: var(--c-ink);
  margin: 0 0 var(--s-5);
}
.about-hero-actions { display: flex; gap: var(--s-3); flex-wrap: wrap; }
.about-hero-image-wrap { display: flex; justify-content: center; }
.about-hero-image {
  margin: 0;
  width: 100%;
  max-width: 460px;
  border: 1px solid var(--c-line);
  background: var(--c-cream-warm);
  overflow: hidden;
  box-shadow: 0 20px 60px -30px rgba(75, 50, 60, 0.35);
}
.about-hero-image img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}
@media (max-width: 860px) {
  .about-hero-grid { grid-template-columns: 1fr; }
  .about-hero-image-wrap { order: -1; }
  .about-hero-image { max-width: 360px; }
}

/* STORY ARTICLE */
.about-story h2 {
  font-family: var(--f-display);
  font-size: clamp(2rem, 3.5vw, 2.6rem);
  font-weight: 400;
  margin: var(--s-3) 0 var(--s-5);
  color: var(--c-plum);
  line-height: 1.2;
}
.about-story h3 {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 1.4rem;
  font-weight: 500;
  margin: var(--s-6) 0 var(--s-3);
  color: var(--c-mauve-deep);
}

/* AT WORK GALLERY */
.about-work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-4);
  max-width: 1200px;
  margin: 0 auto;
}
.about-work-tile {
  margin: 0;
  background: var(--c-cream);
  border: 1px solid var(--c-line);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.about-work-tile img {
  display: block;
  width: 100%;
  height: 280px;
  object-fit: cover;
  object-position: center;
}
.about-work-tile--tall img { height: 420px; }
.about-work-tile figcaption {
  padding: var(--s-3) var(--s-4);
  font-size: 0.88rem;
  font-style: italic;
  color: var(--c-muted);
  line-height: 1.5;
  flex: 1;
  display: flex;
  align-items: center;
}
@media (max-width: 960px) {
  .about-work-grid { grid-template-columns: repeat(2, 1fr); }
  .about-work-tile--tall img { height: 320px; }
}
@media (max-width: 600px) {
  .about-work-grid { grid-template-columns: 1fr; }
  .about-work-tile img,
  .about-work-tile--tall img { height: 280px; }
}

/* SPECIALISATION CARDS */
.specialisation-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-4);
  max-width: 1200px;
  margin: 0 auto;
}
.specialisation-card {
  position: relative;
  padding: var(--s-5);
  background: var(--c-cream);
  border: 1px solid var(--c-line);
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
  transition: border-color 250ms ease, transform 250ms ease;
}
.specialisation-card:hover { border-color: var(--c-mauve); transform: translateY(-2px); }
.specialisation-card--featured {
  background: linear-gradient(160deg, var(--c-mauve-mist) 0%, var(--c-cream) 100%);
  border-color: var(--c-mauve);
}
.card-flag {
  position: absolute;
  top: -12px; left: var(--s-4);
  background: var(--c-mauve-deep);
  color: var(--c-cream);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 4px 10px;
  font-weight: 500;
}
.specialisation-card h3 {
  font-family: var(--f-display);
  font-size: 1.3rem;
  font-weight: 500;
  margin: 0;
  color: var(--c-plum);
  line-height: 1.25;
}
.specialisation-card p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--c-muted);
  line-height: 1.6;
  flex: 1;
}
.card-link {
  color: var(--c-mauve-deep);
  font-weight: 500;
  font-size: 0.88rem;
  margin-top: var(--s-2);
  text-decoration: none;
  letter-spacing: 0.02em;
}
.card-link:hover { color: var(--c-plum); }
@media (max-width: 980px) {
  .specialisation-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .specialisation-grid { grid-template-columns: 1fr; }
}

/* PHILOSOPHY QUOTE */
.about-philosophy { padding: var(--s-8) 0; background: var(--c-bone); border-top: 1px solid var(--c-line); border-bottom: 1px solid var(--c-line); }
.philosophy-quote { margin: 0; text-align: center; }
.philosophy-quote-text {
  font-family: var(--f-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 400;
  font-style: normal;
  color: var(--c-plum);
  line-height: 1.4;
  max-width: 36ch;
  margin: 0 auto var(--s-5);
  position: relative;
  letter-spacing: -0.01em;
}
.philosophy-quote-text em {
  font-style: italic;
  color: var(--c-mauve-deep);
}
.philosophy-quote-text::before,
.philosophy-quote-text::after {
  content: "";
  display: block;
  width: 40px;
  height: 1px;
  background: var(--c-mauve);
  margin: 0 auto;
}
.philosophy-quote-text::before { margin-bottom: var(--s-5); }
.philosophy-quote-text::after { margin-top: var(--s-5); }
.philosophy-quote-attr {
  font-family: var(--f-script, var(--f-display));
  font-style: italic;
  font-size: 1.1rem;
  color: var(--c-mauve-deep);
  letter-spacing: 0.02em;
}

/* CREDENTIALS */
.credentials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}
.credentials-text h2 {
  font-family: var(--f-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 400;
  margin: var(--s-3) 0 var(--s-3);
  color: var(--c-plum);
  line-height: 1.2;
}
.credentials-text > p {
  color: var(--c-muted);
  line-height: 1.6;
  margin: 0 0 var(--s-5);
}
.credentials-list { margin: 0; }
.credentials-list dt {
  font-family: var(--f-display);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--c-mauve-deep);
  margin-top: var(--s-4);
  margin-bottom: 4px;
}
.credentials-list dt:first-child { margin-top: 0; }
.credentials-list dd {
  margin: 0;
  font-size: 0.95rem;
  color: var(--c-ink);
  line-height: 1.55;
  padding-bottom: var(--s-3);
  border-bottom: 1px solid var(--c-line);
}
.credentials-list dd:last-of-type { border-bottom: 0; padding-bottom: 0; }
.credentials-image {
  margin: 0;
  background: var(--c-cream-warm);
  border: 1px solid var(--c-line);
  overflow: hidden;
}
.credentials-image img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.credentials-image figcaption {
  padding: var(--s-3) var(--s-4);
  font-size: 0.85rem;
  font-style: italic;
  color: var(--c-muted);
  background: var(--c-bone);
  border-top: 1px solid var(--c-line);
}
@media (max-width: 860px) {
  .credentials-grid { grid-template-columns: 1fr; }
  .credentials-image { max-width: 480px; margin: 0 auto; }
}

/* =====================================================================
   Contact page — hero with consultation photo
   ===================================================================== */
.contact-hero {
  padding: var(--s-7) 0 var(--s-7);
  background: linear-gradient(180deg, var(--c-mauve-mist) 0%, var(--c-cream) 100%);
  border-bottom: 1px solid var(--c-line);
}
.contact-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  margin-top: var(--s-5);
}
.contact-hero-text h1 {
  font-family: var(--f-display);
  font-size: clamp(2.2rem, 4.5vw, 3.2rem);
  font-weight: 400;
  margin: var(--s-3) 0 var(--s-4);
  color: var(--c-plum);
  line-height: 1.1;
}
.contact-hero-text .lede {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--c-ink);
  margin: 0 0 var(--s-4);
}
.contact-hero-subtext {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--c-muted);
  margin: 0;
}
.contact-hero-image {
  margin: 0;
  width: 100%;
  border: 1px solid var(--c-line);
  background: var(--c-cream-warm);
  overflow: hidden;
  box-shadow: 0 20px 60px -30px rgba(75, 50, 60, 0.30);
}
.contact-hero-image img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
@media (max-width: 860px) {
  .contact-hero-grid { grid-template-columns: 1fr; }
  .contact-hero-image-wrap { max-width: 480px; margin: 0 auto; }
}
