* {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --ink: #1a1a1a;
  --muted: #6f6a60;
  --paper: #f6f3ec;
  --paper-warm: #e9e2d3;
  --milk: #fbf8f1;
  --line: rgba(183, 177, 165, 0.3);
  --line-strong: rgba(183, 177, 165, 0.58);
  --wood: #7b766b;
  --stone: #b7b1a5;
  --gold: #9f762d;
  --gold-on-dark: #c2a15a;
  --tomato: #a6533f;
  --sage: #d8dccf;
  --fresh: #0b4d1e;
  --honey: #b7b1a5;
  --citron: #d8dccf;
  --deep: #0b4d1e;
  --deep-2: #073719;
  --forest-soft: rgba(11, 77, 30, 0.08);
  --shadow: 0 18px 56px rgba(26, 26, 26, 0.08);
  --serif: "Forum", Georgia, "Times New Roman", serif;
  --sans: "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.5;
  text-rendering: optimizeLegibility;
}

button,
input,
textarea {
  font: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

.nowrap {
  white-space: nowrap;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 24px;
  color: var(--ink);
  background: rgba(246, 243, 236, 0.88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--deep);
  font-family: var(--serif);
  font-size: 1.81rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
}

.brand-mark {
  display: inline-flex;
  width: 60px;
  height: 60px;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.brand-logo {
  display: block;
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.brand-name {
  display: inline-flex;
  align-items: baseline;
}

.brand-name-roux {
  color: var(--deep);
}

.brand-name-chef {
  display: inline-block;
  color: var(--gold);
  transform: translateY(1px);
}

.nav-links {
  display: none;
  align-items: center;
  gap: 18px;
  color: rgba(11, 77, 30, 0.64);
  font-size: 0.94rem;
  font-weight: 600;
}

.nav-links a {
  position: relative;
  display: inline-flex;
  padding: 8px 0;
  transition: color 160ms ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--deep);
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  transform: scaleX(1);
}

.hero {
  position: relative;
  min-height: 780px;
  overflow: hidden;
  background: var(--paper);
}

.hero-media {
  position: absolute;
  inset: 0;
  background-image: url("/images/rouxchef-hero-premium.png");
  background-position: 48% 52px;
  background-size: cover;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(246, 243, 236, 0.98) 0%, rgba(246, 243, 236, 0.92) 34%, rgba(246, 243, 236, 0.42) 66%, rgba(11, 77, 30, 0.18) 100%),
    linear-gradient(0deg, rgba(246, 243, 236, 0.96) 0%, rgba(246, 243, 236, 0) 24%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  width: 100%;
  max-width: 1200px;
  min-height: 780px;
  margin: 0 auto;
  padding: 118px 20px 64px;
  align-items: center;
  gap: 36px;
}

.hero-copy {
  min-width: 0;
  max-width: 680px;
}

.kicker {
  margin: 0 0 14px;
  color: var(--deep);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.intro .kicker,
.chef-proof .kicker,
.conversion .kicker,
.faq .kicker {
  color: var(--gold);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 640px;
  margin-bottom: 24px;
  color: var(--deep);
  font-family: var(--serif);
  font-size: 4.05rem;
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: 0;
  overflow-wrap: break-word;
  text-wrap: balance;
}

h2 {
  margin-bottom: 18px;
  color: var(--deep);
  font-family: var(--serif);
  font-size: 2.55rem;
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.15rem;
  line-height: 1.2;
  letter-spacing: 0;
}

.hero-text,
.section-copy p,
.emphasis p,
.feature-card span,
details p,
.footer p {
  color: var(--muted);
}

.hero-text {
  max-width: 600px;
  margin-bottom: 32px;
  font-size: 1.16rem;
  overflow-wrap: break-word;
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 0 20px;
  border: 1px solid transparent;
  font-weight: 760;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background-color 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button:focus-visible,
summary:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(216, 220, 207, 0.82);
  outline-offset: 3px;
}

.button.primary {
  color: var(--paper);
  background: var(--deep);
  border-color: rgba(194, 161, 90, 0.9);
  box-shadow:
    0 12px 28px rgba(11, 77, 30, 0.16),
    0 0 0 1px rgba(194, 161, 90, 0.18);
}

.button.primary:hover {
  background: #0d332d;
}

.button.secondary {
  color: var(--deep);
  background: rgba(246, 243, 236, 0.78);
  border-color: rgba(11, 77, 30, 0.18);
}

.hero-phone {
  display: none;
}

.phone-shell {
  position: relative;
  width: min(100%, 276px);
  border-radius: 42px;
  padding: 9px;
  border: 1px solid rgba(194, 161, 90, 0.34);
  background: var(--paper-warm);
  box-shadow:
    0 22px 64px rgba(8, 43, 38, 0.18),
    inset 1px 1px 0 rgba(246, 243, 236, 0.7),
    inset -1px -1px 0 rgba(159, 118, 45, 0.16);
}

.phone-shell::before,
.phone-shell::after {
  content: "";
  position: absolute;
  z-index: 2;
  left: 50%;
  transform: translateX(-50%);
}

.phone-shell::before {
  top: 22px;
  width: 72px;
  height: 21px;
  border-radius: 999px;
  background: var(--deep-2);
  box-shadow: inset 0 0 0 1px rgba(246, 243, 236, 0.08);
}

.phone-shell::after {
  bottom: 18px;
  width: 78px;
  height: 4px;
  border-radius: 999px;
  background: rgba(11, 77, 30, 0.18);
}

.mini-phone {
  border-radius: 34px;
  padding: 10px;
  background: var(--deep);
  box-shadow: var(--shadow);
}

.phone-screen,
.mini-screen {
  min-height: 100%;
  border-radius: 26px;
  background: var(--paper);
  border: 1px solid rgba(246, 243, 236, 0.26);
}

.phone-screen {
  width: 100%;
  min-height: 552px;
  padding: 58px 20px 30px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.phone-top,
.ingredient-row,
.recipe-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.phone-top {
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 0.82rem;
}

.phone-top strong {
  color: var(--deep);
}

.phone-screen h2 {
  margin-bottom: 18px;
  font-size: 1.28rem;
  line-height: 1.1;
  text-wrap: balance;
}

.phone-cta {
  width: 100%;
  min-height: 46px;
  margin-bottom: 18px;
  border: 1px solid rgba(194, 161, 90, 0.88);
  border-radius: 8px;
  color: var(--paper);
  background: var(--deep);
  box-shadow: 0 0 0 1px rgba(194, 161, 90, 0.16);
  font-weight: 800;
}

.phone-label {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.source-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 17px;
}

.source-pills span {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  border: 1px solid rgba(11, 77, 30, 0.18);
  border-radius: 999px;
  padding: 0 10px;
  color: var(--deep);
  background: rgba(246, 243, 236, 0.72);
  font-size: 0.72rem;
  font-weight: 700;
}

.ingredient-row {
  min-height: 40px;
  margin-bottom: 7px;
  padding: 0 11px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(246, 243, 236, 0.78);
  font-size: 0.84rem;
  gap: 8px;
}

.ingredient-row small {
  color: var(--muted);
  font-weight: 760;
}

.recipe-card {
  display: block;
  margin-top: auto;
  padding: 15px;
  border-radius: 14px;
  background: var(--deep);
  color: var(--paper);
  box-shadow: 0 16px 34px rgba(11, 77, 30, 0.16);
}

.recipe-card span {
  display: block;
  margin-bottom: 8px;
  color: var(--paper-warm);
  font-size: 0.75rem;
  font-weight: 760;
  text-transform: uppercase;
}

.recipe-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 0.94rem;
  line-height: 1.18;
}

.recipe-card p {
  margin: 0;
  color: #efe7d7;
  font-size: 0.8rem;
}

.section {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 86px 20px;
  scroll-margin-top: 92px;
}

.section-copy {
  max-width: 690px;
}

.section-copy p {
  font-size: 1.06rem;
}

.legal-page {
  padding-top: 86px;
}

.legal-hero {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  padding: 86px 20px 46px;
}

.legal-hero .kicker {
  color: var(--gold);
}

.legal-hero h1 {
  margin-bottom: 18px;
  color: var(--deep);
}

.legal-hero p {
  max-width: 700px;
  color: var(--muted);
  font-size: 1.08rem;
}

.legal-layout {
  display: grid;
  gap: 28px;
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  padding: 0 20px 96px;
}

.legal-note {
  display: grid;
  gap: 14px;
  align-content: start;
  padding: 22px;
  border: 1px solid rgba(194, 161, 90, 0.48);
  border-radius: 8px;
  background: rgba(251, 248, 241, 0.72);
  box-shadow: var(--shadow);
}

.legal-note p {
  margin: 0;
  color: var(--muted);
}

.legal-note a:not(.button) {
  color: var(--deep);
  font-weight: 800;
  border-bottom: 1px solid rgba(11, 77, 30, 0.18);
}

.legal-note-title {
  color: var(--gold) !important;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.legal-button {
  width: 100%;
  margin-top: 4px;
}

.legal-content {
  display: grid;
  gap: 20px;
  padding-top: 4px;
}

.legal-content h2 {
  margin: 18px 0 -6px;
  color: var(--deep);
  font-size: 1.65rem;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p,
.legal-content li {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
}

.legal-content p {
  margin: 0;
}

.legal-content ul,
.legal-content ol {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 1.2rem;
}

.legal-content a {
  color: var(--deep);
  font-weight: 800;
  border-bottom: 1px solid rgba(11, 77, 30, 0.18);
}

.legal-content a:hover,
.legal-note a:not(.button):hover {
  color: var(--gold);
  border-bottom-color: rgba(194, 161, 90, 0.42);
}

.intro {
  position: relative;
  isolation: isolate;
  display: grid;
  gap: clamp(34px, 5vw, 72px);
  align-items: start;
}

.outcome-strip {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  counter-reset: outcome;
  padding: 48px clamp(22px, 4vw, 34px) 12px;
  background: transparent;
}

.outcome-strip::before {
  content: "Tonight should feel like";
  position: absolute;
  top: 18px;
  left: clamp(22px, 4vw, 34px);
  color: var(--stone);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.outcome-strip span {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  align-items: center;
  gap: 18px;
  min-height: 62px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(183, 177, 165, 0.12);
  color: var(--deep);
  font-family: var(--serif);
  font-size: 1.38rem;
  font-weight: 400;
  line-height: 1.08;
}

.outcome-strip span::before {
  counter-increment: outcome;
  content: "0" counter(outcome);
  color: var(--stone);
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  align-self: baseline;
  padding-top: 0.45em;
}

.brand-values {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 20px 78px;
}

.brand-values-inner {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.value-item {
  display: grid;
  gap: 9px;
  justify-items: center;
  padding: 28px 14px;
  text-align: center;
  border-bottom: 1px solid var(--line);
}

.value-item:nth-child(odd) {
  border-right: 1px solid var(--line);
}

.value-item:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.value-icon {
  display: block;
  width: 35px;
  height: 35px;
  color: var(--deep);
  stroke-width: 1.9;
}

.value-item h3 {
  margin: 0;
  color: var(--deep);
  font-size: 0.86rem;
  font-weight: 800;
  text-transform: uppercase;
}

.value-item p {
  max-width: 150px;
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
}

.outcome-strip span:last-child {
  border-bottom: 0;
}

.feature-grid {
  position: relative;
  display: grid;
  gap: 0;
  counter-reset: feature;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.feature-card {
  position: relative;
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  column-gap: 18px;
  align-items: start;
  min-height: 0;
  padding: 34px 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.feature-card::before {
  counter-increment: feature;
  content: "0" counter(feature);
  display: inline-grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  color: var(--deep);
  background: var(--paper);
  box-shadow: none;
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 700;
}

.feature-card p {
  grid-column: 2;
  margin-bottom: 14px;
  color: var(--deep);
  font-size: 0.78rem;
  font-weight: 760;
  text-transform: uppercase;
}

.feature-card h3,
.feature-card span {
  grid-column: 2;
}

.feature-card:last-child {
  border-bottom: 0;
}

.feature-card span {
  display: block;
}

.chef-proof {
  display: grid;
  gap: clamp(34px, 6vw, 76px);
  align-items: start;
}

.chef-proof-copy {
  max-width: 680px;
}

.chef-proof-copy p {
  color: var(--muted);
  font-size: 1.07rem;
}

.proof-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.proof-item {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 8px 18px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.proof-item:last-child {
  border-bottom: 0;
}

.proof-item span {
  grid-row: span 2;
  color: var(--stone);
  font-family: var(--serif);
  font-size: 1.08rem;
  line-height: 1.2;
}

.proof-item strong {
  color: var(--deep);
  font-size: 0.94rem;
  font-weight: 800;
  text-transform: uppercase;
}

.proof-item p {
  margin: 0;
  color: var(--muted);
}

.section.product-flow {
  width: 100%;
  max-width: none;
  padding: 84px max(20px, calc((100% - 1160px) * 0.5));
  background: var(--deep);
}

.product-flow .section-copy {
  max-width: 760px;
}

.product-flow .kicker {
  color: var(--paper-warm);
}

.product-flow h2 {
  color: var(--paper);
}

.screens {
  display: grid;
  gap: 26px;
  max-width: 920px;
  margin: 36px auto 0;
  align-items: end;
}

.mini-phone {
  position: relative;
  width: min(100%, 276px);
  margin: 0 auto;
  border-radius: 42px;
  padding: 9px;
  border: 1px solid rgba(194, 161, 90, 0.32);
  background: var(--paper-warm);
  box-shadow:
    0 18px 56px rgba(8, 43, 38, 0.18),
    inset 1px 1px 0 rgba(246, 243, 236, 0.58),
    inset -1px -1px 0 rgba(159, 118, 45, 0.14);
}

.mini-phone::before,
.mini-phone::after {
  content: "";
  position: absolute;
  z-index: 2;
  left: 50%;
  transform: translateX(-50%);
}

.mini-phone::before {
  top: 22px;
  width: 72px;
  height: 21px;
  border-radius: 999px;
  background: var(--deep-2);
  box-shadow: inset 0 0 0 1px rgba(246, 243, 236, 0.08);
}

.mini-phone::after {
  bottom: 18px;
  width: 78px;
  height: 4px;
  border-radius: 999px;
  background: rgba(11, 77, 30, 0.18);
}

.mini-screen {
  min-height: 552px;
  padding: 58px 20px 30px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.mini-screen p {
  margin-bottom: 14px;
  color: var(--deep);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.mini-screen strong {
  margin-bottom: 12px;
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.22rem;
  line-height: 1.1;
  text-wrap: balance;
  overflow-wrap: break-word;
}

.mini-screen span {
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.42;
}

.mini-screen button {
  width: 100%;
  min-height: 44px;
  margin-top: auto;
  border: 1px solid rgba(194, 161, 90, 0.88);
  border-radius: 8px;
  color: var(--paper);
  background: var(--deep);
  font-weight: 760;
  box-shadow: 0 0 0 1px rgba(194, 161, 90, 0.16);
}

.mini-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 20px 0 18px;
}

.mini-pills i,
.mini-recipe-list i {
  font-style: normal;
}

.mini-pills i {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  border: 1px solid rgba(11, 77, 30, 0.16);
  border-radius: 999px;
  padding: 0 10px;
  color: var(--deep);
  background: rgba(246, 243, 236, 0.72);
  font-size: 0.72rem;
  font-weight: 700;
}

.mini-suggestion {
  display: grid;
  gap: 7px;
  margin-top: 22px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(246, 243, 236, 0.66);
}

.mini-suggestion small {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.mini-suggestion b {
  color: var(--deep);
  font-size: 0.94rem;
  line-height: 1.25;
}

.mini-recipe-list {
  display: grid;
  gap: 10px;
  margin-top: auto;
}

.mini-recipe-list i {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  min-height: 42px;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--deep);
  background: rgba(246, 243, 236, 0.7);
  font-size: 0.78rem;
  font-weight: 700;
}

.mini-recipe-list b {
  display: inline-grid;
  width: 26px;
  height: 26px;
  place-items: center;
  border-radius: 8px;
  background: var(--deep);
  color: var(--paper);
  font-family: var(--serif);
  font-size: 0.78rem;
  font-weight: 700;
}

.scan-line {
  position: relative;
  height: 126px;
  margin-top: auto;
  border-radius: 16px;
  background:
    repeating-linear-gradient(
      180deg,
      rgba(11, 77, 30, 0.12),
      rgba(11, 77, 30, 0.12) 2px,
      transparent 2px,
      transparent 12px
    ),
    rgba(246, 243, 236, 0.84);
  border: 1px solid var(--line);
}

.scan-line::after {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  top: 48%;
  height: 2px;
  background: var(--deep);
}

.progress-lines {
  display: grid;
  gap: 11px;
  margin-top: auto;
}

.progress-lines i {
  display: block;
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--fresh), rgba(11, 77, 30, 0.18));
}

.progress-lines i:nth-child(2) {
  width: 72%;
  background: linear-gradient(90deg, var(--line-strong), rgba(183, 177, 165, 0.2));
}

.progress-lines i:nth-child(3) {
  width: 48%;
  background: linear-gradient(90deg, var(--sage), rgba(216, 220, 207, 0.2));
}

.conversion {
  display: grid;
  gap: clamp(38px, 6vw, 76px);
  align-items: center;
}

.conversion-copy {
  display: grid;
  gap: clamp(42px, 7vw, 84px);
  align-content: center;
}

.emphasis {
  display: grid;
  gap: 20px;
  align-items: start;
}

.emphasis h2 {
  max-width: 690px;
  margin-bottom: 0;
}

.emphasis p {
  max-width: 610px;
  margin: 0;
  padding-left: 18px;
  border-left: 4px solid var(--deep);
  font-size: 1.08rem;
  line-height: 1.62;
}

.waitlist-copy {
  max-width: 560px;
}

.waitlist-form {
  position: relative;
  width: min(100%, 520px);
  justify-self: end;
  display: grid;
  gap: 18px;
  padding: clamp(24px, 4vw, 34px);
  border: 1px solid var(--line-strong);
  border-radius: 16px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 10px;
  color: var(--deep);
  font-size: 0.92rem;
  font-weight: 720;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background: var(--milk);
  color: var(--ink);
  box-shadow: none;
}

input {
  min-height: 54px;
  padding: 0 16px;
}

textarea {
  min-height: 122px;
  padding: 15px 16px;
  resize: vertical;
}

.form-button {
  width: 100%;
  min-height: 54px;
  border-radius: 8px;
}

.form-button:disabled {
  cursor: progress;
  opacity: 0.68;
  transform: none;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.form-status[data-state="success"] {
  color: var(--fresh);
}

.form-status[data-state="error"] {
  color: var(--tomato);
}

.contact-dialog {
  width: min(560px, calc(100% - 40px));
  max-width: none;
  border: 0;
  border-radius: 16px;
  padding: 0;
  color: var(--ink);
  background: transparent;
}

.contact-dialog::backdrop {
  background: rgba(11, 77, 30, 0.42);
  backdrop-filter: blur(10px);
}

.contact-card {
  position: relative;
  display: grid;
  gap: 12px;
  max-height: min(92vh, 700px);
  overflow: auto;
  margin: 0;
  padding: clamp(22px, 4vw, 30px);
  border: 1px solid var(--line-strong);
  border-radius: 16px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.contact-card .kicker {
  margin-bottom: -6px;
}

.contact-card h2 {
  margin-bottom: 0;
  font-size: 1.95rem;
}

.contact-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.contact-card textarea {
  min-height: 102px;
}

.contact-card input {
  min-height: 48px;
}

.contact-card .form-button {
  min-height: 50px;
}

.dialog-close {
  position: absolute;
  top: 28px;
  right: 30px;
  min-height: 34px;
  border: 0;
  padding: 0;
  color: var(--stone);
  background: transparent;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.dialog-close:hover {
  color: var(--deep);
}

.contact-honey-field {
  position: absolute;
  left: -100vw;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.confirmation-dialog {
  width: min(430px, calc(100% - 40px));
  max-width: none;
  border: 0;
  border-radius: 16px;
  padding: 0;
  color: var(--ink);
  background: transparent;
}

.confirmation-dialog::backdrop {
  background: rgba(11, 77, 30, 0.42);
  backdrop-filter: blur(10px);
}

.confirmation-card {
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 28px;
  border: 1px solid var(--line-strong);
  border-radius: 16px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.confirmation-mark {
  position: relative;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  background: var(--paper-warm);
}

.confirmation-mark::after {
  content: "";
  position: absolute;
  left: 16px;
  top: 11px;
  width: 11px;
  height: 19px;
  border: solid var(--deep);
  border-width: 0 3px 3px 0;
  transform: rotate(42deg);
}

.confirmation-card .kicker {
  margin-bottom: -4px;
}

.confirmation-card h2 {
  margin-bottom: 0;
  font-size: 2rem;
}

.confirmation-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.confirmation-card .button {
  width: 100%;
  margin-top: 4px;
}

.faq {
  display: grid;
  gap: 26px;
}

.faq-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

details {
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
}

details:last-child {
  border-bottom: 0;
}

summary {
  cursor: pointer;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 22px;
  gap: 18px;
  align-items: center;
  padding: 20px 0;
  color: var(--deep);
  font-weight: 640;
  line-height: 1.35;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::marker {
  content: "";
}

summary::after {
  content: "+";
  display: inline-grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border: 1px solid rgba(159, 118, 45, 0.22);
  border-radius: 999px;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1;
  transition:
    color 160ms ease,
    border-color 160ms ease,
    transform 160ms ease;
}

summary:hover::after {
  border-color: rgba(159, 118, 45, 0.46);
  color: var(--deep);
}

details[open] summary::after {
  transform: rotate(45deg);
}

details p {
  margin: 0;
  padding: 0 0 22px;
}

.footer {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 44px 20px 28px;
  background: var(--deep);
  color: var(--paper);
  border-top: 1px solid rgba(246, 243, 236, 0.14);
}

.footer p {
  margin-bottom: 0;
  color: rgba(246, 243, 236, 0.88);
}

.footer-inner {
  display: grid;
  gap: 28px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
}

.footer .brand {
  color: var(--paper);
}

.footer .brand-mark {
  width: 58px;
  height: 58px;
  border-radius: 999px;
  background: var(--paper);
  overflow: hidden;
}

.footer .brand-name-roux {
  color: var(--paper);
}

.footer .brand-name-chef {
  color: var(--gold-on-dark);
}

.footer .brand-logo {
  width: 58px;
  height: 58px;
  filter: brightness(1.08) contrast(0.94);
}

.footer-meta {
  display: grid;
  gap: 8px;
  max-width: 430px;
}

.footer-meta p:first-child {
  font-family: var(--serif);
  font-size: 1.9rem;
  line-height: 1.05;
}

.footer-copy {
  color: rgba(246, 243, 236, 0.66);
  font-size: 0.95rem;
}

.footer-links {
  display: grid;
  gap: 10px;
  color: rgba(246, 243, 236, 0.78);
  font-weight: 700;
}

.footer-links a:hover {
  color: var(--paper);
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  max-width: 1200px;
  margin: 34px auto 0;
  padding-top: 22px;
  border-top: 1px solid rgba(246, 243, 236, 0.16);
}

.footer-legal,
.footer-credit,
.footer-utility {
  margin: 0;
  color: rgba(246, 243, 236, 0.52);
  font-size: 0.78rem;
}

.footer-utility {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  align-items: center;
}

.footer-utility a {
  color: inherit;
  border-bottom: 1px solid rgba(246, 243, 236, 0.12);
}

.footer-utility a:hover {
  color: var(--gold-on-dark);
  border-bottom-color: rgba(194, 161, 90, 0.42);
}

.footer .footer-credit {
  color: rgba(126, 168, 129, 0.72);
  font-size: 0.72rem;
}

.footer .footer-credit a {
  color: inherit;
  border-bottom: 1px solid rgba(126, 168, 129, 0.18);
}

.footer .footer-credit a:hover {
  color: var(--gold-on-dark);
  border-bottom-color: rgba(194, 161, 90, 0.42);
}

@media (min-width: 700px) {
  .site-header {
    padding: 18px 34px;
  }

  .nav-links {
    display: flex;
  }

  .hero-inner {
    max-width: 1228px;
    padding-left: 34px;
    padding-right: 34px;
  }

  h1 {
    font-size: 4.45rem;
  }

  h2 {
    font-size: 2.85rem;
  }

  .section {
    max-width: 1228px;
    padding-left: 34px;
    padding-right: 34px;
  }

  .legal-hero {
    padding-left: 34px;
    padding-right: 34px;
  }

  .legal-layout {
    grid-template-columns: minmax(220px, 0.45fr) minmax(0, 1fr);
    gap: 54px;
    padding-left: 34px;
    padding-right: 34px;
  }

  .outcome-strip {
    grid-template-columns: 1fr;
  }

  .outcome-strip span {
    padding: 20px 0;
  }

  .outcome-strip span:nth-child(odd) {
    border-right: 0;
  }

  .outcome-strip span:nth-last-child(-n + 2) {
    border-bottom: 1px solid rgba(183, 177, 165, 0.12);
  }

  .outcome-strip span:last-child {
    border-bottom: 0;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .feature-card {
    padding: 34px 0 36px;
    border-bottom: 1px solid var(--line);
  }

  .feature-card:nth-child(odd) {
    padding-left: 0;
    padding-right: 0;
    border-right: 0;
  }

  .feature-card:nth-child(even) {
    padding-left: 0;
    padding-right: 0;
  }

  .feature-card:nth-last-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .feature-card:last-child {
    border-bottom: 0;
  }

  .chef-proof {
    grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.82fr);
  }

  .waitlist,
  .faq,
  .intro {
    grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.75fr);
  }

  .conversion {
    grid-template-columns: minmax(0, 0.95fr) minmax(420px, 0.72fr);
  }

  .footer {
    display: block;
    max-width: none;
    padding: 52px 34px 30px;
  }

  .footer-inner {
    max-width: 1228px;
    grid-template-columns: minmax(210px, 0.72fr) minmax(280px, 1fr) minmax(160px, 0.35fr);
    gap: 40px;
    align-items: center;
  }

  .footer-meta {
    justify-items: start;
    text-align: left;
  }

  .footer-links {
    justify-self: end;
  }

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    max-width: 1228px;
  }

  .footer-utility {
    justify-content: center;
  }
}

@media (min-width: 760px) and (max-width: 1059px) {
  .screens {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 610px;
  }

  .screens .mini-phone:nth-child(3) {
    grid-column: 1 / -1;
  }
}

@media (min-width: 1060px) {
  .hero-phone {
    display: block;
    position: absolute;
    z-index: 3;
    top: 50%;
    right: clamp(32px, 5vw, 96px);
    transform: translateY(-39%);
  }
}

@media (min-width: 1060px) {
  .feature-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .feature-card {
    padding: 34px 30px 36px;
    border-right: 1px solid var(--line);
    border-bottom: 0;
  }

  .feature-card:nth-child(odd),
  .feature-card:nth-child(even),
  .feature-card:nth-last-child(-n + 2) {
    padding-left: 30px;
    padding-right: 30px;
    border-bottom: 0;
  }

  .feature-card:first-child {
    padding-left: 0;
  }

  .feature-card:last-child {
    padding-right: 0;
    border-right: 0;
  }

  .screens {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(28px, 4vw, 58px);
  }

  .mini-phone {
    width: min(100%, 276px);
  }

  .mini-phone.raised {
    transform: none;
  }
}

@media (max-width: 520px) {
  .site-header {
    padding: 14px 18px;
  }

  .hero {
    min-height: 720px;
  }

  .hero-phone {
    display: none !important;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(246, 243, 236, 0.98) 0%, rgba(246, 243, 236, 0.9) 58%, rgba(246, 243, 236, 0.5) 100%),
      linear-gradient(0deg, rgba(246, 243, 236, 0.98) 0%, rgba(246, 243, 236, 0) 24%);
  }

  .hero-inner {
    display: block;
    width: 100%;
    max-width: none;
    min-height: 720px;
    padding-top: 112px;
    padding-bottom: 54px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .hero-copy,
  .hero-text,
  .section-copy {
    width: min(350px, calc(100vw - 56px));
    max-width: min(350px, calc(100vw - 56px));
    overflow-wrap: anywhere;
  }

  h1 {
    width: min(350px, calc(100vw - 56px));
    max-width: min(350px, calc(100vw - 56px));
    font-size: 2.34rem;
    line-height: 1.04;
    overflow-wrap: anywhere;
  }

  h2 {
    font-size: 2.15rem;
  }

  .hero-actions {
    display: grid;
    width: min(350px, calc(100vw - 56px));
  }

  .button {
    width: 100%;
    max-width: 100%;
  }

  .section {
    overflow: hidden;
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .section.product-flow {
    padding: 64px 20px;
  }

  .brand-values {
    padding: 0 20px 58px;
  }

  .brand-values-inner {
    grid-template-columns: 1fr;
  }

  .value-item,
  .value-item:nth-child(odd),
  .value-item:nth-last-child(-n + 2) {
    min-width: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .value-item:last-child {
    border-bottom: 0;
  }

  .value-item h3,
  .value-item p {
    min-width: 0;
    overflow-wrap: break-word;
  }

  .feature-grid {
    width: 100%;
    min-width: 0;
  }

  .feature-card {
    display: block;
    width: 100%;
    max-width: 100%;
  }

  .feature-card p,
  .feature-card h3,
  .feature-card span {
    grid-column: auto;
    min-width: 0;
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .feature-card::before {
    margin-bottom: 18px;
  }

  .feature-card h3 {
    font-size: 1.05rem;
  }
}
