/* ============================================================
   Christina Martini Yoga — Shala Santosha, Haiku-Pauwela, Maui
   Editorial-therapeutic system. One word: SAFE.
   Type:  Newsreader (display serif) x IBM Plex Sans (body)
          + IBM Plex Mono (clinical chart labels)
   Motif: "the breath line" — a clinical baseline that rises
          into one calm arc (an exhale / the Maui horizon).
   ============================================================ */

:root {
  /* --- color tokens (max 5 roles, all text >= 4.5:1 on bg) --- */
  --bg:       #F4F1EA;   /* warm bone — clean clinic paper + Maui sand */
  --surface:  #EAE4D7;   /* deeper sand — section banding / cards     */
  --ink:      #23291F;   /* eucalyptus near-black — body text (~13:1) */
  --primary:  #2F4A3E;   /* deep eucalyptus — buttons, motif (~7.5:1) */
  --accent:   #A4492A;   /* terracotta clay — breath/warmth (~5.7:1)  */

  /* derived tints (decorative only, never load-bearing for text) */
  --primary-soft: #2f4a3e1a;
  --accent-soft:  #a4492a14;
  --ink-soft:     #5c6052;  /* solid muted green-grey — AA on bg (5.8:1) & surface (5.2:1) */
  --hairline:     #23291f24;
  --bg-tint:      #efeadd;

  /* --- type --- */
  --serif: "Newsreader", Georgia, "Times New Roman", serif;
  --sans:  "IBM Plex Sans", system-ui, sans-serif;
  --mono:  "IBM Plex Mono", ui-monospace, "SFMono-Regular", monospace;

  /* fluid scale */
  --step--1: clamp(0.83rem, 0.80rem + 0.15vw, 0.92rem);
  --step-0:  clamp(1rem, 0.96rem + 0.2vw, 1.125rem);
  --step-1:  clamp(1.2rem, 1.1rem + 0.5vw, 1.45rem);
  --step-2:  clamp(1.5rem, 1.3rem + 1vw, 2.1rem);
  --step-3:  clamp(2rem, 1.6rem + 2vw, 3rem);
  --step-4:  clamp(2.6rem, 1.9rem + 3.4vw, 4.6rem);
  --step-5:  clamp(3.2rem, 2.1rem + 5vw, 6rem);

  /* spacing / structure */
  --container: 1180px;
  --gutter: clamp(1.25rem, 0.8rem + 2vw, 2.5rem);
  --section-y: clamp(4.5rem, 3rem + 7vw, 8rem);
  --radius: 3px;
  --radius-lg: 6px;
  --shadow-soft: 0 1px 2px #23291f0d, 0 14px 40px -22px #23291f3d;
  --shadow-lift: 0 2px 6px #23291f12, 0 26px 60px -30px #23291f4a;
  --ring: 0 0 0 2px var(--bg), 0 0 0 4.5px var(--accent);

  /* z-scale */
  --z-nav: 50;
  --z-overlay: 40;
}

/* ---------------------------------------------------------- reset */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--sans);
  font-size: var(--step-0);
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* faint grain so backgrounds have atmosphere, not flat fill */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.5;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; }

/* ---------------------------------------------------------- type */
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.06;
  letter-spacing: -0.012em;
  color: var(--primary);
  font-optical-sizing: auto;
  text-wrap: balance;
}
h1 { font-size: var(--step-5); }
h2 { font-size: var(--step-4); }
h3 { font-size: var(--step-2); line-height: 1.15; }
h4 { font-size: var(--step-1); line-height: 1.2; }
p  { max-width: 64ch; }
strong { font-weight: 600; }
em { font-style: italic; }

.serif-italic { font-family: var(--serif); font-style: italic; font-weight: 400; }

/* mono "clinical chart" label — the recurring textual motif */
.label {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.7em;
}
.label::before {
  content: "";
  width: 1.6rem;
  height: 1px;
  background: currentColor;
  opacity: 0.85;
}
.label.is-plain::before { display: none; }

.eyebrow {
  font-family: var(--mono);
  font-size: 0.74rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
}

.lead {
  font-size: var(--step-1);
  line-height: 1.5;
  color: var(--ink);
  font-weight: 400;
  max-width: 56ch;
}

/* ---------------------------------------------------------- layout */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.section { padding-block: var(--section-y); position: relative; }
[id] { scroll-margin-top: 90px; } /* clear the sticky header on anchor jumps */
.section--surface { background: var(--surface); }
.section--ink { background: var(--primary); color: var(--bg); }
.section--ink h2, .section--ink h3 { color: var(--bg); }
.section--ink .eyebrow, .section--ink .label { color: #e7b79c; }

.stack > * + * { margin-top: 1.1rem; }
.center { text-align: center; margin-inline: auto; }
.measure { max-width: 60ch; }

/* the breath line — drawn inline as <svg class="breath">; flat baseline + one arc */
.breath { display: block; width: 100%; height: auto; color: var(--primary); }
.breath path { fill: none; stroke: currentColor; stroke-width: 1.4; }
.breath--accent { color: var(--accent); }
.breath--bone { color: var(--bg); }
.breath-divider { margin-block: clamp(2.5rem, 5vw, 4rem); opacity: 0.85; }

/* ---------------------------------------------------------- buttons */
.btn {
  --_bg: var(--primary);
  --_fg: var(--bg);
  font-family: var(--mono);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.7em;
  padding: 0.95rem 1.7rem;
  min-height: 48px;
  background: var(--_bg);
  color: var(--_fg);
  border: 1px solid var(--_bg);
  border-radius: var(--radius);
  cursor: pointer;
  transition: background-color .22s ease, color .22s ease, border-color .22s ease, transform .22s ease;
}
.btn .arrow { transition: transform .22s ease; }
.btn:hover { --_bg: var(--accent); border-color: var(--accent); }
.btn:hover .arrow { transform: translateX(4px); }
.btn--ghost {
  --_bg: transparent;
  --_fg: var(--primary);
  border-color: var(--hairline);
}
.btn--ghost:hover { --_bg: transparent; --_fg: var(--accent); border-color: var(--accent); }
.btn--bone { --_bg: var(--bg); --_fg: var(--primary); border-color: var(--bg); }
.btn--bone:hover { --_bg: var(--accent); --_fg: var(--bg); border-color: var(--accent); }

/* quiet text link with breath underline */
.tlink {
  font-family: var(--mono);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 0.55em;
  padding-bottom: 2px;
  background-image: linear-gradient(var(--accent), var(--accent));
  background-size: 0% 1.5px;
  background-position: 0 100%;
  background-repeat: no-repeat;
  transition: background-size .3s ease, color .22s ease;
}
.tlink:hover { color: var(--accent); background-size: 100% 1.5px; }
.tlink .arrow { transition: transform .22s ease; }
.tlink:hover .arrow { transform: translateX(3px); }

/* ---------------------------------------------------------- focus */
:focus-visible {
  outline: none;
  box-shadow: var(--ring);
  border-radius: var(--radius);
}
.skip-link {
  position: absolute;
  left: 1rem; top: -4rem;
  z-index: 100;
  background: var(--primary);
  color: var(--bg);
  font-family: var(--mono);
  font-size: 0.8rem;
  padding: 0.7rem 1.1rem;
  border-radius: var(--radius);
  transition: top .2s ease;
}
.skip-link:focus { top: 1rem; }

/* ---------------------------------------------------------- header / nav */
.site-header {
  position: sticky;
  top: 0;
  z-index: var(--z-nav);
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--hairline);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 72px;
}
.brand {
  display: inline-flex;
  flex-direction: column;
  line-height: 1;
  gap: 3px;
}
.brand__name {
  font-family: var(--serif);
  font-size: 1.32rem;
  color: var(--primary);
  letter-spacing: -0.01em;
}
.brand__tag {
  font-family: var(--mono);
  font-size: 0.6rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent);
}
.nav__menu {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.2vw, 2rem);
}
.nav__link {
  font-family: var(--mono);
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  padding: 0.4rem 0;
  position: relative;
  transition: color .2s ease;
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 100%; height: 1.5px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}
.nav__link:hover { color: var(--primary); }
.nav__link:hover::after,
.nav__link[aria-current="page"]::after,
.nav__link[aria-current="true"]::after { transform: scaleX(1); }
.nav__link[aria-current="page"],
.nav__link[aria-current="true"] { color: var(--primary); }
.nav__cta { margin-left: 0.5rem; }

.nav__toggle {
  display: none;
  width: 48px; height: 48px;
  background: none;
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}
.nav__toggle span {
  display: block;
  width: 22px; height: 1.6px;
  background: var(--primary);
  transition: transform .26s ease, opacity .2s ease;
}

/* ---------------------------------------------------------- hero */
.hero {
  position: relative;
  padding-block: clamp(3rem, 2rem + 6vw, 6.5rem) var(--section-y);
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.hero__claim {
  font-size: var(--step-5);
  line-height: 0.98;
  margin-top: 1.4rem;
}
.hero__claim .soft { color: var(--accent); font-style: italic; }
.hero__deck {
  font-size: var(--step-1);
  line-height: 1.5;
  color: var(--ink);
  max-width: 40ch;
  margin-top: 1.6rem;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2.2rem;
  align-items: center;
}
.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.4rem 2.2rem;
  margin-top: 2.8rem;
  padding-top: 1.6rem;
  border-top: 1px solid var(--hairline);
}
.hero__meta div { display: flex; flex-direction: column; gap: 2px; }
.hero__meta dt {
  font-family: var(--serif);
  font-size: 1.6rem;
  color: var(--primary);
}
.hero__meta dd {
  font-family: var(--mono);
  font-size: 0.66rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.hero__media { position: relative; }
.hero__arc {
  position: absolute;
  left: -6%;
  bottom: -7%;
  width: 70%;
  z-index: 2;
  color: var(--accent);
  pointer-events: none;
}

/* ---------------------------------------------------------- photo frames */
.frame {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: grid;
  place-items: center;
  color: var(--ink-soft);
  isolation: isolate;
}
.frame::after { /* faint inner keyline for a "art-directed plate" feel */
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid var(--hairline);
  border-radius: 2px;
  pointer-events: none;
}
.frame img { width: 100%; height: 100%; object-fit: cover; }
.frame__note {
  text-align: center;
  padding: 1.5rem;
  display: grid;
  gap: 0.55rem;
  z-index: 1;
}
.frame__note .ic { color: var(--primary); opacity: 0.55; }
.frame__note .ttl {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--primary);
}
.frame__note .sub {
  font-size: 0.82rem;
  color: var(--ink-soft);
  max-width: 26ch;
  margin-inline: auto;
}
.frame--portrait { aspect-ratio: 4 / 5; }
.frame--wide { aspect-ratio: 16 / 10; }
.frame--square { aspect-ratio: 1 / 1; }
.frame--tall { aspect-ratio: 3 / 4; }

/* ---------------------------------------------------------- section heading block */
.head {
  display: grid;
  gap: 1rem;
  max-width: 54ch;
  margin-bottom: clamp(2.4rem, 5vw, 3.6rem);
}
.head--center { margin-inline: auto; text-align: center; justify-items: center; }
.head p { color: var(--ink); }

/* ---------------------------------------------------------- offerings grid */
.offerings {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
  gap: 1px;
  background: var(--hairline);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.offering {
  background: var(--bg);
  padding: clamp(1.7rem, 3vw, 2.4rem);
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  min-height: 280px;
  transition: background-color .25s ease;
}
.section--surface .offering { background: var(--surface); }
.offering:hover { background: var(--bg-tint); }
.offering__no {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  color: var(--accent);
}
.offering h3 { font-size: var(--step-1); color: var(--primary); }
.offering p { font-size: var(--step--1); color: var(--ink); flex-grow: 1; }
.offering .tlink { margin-top: 0.3rem; }

/* ---------------------------------------------------------- two-column feature */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.split--reverse .split__media { order: -1; }
.split__body { display: grid; gap: 1.2rem; align-content: center; }

/* credential list — chart rows */
.creds { display: grid; gap: 0; border-top: 1px solid var(--hairline); }
.cred {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.4rem;
  align-items: baseline;
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--hairline);
}
.cred__k {
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  white-space: nowrap;
  padding-top: 0.35rem;
}
.cred__v { color: var(--ink); }
.cred__v strong { color: var(--primary); font-weight: 600; }

/* ---------------------------------------------------------- pull quote */
.pullquote {
  max-width: 24ch;
  margin: 0 auto;
  text-align: center;
}
.pullquote blockquote {
  font-family: var(--serif);
  font-style: italic;
  font-size: var(--step-3);
  line-height: 1.25;
  color: var(--primary);
}
.section--ink .pullquote blockquote { color: var(--bg); }
.pullquote cite {
  display: block;
  margin-top: 1.6rem;
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-style: normal;
  color: var(--accent);
}

/* ---------------------------------------------------------- schedule / list rows */
.rows { border-top: 1px solid var(--hairline); }
.row {
  display: grid;
  grid-template-columns: 0.5fr 1.4fr 1fr auto;
  gap: 1.5rem;
  align-items: center;
  padding: 1.3rem 0;
  border-bottom: 1px solid var(--hairline);
  transition: padding-left .25s ease, background-color .25s ease;
}
.row:hover { padding-left: 0.8rem; }
.row__time { font-family: var(--mono); font-size: 0.84rem; color: var(--accent); letter-spacing: 0.04em; }
.row__name { font-family: var(--serif); font-size: var(--step-1); color: var(--primary); }
.row__desc { font-size: var(--step--1); color: var(--ink-soft); }
.row__tag {
  font-family: var(--mono);
  font-size: 0.64rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--primary);
  border: 1px solid var(--hairline);
  border-radius: 100px;
  padding: 0.35rem 0.8rem;
  white-space: nowrap;
}

/* ---------------------------------------------------------- pricing-ish info cards */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.4rem;
}
.card {
  background: var(--bg);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-lg);
  padding: clamp(1.6rem, 3vw, 2.3rem);
  display: grid;
  gap: 1rem;
  align-content: start;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.section--surface .card { background: var(--bg); }
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-soft); border-color: var(--primary-soft); }
.card__top { display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; }
.card h3 { font-size: var(--step-1); }
.card ul { display: grid; gap: 0.7rem; }
.card li {
  font-size: var(--step--1);
  color: var(--ink);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.7rem;
  align-items: start;
}
.card li::before {
  content: "";
  width: 7px; height: 7px;
  margin-top: 0.55em;
  border-radius: 50%;
  border: 1.4px solid var(--accent);
}
.price {
  font-family: var(--serif);
  font-size: 1.4rem;
  color: var(--primary);
}
.price .by { font-family: var(--mono); font-size: 0.66rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-soft); display: block; }

/* placeholder ribbon for figures that need Christina's real numbers */
.tbc {
  font-family: var(--mono);
  font-size: 0.6rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px dashed var(--accent);
  border-radius: 100px;
  padding: 0.2rem 0.6rem;
  display: inline-block;
}

/* ---------------------------------------------------------- callout band (oncology / safe) */
.callout {
  display: grid;
  gap: 1.4rem;
  max-width: 60ch;
}

/* ---------------------------------------------------------- CTA band */
.cta {
  text-align: center;
  display: grid;
  gap: 1.6rem;
  justify-items: center;
  max-width: 46ch;
  margin-inline: auto;
}
.cta h2 { font-size: var(--step-4); }

/* ---------------------------------------------------------- contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
.field { display: grid; gap: 0.5rem; margin-bottom: 1.2rem; }
.field label {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
}
.field input,
.field textarea,
.field select {
  font-family: var(--sans);
  font-size: var(--step-0);
  color: var(--ink);
  background: var(--bg);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  padding: 0.85rem 1rem;
  width: 100%;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.section--surface .field input,
.section--surface .field textarea,
.section--surface .field select { background: var(--bg); }
.field input:focus,
.field textarea:focus,
.field select:focus { border-color: var(--primary); }
.field textarea { resize: vertical; min-height: 130px; }

.info-list { display: grid; gap: 0; border-top: 1px solid var(--hairline); }
.info {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.2rem;
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--hairline);
  align-items: baseline;
}
.info__k { font-family: var(--mono); font-size: 0.68rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent); }
.info__v a:hover { color: var(--accent); }

/* ---------------------------------------------------------- footer */
.site-footer {
  background: var(--primary);
  color: var(--bg);
  padding-block: clamp(3.5rem, 6vw, 5.5rem) 2rem;
}
.site-footer a { color: var(--bg); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  padding-bottom: 3rem;
  border-bottom: 1px solid #ffffff24;
}
.footer__brand .brand__name { color: var(--bg); }
.footer__brand p { color: #ffffffcc; font-size: var(--step--1); margin-top: 1rem; max-width: 34ch; }
.footer__col h4 { color: #e7b79c; font-family: var(--mono); font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 500; margin-bottom: 1.1rem; }
.footer__col ul { display: grid; gap: 0.7rem; }
.footer__col a { font-size: 0.92rem; color: #ffffffd9; transition: color .2s ease; }
.footer__col a:hover { color: var(--bg); }
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 2rem;
  font-family: var(--mono);
  font-size: 0.66rem;
  letter-spacing: 0.1em;
  color: #ffffff99;
  text-transform: uppercase;
}

/* ---------------------------------------------------------- reveal motion */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s cubic-bezier(.22,.61,.36,1), transform .7s cubic-bezier(.22,.61,.36,1);
  transition-delay: var(--d, 0ms);
  will-change: opacity, transform;
}
.reveal.is-visible { opacity: 1; transform: none; }

/* entrance variants — give a few sections their own movement */
.reveal--left  { transform: translateX(-28px); }
.reveal--right { transform: translateX(28px); }
.reveal--scale { transform: scale(.955); }
.reveal--left.is-visible,
.reveal--right.is-visible,
.reveal--scale.is-visible { transform: none; }

/* the breath line draws itself in (paths carry pathLength="1") */
.breath--draw path {
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  transition: stroke-dashoffset 1.5s cubic-bezier(.22,.61,.36,1) .15s;
}
.breath--draw.is-visible path { stroke-dashoffset: 0; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn, .nav__link::after, .tlink, .row, .card, .offering { transition: none !important; }
  .breath--draw path { stroke-dashoffset: 0; transition: none; }
}

/* ---------------------------------------------------------- brand mark + gallery */
.brand--logo { flex-direction: row; align-items: center; gap: 0.65rem; }
.brand__mark { width: 42px; height: 42px; border-radius: 50%; flex-shrink: 0; display: block; }
.brand__text { display: inline-flex; flex-direction: column; gap: 3px; line-height: 1; }

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
}
.gallery .frame { aspect-ratio: 4 / 5; }

/* ---------------------------------------------------------- responsive */
@media (max-width: 920px) {
  .hero__grid { grid-template-columns: 1fr; gap: 2.6rem; }
  .hero__media { max-width: 460px; }
  .split { grid-template-columns: 1fr; }
  .split--reverse .split__media { order: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  /* horizontal entrances would push wide stacked blocks past the viewport — fall back to vertical */
  .reveal.reveal--left, .reveal.reveal--right { transform: translateY(22px); }
  .reveal.reveal--left.is-visible, .reveal.reveal--right.is-visible { transform: none; }
}

@media (max-width: 760px) {
  .nav__menu {
    position: fixed;
    inset: 72px 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--hairline);
    padding: 0.5rem var(--gutter) 1.5rem;
    transform: translateY(-130%);
    transition: transform .34s cubic-bezier(.4,0,.2,1);
    z-index: var(--z-overlay);
    box-shadow: var(--shadow-soft);
  }
  .nav__menu.is-open { transform: translateY(0); }
  .nav__link { padding: 1rem 0; border-bottom: 1px solid var(--hairline); font-size: 0.82rem; }
  .nav__link::after { display: none; }
  .nav__cta { margin: 1.2rem 0 0; }
  .nav__cta .btn { width: 100%; justify-content: center; }
  .nav__toggle { display: inline-flex; }
  .nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.6px) rotate(45deg); }
  .nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.6px) rotate(-45deg); }

  .row { grid-template-columns: 1fr auto; gap: 0.4rem 1rem; }
  .row__desc { grid-column: 1 / -1; }
  .row:hover { padding-left: 0; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero__meta dt { font-size: 1.4rem; }
}

@media (max-width: 420px) {
  .hero__actions { flex-direction: column; align-items: stretch; }
  .hero__actions .btn { justify-content: center; }
  .hero__arc { display: none; }
}
