/* ============================================================
   THE OMAKASE PASS — styles.css
   Mobile-first (~390px), then enhanced for desktop.
   ============================================================ */

/* ---- 1. DESIGN TOKENS -------------------------------------- */
:root {
  --rice: #F7F3EC;        /* warm rice-white — page background */
  --ink: #1C1A17;         /* near-black — primary text */
  --forest: #2D3E31;      /* deep pine green — accent, buttons, links */
  --forest-deep: #1F2B22; /* hover states, dark sections */
  --vermillion: #B5442E;  /* muted red — hanko "sun" stamp detail ONLY */
  --stone: #E8E2D6;       /* warm light grey — cards, dividers */

  --font-display: "Shippori Mincho", Georgia, "Times New Roman", serif;
  --font-body: "Zen Kaku Gothic New", system-ui, -apple-system, sans-serif;

  --maxw: 1100px;         /* outer content width on desktop */
  --prosew: 680px;        /* narrow width for reading blocks */

  --shadow-card: 0 10px 30px rgba(28, 26, 23, 0.10);
}

/* ---- 2. RESET / BASE --------------------------------------- */
*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--rice);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1.0625rem;   /* ~17px */
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.1;
  margin: 0;
}

p { margin: 0 0 1.2em; }
p:last-child { margin-bottom: 0; }

a { color: var(--forest); }

/* Visible keyboard focus for everyone using Tab */
:focus-visible {
  outline: 3px solid var(--forest);
  outline-offset: 3px;
  border-radius: 2px;
}

/* Skip link — hidden until focused */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--forest);
  color: var(--rice);
  padding: 0.75rem 1rem;
  z-index: 100;
  text-decoration: none;
  border-radius: 0 0 6px 0;
}
.skip-link:focus { left: 0; }

/* ---- 3. LAYOUT HELPERS ------------------------------------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: 1.5rem;
}

.section { padding: 4.5rem 0; }

.prose {
  max-width: var(--prosew);
  margin-inline: auto;
  padding-inline: 1.5rem;
}

.eyebrow {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--forest);
  margin-bottom: 1.25rem;
}
.eyebrow--light { color: var(--stone); opacity: 0.85; }

/* ---- 4. BUTTONS -------------------------------------------- */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 0.01em;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid transparent;
  border-radius: 4px;
  padding: 0.9rem 1.6rem;
  transition: background-color 0.18s ease, transform 0.18s ease, border-color 0.18s ease;
}

.btn--primary {
  background: var(--forest);
  color: var(--rice);
}
.btn--primary:hover {
  background: var(--forest-deep);
  transform: translateY(-1px);
}
.btn--primary:active { transform: translateY(0); }
.btn--primary:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none;
}

/* Light-on-dark ghost button (used in the For Chefs dark section) */
.btn--ghost-light {
  background: transparent;
  color: var(--rice);
  border-color: rgba(247, 243, 236, 0.5);
}
.btn--ghost-light:hover {
  background: rgba(247, 243, 236, 0.08);
  border-color: var(--rice);
  transform: translateY(-1px);
}

.btn--full { width: 100%; text-align: center; }

/* ============================================================
   5. HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  color: var(--rice);
}

/* Background image sits behind everything. A dark indigo fallback
   shows through until /images/hero.jpg is supplied. */
.hero__bg {
  position: absolute;
  inset: 0;
  background-color: var(--forest-deep);
  background-image: url("images/hero.jpg");
  background-size: cover;
  background-position: center;
  z-index: 0;
}

/* Gradient overlay keeps text readable over the photo */
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(28, 26, 23, 0.88) 0%,
    rgba(28, 26, 23, 0.62) 38%,
    rgba(28, 26, 23, 0.25) 68%,
    rgba(28, 26, 23, 0.10) 100%
  );
  z-index: 1;
}

.hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding: 1.5rem 1.5rem 3rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.wordmark {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding-top: 1rem;
}

/* Top bar: wordmark on the left, menu button on the right */
.hero__topbar {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

/* ---- SITE MENU (hero, top-right) ---- */
.menu { position: relative; }

.menu__btn {
  appearance: none;
  -webkit-appearance: none;
  background: transparent;
  border: 0;
  color: var(--rice);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  padding: 1rem 0 0.35rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.menu__chevron {
  transition: transform 0.2s ease;
}
.menu__btn[aria-expanded="true"] .menu__chevron {
  transform: rotate(180deg);
}

.menu__panel {
  position: absolute;
  top: calc(100% + 0.4rem);
  right: 0;
  min-width: 190px;
  margin: 0;
  padding: 0.4rem 0;
  list-style: none;
  background: var(--rice);
  border-radius: 8px;
  box-shadow: var(--shadow-card);
  z-index: 20;
}
.menu__panel[hidden] { display: none; }
.menu__panel li { margin: 0; }
.menu__panel a {
  display: block;
  padding: 0.6rem 1.2rem;
  color: var(--ink);
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 0.95rem;
  letter-spacing: 0;
  text-transform: none;
}
.menu__panel a:hover,
.menu__panel a:focus-visible {
  background: var(--stone);
  color: var(--forest);
}

@media (prefers-reduced-motion: reduce) {
  .menu__chevron { transition: none; }
}

.hero__content {
  width: 100%;
  max-width: 620px;
  margin-top: auto;
  margin-bottom: auto;
}

.hero__eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(247, 243, 236, 0.82);
  margin-bottom: 1.25rem;
}

.hero__headline {
  font-size: clamp(1.9rem, 7.5vw, 4.5rem);
  font-weight: 600;
  margin-bottom: 1.1rem;
}

.hero__subhead {
  font-size: 1.075rem;
  line-height: 1.55;
  max-width: 34em;
  margin-bottom: 1.8rem;
  color: rgba(247, 243, 236, 0.92);
}

/* Scroll cue — a thin descending line */
.scroll-cue {
  position: absolute;
  bottom: 1.4rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: block;
  width: 24px;
  height: 40px;
}
.scroll-cue__line {
  display: block;
  width: 1px;
  height: 100%;
  margin-inline: auto;
  background: rgba(247, 243, 236, 0.6);
}

/* ============================================================
   6. PROPOSITION
   ============================================================ */
.proposition { padding-top: 5.5rem; padding-bottom: 5.5rem; }
.proposition p { font-size: 1.15rem; }
.proposition em { font-style: italic; }

/* ============================================================
   7. EXPERIENCES — the two Pass / ticket cards
   ============================================================ */
.experiences { background: var(--rice); }

/* Intro that frames the three cards as one service, three formats. */
.experiences__intro {
  max-width: var(--prosew);
  margin: 0 auto 3rem;
  text-align: center;
}
.experiences__headline {
  font-size: clamp(1.8rem, 5vw, 2.6rem);
  margin-bottom: 1rem;
}
.experiences__sub {
  font-size: 1.1rem;
  color: rgba(28, 26, 23, 0.8);
  max-width: 36em;
  margin: 0 auto;
}

/* "Signature" flag on the flagship card. Forest, never vermillion: the
   hanko is the one vermillion mark per view. */
.pass-card__flag {
  display: inline-block;
  align-self: flex-start;
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--forest);
  border: 1px solid rgba(45, 62, 49, 0.35);
  border-radius: 3px;
  padding: 0.28rem 0.55rem;
  margin-bottom: 0.85rem;
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.pass-card {
  position: relative;
  background: var(--stone);
  border-radius: 8px;
  box-shadow: var(--shadow-card);
  overflow: hidden;
  /* Perforated left edge — a dotted "tear line" like a real ticket */
  border-left: 2px dashed rgba(28, 26, 23, 0.28);
}

/* Little punched notches at the top and bottom of the tear line */
.pass-card::before,
.pass-card::after {
  content: "";
  position: absolute;
  left: -9px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--rice);
  z-index: 2;
}
.pass-card::before { top: -8px; }
.pass-card::after { bottom: -8px; }

.pass-card__img {
  aspect-ratio: 3 / 2;
  background: var(--forest-deep);
  background-size: cover;
  background-position: center;
  /* placeholder label when no image is present */
  display: flex;
  align-items: center;
  justify-content: center;
}
.pass-card__img--date { background-image: url("images/date.jpg"); }
.pass-card__img--tasting { background-image: url("images/tasting.jpg"); }
.pass-card__img--party { background-image: url("images/party.jpg"); }

.pass-card__body { padding: 1.75rem 1.6rem 2rem; }

.pass-card__eyebrow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--forest);
  margin-bottom: 1rem;
}

/* Hanko stamp — small vermillion circle with "OP" */
.hanko {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  color: var(--vermillion);
}
.hanko__text {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 34px;
  fill: var(--vermillion);
  letter-spacing: 0.02em;
}

.pass-card__title {
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
}
.pass-card__desc { margin-bottom: 1.1rem; }
.pass-card__price {
  font-weight: 500;
  margin-bottom: 0.4rem;
}
.pass-card__note {
  font-size: 0.9rem;
  color: rgba(28, 26, 23, 0.7);
  margin-bottom: 1.4rem;
}

/* Detail "stub": minimum, guests, and (last) price per head. Pinned to the
   bottom of the card so all three stubs align into one clean row, and led
   by a dashed rule that echoes the ticket's perforated edge. Price sits last
   and quiet, so the card leads with the experience and the occasion. */
.pass-card__specs {
  margin: 0 0 1.4rem;
  padding-top: 1.2rem;
  border-top: 1px dashed rgba(28, 26, 23, 0.28);
}
.pass-card__specs .spec {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding: 0.4rem 0;
}
.pass-card__specs dt {
  margin: 0;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(28, 26, 23, 0.5);
}
.pass-card__specs dd {
  margin: 0;
  font-size: 1rem;
  text-align: right;
  color: var(--ink);
}
/* The price is the last, quiet line: a touch of weight, no size jump. */
.pass-card__specs .spec--price dd { font-weight: 500; }

.pricing-note {
  text-align: center;
  font-size: 0.85rem;
  color: rgba(28, 26, 23, 0.6);
  max-width: 34em;
  margin: 2.25rem auto 0;
}

/* ============================================================
   8. TRUST BLOCK (dark section)
   ============================================================ */
.trust {
  background: var(--forest-deep);
  color: var(--rice);
}
.trust__headline {
  font-size: clamp(1.8rem, 5vw, 2.6rem);
  margin-bottom: 1.2rem;
}
.trust p { color: rgba(247, 243, 236, 0.9); }

/* Placeholder row for future founding-chef cards */
.chef-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 2rem;
}

/* ============================================================
   9. HOW IT WORKS
   ============================================================ */
.how__headline {
  font-size: clamp(1.8rem, 5vw, 2.6rem);
  text-align: center;
  max-width: var(--prosew);
  margin: 0 auto 2.75rem;
}
.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  max-width: var(--prosew);
  margin-inline: auto;
}
.step { position: relative; }
.step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.4rem;
  height: 2.4rem;
  border: 1px solid var(--forest);
  border-radius: 50%;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--forest);
  margin-bottom: 0.9rem;
}
.step__title {
  font-size: 1.35rem;
  margin-bottom: 0.4rem;
}
.step__text {
  color: rgba(28, 26, 23, 0.75);
  max-width: 30em;
}

/* ============================================================
   10. WAITLIST FORM
   ============================================================ */
.waitlist { background: var(--stone); }
.waitlist__headline {
  font-size: clamp(1.9rem, 6vw, 2.8rem);
  margin-bottom: 0.8rem;
}
.waitlist__sub {
  font-size: 1.1rem;
  color: rgba(28, 26, 23, 0.8);
  margin-bottom: 2.25rem;
}

.waitlist-form {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  background: var(--rice);
  padding: 1.75rem 1.5rem 2rem;
  border-radius: 8px;
  box-shadow: var(--shadow-card);
}
.field { display: flex; flex-direction: column; gap: 0.4rem; }
.field label {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.field__opt { font-weight: 400; color: rgba(28, 26, 23, 0.55); }

.field input,
.field select,
.field textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
  background: var(--rice);
  border: 1px solid rgba(28, 26, 23, 0.25);
  border-radius: 4px;
  padding: 0.7rem 0.8rem;
}
.field textarea {
  min-height: 6rem;
  resize: vertical;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--forest);
  outline: 2px solid var(--forest);
  outline-offset: 1px;
}

.form-note {
  text-align: center;
  font-size: 0.85rem;
  color: rgba(28, 26, 23, 0.6);
  margin: 0.25rem 0 0;
}

/* ============================================================
   11. FOR CHEFS (dark section)
   ============================================================ */
.for-chefs {
  background: var(--forest);
  color: var(--rice);
}
.for-chefs__headline {
  font-size: clamp(1.8rem, 5vw, 2.6rem);
  margin-bottom: 1.2rem;
}
.for-chefs p {
  color: rgba(247, 243, 236, 0.9);
  margin-bottom: 1.8rem;
}

/* ============================================================
   12. FOOTER
   ============================================================ */
.footer {
  background: var(--ink);
  color: var(--rice);
  padding: 3rem 0;
}
.footer__inner {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.footer__brand {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin: 0;
}
.footer__descriptor {
  display: block;
  margin-top: 0.3rem;
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: rgba(247, 243, 236, 0.6);
}
.footer__links,
.footer__quiet {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
}
.footer__links a { color: var(--rice); }
.footer__quiet a {
  color: rgba(247, 243, 236, 0.6);
  font-size: 0.9rem;
}
.footer a { text-decoration: none; }
.footer a:hover { text-decoration: underline; }
.footer__copy {
  font-size: 0.8rem;
  color: rgba(247, 243, 236, 0.45);
  margin: 0.5rem 0 0;
}

/* ============================================================
   13. STANDALONE PAGE (omakase.html) helpers
   ============================================================ */
.page {
  max-width: var(--prosew);
  margin-inline: auto;
  padding: 4rem 1.5rem 5rem;
}
.page h1 {
  font-size: clamp(2rem, 7vw, 3rem);
  margin-bottom: 1.5rem;
}
.page h2 {
  font-size: clamp(1.5rem, 4vw, 2rem);
  margin: 3rem 0 1rem;
}
.page p { font-size: 1.1rem; }
.back-link {
  display: inline-block;
  margin-top: 2rem;
  font-weight: 500;
}

/* ============================================================
   13a. LOCATIONS HUB (/locations)
   A directory of the cities we serve, each linking to its city page.
   ============================================================ */
.loc-grid {
  list-style: none;
  margin: 2.5rem 0 0;
  padding: 0;
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 640px) {
  .loc-grid { grid-template-columns: 1fr 1fr; }
}
.loc-card {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1.6rem 1.5rem;
  background: var(--stone);
  border-radius: 8px;
  box-shadow: var(--shadow-card);
  text-decoration: none;
  color: var(--ink);
  transition: transform 0.18s ease;
}
.loc-card:hover { transform: translateY(-2px); }
.loc-card__status {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(28, 26, 23, 0.55);
}
.loc-card__status--live { color: var(--forest); }
.loc-card__city {
  font-family: var(--font-display);
  font-size: 1.6rem;
  line-height: 1.1;
}
.loc-card__area {
  font-size: 0.95rem;
  color: rgba(28, 26, 23, 0.7);
}
.loc-card__go {
  margin-top: 0.4rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--forest);
}

/* ============================================================
   13b. EXPERIENCE PAGES (/counter-for-two, /omakase-table, /sushi-party)
   Built on the .page prose column, with a lead image and details.
   ============================================================ */
.exp__img {
  width: 100%;
  /* A constrained banner so the image supports the copy rather than
     dominating it — details stay near the top of the page. */
  height: clamp(200px, 34vh, 340px);
  object-fit: cover;
  object-position: center;
  border-radius: 8px;
  box-shadow: var(--shadow-card);
  margin: 1.5rem 0 2rem;
}
.exp__lede { font-size: 1.2rem; }
.exp__price {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--forest);
  margin: 0 0 0.4rem;
}
.exp__note {
  font-size: 0.95rem;
  color: rgba(28, 26, 23, 0.65);
  margin-bottom: 2rem;
}
.exp__cta { margin-top: 2.5rem; }
.exp__cta .btn { margin-bottom: 1rem; }
.exp__pricing-note {
  font-size: 0.85rem;
  color: rgba(28, 26, 23, 0.6);
  margin: 0;
}

/* Subtle "explore" link on the homepage experience cards */
.pass-card__link {
  display: inline-block;
  margin-bottom: 1.1rem;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
}
.pass-card__link:hover { text-decoration: underline; }

/* ============================================================
   FOUNDER'S NOTE
   ============================================================ */
.founder { background: var(--stone); }
.founder__body { font-size: 1.15rem; }
.founder__signature {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.9rem;
}
.founder__photo {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  flex: 0 0 auto;
  box-shadow: 0 4px 14px rgba(28, 26, 23, 0.15);
}
.founder__sign {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(28, 26, 23, 0.55);
}

/* ============================================================
   FAQ (native <details> accordion)
   ============================================================ */
.faq__headline {
  font-size: clamp(1.8rem, 5vw, 2.6rem);
  margin-bottom: 2rem;
}
.faq__list { border-top: 1px solid rgba(28, 26, 23, 0.14); }
.faq__item { border-bottom: 1px solid rgba(28, 26, 23, 0.14); }
.faq__item summary {
  list-style: none;
  cursor: pointer;
  position: relative;
  padding: 1.2rem 2.25rem 1.2rem 0;
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--ink);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "+";
  position: absolute;
  right: 0.1rem;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1;
  color: var(--forest);
}
.faq__item[open] summary::after { content: "–"; }
.faq__item summary:focus-visible {
  outline: 3px solid var(--forest);
  outline-offset: 3px;
  border-radius: 2px;
}
.faq__answer {
  padding: 0 0 1.5rem;
  max-width: 62ch;
  color: rgba(28, 26, 23, 0.78);
}
.faq__more {
  margin-top: 1.6rem;
  font-weight: 500;
}
.faq__more a { text-decoration: none; }
.faq__more a:hover { text-decoration: underline; }

/* ============================================================
   FOR CHEFS teaser (consumer homepage)
   ============================================================ */
.for-chefs__line {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 4vw, 1.9rem);
  line-height: 1.3;
  margin-bottom: 1.8rem;
}

/* ============================================================
   CHEFS PAGE (/chefs.html) — benefit list + form subtext
   ============================================================ */
.benefit-list {
  list-style: none;
  margin: 2.25rem 0 0;
  padding: 0;
  display: grid;
  gap: 1.6rem;
}
.benefit-list li {
  position: relative;
  padding-left: 1.6rem;
}
.benefit-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--vermillion);
}
.benefit-list strong { font-weight: 500; color: var(--ink); }
.form-subtext {
  text-align: center;
  font-size: 0.85rem;
  color: rgba(28, 26, 23, 0.6);
  margin: 0.75rem 0 0;
}
.form-success {
  text-align: center;
  font-family: var(--font-display);
  font-size: 1.3rem;
  line-height: 1.35;
  color: var(--forest);
  margin: 0;
  padding: 1.25rem 0;
}
.form-error {
  text-align: center;
  font-size: 0.9rem;
  color: var(--vermillion);
  margin: 0.9rem 0 0;
}

/* ============================================================
   13c. STICKY MOBILE CTA
   Fixed to the bottom on small screens; revealed on scroll by JS.
   Hidden entirely on desktop, where the inline CTAs are always near.
   ============================================================ */
.sticky-cta {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 50;
  text-align: center;
  box-shadow: 0 8px 24px rgba(28, 26, 23, 0.28);
  /* Hidden until JS adds .is-visible */
  opacity: 0;
  visibility: hidden;
  transform: translateY(140%);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
}
.sticky-cta.is-visible {
  opacity: 1;
  visibility: visible;
  transform: none;
}
/* Desktop: the page CTAs are never far, so the sticky bar isn't needed. */
@media (min-width: 720px) {
  .sticky-cta { display: none; }
}
/* Respect reduced-motion: appear/disappear without the slide. */
@media (prefers-reduced-motion: reduce) {
  .sticky-cta { transition: opacity 0.2s ease, visibility 0.2s; transform: none; }
}

/* ============================================================
   14. MOTION — only for users who haven't asked to reduce it
   ============================================================ */
@media (prefers-reduced-motion: no-preference) {
  /* Elements start slightly lowered + transparent... */
  .reveal,
  .reveal-step { opacity: 0; transform: translateY(24px); }
  .reveal-hero { opacity: 0; transform: translateY(28px); }

  .reveal,
  .reveal-step,
  .reveal-hero {
    transition: opacity 0.7s ease, transform 0.7s ease;
  }

  /* ...and settle when JS adds .is-visible */
  .reveal.is-visible,
  .reveal-step.is-visible,
  .reveal-hero.is-visible {
    opacity: 1;
    transform: none;
  }

  /* Hero: stagger each element ~150ms on load */
  .reveal-hero:nth-child(1) { transition-delay: 0ms; }
  .hero__eyebrow.reveal-hero { transition-delay: 150ms; }
  .hero__headline.reveal-hero { transition-delay: 300ms; }
  .hero__subhead.reveal-hero { transition-delay: 450ms; }
  .btn.reveal-hero { transition-delay: 600ms; }

  /* Steps: sequential reveal encodes the 1-2-3 order */
  .step:nth-child(1) .reveal-step,
  .reveal-step { transition-delay: 0ms; }
  .step:nth-child(2).reveal-step { transition-delay: 140ms; }
  .step:nth-child(3).reveal-step { transition-delay: 280ms; }

  /* Hanko stamp: starts rotated + small, settles ~200ms after the card */
  .hanko {
    opacity: 0;
    transform: rotate(-18deg) scale(0.7);
    transform-origin: center;
    transition: opacity 0.35s ease 0.2s, transform 0.35s ease 0.2s;
  }
  .pass-card.is-visible .hanko {
    opacity: 1;
    transform: rotate(0deg) scale(1);
  }

  /* Scroll cue gentle pulse */
  .scroll-cue__line {
    animation: cue 2.2s ease-in-out infinite;
    transform-origin: top;
  }
  @keyframes cue {
    0%, 100% { transform: scaleY(0.4); opacity: 0.4; }
    50%      { transform: scaleY(1);   opacity: 0.9; }
  }
}

/* When reduced motion IS requested, everything is simply visible.
   (No .reveal opacity:0 rule applies, so content never hides.) */

/* ============================================================
   15. DESKTOP ENHANCEMENTS
   ============================================================ */
@media (min-width: 720px) {
  .section { padding: 6rem 0; }

  /* Two Pass cards sit side by side */
  .cards {
    flex-direction: row;
    align-items: stretch;
  }
  .pass-card {
    flex: 1;
    display: flex;
    flex-direction: column;
  }
  .pass-card__body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 2rem 1.9rem 2.25rem;
  }
  /* Pin the detail stub (and everything below it) to the bottom so the
     stubs align across cards regardless of description length. */
  .pass-card__body .pass-card__specs { margin-top: auto; }
  .pass-card__body .btn { align-self: flex-start; }

  .steps {
    flex-direction: row;
    gap: 2rem;
  }
  .step { flex: 1; }

  .footer__inner {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "brand links"
      "quiet quiet"
      "copy copy";
    align-items: center;
    gap: 1.25rem 2rem;
  }
  .footer__brand { grid-area: brand; }
  .footer__links { grid-area: links; justify-content: flex-end; }
  .footer__quiet { grid-area: quiet; }
  .footer__copy { grid-area: copy; }
}

@media (min-width: 1000px) {
  .hero__headline { margin-bottom: 1.4rem; }
  .proposition { padding-top: 7rem; padding-bottom: 7rem; }
}
