/* Wenut marketing site — the LOCKED brand (CLAUDE.md): deep green #1B4D3E, cream
   #F4EFE6, charcoal #23211E, bronze #B08D57 (small accents only). Wordmark in Baloo 2
   (web substitute for Pliant ExtraBold), UI in Archivo. Premium-warm, never discount. */

:root {
  --green: #1b4d3e;
  --green-dark: #143c30;
  --cream: #f4efe6;
  --ink: #23211e;
  --bronze: #b08d57;
  --bronze-dark: #8f7042;
  --paper: #fffdf8;
  --line: #e2d9c6;
  --line-soft: #efe8d8;
  --mut: #8b8371;
  --mut2: #7a7261;
  --ui: "Archivo", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --word: "Baloo 2", "Archivo", system-ui, sans-serif;
  --wrap: 1140px;
  --radius: 18px;
  --shadow: 0 18px 50px rgba(20, 60, 48, 0.12);
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  font-family: var(--ui);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 { font-family: var(--word); color: var(--green); line-height: 1.08; margin: 0; letter-spacing: -0.01em; }
p { margin: 0; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; }

.eyebrow {
  font-family: var(--ui);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--bronze-dark);
  margin-bottom: 14px;
}
.eyebrow.light { color: var(--bronze); }
.accent { color: var(--bronze); }

/* ---------------------------------------------------- the Symbol */
.symbol { width: 100%; height: 100%; display: block; }
/* THE official brand motion (founder, 2026-08-25 — packages/ui matches): the
   ring's gap advances in twelve discrete ticks — one per second, a full round
   every 12s — like a watch hand. The mark keeps time; the star never moves. */
.symbol-ring {
  transform-box: fill-box;
  transform-origin: center;
  transform: rotate(-25deg);
  animation: gap-steps 12s steps(12, end) infinite;
}

/* ---------------------------------------------------- buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--ui);
  font-weight: 700;
  font-size: 15px;
  padding: 13px 22px;
  border-radius: 12px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
  white-space: nowrap;
}
.btn-primary { background: var(--green); color: var(--cream); box-shadow: 0 10px 24px rgba(27, 77, 62, 0.28); }
.btn-primary:hover { background: var(--green-dark); transform: translateY(-1px); }
.btn-ghost { border-color: var(--line); color: var(--green); background: transparent; }
.btn-ghost:hover { border-color: var(--green); }
.btn-quiet { color: var(--green); background: transparent; padding-left: 6px; padding-right: 6px; }
.btn-quiet:hover { color: var(--bronze-dark); }
.btn-sm { padding: 9px 16px; font-size: 14px; }

/* ---------------------------------------------------- announcement banner */
/* Bronze so it stands apart from both the cream page and the green sections —
   charcoal text keeps it readable (AA); the launch banner is meant to be seen. */
.announce {
  background: var(--bronze);
  color: var(--ink);
  text-align: center;
  font-size: 13.5px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 11px 16px;
}
.announce .a-star { color: var(--cream); letter-spacing: 0; }

/* ---------------------------------------------------- header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px clamp(18px, 5vw, 48px);
  background: rgba(244, 239, 230, 0.82);
  backdrop-filter: saturate(1.2) blur(10px);
  border-bottom: 1px solid var(--line-soft);
}
.brand { display: inline-flex; align-items: center; gap: 10px; }
.brand-mark { width: 34px; height: 34px; display: block; }
.brand-stack { display: flex; flex-direction: column; line-height: 0.96; }
.brand-word { font-family: var(--word); font-weight: 800; font-size: 24px; color: var(--green); letter-spacing: -0.01em; }
.brand-ar {
  font-family: "Segoe UI", Tahoma, "Geeza Pro", Arial, sans-serif;
  font-weight: 600;
  font-size: 12.5px;
  color: var(--bronze-dark);
  margin-top: 1px;
}
/* The one-line reason beneath the mark, linking to the name's story. */
.brand-col { display: flex; flex-direction: column; gap: 3px; }
.brand-tag {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--bronze-dark);
  opacity: 0.9;
}
.brand-tag:hover { text-decoration: underline; opacity: 1; }
.foot-ar {
  font-family: "Segoe UI", Tahoma, "Geeza Pro", Arial, sans-serif;
  font-weight: 600;
  font-size: 0.62em;
  color: var(--bronze);
  vertical-align: middle;
  margin-left: 4px;
}
.site-nav { display: flex; align-items: center; gap: clamp(14px, 2.4vw, 30px); }
.site-nav > a:not(.btn) { font-weight: 600; font-size: 15px; color: var(--ink); opacity: 0.85; }
.site-nav > a:not(.btn):hover { opacity: 1; color: var(--green); }

/* ---------------------------------------------------- layout helpers */
main > section { padding: clamp(56px, 8vw, 104px) clamp(18px, 5vw, 48px); }
.section-head { max-width: 640px; margin: 0 auto clamp(30px, 5vw, 52px); text-align: center; }
.section-head h2 { font-size: clamp(28px, 4.4vw, 42px); font-weight: 700; }
.section-lede { margin-top: 16px; color: var(--mut2); font-size: 17px; }

/* ---------------------------------------------------- hero */
.hero {
  max-width: var(--wrap);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: clamp(28px, 5vw, 64px);
  padding-top: clamp(40px, 6vw, 72px) !important;
}
.hero-copy h1 { font-size: clamp(38px, 6vw, 66px); font-weight: 800; }
.hero-copy .lede { margin: 22px 0 30px; font-size: clamp(17px, 2vw, 20px); color: var(--mut2); max-width: 30ch; }
.hero-cta { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.hero-note { margin-top: 26px; display: inline-flex; align-items: center; gap: 9px; font-size: 14px; font-weight: 600; color: var(--green); }
.hero-note .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--bronze); box-shadow: 0 0 0 4px rgba(176, 141, 87, 0.18); }

.hero-visual { position: relative; }
.hero-photo { position: relative; border-radius: 26px; overflow: hidden; box-shadow: var(--shadow); aspect-ratio: 4 / 5; }
.hero-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-chip {
  position: absolute;
  left: 18px;
  bottom: 18px;
  display: flex;
  align-items: center;
  gap: 11px;
  background: rgba(255, 253, 248, 0.94);
  backdrop-filter: blur(6px);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 11px 15px;
  box-shadow: 0 10px 30px rgba(20, 60, 48, 0.18);
}
.hero-chip b { display: block; font-family: var(--word); font-weight: 700; font-size: 16px; color: var(--green); }
.hero-chip small { color: var(--mut); font-size: 12px; }
.hero-blob {
  position: absolute;
  inset: -8% -10% auto auto;
  width: 62%;
  aspect-ratio: 1;
  background: radial-gradient(circle at 60% 40%, rgba(176, 141, 87, 0.18), rgba(176, 141, 87, 0) 70%);
  z-index: -1;
}

/* ---------------------------------------------------- how it works */
.how { background: var(--green); color: var(--cream); border-radius: 0; }
.how .eyebrow { color: var(--bronze); }
.how .section-head h2 { color: var(--cream); }
.steps {
  max-width: var(--wrap);
  margin: 0 auto;
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(18px, 3vw, 34px);
}
.step {
  background: rgba(255, 253, 248, 0.06);
  border: 1px solid rgba(244, 239, 230, 0.14);
  border-radius: var(--radius);
  padding: 30px 26px;
}
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--bronze);
  color: var(--green-dark);
  font-family: var(--word);
  font-weight: 800;
  font-size: 20px;
  margin-bottom: 18px;
}
.step h3 { color: var(--cream); font-size: 21px; font-weight: 700; margin-bottom: 8px; }
.step p { color: rgba(244, 239, 230, 0.82); font-size: 15.5px; }
.step b { color: #fff; }

/* ---------------------------------------------------- the gyms */
.gyms { background: var(--cream); }
.gallery {
  max-width: var(--wrap);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 176px;
  grid-auto-flow: dense;
  gap: 14px;
}
.gallery figure {
  margin: 0;
  overflow: hidden;
  border-radius: 16px;
  background: var(--line-soft);
  box-shadow: 0 8px 22px rgba(20, 60, 48, 0.08);
}
.gallery img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.6s ease; }
.gallery figure:hover img { transform: scale(1.05); }
.gallery .g-tall { grid-row: span 2; }
.gallery .g-wide { grid-column: span 2; }

/* ---------------------------------------------------- why wenut */
.why { background: var(--paper); }
.features {
  max-width: var(--wrap);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 2.4vw, 26px);
}
.feature {
  background: var(--cream);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 28px 24px;
}
.f-ic {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 13px;
  background: rgba(176, 141, 87, 0.14);
  color: var(--bronze-dark);
  font-size: 22px;
  margin-bottom: 16px;
}
.feature h3 { font-size: 19px; font-weight: 700; margin-bottom: 7px; }
.feature p { color: var(--mut2); font-size: 15px; }
.feature b { color: var(--green); }

/* ---------------------------------------------------- where / cairo */
.cairo { background: var(--cream); }
.cairo-inner {
  max-width: var(--wrap);
  margin: 0 auto;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: var(--cream);
  border-radius: 28px;
  padding: clamp(38px, 6vw, 68px) clamp(28px, 5vw, 60px);
  box-shadow: var(--shadow);
  text-align: center;
}
.cairo-inner h2 { color: var(--cream); font-size: clamp(26px, 4vw, 40px); font-weight: 700; }
.cairo-inner > p { margin: 16px auto 0; max-width: 52ch; color: rgba(244, 239, 230, 0.85); font-size: 17px; }
.pills { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: 28px; }
.pill {
  font-weight: 700;
  font-size: 15px;
  padding: 10px 20px;
  border-radius: 999px;
  background: rgba(244, 239, 230, 0.12);
  border: 1px solid rgba(244, 239, 230, 0.28);
  color: var(--cream);
}
.pill-soft { background: transparent; color: rgba(244, 239, 230, 0.7); }

/* ---------------------------------------------------- CTA band */
.cta { background: var(--paper); text-align: center; }
.cta-inner { max-width: 640px; margin: 0 auto; }
.cta-mark { width: 66px; height: 66px; margin: 0 auto 22px; }
.cta .symbol-lg { width: 66px; height: 66px; }
.cta h2 { font-size: clamp(28px, 4.4vw, 44px); font-weight: 800; }
.cta > .cta-inner > p { margin: 14px auto 26px; color: var(--mut2); font-size: 17px; max-width: 46ch; }
.store-buttons { display: flex; justify-content: center; flex-wrap: wrap; gap: 14px; }
.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--green);
  color: var(--cream);
  border-radius: 14px;
  padding: 12px 22px;
  min-width: 190px;
  text-align: left;
  box-shadow: 0 10px 24px rgba(27, 77, 62, 0.22);
  transition: transform 0.15s ease, background 0.15s ease;
}
.store-btn:hover { background: var(--green-dark); transform: translateY(-1px); }
.store-btn small { display: block; font-size: 11px; font-weight: 500; opacity: 0.75; letter-spacing: 0.04em; }
.store-btn b { display: block; font-family: var(--word); font-weight: 700; font-size: 18px; line-height: 1.15; }
.cta-sub { margin-top: 20px; font-size: 13.5px; color: var(--mut); }

/* ---------------------------------------------------- lore (the name story) */
/* Whispered, not exhibited: one quiet line on Home; on About, a short passage
   and the mark itself quietly keeping time. */
.lore {
  text-align: center;
  background: var(--paper);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}
.lore .lore-line {
  max-width: 40ch;
  margin: 14px auto 18px;
  font-family: var(--word);
  font-size: clamp(20px, 2.6vw, 27px);
  font-weight: 700;
  color: var(--green);
  line-height: 1.35;
}
.lore a { font-weight: 700; color: var(--bronze-dark); }
.lore a:hover { text-decoration: underline; }

/* The Wenut hare (founder-approved 2026-08-28): the E34 hieroglyph — the sign
   that writes both her name and "hour" — redrawn in the brand line, resting
   beneath the hour-star. A quiet etched ornament above the name story. */
.lore-hare { width: 190px; margin: 0 auto 12px; opacity: 0.28; }
.lore-hare svg { display: block; width: 100%; height: auto; }
.lore-hare-sm { width: 140px; margin-bottom: 6px; }

/* The mark, keeping time — shown large on the story page. Same official
   watch-hand motion as everywhere else (see .symbol-ring). */
.name-mark { text-align: center; margin: clamp(30px, 5vw, 46px) auto 0; }
.name-mark svg { width: clamp(140px, 20vw, 190px); height: auto; }
.name-ring {
  transform-box: fill-box;
  transform-origin: center;
  transform: rotate(-25deg);
  animation: gap-steps 12s steps(12, end) infinite;
}
@keyframes gap-steps {
  from { transform: rotate(-25deg); }
  to { transform: rotate(335deg); }
}
.name-caption {
  margin-top: 22px;
  font-family: var(--word);
  font-weight: 700;
  font-size: clamp(17px, 2.2vw, 22px);
  color: var(--green);
}
.foot-lore { margin-top: 6px; font-size: 13.5px; color: rgba(244, 239, 230, 0.55); }

/* ---------------------------------------------------- footer */
.site-footer {
  background: var(--green-dark);
  color: rgba(244, 239, 230, 0.8);
  padding: clamp(40px, 6vw, 64px) clamp(18px, 5vw, 48px) 34px;
  display: grid;
  gap: 22px;
  justify-items: center;
  text-align: center;
}
.foot-brand { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.foot-brand .brand-mark { width: 40px; height: 40px; }
.foot-brand .brand-word { color: var(--cream); font-size: 26px; }
.foot-tag { color: rgba(244, 239, 230, 0.7); font-size: 15px; }
.foot-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 26px; font-size: 14px; font-weight: 600; }
.foot-links a { color: rgba(244, 239, 230, 0.82); }
.foot-links a:hover { color: var(--cream); }
.foot-links a[aria-disabled="true"] { opacity: 0.55; }
.foot-legal { font-size: 12.5px; color: rgba(244, 239, 230, 0.5); }

/* ---------------------------------------------------- inner pages */
.page { max-width: var(--wrap); margin: 0 auto; }
.page > section { padding: clamp(40px, 6vw, 72px) clamp(18px, 5vw, 48px); }
.page-hero { text-align: center; max-width: 720px; margin: 0 auto; }
.page-hero h1 { font-size: clamp(34px, 5.4vw, 56px); font-weight: 800; }
.page-hero .lede { margin-top: 18px; font-size: clamp(16px, 2vw, 19px); color: var(--mut2); }

/* Alternating feature blocks (How it works) */
.block {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(26px, 5vw, 60px);
  align-items: center;
}
.block-flip .block-copy { order: 2; }
.block-flip .block-card { order: 1; }
.block-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bronze);
  color: var(--green-dark);
  font-family: var(--word);
  font-weight: 800;
  font-size: 19px;
  margin-bottom: 16px;
}
.block-copy h2 { font-size: clamp(24px, 3.4vw, 34px); font-weight: 700; margin-bottom: 12px; }
.block-copy p { color: var(--mut2); font-size: 16.5px; max-width: 46ch; }
.block-copy b { color: var(--green); }
.ticks { list-style: none; margin: 18px 0 0; padding: 0; display: grid; gap: 9px; }
.ticks li { padding-left: 28px; position: relative; font-size: 15px; font-weight: 600; color: var(--ink); }
.ticks li::before {
  content: "✦";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--bronze);
  font-size: 14px;
}
.block-card {
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-radius: 22px;
  box-shadow: var(--shadow);
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 240px;
  text-align: center;
}
.star-card .star-rate { font-family: var(--word); font-weight: 800; font-size: 32px; color: var(--green); }
.star-card .star-note { color: var(--mut); font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; font-size: 12px; }
.slot-card { align-items: stretch; gap: 10px; }
.slot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--cream);
  border: 1px solid var(--line-soft);
  border-radius: 12px;
  padding: 13px 16px;
  font-weight: 600;
  font-size: 15px;
  color: var(--mut2);
}
.slot b { font-family: var(--word); font-size: 18px; color: var(--green); }
.slot .offpeak { color: var(--bronze-dark); }
.slot-now { border-color: var(--green); background: rgba(27, 77, 62, 0.06); color: var(--ink); }
.qr-card .qr-grid {
  display: grid;
  grid-template-columns: repeat(3, 34px);
  gap: 7px;
}
.qr-card .qr-grid span { width: 34px; height: 34px; border-radius: 8px; background: var(--green); }
.qr-card .qr-grid span:nth-child(2n) { background: var(--green-dark); }
.qr-card .qr-grid span:nth-child(5) { background: var(--bronze); }
.qr-note { margin-top: 14px; color: var(--mut); font-weight: 600; font-size: 13.5px; }

/* Good-to-know notes */
.notes h2 { text-align: center; font-size: clamp(22px, 3vw, 30px); margin-bottom: 26px; }
.notes-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.notes-grid article { background: var(--paper); border: 1px solid var(--line-soft); border-radius: var(--radius); padding: 22px 22px; }
.notes-grid h3 { font-size: 17px; font-weight: 700; margin-bottom: 6px; }
.notes-grid p { color: var(--mut2); font-size: 14.5px; }

/* FAQ */
.faq { max-width: 760px; margin: 0 auto; }
.faq-group {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bronze-dark);
  font-family: var(--ui);
  margin: 34px 0 12px;
}
.faq-group:first-of-type { margin-top: 0; }
.faq details {
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-radius: 14px;
  padding: 0 20px;
  margin-bottom: 10px;
}
.faq summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  padding: 17px 0;
  font-weight: 700;
  font-size: 16px;
  color: var(--green);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-family: var(--word); font-size: 22px; color: var(--bronze); line-height: 1; transition: transform 0.2s ease; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { padding: 0 0 18px; color: var(--mut2); font-size: 15.5px; max-width: 62ch; }
.faq details a { color: var(--green); font-weight: 700; text-decoration: underline; text-decoration-color: var(--bronze); }

/* Contact form */
.contact-card {
  max-width: 560px;
  margin: 0 auto;
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-radius: 22px;
  box-shadow: var(--shadow);
  padding: clamp(24px, 4vw, 40px);
}
.cform { display: grid; gap: 14px; }
.cform label { display: grid; gap: 6px; font-size: 13px; font-weight: 700; color: var(--green); }
.cform input,
.cform textarea {
  font-family: var(--ui);
  font-size: 15px;
  color: var(--ink);
  background: var(--cream);
  border: 1.5px solid var(--line);
  border-radius: 12px;
  padding: 13px 15px;
  width: 100%;
}
.cform textarea { min-height: 130px; resize: vertical; }
.cform input:focus,
.cform textarea:focus { outline: none; border-color: var(--green); box-shadow: 0 0 0 4px rgba(27, 77, 62, 0.1); }
.cform .btn { justify-self: start; }
.form-note { margin-top: 14px; font-size: 13px; color: var(--mut); }
.form-done { display: none; text-align: center; padding: 26px 8px; }
.form-done.show { display: block; }
.form-done .mark {
  width: 56px; height: 56px; margin: 0 auto 16px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--green); color: #fff; font-size: 28px; font-weight: 800;
}
.form-done h2 { font-size: 24px; margin-bottom: 8px; }
.form-done p { color: var(--mut2); }
.contact-card.sent .cform,
.contact-card.sent .form-note { display: none; }

/* Phone field — intl-tel-input dressed in the brand. The widget wraps the
   input, so the input itself still inherits the .cform input styles above. */
.cfield { display: grid; gap: 6px; font-size: 13px; font-weight: 700; color: var(--green); }
.cfield .iti { width: 100%; }
.iti {
  --iti-border-color: var(--line);
  --iti-hover-color: var(--cream);
  --iti-country-selector-bg: transparent;
  --iti-icon-color: var(--mut2);
  font-family: var(--ui);
}
.iti input.iti__tel-input { font-family: var(--ui); }
.iti__selected-country:focus-visible { outline: 2px solid var(--green); outline-offset: -3px; border-radius: 10px; }
.iti__selected-dial-code { color: var(--mut2); font-weight: 600; }
.iti__country-list {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow);
}
.iti__country { padding: 9px 12px; font-size: 14.5px; color: var(--ink); }
.iti__country .iti__dial-code { color: var(--mut); }
.iti__search-input-wrapper { border-bottom: 1px solid var(--line-soft); background: var(--paper); }
.iti__search-input { font-family: var(--ui); font-size: 14.5px; color: var(--ink); }
.iti__no-results { color: var(--mut2); font-size: 14px; }

.field-error { font-size: 13px; font-weight: 600; color: #b3423a; }
.cfield.has-error input { border-color: #b3423a; box-shadow: 0 0 0 4px rgba(179, 66, 58, 0.08); }

/* About story */
.story { max-width: 680px; margin: 0 auto; display: grid; gap: 20px; }
.story p { font-size: clamp(16.5px, 2vw, 18.5px); line-height: 1.7; color: var(--ink); }
.story b { color: var(--green); }
.values .features { grid-template-columns: repeat(3, 1fr); }

@media (max-width: 900px) {
  .block { grid-template-columns: 1fr; }
  .block-flip .block-copy { order: 1; }
  .block-flip .block-card { order: 2; }
  .notes-grid { grid-template-columns: 1fr; }
  .values .features { grid-template-columns: 1fr; }
}

/* ---------------------------------------------------- reveal-on-scroll */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ---------------------------------------------------- responsive */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; }
  .hero-visual { order: -1; max-width: 460px; }
  .hero-copy .lede { max-width: none; }
  .steps { grid-template-columns: 1fr; }
  .features { grid-template-columns: repeat(2, 1fr); }
  .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 150px; }
  .gallery .g-wide { grid-column: span 2; }
  .gallery .g-tall { grid-row: span 2; }
}
@media (max-width: 560px) {
  /* Two-row header: brand on top, the nav wraps beneath — every page stays
     reachable on a phone instead of hiding the links. */
  .site-header { flex-direction: column; align-items: flex-start; gap: 10px; padding-top: 12px; padding-bottom: 12px; }
  .site-nav { width: 100%; justify-content: space-between; gap: 8px; }
  .site-nav > a:not(.btn) { font-size: 13.5px; }
  .btn-sm { padding: 8px 12px; font-size: 13px; }
  .features { grid-template-columns: 1fr; }
  .hero-copy h1 br { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .symbol-ring { animation: none; transform: rotate(-25deg); }
  .reveal { opacity: 1; transform: none; transition: none; }
  .gallery img { transition: none; }
  .name-ring { animation: none; transform: rotate(-25deg); }
}

/* ---------------------------------------------------- Arabic (RTL) pages */
/* The /ar/ pages set <html lang="ar" dir="rtl">. Flex/grid flip on their own;
   these overrides swap the Arabic type (Baloo Bhaijaan 2 is Baloo 2's Arabic
   sibling — the wordmark voice; Cairo carries body text), kill letter-spacing
   (Arabic is cursive — tracking breaks the joins), and mirror the handful of
   physically-positioned details. */
html[lang="ar"] {
  --ui: "Cairo", "Archivo", "Segoe UI", Tahoma, system-ui, sans-serif;
  --word: "Baloo Bhaijaan 2", "Cairo", "Segoe UI", Tahoma, sans-serif;
}
html[lang="ar"] body { line-height: 1.75; }
html[lang="ar"] h1, html[lang="ar"] h2, html[lang="ar"] h3 { letter-spacing: 0; line-height: 1.28; }
html[lang="ar"] .eyebrow { letter-spacing: 0; font-size: 13.5px; }
html[lang="ar"] .announce { letter-spacing: 0.04em; }
html[lang="ar"] .faq-group { letter-spacing: 0; font-size: 15px; }
html[lang="ar"] .star-card .star-note,
html[lang="ar"] .brand-tag,
html[lang="ar"] .store-btn small { letter-spacing: 0; }
html[lang="ar"] .hero-copy .lede { max-width: 34ch; }
html[lang="ar"] .ticks li { padding-left: 0; padding-right: 28px; }
html[lang="ar"] .ticks li::before { left: auto; right: 0; }
html[lang="ar"] .hero-chip { left: auto; right: 18px; }
html[lang="ar"] .hero-blob { inset: -8% auto auto -10%; }
html[lang="ar"] .store-btn { text-align: right; }
html[lang="ar"] .foot-ar { margin-left: 0; margin-right: 4px; }
/* Latin-only runs inside Arabic pages (the wordmark, ✦ rates, time slots)
   keep their Latin faces and left-to-right flow. */
html[lang="ar"] .brand-word,
html[lang="ar"] .foot-brand .brand-word { font-family: "Baloo 2", "Baloo Bhaijaan 2", sans-serif; }
html[lang="ar"] .ltr { direction: ltr; unicode-bidi: isolate; display: inline-block; }
/* The Arabic name rides ABOVE the Latin wordmark on /ar/ — same stack, swapped roles. */
html[lang="ar"] .brand-ar { font-family: var(--word); font-size: 15px; font-weight: 700; color: var(--green); }
html[lang="ar"] .brand-word-sub { font-size: 12.5px; color: var(--bronze-dark); font-weight: 700; }

/* v1.1.1 — the Wenut hare ornament (.lore-hare) joins the lore layer */
