/* =====================================================
   גלים ונפש — אביגל מאור · redesign1
   "Therapeutic Journal" direction
   Hand-crafted, hardcover-journal feel.
   No black. No corporate blue. Walnut ink + aged paper +
   pomegranate / eucalyptus / ochre accents.
   ===================================================== */

:root {
  /* PAPER — aged book paper, multiple tones */
  --paper:        #f4ead7;   /* aged paper */
  --paper-warm:   #faf2dc;   /* fresh cream */
  --paper-soft:   #ede0c2;   /* darker page */
  --paper-card:   #f8edd6;   /* card slightly warmer than the page */
  --paper-deep:   #d9c79a;   /* deep aged paper */

  /* INK — walnut family, replaces black entirely */
  --ink:          #3a2418;   /* walnut ink (deep) */
  --ink-soft:     #5a3a26;   /* coffee */
  --ink-mute:     #8b6e54;   /* sepia */
  --ink-faded:    #b8a48a;   /* faded sepia */

  /* ACCENTS — botanical garden / spice cabinet */
  --pomegranate:      #a23a2c;
  --pomegranate-soft: #c4604f;
  --pomegranate-mist: #f0d8d2;

  --eucalyptus:       #5e7058;
  --eucalyptus-soft:  #8a9b80;
  --eucalyptus-mist:  #dce4d6;

  --ochre:            #b08038;
  --ochre-soft:       #d4a268;
  --ochre-mist:       #f0e2c5;

  --olive:            #7d7240;
  --olive-soft:       #a89e60;

  --rose:             #b8786a;
  --rose-soft:        #d4a89c;

  --driftwood:        #6d7a72;   /* sea / open water (muted, not corporate blue) */
  --driftwood-soft:   #98a39c;
  --driftwood-mist:   #dde2dd;

  /* DEFAULT page accent (home + about) — pomegranate (the warm beating heart) */
  --accent:       var(--pomegranate);
  --accent-deep:  #7a2920;
  --accent-soft:  var(--pomegranate-soft);
  --accent-mist:  var(--pomegranate-mist);

  /* RULES & SHADOWS — paper-tinted (never pure black) */
  --rule:         rgba(58,36,24,0.18);
  --rule-strong:  rgba(58,36,24,0.32);
  --rule-faint:   rgba(58,36,24,0.10);
  --shadow-paper: 0 1px 0 rgba(58,36,24,0.05),
                  0 8px 24px rgba(122,80,40,0.10);
  --shadow-deep:  0 1px 0 rgba(58,36,24,0.08),
                  0 16px 40px rgba(122,80,40,0.18);

  /* RADII — book-like, restrained */
  --radius-xs: 1px;
  --radius-sm: 2px;
  --radius-md: 4px;
  --radius-lg: 12px;

  /* MOTION */
  --ease:        cubic-bezier(0.22, 0.61, 0.36, 1);
  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);

  /* TYPOGRAPHY — book + handwriting pairing */
  --font-display: 'Bellefair', 'Frank Ruhl Libre', 'Noto Serif Hebrew', Georgia, serif;
  --font-body:    'Frank Ruhl Libre', 'Noto Serif Hebrew', Georgia, serif;
  --font-hand:    'Caveat', 'Frank Ruhl Libre', cursive;

  --text-xs:    0.84rem;
  --text-sm:    0.94rem;
  --text-base:  1.04rem;
  --text-md:    1.14rem;
  --text-lg:    1.3rem;
  --text-xl:    1.6rem;
  --text-2xl:   2.1rem;
  --text-3xl:   2.85rem;
  --text-hero:  clamp(3.6rem, 12vw, 9.5rem);

  --lh-tight:   1.05;
  --lh-heading: 1.18;
  --lh-body:    1.78;
  --lh-small:   1.55;

  --fw-regular:  400;
  --fw-medium:   500;
  --fw-bold:     700;

  --container:        1180px;
  --container-narrow: 760px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background: var(--paper);
  color: var(--ink);
  font-size: 17px;
  font-weight: var(--fw-regular);
  line-height: var(--lh-body);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  min-height: 100vh;
}

/* PAPER GRAIN — pronounced fractal noise to feel like real fiber paper */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background-image: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='280' height='280'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0.18 0 0 0 0 0.10 0 0 0 0 0.05 0 0 0 0.85 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.10;
  mix-blend-mode: multiply;
}

/* SCATTERED WATERCOLOR STAINS — fixed, very low opacity, drifts with page */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(ellipse 800px 480px at 88% -8%,  rgba(162, 58, 44, 0.10)  0%, transparent 60%),
    radial-gradient(ellipse 600px 420px at -10% 95%, rgba(94, 112, 88, 0.10)  0%, transparent 60%),
    radial-gradient(ellipse 400px 320px at 95% 65%,  rgba(176, 128, 56, 0.06) 0%, transparent 60%);
}

::selection { background: var(--pomegranate); color: var(--paper-warm); }

img, svg { display: block; max-width: 100%; }
a { color: inherit; }

.wrap {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(1.4rem, 4vw, 3rem);
  position: relative;
  z-index: 2;
}
.wrap-narrow {
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding: 0 clamp(1.4rem, 4vw, 3rem);
  position: relative;
  z-index: 2;
}

/* =====================================================
   AMBIENT — replaces the bubbles with drifting ink-spots
   (very subtle, far behind the content)
   ===================================================== */
.ambient {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.ambient .bubble {
  position: absolute;
  bottom: -180px;
  border-radius: 56% 44% 64% 36% / 48% 56% 44% 52%;   /* organic ink-blot shape */
  background:
    radial-gradient(circle at 35% 30%,
      rgba(162, 58, 44, 0.18) 0%,
      rgba(162, 58, 44, 0.05) 45%,
      transparent 75%);
  filter: blur(1px);
  animation-name: ink-drift;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  will-change: transform, opacity;
}
.ambient .bubble:nth-child(1) { left:  6%; width: 38px; height: 38px; animation-delay:  0s; animation-duration: 38s; opacity: 0.55; }
.ambient .bubble:nth-child(2) { left: 18%; width: 56px; height: 56px; animation-delay:  6s; animation-duration: 44s; opacity: 0.45;
  background: radial-gradient(circle at 35% 30%, rgba(94,112,88,0.18) 0%, rgba(94,112,88,0.05) 45%, transparent 75%); }
.ambient .bubble:nth-child(3) { left: 31%; width: 22px; height: 22px; animation-delay: 13s; animation-duration: 30s; opacity: 0.55; }
.ambient .bubble:nth-child(4) { left: 47%; width: 64px; height: 64px; animation-delay:  3s; animation-duration: 50s; opacity: 0.40;
  background: radial-gradient(circle at 35% 30%, rgba(176,128,56,0.16) 0%, rgba(176,128,56,0.05) 45%, transparent 75%); }
.ambient .bubble:nth-child(5) { left: 60%; width: 26px; height: 26px; animation-delay:  9s; animation-duration: 32s; opacity: 0.50; }
.ambient .bubble:nth-child(6) { left: 73%; width: 42px; height: 42px; animation-delay: 17s; animation-duration: 42s; opacity: 0.42;
  background: radial-gradient(circle at 35% 30%, rgba(125,114,64,0.14) 0%, rgba(125,114,64,0.04) 45%, transparent 75%); }
.ambient .bubble:nth-child(7) { left: 86%; width: 30px; height: 30px; animation-delay: 11s; animation-duration: 36s; opacity: 0.45; }

@keyframes ink-drift {
  0%   { transform: translate3d(0, 0, 0) rotate(0deg); opacity: 0; }
  10%  { opacity: var(--bubble-op, 0.5); }
  50%  { transform: translate3d(22px, -55vh, 0) rotate(40deg); }
  92%  { opacity: 0.20; }
  100% { transform: translate3d(-18px, -110vh, 0) rotate(-30deg); opacity: 0; }
}

/* =====================================================
   PAGE-MARGIN RIBBON — vertical colored stripe at the
   inline-start edge, like a clothbound book spine.
   Set via body::before customisation isn't enough since
   ::before is used for grain. Use a separate fixed element.
   ===================================================== */
body::before { /* see grain above */ }

.page-spine {
  /* Drawn by the .ambient sibling? No, we'll add via HTML below.
     For now, a fallback: invisible until structure added. */
}

/* =====================================================
   MARGINALIA — handwritten margin notes, slightly rotated
   ===================================================== */
.marginalia {
  font-family: var(--font-hand);
  font-weight: 400;
  font-size: 1.15rem;
  color: var(--ink-mute);
  letter-spacing: 0.02em;
  display: inline-block;
  transform: rotate(-1.5deg);
  transform-origin: right center;
  opacity: 0.85;
}
.marginalia--top {
  position: absolute;
  top: 1.4rem;
  inset-inline-end: clamp(1rem, 3vw, 2.5rem);
  font-size: 1rem;
  z-index: 4;
}

/* =====================================================
   ASTERISM — section divider glyphs
   ===================================================== */
.asterism {
  text-align: center;
  font-family: var(--font-display);
  color: var(--ink-faded);
  font-size: 1.4rem;
  letter-spacing: 1.2em;
  margin: clamp(1.5rem, 3vw, 2.4rem) 0;
  padding-inline-start: 1.2em; /* offset for letter-spacing's trailing space */
  user-select: none;
}
.asterism::before { content: '✻ ❋ ✻'; }
.asterism--single::before { content: '❋'; letter-spacing: 0; }

/* =====================================================
   HEADER
   ===================================================== */
header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(244, 234, 215, 0.78);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid transparent;
  transition: background 0.4s var(--ease), border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
header.is-scrolled {
  background: rgba(244, 234, 215, 0.94);
  border-bottom-color: var(--rule);
  box-shadow: 0 2px 12px rgba(122,80,40,0.08);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  gap: 1.25rem;
}

.logo {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: 0.005em;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  transition: color 0.25s var(--ease);
}
.logo:hover { color: var(--pomegranate); }
.logo-mark {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  color: var(--pomegranate);
  transition: transform 0.6s var(--ease-out);
}
.logo:hover .logo-mark { transform: rotate(-6deg) scale(1.04); }

.nav-links {
  display: flex;
  gap: clamp(0.85rem, 1.8vw, 1.6rem);
  list-style: none;
  align-items: center;
}
.nav-links a {
  color: var(--ink-soft);
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 400;
  transition: color 0.25s var(--ease);
  position: relative;
  padding: 0.25rem 0;
}
.nav-links a:hover, .nav-links a.active { color: var(--pomegranate); }
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  right: 0;
  width: 0;
  height: 1px;
  background: var(--pomegranate);
  transition: width 0.35s var(--ease-out);
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.menu-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--rule);
  cursor: pointer;
  padding: 0.45rem 0.6rem;
  color: var(--ink);
  font-size: 1rem;
  border-radius: var(--radius-sm);
  line-height: 1;
}

/* =====================================================
   HERO — handwritten brand + watercolor wash
   ===================================================== */
.hero {
  padding: clamp(3rem, 8vw, 6rem) 0 clamp(2.5rem, 5vw, 4rem);
  position: relative;
  isolation: isolate;
}
.hero::before {
  /* Watercolor wash bleeding from inline-end (top right in RTL, top left in LTR) */
  content: '';
  position: absolute;
  inset-inline-end: -8%;
  top: -10%;
  width: 55%;
  height: 60%;
  background:
    radial-gradient(ellipse at 60% 40%,
      rgba(162, 58, 44, 0.22) 0%,
      rgba(176, 128, 56, 0.12) 35%,
      transparent 70%);
  filter: blur(2px);
  pointer-events: none;
  z-index: -1;
  opacity: 0.85;
}

.eyebrow {
  font-family: var(--font-hand);
  color: var(--ink-soft);
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  letter-spacing: 0.01em;
  font-weight: 400;
  transform: rotate(-0.6deg);
  transform-origin: right center;
}
.eyebrow::after {
  content: '';
  flex: 0 0 80px;
  height: 1px;
  background: var(--ink-mute);
  opacity: 0.45;
  transform: rotate(0.6deg);
}

.hero h1 {
  font-family: var(--font-display);
  font-size: var(--text-hero);
  font-weight: 400;
  line-height: 0.92;
  color: var(--ink);
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
  text-wrap: balance;
}

/* Hand-drawn underline beneath the brand name (SVG path) */
.hero h1 + .hero-underline {
  display: block;
  width: clamp(160px, 28vw, 360px);
  height: 14px;
  margin-bottom: 1.6rem;
  color: var(--pomegranate);
  opacity: 0.85;
}

.hero-wave {
  width: 100%;
  max-width: 540px;
  height: 56px;
  margin: 1.4rem 0 1.9rem;
  color: var(--eucalyptus);
  opacity: 0.55;
  animation: wave-breathe 9s ease-in-out infinite;
  transform-origin: right center;
}
@keyframes wave-breathe {
  0%, 100% { transform: scaleY(1)    translateX(0); opacity: 0.55; }
  50%      { transform: scaleY(1.16) translateX(-6px); opacity: 0.70; }
}

.hero-sub {
  font-family: var(--font-body);
  font-size: var(--text-md);
  color: var(--ink-soft);
  max-width: 620px;
  line-height: 1.72;
  margin-bottom: 1rem;
  font-weight: 400;
}
.hero-sub strong { color: var(--ink); font-weight: 700; }

.hero-quote-soft {
  font-family: var(--font-hand);
  font-weight: 400;
  font-size: 1.4rem;
  color: var(--ink-mute);
  max-width: 560px;
  margin-top: 1.2rem;
  line-height: 1.45;
  transform: rotate(-0.8deg);
  transform-origin: right center;
}

.hero-quote {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.3vw, 1.7rem);
  color: var(--pomegranate);
  font-weight: 400;
  max-width: 560px;
  margin-top: 1rem;
  padding-top: 0.9rem;
  line-height: 1.45;
  position: relative;
}
.hero-quote::before {
  content: '';
  position: absolute;
  top: 0;
  inset-inline-start: 0;
  width: 60px;
  height: 1px;
  background: var(--pomegranate);
  opacity: 0.55;
}

/* =====================================================
   PAGE-HERO (interior pages) — title-page-of-a-chapter feel
   ===================================================== */
.page-hero {
  padding: clamp(2.5rem, 6vw, 4.5rem) 0 clamp(2.2rem, 4vw, 3.5rem);
  position: relative;
  border-bottom: 1px solid var(--rule);
  isolation: isolate;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset-inline-end: -5%;
  top: -10%;
  width: 50%;
  height: 75%;
  background:
    radial-gradient(ellipse at 60% 40%,
      color-mix(in oklab, var(--accent) 22%, transparent) 0%,
      transparent 65%);
  filter: blur(2px);
  pointer-events: none;
  z-index: -1;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5.6vw, 4rem);
  font-weight: 400;
  line-height: 1.05;
  color: var(--ink);
  letter-spacing: -0.012em;
  margin-bottom: 1.2rem;
  max-width: 920px;
  text-wrap: balance;
  position: relative;
  padding-bottom: 1rem;
}
.page-hero h1::after {
  content: '';
  position: absolute;
  bottom: 0;
  inset-inline-start: 0;
  width: clamp(80px, 12vw, 160px);
  height: 2px;
  background: var(--accent);
  opacity: 0.85;
}
.page-hero .hero-sub {
  font-family: var(--font-body);
  font-size: var(--text-md);
  margin-bottom: 1.6rem;
}

/* =====================================================
   SECTIONS
   ===================================================== */
section { padding: clamp(2.8rem, 5.5vw, 5rem) 0 clamp(3.3rem, 6vw, 5.6rem); position: relative; }

.section-label {
  font-family: var(--font-hand);
  color: var(--accent-deep);
  font-size: 1.2rem;
  margin-bottom: 0.6rem;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  letter-spacing: 0.01em;
  font-weight: 400;
  transform: rotate(-0.5deg);
  transform-origin: right center;
}
.section-label::before {
  content: '·';
  font-size: 1.6rem;
  line-height: 0;
  color: var(--accent);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3.8vw, 2.85rem);
  font-weight: 400;
  color: var(--ink);
  line-height: 1.18;
  letter-spacing: -0.01em;
  margin-bottom: 1.7rem;
  max-width: 820px;
  text-wrap: balance;
}

/* =====================================================
   PROSE
   ===================================================== */
.prose-section .prose { max-width: 700px; }

.prose p {
  font-family: var(--font-body);
  font-size: var(--text-md);
  color: var(--ink-soft);
  line-height: 1.84;
  margin-bottom: 1.1rem;
}
.prose p:last-child { margin-bottom: 0; }
.prose p strong { color: var(--ink); font-weight: 700; }

.pullquote {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.4vw, 1.7rem);
  color: var(--accent-deep);
  font-weight: 400;
  line-height: 1.5;
  max-width: 720px;
  padding: 1.4rem 1.8rem;
  margin: 2rem 0;
  position: relative;
  background: var(--accent-mist);
  border-radius: var(--radius-md);
  transform: rotate(-0.4deg);
  transform-origin: right center;
  box-shadow: var(--shadow-paper);
}
.pullquote::before {
  content: '«';
  position: absolute;
  top: -0.5rem;
  inset-inline-start: 1rem;
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--accent);
  line-height: 1;
  opacity: 0.65;
}
.pullquote-author {
  display: block;
  font-family: var(--font-hand);
  color: var(--accent);
  font-size: 1.15rem;
  margin-top: 0.65rem;
  letter-spacing: 0.04em;
  font-weight: 400;
  font-style: normal;
}

/* =====================================================
   PATHWAYS (home) — TOC entries, not boxed cards.
   Each "entry" has a stamped letter-circle on the
   inline-start, a Bellefair title, prose, hand-drawn arrow.
   ===================================================== */
.pathways {
  background: linear-gradient(180deg, transparent 0%, var(--paper-soft) 18%, var(--paper-soft) 82%, transparent 100%);
  position: relative;
}
.pathways::before {
  content: '✻ ❋ ✻';
  position: absolute;
  top: 1rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-display);
  letter-spacing: 0.6em;
  color: var(--ink-faded);
  font-size: 1rem;
  padding-left: 0.6em;
}

.paths-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(2rem, 4vw, 3.2rem) clamp(2.4rem, 5vw, 4.2rem);
  margin-top: 1.6rem;
}

.path-card {
  text-decoration: none;
  color: inherit;
  display: grid;
  grid-template-columns: 72px 1fr;
  grid-template-rows: auto auto auto;
  column-gap: 1.4rem;
  row-gap: 0.45rem;
  align-items: start;
  padding: 0.6rem 0;
  position: relative;
  transition: transform 0.4s var(--ease);
}
/* Stamp spans the whole height; title / description / arrow share column 2 */
.path-card .path-num   { grid-column: 1; grid-row: 1 / -1; align-self: start; }
.path-card h3          { grid-column: 2; grid-row: 1; }
.path-card p           { grid-column: 2; grid-row: 2; }
.path-card .path-arrow { grid-column: 2; grid-row: 3; margin-top: 0.35rem; }
.path-card:hover { transform: translateX(-4px); }
[dir="ltr"] .path-card:hover { transform: translateX(4px); }

/* Stamped circle with the Hebrew letter — replaces giant background numeral */
.path-card .path-num {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 1.5px solid var(--card-accent, var(--ink-mute));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.85rem;
  font-weight: 400;
  color: var(--card-accent, var(--ink));
  background: var(--paper-warm);
  letter-spacing: 0;
  transform: rotate(-2deg);
  transition: transform 0.5s var(--ease-out), background 0.4s var(--ease);
  position: relative;
  z-index: 1;
}
.path-card .path-num::after {
  /* faint stamped-ink halo */
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  background: radial-gradient(circle, color-mix(in oklab, var(--card-accent, var(--ink-mute)) 12%, transparent) 0%, transparent 70%);
  z-index: -1;
}
.path-card:hover .path-num {
  transform: rotate(2deg) scale(1.04);
  background: color-mix(in oklab, var(--card-accent, var(--ink-mute)) 14%, var(--paper-warm));
}

.path-card .path-icon {
  display: none; /* SVG icons retired in favour of stamp-letter */
}

.path-card h3 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.6vw, 1.85rem);
  font-weight: 400;
  color: var(--ink);
  letter-spacing: -0.005em;
  margin-bottom: 0.45rem;
  line-height: 1.1;
}

.path-card p {
  font-family: var(--font-body);
  color: var(--ink-soft);
  font-size: var(--text-base);
  line-height: 1.7;
  margin-bottom: 0.85rem;
}

.path-arrow {
  font-family: var(--font-hand);
  color: var(--card-accent-deep, var(--accent-deep));
  font-size: 1.2rem;
  font-weight: 400;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: transform 0.35s var(--ease), color 0.3s var(--ease);
}
.path-card:hover .path-arrow { transform: translateX(-6px); color: var(--card-accent, var(--accent)); }
[dir="ltr"] .path-card:hover .path-arrow { transform: translateX(6px); }

/* Per-card colour assignment — each TOC entry wears its world */
.paths-grid .path-card[href*="psychotherapy"]  { --card-accent: var(--olive);       --card-accent-deep: #4f4720; }
.paths-grid .path-card[href*="watsu"]          { --card-accent: var(--pomegranate); --card-accent-deep: #7a2920; }
.paths-grid .path-card[href*="hydrotherapy"]   { --card-accent: var(--eucalyptus);  --card-accent-deep: #3f4f3a; }
.paths-grid .path-card[href*="open-water"]     { --card-accent: var(--driftwood);   --card-accent-deep: #4a554e; }

@media (max-width: 720px) {
  .paths-grid { grid-template-columns: 1fr; gap: 2rem; }
}

/* =====================================================
   JOURNEY (home) — same wave + stops, journal-toned
   ===================================================== */
.journey-flow { position: relative; margin: 2rem 0 1.75rem; padding: 1.5rem 0; }
.journey-wave {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  color: var(--eucalyptus-soft);
  opacity: 0.7;
}
.journey-stops {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.85rem;
  position: relative;
  z-index: 2;
}
.stop {
  text-align: center;
  padding: 0.85rem 0.4rem;
  position: relative;
}
.stop::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--paper-warm);
  border: 1.5px solid var(--ochre);
}
.stop-label {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.5vw, 1.95rem);
  color: var(--ink);
  font-weight: 400;
  margin-bottom: 0.3rem;
  margin-top: 0.7rem;
  line-height: 1.1;
}
.stop-detail {
  font-family: var(--font-hand);
  color: var(--ink-mute);
  font-size: 1rem;
  letter-spacing: 0.02em;
}

/* Journey closing — meditative two stanzas */
.journey-text {
  max-width: 760px;
  margin: 2.6rem auto 0.5rem;
  padding: 2.2rem 1.5rem 0.5rem;
  text-align: center;
  position: relative;
}
.journey-text::before {
  content: '✻ ❋ ✻';
  display: block;
  font-family: var(--font-display);
  letter-spacing: 0.6em;
  color: var(--ink-faded);
  font-size: 1rem;
  padding-left: 0.6em;
  margin: 0 auto 2rem;
  text-align: center;
}
.journey-stanza {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.4vw, 1.65rem);
  color: var(--ink);
  line-height: 1.55;
  font-weight: 400;
  letter-spacing: -0.005em;
  margin: 0;
}
.journey-stanza + .journey-stanza {
  margin-top: 1.9rem;
  padding-top: 1.9rem;
  position: relative;
  font-family: var(--font-hand);
  font-size: clamp(1.45rem, 2.6vw, 1.85rem);
  color: var(--pomegranate);
  line-height: 1.55;
}
.journey-stanza + .journey-stanza::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 1px;
  background: var(--pomegranate);
  opacity: 0.5;
}

/* =====================================================
   NUMBERED GRID
   ===================================================== */
.num-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 0;
  margin-top: 1.6rem;
}
.num-grid--two {
  grid-template-columns: repeat(2, 1fr);
  column-gap: 2.5rem;
}
.num-item {
  padding: 1.85rem 0;
  padding-inline-end: 1.85rem;
  border-top: 1px dashed var(--rule);   /* dashed = journal-line feel */
  position: relative;
}
.num-grid--two .num-item:nth-child(-n+2) { border-top-color: var(--rule-strong); }
.num-grid:not(.num-grid--two) .num-item:nth-child(-n+2) { border-top-color: var(--rule-strong); }
.num-numeral {
  font-family: var(--font-display);
  color: var(--accent);
  font-size: 2.2rem;
  font-weight: 400;
  line-height: 1;
  margin-bottom: 0.7rem;
  display: inline-block;
  letter-spacing: 0.02em;
  border: 1.5px solid var(--accent);
  border-radius: 50%;
  width: 56px;
  height: 56px;
  text-align: center;
  line-height: 52px;
  background: var(--paper-warm);
  transform: rotate(-2deg);
}
.num-item h3, .num-item h4 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 0.55rem;
  letter-spacing: -0.005em;
}
.num-item p {
  font-family: var(--font-body);
  color: var(--ink-soft);
  font-size: var(--text-base);
  line-height: 1.7;
}

/* =====================================================
   SIMPLE GRID
   ===================================================== */
.simple-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(244px, 1fr));
  gap: 1.6rem 1.8rem;
  margin-top: 1.6rem;
}
.simple-grid--three { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 880px) {
  .simple-grid--three { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .simple-grid--three { grid-template-columns: 1fr; }
}
.simple-card {
  padding: 1.4rem 0 0.5rem;
  border-top: 1.5px solid var(--accent);
  position: relative;
  transition: transform 0.3s var(--ease);
}
.simple-card::before {
  content: '';
  position: absolute;
  top: -1.5px;
  inset-inline-start: 0;
  width: 28px;
  height: 1.5px;
  background: var(--accent-deep);
  transition: width 0.4s var(--ease-out);
}
.simple-card:hover::before { width: 80px; }
.simple-card h3, .simple-card h4 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 0.5rem;
}
.simple-card p {
  font-family: var(--font-body);
  color: var(--ink-soft);
  font-size: var(--text-base);
  line-height: 1.66;
}

/* =====================================================
   STEPS — journal-page entries
   ===================================================== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(244px, 1fr));
  gap: 1.6rem;
  margin-top: 1.6rem;
}
.step-card {
  padding: 1.7rem 1.6rem 1.7rem;
  background: var(--paper-card);
  border: none;
  border-inline-start: 3px solid var(--accent);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  position: relative;
  transition: transform 0.4s var(--ease), background 0.4s var(--ease);
  box-shadow: var(--shadow-paper);
}
.step-card:hover { transform: translateY(-3px); background: var(--paper-warm); }
.step-num {
  font-family: var(--font-hand);
  color: var(--accent-deep);
  font-size: 1.4rem;
  margin-bottom: 0.55rem;
  display: block;
  font-weight: 400;
}
.step-card h3, .step-card h4 {
  font-family: var(--font-display);
  font-size: 1.32rem;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 0.5rem;
}
.step-card p {
  font-family: var(--font-body);
  color: var(--ink-soft);
  font-size: var(--text-base);
  line-height: 1.66;
}

/* =====================================================
   COMPARISON — facing pages of an open book
   ===================================================== */
.comparison {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-top: 1.5rem;
  border-top: 1px dashed var(--rule);
  border-bottom: 1px dashed var(--rule);
}
.comparison-col {
  padding: 2rem 1.8rem;
  border-inline-start: 1px dashed var(--rule);
  position: relative;
}
.comparison-col:first-child { border-inline-start: none; }
.comparison-col .label {
  font-family: var(--font-hand);
  color: var(--accent-deep);
  font-size: 1.1rem;
  margin-bottom: 0.45rem;
  font-weight: 400;
}
.comparison-col h3, .comparison-col h4 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--ink);
  margin-bottom: 0.7rem;
  font-weight: 400;
}
.comparison-col p {
  font-family: var(--font-body);
  color: var(--ink-soft);
  line-height: 1.7;
  font-size: var(--text-base);
}
@media (max-width: 768px) {
  .comparison { grid-template-columns: 1fr; }
  .comparison-col { border-inline-start: none; border-top: 1px dashed var(--rule); }
  .comparison-col:first-child { border-top: none; }
}

/* =====================================================
   STATS / SPECS — like museum index cards
   ===================================================== */
.stats-bar, .specs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 0;
  margin-top: 1.6rem;
  border-top: 1px dashed var(--rule-strong);
  border-bottom: 1px dashed var(--rule-strong);
}
.stat, .spec {
  padding: 1.5rem 1.2rem;
  text-align: center;
  border-inline-start: 1px dashed var(--rule);
  transition: background 0.3s var(--ease);
}
.spec { text-align: start; }
.stat:first-child, .spec:first-child { border-inline-start: none; }
.spec:hover { background: var(--accent-mist); }
.stat-value, .spec-value {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.6vw, 1.95rem);
  color: var(--accent-deep);
  font-weight: 400;
  margin-bottom: 0.3rem;
  line-height: 1.1;
  font-variant-numeric: tabular-nums;
}
.stat-label, .spec-label {
  font-family: var(--font-hand);
  color: var(--accent);
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  font-weight: 400;
  display: block;
  margin-bottom: 0.4rem;
}
.spec-detail {
  font-family: var(--font-body);
  color: var(--ink-mute);
  font-size: var(--text-sm);
}
@media (max-width: 768px) {
  .stat, .spec { border-inline-start: none; border-top: 1px dashed var(--rule); }
  .stat:first-child, .spec:first-child { border-top: none; }
}

/* =====================================================
   TESTIMONIALS — polaroid-style cards, slight rotation
   ===================================================== */
.testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 1.6rem;
  margin-top: 2rem;
}
.testimonial {
  padding: 1.85rem 1.7rem 2.4rem;
  background: var(--paper-warm);
  border: none;
  border-radius: var(--radius-sm);
  position: relative;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
  box-shadow: var(--shadow-paper);
  transform: rotate(-0.6deg);
  transform-origin: center;
}
.testimonial:nth-child(2n) { transform: rotate(0.7deg); }
.testimonial:nth-child(3n) { transform: rotate(-0.3deg); }
.testimonial:hover {
  transform: rotate(0deg) translateY(-3px);
  box-shadow: var(--shadow-deep);
}
.testimonial::before {
  content: '«';
  position: absolute;
  top: 0.4rem;
  inset-inline-start: 1rem;
  font-family: var(--font-display);
  font-size: 3.6rem;
  color: var(--accent);
  line-height: 1;
  opacity: 0.45;
}
.testimonial p {
  font-family: var(--font-body);
  font-size: var(--text-md);
  color: var(--ink);
  line-height: 1.65;
  font-weight: 400;
  margin-bottom: 0.85rem;
  position: relative;
  z-index: 1;
  padding-top: 0.8rem;
}
.testimonial cite {
  font-family: var(--font-hand);
  color: var(--accent);
  font-size: 1.15rem;
  font-style: normal;
  font-weight: 400;
}

/* =====================================================
   CALLOUT — stamped note tucked into the page
   ===================================================== */
.callout {
  padding: 1.7rem 1.85rem;
  background: linear-gradient(135deg, var(--accent-mist) 0%, var(--paper-warm) 100%);
  border-inline-start: 3px solid var(--accent);
  margin: 1.8rem 0;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  position: relative;
  box-shadow: var(--shadow-paper);
}
.callout .label {
  font-family: var(--font-hand);
  color: var(--accent-deep);
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
  display: block;
  font-weight: 400;
}
.callout h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--ink);
  font-weight: 400;
  margin-bottom: 0.6rem;
}
.callout p {
  font-family: var(--font-body);
  color: var(--ink-soft);
  line-height: 1.7;
  margin-bottom: 0.85rem;
  font-size: var(--text-base);
}
.callout p:last-child { margin-bottom: 0; }
.callout a {
  font-family: var(--font-hand);
  font-size: 1.15rem;
  color: var(--accent-deep);
  text-decoration: none;
  border-bottom: 1px solid var(--accent);
  padding-bottom: 1px;
  transition: color 0.25s var(--ease), border-color 0.25s var(--ease);
}
.callout a:hover { color: var(--ink); border-color: var(--ink-mute); }

/* =====================================================
   BIO — polaroid quote on a deeper paper tone
   ===================================================== */
.bio {
  background:
    radial-gradient(ellipse 1100px 700px at 18% 110%, color-mix(in oklab, var(--pomegranate) 14%, transparent) 0%, transparent 65%),
    radial-gradient(ellipse 700px 500px at 100% 0%,    color-mix(in oklab, var(--ochre) 16%, transparent) 0%, transparent 60%),
    var(--paper-soft);
  color: var(--ink);
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.bio::before {
  /* Pressed-paper texture overlay — denser in this section */
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.55' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0.18 0 0 0 0 0.10 0 0 0 0 0.05 0 0 0 0.5 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.10;
  pointer-events: none;
  z-index: 0;
  mix-blend-mode: multiply;
}
.bio .wrap { position: relative; z-index: 2; }
.bio .section-label { color: var(--pomegranate); }
.bio .section-label::before { color: var(--pomegranate); }

.bio-quote {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 400;
  line-height: 1.42;
  color: var(--ink);
  max-width: 920px;
  margin-bottom: 1.4rem;
  position: relative;
  padding: 0;
  letter-spacing: -0.005em;
}
.bio-quote::before,
.bio-quote::after {
  content: '«';
  font-family: var(--font-display);
  color: var(--pomegranate);
  opacity: 0.7;
  font-size: 1.25em;
  line-height: 0;
  vertical-align: -0.18em;
}
.bio-quote::before { margin-inline-end: 0.06em; }
.bio-quote::after  { content: '»'; margin-inline-start: 0.06em; }

.bio-attribution {
  font-family: var(--font-hand);
  color: var(--pomegranate);
  font-size: 1.4rem;
  font-weight: 400;
  margin-top: 0.5rem;
  margin-bottom: 1.6rem;
  transform: rotate(-1deg);
  transform-origin: right center;
  display: inline-block;
}

.bio-text {
  font-family: var(--font-body);
  font-size: var(--text-md);
  line-height: 1.78;
  color: var(--ink-soft);
  max-width: 760px;
  margin-bottom: 1.4rem;
}

.credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0;
  font-family: var(--font-hand);
  color: var(--pomegranate);
  font-size: 1.18rem;
  letter-spacing: 0.01em;
  padding-top: 1.6rem;
  border-top: 1px dashed var(--rule);
}
.credentials span {
  padding: 0 1rem;
  border-inline-start: 1px solid var(--rule);
}
.credentials span:first-child { padding-inline-start: 0; border-inline-start: none; }

/* =====================================================
   CTA — final chapter
   ===================================================== */
.cta {
  text-align: center;
  padding: clamp(3rem, 6vw, 5rem) 0;
  position: relative;
}
.cta::before {
  content: '✻ ❋ ✻';
  display: block;
  font-family: var(--font-display);
  letter-spacing: 0.6em;
  padding-inline-start: 0.6em;
  color: var(--ink-faded);
  font-size: 1rem;
  margin-bottom: 1.5rem;
  text-align: center;
}
.cta-wave {
  width: 96px;
  height: 28px;
  margin: 0 auto 1.5rem;
  color: var(--accent);
  opacity: 0.8;
  animation: wave-breathe 7s ease-in-out infinite;
  transform-origin: center;
}
.cta h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.85rem);
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 1.1rem;
  line-height: 1.1;
}
.cta p {
  font-family: var(--font-body);
  font-size: var(--text-md);
  color: var(--ink-soft);
  max-width: 560px;
  margin: 0 auto 1.7rem;
  line-height: 1.65;
}
.cta-buttons {
  display: flex;
  gap: 0.85rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 0.5rem;
}

/* =====================================================
   BUTTONS — stamped, not pilled
   ===================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.85rem;
  background: var(--ink);
  color: var(--paper-warm);
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--ink);
  cursor: pointer;
  transition: background 0.3s var(--ease), color 0.3s var(--ease), transform 0.25s var(--ease), box-shadow 0.3s var(--ease);
  box-shadow: 0 2px 0 rgba(58,36,24,0.18);
  position: relative;
  overflow: hidden;
  line-height: 1.3;
}
.btn:hover {
  background: var(--pomegranate);
  border-color: var(--pomegranate);
  transform: translateY(-1px);
  box-shadow: 0 4px 0 rgba(122,40,32,0.22);
}
.btn:active { transform: translateY(0); box-shadow: 0 1px 0 rgba(58,36,24,0.18); }
.btn svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  margin-inline-end: 0.15rem;
  vertical-align: -3px;
  flex-shrink: 0;
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--ink);
  box-shadow: none;
}
.btn-ghost:hover {
  background: var(--ink);
  color: var(--paper-warm);
  border-color: var(--ink);
}

/* =====================================================
   FOOTER — like the back endpaper of a book
   ===================================================== */
footer {
  background: var(--paper-deep);
  padding: 2.2rem 0;
  border-top: 1px dashed var(--rule-strong);
  font-family: var(--font-hand);
  font-size: 1.1rem;
  color: var(--ink-soft);
  position: relative;
  z-index: 2;
}
footer .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.9rem;
}
footer a {
  color: var(--pomegranate);
  text-decoration: none;
  transition: color 0.25s var(--ease);
}
footer a:hover { color: var(--ink); text-decoration: underline; }

/* =====================================================
   ACCESSIBILITY WIDGET
   ===================================================== */
.a11y { position: fixed; bottom: 1.2rem; inset-inline-start: 1.2rem; z-index: 100; }
.a11y-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--paper);
  border: 1.5px solid var(--ochre);
  cursor: pointer;
  font-size: 1.25rem;
  line-height: 1;
  box-shadow: 0 6px 18px rgba(58, 36, 24, 0.30);
  transition: transform 0.25s var(--ease);
  display: flex;
  align-items: center;
  justify-content: center;
}
.a11y-btn:hover { transform: scale(1.06); }
.a11y-panel {
  position: absolute;
  bottom: 60px;
  inset-inline-start: 0;
  background: var(--paper-warm);
  border: 1px solid var(--rule);
  border-radius: var(--radius-md);
  padding: 1rem;
  min-width: 220px;
  box-shadow: var(--shadow-deep);
  display: none;
  animation: a11yFade 0.25s var(--ease-out);
}
.a11y-panel.open { display: block; }
@keyframes a11yFade {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.a11y-panel h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--ink);
  margin-bottom: 0.7rem;
  font-weight: 400;
}
.a11y-panel button {
  display: block;
  width: 100%;
  text-align: start;
  padding: 0.55rem 0.7rem;
  background: transparent;
  border: 1px solid var(--rule);
  border-radius: var(--radius-sm);
  margin-bottom: 0.35rem;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: var(--ink);
  transition: background 0.2s var(--ease), color 0.2s var(--ease), border-color 0.2s var(--ease);
}
.a11y-panel button:hover {
  background: var(--ink);
  color: var(--paper-warm);
  border-color: var(--ink);
}

body.a11y-contrast {
  --paper:        #ffffff;
  --paper-warm:   #ffffff;
  --paper-soft:   #f0f0f0;
  --paper-card:   #ffffff;
  --ink:          #000000;
  --ink-soft:     #1a1a1a;
  --ink-mute:     #2a2a2a;
  --rule:         rgba(0,0,0,0.85);
  --rule-strong:  rgba(0,0,0,1);
  --pomegranate:  #7a1f15;
  --accent:       #7a1f15;
  --accent-deep:  #4a0f08;
  --accent-mist:  #fff;
}
body.a11y-contrast::before { display: none; }
body.a11y-contrast::after  { display: none; }
body.a11y-large { font-size: 19px; }

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 880px) {
  .menu-toggle { display: inline-flex; align-items: center; justify-content: center; }
  .nav-links {
    position: absolute;
    top: 100%;
    inset-inline-start: 0;
    inset-inline-end: 0;
    background: var(--paper-warm);
    flex-direction: column;
    padding: 1rem 1.4rem 1.2rem;
    border-bottom: 1px solid var(--rule);
    display: none;
    gap: 0.85rem;
    align-items: stretch;
    box-shadow: 0 6px 14px rgba(122, 80, 40, 0.10);
  }
  .nav-links.open { display: flex; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
  .ambient { display: none; }
}

/* =====================================================
   ENTRANCE — fade-up + scroll-triggered reveal
   ===================================================== */
.fade-in {
  opacity: 0;
  transform: translateY(16px);
  animation: fadeUp 1s var(--ease-out) forwards;
}
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}
.delay-1 { animation-delay: 0.12s; }
.delay-2 { animation-delay: 0.26s; }
.delay-3 { animation-delay: 0.40s; }
.delay-4 { animation-delay: 0.54s; }

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
  will-change: opacity, transform;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* =====================================================
   MESSAGING SYSTEM — DO NOT BREAK
   ===================================================== */

.nav-contacts {
  display: flex;
  gap: 4px;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: var(--ink-soft);   /* mail icon = walnut, not teal */
  text-decoration: none;
  transition: background 0.25s var(--ease), color 0.25s var(--ease), transform 0.25s var(--ease);
  background: transparent;
}
.nav-icon:hover {
  background: var(--ink-soft);
  color: var(--paper-warm);
  transform: translateY(-1px);
}
.nav-icon svg { width: 18px; height: 18px; display: block; }
.nav-icon-wa { color: #25D366; }
.nav-icon-wa:hover { background: #25D366; color: #fff; }

.nav-tel .tel-num {
  display: none;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}
@media (hover: hover) and (pointer: fine) {
  .nav-tel {
    width: auto;
    padding: 0 10px;
    gap: 4px;
    flex-direction: row-reverse;
    pointer-events: none;
    cursor: default;
    color: #d23636;
  }
  .nav-tel:hover { background: transparent; color: #d23636; transform: none; }
  .nav-tel .tel-num { display: inline; }
}
.nav-tel { color: #d23636; }
.nav-tel:hover { background: #d23636; color: #fff; }

.cp-tel { flex-direction: row-reverse; }
.cp-tel svg { fill: #d23636; }
.cp-tel:hover svg { fill: #ff5050; }

/* =====================================================
   CONTACT PICKER — like a form left at the back of the book
   ===================================================== */
.contact-picker {
  margin: 28px auto 0;
  max-width: 760px;
  padding: 28px 30px 26px;
  background: var(--paper-warm);
  border: 1px dashed var(--rule);
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-paper);
  position: relative;
  overflow: hidden;
}
.contact-picker::before {
  content: '✻';
  position: absolute;
  top: 0.7rem;
  inset-inline-start: 50%;
  transform: translateX(-50%);
  font-family: var(--font-display);
  color: var(--pomegranate);
  font-size: 1.1rem;
  opacity: 0.7;
}

.contact-picker-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.55rem;
  color: var(--ink);
  margin: 1.2rem 0 0.4rem;
  letter-spacing: -0.005em;
}
.contact-picker-sub {
  font-family: var(--font-hand);
  font-size: 1.15rem;
  color: var(--ink-mute);
  margin: 0 0 1.2rem;
}
.contact-picker-options {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  justify-content: center;
  margin-bottom: 1.2rem;
}
.contact-picker-options label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: var(--text-base);
  padding: 0.3rem 0.5rem;
  border-radius: var(--radius-sm);
  transition: background 0.2s var(--ease);
}
.contact-picker-options label:hover { background: var(--accent-mist); }
.contact-picker-options input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--pomegranate);
  cursor: pointer;
}
.contact-picker-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.btn-wa  { background: #25D366; color: #fff; border-color: #25D366; }
.btn-wa:hover { background: #128C7E; color: #fff; border-color: #128C7E; }
.btn-tel { background: var(--ochre); color: #fff; border-color: var(--ochre); }
.btn-tel:hover { background: var(--pomegranate); color: #fff; border-color: var(--pomegranate); }

.contact-picker-buttons .btn::before,
.contact-picker-buttons .btn:hover::before { display: none; }

/* =====================================================
   MODAL
   ===================================================== */
.contact-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(58, 36, 24, 0.74);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 16px;
  animation: cmFade 0.22s var(--ease-out);
}
.contact-modal.open { display: flex; }
.contact-modal-box {
  background: var(--paper-warm);
  border-radius: var(--radius-md);
  max-width: 760px;
  width: 100%;
  padding: 40px 30px 30px;
  position: relative;
  box-shadow: var(--shadow-deep);
  animation: cmSlide 0.32s var(--ease-out);
}
.contact-modal-close {
  position: absolute;
  top: 12px;
  left: 12px;
  background: transparent;
  border: 1px solid var(--rule);
  font-size: 1.4rem;
  cursor: pointer;
  color: var(--ink-mute);
  width: 36px;
  height: 36px;
  line-height: 1;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s var(--ease), color 0.2s var(--ease), border-color 0.2s var(--ease);
}
.contact-modal-close:hover {
  background: var(--ink);
  color: var(--paper-warm);
  border-color: var(--ink);
}
.contact-modal .contact-picker {
  margin: 0;
  background: transparent;
  border: none;
  padding: 0;
  box-shadow: none;
}
.contact-modal .contact-picker::before { display: none; }

@keyframes cmFade {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes cmSlide {
  from { opacity: 0; transform: translateY(20px) scale(0.98); }
  to   { opacity: 1; transform: translateY(0)    scale(1); }
}

/* =====================================================
   PROSE / CONTENT HELPERS
   ===================================================== */
.prose-list {
  list-style: none;
  padding-inline-start: 1.5rem;
  margin-block: 0.7rem;
  font-family: var(--font-body);
  line-height: 1.85;
  color: var(--ink-soft);
  font-size: var(--text-md);
}
.prose-list li {
  margin-bottom: 0.45rem;
  position: relative;
}
.prose-list li::before {
  content: '✻';
  position: absolute;
  inset-inline-start: -1.3rem;
  color: var(--accent);
  font-size: 0.85em;
  opacity: 0.7;
}

.internal-links {
  text-align: center;
  font-family: var(--font-hand);
  font-size: 1.15rem;
  color: var(--ink-mute);
  margin: 32px auto 6px;
  padding: 18px 16px 0;
  max-width: 820px;
  border-top: 1px dashed var(--rule);
}
.internal-links p { margin: 0; }
.internal-links a {
  color: var(--accent-deep);
  text-decoration: none;
  margin: 0 0.45rem;
  font-weight: 400;
  transition: color 0.25s var(--ease);
}
.internal-links a:hover { color: var(--ink); text-decoration: underline; }

/* =====================================================
   GLOBAL TYPOGRAPHY (consistency layer)
   ===================================================== */
p {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: var(--lh-body);
  font-weight: var(--fw-regular);
}
.prose p, .hero-sub, .bio-text, .hero-quote, .hero-quote-soft {
  max-width: 68ch;
}

h1, h2, .section-title {
  font-family: var(--font-display);
  font-weight: var(--fw-regular);
  text-wrap: balance;
}
h3, h4, .pullquote, .testimonial p, blockquote {
  text-wrap: balance;
}

ul, ol { line-height: 1.7; }

@media (max-width: 640px) {
  body { font-size: 16px; line-height: 1.7; }
  .hero h1 { font-size: clamp(2.8rem, 13vw, 4rem); line-height: 1.05; }
  .page-hero h1 { font-size: clamp(2rem, 7.5vw, 2.6rem); }
  .btn { font-size: 1rem; padding: 0.78rem 1.45rem; }
  .contact-picker { padding: 22px 18px 20px; }
}

/* =====================================================
   FOCUS — visible, accessible
   ===================================================== */
a:focus-visible,
button:focus-visible,
input:focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid var(--pomegranate);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}
.btn:focus-visible {
  outline-color: var(--ochre);
  outline-offset: 3px;
}

/* =====================================================
   PER-PAGE ACCENTS — each service page wears its world
   index/about default to pomegranate (warm beating heart)
   ===================================================== */
body[data-page="psy"]   { --accent: var(--olive);       --accent-deep: #4f4720; --accent-soft: var(--olive-soft); --accent-mist: var(--ochre-mist); }
body[data-page="watsu"] { --accent: var(--pomegranate); --accent-deep: #7a2920; --accent-soft: var(--pomegranate-soft); --accent-mist: var(--pomegranate-mist); }
body[data-page="hydro"] { --accent: var(--eucalyptus);  --accent-deep: #3f4f3a; --accent-soft: var(--eucalyptus-soft); --accent-mist: var(--eucalyptus-mist); }
body[data-page="sea"]   { --accent: var(--driftwood);   --accent-deep: #4a554e; --accent-soft: var(--driftwood-soft); --accent-mist: var(--driftwood-mist); }

body[data-page="psy"]   ::selection { background: var(--olive);       color: var(--paper-warm); }
body[data-page="watsu"] ::selection { background: var(--pomegranate); color: var(--paper-warm); }
body[data-page="hydro"] ::selection { background: var(--eucalyptus);  color: var(--paper-warm); }
body[data-page="sea"]   ::selection { background: var(--driftwood);   color: var(--paper-warm); }

/* =====================================================
   LTR overrides — for the English version
   ===================================================== */
[dir="ltr"] {
  --font-display: 'Cormorant Garamond', 'Bellefair', 'Lora', Georgia, serif;
  --font-body:    'Lora', 'Cormorant Garamond', Georgia, serif;
  --font-hand:    'Caveat', 'Lora', cursive;
}
[dir="ltr"] .nav-links a::after { right: auto; left: 0; }
[dir="ltr"] .eyebrow { transform: rotate(0.6deg); transform-origin: left center; }
[dir="ltr"] .eyebrow::after { background: linear-gradient(to right, var(--ink-mute), transparent); transform: rotate(-0.6deg); }
[dir="ltr"] .section-label { transform: rotate(0.5deg); transform-origin: left center; }
[dir="ltr"] .marginalia { transform: rotate(1.5deg); transform-origin: left center; }
[dir="ltr"] .bio-attribution { transform: rotate(1deg); transform-origin: left center; }
[dir="ltr"] .hero-quote-soft { transform: rotate(0.8deg); transform-origin: left center; }
[dir="ltr"] .hero-quote::before { background: var(--pomegranate); }
@media (hover: hover) and (pointer: fine) {
  [dir="ltr"] .nav-tel { flex-direction: row; }
}
[dir="ltr"] .cp-tel { flex-direction: row; }
[dir="ltr"] .contact-modal-close { left: auto; right: 12px; }
[dir="ltr"] .hero::before { inset-inline-end: auto; left: -8%; }
[dir="ltr"] .page-hero::before { inset-inline-end: auto; left: -5%; }

/* Language toggle */
.lang-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 38px;
  padding: 0 0.7rem;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--pomegranate);
  text-decoration: none;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  transition: background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease);
  white-space: nowrap;
}
.lang-toggle:hover {
  background: var(--pomegranate);
  color: var(--paper-warm);
  border-color: var(--pomegranate);
}

/* =====================================================
   WOW PASS — cinematic moves that change the visceral
   experience of the site. Applied via wow.js.
   ===================================================== */

/* ---- 1. MASSIVE HERO ---- */
.hero {
  min-height: clamp(60vh, 85vh, 100dvh);
  display: flex;
  align-items: center;
  padding: clamp(3rem, 8vw, 6rem) 0 clamp(2.5rem, 6vw, 4.5rem);
  position: relative;
  overflow: visible;
}
.hero .wrap {
  width: 100%;
}
.hero h1 {
  font-size: clamp(4rem, 16vw, 13rem);
  line-height: 0.85;
  letter-spacing: -0.045em;
  margin-bottom: 1.2rem;
}

/* Letter-stagger reveal on hero H1 */
.hero h1 .ltr {
  display: inline-block;
  opacity: 0;
  transform: translateY(0.5em) rotate(-3deg);
  animation: letter-rise 0.95s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
@keyframes letter-rise {
  to { opacity: 1; transform: translateY(0) rotate(0); }
}

/* Hand-drawn underline beneath the brand — animated draw on load */
.hero-underline {
  display: block;
  width: clamp(180px, 32vw, 420px);
  height: 16px;
  margin-bottom: 1.8rem;
  color: var(--pomegranate);
  opacity: 0.95;
}
@keyframes hero-draw {
  to { stroke-dashoffset: 0; }
}

/* ---- 2. CURSOR WATERCOLOR HALO ---- */
.cursor-halo {
  position: fixed;
  top: 0;
  left: 0;
  width: 520px;
  height: 520px;
  margin-top: -260px;
  margin-left: -260px;
  pointer-events: none;
  z-index: 0;
  opacity: 0;
  transition: opacity 0.6s ease;
  background:
    radial-gradient(circle at center,
      var(--halo-color, rgba(162, 58, 44, 0.32)) 0%,
      var(--halo-color, rgba(162, 58, 44, 0.12)) 25%,
      transparent 65%);
  filter: blur(28px);
  mix-blend-mode: multiply;
  will-change: transform;
  transition: opacity 0.6s ease;
}
.cursor-halo.is-active { opacity: 0.9; }

/* Per-page halo color — picks up the page accent */
body[data-page="psy"]   .cursor-halo { --halo-color: rgba(125, 114, 64, 0.30); }
body[data-page="watsu"] .cursor-halo { --halo-color: rgba(162, 58, 44, 0.34); }
body[data-page="hydro"] .cursor-halo { --halo-color: rgba(94, 112, 88, 0.30); }
body[data-page="sea"]   .cursor-halo { --halo-color: rgba(109, 122, 114, 0.32); }

/* ---- 3. PAGE-WIDE COLOR WASH ON CARD HOVER ---- */
body[data-wash] {
  transition: background-color 0.45s var(--ease-out);
}
body[data-wash="psy"]   { background-color: color-mix(in oklab, var(--olive)        15%, var(--paper)); }
body[data-wash="watsu"] { background-color: color-mix(in oklab, var(--pomegranate)  16%, var(--paper)); }
body[data-wash="hydro"] { background-color: color-mix(in oklab, var(--eucalyptus)   16%, var(--paper)); }
body[data-wash="sea"]   { background-color: color-mix(in oklab, var(--driftwood)    18%, var(--paper)); }

/* And a giant ambient wash that fades in as a fixed overlay — depth + vibe */
body[data-wash]::before {
  background-image: none; /* hide grain when wash active for cleaner color */
}
.page-wash {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0;
  transition: opacity 0.6s var(--ease-out), background 0.6s var(--ease-out);
}
body[data-wash="psy"]   .page-wash { opacity: 1; background: radial-gradient(ellipse 1400px 900px at 80% 30%, color-mix(in oklab, var(--olive) 22%, transparent) 0%, transparent 70%); }
body[data-wash="watsu"] .page-wash { opacity: 1; background: radial-gradient(ellipse 1400px 900px at 80% 30%, color-mix(in oklab, var(--pomegranate) 22%, transparent) 0%, transparent 70%); }
body[data-wash="hydro"] .page-wash { opacity: 1; background: radial-gradient(ellipse 1400px 900px at 80% 30%, color-mix(in oklab, var(--eucalyptus) 22%, transparent) 0%, transparent 70%); }
body[data-wash="sea"]   .page-wash { opacity: 1; background: radial-gradient(ellipse 1400px 900px at 80% 30%, color-mix(in oklab, var(--driftwood) 22%, transparent) 0%, transparent 70%); }

/* ---- 4. SCROLL PROGRESS RIBBON ---- */
.scroll-ribbon {
  position: fixed;
  inset-inline-start: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--pomegranate);
  transform: scaleY(0);
  transform-origin: top;
  z-index: 60;
  pointer-events: none;
  opacity: 0.85;
}
body[data-page="psy"]   .scroll-ribbon { background: var(--olive); }
body[data-page="watsu"] .scroll-ribbon { background: var(--pomegranate); }
body[data-page="hydro"] .scroll-ribbon { background: var(--eucalyptus); }
body[data-page="sea"]   .scroll-ribbon { background: var(--driftwood); }

/* ---- 5. NON-HERO CONTENT — slight elevation when WASH is active ---- */
body[data-wash] section { transition: opacity 0.4s var(--ease); }

/* ---- Reduced motion: drop the wow ---- */
@media (prefers-reduced-motion: reduce) {
  .cursor-halo, .scroll-ribbon, .page-wash { display: none; }
  .hero h1 .ltr { opacity: 1; transform: none; animation: none; }
  .hero-underline path { stroke-dashoffset: 0 !important; }
}

/* =====================================================
   ATMOSPHERE — full-bleed editorial photo plate
   Used for landscape photographic stills (e.g. the watsu
   pool). Sits between the hero and the prose-section.
   Sets a sense of place before the explanation begins.
   ===================================================== */
.atmosphere {
  padding: clamp(1.6rem, 3.2vw, 2.8rem) 0 clamp(2rem, 4vw, 3.4rem);
  position: relative;
}

.atmosphere-figure {
  margin: 0;
  position: relative;
  isolation: isolate;
}

.atmosphere-frame {
  position: relative;
  border-radius: clamp(0.7rem, 1.2vw, 1.1rem);
  overflow: hidden;
  border: 1px solid color-mix(in oklab, var(--ink-mute) 24%, transparent);
  background: var(--paper-soft);
  box-shadow:
    0 1px 0 color-mix(in oklab, var(--paper-warm) 70%, transparent) inset,
    0 28px 56px -28px color-mix(in oklab, var(--ink) 32%, transparent),
    0 6px 14px rgba(58, 36, 24, 0.09);
  isolation: isolate;
}

.atmosphere-frame::after {
  /* Warm vignette that fades the image into aged paper at the bottom */
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 0%,
    transparent 62%,
    color-mix(in oklab, var(--paper) 28%, transparent) 100%
  );
  pointer-events: none;
  z-index: 1;
}

.atmosphere-img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  filter: saturate(1.02) contrast(1.01);
}

.atmosphere-caption {
  font-family: var(--font-hand);
  color: var(--accent-deep);
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  margin-top: 0.9rem;
  letter-spacing: 0.01em;
  text-align: start;
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  transform: rotate(-0.4deg);
  transform-origin: right center;
}

[dir="ltr"] .atmosphere-caption {
  transform: rotate(0.4deg);
  transform-origin: left center;
}

.atmosphere-marker {
  color: var(--accent);
  font-size: 1.6em;
  line-height: 0;
  position: relative;
  top: 0.04em;
}

.a11y-contrast .atmosphere-frame {
  border-color: currentColor;
  box-shadow: none;
}
.a11y-contrast .atmosphere-img { filter: none; }
.a11y-contrast .atmosphere-frame::after { display: none; }

@media (max-width: 720px) {
  .atmosphere-img { aspect-ratio: 4 / 3; }
}

/* =====================================================
   HOME — BIO PORTRAIT (editorial split inside .bio)
   Bio section becomes a 2-col grid: copy block on the
   leading-end (right in RTL), portrait on trailing-end
   (visual left in RTL). Mirrors the about-hero treatment.
   ===================================================== */
.bio-portrait .bio-portrait-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.85fr);
  align-items: center;
  gap: clamp(1.6rem, 4vw, 4rem);
  position: relative;
  z-index: 2;
}

.bio-portrait .bio-side { min-width: 0; }
.bio-portrait .bio-side .credentials { margin-top: 1rem; }

@media (max-width: 880px) {
  .bio-portrait .bio-portrait-grid {
    grid-template-columns: 1fr;
    gap: 1.4rem;
  }
  .bio-portrait .portrait { order: 2; justify-self: center; }
}

/* =====================================================
   ABOUT — HERO PORTRAIT (editorial split)
   Transparent PNG portrait sits on the trailing-end side
   of the hero (visual left in RTL). Uses drop-shadow
   filter (alpha-aware) so the cutout keeps a soft
   pomegranate-tinted halo without a rectangular box.
   ===================================================== */
.page-hero-portrait .page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 0.7fr);
  align-items: start;
  gap: clamp(1.6rem, 4vw, 4rem);
  position: relative;
  z-index: 1;
}

.page-hero-portrait .page-hero-text {
  min-width: 0;
}

.page-hero-portrait .page-hero-text .hero-sub { margin-bottom: 0; }

/* Tone the existing pomegranate hero glow down on this page so it
   does not fight the portrait halo on the opposite side. */
.page-hero-portrait::before {
  width: 38%;
  opacity: 0.7;
}

.portrait {
  position: relative;
  margin: 0;
  display: grid;
  place-items: start center;
  isolation: isolate;
  padding: 0 0 clamp(1.8rem, 2.6vw, 2.2rem);
  margin-top: clamp(-2.5rem, -3vw, -1.5rem);
  justify-self: center;
}

.portrait-vignette {
  position: absolute;
  inset: -8% -10%;
  background:
    radial-gradient(ellipse 70% 60% at 52% 56%,
      color-mix(in oklab, var(--accent-mist) 95%, transparent) 0%,
      color-mix(in oklab, var(--paper-warm) 70%, transparent) 38%,
      transparent 72%);
  filter: blur(12px);
  z-index: -2;
  pointer-events: none;
}

.portrait-frame {
  position: absolute;
  inset: 4% 8% 10%;
  border: 1px solid color-mix(in oklab, var(--ink-mute) 28%, transparent);
  border-radius: 50% / 42%;
  transform: rotate(-1.4deg);
  z-index: -1;
  pointer-events: none;
  box-shadow:
    inset 0 0 60px color-mix(in oklab, var(--paper-warm) 60%, transparent);
}

.portrait-img {
  display: block;
  width: 100%;
  max-width: 320px;
  height: auto;
  filter:
    drop-shadow(0 18px 22px color-mix(in oklab, var(--accent) 14%, transparent))
    drop-shadow(0 4px 8px rgba(58, 36, 24, 0.10));
  animation: portrait-breathe 8s ease-in-out infinite alternate;
  will-change: transform;
  transform: translateZ(0);
}

.portrait-caption {
  position: absolute;
  bottom: 0.2rem;
  inset-inline-start: 14%;
  font-family: var(--font-hand);
  color: var(--accent-deep);
  font-size: 1.3rem;
  letter-spacing: 0.02em;
  font-weight: 400;
  transform: rotate(-1.6deg);
  transform-origin: right center;
}
[dir="ltr"] .portrait-caption {
  transform: rotate(1.6deg);
  transform-origin: left center;
}

@keyframes portrait-breathe {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(0, -3px, 0); }
}

/* High-contrast accessibility mode keeps the portrait readable */
.a11y-contrast .portrait-img { filter: none; }
.a11y-contrast .portrait-vignette { display: none; }
.a11y-contrast .portrait-frame { border-color: currentColor; }

@media (max-width: 640px) {
  .page-hero-portrait .page-hero-grid {
    grid-template-columns: 1fr;
    gap: 1.4rem;
  }
  /* On mobile the headline reads first; portrait sits below. */
  .page-hero-portrait .portrait { order: 2; justify-self: center; }
  .portrait-img { max-width: 240px; }
  .portrait-frame { inset: 6% 12% 12%; }
  .portrait-caption { inset-inline-start: 18%; font-size: 1.15rem; }
}

@media (prefers-reduced-motion: reduce) {
  .portrait-img { animation: none; }
}

/* ---- Wide hero figure (used in watsu page-hero) ---- */
.hero-figure-wide {
  margin: 0;
  justify-self: center;
  width: 100%;
}
.hero-figure-wide img {
  display: block;
  width: 100%;
  max-width: 280px;
  height: auto;
  border-radius: 14px;
  box-shadow:
    0 18px 50px color-mix(in oklab, var(--accent) 14%, transparent),
    0 4px 12px rgba(58, 36, 24, 0.10);
}
@media (max-width: 880px) {
  .page-hero-portrait .hero-figure-wide { order: 2; justify-self: center; }
  .hero-figure-wide img { max-width: 360px; }
}

/* ---- When .hero also has .page-hero-portrait, behave like .page-hero ---- */
/* (otherwise the 85vh min-height + flex centering pushes content to mid-screen) */
.hero.page-hero-portrait {
  min-height: auto;
  display: block;
  padding: clamp(2.5rem, 6vw, 4.5rem) 0 clamp(2.2rem, 4vw, 3.5rem);
}


/* ---- Psychotherapy: floating portrait at exact page coords (248, 96) ---- */
/* Box: 251x401 (kept native aspect 372x594). Figure is sibling of .page-hero. */
.psy-floating-portrait {
  position: absolute;
  top: 96px;
  left: 248px;
  width: 251px;
  height: 401px;
  margin: 0;
  padding: 0;
  z-index: 5;
  display: block;
  isolation: auto;
  justify-self: auto;
  place-items: stretch;
}
.psy-floating-portrait .portrait-img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: contain;
  animation: none;
}
.psy-floating-portrait .portrait-caption {
  display: none;
}

@media (max-width: 640px) {
  .psy-floating-portrait {
    position: static;
    width: auto;
    max-width: 280px;
    height: auto;
    margin: 1.2rem auto 2rem;
    display: block;
  }
  .psy-floating-portrait .portrait-img {
    width: 100%;
    height: auto;
  }
}

/* =====================================================
   COMMITTED 2026-05-09: positions from dev-editor export
   ===================================================== */

/* Generic positionable figure for uploaded images (sibling of section.page-hero) */
.uploaded-pos-figure {
  margin: 0;
  padding: 0;
  z-index: 5;
  display: block;
}
.uploaded-pos-figure img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
@media (max-width: 640px) {
  .uploaded-pos-figure {
    position: static !important;
    top: auto !important;
    left: auto !important;
    width: auto !important;
    max-width: 320px !important;
    height: auto !important;
    margin: 1.2rem auto 2rem !important;
  }
  .uploaded-pos-figure img { height: auto; }
}

/* /psychotherapy — refined floating-portrait position */
body[data-page="psy"] .psy-floating-portrait {
  top: 73px !important;
  left: 239px !important;
}

/* / (index) — portrait absolute-positioned (was grid) */
body[data-page="index"] section.hero.page-hero-portrait .portrait {
  position: absolute !important;
  top: 3px !important;
  left: 185px !important;
  width: 282px !important;
  height: 462px !important;
  margin: 0 !important;
  padding: 0 !important;
}
@media (max-width: 640px) {
  body[data-page="index"] section.hero.page-hero-portrait .portrait {
    position: static !important;
    top: auto !important;
    left: auto !important;
    width: auto !important;
    max-width: 240px !important;
    height: auto !important;
    margin: 1.2rem auto 2rem !important;
  }
}

/* /about — original portrait deleted, uploaded figure positioned */
body[data-page="about"] section.page-hero.page-hero-portrait > .wrap > figure.portrait {
  display: none !important;
}
body[data-page="about"] .uploaded-avigal-1 {
  position: absolute;
  top: 213px;
  left: 154px;
  width: 316px;
  height: 319px;
}

/* /watsu — uploaded watsu pool image positioned */
body[data-page="watsu"] .uploaded-watsu-2 {
  position: absolute;
  top: 75px;
  left: 111px;
  width: 444px;
  height: 382px;
}

/* /hydrotherapy — uploaded hydro pool image positioned */
body[data-page="hydro"] .uploaded-hydro {
  position: absolute;
  top: 62px;
  left: 89px;
  width: 424px;
  height: 416px;
}

/* /open-water — uploaded beach image positioned */
body[data-page="sea"] .uploaded-beach {
  position: absolute;
  top: 61px;
  left: 103px;
  width: 463px;
  height: 371px;
}


/* Two-line contact-picker buttons (action label above target) — added 2026-05-10 */
.contact-picker .btn { text-align: center; padding-block: 0.7rem; line-height: 1.2; }
.contact-picker .btn .btn-action {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  line-height: 1.2;
}
.contact-picker .btn .btn-target {
  display: block;
  font-size: 0.9rem;
  line-height: 1.2;
  opacity: 0.92;
}
.contact-picker .btn .btn-target svg {
  vertical-align: -3px;
}


/* =====================================================
   COMMITTED 2026-05-10 — positions from dev-editor export #2
   ===================================================== */

/* Hide existing index portrait (replaced by new uploaded figure) */
body[data-page="index"] section.hero.page-hero-portrait > .wrap > figure.portrait,
body[data-page="index"] section.hero.page-hero-portrait > .wrap.page-hero-grid > figure.portrait {
  display: none !important;
}
/* Hide existing /about uploaded-avigal-1 figure (replaced) */
body[data-page="about"] figure.uploaded-pos-figure.uploaded-avigal-1 {
  display: none !important;
}

body[data-page="index"] .uploaded-avigal-scarf-1 {
  position: absolute;
  top: 226px; left: 500px;
  width: 328px; height: 364px;
}
body[data-page="about"] .uploaded-avigal4 {
  position: absolute;
  top: 221px; left: 327px;
  width: 280px; height: 200px;
}
body[data-page="index"] .uploaded-avigal-scarf-en-index {
  position: absolute;
  top: 228px; left: 500px;
  width: 313px; height: 316px;
}
body[data-page="psy"] .uploaded-avigal-scarf-en-psy {
  position: absolute;
  top: 168px; left: 538px;
  width: 400px; height: 304px;
}
body[data-page="watsu"] .uploaded-watsu-2-en {
  position: absolute;
  top: 122px; left: 647px;
  width: 379px; height: 365px;
}
body[data-page="hydro"] .uploaded-hydro-en {
  position: absolute;
  top: 209px; left: 748px;
  width: 328px; height: 331px;
}


/* =====================================================
   2026-05-11 — Skip-link (a11y / WCAG 2.4.1 Bypass Blocks)
   ===================================================== */
.skip-link {
  position: absolute;
  top: -200px;
  inset-inline-start: 0;
  background: #1565c0;
  color: #fff;
  padding: 12px 20px;
  z-index: 999;
  text-decoration: none;
  font-weight: 600;
  border-radius: 0 0 6px 6px;
}
.skip-link:focus,
.skip-link:focus-visible {
  top: 0;
  outline: 3px solid #fff;
  outline-offset: -3px;
}
