/* ==========================================================================
   TEJO ACUPUNCTURE
   Calm, warm-neutral design system. Mobile-first. WCAG AA contrast throughout.
   ========================================================================== */

/* ------------------------------------------------------------------ tokens */
:root {
  /* Warm neutral ground */
  --paper:      #FAF8F4;
  --paper-2:    #F3EFE7;
  --sand:       #EDE7DC;
  --sand-deep:  #E3DACB;
  --line:       #DFD7C9;
  --line-soft:  #EAE3D6;

  /* Ink */
  --ink:        #22201D;
  --ink-2:      #4A453E;
  --ink-3:      #6B655C;

  /* Restrained sage accent */
  --sage:       #4C5B46;
  --sage-deep:  #3B472F;
  --sage-tint:  #E6E9E1;

  /* WhatsApp */
  --wa:         #25D366;
  --wa-ink:     #0B3D2E;
  --wa-deep:    #0F7A6D;

  --focus:      #1F3A2E;

  --radius:     3px;
  --radius-lg:  6px;

  --shadow-sm:  0 1px 2px rgba(34,32,29,.05);
  --shadow:     0 12px 40px -24px rgba(34,32,29,.35);

  --wrap:       1180px;
  --prose:      68ch;

  --step--1: clamp(.82rem, .80rem + .10vw, .875rem);
  --step-0:  clamp(1rem, .97rem + .16vw, 1.075rem);
  --step-1:  clamp(1.15rem, 1.08rem + .34vw, 1.35rem);
  --step-2:  clamp(1.4rem, 1.26rem + .70vw, 1.85rem);
  --step-3:  clamp(1.7rem, 1.44rem + 1.28vw, 2.5rem);
  --step-4:  clamp(2.05rem, 1.58rem + 2.30vw, 3.45rem);

  --sp-1: .5rem; --sp-2: .875rem; --sp-3: 1.25rem; --sp-4: 2rem;
  --sp-5: 3rem;  --sp-6: 4.5rem;  --sp-7: 6.5rem;

  --serif: "Lora", Georgia, "Times New Roman", serif;
  --sans:  "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
}

/* ------------------------------------------------------------------ reset */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: var(--step-0);
  line-height: 1.65;
  font-weight: 380;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
/* A display rule on a class beats the hidden attribute's own display:none, which
   silently revealed the empty form-error rows. Keep this above every such rule. */
[hidden] { display: none !important; }
img, svg, figure { display: block; max-width: 100%; }
img { height: auto; }
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 500; line-height: 1.16; letter-spacing: -.012em; margin: 0 0 .6em; color: var(--ink); text-wrap: balance; }
h1 { font-size: var(--step-4); }
h2 { font-size: var(--step-3); }
h3 { font-size: var(--step-1); }
p  { margin: 0 0 1.15em; text-wrap: pretty; }
p:last-child { margin-bottom: 0; }
a { color: var(--sage); text-underline-offset: .18em; text-decoration-thickness: 1px; text-decoration-color: rgba(76,91,70,.45); }
a:hover { text-decoration-color: currentColor; }
ul, ol { margin: 0 0 1.15em; padding-left: 1.25em; }
li + li { margin-top: .45em; }
button { font: inherit; color: inherit; }
:focus-visible { outline: 2px solid var(--focus); outline-offset: 3px; border-radius: 2px; }
::selection { background: var(--sage-tint); color: var(--ink); }

.visually-hidden {
  position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.skip {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--ink); color: var(--paper); padding: .8rem 1.2rem; text-decoration: none;
}
.skip:focus { left: .75rem; top: .75rem; }

.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: clamp(1.15rem, 5vw, 2.5rem); }

/* ----------------------------------------------------------------- header */
/* The frosted background lives on a pseudo-element, NOT on the header itself.
 * backdrop-filter makes an element the containing block for any fixed-position
 * descendant, and the mobile menu is a fixed overlay inside this header. With the
 * filter on the header, the menu was being positioned against the 73px-tall header
 * instead of the viewport: it opened as an invisible sliver while the page scroll
 * was locked behind it, so pressing MENU looked like the site had frozen.
 * A pseudo-element is not an ancestor, so the blur stays and the overlay is free.
 */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: border-color .25s ease;
}
.site-header::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: rgba(250,248,244,.88);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  transition: background .25s ease;
}
.site-header.is-stuck { border-bottom-color: var(--line); }
.site-header .wrap { max-width: 1320px; }
.site-header__inner { display: flex; align-items: center; gap: var(--sp-3); min-height: 72px; }

.brand { display: inline-flex; align-items: center; gap: .7rem; text-decoration: none; color: var(--ink); margin-right: auto; }
.brand__mark { width: 30px; height: 30px; color: var(--sage); flex: none; }
.brand__mark svg { width: 100%; height: 100%; }
.brand__text { display: flex; flex-direction: column; line-height: 1; }
.brand__name { font-family: var(--serif); font-size: 1.16rem; letter-spacing: .22em; text-transform: uppercase; }
.brand__sub { font-size: .655rem; letter-spacing: .3em; text-transform: uppercase; color: var(--ink-3); margin-top: .32rem; }

.navtoggle {
  display: inline-flex; align-items: center; gap: .55rem;
  background: none; border: 1px solid var(--line); border-radius: var(--radius);
  padding: .55rem .85rem; cursor: pointer; color: var(--ink);
}
.navtoggle__label { font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; }
.navtoggle__bars { display: grid; gap: 5px; width: 16px; }
.navtoggle__bars span { display: block; height: 1.5px; background: currentColor; border-radius: 2px; transition: transform .25s ease, opacity .2s ease; }
.navtoggle[aria-expanded="true"] .navtoggle__bars span:first-child { transform: translateY(3.25px) rotate(45deg); }
.navtoggle[aria-expanded="true"] .navtoggle__bars span:last-child { transform: translateY(-3.25px) rotate(-45deg); }

.sitenav {
  position: fixed; inset: 72px 0 0; z-index: 55;
  background: var(--paper);
  padding: var(--sp-4) clamp(1.15rem, 5vw, 2.5rem) var(--sp-6);
  overflow-y: auto;
  transform: translateY(-8px); opacity: 0; visibility: hidden;
  transition: opacity .22s ease, transform .22s ease, visibility .22s;
}
.sitenav.is-open { transform: none; opacity: 1; visibility: visible; }
.sitenav__list { list-style: none; margin: 0 0 var(--sp-4); padding: 0; }
.sitenav__list li + li { margin-top: 0; border-top: 1px solid var(--line-soft); }
.sitenav__list a {
  display: block; padding: .95rem 0; text-decoration: none; color: var(--ink);
  font-family: var(--serif); font-size: var(--step-1);
}
.sitenav__list a[aria-current="page"] { color: var(--sage); }
.sitenav__aside { display: flex; flex-direction: column; gap: var(--sp-3); align-items: flex-start; }

.langswitch { display: flex; list-style: none; margin: 0; padding: 0; gap: .25rem; border: 1px solid var(--line); border-radius: var(--radius); }
.langswitch li + li { margin: 0; border-left: 1px solid var(--line); }
.langswitch a {
  display: block; padding: .6rem .8rem; text-decoration: none; color: var(--ink-3);
  font-size: .78rem; letter-spacing: .1em; font-weight: 500;
}
.langswitch a:hover { color: var(--ink); }
.langswitch a.is-active { background: var(--sage); color: #fff; }
.langswitch abbr { text-decoration: none; border: 0; }

/* ---------------------------------------------------------------- buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .92rem 1.5rem; border-radius: var(--radius); border: 1px solid transparent;
  font-size: .875rem; font-weight: 500; letter-spacing: .06em; text-transform: uppercase;
  text-decoration: none; cursor: pointer; text-align: center;
  transition: background-color .2s ease, color .2s ease, border-color .2s ease, transform .15s ease;
}
.btn:active { transform: translateY(1px); }
.btn--primary { background: var(--sage); color: #fff; }
.btn--primary:hover { background: var(--sage-deep); color: #fff; }
.btn--ghost { border-color: var(--line); color: var(--ink); background: transparent; }
.btn--ghost:hover { border-color: var(--ink); background: var(--paper-2); }
.btn--whatsapp { background: var(--wa-deep); color: #fff; }
.btn--whatsapp:hover { background: #0B5F55; color: #fff; }
.btn--whatsapp .wa { width: 18px; height: 18px; fill: currentColor; }
.btn--sm { padding: .62rem 1rem; font-size: .78rem; }
.btn--wide { width: 100%; }
.btn--nav { width: 100%; }
.btnrow { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: var(--sp-3); }
.btnrow--center { justify-content: center; }
.linkbtn { background: none; border: 0; padding: 0; color: var(--sage); text-decoration: underline; text-underline-offset: .18em; cursor: pointer; font-size: .9rem; }

/* ------------------------------------------------------------------ blocks */
.eyebrow {
  font-size: .715rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--sage); margin: 0 0 .9rem; font-weight: 500;
}
.lead { font-size: var(--step-1); line-height: 1.55; color: var(--ink-2); max-width: 46ch; }

/* Sections deliberately do NOT all share one rhythm. A page where every band is
   the same height and the same colour reads as generated; letting some breathe
   and others sit close is what makes it feel composed. */
.section { padding-block: var(--sp-6); }
.section--quiet { padding-block: var(--sp-7); background: var(--paper-2); }
.section + .section { padding-top: var(--sp-5); }
.section--split + .section--split { padding-top: var(--sp-4); }
.section__head--centred { max-width: 52ch; margin-inline: auto; text-align: center; }
.section__note--centred { max-width: 52ch; margin-inline: auto; text-align: center; }
.section--narrow .prose { max-width: var(--prose); }
.section--note { background: var(--paper-2); }
.band--sand { background: var(--sand); }
.band { padding-block: var(--sp-5); }
.band__title { font-size: var(--step-1); text-align: center; margin-bottom: var(--sp-4); }

.section__head { max-width: 62ch; margin-bottom: var(--sp-4); }
.section__intro { color: var(--ink-2); margin: 0; }
.section__note { margin-top: var(--sp-3); color: var(--ink-3); font-size: var(--step--1); max-width: 62ch; }
.section__cta { margin-top: var(--sp-4); }

.media { position: relative; margin: 0; border-radius: var(--radius-lg); overflow: hidden; background: var(--sand); }
.media img { width: 100%; height: 100%; object-fit: cover; }
.media__flag {
  position: absolute; left: .6rem; bottom: .6rem;
  background: rgba(34,32,29,.72); color: #fff; font-size: .625rem;
  letter-spacing: .12em; text-transform: uppercase; padding: .3rem .5rem; border-radius: 2px;
}

/* -------------------------------------------------------------------- hero */
.hero { padding-block: var(--sp-5) var(--sp-6); }
.hero__inner { display: grid; gap: var(--sp-4); }
.hero__copy h1 { margin-bottom: .45em; }
.hero__note { margin-top: var(--sp-3); font-size: var(--step--1); color: var(--ink-3); max-width: 46ch; }
.hero__media { aspect-ratio: 4 / 3; box-shadow: var(--shadow); }
/* No photograph: the headline is given room rather than left sitting in a
   half-empty two-column grid. Wider measure, more air above and below. */
/* Constrain the headline, not the block: capping .hero__copy squeezes the lead
   into the same narrow measure as the title and leaves the rest of the row empty. */
.hero--plain { padding-block: var(--sp-6) var(--sp-6); }
.hero--plain .hero__copy { max-width: none; }
.hero--plain .hero__copy h1 { max-width: 15ch; }
.hero--plain .lead { max-width: 54ch; }
.hero--plain .hero__note { max-width: 54ch; }

.pagehero { padding-block: var(--sp-5) var(--sp-4); border-bottom: 1px solid var(--line-soft); }
.pagehero__inner { display: grid; gap: var(--sp-4); }
.pagehero__media { aspect-ratio: 4 / 3; }
.pagehero__portrait { aspect-ratio: 4 / 5; max-width: 340px; }

/* ------------------------------------------------------------- credentials */
/* --------------------------------------------------------------- credline
   Credentials as a quiet credit line under the hero, not four display badges.
   Hairline separators, small type, no band, no heading: the facts are stated
   once and the page moves on. */
.credline { border-block: 1px solid var(--line-soft); background: var(--paper); }
/* A grid, not flex: with a known number of columns the separator rules can be
   removed from the first item of each row, which flex wrapping cannot promise. */
.credline__list {
  list-style: none; margin: 0; padding-block: var(--sp-3); padding-inline: 0;
  display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-2) 0;
}
.credline__item {
  padding-inline: clamp(1rem, 2.5vw, 2rem);
  border-left: 1px solid var(--line);
  font-size: var(--step--1); line-height: 1.45;
}
.credline__item:nth-child(2n + 1) { border-left: 0; padding-left: 0; }
.credline__v { color: var(--ink); font-weight: 500; }
.credline__l { color: var(--ink-3); }

@media (min-width: 900px) {
  .credline__list { grid-template-columns: repeat(4, 1fr); }
  .credline__item:nth-child(2n + 1) { border-left: 1px solid var(--line); padding-left: clamp(1rem, 2.5vw, 2rem); }
  .credline__item:nth-child(4n + 1) { border-left: 0; padding-left: 0; }
}
@media (max-width: 520px) {
  /* Stacked in one column the rules are noise; the value alone carries it. */
  .credline__list { grid-template-columns: 1fr; gap: .55rem; }
  .credline__item { border-left: 0; padding-inline: 0; }
  .credline__v::after { content: " "; }
}

/* ------------------------------------------------------------------ index
   An index rather than a card grid. The heading sits in its own narrower
   column so the section is asymmetric, and the items are separated by hairlines
   instead of being boxed into equal tiles. */
.index { display: grid; gap: var(--sp-4); }
.index__head { max-width: 34ch; }
.index__head h2 { margin-top: 0; }
.index__list { list-style: none; margin: 0; padding: 0; }
.index__item { border-top: 1px solid var(--line-soft); padding-block: var(--sp-3); }
.index__item:first-child { border-top: 0; padding-top: 0; }
.index__title { font-family: var(--serif); font-size: var(--step-1); font-weight: 500; line-height: 1.3; margin: 0 0 .3rem; }
.index__text { margin: 0; color: var(--ink-3); font-size: var(--step-0); line-height: 1.6; max-width: 54ch; }
.index__item--link a {
  display: block; text-decoration: none; color: inherit;
  position: relative; padding-right: 1.75rem;
}
.index__item--link a::after {
  content: "\2192"; position: absolute; right: .25rem; top: .1em;
  color: var(--sage); transition: transform .18s ease;
}
.index__item--link a:hover .index__title { color: var(--sage); }
.index__item--link a:hover::after { transform: translateX(3px); }
.index__item--link a:focus-visible { outline: 2px solid var(--focus); outline-offset: 4px; border-radius: 2px; }

@media (min-width: 760px) {
  .index { grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: clamp(2rem, 5vw, 4.5rem); }
  .index__head { position: sticky; top: calc(var(--header-h, 64px) + 1.5rem); align-self: start; }
  /* A long list reads better in two columns than as one very long ladder. */
  .index--dense .index__list { columns: 2; column-gap: clamp(1.5rem, 3vw, 2.75rem); }
  .index--dense .index__item { break-inside: avoid; }
  .index--dense .index__item:first-child { border-top: 1px solid var(--line-soft); padding-top: var(--sp-3); }
}
@media (prefers-reduced-motion: reduce) {
  .index__item--link a::after { transition: none; }
}

/* ------------------------------------------------------------------ aside
   The quiet band. No image, narrower measure, sits between two louder sections
   so the page has somewhere to breathe. */
.aside { border-top: 1px solid var(--line-soft); }
.aside__inner { max-width: 72ch; }
.aside__inner h2 { margin-top: 0; }
.aside__copy { color: var(--ink-2); max-width: 62ch; }
.aside__copy p { line-height: 1.7; }
.aside__cta { margin-top: var(--sp-3); }
@media (min-width: 900px) {
  .aside__inner { display: grid; grid-template-columns: minmax(0, 4fr) minmax(0, 7fr); gap: clamp(2rem, 5vw, 4rem); max-width: none; align-items: start; }
  .aside__inner .eyebrow { grid-column: 1; grid-row: 1; margin: 0 0 .4rem; }
  .aside__inner h2 { grid-column: 1; grid-row: 2; }
  .aside__copy { grid-column: 2; grid-row: 1 / span 3; }
  .aside__cta { grid-column: 1; grid-row: 3; margin-top: var(--sp-2); }
}

/* --------------------------------------------------------------- products
   Deliberately not a shop grid of identical tiles. One product reads as one
   thing worth buying; several stack as a list with the same hairline rhythm as
   the rest of the site. */
.products { list-style: none; margin: 0 0 var(--sp-6); padding: 0; display: grid; gap: var(--sp-5); }
.product { display: grid; gap: var(--sp-4); align-items: start; }
.product__media { max-width: 320px; }
.product__media img { border-radius: var(--radius); }
.product__title { font-family: var(--serif); font-size: var(--step-2); font-weight: 500; margin: 0 0 .25rem; line-height: 1.25; }
.product__format { margin: 0 0 var(--sp-3); font-size: var(--step--1); color: var(--ink-3); letter-spacing: .04em; text-transform: uppercase; }
.product__text { color: var(--ink-2); max-width: 56ch; }
.product__text p { line-height: 1.7; margin: 0 0 var(--sp-2); }
.product__price { font-size: var(--step-1); color: var(--ink); margin: var(--sp-3) 0 var(--sp-3); }
.product__price--none { font-size: var(--step-0); color: var(--ink-3); font-style: italic; }
.product__pending {
  margin: 0; padding: var(--sp-2) var(--sp-3);
  border: 1px dashed var(--line); border-radius: var(--radius);
  color: var(--ink-3); font-size: var(--step--1); max-width: 46ch;
}
.product__buy { display: inline-block; }

@media (min-width: 760px) {
  .product { grid-template-columns: minmax(0, 4fr) minmax(0, 8fr); gap: clamp(2rem, 5vw, 3.5rem); }
}

/* Shipping and returns, stated plainly next to the thing being sold rather than
   buried in a policy page. */
.shopnote { border-top: 1px solid var(--line-soft); padding-top: var(--sp-4); max-width: 68ch; }
.shopnote__title { font-family: var(--serif); font-size: var(--step-1); font-weight: 500; margin: 0 0 var(--sp-2); }
.shopnote p { color: var(--ink-3); line-height: 1.7; margin: 0 0 var(--sp-2); max-width: 62ch; }

/* --------------------------------------------------------------- sequence
   The first appointment as a programme, not a five-step funnel. The count is
   kept small and set beside the text rather than above it. */
.sequence { list-style: none; margin: 0; padding: 0; max-width: 62ch; margin-inline: auto; counter-reset: seq; }
.sequence__item { display: grid; grid-template-columns: 1.6rem 1fr; gap: var(--sp-3); padding-block: var(--sp-3); border-top: 1px solid var(--line-soft); }
.sequence__item:first-child { border-top: 0; }
.sequence__n { font-size: var(--step--1); color: var(--ink-3); line-height: 1.7; font-variant-numeric: tabular-nums; }
.sequence__body h3 { font-family: var(--serif); font-size: var(--step-1); font-weight: 500; margin: 0 0 .3rem; line-height: 1.3; }
.sequence__body p { margin: 0; color: var(--ink-3); line-height: 1.65; }

.timeline { list-style: none; margin: 0; padding: 0 0 0 1.4rem; border-left: 1px solid var(--line); }
.tl { position: relative; padding: 0 0 var(--sp-4) var(--sp-3); margin: 0; }
.tl:last-child { padding-bottom: 0; }
.tl::before { content: ""; position: absolute; left: calc(-1.4rem - 4px); top: .55rem; width: 7px; height: 7px; border-radius: 50%; background: var(--sage); }
.tl__body h3 { font-family: var(--sans); font-size: var(--step-0); font-weight: 560; letter-spacing: 0; margin-bottom: .3em; }
.tl__body p { font-size: var(--step--1); color: var(--ink-2); margin: 0; }

/* ------------------------------------------------------------------- split */
.split { display: grid; gap: var(--sp-4); align-items: center; }
.split__media { aspect-ratio: 4 / 3; }
.split__cta { margin-top: var(--sp-3); }

/* ------------------------------------------------------------------- prose */
.prose { max-width: var(--prose); }
.prose h2 { font-size: var(--step-2); }
.prose h3 { font-size: var(--step-1); margin-top: 1.9em; }
.prose h3:first-child { margin-top: 0; }
.prose ul, .prose ol { color: var(--ink-2); }
.prose__ol { counter-reset: n; list-style: none; padding-left: 0; }
.prose__ol li { counter-increment: n; position: relative; padding-left: 2.2rem; }
.prose__ol li::before {
  content: counter(n); position: absolute; left: 0; top: 0;
  font-family: var(--serif); color: var(--sage); font-size: .95rem;
  width: 1.55rem; height: 1.55rem; border: 1px solid var(--line); border-radius: 50%;
  display: grid; place-items: center;
}
.legaldl { margin: 0 0 1.4em; }
.legaldl > div { display: grid; gap: .1rem; padding: .7rem 0; border-top: 1px solid var(--line-soft); }
.legaldl dt { font-size: var(--step--1); letter-spacing: .08em; text-transform: uppercase; color: var(--ink-3); }
.legaldl dd { margin: 0; }

/* --------------------------------------------------------------------- faq */
.faq { border-top: 1px solid var(--line); max-width: 78ch; }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__item summary {
  list-style: none; cursor: pointer; padding: 1.15rem 2.5rem 1.15rem 0; position: relative;
  font-family: var(--serif); font-size: var(--step-1); line-height: 1.3;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: ""; position: absolute; right: .35rem; top: 1.55rem;
  width: 11px; height: 11px; border-right: 1.5px solid var(--sage); border-bottom: 1.5px solid var(--sage);
  transform: rotate(45deg); transition: transform .22s ease;
}
.faq__item[open] summary::after { transform: rotate(-135deg); }
.faq__item summary:hover { color: var(--sage); }
.faq__a { padding: 0 0 1.3rem; color: var(--ink-2); max-width: var(--prose); }
.faq__a p { font-size: var(--step--1); }

/* ------------------------------------------------------------ testimonials */
.quotes { list-style: none; margin: 0; padding: 0; display: grid; gap: var(--sp-4); }
.quote { border-left: 2px solid var(--sage-tint); padding-left: var(--sp-3); margin: 0; }
.quote blockquote { margin: 0 0 .7rem; font-family: var(--serif); font-size: var(--step-1); line-height: 1.5; color: var(--ink); }
.quote__by { font-size: var(--step--1); color: var(--ink-3); margin: 0; }
.quote__loc::before { content: " · "; }
.empty {
  border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: var(--sp-4); background: var(--paper-2); max-width: 62ch;
}
.empty h3 { font-size: var(--step-1); }
.empty p { margin: 0; color: var(--ink-2); font-size: var(--step--1); }

/* ---------------------------------------------------------------- final cta */
.finalcta { background: var(--sage); color: #fff; padding-block: var(--sp-6); }
.finalcta__inner { max-width: 56ch; margin-inline: auto; text-align: center; }
.finalcta h2 { color: #fff; }
.finalcta p { color: rgba(255,255,255,.9); }
.finalcta .btn--ghost { border-color: rgba(255,255,255,.5); color: #fff; }
.finalcta .btn--ghost:hover { background: rgba(255,255,255,.1); border-color: #fff; }
.finalcta .btn--primary { background: var(--paper); color: var(--sage-deep); }
.finalcta .btn--primary:hover { background: #fff; color: var(--sage-deep); }
.finalcta .btn--whatsapp { background: rgba(255,255,255,.14); color: #fff; border-color: rgba(255,255,255,.5); }
.finalcta .btn--whatsapp:hover { background: rgba(255,255,255,.22); }
.finalcta__note { margin-top: var(--sp-3); font-size: var(--step--1); color: rgba(255,255,255,.75); }

/* ---------------------------------------------------------------- contact */
.contactblock { display: grid; gap: var(--sp-4); }
.contactblock h2 { font-size: var(--step-2); }
.contact { list-style: none; margin: 0; padding: 0; }
.contact li { display: grid; gap: .1rem; padding: .8rem 0; border-top: 1px solid var(--sand-deep); margin: 0; }
.contact__k { font-size: var(--step--1); letter-spacing: .1em; text-transform: uppercase; color: var(--ink-3); }
.contact__v { font-size: var(--step-1); font-family: var(--serif); }
.contact__pending { color: var(--ink-2); font-size: var(--step--1); border: 1px solid var(--line); padding: var(--sp-3); border-radius: var(--radius-lg); background: var(--paper); }

/* -------------------------------------------------------------------- form */
.form-wrap { max-width: 640px; margin-inline: auto; }
.form { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(1.25rem, 4vw, 2.25rem); }
.form__title { font-size: var(--step-2); margin-bottom: .35em; }
.form__intro { color: var(--ink-2); }
.form__required { font-size: var(--step--1); color: var(--ink-3); margin-bottom: var(--sp-3); }
.form__privacy { font-size: var(--step--1); color: var(--ink-3); margin: var(--sp-3) 0; }
.form__minor { margin-top: var(--sp-3); font-size: var(--step--1); display: flex; gap: .6rem; align-items: center; flex-wrap: wrap; }
.form__status { margin-top: var(--sp-2); font-size: var(--step--1); }
.form__status.is-error { color: #8A2E22; }
.form__done { text-align: left; }

.field { margin-bottom: var(--sp-3); }
.field > label, .field--group legend { display: block; font-weight: 520; font-size: .9rem; margin-bottom: .3rem; padding: 0; }
.field__help { font-size: var(--step--1); color: var(--ink-3); margin: 0 0 .45rem; }
.field__err { font-size: var(--step--1); color: #8A2E22; margin: .4rem 0 0; display: flex; gap: .35rem; align-items: flex-start; }
.field__err::before { content: "!"; flex: none; display: grid; place-items: center; width: 1.05rem; height: 1.05rem; border-radius: 50%; background: #8A2E22; color: #fff; font-size: .7rem; font-weight: 700; margin-top: .1rem; }
.req { color: var(--sage); }

input[type="text"], input[type="email"], input[type="tel"], select, textarea {
  width: 100%; font: inherit; font-size: 1rem; color: var(--ink);
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: .8rem .85rem; min-height: 48px;
  transition: border-color .18s ease, box-shadow .18s ease;
  appearance: none;
}
textarea { min-height: 130px; resize: vertical; line-height: 1.55; }
select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%236B655C' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right .85rem center; background-size: 11px;
  padding-right: 2.4rem;
}
input:focus, select:focus, textarea:focus { border-color: var(--sage); box-shadow: 0 0 0 3px var(--sage-tint); outline: none; }
.field.has-error input, .field.has-error select, .field.has-error textarea { border-color: #8A2E22; }
input::placeholder, textarea::placeholder { color: #9C958A; }
.code { letter-spacing: .5em; font-size: 1.35rem; text-align: center; max-width: 11ch; }

.phone { display: grid; grid-template-columns: 1fr; gap: .5rem; }
.phone__country select { width: 100%; }

.field--group { border: 0; padding: 0; margin-inline: 0; }
.choices { display: grid; gap: .5rem; }
.choice { display: flex; align-items: center; gap: .6rem; border: 1px solid var(--line); border-radius: var(--radius); padding: .75rem .85rem; cursor: pointer; background: #fff; min-height: 48px; }
.choice:hover { border-color: var(--ink-3); }
.choice input { accent-color: var(--sage); width: 1.1rem; height: 1.1rem; flex: none; }
.choice:has(input:checked) { border-color: var(--sage); background: var(--sage-tint); }
.choice--block { align-items: flex-start; }
.choice--block span { font-size: var(--step--1); line-height: 1.5; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* --------------------------------------------------------------- floating */
.fab {
  position: fixed; right: 1rem; bottom: calc(1rem + env(safe-area-inset-bottom));
  z-index: 70; display: inline-flex; align-items: center; gap: .55rem;
  padding: .8rem .9rem; border-radius: 999px; text-decoration: none;
  box-shadow: 0 8px 26px -10px rgba(34,32,29,.5);
  transition: transform .18s ease, box-shadow .18s ease;
}
.fab:hover { transform: translateY(-2px); box-shadow: 0 12px 30px -10px rgba(34,32,29,.55); }
.fab--wa { background: var(--wa); color: var(--wa-ink); }
.fab--enq { background: var(--sage); color: #fff; }
.fab .wa { width: 24px; height: 24px; flex: none; }
.fab--wa .wa { fill: currentColor; }
.fab__label { font-size: .8rem; font-weight: 560; letter-spacing: .03em; display: none; }

.mobilebar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 65;
  background: rgba(250,248,244,.94);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid var(--line);
  padding: .6rem clamp(1rem, 5vw, 1.25rem) calc(.6rem + env(safe-area-inset-bottom));
  transform: translateY(110%); transition: transform .28s ease;
}
.mobilebar.is-visible { transform: none; }
.btn--bar { width: 100%; padding-block: .95rem; }
body.has-mobilebar { padding-bottom: 4.7rem; }
body.has-mobilebar .fab { bottom: calc(5.1rem + env(safe-area-inset-bottom)); }

/* ----------------------------------------------------------------- cookies */
.cookiebar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
  background: var(--ink); color: #fff;
  padding: var(--sp-3) 0 calc(var(--sp-3) + env(safe-area-inset-bottom));
  box-shadow: 0 -10px 40px -20px rgba(0,0,0,.6);
}
.cookiebar__inner { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: clamp(1.15rem, 5vw, 2.5rem); display: grid; gap: var(--sp-3); }
.cookiebar__title { font-family: var(--serif); font-size: var(--step-1); margin: 0 0 .35rem; }
.cookiebar__text { margin: 0; font-size: var(--step--1); color: rgba(255,255,255,.82); }
.cookiebar__text a { color: #fff; }
.cookiebar__btns { display: flex; gap: .6rem; flex-wrap: wrap; }
.cookiebar .btn--ghost { border-color: rgba(255,255,255,.45); color: #fff; }
.cookiebar .btn--ghost:hover { background: rgba(255,255,255,.12); border-color: #fff; }
.cookiebar .btn--primary { background: var(--paper); color: var(--ink); }
.cookiebar .btn--primary:hover { background: #fff; color: var(--ink); }

/* -------------------------------------------------------------------- 404 */
.notfound__h2 { font-size: var(--step-1); margin-bottom: var(--sp-3); }
.page--notfound .sitenav__list { max-width: 34rem; }

/* ----------------------------------------------------------------- footer */
.site-footer { background: var(--paper-2); border-top: 1px solid var(--line); padding-block: var(--sp-5) var(--sp-4); margin-top: 0; }
.site-footer__grid { display: grid; gap: var(--sp-4); }
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin: 0; }
.site-footer a { color: var(--ink-2); text-decoration: none; font-size: var(--step--1); display: inline-block; padding: .55rem 0; }
.site-footer a:hover { color: var(--sage); text-decoration: underline; }
.site-footer__h { font-family: var(--sans); font-size: .715rem; letter-spacing: .2em; text-transform: uppercase; color: var(--ink-3); margin: 0 0 .6rem; font-weight: 560; }
.site-footer__h--lang { margin-top: var(--sp-3); }
.brand__name--footer { font-family: var(--serif); font-size: 1.05rem; letter-spacing: .2em; margin: 0 0 .5rem; }
.site-footer__place { font-size: var(--step--1); color: var(--ink-2); margin: 0 0 .5rem; }
.site-footer__note, .site-footer__pending { font-size: var(--step--1); color: var(--ink-3); margin: 0; max-width: 34ch; }
.site-footer__langs a.is-active { color: var(--sage); font-weight: 560; }
.site-footer__base { margin-top: var(--sp-4); padding-top: var(--sp-3); border-top: 1px solid var(--line); display: grid; gap: .8rem; }
.disclaimer { font-size: .78rem; color: var(--ink-3); margin: 0; max-width: 82ch; line-height: 1.6; }
.copyright { font-size: .78rem; color: var(--ink-3); margin: 0; }

/* ------------------------------------------------------------- breakpoints */
@media (min-width: 560px) {
  .creds { grid-template-columns: repeat(2, 1fr); gap: var(--sp-3) var(--sp-4); }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .phone { grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr); }
  .choices { grid-template-columns: repeat(3, 1fr); }
  .btn--wide { width: auto; min-width: 16rem; }
  .cookiebar__inner { grid-template-columns: 1fr auto; align-items: center; }
  .fab { padding: .8rem 1.05rem; }
  .fab__label { display: inline; }
  .site-footer__base { grid-template-columns: 1fr auto; align-items: end; }
}

@media (min-width: 780px) {
  .hero__inner { grid-template-columns: 1.05fr .95fr; align-items: center; gap: var(--sp-5); }
  .hero--plain .hero__inner { grid-template-columns: minmax(0, 1fr); }
  .hero--plain .hero__copy h1 { max-width: 16ch; }
  .hero--plain .lead, .hero--plain .hero__note { max-width: 58ch; }
  .hero { padding-block: var(--sp-6) var(--sp-7); }
  .pagehero { padding-block: var(--sp-6) var(--sp-5); }
  .pagehero--media .pagehero__inner { grid-template-columns: 1.2fr .8fr; align-items: center; gap: var(--sp-5); }
  .split { grid-template-columns: 1fr 1fr; gap: var(--sp-5); }
  .split--left .split__media { order: -1; }
  .split--right .split__media { order: 2; }
  .creds { grid-template-columns: repeat(4, 1fr); }
  .cards--3 { grid-template-columns: repeat(3, 1fr); }
  .cards--4 { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); column-gap: var(--sp-5); }
  .step { border-top: 1px solid var(--sand-deep); }
  .step:last-child { border-bottom: 0; }
  .contactblock { grid-template-columns: 1fr 1fr; gap: var(--sp-5); }
  .site-footer__grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; }
  .timeline { padding-left: 1.8rem; }
  .tl::before { left: calc(-1.8rem - 4px); }
}

@media (min-width: 1000px) {
  .cards--4 { grid-template-columns: repeat(4, 1fr); }
}

@media (min-width: 1160px) {
  .navtoggle { display: none; }
  .sitenav {
    position: static; inset: auto; padding: 0; overflow: visible; background: none;
    transform: none; opacity: 1; visibility: visible;
    display: flex; align-items: center; gap: var(--sp-3);
  }
  .sitenav__list { display: flex; gap: 1.1rem; margin: 0; align-items: center; }
  .sitenav__list li + li { border: 0; margin: 0; }
  .sitenav__list a {
    font-family: var(--sans); font-size: .855rem; padding: .35rem 0; color: var(--ink-2);
    border-bottom: 1px solid transparent; white-space: nowrap;
  }
  .sitenav__list a:hover { color: var(--ink); border-bottom-color: var(--line); }
  .sitenav__list a[aria-current="page"] { color: var(--ink); border-bottom-color: var(--sage); }
  .sitenav__aside { flex-direction: row; align-items: center; gap: .8rem; }
  .btn--nav { width: auto; padding: .66rem 1rem; font-size: .745rem; letter-spacing: .05em; white-space: nowrap; }
  .langswitch a { padding: .42rem .58rem; }
  .mobilebar { display: none; }
  body.has-mobilebar { padding-bottom: 0; }
  body.has-mobilebar .fab { bottom: calc(1.4rem + env(safe-area-inset-bottom)); }
  .fab { right: 1.4rem; bottom: 1.4rem; }
  .prose h3 { margin-top: 2.2em; }
}

@media (min-width: 1420px) {
  .site-header__inner { min-height: 84px; }
  .sitenav__list { gap: 1.5rem; }
}

/* -------------------------------------------------------------- high contrast */
@media (prefers-contrast: more) {
  :root { --ink-2: #33302B; --ink-3: #443F39; --line: #B7AE9E; }
  .btn { border-color: currentColor; }
}

@media print {
  .site-header, .mobilebar, .fab, .cookiebar, .finalcta, .form { display: none !important; }
  body { background: #fff; }
}

/* ==========================================================================
   Motion
   Restrained on purpose: this is a healthcare site, not a showreel. Everything
   here is a short fade or a few pixels of travel, never a slide-in from the edge
   or a bounce.

   The reveal is PROGRESSIVE ENHANCEMENT and must stay that way. Content is fully
   visible by default; only when script confirms IntersectionObserver works does
   `js-reveal` go on <html> and the hidden-then-revealed states apply. If script
   never runs, or the observer is unavailable, the page simply renders — it can
   never end up blank.
   ========================================================================== */

.js-reveal [data-reveal] {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .7s cubic-bezier(.22,.61,.36,1), transform .7s cubic-bezier(.22,.61,.36,1);
  will-change: opacity, transform;
}
.js-reveal [data-reveal].is-in {
  opacity: 1;
  transform: none;
}
/* Children stagger very slightly, so a list resolves rather than snapping. */
.js-reveal [data-reveal] > * { transition-delay: 0ms; }
.js-reveal [data-reveal].is-in .index__item:nth-child(n) { animation: none; }

/* The hero settles on load rather than on scroll, since it is already in view.
   Driven by a class and a transition, NOT by a keyframe animation with a fill
   mode: an animation that never runs (throttled background tab, a browser that
   skips it) would hold the fill state and leave the headline invisible forever.
   A transition that never runs still lands on its final value, so the worst case
   here is "it appeared without moving". */
.js-reveal .hero__copy > *,
.js-reveal .hero__media {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .8s cubic-bezier(.22,.61,.36,1), transform .8s cubic-bezier(.22,.61,.36,1);
}
.js-reveal .hero.is-in .hero__copy > *,
.js-reveal .hero.is-in .hero__media {
  opacity: 1;
  transform: none;
}
.js-reveal .hero.is-in .hero__copy > *:nth-child(1) { transition-delay: .05s; }
.js-reveal .hero.is-in .hero__copy > *:nth-child(2) { transition-delay: .13s; }
.js-reveal .hero.is-in .hero__copy > *:nth-child(3) { transition-delay: .21s; }
.js-reveal .hero.is-in .hero__copy > *:nth-child(4) { transition-delay: .29s; }
.js-reveal .hero.is-in .hero__copy > *:nth-child(5) { transition-delay: .37s; }
.js-reveal .hero.is-in .hero__media { transition-delay: .18s; }

/* Photographs lift very slightly under the cursor. The image itself scales
   inside a fixed frame, so the layout never moves. */
figure.split__media, figure.pagehero__media, figure.product__media, figure.hero__media { overflow: hidden; border-radius: var(--radius); }
figure.split__media img, figure.pagehero__media img, figure.product__media img, figure.hero__media img {
  transition: transform 1.1s cubic-bezier(.22,.61,.36,1);
}
figure.split__media:hover img, figure.pagehero__media:hover img, figure.product__media:hover img, figure.hero__media:hover img {
  transform: scale(1.028);
}

/* Text links draw their underline rather than switching it on. */
.prose a:not(.btn), .aside__copy a:not(.btn), .shopnote a:not(.btn), .product__text a:not(.btn) {
  text-decoration: none;
  background-image: linear-gradient(currentColor, currentColor);
  background-size: 0% 1px;
  background-position: 0 100%;
  background-repeat: no-repeat;
  transition: background-size .35s cubic-bezier(.22,.61,.36,1);
  padding-bottom: .06em;
  border-bottom: 1px solid var(--line);
}
.prose a:not(.btn):hover, .aside__copy a:not(.btn):hover, .shopnote a:not(.btn):hover, .product__text a:not(.btn):hover {
  background-size: 100% 1px;
}

/* Navigation gets the same underline, growing from the centre. */
.sitenav__link { position: relative; }
.sitenav__link::after {
  content: ""; position: absolute; left: 50%; right: 50%; bottom: -.28em;
  height: 1px; background: currentColor;
  transition: left .3s cubic-bezier(.22,.61,.36,1), right .3s cubic-bezier(.22,.61,.36,1);
}
.sitenav__link:hover::after { left: 0; right: 0; }

/* Buttons lift a little and settle back. */
.btn { transition: background-color .2s ease, color .2s ease, border-color .2s ease, transform .18s cubic-bezier(.22,.61,.36,1), box-shadow .25s ease; }
.btn--primary:hover { transform: translateY(-1.5px); box-shadow: 0 8px 20px -12px rgba(34,32,29,.5); }
.btn--primary:active { transform: translateY(0); box-shadow: none; }

/* The header earns its line only once the page has moved. */
.site-header { transition: background-color .3s ease, box-shadow .3s ease, border-color .3s ease; }
.site-header.is-stuck { box-shadow: 0 1px 0 var(--line-soft), 0 10px 30px -26px rgba(34,32,29,.5); }

/* Everything above is decoration. Anyone who has asked their system for less
   motion gets none of it, and nothing stays hidden. */
@media (prefers-reduced-motion: reduce) {
  .js-reveal [data-reveal] { opacity: 1 !important; transform: none !important; transition: none !important; }
  .js-reveal .hero__copy > *, .js-reveal .hero__media { opacity: 1 !important; transform: none !important; transition: none !important; }
  figure.split__media img, figure.pagehero__media img, figure.product__media img, figure.hero__media img { transition: none; }
  figure.split__media:hover img, figure.pagehero__media:hover img, figure.product__media:hover img, figure.hero__media:hover img { transform: none; }
  .btn--primary:hover { transform: none; box-shadow: none; }
  .sitenav__link::after { transition: none; }
}

/* ------------------------------------------------------- portrait framing
   The one photograph on this site is upright (2:3). Dropped into a landscape
   frame with object-fit: cover it is centre-cropped, which removes the head.
   It gets an upright frame of its own, and the crop is biased upwards so the
   face survives whatever the column width does. */
.media--portrait { aspect-ratio: 4 / 5 !important; }
.media--portrait img { object-position: 50% 18%; }
@media (min-width: 760px) {
  /* Beside text, a little taller reads better and crops less. */
  .split__media.media--portrait { aspect-ratio: 5 / 6 !important; }
}
