/* ==========================================================================
   Yogi Sukhdev — design system
   Premium clinical-calm. Mobile-first (90% of traffic is phones).
   ========================================================================== */

:root {
  /* Ink */
  --ink:        #14181A;
  --ink-2:      #2B3335;
  --ink-3:      #55605F;
  --ink-4:      #808B89;

  /* Ground */
  --sand:       #F7F3ED;
  --sand-2:     #EFE8DE;
  --sand-3:     #E2D8C9;
  --white:      #FFFFFF;

  /* Accent */
  --sage:       #4E6553;
  --sage-2:     #3A4C3F;
  --sage-soft:  #E6EBE5;
  --clay:       #A9603F;
  --whatsapp:   #25D366;

  /* Type */
  --serif: "Fraunces", "Iowan Old Style", Georgia, "Times New Roman", serif;
  --sans:  "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  /* Rhythm */
  --gut: 1.25rem;
  --max: 1180px;
  --narrow: 720px;

  /* Motion */
  --ease: cubic-bezier(.2,.6,.2,1);
}

*, *::before, *::after { box-sizing: border-box; }

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

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-2);
  background: var(--sand);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg, video { max-width: 100%; height: auto; display: block; }

a { color: var(--sage-2); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--clay); }

h1, h2, h3, h4 {
  font-family: var(--serif);
  color: var(--ink);
  font-weight: 500;
  line-height: 1.14;
  letter-spacing: -0.015em;
  margin: 0 0 .6em;
  text-wrap: balance;
}

h1 { font-size: clamp(2.15rem, 7.2vw, 4rem); }
h2 { font-size: clamp(1.7rem, 5vw, 2.75rem); }
h3 { font-size: clamp(1.18rem, 3vw, 1.45rem); }
h4 { font-size: 1.05rem; font-family: var(--sans); font-weight: 600; letter-spacing: 0; }

p { margin: 0 0 1.1em; text-wrap: pretty; }
p:last-child { margin-bottom: 0; }

/* --------------------------------------------------------- layout helpers */
.wrap { width: 100%; max-width: var(--max); margin-inline: auto; padding-inline: var(--gut); }
.narrow { max-width: var(--narrow); margin-inline: auto; }
.section { padding-block: clamp(3.5rem, 9vw, 6.5rem); }
.section--tight { padding-block: clamp(2.5rem, 6vw, 4rem); }
.section--sand2 { background: var(--sand-2); }
.section--ink { background: var(--ink); color: var(--sand-2); }
.section--ink h2, .section--ink h3 { color: var(--white); }
.section--sage { background: var(--sage-soft); }

.eyebrow {
  font-size: .74rem;
  letter-spacing: .17em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--sage);
  margin: 0 0 1rem;
  display: block;
}
.section--ink .eyebrow { color: #A9C0AF; }

.lede { font-size: clamp(1.05rem, 2.6vw, 1.28rem); color: var(--ink-3); line-height: 1.6; }
.section--ink .lede { color: #C3CCC8; }

.center { text-align: center; }
.center .lede, .center p { margin-inline: auto; }

.rule { height: 1px; background: var(--sand-3); border: 0; margin: 0; }

/* --------------------------------------------------------------- buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55em;
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1;
  padding: 1.05em 1.7em;
  border-radius: 100px;
  border: 1.5px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition: transform .18s var(--ease), background .18s var(--ease), color .18s var(--ease), border-color .18s var(--ease);
  min-height: 52px;
}
.btn:active { transform: scale(.98); }

.btn--primary { background: var(--sage-2); color: #fff; }
.btn--primary:hover { background: var(--ink); color: #fff; }

.btn--ghost { background: transparent; color: var(--ink); border-color: var(--ink-4); }
.btn--ghost:hover { border-color: var(--ink); color: var(--ink); background: rgba(0,0,0,.03); }

.btn--light { background: var(--sand); color: var(--ink); }
.btn--light:hover { background: #fff; color: var(--ink); }

.btn--wa { background: var(--whatsapp); color: #05391A; }
.btn--wa:hover { background: #1FBE5A; color: #05391A; }

.btn-row { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 2rem; }
.center .btn-row { justify-content: center; }

/* ----------------------------------------------------------------- header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(247,243,237,.88);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid rgba(0,0,0,.07);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 66px;
}
.logo {
  font-family: var(--serif);
  font-size: 1.24rem;
  font-weight: 600;
  letter-spacing: -.02em;
  color: var(--ink);
  text-decoration: none;
  line-height: 1;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: .55rem;
}
.logo__mark { width: 34px; height: 34px; flex: none; color: var(--sage); }
.logo__mark svg { width: 100%; height: 100%; display: block; }
.logo:hover .logo__mark { color: var(--clay); }
@media (min-width: 1000px) { .logo__mark { width: 38px; height: 38px; } }

.nav { display: none; }
.nav a {
  font-size: .87rem;
  font-weight: 500;
  color: var(--ink-2);
  text-decoration: none;
  padding: .4rem 0;
  position: relative;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1.5px;
  background: var(--sage);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .22s var(--ease);
}
.nav a:hover::after, .nav a[aria-current="page"]::after { transform: scaleX(1); }
.nav a[aria-current="page"] { color: var(--ink); }

.header-cta { display: none; }

.burger {
  appearance: none;
  background: transparent;
  border: 1.5px solid var(--sand-3);
  border-radius: 100px;
  width: 46px; height: 44px;
  display: grid;
  place-items: center;
  cursor: pointer;
  padding: 0;
}
.burger span {
  display: block;
  width: 19px; height: 1.6px;
  background: var(--ink);
  position: relative;
  transition: background .2s;
}
.burger span::before, .burger span::after {
  content: ""; position: absolute; left: 0;
  width: 19px; height: 1.6px; background: var(--ink);
  transition: transform .25s var(--ease);
}
.burger span::before { top: -6px; }
.burger span::after  { top:  6px; }
.burger[aria-expanded="true"] span { background: transparent; }
.burger[aria-expanded="true"] span::before { transform: translateY(6px) rotate(45deg); }
.burger[aria-expanded="true"] span::after  { transform: translateY(-6px) rotate(-45deg); }

.mobile-nav {
  display: none;
  border-top: 1px solid rgba(0,0,0,.07);
  background: var(--sand);
  padding: .5rem var(--gut) 1.4rem;
}
.mobile-nav.is-open { display: block; }
.mobile-nav a {
  display: block;
  padding: .95rem 0;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid rgba(0,0,0,.06);
}
.mobile-nav a[aria-current="page"] { color: var(--sage); }
.mobile-nav .btn { width: 100%; margin-top: 1.1rem; }

@media (min-width: 1000px) {
  .nav { display: flex; gap: 1.55rem; align-items: center; }
  .header-cta { display: inline-flex; }
  .burger { display: none; }
  .mobile-nav { display: none !important; }
}

/* ------------------------------------------------------------------- hero */
.hero {
  position: relative;
  background: var(--ink);
  color: var(--sand-2);
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(120% 90% at 78% 12%, rgba(78,101,83,.42), transparent 62%),
    radial-gradient(90% 70% at 8% 96%, rgba(169,96,63,.20), transparent 60%);
  pointer-events: none;
}
.hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 2.5rem;
  padding-block: clamp(3rem, 9vw, 6rem) clamp(3rem, 8vw, 5.5rem);
}
.hero h1 { color: #fff; }
.hero .lede { color: #C9D2CD; max-width: 40ch; }
.hero__media {
  border-radius: 6px;
  overflow: hidden;
  background: #1E2426;
}
.hero__media img { width: 100%; height: auto; display: block; }

@media (min-width: 900px) {
  .hero__inner { grid-template-columns: 1.08fr .92fr; align-items: center; gap: 4rem; }
}

/* page hero (inner pages) */
.pagehead {
  background: var(--ink);
  color: var(--sand-2);
  padding-block: clamp(2.75rem, 7vw, 4.75rem);
  position: relative;
  overflow: hidden;
}
.pagehead::after {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(110% 100% at 85% 0%, rgba(78,101,83,.38), transparent 60%);
}
.pagehead > .wrap { position: relative; z-index: 2; }
.pagehead h1 { color: #fff; margin-bottom: .35em; max-width: 20ch; }
.pagehead .lede { color: #C3CCC8; max-width: 58ch; }

/* ------------------------------------------------------------- trust strip */
.trust {
  background: var(--ink-2);
  color: #C9D2CD;
  border-top: 1px solid rgba(255,255,255,.09);
  position: relative;
  z-index: 2;
}
.trust__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(255,255,255,.09);
}
.trust__item { background: var(--ink-2); padding: 1.35rem 1rem; text-align: center; }
.trust__val {
  font-family: var(--serif);
  font-size: 1.55rem;
  color: #fff;
  line-height: 1;
  display: block;
  margin-bottom: .4rem;
}
.trust__lbl { font-size: .74rem; letter-spacing: .06em; color: #94A29D; line-height: 1.35; display: block; }
@media (min-width: 760px) { .trust__grid { grid-template-columns: repeat(4, 1fr); } }

/* ------------------------------------------------------------------ cards */
.grid { display: grid; gap: 1.15rem; }
.grid--2 { grid-template-columns: 1fr; }
.grid--3 { grid-template-columns: 1fr; }
@media (min-width: 720px)  { .grid--2 { grid-template-columns: repeat(2,1fr); } .grid--3 { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 1000px) { .grid--3 { grid-template-columns: repeat(3,1fr); } }

.card {
  background: var(--white);
  border: 1px solid var(--sand-3);
  border-radius: 4px;
  padding: 1.8rem 1.6rem;
  display: flex;
  flex-direction: column;
  transition: border-color .2s var(--ease), transform .2s var(--ease);
}
a.card { text-decoration: none; color: inherit; }
a.card:hover { border-color: var(--sage); transform: translateY(-2px); }
.card h3 { margin-bottom: .5rem; }
.card p { color: var(--ink-3); font-size: .96rem; }
.card__more {
  margin-top: auto;
  padding-top: 1.1rem;
  font-size: .85rem;
  font-weight: 600;
  color: var(--sage-2);
  letter-spacing: .02em;
}
.card__num {
  font-family: var(--serif);
  font-size: 2.1rem;
  color: var(--sand-3);
  line-height: 1;
  margin-bottom: .8rem;
}
.section--ink .card { background: #1C2224; border-color: rgba(255,255,255,.11); }
.section--ink .card p { color: #A8B3AF; }

/* --------------------------------------------------------------- pricing */
.price-card {
  background: var(--white);
  border: 1px solid var(--sand-3);
  border-radius: 4px;
  padding: 2rem 1.7rem;
  display: flex;
  flex-direction: column;
  position: relative;
}
.price-card--featured { border-color: var(--sage); border-width: 2px; box-shadow: 0 14px 40px -22px rgba(20,24,26,.4); }
.price-card__flag {
  position: absolute;
  top: -12px; left: 1.6rem;
  background: var(--sage-2);
  color: #fff;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  padding: .45em 1em;
  border-radius: 100px;
}
.price-card__meta { font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-4); font-weight: 600; }
.price-card h3 { margin: .55rem 0 .3rem; }
.price-card__price {
  font-family: var(--serif);
  font-size: 2.05rem;
  color: var(--sage-2);
  line-height: 1.1;
  margin: .35rem 0 .1rem;
}
.price-card__format { font-size: .85rem; color: var(--ink-4); margin-bottom: 1.1rem; }
.price-card__sum { color: var(--ink-3); font-size: .96rem; }
.ticks { list-style: none; margin: 1.2rem 0 1.6rem; padding: 0; }
.ticks li {
  position: relative;
  padding-left: 1.7rem;
  margin-bottom: .65rem;
  font-size: .93rem;
  color: var(--ink-2);
}
.ticks li::before {
  content: "";
  position: absolute;
  left: 0; top: .45em;
  width: 9px; height: 5px;
  border-left: 1.8px solid var(--sage);
  border-bottom: 1.8px solid var(--sage);
  transform: rotate(-45deg);
}
.price-card .btn { margin-top: auto; width: 100%; }

/* -------------------------------------------------------------- timeline */
.timeline { list-style: none; margin: 0; padding: 0; position: relative; }
.timeline::before {
  content: "";
  position: absolute;
  left: 7px; top: 8px; bottom: 8px;
  width: 1px;
  background: var(--sand-3);
}
.section--ink .timeline::before { background: rgba(255,255,255,.16); }
.timeline li { position: relative; padding-left: 2.3rem; padding-bottom: 1.6rem; }
.timeline li::before {
  content: "";
  position: absolute;
  left: 2px; top: .5em;
  width: 11px; height: 11px;
  border-radius: 50%;
  background: var(--sage);
  box-shadow: 0 0 0 4px var(--sand);
}
.section--ink .timeline li::before { box-shadow: 0 0 0 4px var(--ink); }
.timeline__year {
  display: block;
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: .18rem;
}
.section--ink .timeline__year { color: #9FBAA6; }
.timeline__text { font-size: 1.02rem; color: var(--ink-2); }
.section--ink .timeline__text { color: #D3DAD7; }

/* ---------------------------------------------------------- testimonials */
.quote {
  background: var(--white);
  border: 1px solid var(--sand-3);
  border-radius: 4px;
  padding: 1.9rem 1.7rem;
  display: flex;
  flex-direction: column;
}
.quote__mark { font-family: var(--serif); font-size: 2.6rem; line-height: .6; color: var(--sand-3); margin-bottom: .7rem; }
.quote p { font-family: var(--serif); font-size: 1.12rem; line-height: 1.5; color: var(--ink); }
.quote__by { margin-top: auto; padding-top: 1.2rem; font-size: .85rem; color: var(--ink-4); }
.quote__by strong { display: block; color: var(--ink-2); font-weight: 600; font-size: .92rem; }

/* ------------------------------------------------------------------- FAQ */
.faq { border-top: 1px solid var(--sand-3); }
.faq details { border-bottom: 1px solid var(--sand-3); }
.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 1.35rem 2.5rem 1.35rem 0;
  font-weight: 600;
  font-size: 1.02rem;
  color: var(--ink);
  position: relative;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "";
  position: absolute;
  right: .5rem; top: 1.75rem;
  width: 11px; height: 11px;
  border-right: 1.8px solid var(--sage);
  border-bottom: 1.8px solid var(--sage);
  transform: rotate(45deg);
  transition: transform .22s var(--ease);
}
.faq details[open] summary::after { transform: rotate(-135deg); top: 1.95rem; }
.faq details > div { padding: 0 1rem 1.5rem 0; color: var(--ink-3); }

/* ------------------------------------------------------------------ misc */
.media {
  border-radius: 4px;
  overflow: hidden;
  background: var(--sand-2);
  border: 1px solid var(--sand-3);
}
.split { display: grid; gap: 2.2rem; align-items: center; }
@media (min-width: 900px) { .split { grid-template-columns: 1fr 1fr; gap: 3.5rem; } .split--flip .split__media { order: 2; } }
.split--top { align-items: start; }

.checklist { list-style: none; padding: 0; margin: 1.5rem 0 0; }
.checklist li {
  padding: .95rem 0 .95rem 1.9rem;
  border-bottom: 1px solid var(--sand-3);
  position: relative;
  color: var(--ink-2);
}
.checklist li::before {
  content: "";
  position: absolute; left: 0; top: 1.35em;
  width: 10px; height: 6px;
  border-left: 1.8px solid var(--clay);
  border-bottom: 1.8px solid var(--clay);
  transform: rotate(-45deg);
}

.contact-list { list-style: none; padding: 0; margin: 0; }
.contact-list li { padding: 1.1rem 0; border-bottom: 1px solid var(--sand-3); }
.contact-list strong { display: block; font-size: .74rem; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-4); margin-bottom: .3rem; }
.contact-list a { color: var(--ink); font-weight: 500; text-decoration: none; font-size: 1.05rem; }
.contact-list a:hover { color: var(--clay); }

.map-embed { aspect-ratio: 16/10; border: 1px solid var(--sand-3); border-radius: 4px; overflow: hidden; }
.map-embed iframe { width: 100%; height: 100%; border: 0; display: block; }

.cta-band { background: var(--sage-2); color: #fff; }
.cta-band h2 { color: #fff; }
.cta-band p { color: #CFE0D4; }

/* form */
.field { margin-bottom: 1.15rem; }
.field label { display: block; font-size: .8rem; font-weight: 600; letter-spacing: .07em; text-transform: uppercase; color: var(--ink-3); margin-bottom: .45rem; }
.field input, .field select, .field textarea {
  width: 100%;
  font-family: var(--sans);
  font-size: 1rem;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--sand-3);
  border-radius: 3px;
  padding: .85rem .9rem;
  min-height: 50px;
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: 2px solid var(--sage); outline-offset: 1px; border-color: var(--sage); }
.form-note { font-size: .84rem; color: var(--ink-4); margin-top: .9rem; }

/* --------------------------------------------------------- WhatsApp float */
.wa-float {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 90;
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  background: var(--whatsapp);
  color: #04331A;
  font-weight: 700;
  font-size: .95rem;
  text-decoration: none;
  padding: .85rem 1.15rem;
  border-radius: 100px;
  box-shadow: 0 10px 30px -8px rgba(0,0,0,.42);
  transition: transform .2s var(--ease);
}
.wa-float:hover { transform: translateY(-2px); color: #04331A; }
.wa-float svg { width: 22px; height: 22px; flex: none; }
@media (max-width: 520px) {
  .wa-float__label { display: none; }
  .wa-float { padding: .95rem; }
}

/* ---------------------------------------------------------------- footer */
.site-footer { background: var(--ink); color: #98A5A0; padding-block: 3.5rem 6.5rem; font-size: .92rem; }
.site-footer h4 { color: #fff; font-size: .76rem; letter-spacing: .15em; text-transform: uppercase; margin-bottom: 1rem; }
.site-footer a { color: #C3CCC8; text-decoration: none; }
.site-footer a:hover { color: #fff; }
.footer-grid { display: grid; gap: 2.4rem; }
@media (min-width: 780px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; gap: 3rem; } }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: .6rem; }
.footer-brand { font-family: var(--serif); font-size: 1.35rem; color: #fff; margin-bottom: .6rem; display: flex; align-items: center; gap: .6rem; }
.footer-brand .logo__mark { width: 40px; height: 40px; color: #8FAE97; }
.footer-bottom { margin-top: 3rem; padding-top: 1.6rem; border-top: 1px solid rgba(255,255,255,.12); font-size: .8rem; color: #6E7B77; display: flex; flex-wrap: wrap; gap: .6rem 1.4rem; }

/* ------------------------------------------------------------ draft flags */
.draft-flag {
  display: inline-block;
  background: #FFF3D6;
  border: 1px dashed #C9992C;
  color: #7A5B0E;
  font-family: var(--sans);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .04em;
  padding: .3em .6em;
  border-radius: 3px;
  vertical-align: middle;
}
body.hide-flags .draft-flag { display: none; }

.doc-flag {
  display: inline-block;
  background: var(--sage-soft);
  border: 1px solid var(--sage);
  color: var(--sage-2);
  font-family: var(--sans);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  padding: .3em .6em;
  border-radius: 3px;
  vertical-align: middle;
  white-space: nowrap;
}
.section--ink .doc-flag { background: rgba(143,174,151,.14); border-color: #6F8C77; color: #B6CDBC; }

.timeline__src {
  display: block;
  margin-top: .35rem;
  font-size: .76rem;
  color: var(--ink-4);
  font-style: italic;
}
.section--ink .timeline__src { color: #7E8C87; }

/* press quote cards */
.press-card {
  margin: 0;
  background: var(--white);
  border: 1px solid var(--sand-3);
  border-left: 3px solid var(--sage);
  border-radius: 0 4px 4px 0;
  padding: 1.8rem 1.7rem;
  display: flex;
  flex-direction: column;
}
.press-card blockquote { margin: 0; }
.press-card p {
  font-family: var(--serif);
  font-size: 1.08rem;
  line-height: 1.5;
  color: var(--ink);
}
.press-card figcaption {
  margin-top: auto;
  padding-top: 1.2rem;
  font-size: .82rem;
  color: var(--ink-4);
}
.press-card figcaption strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: .2rem;
}

/* image slots */
/* Images size themselves from their own width/height attributes. No
   aspect-ratio, no percentage heights, no nested sizing chains — those
   collapse to zero-height in older Safari, which is most of an iPhone
   audience. Each source file is already cut to the right shape. */
.shot { position: relative; display: block; margin: 0; background: var(--sand-2); }
.shot img { width: 100%; height: auto; display: block; }
.shot__tag {
  position: absolute;
  left: 10px; right: 10px; bottom: 10px;
  background: rgba(20,24,26,.82);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: #F1EDE6;
  font-family: var(--sans);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .04em;
  line-height: 1.45;
  padding: .55em .75em;
  border-radius: 3px;
  border-left: 3px solid #C9992C;
}
body.hide-flags .shot__tag { display: none; }

/* placeholder image blocks */
.ph {
  display: grid;
  place-items: center;
  background:
    repeating-linear-gradient(45deg, var(--sand-2) 0 12px, var(--sand-3) 12px 24px);
  color: var(--ink-3);
  text-align: center;
  padding: 2rem 1.2rem;
  font-size: .8rem;
  letter-spacing: .05em;
  line-height: 1.5;
  min-height: 200px;
}
.ph span { background: rgba(255,255,255,.9); padding: .6em .9em; border-radius: 3px; max-width: 26ch; }
.hero__media .ph { min-height: 100%; height: 100%; background: repeating-linear-gradient(45deg,#20272A 0 12px,#262E31 12px 24px); color: #9DA9A5; }
.hero__media .ph span { background: rgba(0,0,0,.45); }

/* ---------------------------------------------------------------- a11y */
.skip {
  position: absolute; left: -9999px;
  background: var(--ink); color: #fff; padding: .8rem 1.2rem; z-index: 200; border-radius: 0 0 4px 0;
}
.skip:focus { left: 0; top: 0; }
:focus-visible { outline: 2px solid var(--sage); outline-offset: 2px; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

/* reveal on scroll */
.reveal { opacity: 0; transform: translateY(14px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }
