/* ==========================================================================
   PartnerShe landing — bold flat color fields, oversized Fraunces display,
   pill buttons, marquee, sticker badges. Coral #FF6B4A primary, teal accent.
   ========================================================================== */

:root {
  --coral: #ff6b4a;
  --coral-deep: #e54d2e;
  --coral-dark: #c03a1e;
  --peach: #ffd0c2;
  --blush: #ffe8e0;
  --cream: #fff5f2;
  --teal: #14b8a6;
  --teal-deep: #0f766e;
  --teal-ink: #134e4a;
  --teal-mist: #f0fdf9;
  --ink: #33201a;
  --ink-deep: #241511;
  --ink-soft: #5c4038;
  --font-display: 'Fraunces', 'Georgia', serif;
  --font-body: 'Karla', 'Trebuchet MS', sans-serif;
  --radius-card: 28px;
  --shadow-sticker: 4px 4px 0 var(--ink);
  --measure: 34em;
}

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

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

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

h1,
h2,
h3,
p,
ul,
ol,
figure {
  margin: 0;
}

a {
  color: inherit;
}

:focus-visible {
  outline: 3px solid currentColor;
  outline-offset: 3px;
  border-radius: 4px;
}

::selection {
  background: var(--teal);
  color: var(--teal-ink);
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 5rem;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  z-index: 100;
  padding: 0.75rem 1.5rem;
  background: var(--ink);
  color: var(--cream);
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
}

.skip-link:focus-visible {
  top: 1rem;
  outline-color: var(--cream);
}

/* ---------- type helpers ---------- */
.kicker {
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.8125rem;
  color: var(--coral-dark);
  margin-bottom: 1rem;
}

.kicker--mint {
  color: var(--teal-mist);
}

.section__heading {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.4rem, 5.5vw, 4.25rem);
  line-height: 1.02;
  letter-spacing: -0.015em;
  text-wrap: balance;
}

.section__heading em {
  font-style: italic;
  font-weight: 600;
}

.section__lede {
  max-width: var(--measure);
  margin-top: 1.5rem;
  font-size: 1.1875rem;
}

/* ---------- pills ---------- */
.pill {
  display: inline-block;
  padding: 0.95rem 2.1rem;
  border-radius: 999px;
  font-weight: 800;
  font-size: 1.0625rem;
  text-decoration: none;
  text-align: center;
  border: 2.5px solid transparent;
  transition: transform 120ms ease, box-shadow 120ms ease;
}

@media (prefers-reduced-motion: no-preference) {
  .pill:hover {
    transform: translateY(-2px);
  }

  .pill:active {
    transform: translateY(0);
  }
}

.pill--ink {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
}

.pill--ink:hover {
  background: var(--ink-deep);
}

.pill--light {
  background: var(--cream);
  color: var(--ink);
  border-color: var(--cream);
}

.pill--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}

/* ---------- header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--coral);
  transition: box-shadow 200ms ease;
}

.site-header.is-scrolled {
  box-shadow: 0 4px 24px rgba(51, 32, 26, 0.25);
}

.site-header__inner {
  max-width: 76rem;
  margin: 0 auto;
  padding: 0.9rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
}

.brand__mark {
  width: 34px;
  height: auto;
}

.brand__word {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.45rem;
  letter-spacing: -0.01em;
}

.site-nav__menu {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}

.site-nav__menu > a:not(.pill) {
  text-decoration: none;
  font-weight: 700;
  padding: 0.25rem 0;
  border-bottom: 2.5px solid transparent;
}

.site-nav__menu > a:not(.pill):hover {
  border-bottom-color: var(--ink);
}

.site-nav__cta {
  padding: 0.65rem 1.5rem;
  font-size: 1rem;
}

.nav-toggle {
  display: none;
  align-items: center;
  gap: 0.55rem;
  background: transparent;
  border: 2.5px solid var(--ink);
  border-radius: 999px;
  padding: 0.5rem 1.1rem;
  font: inherit;
  font-weight: 800;
  color: var(--ink);
  cursor: pointer;
}

.nav-toggle__bar {
  width: 18px;
  height: 2.5px;
  background: currentColor;
  border-radius: 2px;
  position: relative;
}

.nav-toggle__bar::before,
.nav-toggle__bar::after {
  content: '';
  position: absolute;
  left: 0;
  width: 18px;
  height: 2.5px;
  background: currentColor;
  border-radius: 2px;
}

.nav-toggle__bar::before {
  top: -6px;
}

.nav-toggle__bar::after {
  top: 6px;
}

@media (max-width: 56em) {
  .nav-toggle {
    display: flex;
  }

  .site-nav__menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--coral);
    padding: 0.5rem 1.5rem 1.5rem;
    border-bottom: 3px solid var(--ink);
  }

  .site-nav__menu.is-open {
    display: flex;
  }

  .site-nav__menu > a:not(.pill) {
    padding: 0.9rem 0;
    border-bottom: 1px solid rgba(51, 32, 26, 0.2);
    font-size: 1.15rem;
  }

  .site-nav__cta {
    margin-top: 1.25rem;
  }
}

/* ---------- hero ---------- */
.hero {
  position: relative;
  background: var(--coral);
  overflow: hidden;
}

.hero__inner {
  max-width: 76rem;
  margin: 0 auto;
  padding: 4.5rem 1.5rem 7.5rem;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  align-items: center;
  gap: 3rem;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.8125rem;
  background: rgba(255, 245, 242, 0.55);
  border: 2px solid var(--ink);
  border-radius: 999px;
  padding: 0.45rem 1.1rem;
}

.hero__eyebrow .dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--teal-deep);
}

.hero__heading {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(3.1rem, 7.5vw, 6.25rem);
  line-height: 0.98;
  letter-spacing: -0.02em;
  margin-top: 1.75rem;
}

.hero__heading em {
  font-style: italic;
  font-weight: 600;
  color: var(--teal-ink);
}

.hero__sub {
  max-width: 30em;
  margin-top: 1.75rem;
  font-size: 1.25rem;
  font-weight: 500;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2.25rem;
}

.hero__note {
  margin-top: 1.4rem;
  font-weight: 700;
  font-size: 0.9375rem;
  color: var(--ink-deep);
}

.hero__wave {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  line-height: 0;
}

.hero__wave svg {
  width: 100%;
  height: clamp(28px, 5vw, 70px);
}

/* hero visual */
.hero__visual {
  position: relative;
  justify-self: center;
  padding: 1rem 2.5rem;
}

.phone {
  width: min(320px, 78vw);
  background: var(--ink);
  border-radius: 52px;
  padding: 14px;
  box-shadow: 0 32px 64px rgba(51, 32, 26, 0.35);
  rotate: 2deg;
}

.phone__screen {
  background: var(--cream);
  border-radius: 40px;
  overflow: hidden;
}

.phone__status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.6rem 1.4rem 0.2rem;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.phone__notch {
  width: 74px;
  height: 20px;
  background: var(--ink);
  border-radius: 999px;
}

.phone__appbar {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1.2rem;
  font-size: 1rem;
}

.feed-card {
  margin: 0.15rem 0.9rem 0.7rem;
  background: #fff;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(51, 32, 26, 0.14);
}

.feed-card__photo {
  position: relative;
}

.feed-card__photo .portrait {
  width: 100%;
  height: auto;
}

.feed-card__shade {
  position: absolute;
  inset: auto 0 0 0;
  height: 42%;
  background: linear-gradient(to top, rgba(36, 21, 17, 0.85), transparent);
}

.feed-card__meta {
  position: absolute;
  left: 1.1rem;
  bottom: 0.9rem;
  color: var(--cream);
}

.feed-card__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.1;
}

.feed-card__distance {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.8rem;
  font-weight: 700;
  margin-top: 0.25rem;
}

.feed-card__stage {
  position: absolute;
  top: 0.9rem;
  left: 0.9rem;
  background: var(--cream);
  color: var(--coral-dark);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
}

.feed-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  padding: 0.8rem 1rem 0.2rem;
}

.feed-card__tags span {
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  background: var(--blush);
  color: var(--coral-dark);
}

.feed-card__actions {
  display: flex;
  justify-content: center;
  gap: 1.6rem;
  padding: 0.8rem 0 1rem;
}

.feed-btn {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
}

.feed-btn--pass {
  border: 2.5px solid var(--peach);
  color: var(--coral-dark);
  background: #fff;
}

.feed-btn--like {
  background: var(--coral);
  color: var(--cream);
  box-shadow: 0 8px 18px rgba(229, 77, 46, 0.45);
}

.phone__tabs {
  display: flex;
  justify-content: space-around;
  padding: 0.55rem 0.8rem 1.1rem;
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--ink-soft);
}

.phone__tabs .is-active {
  color: var(--coral-dark);
  border-bottom: 3px solid var(--coral);
}

/* stickers */
.sticker {
  position: absolute;
  z-index: 2;
  background: var(--cream);
  border: 2.5px solid var(--ink);
  border-radius: 999px;
  box-shadow: var(--shadow-sticker);
  font-weight: 800;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.55rem 1.1rem;
  white-space: nowrap;
}

.sticker--verified {
  top: 7%;
  right: -0.5rem;
  rotate: 6deg;
  background: var(--teal);
  color: var(--ink-deep);
}

.sticker--coffee {
  bottom: 12%;
  left: -1.5rem;
  rotate: -5deg;
}

.sticker--art {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  translate: -50% 0;
  rotate: -4deg;
  font-size: 0.78rem;
  padding: 0.4rem 0.9rem;
}

.sticker--met {
  bottom: -1.1rem;
  right: 4%;
  rotate: -4deg;
  background: var(--teal);
  color: var(--ink-deep);
}

/* ---------- marquee ---------- */
.marquee {
  background: var(--ink);
  color: var(--cream);
  overflow: hidden;
  padding: 1.1rem 0;
}

.marquee__track {
  display: flex;
  width: max-content;
}

.marquee__group {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 600;
  font-size: clamp(1.3rem, 2.6vw, 1.9rem);
  letter-spacing: 0.01em;
  white-space: nowrap;
  padding-right: 0.8em;
}

.marquee__group i {
  font-style: normal;
  color: var(--coral);
  margin: 0 0.8em;
}

@media (prefers-reduced-motion: no-preference) {
  .marquee__track {
    animation: marquee-scroll 28s linear infinite;
  }
}

@keyframes marquee-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* ---------- sections ---------- */
.section {
  padding: clamp(4.5rem, 9vw, 7.5rem) 0;
}

.section__inner {
  max-width: 76rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section__inner--narrow {
  max-width: 52rem;
}

/* ---------- how it works ---------- */
.how {
  background: var(--cream);
}

.how__steps {
  list-style: none;
  padding: 0;
  margin-top: 3.5rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2.5rem 2rem;
}

.how-step__art {
  position: relative;
  border-radius: 999px 999px var(--radius-card) var(--radius-card);
  overflow: visible;
  margin-bottom: 1.6rem;
}

.how-step__art .portrait {
  width: 100%;
  height: auto;
  border-radius: 999px 999px var(--radius-card) var(--radius-card);
}

.how-step__art--b {
  rotate: 0deg;
}

.how-step h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.55rem;
  letter-spacing: -0.01em;
  display: flex;
  align-items: baseline;
  gap: 0.7rem;
}

.how-step__num {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--cream);
  background: var(--coral-deep);
  border-radius: 50%;
  width: 1.9rem;
  height: 1.9rem;
  display: inline-grid;
  place-items: center;
  flex-shrink: 0;
  translate: 0 -0.2rem;
}

.how-step p {
  margin-top: 0.8rem;
  color: var(--ink-soft);
}

/* ---------- life stages ---------- */
.stages {
  background: var(--teal-ink);
  color: var(--teal-mist);
}

.stages .section__heading em {
  color: var(--teal);
}

.stages .section__lede {
  color: #cbe8e2;
}

.stages__grid {
  list-style: none;
  padding: 0;
  margin-top: 3.5rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
}

.stage-card {
  background: var(--cream);
  color: var(--ink);
  border-radius: var(--radius-card);
  padding: 1.8rem 1.7rem;
}

.stage-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.45rem;
  letter-spacing: -0.01em;
}

.stage-card p {
  margin-top: 0.6rem;
  color: var(--ink-soft);
  font-size: 1rem;
}

.stage-card--bridge {
  background: var(--teal);
  color: var(--teal-ink);
}

.stage-card--bridge p {
  color: #0c3f3b;
}

.stages__soon {
  margin-top: 2.5rem;
  border: 2.5px dashed rgba(240, 253, 249, 0.55);
  border-radius: var(--radius-card);
  padding: 1.6rem 1.8rem;
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  flex-wrap: wrap;
}

.stages__soon-badge {
  flex-shrink: 0;
  background: var(--teal);
  color: var(--ink-deep);
  border-radius: 999px;
  padding: 0.45rem 1rem;
  font-weight: 800;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  rotate: -2deg;
}

.stages__soon p {
  flex: 1 1 24em;
  color: #cbe8e2;
  font-size: 1.05rem;
}

.stages__soon strong {
  color: var(--teal-mist);
}

/* ---------- safety ---------- */
.safety {
  background: #fff;
}

.safety__grid {
  margin-top: 3.5rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.4rem;
}

.safety-card {
  border: 2.5px solid var(--ink);
  border-radius: var(--radius-card);
  padding: 2rem 1.9rem;
  background: var(--cream);
  box-shadow: 6px 6px 0 var(--peach);
}

.safety-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: -0.01em;
}

.safety-card p {
  margin-top: 0.8rem;
  color: var(--ink-soft);
}

.bucket-demo {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.2rem !important;
}

.chip {
  font-size: 0.85rem;
  font-weight: 800;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
}

.chip--ok {
  background: var(--teal-mist);
  color: var(--teal-ink);
  border: 2px solid var(--teal-deep);
}

.chip--no {
  background: var(--blush);
  color: var(--coral-dark);
  border: 2px dashed var(--coral-dark);
}

/* ---------- venues ---------- */
.venues {
  background: var(--blush);
}

.venues__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 4rem;
  align-items: center;
}

.venues__points {
  list-style: none;
  padding: 0;
  margin-top: 1.8rem;
  display: grid;
  gap: 0.75rem;
  font-weight: 700;
}

.venues__points li {
  display: flex;
  align-items: baseline;
  gap: 0.7rem;
}

.venues__points li::before {
  content: '✽';
  color: var(--coral-deep);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.venues__visual {
  position: relative;
  justify-self: center;
  width: min(400px, 100%);
}

.chat-mock {
  background: #fff;
  border-radius: var(--radius-card);
  box-shadow: 0 24px 48px rgba(51, 32, 26, 0.18);
  overflow: hidden;
  rotate: -1.5deg;
}

.chat-mock__header {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem 1.4rem;
  background: var(--coral);
}

.chat-mock__header small {
  display: block;
  font-weight: 700;
  font-size: 0.78rem;
  color: var(--ink-deep);
}

.chat-mock__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  overflow: hidden;
  border: 2.5px solid var(--cream);
  flex-shrink: 0;
}

.chat-mock__body {
  padding: 1.4rem;
  display: grid;
  gap: 0.8rem;
}

.bubble {
  max-width: 85%;
  padding: 0.75rem 1.1rem;
  border-radius: 22px;
  font-size: 0.98rem;
  font-weight: 500;
}

.bubble--in {
  background: var(--blush);
  border-bottom-left-radius: 6px;
  justify-self: start;
}

.bubble--out {
  background: var(--teal-mist);
  border: 1.5px solid var(--teal);
  border-bottom-right-radius: 6px;
  justify-self: end;
}

.venue-card {
  border: 2.5px solid var(--ink);
  border-radius: 20px;
  padding: 1rem 1.1rem;
  display: grid;
  gap: 0.8rem;
  background: var(--cream);
}

.venue-card__label {
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--teal-deep);
}

.venue-card__row {
  display: flex;
  gap: 0.8rem;
  align-items: center;
}

.venue-card__row small {
  display: block;
  color: var(--ink-soft);
  font-weight: 600;
  font-size: 0.82rem;
}

.venue-card__thumb {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  overflow: hidden;
  flex-shrink: 0;
}

.venue-card__btn {
  background: var(--ink);
  color: var(--cream);
  border-radius: 999px;
  text-align: center;
  font-weight: 800;
  font-size: 0.9rem;
  padding: 0.6rem;
}

/* ---------- banner ---------- */
.banner {
  background: var(--coral);
  text-align: center;
  padding: clamp(5rem, 10vw, 8.5rem) 1.5rem;
}

.banner__heading {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(3rem, 8vw, 6.5rem);
  line-height: 0.98;
  letter-spacing: -0.02em;
}

.banner__heading em {
  font-style: italic;
  font-weight: 600;
  color: var(--teal-ink);
}

.banner__sub {
  margin-top: 1.4rem;
  font-size: 1.25rem;
  font-weight: 600;
}

.banner__actions {
  margin-top: 2.4rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1.2rem;
}

.banner__ios {
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.85rem;
}

/* ---------- faq ---------- */
.faq {
  background: var(--cream);
}

.faq__list {
  margin-top: 3rem;
  display: grid;
  gap: 1rem;
}

.faq-item {
  border: 2.5px solid var(--ink);
  border-radius: 22px;
  background: #fff;
  overflow: hidden;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: -0.01em;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 1.5rem;
  line-height: 1;
  color: var(--coral-deep);
  flex-shrink: 0;
}

.faq-item[open] summary::after {
  content: '–';
}

.faq-item p {
  padding: 0 1.5rem 1.4rem;
  color: var(--ink-soft);
}

.faq-item a {
  color: var(--coral-dark);
  font-weight: 700;
}

/* ---------- footer ---------- */
.site-footer {
  background: var(--ink-deep);
  color: var(--cream);
  padding: 4.5rem 0 2rem;
  overflow: hidden;
}

.site-footer__inner {
  max-width: 76rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.site-footer__cols {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) repeat(3, minmax(0, 1fr));
  gap: 2.5rem;
  padding-bottom: 3.5rem;
  border-bottom: 1px solid rgba(255, 245, 242, 0.2);
}

.site-footer__blurb p {
  margin-top: 1rem;
  max-width: 22em;
  color: #d9beb2;
}

.site-footer__cols nav {
  display: grid;
  gap: 0.65rem;
  align-content: start;
}

.site-footer__cols h3 {
  font-size: 0.8125rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--coral);
  margin-bottom: 0.4rem;
}

.site-footer__cols nav a {
  text-decoration: none;
  font-weight: 600;
  color: var(--cream);
  justify-self: start;
  overflow-wrap: anywhere;
  min-width: 0;
  max-width: 100%;
}

.site-footer__cols nav a:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.site-footer__wordmark {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(3.4rem, 12.5vw, 11.5rem);
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--coral);
  text-align: center;
  margin-top: 3rem;
  white-space: nowrap;
}

.site-footer__legal {
  text-align: center;
  margin-top: 1.5rem;
  font-size: 0.9rem;
  color: #d9beb2;
}

/* ---------- reveal on scroll ---------- */
@media (prefers-reduced-motion: no-preference) {
  html.js .reveal {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity 600ms ease, transform 600ms cubic-bezier(0.2, 0.7, 0.3, 1);
  }

  html.js .reveal.is-in {
    opacity: 1;
    transform: none;
  }
}

/* ---------- responsive ---------- */
@media (max-width: 64em) {
  .hero__inner {
    grid-template-columns: 1fr;
    padding-top: 3.5rem;
    padding-bottom: 6.5rem;
    gap: 4rem;
  }

  .hero__visual {
    padding: 1rem 1.5rem;
  }

  .how__steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .stages__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .venues__inner {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }
}

@media (max-width: 40em) {
  body {
    font-size: 1rem;
  }

  .how__steps {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .how-step__art {
    max-width: 330px;
  }

  .stages__grid,
  .safety__grid {
    grid-template-columns: 1fr;
  }

  .sticker--coffee {
    left: -0.25rem;
  }

  .sticker--verified {
    right: 0;
  }

  .site-footer__cols {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .site-footer__blurb {
    grid-column: 1 / -1;
  }
}

/* ===== RTL (he) =====
   The Hebrew page (he/index.html) sets <html lang="he" dir="rtl">.
   Flex/grid layouts mirror automatically; these overrides cover Hebrew
   typography (Fraunces/Karla carry no Hebrew glyphs) and the few physical
   properties that read wrong mirrored. */

html[lang='he'] {
  --font-display: 'Frank Ruhl Libre', 'Fraunces', 'Georgia', serif;
  --font-body: 'Heebo', 'Karla', 'Arial Hebrew', sans-serif;
}

/* Hebrew has no italics — fake obliques look broken in Frank Ruhl Libre. */
html[lang='he'] em,
html[lang='he'] .marquee__group {
  font-style: normal;
}

/* Tracking tuned for Latin uppercase reads gappy in Hebrew. */
html[lang='he'] .kicker,
html[lang='he'] .feed-card__stage,
html[lang='he'] .stages__soon-badge,
html[lang='he'] .venue-card__label {
  letter-spacing: 0;
}

/* Physical offsets that anchor text overlays to the reading edge. */
[dir='rtl'] .skip-link {
  left: auto;
  right: 1rem;
}

[dir='rtl'] .feed-card__meta {
  left: auto;
  right: 1.1rem;
}

[dir='rtl'] .feed-card__stage {
  left: auto;
  right: 0.9rem;
}

[dir='rtl'] .marquee__group {
  padding-right: 0;
  padding-left: 0.8em;
}
