/* ============================================================
   Savant Physiotherapy · design tokens
   ============================================================ */
:root {
  /* color */
  --ink: oklch(20% 0.035 235);
  --ink-soft: oklch(30% 0.035 235);
  --ink-muted: oklch(42% 0.03 235);
  --bg: oklch(97.8% 0.007 200);
  --surface: oklch(99.5% 0.003 200);
  --line: oklch(89% 0.012 215);

  --blue: oklch(52% 0.13 248);
  --blue-bright: oklch(70% 0.12 240);
  --green: oklch(67% 0.145 155);
  --green-deep: oklch(45% 0.115 158);
  --green-deeper: oklch(38% 0.1 158);
  --green-on-ink: oklch(78% 0.15 158);

  --hero-ink: oklch(17% 0.035 240);
  --hero-ink-2: oklch(22% 0.05 225);
  --on-ink: oklch(96.5% 0.008 210);
  --on-ink-muted: oklch(78% 0.02 215);

  /* type — one variable family (Archivo), voice carried by width + weight:
     display = wide & heavy (athletic), body = normal width */
  --font-display: "Archivo", "Noto Sans Ethiopic", sans-serif;
  --font-body: "Archivo", "Noto Sans Ethiopic", sans-serif;
  --font-am: "Noto Sans Ethiopic", sans-serif;
  --stretch-display: 118%;

  /* layout */
  --gutter: clamp(1.25rem, 5vw, 4.5rem);
  --measure: 62ch;

  /* z scale */
  --z-float: 40;
  --z-header: 50;
  --z-skip: 60;
}

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

/* note: no `scroll-behavior: smooth` here — it corrupts ScrollTrigger's
   resize measurements; smooth anchor scrolling is done in JS instead */
body {
  margin: 0;
  overflow-x: clip;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-stretch: var(--stretch-display);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.025em;
  margin: 0;
  text-wrap: balance;
}
[lang="am"] { font-family: var(--font-am); font-stretch: 100%; letter-spacing: 0; }
h2 [lang="am"], h1 [lang="am"] { font-weight: 700; }

p { margin: 0; max-width: var(--measure); text-wrap: pretty; }

a { color: inherit; }
:focus-visible {
  outline: 3px solid var(--green);
  outline-offset: 3px;
  border-radius: 4px;
}

img, svg, iframe { display: block; }

.skip-link {
  position: fixed;
  top: 0.75rem; left: 0.75rem;
  z-index: var(--z-skip);
  background: var(--ink);
  color: var(--on-ink);
  padding: 0.6rem 1rem;
  border-radius: 999px;
  text-decoration: none;
  transform: translateY(-300%);
  transition: transform 0.2s;
}
.skip-link:focus-visible { transform: none; }

/* ============================================================
   buttons
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  min-height: 48px;
  padding: 0.7rem 1.4rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1), background-color 0.2s, color 0.2s, border-color 0.2s;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn svg { width: 18px; height: 18px; fill: currentColor; }

.btn-primary { background: var(--green-deep); color: white; }
.btn-primary:hover { background: var(--green-deeper); }

.btn-ghost {
  color: var(--on-ink);
  border: 1.5px solid oklch(96.5% 0.008 210 / 0.35);
}
.btn-ghost:hover { border-color: var(--on-ink); background: oklch(96.5% 0.008 210 / 0.08); }

.btn-ghost-dark {
  color: var(--ink);
  border: 1.5px solid var(--line);
  background: var(--surface);
}
.btn-ghost-dark:hover { border-color: var(--ink-muted); }

.btn-onGreen { background: white; color: var(--green-deeper); }
.btn-onGreen:hover { background: oklch(97% 0.02 158); }

.btn-call { background: oklch(96.5% 0.008 210 / 0.1); color: var(--on-ink); backdrop-filter: blur(8px); }
.btn-call:hover { background: oklch(96.5% 0.008 210 / 0.2); }
.site-header.is-solid .btn-call { background: var(--green-deep); color: white; }
.site-header.is-solid .btn-call:hover { background: var(--green-deeper); }

/* ============================================================
   header
   ============================================================ */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: var(--z-header);
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 0.85rem var(--gutter);
  color: var(--on-ink);
  transition: background-color 0.35s, color 0.35s, box-shadow 0.35s, padding 0.35s;
}
.site-header.is-solid {
  background: oklch(99.5% 0.003 200 / 0.88);
  backdrop-filter: blur(14px);
  color: var(--ink);
  box-shadow: 0 1px 0 var(--line);
  padding-block: 0.55rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  margin-right: auto;
}
.brand-mark { width: 40px; height: 45px; }
.mk-blue, .mk-green { fill: none; stroke-width: 7; stroke-linecap: round; }
.mk-blue { stroke: #2a82c4; }
.mk-green { stroke: #3cb878; }
.mk-blue-fill { fill: #2a82c4; }
.mk-leaf { fill: #3cb878; }
.mk-dots circle { fill: currentColor; }

.brand-word { display: flex; flex-direction: column; line-height: 1.05; }
.brand-name {
  font-family: var(--font-display);
  font-stretch: 125%;
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.brand-sub {
  font-size: 0.62rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  opacity: 0.85;
}

.site-nav { display: flex; gap: 1.6rem; }
.site-nav a {
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  opacity: 0.85;
  padding: 0.5rem 0;
}
.site-nav a:hover { opacity: 1; }

@media (max-width: 860px) {
  .site-nav { display: none; }
  .brand-sub { display: none; }
  .brand-name { font-size: 1.05rem; }
  .btn-call { min-height: 44px; padding: 0.55rem 1.05rem; font-size: 0.95rem; }
}

/* ============================================================
   hero
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: clip;
  background:
    radial-gradient(120% 90% at 80% 10%, var(--hero-ink-2), transparent 60%),
    var(--hero-ink);
  color: var(--on-ink);
  padding: clamp(6rem, 14vh, 9rem) var(--gutter) 4.5rem;
}

#spineCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-veil {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(100deg, oklch(17% 0.035 240 / 0.82) 0%, oklch(17% 0.035 240 / 0.45) 48%, transparent 75%);
}

.hero-inner { position: relative; max-width: 46rem; }

.hero-place {
  font-size: 0.95rem;
  color: var(--on-ink-muted);
  margin-bottom: 1.4rem;
}
.hero-place [lang="am"] { color: var(--green-on-ink); font-weight: 600; }

.hero-title {
  font-size: clamp(2.5rem, 8.6vw, 5.4rem);
  font-stretch: 122%;
  letter-spacing: -0.035em;
  line-height: 0.98;
}
.hero-title .line { display: block; overflow: hidden; padding-bottom: 0.08em; }
.hero-title .word { display: inline-block; }
.hero-title .accent { color: var(--green-on-ink); }

.hero-lead {
  margin-top: 1.8rem;
  font-size: clamp(1.05rem, 2.4vw, 1.2rem);
  line-height: 1.75;
  max-width: 38rem;
}
.hero-lead.en {
  margin-top: 0.8rem;
  color: var(--on-ink-muted);
  font-size: 1rem;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2.4rem;
}

.hero-foot {
  position: relative;
  margin-top: auto;
  padding-top: 3rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.scroll-hint {
  width: 26px; height: 42px;
  border: 1.5px solid oklch(96.5% 0.008 210 / 0.4);
  border-radius: 999px;
  display: flex;
  justify-content: center;
  padding-top: 7px;
  flex-shrink: 0;
}
.scroll-dot {
  width: 4px; height: 8px;
  border-radius: 999px;
  background: var(--green-on-ink);
  animation: scrollNudge 2.2s cubic-bezier(0.65, 0, 0.35, 1) infinite;
}
@keyframes scrollNudge {
  0%, 100% { transform: translateY(0); opacity: 1; }
  55% { transform: translateY(14px); opacity: 0.15; }
}
.hero-foot-note {
  font-size: 0.85rem;
  color: var(--on-ink-muted);
  max-width: 24rem;
}

@media (max-width: 640px) {
  .hero { padding-bottom: 3rem; }
  .hero-foot-note { font-size: 0.8rem; }
}

/* ============================================================
   marquee
   ============================================================ */
.marquee {
  background: var(--ink);
  color: var(--on-ink);
  overflow: hidden;
  padding: 0.9rem 0;
  border-top: 1px solid oklch(96.5% 0.008 210 / 0.12);
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 36s linear infinite;
}
.marquee-seq {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  padding-right: 1.4rem;
  white-space: nowrap;
  font-family: var(--font-display);
  font-stretch: 116%;
  font-size: 1.1rem;
  font-weight: 650;
}
.marquee-seq i { font-style: normal; }
.marquee-seq i[lang="am"] { font-family: var(--font-am); color: var(--green-on-ink); }
.marquee-seq b { color: var(--blue-bright); font-weight: 400; }
@keyframes marquee { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
}

/* ============================================================
   sections shared
   ============================================================ */
section { padding: clamp(4.5rem, 10vw, 8rem) var(--gutter); }

.section-head h2,
.visit-copy h2 {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: clamp(2rem, 5.5vw, 3.4rem);
}
.head-en {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.5em;
  color: var(--green-deep);
  letter-spacing: 0.01em;
}
.section-note {
  margin-top: 1.2rem;
  color: var(--ink-muted);
  font-size: 1.05rem;
}

/* ============================================================
   treatments ledger
   ============================================================ */
.treatments { max-width: 72rem; margin-inline: auto; }

.ledger-hint {
  margin-top: 0.6rem;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--green-deep);
}

.ledger {
  list-style: none;
  margin: 2.6rem 0 0;
  padding: 0;
  counter-reset: row;
  border-top: 1px solid var(--line);
}
.ledger-row {
  counter-increment: row;
  border-bottom: 1px solid var(--line);
  transition: background-color 0.3s;
}
.ledger-head {
  /* the whole row header is one big button */
  appearance: none;
  background: none;
  border: 0;
  font: inherit;
  color: inherit;
  text-align: left;
  cursor: pointer;
  width: 100%;
  display: grid;
  grid-template-columns: 64px 1fr auto auto;
  gap: 1.5rem;
  align-items: center;
  padding: 1.6rem 0.5rem;
  transition: padding 0.3s;
}
@media (hover: hover) {
  .ledger-row:hover { background: var(--surface); }
  .ledger-row:hover .ledger-head { padding-inline: 1.1rem; }
}
.ledger-row.open { background: var(--surface); }

/* plus → cross indicator */
.ledger-plus {
  position: relative;
  width: 30px;
  height: 30px;
  border: 1.5px solid var(--line);
  border-radius: 999px;
  flex-shrink: 0;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.25s;
}
.ledger-plus::before,
.ledger-plus::after {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  width: 12px; height: 2px;
  background: var(--green-deep);
  translate: -50% -50%;
}
.ledger-plus::after { rotate: 90deg; }
.ledger-head:hover .ledger-plus { border-color: var(--green-deep); }
.ledger-row.open .ledger-plus { transform: rotate(45deg); border-color: var(--green-deep); }

/* expanding panel: grid-rows trick, no measured heights */
.ledger-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}
.ledger-row.open .ledger-panel { grid-template-rows: 1fr; }
.panel-clip {
  overflow: hidden;
  min-height: 0;
  visibility: hidden;
  transition: visibility 0s 0.55s;
}
.ledger-row.open .panel-clip { visibility: visible; transition: visibility 0s; }

.ledger-detail {
  display: grid;
  grid-template-columns: minmax(0, 6fr) minmax(280px, 5fr);
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: start;
  padding: 0.3rem 0.5rem 2.2rem calc(64px + 1.5rem + 0.5rem);
}
.detail-desc { color: var(--ink-soft); max-width: 52ch; }
.detail-how {
  margin-top: 1.4rem;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--green-deeper);
}
.detail-how [lang="am"] { font-weight: 700; }
.treat-list {
  list-style: none;
  margin: 0.7rem 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.treat-list li {
  position: relative;
  padding-left: 1.4rem;
  color: var(--ink-soft);
  font-size: 0.98rem;
}
.treat-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.52em;
  width: 9px; height: 9px;
  border-radius: 999px;
  border: 2px solid var(--green);
}
.detail-call {
  display: inline-block;
  margin-top: 1.5rem;
  font-weight: 700;
  font-size: 0.98rem;
  color: var(--green-deeper);
  text-decoration-thickness: 1.5px;
  text-underline-offset: 3px;
  min-height: 44px;
}
.detail-call:hover { color: var(--ink); }

/* the treatment vignette: a small dark stage, same world as the hero */
.scene { margin: 0.2rem 0 0; }
.scene-svg {
  width: 100%;
  aspect-ratio: 280 / 170;
  border-radius: 16px;
  background:
    radial-gradient(110% 130% at 78% 8%, var(--hero-ink-2), transparent 62%),
    var(--hero-ink);
  border: 1px solid oklch(35% 0.03 230);
}
.scene figcaption {
  margin-top: 0.65rem;
  font-size: 0.85rem;
  color: var(--ink-muted);
}

/* scene drawing language */
.scene-svg path, .scene-svg circle, .scene-svg rect, .scene-svg ellipse {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.5;
}
.scene-svg .s-blue { stroke: #6fb1e8; }
.scene-svg .s-green { stroke: #43d98f; }
.scene-svg .s-red { stroke: #ff7a5c; }
.scene-svg .s-ink { stroke: #d7e6f0; }
.scene-svg .s-faint { stroke: oklch(96.5% 0.008 210 / 0.28); stroke-width: 2; }
.scene-svg .s-dots { stroke: oklch(96.5% 0.008 210 / 0.55); stroke-width: 2; stroke-dasharray: 1.5 7; }
.scene-svg .s-hand { stroke: #e8b86d; stroke-width: 3; }
.scene-svg .s-sig { fill: #6fb1e8; stroke: none; }
.scene-svg .s-plate { fill: #43d98f; stroke: none; }
.scene-svg .s-dotfill { fill: #43d98f; stroke: none; }
.scene-svg .sc-pain { fill: #ff7a5c; stroke: none; opacity: 0.3; }
.scene-svg .sc-ok { fill: #43d98f; stroke: none; }
.scene-svg .sc-wave { stroke: #43d98f; stroke-width: 2; fill: none; }
.scene-svg .sc-lesion { fill: oklch(68% 0.16 35 / 0.2); }
.scene-svg .sc-ball { fill: #e8b86d; stroke: none; }
.scene-svg .sc-pad { fill: oklch(67% 0.145 155 / 0.25); stroke: #43d98f; stroke-width: 1.5; }
.scene-svg .sc-steady { stroke-width: 3; }
.scene-svg .sc-heal { stroke-width: 2; }
.scene-svg .sc-fiber { stroke-dasharray: none; }

.glyph {
  width: 56px; height: 56px;
  color: var(--blue);
}
.glyph .g {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ledger-text h3 {
  font-size: clamp(1.15rem, 2.6vw, 1.5rem);
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.3rem 0.9rem;
}
.ledger-text .t-en {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.72em;
  color: var(--green-deep);
}
.ledger-text p {
  margin-top: 0.45rem;
  color: var(--ink-muted);
  font-size: 0.98rem;
}

.ledger-index::before {
  content: counter(row, decimal-leading-zero);
  font-family: var(--font-display);
  font-stretch: 118%;
  font-size: 1rem;
  font-weight: 600;
  color: oklch(70% 0.02 220);
}

@media (max-width: 900px) {
  .ledger-detail { grid-template-columns: 1fr; padding-left: 0.5rem; }
  .scene { order: -1; max-width: 30rem; }
}
@media (max-width: 640px) {
  .ledger-head { grid-template-columns: 44px 1fr auto; gap: 1rem; padding-block: 1.35rem; }
  .glyph { width: 44px; height: 44px; }
  .ledger-index { display: none; }
  .ledger-plus { width: 26px; height: 26px; }
}

/* ============================================================
   first visit
   ============================================================ */
.first-visit {
  background: var(--surface);
  border-block: 1px solid var(--line);
}
.fv-grid {
  max-width: 72rem;
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(16rem, 5fr) 7fr;
  gap: clamp(2.5rem, 6vw, 6rem);
}
.fv-intro h2 { font-size: clamp(1.9rem, 4.5vw, 2.9rem); }
.fv-intro p { margin-top: 1.2rem; color: var(--ink-muted); }

.fv-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  position: relative;
}
.fv-step {
  display: flex;
  gap: 1.4rem;
  padding: 1.5rem 0;
  position: relative;
}
.fv-step + .fv-step { border-top: 1px dashed var(--line); }
.fv-num {
  flex-shrink: 0;
  width: 52px; height: 52px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-stretch: 118%;
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--green-deeper);
  background: oklch(93% 0.05 158);
}
.fv-step h3 { font-size: 1.3rem; }
.fv-step p { margin-top: 0.4rem; color: var(--ink-muted); font-size: 0.98rem; }

@media (max-width: 820px) {
  .fv-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   home visits (green drench)
   ============================================================ */
.home-visits {
  background:
    radial-gradient(90% 120% at 15% 0%, oklch(50% 0.12 165 / 0.8), transparent 60%),
    var(--green-deep);
  color: white;
}
.hv-inner {
  max-width: 72rem;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.6rem;
}
.home-visits h2 {
  font-size: clamp(2rem, 6vw, 4rem);
  font-weight: 700;
  max-width: 18em;
}
.hv-en {
  font-size: clamp(1.05rem, 2.2vw, 1.2rem);
  line-height: 1.7;
  color: oklch(96% 0.02 158);
  max-width: 44rem;
}
.home-visits .btn { margin-top: 0.6rem; }

/* ============================================================
   approach
   ============================================================ */
.ap-grid {
  max-width: 72rem;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: center;
}
.ap-copy h2 { font-size: clamp(1.9rem, 4.5vw, 2.9rem); }
.ap-copy p { margin-top: 1.3rem; color: var(--ink-soft); }
.ap-copy em { font-style: italic; }
.ap-copy a { color: var(--green-deep); font-weight: 600; text-decoration-thickness: 1.5px; text-underline-offset: 3px; }
.ap-copy a:hover { color: var(--green-deeper); }

.ap-figure { margin: 0; }
.ap-figure .rom { width: min(100%, 22rem); margin-inline: auto; }
.rom-arc, .rf {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.rom-arc { stroke: var(--green); stroke-width: 2; stroke-dasharray: 2 8; }
.rf { stroke: var(--ink); stroke-width: 3.5; }
.rom-ghost { stroke: var(--ink); }
.rom-ghost.g1 { opacity: 0.1; }
.rom-ghost.g2 { opacity: 0.18; }
.rom-ghost.g3 { opacity: 0.28; }
.rom-arm2 { stroke: var(--green-deep); stroke-width: 4.5; }
.rom-joint { fill: var(--green-deep); }
.rom-label {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  fill: var(--ink-muted);
}
.ap-figure figcaption {
  text-align: center;
  margin-top: 0.8rem;
  font-size: 0.88rem;
  color: var(--ink-muted);
}

@media (max-width: 820px) {
  .ap-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   visit
   ============================================================ */
.visit {
  background: var(--hero-ink);
  color: var(--on-ink);
}
.visit-grid {
  max-width: 72rem;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}
.visit-copy h2 .head-en { color: var(--green-on-ink); }
.visit-copy address {
  font-style: normal;
  margin-top: 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.visit-line { color: var(--on-ink-muted); }
.visit-line strong { color: var(--on-ink); }
.visit-line a {
  color: var(--on-ink);
  font-weight: 600;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 3px;
}
.visit-line a:hover { color: var(--green-on-ink); }

.visit-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.8rem;
}
.visit .btn-ghost-dark {
  background: transparent;
  color: var(--on-ink);
  border-color: oklch(96.5% 0.008 210 / 0.3);
}
.visit .btn-ghost-dark:hover { border-color: var(--on-ink); }

.visit-socials {
  list-style: none;
  display: flex;
  gap: 1.4rem;
  padding: 0;
  margin: 2rem 0 0;
}
.visit-socials a {
  color: var(--on-ink-muted);
  font-size: 0.95rem;
  text-underline-offset: 3px;
}
.visit-socials a:hover { color: var(--on-ink); }

.visit-map {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid oklch(96.5% 0.008 210 / 0.15);
}
.visit-map iframe {
  width: 100%;
  aspect-ratio: 4 / 3;
  border: 0;
  filter: saturate(0.85);
}

@media (max-width: 820px) {
  .visit-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   footer
   ============================================================ */
.site-footer {
  background: var(--hero-ink);
  color: var(--on-ink-muted);
  padding: 2rem var(--gutter) 2.5rem;
  border-top: 1px solid oklch(96.5% 0.008 210 / 0.12);
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 2rem;
  justify-content: space-between;
  font-size: 0.92rem;
}
.foot-note { font-family: var(--font-display); font-stretch: 118%; font-weight: 650; color: var(--green-on-ink); }

/* ============================================================
   motion safety
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  /* the note narrates the scroll animation; without motion it would mislead */
  .hero-foot { display: none; }
}

/* ============================================================
   FAQ
   ============================================================ */
.faq { max-width: 56rem; margin-inline: auto; }
.faq-list { margin-top: 2.4rem; border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  padding: 1.25rem 0.25rem;
  cursor: pointer;
  font-weight: 600;
  min-height: 48px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-q { display: flex; flex-wrap: wrap; align-items: baseline; gap: 0.25rem 0.8rem; }
.faq-q [lang="am"] { font-weight: 700; font-size: 1.05rem; }
.faq-q-en { color: var(--green-deep); font-weight: 500; font-size: 0.95rem; }
.faq-chev {
  flex-shrink: 0;
  width: 11px; height: 11px;
  border-right: 2.5px solid var(--green-deep);
  border-bottom: 2.5px solid var(--green-deep);
  transform: rotate(45deg);
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  margin-right: 0.4rem;
}
.faq-item[open] .faq-chev { transform: rotate(225deg); }
.faq-item > p {
  padding: 0 0.25rem 1.4rem;
  color: var(--ink-soft);
  max-width: 58ch;
}
.faq-item > p a { color: var(--green-deeper); font-weight: 600; text-underline-offset: 3px; }
@media (hover: hover) {
  .faq-item summary:hover .faq-q-en { color: var(--green-deeper); }
}

/* ============================================================
   floating WhatsApp
   ============================================================ */
.wa-float {
  position: fixed;
  right: clamp(1rem, 3vw, 1.75rem);
  bottom: clamp(1rem, 3vw, 1.75rem);
  z-index: var(--z-float);
  width: 56px; height: 56px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: #1fad55;
  box-shadow: 0 10px 28px oklch(20% 0.05 160 / 0.45);
  transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1), background-color 0.2s;
}
.wa-float:hover { transform: translateY(-3px) scale(1.05); background: #18994a; }
.wa-float { animation: waIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 1.9s backwards; }
@keyframes waIn {
  from { transform: scale(0); opacity: 0; }
}
.wa-float svg { width: 30px; height: 30px; fill: white; }

/* ============================================================
   Addis / local section
   ============================================================ */
.local { background: var(--surface); border-block: 1px solid var(--line); }
.local-inner { max-width: 56rem; margin-inline: auto; }
.local-inner h2 { font-size: clamp(1.7rem, 4vw, 2.5rem); }
.local-inner p { margin-top: 1.2rem; color: var(--ink-soft); }
.local-inner p[lang="am"] { color: var(--ink-muted); }
