:root {
  --paper: #FBF5E6;
  --paper-2: #F4EAD2;
  --butter: #F7DE8B;
  --butter-soft: #FCEFC2;
  --gold: #B8892B;
  --gold-deep: #8A6518;
  --espresso: #2C2016;
  --espresso-2: #3E2E20;
  --ink: #241A12;
  --ink-soft: #6B5944;
  --line: #E0D2AE;
  --serif: "Fraunces", Georgia, serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  --script: "Caveat", "Bradley Hand", cursive;
  --r: 22px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 999;
  opacity: 0.35;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
}

.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;
}

/* ---------- shared type ---------- */

.eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin: 0 0 18px;
}

.eyebrow-center { text-align: center; }
.eyebrow-light { color: var(--butter); }

.script-note {
  font-family: var(--script);
  font-size: 22px;
  color: var(--gold);
  margin: 18px 0 0;
  transform: rotate(-1.5deg);
}

.script-light { color: var(--butter); }

/* ---------- announce + header ---------- */

.announce {
  background: var(--butter);
  color: var(--gold-deep);
  text-align: center;
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  padding: 9px 16px;
}

.announce-dot { margin: 0 8px; opacity: 0.55; }

.site-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  max-width: 1180px;
  margin: 0 auto;
  padding: 26px 32px 0;
}

.wordmark {
  font-family: "Permanent Marker", cursive;
  font-weight: 400;
  font-size: 40px;
  letter-spacing: normal;
  color: var(--butter);
  -webkit-text-stroke: 1.8px var(--gold-deep);
  text-shadow: 3.5px 3.5px 0 var(--espresso);
  text-decoration: none;
  line-height: 1;
}

.site-nav {
  display: flex;
  gap: 26px;
}

.site-nav a {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
  text-decoration: none;
  padding-bottom: 3px;
  border-bottom: 1.5px solid transparent;
}

.site-nav a:hover { color: var(--ink); border-bottom-color: var(--gold); }

/* ---------- buttons ---------- */

.btn {
  display: inline-block;
  font-family: var(--sans);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 14px 26px;
  border-radius: 999px;
  text-decoration: none;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease;
  white-space: nowrap;
}

.btn-solid {
  background: var(--ink);
  color: var(--paper);
}

.btn-solid:hover {
  background: var(--gold-deep);
  transform: translateY(-1px);
}

.btn-line {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}

.btn-line:hover {
  background: var(--ink);
  color: var(--paper);
  transform: translateY(-1px);
}

/* ---------- hero ---------- */

.hero {
  max-width: 1180px;
  margin: 0 auto;
  padding: 64px 32px 88px;
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 56px;
  align-items: center;
}

.hero h1 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(44px, 5.6vw, 74px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin: 0 0 22px;
}

.hero h1 em {
  font-style: italic;
  font-weight: 400;
  color: var(--gold-deep);
}

.lede {
  font-size: 16.5px;
  color: var(--ink-soft);
  max-width: 430px;
  margin: 0 0 30px;
}

.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-art {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  align-items: start;
}

.hero-fig {
  position: relative;
  margin: 0;
  border-radius: var(--r);
  overflow: hidden;
  background: var(--paper-2);
}

.hero-fig img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-fig-a { aspect-ratio: 3 / 4.1; margin-top: 44px; }
.hero-fig-b { aspect-ratio: 3 / 4.5; }

.photo-pill {
  position: absolute;
  left: 12px;
  bottom: 12px;
  background: rgba(28, 20, 13, 0.62);
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
  backdrop-filter: blur(4px);
}

/* ---------- steps ---------- */

.steps {
  background: var(--butter-soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 72px 32px 78px;
}

.steps-inner {
  max-width: 1080px;
  margin: 0 auto;
}

.step-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 8px;
}

.step {
  flex: 1 1 0;
  max-width: 280px;
  text-align: center;
  padding: 0 8px;
}

.step-num {
  font-family: var(--serif);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--gold);
  display: block;
  margin-bottom: 10px;
}

.step h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 22px;
  line-height: 1.2;
  margin: 0 0 10px;
}

.step p {
  font-size: 14.5px;
  color: var(--ink-soft);
  margin: 0;
}

.step-arrow {
  flex: 0 0 90px;
  margin-top: 26px;
}

.step-arrow svg {
  width: 90px;
  height: 28px;
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.6;
  stroke-linecap: round;
  opacity: 0.75;
}

/* ---------- manifesto ---------- */

.manifesto {
  position: relative;
  background: var(--espresso);
  color: var(--paper);
  padding: 84px 32px 90px;
  overflow: hidden;
}

.ghost-word {
  position: absolute;
  top: -22px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--serif);
  font-size: clamp(140px, 22vw, 300px);
  font-weight: 600;
  color: #fff;
  opacity: 0.045;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.manifesto-inner {
  position: relative;
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: center;
}

.manifesto-fig {
  margin: 0;
  border-radius: var(--r);
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.manifesto-fig img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.manifesto blockquote {
  margin: 0;
}

.manifesto blockquote p {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(24px, 2.6vw, 33px);
  line-height: 1.28;
  letter-spacing: -0.01em;
  margin: 0;
}

.manifesto blockquote footer { margin-top: 14px; }

/* ---------- join ---------- */

.join {
  padding: 80px 32px 96px;
  max-width: 1180px;
  margin: 0 auto;
}

.join-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(30px, 3.6vw, 46px);
  line-height: 1.1;
  letter-spacing: -0.015em;
  text-align: center;
  margin: 0 0 46px;
}

.join-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.panel {
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  min-height: 520px;
  display: flex;
  align-items: flex-end;
  isolation: isolate;
}

.panel-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
  transition: transform 0.6s ease;
}

.panel:hover .panel-bg { transform: scale(1.04); }

.panel::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(to top, rgba(24,17,11,0.94) 8%, rgba(24,17,11,0.72) 46%, rgba(24,17,11,0.28) 100%);
}

.panel-body {
  padding: 34px 32px 32px;
  width: 100%;
  color: var(--paper);
}

.panel-body h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(26px, 2.5vw, 33px);
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin: 0 0 16px;
}

.panel-points {
  list-style: none;
  margin: 0 0 26px;
  padding: 0;
}

.panel-points li {
  position: relative;
  padding-left: 20px;
  font-size: 14.5px;
  color: rgba(251, 245, 230, 0.86);
  margin-bottom: 7px;
}

.panel-points li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--butter);
}

.panel-points strong { color: var(--butter); font-weight: 600; }

.panel-body h3:has(+ form) { margin-bottom: 30px; }

/* ---------- join forms ---------- */

.jf-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.jf input {
  flex: 1 1 170px;
  min-width: 0;
  padding: 14px 16px;
  border-radius: 999px;
  border: 1.5px solid rgba(251,245,230,0.32);
  background: rgba(251,245,230,0.1);
  color: var(--paper);
  font-family: var(--sans);
  font-size: 15px;
}

.jf input::placeholder { color: rgba(251,245,230,0.5); }

.jf input:focus {
  outline: none;
  border-color: var(--butter);
  background: rgba(251,245,230,0.16);
}

.panel .btn-solid {
  background: var(--butter);
  color: var(--ink);
}

.panel .btn-solid:hover { background: #fff; }

.jf-err {
  font-size: 13px;
  color: #F5B8A8;
  margin: 10px 0 0;
}

.jf-q {
  font-family: var(--serif);
  font-size: 18px;
  margin: 0 0 14px;
  color: var(--paper);
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.chip {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  padding: 9px 15px;
  border-radius: 999px;
  border: 1.5px solid rgba(251,245,230,0.34);
  background: transparent;
  color: rgba(251,245,230,0.9);
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.chip:hover { border-color: var(--butter); }

.chip[aria-pressed="true"] {
  background: var(--butter);
  border-color: var(--butter);
  color: var(--ink);
}

.jf-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.jf-skip {
  background: none;
  border: none;
  padding: 0;
  font-family: var(--sans);
  font-size: 13px;
  color: rgba(251,245,230,0.62);
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}

.jf-skip:hover { color: var(--butter); }

.jf-done-step { text-align: left; }

.tick {
  width: 40px;
  height: 40px;
  fill: none;
  stroke: var(--butter);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  margin-bottom: 10px;
}

.jf-confirm {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  margin: 0;
  color: var(--paper);
}

.jf-done-step .script-note { margin-top: 6px; }

/* ---------- footer ---------- */

.site-footer {
  position: relative;
  background: var(--paper-2);
  text-align: center;
  padding: 46px 32px 40px;
  margin-top: 0;
}

.scallop {
  position: absolute;
  top: -15px;
  left: 0;
  width: 100%;
  height: 16px;
  fill: var(--paper-2);
}

.footer-line {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin: 0 0 14px;
}

.footer-script {
  font-family: var(--script);
  font-size: 38px;
  color: var(--ink);
  margin: 0 0 10px;
}

.footer-meta {
  font-size: 12px;
  color: var(--ink-soft);
  margin: 0;
}

/* ---------- responsive ---------- */

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 48px 24px 64px;
    text-align: center;
  }
  .lede { margin-left: auto; margin-right: auto; }
  .hero-ctas { justify-content: center; }
  .hero-art { max-width: 460px; margin: 0 auto; }

  .step-list { flex-direction: column; align-items: center; gap: 34px; }
  .step { max-width: 380px; }
  .step-arrow { transform: rotate(72deg); margin: 0; flex: none; }

  .manifesto-inner { grid-template-columns: 1fr; gap: 34px; }
  .join-grid { grid-template-columns: 1fr; }
  .panel { min-height: 470px; }
}

/* ---------- chooser (entry page) ---------- */

.chooser {
  max-width: 1000px;
  margin: 0 auto;
  padding: 68px 32px 72px;
  text-align: center;
}

.chooser h1 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(36px, 4.4vw, 54px);
  line-height: 1.04;
  letter-spacing: -0.02em;
  margin: 0 0 16px;
}

.chooser h1 em { font-style: italic; font-weight: 400; color: var(--gold-deep); }

.chooser .lede { margin: 0 auto 10px; font-size: 16px; }

.chooser .script-note { margin: 0 0 40px; font-size: 24px; }

.choice-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }

.choice {
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  min-height: 440px;
  display: flex;
  align-items: flex-end;
  text-decoration: none;
  isolation: isolate;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.choice:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 38px rgba(44, 32, 22, 0.16);
}

.choice img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
  transition: transform 0.6s ease;
}

.choice::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(to top, rgba(24,17,11,0.93) 10%, rgba(24,17,11,0.58) 56%, rgba(24,17,11,0.2) 100%);
}

.choice:hover img { transform: scale(1.05); }

.choice-body { padding: 30px 28px; width: 100%; text-align: left; color: var(--paper); }

.choice-body h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(25px, 2.5vw, 32px);
  line-height: 1.1;
  margin: 0 0 8px;
}

.choice-body p { font-size: 14.5px; color: rgba(251,245,230,0.85); margin: 0 0 20px; }

.choice-go {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--butter);
  border-radius: 999px;
  padding: 13px 24px;
  transition: background 0.18s ease;
}

.choice:hover .choice-go { background: #fff; }

/* ---------- switch between sides ---------- */

.switch {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  text-decoration: none;
  border-bottom: 1.5px solid transparent;
  padding-bottom: 3px;
}

.switch:hover { color: var(--ink); border-bottom-color: var(--gold); }

/* ---------- embedded clip ---------- */

.clip {
  background: var(--butter-soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 70px 32px 76px;
}

.clip-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 56px;
  align-items: center;
}

.clip-copy h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(28px, 3.2vw, 40px);
  line-height: 1.1;
  letter-spacing: -0.015em;
  margin: 0 0 16px;
}

.clip-frame {
  width: 100%;
  max-width: 400px;
  aspect-ratio: 400 / 690;
  border: none;
  display: block;
  margin: 0 auto;
}

/* ---------- clip as the chef hero ---------- */

.hero-with-clip {
  grid-template-columns: 1fr 420px;
  grid-template-areas:
    "copy clip"
    "actions clip";
  grid-template-rows: auto 1fr;
  align-items: start;
  padding-top: 40px;
}

.hero-with-clip .hero-copy { grid-area: copy; padding-top: 8px; }
.hero-with-clip .clip-hero { grid-area: clip; }
.hero-with-clip .hero-actions { grid-area: actions; margin-top: 8px; }

.clip-hero { position: relative; }

.clip-hero .clip-frame { max-width: 420px; aspect-ratio: 420 / 725; }

.clip-cue {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 18px 0 0;
}

.clip-cue span {
  font-family: var(--script);
  font-size: 22px;
  color: var(--gold);
  transform: rotate(-1.5deg);
}

.clip-cue svg {
  width: 62px;
  height: 22px;
  flex: none;
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.6;
  stroke-linecap: round;
  opacity: 0.8;
}

@media (max-width: 900px) {
  .hero-with-clip {
    grid-template-columns: 1fr;
    grid-template-areas: "copy" "clip" "actions";
    padding-top: 26px;
    gap: 26px;
  }
  .hero-with-clip .hero-copy { padding-top: 0; }
  .hero-with-clip h1 { font-size: clamp(38px, 10vw, 52px); }
  .hero-with-clip .lede { margin-bottom: 0; }
  .hero-with-clip .hero-actions { margin-top: 0; justify-content: center; }
  .clip-hero .clip-frame { max-width: 400px; aspect-ratio: 400 / 690; }
  .clip-cue { justify-content: center; margin-top: 14px; }
  .clip-cue svg { transform: rotate(64deg); }
}

/* ---------- two ways to find your table ---------- */

.swipeways { padding: 56px 32px 8px; max-width: 1000px; margin: 0 auto; }

.swipeways-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(24px, 2.8vw, 32px);
  line-height: 1.15;
  letter-spacing: -0.01em;
  text-align: center;
  margin: 0 0 32px;
}

.swipeways-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

.sw-card { background: #fff; border: 1px solid var(--paper-2); border-radius: 18px; padding: 22px; text-align: center; }

.sw-kicker {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin: 0 0 18px;
}

.sw-kicker svg { width: 14px; height: 14px; flex: none; fill: none; stroke: var(--gold-deep); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

.sw-pill {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-deep);
  background: var(--butter-soft);
  border-radius: 999px;
  padding: 4px 10px;
  margin-bottom: 10px;
}

.sw-dish { font-family: var(--serif); font-weight: 500; font-size: 18px; color: var(--ink); margin: 0 0 16px; }

.sw-acts { display: flex; justify-content: center; gap: 16px; }

.sw-act {
  width: 46px; height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #fff;
  border: 1.5px solid var(--paper-2);
  box-shadow: 0 4px 12px rgba(44, 32, 22, 0.09);
}

.sw-act svg { width: 20px; height: 20px; fill: none; stroke-width: 2.2; stroke-linecap: round; }
.sw-act-no svg { stroke: #B98A7E; }
.sw-act-yes { background: var(--butter); border-color: var(--butter); }
.sw-act-yes svg { stroke: var(--ink); fill: var(--ink); stroke-width: 1; }

.sw-list { display: flex; flex-direction: column; gap: 10px; }

.sw-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--paper);
  border: 1px solid var(--paper-2);
  border-radius: 12px;
  padding: 12px 14px;
  text-align: left;
}

.sw-name { font-family: var(--serif); font-weight: 600; font-size: 15px; color: var(--ink); margin: 0; }
.sw-loc { font-size: 12px; color: var(--ink-soft); margin: 2px 0 0; }

.sw-open {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #2F6B4F;
  background: #E4F0E6;
  border-radius: 999px;
  padding: 5px 10px;
  flex: none;
}

.sw-open-dot { width: 6px; height: 6px; border-radius: 50%; background: #3E8A62; display: inline-block; }

.sw-caption { font-size: 13px; color: var(--ink-soft); margin: 16px 0 0; }

@media (max-width: 900px) {
  .swipeways-grid { grid-template-columns: 1fr; gap: 16px; }
}

@media (max-width: 560px) {
  .swipeways { padding: 48px 20px 4px; }
}

/* ---------- usp list ---------- */

.usp { padding: 76px 32px 36px; max-width: 1000px; margin: 0 auto; }

.usp h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(28px, 3.4vw, 42px);
  line-height: 1.1;
  letter-spacing: -0.015em;
  text-align: center;
  margin: 0;
}

.usp-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  row-gap: 22px;
  column-gap: 44px;
  margin-top: 36px;
  margin-left: auto;
  margin-right: auto;
  max-width: 900px;
}

.usp-item {
  display: grid;
  grid-template-columns: 7px 1fr;
  column-gap: 14px;
  align-items: start;
}

.usp-item::before {
  content: "";
  width: 7px;
  height: 7px;
  margin-top: 9px;
  background: var(--gold);
  transform: rotate(45deg);
}

.usp-item h3 { font-family: var(--serif); font-weight: 500; font-size: 18px; line-height: 1.25; margin: 0 0 5px; }
.usp-item p { font-size: 14.5px; color: var(--ink-soft); margin: 0; line-height: 1.5; }
.usp-item p em { font-style: italic; color: var(--ink); }

/* single-sided join */

.join-grid.single { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }

@media (max-width: 900px) {
  .choice-grid { grid-template-columns: 1fr; }
  .choice { min-height: 340px; }
  .clip-inner { grid-template-columns: 1fr; gap: 38px; }
  .clip-copy { text-align: center; }
  /* stacked list: centered, no marker, wavy divider between items only */
  .usp-grid {
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: 34px;
    max-width: 480px;
    background-image: none;
    padding-bottom: 0;
  }

  .usp-item {
    display: block;
    text-align: center;
    background-image: none;
    padding: 40px 4px;
    column-gap: 0;
  }

  .usp-item::before { display: none; }

  .usp-item:first-child { padding-top: 4px; }
  .usp-item:last-child { padding-bottom: 4px; }

  .usp-item:not(:last-child) {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='320' height='12' viewBox='0 0 320 12'%3E%3Cpath d='M2,6 C55,1 90,11 145,6 C185,2 215,10 260,5 C285,3 300,7 318,5' stroke='%238f8574' stroke-width='1.3' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: bottom center;
    background-size: 90% 12px;
  }

  .usp-item h3 { font-size: 24px; line-height: 1.2; margin: 0 0 10px; }
  .usp-item p { font-size: 15.5px; line-height: 1.6; max-width: 340px; margin: 0 auto; }
}

@media (max-width: 560px) {
  .chooser { padding: 40px 20px 64px; }
  .clip { padding: 56px 20px 60px; }
  .usp { padding: 60px 20px 30px; }
  .choice-body { padding: 24px 22px; }
}

@media (max-width: 560px) {
  .site-header { padding: 22px 20px 0; }
  .site-nav { gap: 16px; }
  .announce { font-size: 10px; letter-spacing: 0.1em; }
  .announce-dot { display: none; }
  .join { padding: 60px 20px 72px; }
  .steps { padding: 56px 20px 60px; }
  .manifesto { padding: 64px 20px 68px; }
  .panel-body { padding: 28px 22px 26px; }
  .footer-script { font-size: 32px; }
}
