/* Tennerr landing — design tokens and layout per design_handoff_tenner_landing */

:root {
  --cream: #F7F3EA;
  --cream-raised: #FDFBF6;
  --white: #FFFFFF;
  --ink: #1F2326;
  --ink-strong: #111315;
  --green: #1F7A5C;
  --green-hover: #175E47;
  --green-deep: #16543F;
  --amber: #D99A2B;
  --amber-hover: #C4881F;
  --amber-text: #8A5E10;
  --rule: #D9DED8;
  --gutter: clamp(20px, 4vw, 32px);
  --section-pad: clamp(56px, 7vw, 104px);
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  font-family: 'Source Sans 3', system-ui, sans-serif;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 { font-family: 'Manrope', sans-serif; margin: 0; color: var(--ink-strong); text-wrap: pretty; }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }

a { color: var(--green); text-decoration: none; }
a:hover { color: var(--green-hover); text-decoration: underline; }

:focus-visible { outline: 2px solid var(--green); outline-offset: 2px; }
.section-workers :focus-visible,
.section-pilot :focus-visible,
.site-footer :focus-visible,
.trust-strip :focus-visible { outline-color: var(--cream); }

section[id] { scroll-margin-top: 88px; }

/* Mobile/desktop copy variants — !important so they beat component display rules */
.mob, .mob-block { display: none !important; }

/* ---------- Buttons ---------- */

.btn {
  display: inline-block;
  font-size: 16px;
  font-weight: 700;
  padding: 15px 26px;
  border-radius: 8px;
  transition: background-color 140ms ease, color 140ms ease, border-color 140ms ease;
}
.btn:hover { text-decoration: none; }

.btn-green { background: var(--green); color: var(--cream); }
.btn-green:hover { background: var(--green-hover); color: var(--cream); }

.btn-amber { background: var(--amber); color: var(--ink); }
.btn-amber:hover { background: var(--amber-hover); color: var(--ink); }

.btn-cream { background: var(--cream); color: var(--green-deep); }
.btn-cream:hover { background: var(--white); color: var(--green-deep); }

.btn-outline-ink { background: transparent; color: var(--ink); border: 1.5px solid var(--ink); padding: 13.5px 24px; }
.btn-outline-ink:hover { background: var(--ink); color: var(--cream); }

.btn-outline-cream { background: transparent; color: var(--cream); border: 1.5px solid rgba(247,243,234,0.45); padding: 13.5px 24px; }
.btn-outline-cream:hover { border-color: var(--cream); color: var(--cream); }
.section-pilot .btn-outline-cream { border-color: rgba(247,243,234,0.55); }
.section-pilot .btn-outline-cream:hover { border-color: var(--white); color: var(--white); }

.btn-nav { font-size: 15px; padding: 10px 18px; }

.cta-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 4px; }
.cta-row-center { justify-content: center; margin-top: 6px; }

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(247,243,234,0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--rule);
}

.header-row {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 var(--gutter);
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo { display: flex; align-items: center; gap: 9px; }
.logo-img { height: 46px; width: auto; display: block; }
.logo-img-footer { height: 44px; }
.logo:hover { text-decoration: none; }
.logo-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--green); }
.logo-word { font-family: 'Manrope', sans-serif; font-weight: 800; font-size: 21px; letter-spacing: -0.015em; color: var(--ink-strong); }

.nav-desktop { display: flex; align-items: center; gap: clamp(14px, 2.4vw, 28px); flex-wrap: wrap; }
.nav-desktop > a:not(.btn) { font-size: 15px; font-weight: 600; color: var(--ink); }
.nav-desktop > a:not(.btn):hover { color: var(--green-hover); }

.nav-burger { display: none; }

.mobile-menu { display: none; }

/* ---------- Shared layout ---------- */

.section-inner { max-width: 1180px; margin: 0 auto; padding: var(--section-pad) var(--gutter); }
.grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); }

.stack { display: flex; flex-direction: column; }
.stack-12 { gap: 12px; }
.stack-16 { gap: 16px; }
.stack-18 { gap: 18px; }
.stack-20 { gap: 20px; }

.eyebrow { font-size: 13px; font-weight: 700; letter-spacing: 0.09em; text-transform: uppercase; color: var(--green); }
.eyebrow-amber { color: var(--amber); }
.eyebrow-pilot { color: rgba(247,243,234,0.7); }

h2 { font-weight: 800; font-size: clamp(28px, 3.2vw, 42px); line-height: 1.14; letter-spacing: -0.008em; }

.body-copy { font-size: 17px; line-height: 1.65; color: rgba(31,35,38,0.78); max-width: 32em; }

.dot { width: 7px; height: 7px; border-radius: 50%; flex: none; }
.dot-green { background: var(--green); }
.dot-amber { background: var(--amber); }

.img-frame { position: relative; width: 100%; border-radius: 12px; overflow: hidden; border: 1px solid var(--rule); }
.img-frame img { display: block; width: 100%; height: 100%; object-fit: cover; }

.card { border-radius: 12px; }

.fine-print { font-size: 14.5px; line-height: 1.55; color: rgba(31,35,38,0.58); max-width: 32em; }
.fine-print-dark { color: rgba(247,243,234,0.5); }
.fine-print-pilot { color: rgba(247,243,234,0.62); margin-top: 4px; }

/* ---------- Hero ---------- */

.hero {
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(44px, 6vw, 84px) var(--gutter) clamp(40px, 5vw, 68px);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: clamp(32px, 4vw, 60px);
  align-items: center;
}

.hero-copy { display: flex; flex-direction: column; align-items: flex-start; gap: 22px; }

.research-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(217,154,43,0.14);
  border: 1px solid rgba(217,154,43,0.45);
  color: var(--amber-text);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.01em;
  padding: 6px 13px;
  border-radius: 999px;
}
.badge-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--amber); }

h1 { font-weight: 800; font-size: clamp(36px, 4.6vw, 58px); line-height: 1.06; letter-spacing: -0.01em; }

.hero-lede { font-size: clamp(17px, 1.5vw, 19px); line-height: 1.62; color: rgba(31,35,38,0.82); max-width: 34em; text-wrap: pretty; }

.hero .fine-print { margin-top: 2px; }

.hero-img { aspect-ratio: 4 / 3.2; border-radius: 14px; }

/* ---------- Trust strip ---------- */

.trust-strip { background: var(--ink); color: var(--cream); }
.trust-strip-row {
  max-width: 1180px;
  margin: 0 auto;
  padding: 20px var(--gutter);
  display: flex;
  flex-wrap: wrap;
  gap: 14px clamp(24px, 4vw, 44px);
  align-items: center;
  justify-content: center;
}
.trust-item { display: flex; align-items: center; gap: 9px; font-size: 15px; font-weight: 600; }

/* ---------- The problem ---------- */

.section-problem { background: var(--cream); border-bottom: 1px solid var(--rule); }
.gap-problem { gap: clamp(32px, 4vw, 64px); }

.problem-img { aspect-ratio: 3 / 2; margin-top: 8px; }

.problem-list { display: flex; flex-direction: column; }
.problem-list li {
  border-top: 1px solid var(--rule);
  padding: 17px 0;
  display: flex;
  gap: 14px;
  align-items: baseline;
  font-size: 16.5px;
  line-height: 1.5;
}
.problem-list li:last-child { border-bottom: 1px solid var(--rule); }
.problem-list .dot { width: 6px; height: 6px; transform: translateY(-3px); }

/* ---------- How it works ---------- */

.section-how { background: var(--cream-raised); border-bottom: 1px solid var(--rule); }

.how-title { margin: 18px 0 14px; max-width: 20em; }
.how-lede { color: rgba(31,35,38,0.75); max-width: 44em; margin-bottom: clamp(32px, 4vw, 52px); }

.banner-img { aspect-ratio: 24 / 9; border-radius: 14px; margin-bottom: clamp(24px, 3vw, 36px); }

.step-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: clamp(18px, 2vw, 26px); }
.step-card { background: var(--cream); border: 1px solid var(--rule); padding: 26px 24px; display: flex; flex-direction: column; gap: 12px; }
.step-num { font-family: 'Manrope', sans-serif; font-weight: 800; font-size: 15px; letter-spacing: 0.06em; color: var(--amber); }
.step-card h3 { font-weight: 700; font-size: 19px; line-height: 1.25; }
.step-card p { font-size: 15.5px; line-height: 1.58; color: rgba(31,35,38,0.75); }

.trust-block {
  gap: clamp(20px, 3vw, 40px);
  align-items: center;
  margin-top: clamp(28px, 3.5vw, 44px);
  padding-top: clamp(28px, 3.5vw, 40px);
  border-top: 1px solid var(--rule);
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.trust-title { font-weight: 800; font-size: clamp(21px, 2vw, 26px); line-height: 1.2; }
.trust-block .body-copy { color: rgba(31,35,38,0.75); max-width: 34em; }
.footnote { font-size: 15px; line-height: 1.6; color: rgba(31,35,38,0.6); margin-top: 4px; padding-left: 14px; border-left: 2px solid var(--amber); }
.trust-img { aspect-ratio: 3 / 2; }

/* ---------- Who it is for ---------- */

.section-venues { background: var(--cream); border-bottom: 1px solid var(--rule); }
.gap-venues { gap: clamp(28px, 4vw, 56px); align-items: start; }

.venues-img { aspect-ratio: 16 / 10; margin-top: 6px; }

.venue-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 14px; }
.venue-card { background: var(--white); border: 1px solid var(--rule); padding: 22px 20px; }
.venue-card h3 { font-weight: 700; font-size: 17px; margin: 0 0 7px; }
.venue-card p { font-size: 15px; line-height: 1.55; color: rgba(31,35,38,0.7); }
.venue-card-dark { background: var(--ink); border-color: var(--ink); grid-column: 1 / -1; }
.venue-card-dark h3 { color: var(--cream); }
.venue-card-dark p { color: rgba(247,243,234,0.72); }

/* ---------- For hospitality workers ---------- */

.section-workers { background: var(--ink-strong); color: var(--cream); }
.workers-grid { gap: clamp(32px, 4vw, 60px); align-items: center; }
.section-workers h2 { color: var(--cream); }

.workers-left { display: flex; flex-direction: column; align-items: flex-start; gap: 20px; }
.workers-intro { align-items: flex-start; }
.workers-actions { align-items: flex-start; }
.workers-lede { font-size: 17px; line-height: 1.65; color: rgba(247,243,234,0.76); max-width: 32em; }

.workers-right { display: grid; gap: 12px; }
.worker-img { aspect-ratio: 16 / 10; border-color: rgba(247,243,234,0.16); }
.worker-card { border: 1px solid rgba(247,243,234,0.16); padding: 20px 22px; }
.worker-card h3 { font-weight: 700; font-size: 17px; color: var(--cream); margin: 0 0 6px; }
.worker-card p { font-size: 15px; line-height: 1.55; color: rgba(247,243,234,0.68); }

/* ---------- Pilot CTA ---------- */

.section-pilot { background: var(--green); color: var(--cream); }
.pilot-inner {
  max-width: 760px;
  margin: 0 auto;
  padding: var(--section-pad) var(--gutter);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
}
.section-pilot h2 { color: var(--white); font-size: clamp(30px, 3.6vw, 46px); line-height: 1.12; }
.pilot-lede { font-size: 17.5px; line-height: 1.65; color: rgba(247,243,234,0.88); max-width: 34em; }

/* ---------- Footer ---------- */

.site-footer { background: var(--ink-strong); color: rgba(247,243,234,0.7); }

.footer-grid {
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(40px, 5vw, 64px) var(--gutter) 32px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 32px;
}

.logo-word-footer { font-size: 20px; color: var(--cream); }
.footer-body { font-size: 15px; line-height: 1.6; max-width: 24em; }
.footer-status { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600; color: var(--amber); margin-top: 4px; }
.footer-status .dot { width: 6px; height: 6px; }

.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-eyebrow { font-size: 13px; font-weight: 700; letter-spacing: 0.09em; text-transform: uppercase; color: rgba(247,243,234,0.45); }
.footer-col a { font-size: 15px; color: rgba(247,243,234,0.8); }
.footer-col a:hover { color: var(--cream); }
.footer-muted { font-size: 15px; color: rgba(247,243,234,0.55); }

.footer-bottom-wrap { max-width: 1180px; margin: 0 auto; padding: 0 var(--gutter) 40px; }
.footer-bottom {
  border-top: 1px solid rgba(247,243,234,0.12);
  padding-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  justify-content: space-between;
  font-size: 13.5px;
  color: rgba(247,243,234,0.45);
}

/* ---------- Redesign research-first (2026-08) ---------- */

.privacy-link { font-weight: 600; white-space: nowrap; }

.section-research { background: var(--cream-raised); border-bottom: 1px solid var(--rule); }
.research-title { margin: 18px 0 14px; max-width: 22em; }
.research-lede { color: rgba(31,35,38,0.75); max-width: 40em; margin-bottom: clamp(28px, 3.5vw, 44px); }
.research-grid { margin-bottom: clamp(24px, 3vw, 34px); }
.research-cta { margin-top: 0; }
.research-fine { margin-top: 14px; }

.section-vetting { background: var(--cream); border-bottom: 1px solid var(--rule); }
.vetting-title { margin: 18px 0 14px; max-width: 24em; }
.vetting-lede { color: rgba(31,35,38,0.75); max-width: 42em; margin-bottom: clamp(28px, 3.5vw, 44px); }
.vetting-grid { margin-bottom: clamp(20px, 2.5vw, 30px); }
.vetting-close { margin-top: 6px; }

.section-goal { background: var(--cream); border-bottom: 1px solid var(--rule); }
.gap-goal { gap: clamp(32px, 4vw, 60px); align-items: center; }
.goal-img { aspect-ratio: 4 / 3; }
.goal-list { display: flex; flex-direction: column; gap: 4px; }
.goal-list li { display: flex; gap: 12px; align-items: baseline; font-size: 16.5px; line-height: 1.55; padding: 7px 0; }
.goal-list .dot { width: 6px; height: 6px; transform: translateY(-3px); }

.section-promise { background: var(--ink-strong); color: var(--cream); }
.section-promise .section-inner { display: flex; flex-direction: column; align-items: center; text-align: center; }
.promise-title { color: var(--cream); margin: 18px 0 clamp(28px, 3.5vw, 40px); }
.promise-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
  width: 100%;
  text-align: left;
}
.promise-card { border: 1px solid rgba(247,243,234,0.16); padding: 24px 24px; }
.promise-card h3 { font-weight: 700; font-size: 17px; color: var(--amber); margin: 0 0 10px; }
.promise-card p { font-size: 15.5px; line-height: 1.6; color: rgba(247,243,234,0.76); }
.vetting-strip,
.promise-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px clamp(20px, 3vw, 36px);
  justify-content: center;
  margin-top: clamp(26px, 3vw, 36px);
  padding-top: clamp(22px, 2.5vw, 30px);
  border-top: 1px solid rgba(247,243,234,0.16);
  width: 100%;
}
.promise-close { font-size: 16px; line-height: 1.6; color: rgba(247,243,234,0.76); margin-top: clamp(22px, 2.5vw, 30px); max-width: 36em; }
.promise-close a { color: var(--cream); text-decoration: underline; }
.promise-close a:hover { color: #FFFFFF; }

.section-who { background: var(--cream); border-bottom: 1px solid var(--rule); }
.worker-note {
  background: var(--ink);
  border-radius: 12px;
  padding: 22px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
  margin-top: 6px;
}
.worker-note h3 { font-weight: 700; font-size: 17px; color: var(--cream); margin: 0; }
.worker-note p { font-size: 15px; line-height: 1.55; color: rgba(247,243,234,0.72); }
.btn-worker { font-size: 15px; padding: 12px 20px; margin-top: 4px; }

/* ---------- Mobile (≤768px) ---------- */

@media (max-width: 768px) {

  .dsk, .dsk-block { display: none !important; }
  .mob { display: inline !important; }
  .mob-block { display: block !important; }

  section[id] { scroll-margin-top: 76px; }

  /* Header */
  .header-row { height: auto; padding: 12px 20px; }
  .nav-desktop { display: none; }
  .nav-burger {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    width: 44px;
    height: 40px;
    background: var(--white);
    border: 1px solid var(--rule);
    border-radius: 9px;
    cursor: pointer;
    padding: 0;
  }
  .nav-burger span { display: block; width: 18px; height: 2px; border-radius: 2px; background: var(--ink); }

  .mobile-menu {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 8px 20px 16px;
    border-top: 1px solid var(--rule);
  }
  .mobile-menu[hidden] { display: none; }
  .mobile-menu > a:not(.btn) { font-size: 16px; font-weight: 600; color: var(--ink); padding: 10px 0; }
  .mobile-menu .btn { margin-top: 6px; text-align: center; }

  /* Buttons full-width */
  .cta-row { flex-direction: column; align-items: stretch; width: 100%; gap: 10px; }
  .btn { display: block; text-align: center; padding: 16px 20px; border-radius: 10px; }
  .btn-outline-ink, .btn-outline-cream { padding: 14.5px 20px; }
  .mobile-menu .btn { padding: 14px 20px; }

  /* Sections */
  .section-inner { padding: 40px 20px; }
  .hero { padding: 32px 20px 36px; gap: 24px; }
  .hero-copy { gap: 16px; }
  h1 { font-size: 32px; line-height: 1.1; }
  h2 { font-size: 26px; line-height: 1.16; letter-spacing: 0; }
  .hero-lede { font-size: 16.5px; }
  .hero-img { aspect-ratio: 4 / 3; border-radius: 12px; }
  .research-badge { font-size: 12.5px; padding: 6px 12px; }
  .badge-dot { width: 6px; height: 6px; }
  .eyebrow { font-size: 12px; }
  .body-copy { font-size: 16px; }

  /* Trust strip: 2-col grid, left aligned */
  .trust-strip-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 16px;
    padding: 18px 20px;
    justify-content: start;
  }
  .trust-item { font-size: 14.5px; }
  .trust-item .dot { width: 6px; height: 6px; }

  /* Problem */
  .problem-list li { padding: 14px 0; font-size: 15.5px; line-height: 1.45; }

  /* How it works */
  .how-title { margin: 14px 0 16px; }
  .banner-img { aspect-ratio: 16 / 10; border-radius: 12px; margin-bottom: 20px; }
  .step-grid { grid-template-columns: 1fr; gap: 12px; }
  .step-card { padding: 18px; }
  .step-card h3 { font-size: 17px; }
  .step-card p { font-size: 14.5px; }
  .step-num { font-size: 13px; }
  .trust-block { margin-top: 28px; padding-top: 28px; }

  /* Venues */
  .venue-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .venue-card { padding: 16px 14px; border-radius: 11px; }
  .venue-card h3 { font-size: 15.5px; }
  .venue-card p { font-size: 14px; }
  .venues-img-mobile { grid-column: 1 / -1; aspect-ratio: 16 / 9; border-radius: 11px; }

  /* Workers: flatten columns and reorder */
  .workers-left, .workers-right { display: contents; }
  .workers-grid { display: flex; flex-direction: column; gap: 16px; }
  .workers-intro { order: 1; }
  .worker-img { order: 2; aspect-ratio: 4 / 3; }
  .worker-card { order: 3; border-radius: 11px; }
  .workers-actions { order: 4; width: 100%; }
  .worker-card h3 { font-size: 17px; }
  .worker-card p { font-size: 15px; }

  /* Pilot */
  .pilot-inner { padding: 44px 20px; }
  .section-pilot h2 { font-size: 28px; line-height: 1.14; }

  /* Redesign research-first */
  .goal-list li { font-size: 15.5px; padding: 6px 0; }
  .promise-grid { grid-template-columns: 1fr; gap: 12px; }
  .promise-card { border-radius: 11px; padding: 18px; }
  .vetting-strip, .promise-strip { justify-content: flex-start; gap: 10px 18px; }
  .worker-note { padding: 18px; }
  .btn-worker { display: inline-block; width: auto; }

  /* Footer */
  .footer-grid { display: flex; flex-direction: column; gap: 14px; padding: 34px 20px 0; }
  .footer-col { flex-direction: row; flex-wrap: wrap; gap: 8px 18px; align-items: baseline; }
  .footer-col .footer-eyebrow { width: 100%; }
  .footer-bottom-wrap { padding: 20px 20px calc(60px + env(safe-area-inset-bottom)); }
  .footer-bottom { font-size: 13px; }
}
