/* ============================================================
   TableUpgrade — Design System v2 (June 2026)
   Full rewrite. Class names kept stable from v1 so HTML patterns
   port over. Core rules:
     · Gold is an ACCENT only (eyebrows, primary CTA, stat rules,
       taglines on dark, thin dividers, nav active underline).
     · Stats are ink on light / white on dark — never gold digits.
     · Flat surfaces. No radial gradients, no atmospheric-gradient system.
     · Bigger display typography.
   ============================================================ */

/* ---------- Design tokens ---------- */
:root {
  /* Ink */
  --ink:        #1A1A1A;   /* primary text, dark sections bg */
  --ink-deep:   #111111;   /* reserved; not used as footer bg — footer is light */
  --text-mid:   #4A4A4A;   /* body text on light */
  --text-dim:   #767676;   /* captions on light — AA on white/cream */

  /* Surfaces */
  --white:      #FFFFFF;
  --cream:      #FAF9F4;
  --sand:       #F2EDE3;   /* accent band only — max one per page */
  --hairline:   #E8E3D8;
  --hairline-dark: rgba(255,255,255,0.12);

  /* Gold — accent only */
  --gold:       #C5A572;
  --gold-dark:  #8F6F3E;   /* AA on white/cream at 13px+ */
  --gold-tint:  #F6F0E4;   /* light gold wash for chips/highlights */

  /* On-dark text */
  --on-dark:        #FFFFFF;
  --on-dark-body:   rgba(255,255,255,0.80);
  --on-dark-dim:    rgba(255,255,255,0.60);

  /* Legacy aliases (v1 names still referenced by motion.css etc.) */
  --near-black: var(--ink);
  --darkest:    var(--ink-deep);
  --gold-light: var(--gold-tint);

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-sans:    'DM Sans', system-ui, -apple-system, Segoe UI, Helvetica, Arial, sans-serif;

  --radius-sm: 10px;
  --radius:    14px;
  --radius-pill: 9999px;

  --pad-lg: 128px;
  --pad-md: 96px;

  --nav-height: 76px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; animation: none !important; }
  .arrow-link:hover,
  .cta-band-more a:hover,
  .crosslink-card:hover .cl-arrow { transform: none !important; }
}
section[id] { scroll-margin-top: 96px; }
body {
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--white);   /* flat — sections own their backgrounds */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  line-height: 1.5;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
img { display: block; max-width: 100%; }

::selection { background: var(--gold); color: #fff; }

/* ---------- Shared primitives ---------- */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}
@media (max-width: 767px) {
  .container { padding: 0 24px; }
}

.eyebrow { display: inline-block; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 15px;
  line-height: 1;
  padding: 14px 28px;
  border-radius: 10px;
  border: 1.5px solid transparent;
  transition: background-color .2s ease, color .2s ease, border-color .2s ease, transform .2s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--gold);
  color: var(--ink);
  box-shadow: 0 1px 0 rgba(0,0,0,0.04);
}
.btn-primary:hover { background: #B6955F; transform: translateY(-1px); box-shadow: 0 6px 16px rgba(143,111,62,0.22); }
.btn-ghost,
.btn-ghost-light {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-ghost:hover,
.btn-ghost-light:hover { background: rgba(26,26,26,0.06); transform: translateY(-1px); }
.sec-dark .btn-ghost,
.final-cta .btn-ghost,
.btn-ghost-dark {
  background: transparent;
  color: #fff;
  border-color: #fff;
}
.sec-dark .btn-ghost:hover,
.final-cta .btn-ghost:hover,
.btn-ghost-dark:hover { background: rgba(255,255,255,0.08); transform: translateY(-1px); }
.btn-sm { padding: 10px 18px; font-size: 13.5px; }
/* Icon inside a button (e.g. the WhatsApp glyph) — scales with the
   button's font size; the .btn flex gap provides the spacing */
.btn .btn-icon { display: inline-flex; flex-shrink: 0; }
.btn .btn-icon svg { width: 1.25em; height: 1.25em; }
@media (max-width: 767px) {
  .btn { white-space: normal; line-height: 1.3; text-align: center; }
}

/* Text arrow links */
.arrow-link {
  display: inline-block;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 16px;
  color: var(--gold-dark);
  text-decoration: underline;
  text-decoration-color: var(--gold);
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
  transition: color .15s ease, transform .2s ease;
}
.arrow-link:hover { transform: translateX(4px); }
.sec-dark .arrow-link,
.final-cta .arrow-link { color: var(--gold); }
@media (max-width: 767px) {
  /* 44px effective tap target */
  .arrow-link { padding-top: 12px; padding-bottom: 12px; }
}

/* Visible keyboard focus */
a:focus-visible,
button:focus-visible,
input:focus-visible,
.btn:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}
.btn:focus-visible { border-radius: 10px; }

/* ============================================================
   Typography — canonical classes (PART 2.3)
   ============================================================ */
.t-display {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 68px;
  line-height: 1.04;
  letter-spacing: -0.02em;
  color: var(--ink);
}
@media (max-width: 767px) { .t-display { font-size: 42px; } }

.t-h1 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 48px;
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: var(--ink);
}
@media (max-width: 767px) { .t-h1 { font-size: 32px; } }

.t-h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 32px;
  line-height: 1.15;
  letter-spacing: -0.005em;
  color: var(--ink);
}
@media (max-width: 767px) { .t-h2 { font-size: 25px; } }

.t-h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 24px;
  line-height: 1.25;
  letter-spacing: -0.005em;
  color: var(--ink);
}
@media (max-width: 767px) { .t-h3 { font-size: 20px; } }

.t-h4 {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 17px;
  line-height: 1.3;
  color: var(--ink);
}

.t-lead {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 19px;
  line-height: 1.6;
  color: var(--text-mid);
  text-wrap: pretty;
}
@media (max-width: 767px) { .t-lead { font-size: 17px; } }

.t-body {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-mid);
  text-wrap: pretty;
}

.t-caption {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
  color: var(--text-dim);
}

.t-eyebrow {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 16px;
  line-height: 1.4;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-dark);
  display: inline-block;
}
@media (max-width: 767px) { .t-eyebrow { font-size: 13px; } }

/* Slogan/accent-line treatment — matches the logo lockup: DM Sans,
   uppercase, letterspaced. The italic-serif tagline style is retired
   site-wide (brand rule: one slogan treatment only). */
.t-tagline {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 21px;
  line-height: 1.5;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--gold-dark);
  text-wrap: balance;
}
@media (max-width: 767px) { .t-tagline { font-size: 18px; } }
/* Hero-only slogan: statement size with deliberate breathing room.
   The .nowrap spans make any wrap break exactly between the two
   sentences — two balanced lines, never mid-phrase. */
.t-slogan--hero { font-size: 24px; }
@media (max-width: 767px) { .t-slogan--hero { font-size: 19px; } }
.t-slogan--hero .nowrap { white-space: nowrap; }
/* Slogan lockup: small gold rule above the standalone slogan — same
   family as .stat-rule (gold, thin). Rule → 14px → slogan text. */
.slogan-rule {
  display: block;
  width: 40px;
  height: 2px;
  background: var(--gold);
  margin: 0 0 14px;
}
@media (max-width: 767px) { .slogan-rule { width: 32px; } }
.hero-headline .slogan-rule { margin-top: 52px; }
.prose-block .slogan-rule { margin-top: 32px; }
.slogan-rule + .t-tagline,
.prose-block .slogan-rule + .t-tagline { margin-top: 0; }

/* Stats — ink on light / white on dark; gold lives in .stat-rule only */
.t-stat {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.025em;
  color: var(--ink);
  font-variant-numeric: lining-nums tabular-nums;
  font-feature-settings: "lnum", "tnum";
}
.t-stat--xxl { font-size: 132px; }
.t-stat--xl  { font-size: 84px; }
.t-stat--lg  { font-size: 36px; }
@media (max-width: 767px) {
  .t-stat--xxl { font-size: 72px; }
  .t-stat--xl  { font-size: 56px; }
  .t-stat--lg  { font-size: 28px; }
}
.stat-rule {
  width: 64px;
  height: 3px;
  background: var(--gold);
  margin: 20px auto 0;
  border-radius: 2px;
}

/* ---------- Dark-context overrides ---------- */
.sec-dark .t-display, .final-cta .t-display,
.sec-dark .t-h1, .final-cta .t-h1,
.sec-dark .t-h2, .final-cta .t-h2,
.sec-dark .t-h3, .final-cta .t-h3,
.sec-dark .t-h4, .final-cta .t-h4 { color: var(--on-dark); }

.sec-dark .t-lead, .final-cta .t-lead,
.sec-dark .t-body, .final-cta .t-body { color: var(--on-dark-body); }

.sec-dark .t-caption, .final-cta .t-caption { color: var(--on-dark-dim); }

.sec-dark .t-eyebrow, .final-cta .t-eyebrow { color: var(--gold); }

.sec-dark .t-tagline, .final-cta .t-tagline { color: var(--gold); }   /* gold italic allowed on dark */

.sec-dark .t-stat, .final-cta .t-stat { color: var(--on-dark); }

/* ============================================================
   Top navigation — always solid white (PART 2.5)
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  background: var(--white);
  border-bottom: 1px solid var(--hairline);
  transition: box-shadow .25s ease;
}
.nav.is-scrolled {
  box-shadow: 0 2px 16px rgba(26,26,26,0.06);
}
.nav-inner {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  gap: 36px;
}
@media (max-width: 767px) {
  .nav-inner { padding: 0 24px; gap: 12px; }
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  flex-shrink: 0;
}
.logo-img {
  display: block;
  height: 52px;
  width: auto;
}
@media (max-width: 767px) {
  .logo-img { height: 46px; }
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}
.nav-link {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 15px;
  color: var(--ink);
  opacity: 0.85;
  padding: 6px 0;
  transition: opacity .15s ease;
}
.nav-link:hover { opacity: 1; }
.nav-link.is-active {
  opacity: 1;
  text-decoration: underline;
  text-decoration-color: var(--gold);
  text-decoration-thickness: 2px;
  text-underline-offset: 6px;
}

/* Nav CTA — the only gold element in the header */
.nav-cta { flex-shrink: 0; }

/* Mobile nav */
.nav-hamburger {
  width: 40px;
  height: 40px;
  display: none;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  flex-shrink: 0;
}
.nav-hamburger span {
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--ink);
  position: relative;
}
.nav-hamburger span::before,
.nav-hamburger span::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  height: 1.5px;
  background: var(--ink);
}
.nav-hamburger span::before { top: -6px; }
.nav-hamburger span::after  { top:  6px; }

.nav-drawer {
  position: fixed;
  top: var(--nav-height);
  left: 0; right: 0; bottom: 0;
  background: var(--white);
  border-top: 1px solid var(--hairline);
  transform: translateY(-110vh);
  transition: transform .3s ease;
  z-index: 49;
  padding: 16px 24px 32px;
  display: none;
  flex-direction: column;
  overflow-y: auto;
}
.nav-drawer.is-open { transform: translateY(0); }
.nav-drawer .nav-link {
  display: block;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 1;
  padding: 20px 0;
  border-bottom: 1px solid var(--hairline);
}
.nav-drawer .nav-link.is-active {
  color: var(--gold-dark);
  text-decoration: none;   /* color alone marks the active page in the drawer */
}
.nav-drawer .nav-drawer-cta {
  margin-top: auto;
  width: 100%;
}

@media (max-width: 960px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-hamburger { display: inline-flex; margin-left: auto; }
  .nav-drawer { display: flex; }
}

/* ============================================================
   Sections — background rhythm (PART 2.4)
   ============================================================ */
.sec-lg { padding: var(--pad-lg) 0; }
.sec-md { padding: var(--pad-md) 0; }
@media (max-width: 767px) {
  .sec-lg { padding: 72px 0; }
  .sec-md { padding: 56px 0; }
}

.sec-white { background: var(--white); color: var(--ink); }
.sec-cream { background: var(--cream); color: var(--ink); }
.sec-sand  { background: var(--sand);  color: var(--ink); }
.sec-dark  { background: var(--ink);   color: #fff; }

.center-stack { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

.sec-eyebrow { display: block; margin-bottom: 20px; }
.sec-headline {
  margin: 0 auto;
  max-width: 960px;
  text-wrap: balance;
}
.sec-headline.split { max-width: 1080px; }
.sec-headline .line { display: block; }
.sec-subhead {
  margin: 24px auto 0;
  max-width: 720px;
  text-wrap: pretty;
}

.spacer-40  { height: 32px; }
.spacer-60  { height: 48px; }
.spacer-80  { height: 64px; }
.spacer-100 { height: 80px; }
@media (max-width: 767px) {
  .spacer-40  { height: 24px; }
  .spacer-60  { height: 32px; }
  .spacer-80  { height: 48px; }
  .spacer-100 { height: 56px; }
}

/* ============================================================
   Sub-page hero (slim) — eyebrow → t-h1 → t-lead (no breadcrumb;
   BreadcrumbList lives in JSON-LD only)
   ============================================================ */
.page-hero {
  background: var(--cream);
  padding: calc(var(--nav-height) + 96px) 0 72px;
  text-align: center;
}
@media (max-width: 767px) {
  .page-hero { padding: calc(var(--nav-height) + 56px) 0 48px; }
}
.page-hero .sec-subhead { margin-top: 20px; }

/* ============================================================
   Homepage hero
   ============================================================ */
.hero {
  background: var(--white);
  min-height: 85vh;
  display: flex;
  align-items: center;
  padding: calc(var(--nav-height) + 78px) 0 96px;
  position: relative;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 55% 45%;
  align-items: center;
  gap: 48px;
}
@media (max-width: 1023px) {
  .hero { min-height: 0; padding: calc(var(--nav-height) + 62px) 0 96px; }
  .hero-grid { grid-template-columns: 1fr; gap: 64px; }
}
@media (max-width: 767px) {
  /* Breathing room above the eyebrow; WhatsApp (primary CTA) stays on the
     first screen, the Call button may sit just below the fold */
  .hero { padding-top: calc(var(--nav-height) + 34px); }
}

.hero-eyebrow { margin-bottom: 28px; }

.hero-headline {
  font-weight: 500;
  margin: 0 0 28px;
  text-wrap: balance;
}
.hero-line-eyebrow-bold { display: block; }
.hero-tagline-line { display: block; }
@media (max-width: 767px) {
  /* Tight vertical rhythm on phones — pairs with the reduced hero
     padding-top so the CTAs land on the first screen. The slogan keeps
     deliberately MORE air than the other hero gaps. */
  .hero-headline { margin-bottom: 20px; }
  .hero-headline .slogan-rule { margin-top: 38px; }
}

.hero-subhead { margin: 0; max-width: 600px; text-wrap: pretty; }

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 48px;
}
@media (max-width: 767px) {
  .hero-ctas { margin-top: 34px; }
  .hero-ctas .btn { flex: 1 1 auto; min-width: 0; }
}
@media (max-width: 480px) {
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas .btn { width: 100%; }
}

.hero-trust-strip {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--hairline);
}
.hero-trust-label { margin: 0 0 14px; }
.hero-trust-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 24px 32px;
  align-items: center;
}
/* Trust logos: original assets as-is on light surfaces (§2.0 — never
   recolored, inverted, or filtered) */
.trust-logo {
  display: block;
  height: 22px;
  width: auto;
  pointer-events: none;
}
.trust-logo[alt="SevenRooms"] { height: 41.25px; }
.trust-logo[alt="OpenTable"]  { height: 27.5px; }
.trust-logo[alt="SerVme"]     { height: 20.625px; }
.trust-logo[alt="EatApp"]     { height: 16.5px; }
@media (max-width: 480px) {
  .hero-trust-logos { gap: 12px 20px; justify-content: center; }
  .trust-logo { height: 18px; }
  .trust-logo[alt="SevenRooms"] { height: 33.75px; }
  .trust-logo[alt="OpenTable"]  { height: 22.5px; }
  .trust-logo[alt="SerVme"]     { height: 16.875px; }
  .trust-logo[alt="EatApp"]     { height: 13.5px; }
}

.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

/* ============================================================
   Icons — ink on light, white on dark (gold budget)
   ============================================================ */
[data-lucide] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: inherit;
  line-height: 0;
}
[data-lucide] svg { display: block; }

/* ---------- Video embed slot ---------- */
.video-slot {
  position: relative;
  max-width: 960px;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--ink) url('/home/video-poster.jpg') center / cover no-repeat;
  border: 1px solid var(--hairline);
  display: flex;
  align-items: center;
  justify-content: center;
}
.video-slot .video-play {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(255,255,255,0.92);
  display: grid;
  place-items: center;
  color: var(--ink);
}
.video-slot .video-play svg { width: 26px; height: 26px; margin-left: 3px; }
.video-slot .video-note {
  position: absolute;
  bottom: 16px;
  left: 0; right: 0;
  text-align: center;
  color: var(--on-dark-dim);
}

/* ============================================================
   Industry trio (Opportunity)
   ============================================================ */
.industry-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  max-width: 960px;
  margin: 0 auto;
}
.industry-col {
  text-align: center;
  padding: 0 24px;
  border-left: 1px solid var(--hairline);
}
.industry-col:first-child { border-left: 0; }
.industry-col .icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px; height: 48px;
  color: var(--ink);
}
.industry-col .icon[data-lucide] svg { width: 44px; height: 44px; }
.industry-col .label { margin: 18px 0 6px; }
.industry-col .sub { margin: 0; }
@media (max-width: 767px) {
  .industry-row { grid-template-columns: 1fr; }
  .industry-col { border-left: 0; border-top: 1px solid var(--hairline); padding: 36px 0; }
  .industry-col:first-child { border-top: 0; padding-top: 0; }
}

.bridge-para {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  text-wrap: pretty;
}

/* Stat callout — open centered stack; number ink + gold stat-rule */
.stat-callout {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}
.stat-callout-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}
.stat-callout-hero .hero-claim {
  margin: 28px 0 0;
  max-width: 640px;
  text-wrap: balance;
  text-align: center;
}
.stat-callout-hero .source {
  margin: 12px 0 0;
  text-align: center;
}
/* Homepage revenue-teaser caption: one step above caption size */
#revenue .stat-callout .source { font-size: 15px; }

.gold-bridge {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}
.gold-italic {
  text-align: center;
  margin: 0 auto;
  text-wrap: balance;
}

/* ============================================================
   Explainer columns + journey + pre-order
   ============================================================ */
/* No icons — hairline dividers between the three columns give the
   visual structure (vertical on desktop, horizontal when stacked) */
.explainer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 1140px;
  margin: 0 auto;
  text-align: left;
}
.explainer-col {
  padding: 0 36px;
  border-left: 1px solid var(--hairline);
}
.explainer-col:first-child { border-left: 0; padding-left: 0; }
.explainer-col:last-child { padding-right: 0; }
@media (max-width: 900px) {
  .explainer-cols { grid-template-columns: 1fr; }
  .explainer-col {
    border-left: 0;
    border-top: 1px solid var(--hairline);
    padding: 36px 0;
  }
  .explainer-col:first-child { border-top: 0; padding-top: 0; }
  .explainer-col:last-child { padding-bottom: 0; }
}
.explainer-col .eb { display: block; margin-bottom: 10px; }
.explainer-col h3 { margin: 0 0 12px; }
.explainer-col p { margin: 0; text-wrap: pretty; }

/* Journey card (full 5 steps with descriptions) */
.journey-card {
  --card-bg: var(--white);
  background: var(--card-bg);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  padding: 40px;
  max-width: 1080px;
  margin: 0 auto;
  text-align: center;
}
.sec-white .journey-card { --card-bg: var(--cream); }
.journey-card .eb { display: block; margin-bottom: 32px; }
.journey-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  position: relative;
  text-align: left;
  list-style: none;
  margin: 0;
  padding: 0;
}
.journey-steps::before {
  content: "";
  position: absolute;
  top: 16px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: var(--hairline);
  z-index: 0;
}
.journey-step {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
}
.journey-step .num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 15px;
  display: grid;
  place-items: center;
  line-height: 1;
  box-shadow: 0 0 0 4px var(--card-bg);
}
.journey-step h4 { margin: 0; text-align: center; }
.journey-step p { margin: 0; text-align: center; text-wrap: pretty; }
@media (max-width: 1023px) {
  .journey-steps { grid-template-columns: 1fr; gap: 28px; }
  .journey-steps::before {
    top: 16px; bottom: 16px;
    left: 16px; right: auto;
    width: 1px; height: auto;
  }
  .journey-step {
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
    gap: 16px;
  }
  .journey-step h4,
  .journey-step p { text-align: left; }
  .journey-step .num { flex-shrink: 0; }
  .journey-step .body { flex: 1; }
}
@media (max-width: 767px) {
  .journey-card { padding: 28px 22px; }
}

/* Pre-order block */
.preorder-block {
  --card-bg: var(--white);
  background: var(--card-bg);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  padding: 40px;
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}
.sec-white .preorder-block { --card-bg: var(--cream); }
.preorder-block .eb { display: block; margin-bottom: 32px; }
.preorder-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 720px;
  margin: 0 auto;
  text-align: left;
}
@media (max-width: 767px) {
  .preorder-grid { grid-template-columns: 1fr; gap: 32px; }
  .preorder-block { padding: 28px 22px; }
}
.preorder-col h4 { margin: 0; }
.preorder-col .sub { margin: 4px 0 18px; }
.preorder-col .icon-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.preorder-col .icon-list li {
  display: flex;
  align-items: flex-start;
  padding: 4px 0;
}
.preorder-col .icon-list .li-icon {
  color: var(--ink);
  margin-right: 10px;
  margin-top: 3px;
  flex-shrink: 0;
}
.preorder-col .icon-list .li-icon svg { width: 14px; height: 14px; }

/* ============================================================
   FOH logo rows
   ============================================================ */
.foh-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  max-width: 760px;
  margin: 0 auto;
  flex-wrap: wrap;
}
/* Partner logos render as-is — original assets on light surfaces only
   (§2.0). No filter/invert rules, no dark-row variant. */
.foh-logo {
  display: block;
  height: 26px;
  width: auto;
  pointer-events: none;
}
.foh-logo[alt="SevenRooms"] { height: 48.75px; }
.foh-logo[alt="OpenTable"]  { height: 32.5px; }
.foh-logo[alt="SerVme"]     { height: 24.375px; }
.foh-logo[alt="EatApp"]     { height: 19.5px; }
@media (max-width: 767px) {
  .foh-row { justify-content: center; gap: 28px 36px; }
}

/* ============================================================
   Cards — white on cream sections, cream on white sections
   ============================================================ */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
@media (max-width: 900px) {
  .feature-grid { grid-template-columns: 1fr; }
}
.feature-grid-2 { grid-template-columns: 1fr 1fr; max-width: 880px; margin: 0 auto; }
@media (max-width: 900px) {
  .feature-grid-2 { grid-template-columns: 1fr; }
}
.feature-card {
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  padding: 36px;
  transition: box-shadow .25s ease;
}
.sec-white .feature-card { background: var(--cream); }
.feature-card:hover { box-shadow: 0 2px 16px rgba(26,26,26,0.05); }
.feature-card .icon {
  color: var(--ink);
  width: 32px; height: 32px;
  margin-bottom: 24px;
  display: inline-flex;
}
.feature-card .icon[data-lucide] svg { width: 30px; height: 30px; }
.feature-card h3 { margin: 0 0 12px; }
.feature-card p { margin: 0; text-wrap: pretty; }

/* Dark-section variant */
.feature-card-dark,
.sec-dark .feature-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--hairline-dark);
}
.feature-card-dark .icon,
.sec-dark .feature-card .icon { color: var(--on-dark); }

/* Control grid (3 columns, no card chrome) */
.control-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  max-width: 1100px;
  margin: 0 auto;
}
@media (max-width: 900px) {
  .control-grid { grid-template-columns: 1fr; gap: 48px; }
}
/* Variant: four control columns lay out 2×2 */
.control-grid-4 { grid-template-columns: repeat(2, 1fr); max-width: 880px; }
@media (max-width: 900px) {
  .control-grid-4 { grid-template-columns: 1fr; }
}
/* Mini-stat columns (stat + claim + source) inside a control grid */
.control-col p.mini-stat-claim { margin: 14px 0 10px; }
.control-col .icon {
  color: var(--ink);
  width: 40px; height: 40px;
  margin-bottom: 20px;
  display: inline-flex;
}
.sec-dark .control-col .icon { color: var(--on-dark); }
.control-col .icon[data-lucide] svg { width: 36px; height: 36px; }
.control-col h3 { margin: 0 0 14px; }
.control-col p { margin: 0; text-wrap: pretty; }

/* ============================================================
   Integration screenshot placeholder (the "money shot")
   ============================================================ */
.integration-shot {
  max-width: 960px;
  margin: 0 auto;
  aspect-ratio: 16 / 10;
  border-radius: var(--radius);
  border: 1px solid var(--hairline);
  background: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-align: center;
  padding: 32px;
}
.integration-shot .icon { color: var(--ink); }
.integration-shot .icon svg { width: 36px; height: 36px; }

/* ============================================================
   Revenue calculator
   ============================================================ */
.calc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: stretch;
}
@media (max-width: 1023px) {
  .calc-grid { grid-template-columns: 1fr; gap: 32px; }
}

.calc-card-inputs {
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  padding: 36px;
}
.sec-white .calc-card-inputs { background: var(--cream); }
.calc-card-output {
  background: var(--ink);
  border: 1px solid var(--hairline-dark);
  border-radius: var(--radius);
  padding: 48px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 767px) {
  .calc-card-output { padding: 32px 24px; }
}
/* Output card is a dark context — apply on-dark text rules */
.calc-card-output .t-eyebrow { color: var(--gold); }
.calc-card-output .t-stat { color: var(--on-dark); }
.calc-card-output .t-caption { color: var(--on-dark-dim); }

.calc-slider + .calc-slider { margin-top: 28px; }
.calc-slider .row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 12px;
}
.calc-slider .label { display: inline-flex; align-items: center; }
.calc-slider .value {
  color: var(--ink);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.calc-label-icon {
  color: var(--ink);
  margin-right: 8px;
  display: inline-flex;
}
.calc-label-icon svg { width: 16px; height: 16px; }

/* Range styling — gold accent (interactive control) */
input[type="range"].calc-range {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 4px;
  border-radius: 999px;
  background: var(--hairline);
  outline: none;
  cursor: pointer;
  margin: 0;
}
input[type="range"].calc-range::-webkit-slider-runnable-track {
  height: 4px;
  border-radius: 999px;
  background:
    linear-gradient(to right, var(--gold) 0%, var(--gold) var(--fill, 50%), transparent var(--fill, 50%));
  background-color: var(--hairline);
}
input[type="range"].calc-range::-moz-range-track {
  height: 4px;
  border-radius: 999px;
  background: var(--hairline);
}
input[type="range"].calc-range::-moz-range-progress {
  height: 4px;
  border-radius: 999px;
  background: var(--gold);
}
input[type="range"].calc-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--gold);
  border: 2px solid #fff;
  box-shadow: 0 2px 6px rgba(143,111,62,0.35);
  margin-top: -8px;
  cursor: grab;
  transition: transform .15s ease;
}
input[type="range"].calc-range::-webkit-slider-thumb:active { transform: scale(1.08); cursor: grabbing; }
input[type="range"].calc-range::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--gold);
  border: 2px solid #fff;
  box-shadow: 0 2px 6px rgba(143,111,62,0.35);
  cursor: grab;
}

.slider-guidance { font-style: italic; margin: 10px 0 0; }

.calc-monthly { font-variant-numeric: tabular-nums; margin: 0; }
.calc-annual  { font-variant-numeric: tabular-nums; margin: 0; }
.calc-context-line { margin: 8px 0 0; }
.calc-divider {
  height: 1px;
  background: var(--hairline-dark);
  border: 0;
  margin: 32px 0 24px;
}
.calc-divider-faint { background: rgba(255,255,255,0.08); margin: 28px 0 24px; }

/* Keep the range on one line at usable sizes */
@media (min-width: 1024px) {
  .calc-card-output .calc-monthly { font-size: 56px; white-space: nowrap; }
}
@media (max-width: 1023px) {
  .calc-card-output .calc-monthly { font-size: 48px; white-space: nowrap; }
}
@media (max-width: 767px) {
  .calc-card-output .calc-monthly { font-size: 36px; }
  .calc-card-output .calc-annual { font-size: 22px; }
}
@media (max-width: 480px) {
  .calc-card-output .calc-monthly {
    font-size: 28px;
    letter-spacing: -0.02em;
    white-space: normal;
    line-height: 1.15;
  }
  .calc-card-output .calc-annual { font-size: 20px; }
}
@media (max-width: 380px) {
  .calc-card-output .calc-monthly { font-size: 24px; }
  .calc-card-output .calc-annual { font-size: 18px; }
}

.uplift-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 14px 0 16px;   /* breathing room below the "Not included" eyebrow */
}
.uplift-chip {
  display: inline-flex;
  align-items: center;
  padding: 9px 16px;
  border: 1px solid var(--hairline-dark);
  border-radius: var(--radius-pill);
  background: rgba(255,255,255,0.04);
  color: var(--on-dark-body);
  white-space: nowrap;
}
.calc-chips-cta { margin: 16px 0 0; }
.calc-footnote {
  max-width: 720px;
  margin: 48px auto 0;
  text-align: center;
}

/* ============================================================
   Zero-cost cards + commission scope (Pricing)
   ============================================================ */
.zero-cost-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1080px;
  margin: 0 auto;
}
@media (max-width: 900px) {
  .zero-cost-row { grid-template-columns: 1fr; gap: 12px; max-width: 420px; }
}
.zero-cost-card {
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  padding: 48px 32px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  transition: box-shadow .25s ease;
}
.sec-white .zero-cost-card { background: var(--cream); }
.zero-cost-card:hover { box-shadow: 0 2px 16px rgba(26,26,26,0.05); }
@media (max-width: 900px) {
  /* Stacked view: compact horizontal cards so eyebrow + title + all three
     cards + commission line fit together on one phone screen. Two-column
     "invisible table": amounts end at the shared midline, labels start
     from it — identical alignment across all three cards. */
  .zero-cost-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: baseline;
    gap: 0 14px;
    padding: 18px 24px;
  }
  .zero-cost-card .zc-amount { font-size: 34px; text-align: right; }
  .zero-cost-card .zc-label { text-align: left; }
}

.commission-scope {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.merged-divider {
  border: 0;
  height: 1px;
  background: var(--hairline);
  max-width: 880px;
  margin: 0 auto;
}
.sec-dark .merged-divider { background: var(--hairline-dark); }
.merged-subhead { margin: 0 0 14px; text-align: center; }
.merged-sublead {
  margin: 0 auto 48px;
  max-width: 640px;
  text-align: center;
}

.dynamic-pricing-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}
@media (max-width: 900px) {
  .dynamic-pricing-cards { grid-template-columns: 1fr 1fr; gap: 14px; }
}
@media (max-width: 480px) {
  .dynamic-pricing-cards { grid-template-columns: 1fr; }
}
.dp-card {
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-sm);
  padding: 28px 20px;
  text-align: center;
  transition: box-shadow .25s ease;
}
.sec-white .dp-card { background: var(--cream); }
.dp-card:hover { box-shadow: 0 2px 16px rgba(26,26,26,0.05); }
.dp-card .dp-icon {
  display: inline-flex;
  color: var(--ink);
  margin-bottom: 16px;
}
.dp-card .dp-icon svg { width: 28px; height: 28px; }
.dp-card h4 { margin: 0 0 8px; }
.dp-card .dp-fee { margin: 0 0 6px; }
/* Desktop (cards side by side): amount on its own line, label on the next.
   Mobile (cards stacked full-width): amount + label inline with an em dash. */
.dp-fee .dp-fee-amount,
.dp-fee .dp-fee-label { display: block; }
@media (max-width: 480px) {
  .dp-fee .dp-fee-amount,
  .dp-fee .dp-fee-label { display: inline; }
  .dp-fee .dp-fee-label::before { content: " — "; white-space: pre; }
}
.dp-card p { margin: 0; }

/* ============================================================
   Experiences & Add-Ons
   ============================================================ */
.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  text-align: left;
  max-width: 1080px;
  margin: 0 auto;
}
@media (max-width: 900px) {
  .compare-grid { grid-template-columns: 1fr; }
}
.compare-card {
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  padding: 36px;
  position: relative;
  overflow: hidden;
  transition: box-shadow .25s ease;
}
.sec-white .compare-card { background: var(--cream); }
.compare-card:hover { box-shadow: 0 2px 16px rgba(26,26,26,0.05); }
.compare-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);   /* thin decorative rule — allowed */
}
.compare-card .italic-line { font-style: italic; margin: 8px 0 0; }
.compare-card p { margin: 24px 0 0; text-wrap: pretty; }

.addon-icon-strip {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  color: var(--ink);
  flex-wrap: wrap;
}
.addon-icon-strip .strip-icon svg { width: 24px; height: 24px; }

/* ============================================================
   Onboarding timeline + channels
   ============================================================ */
.timeline {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  list-style: none;
  padding: 0;
}
.timeline::before {
  content: "";
  position: absolute;
  top: 24px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: var(--hairline);
  z-index: 0;
}
.timeline-node {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  min-width: 0;
}
.timeline-node .circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--hairline);
  color: var(--gold-dark);
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 18px;
  display: grid;
  place-items: center;
  line-height: 1;
  box-shadow: 0 0 0 6px var(--timeline-bg, var(--white));
}
.sec-cream .timeline-node .circle { --timeline-bg: var(--cream); }
.timeline-node .label { text-align: center; }
@media (max-width: 767px) {
  .timeline {
    flex-direction: column;
    gap: 28px;
    align-items: flex-start;
    max-width: 320px;
  }
  .timeline::before {
    left: 24px;
    right: auto;
    top: 24px;
    bottom: 24px;
    height: auto;
    width: 1px;
  }
  .timeline-node {
    flex-direction: row;
    align-items: center;
    gap: 18px;
    width: 100%;
  }
  .timeline-node .label { text-align: left; }
}

.channels-lead {
  text-align: center;
  margin: 0 auto 24px;
  text-wrap: balance;
  max-width: 720px;
}
.channels-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  color: var(--ink);
}
.sec-dark .channels-row { color: var(--on-dark); }
.channels-row .ch { display: inline-flex; align-items: center; }
.channels-row .ch svg {
  width: 28px;
  height: 28px;
  opacity: 0.85;
}
/* Clickable channel icons */
.channels-row a.ch { transition: color .15s ease, transform .2s ease; }
.channels-row a.ch:hover { color: var(--gold-dark); transform: translateY(-2px); }
.channels-row a.ch:hover svg { opacity: 1; }

/* ============================================================
   FAQ accordion
   ============================================================ */
.faq-list {
  max-width: 880px;
  margin: 0 auto;
  text-align: left;
  counter-reset: faqcounter;
}
.faq-item {
  border-bottom: 1px solid var(--hairline);
  counter-increment: faqcounter;
  position: relative;
}
.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 24px 0;
  text-align: left;
  background: none;
  border: 0;
  cursor: pointer;
}
.faq-q:hover { color: var(--gold-dark); }
.faq-q::before {
  content: counter(faqcounter, decimal-leading-zero);
  color: var(--gold-dark);
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.1em;
  margin-right: 20px;
  flex-shrink: 0;
  font-variant-numeric: tabular-nums;
  align-self: center;
}
.faq-q > span:first-of-type { flex: 1; }
.faq-q .chev {
  flex-shrink: 0;
  transition: transform .25s ease;
}
.faq-item[data-open="true"] .faq-q .chev { transform: rotate(180deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}
.faq-a-inner {
  padding: 0 0 24px;
  max-width: 760px;
}
@media (max-width: 480px) {
  .faq-q::before { margin-right: 12px; font-size: 13px; }
}
@media (max-width: 360px) {
  .faq-q::before { margin-right: 8px; }
}

/* FAQ cross-link card */
.faq-crosslink {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

/* ============================================================
   Final CTA (homepage + contact) and what's-next strip
   ============================================================ */
.final-cta { padding: 128px 0; }
@media (max-width: 767px) {
  .final-cta { padding: 96px 0; }
}
.final-cta-headline {
  text-align: center;
  max-width: 980px;
  margin: 0 auto;
  text-wrap: balance;
}
.final-cta-headline .line { display: block; }
.final-cta-row {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
@media (max-width: 480px) {
  .final-cta-row {
    flex-direction: column;
    align-items: stretch;
    max-width: 320px;
    margin: 0 auto;
  }
}

.whats-next-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 24px;
  margin: 56px auto 0;
  max-width: 920px;
}
.wn-step {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.wn-icon { color: var(--on-dark); display: inline-flex; opacity: .85; }
.wn-icon svg { width: 22px; height: 22px; }
.wn-sep {
  color: var(--gold);
  opacity: 0.6;
  font-size: 18px;
}
@media (max-width: 480px) {
  .whats-next-strip {
    gap: 16px 12px;
    flex-direction: column;
    align-items: flex-start;
  }
  .wn-step { flex-wrap: nowrap; width: 100%; }
  .wn-sep { display: none; }
}

/* ============================================================
   Shared pre-footer CTA band (sub-pages)
   ============================================================ */
.cta-band { padding: 96px 0; }
@media (max-width: 767px) { .cta-band { padding: 72px 0; } }
.cta-band .sec-headline { margin-top: 16px; }
.cta-band-row {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 40px;
}
@media (max-width: 480px) {
  .cta-band-row {
    flex-direction: column;
    align-items: stretch;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
  }
}
.cta-band-more { margin: 28px 0 0; }
.cta-band-more a {
  display: inline-block;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 15px;   /* subordinate inside the dark band */
  color: var(--gold);
  transition: color .15s ease, transform .2s ease;
}
.cta-band-more a:hover { transform: translateX(4px); }
@media (max-width: 767px) {
  .cta-band-more a { padding-top: 12px; padding-bottom: 12px; }
}
.cta-band-tagline { margin: 0 0 40px; }

/* ============================================================
   Cross-link cards
   ============================================================ */
.crosslink-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 880px;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .crosslink-grid { grid-template-columns: 1fr; }
}
.crosslink-grid-1 { grid-template-columns: 1fr; max-width: 560px; }
.crosslink-card {
  display: block;
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  padding: 32px;
  text-align: left;
  transition: box-shadow .25s ease, transform .2s ease;
}
.sec-white .crosslink-card { background: var(--cream); }
.crosslink-card:hover {
  box-shadow: 0 2px 16px rgba(26,26,26,0.05);
  transform: translateY(-2px);
}
.crosslink-card .eb { display: block; margin-bottom: 10px; }
.crosslink-card h3 { margin: 0 0 8px; }
.crosslink-card .cl-arrow {
  display: inline-block;
  margin-top: 14px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 16px;
  color: var(--gold-dark);
  transition: transform .2s ease;
}
.crosslink-card:hover .cl-arrow { transform: translateX(4px); }

/* ============================================================
   Prose blocks (About page sections)
   ============================================================ */
.prose-block {
  max-width: 760px;
  margin: 0 auto;
}
.prose-block .sec-eyebrow { display: block; margin-bottom: 20px; }
.prose-block p { margin: 0 0 20px; }
.prose-block p:last-child { margin-bottom: 0; }
.prose-block .t-tagline { margin-top: 32px; }

/* ============================================================
   Contact page
   ============================================================ */
.contact-hero {
  padding: calc(var(--nav-height) + 96px) 0 112px;
}
@media (max-width: 767px) {
  .contact-hero { padding: calc(var(--nav-height) + 56px) 0 80px; }
}
.contact-details {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}
.contact-details p {
  margin: 0 0 24px;
  line-height: 2;
}
.contact-details p:last-child { margin-bottom: 0; }
.contact-details a:hover { color: var(--gold-dark); }

/* ============================================================
   Legal sub-pages (privacy / terms)
   ============================================================ */
.subpage {
  padding-top: calc(var(--nav-height) + 96px);
  padding-bottom: 96px;
  background: var(--white);
  min-height: 70vh;
}
.subpage .container { max-width: 760px; }
.subpage h1 { margin: 0 0 12px; }
.subpage .lastmod {
  font-style: italic;
  margin: 0 0 40px;
}
.subpage .gold-rule {
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 40px;
  border-radius: 2px;
}
.subpage h2 { margin: 40px 0 12px; }
.subpage p { margin: 0 0 16px; }

/* ============================================================
   Footer (PART 2.6) — LIGHT. The footer hosts the one logo asset
   (logo_TableUpgrade_full.svg, gold icon + ink wordmark), so its
   surface must be light (§2.0). The dark anchor at page end is the
   pre-footer CTA band, never the footer itself.
   ============================================================ */
.footer {
  background: var(--cream);
  color: var(--text-mid);
  border-top: 1px solid var(--hairline);
  padding: 80px 0 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 4fr 3fr 3fr;
  gap: 64px;
}
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr; gap: 48px; }
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
.footer-logo .logo-img { height: 40px; }

.footer-micro { margin: 0; color: var(--text-dim); }
.footer-company { margin: 20px 0 0; line-height: 1.7; }

.footer-col-eyebrow { display: block; margin-bottom: 18px; }
.footer .footer-col-eyebrow { color: var(--ink); }   /* column headers: ink */
.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-links a { color: var(--text-mid); transition: color .15s ease; }
.footer-links a:hover { color: var(--gold-dark); }

.footer-bottom {
  margin-top: 64px;
  padding-top: 24px;
  border-top: 1px solid var(--hairline);
  text-align: center;
  color: var(--text-dim);
}
.footer-bottom a { transition: color .15s ease; }
.footer-bottom a:hover { color: var(--gold-dark); }
