:root {
  color-scheme: light;
  --brand: #1b3c27;
  --cream: #f5f2eb;
  --paper: #fffdf6;
  --sage: #e5e9dc;
  --gold: #d9bf7e;
  --ink: #213529;
  --muted: #5d695e;
  --line: #d3d8ca;
  --radius: 1.5rem;
  --serif: Georgia, "Times New Roman", serif;
  --sans: "Avenir Next", Avenir, "Segoe UI", Arial, sans-serif;
  --text-caption: 0.75rem;
  --text-small: 0.8125rem;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 7rem;
}

body {
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3, p, figure {
  margin: 0;
}

h1, h2 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 1.08;
  text-wrap: balance;
}

h2 {
  font-size: clamp(2.35rem, 4.25vw, 3.75rem);
}

h3 {
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.3;
}

h1 em, h2 em {
  color: var(--brand);
  font-weight: 400;
}

a {
  color: inherit;
  text-decoration-thickness: 0.0625rem;
  text-underline-offset: 0.25rem;
}

button {
  font: inherit;
}

button, a, summary {
  -webkit-tap-highlight-color: transparent;
}

a:focus-visible, button:focus-visible, summary:focus-visible {
  border-radius: 0.25rem;
  outline: 0.1875rem solid #9c4f29;
  outline-offset: 0.3125rem;
}

svg, img {
  display: block;
  flex-shrink: 0;
  max-width: 100%;
}

svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.65;
}

button svg, a svg {
  pointer-events: none;
}

.section-shell, .header-inner {
  margin-inline: auto;
  width: min(calc(100% - 4rem), 75rem);
}

.skip-link {
  background: var(--brand);
  border-radius: 0.5rem;
  color: var(--cream);
  left: 1rem;
  padding: 0.75rem 1rem;
  position: fixed;
  top: -5rem;
  z-index: 100;
}

.skip-link:focus {
  top: 1rem;
}

.preview-banner {
  align-items: center;
  background: var(--brand);
  color: var(--cream);
  display: flex;
  font-size: var(--text-small);
  gap: 1.5rem;
  justify-content: center;
  min-height: 2.75rem;
  padding-inline: 1rem;
}

.preview-banner p, .preview-banner a {
  align-items: center;
  display: flex;
  gap: 0.5rem;
}

.preview-banner a {
  min-height: 2.75rem;
}

.preview-banner a:focus-visible {
  outline-color: var(--gold);
}

.status-dot {
  background: currentColor;
  border-radius: 50%;
  display: inline-block;
  flex-shrink: 0;
  height: 0.375rem;
  width: 0.375rem;
}

.preview-banner .status-dot {
  color: var(--gold);
}

.site-header {
  backdrop-filter: blur(1rem);
  background: rgb(245 242 235 / 96%);
  border-bottom: 0.0625rem solid rgb(27 60 39 / 9%);
  position: sticky;
  top: 0;
  z-index: 30;
}

.header-inner {
  align-items: center;
  display: flex;
  justify-content: space-between;
  min-height: 6rem;
  position: relative;
}

.brand {
  align-items: center;
  display: inline-flex;
  flex-shrink: 0;
  font-size: 1.6rem;
  font-weight: 650;
  gap: 0.65rem;
  letter-spacing: -0.065em;
  line-height: 1;
  text-decoration: none;
}

.brand-light {
  font-weight: 400;
}

.primary-nav {
  align-items: center;
  display: flex;
  font-size: 0.875rem;
  gap: 2rem;
}

.primary-nav > a {
  align-items: center;
  display: inline-flex;
  min-height: 2.75rem;
  text-decoration: none;
}

.primary-nav > a:not(.button):hover, .site-footer a:hover {
  text-decoration: underline;
}

.button {
  align-items: center;
  border: 0.0625rem solid transparent;
  border-radius: 0.5rem;
  cursor: pointer;
  display: inline-flex;
  font-size: 0.9375rem;
  font-weight: 600;
  gap: 1.25rem;
  justify-content: center;
  line-height: 1.35;
  min-height: 3.25rem;
  padding: 0.875rem 1.375rem;
  text-align: center;
  text-decoration: none;
  transition: background 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.button:hover {
  box-shadow: 0 0.25rem 0.5rem rgb(27 60 39 / 8%);
  transform: translateY(-0.125rem);
}

.button:active {
  transform: translateY(0);
}

.button:disabled {
  cursor: wait;
  opacity: 0.7;
  transform: none;
}

.button-primary {
  background: var(--brand);
  color: var(--cream);
}

.button-primary:hover {
  background: #295338;
}

.button-outline {
  border-color: #889981;
  color: var(--brand);
}

.button-outline:hover {
  background: var(--sage);
}

.button-cream {
  background: var(--cream);
  color: var(--brand);
}

.button-cream:hover {
  background: var(--paper);
}

.button-small {
  font-size: 0.875rem;
  min-height: 2.75rem;
  padding: 0.625rem 1.125rem;
}

.menu-toggle {
  align-items: center;
  background: transparent;
  border: 0.0625rem solid var(--line);
  border-radius: 0.5rem;
  color: var(--brand);
  cursor: pointer;
  display: none;
  font-size: 0.875rem;
  gap: 0.5rem;
  min-height: 2.75rem;
  padding: 0.5rem 0.75rem;
}

.eyebrow {
  align-items: center;
  display: flex;
  font-size: var(--text-caption);
  font-weight: 600;
  gap: 0.65rem;
  letter-spacing: 0.115em;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.eyebrow-line {
  background: var(--brand);
  height: 0.0625rem;
  width: 1.5rem;
}

.hero {
  align-items: center;
  display: grid;
  gap: 2.5rem;
  grid-template-columns: 1.08fr 1fr;
  padding-block: 3.75rem 4.5rem;
}

.hero h1 {
  font-size: clamp(3.3rem, 6.2vw, 5.35rem);
  line-height: 1.025;
  margin-bottom: 1.75rem;
}

.hero-description {
  color: var(--muted);
  font-size: 1.0625rem;
  line-height: 1.75;
  max-width: 29rem;
}

.hero-highlights {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 1.5rem 0 0;
  max-width: 25.5rem;
}

.hero-highlights > div + div {
  border-left: 0.0625rem solid var(--line);
  padding-left: 1.5rem;
}

.hero-highlights dt {
  color: var(--muted);
  font-size: 0.6875rem;
}

.hero-highlights dd {
  color: var(--brand);
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.5vw, 1.875rem);
  letter-spacing: -0.04em;
  line-height: 1.25;
  margin: 0.25rem 0 0;
}

.hero-highlights small {
  color: var(--muted);
  display: block;
  font-family: var(--sans);
  font-size: 0.625rem;
  letter-spacing: 0;
  line-height: 1.5;
  margin-top: 0.375rem;
}

.hero-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 1.125rem 1.5rem;
  margin-top: 1.5rem;
}

.text-link {
  align-items: center;
  display: inline-flex;
  font-size: 0.875rem;
  font-weight: 600;
  gap: 0.5rem;
  min-height: 2.75rem;
}

.hero-note {
  align-items: center;
  color: var(--muted);
  display: flex;
  font-size: var(--text-caption);
  gap: 0.5rem;
  margin-top: 1.125rem;
}

.hero-visual {
  min-width: 0;
}

.hero-art {
  isolation: isolate;
  padding-block: 3.5rem 2.5rem;
  position: relative;
}

.orbit-canvas {
  inset: 0;
  overflow: clip;
  position: absolute;
  z-index: -1;
}

.visual-orbit {
  border: 0.0625rem solid #cbd3bd;
  border-radius: 50%;
  pointer-events: none;
  position: absolute;
  z-index: -1;
}

.orbit-one {
  background: #e9ecdf;
  height: 29rem;
  right: 0;
  top: 2rem;
  transform: rotate(-15deg);
  width: 96%;
}

.orbit-two {
  border-style: dashed;
  height: 28rem;
  right: 0.375rem;
  top: 2.75rem;
  transform: rotate(25deg);
  width: 88%;
}

.visual-star {
  color: #a47d38;
  position: absolute;
  right: 2rem;
  top: 0.5rem;
}

.restaurant-window {
  background: var(--paper);
  border: 0.0625rem solid #cfd6c5;
  border-radius: 1rem;
  box-shadow: 0 1.125rem 2rem rgb(33 53 41 / 10%);
  left: 0;
  overflow: hidden;
  position: relative;
  transform: rotate(-5deg);
  width: 85%;
}

.window-bar {
  align-items: center;
  border-bottom: 0.0625rem solid #e1e4d9;
  display: flex;
  font-size: 0.5rem;
  font-weight: 600;
  gap: 0.75rem;
  justify-content: space-between;
  letter-spacing: 0.07em;
  padding: 0.875rem 1rem;
}

.window-dots {
  display: flex;
  gap: 0.25rem;
}

.window-dots i {
  background: #c5ccb9;
  border-radius: 50%;
  height: 0.3rem;
  width: 0.3rem;
}

.window-content {
  padding: 1.5rem;
}

.window-heading {
  align-items: center;
  display: flex;
  justify-content: space-between;
}

.mock-overline {
  color: var(--muted);
  display: block;
  font-size: 0.5rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.window-heading h2 {
  font-size: 1.5rem;
  letter-spacing: -0.04em;
  margin-top: 0.375rem;
}

.mock-avatar {
  align-items: center;
  background: var(--brand);
  border-radius: 50%;
  color: var(--cream);
  display: flex;
  font-family: var(--serif);
  font-size: 1.25rem;
  height: 2.375rem;
  justify-content: center;
  width: 2.375rem;
}

.mock-stat {
  align-items: center;
  background: var(--sage);
  border-radius: 0.625rem;
  display: flex;
  font-size: 0.8125rem;
  justify-content: space-between;
  line-height: 1.5;
  margin-top: 1.25rem;
  padding: 0.875rem 1rem;
}

.mock-stat strong {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 400;
}

.mock-section-heading {
  align-items: center;
  display: flex;
  font-size: 0.5625rem;
  font-weight: 600;
  justify-content: space-between;
  margin-block: 1.25rem 0.375rem;
}

.mock-pill {
  border: 0.0625rem solid var(--line);
  border-radius: 1rem;
  font-size: 0.4375rem;
  padding: 0.125rem 0.375rem;
}

.mock-order {
  align-items: center;
  border-bottom: 0.0625rem solid #e1e4d9;
  display: flex;
  font-size: 0.625rem;
  gap: 0.625rem;
  padding-block: 0.625rem;
}

.mock-order small {
  color: var(--muted);
  display: block;
  font-size: 0.5rem;
}

.mock-order-icon {
  background: #f0eddf;
  border-radius: 0.4375rem;
  padding: 0.4375rem;
}

.mock-order-status {
  background: #ede3c6;
  border-radius: 1rem;
  color: #6c5626;
  font-size: 0.5rem;
  margin-left: auto;
  padding: 0.25rem 0.4375rem;
}

.mock-chart {
  font-size: 0.5625rem;
  margin-top: 1rem;
}

.chart-bars {
  align-items: end;
  border-bottom: 0.0625rem solid #dce1d4;
  display: flex;
  gap: 0.4375rem;
  height: 4.375rem;
  margin-top: 0.5rem;
}

.chart-bars i {
  background: #becbb2;
  border-radius: 0.1875rem 0.1875rem 0 0;
  flex: 1;
  height: 40%;
}

.chart-bars i:nth-child(3n) { height: 57%; }
.chart-bars i:nth-child(2n) { height: 48%; }
.chart-bars i:nth-child(7) { height: 65%; }
.chart-bars i:nth-child(8) { height: 59%; }
.chart-bars i:nth-child(9) { height: 73%; }
.chart-bars i:nth-child(10) { height: 69%; }
.chart-bars i:nth-child(11) { background: #6a855c; height: 87%; }
.chart-bars i:nth-child(12) { background: var(--brand); height: 97%; }

.phone-preview {
  background: var(--paper);
  border: 0.3125rem solid #354b3a;
  border-radius: 2rem;
  bottom: 3rem;
  box-shadow: 0 1.5rem 2.5rem rgb(21 43 27 / 20%), inset 0 0 0 0.0625rem #d1d6c8;
  overflow: hidden;
  padding: 0.625rem 0.625rem 0.4375rem;
  position: absolute;
  right: -0.125rem;
  transform: rotate(6deg);
  width: 46%;
  z-index: 2;
}

.phone-speaker {
  background: #314633;
  border-radius: 1rem;
  height: 0.25rem;
  margin: 0 auto 0.8125rem;
  width: 2.5rem;
}

.phone-top {
  align-items: center;
  display: flex;
  font-size: 0.6875rem;
  font-weight: 600;
  justify-content: space-between;
  letter-spacing: -0.03em;
  padding: 0.1875rem 0.25rem;
}

.phone-greeting {
  font-family: var(--serif);
  font-size: 1.375rem;
  letter-spacing: -0.045em;
  line-height: 1.15;
  margin: 0.875rem 0.25rem;
}

.phone-image {
  border-radius: 0.75rem;
  overflow: hidden;
}

.phone-image img {
  height: auto;
  width: 100%;
}

.phone-meal {
  padding: 0.875rem 0.25rem;
}

.phone-meal h3 {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 400;
  margin-block: 0.25rem;
}

.phone-meal p {
  color: var(--muted);
  font-size: 0.5625rem;
}

.phone-action {
  align-items: center;
  background: var(--brand);
  border-radius: 0.4375rem;
  color: var(--cream);
  display: flex;
  font-size: 0.5625rem;
  gap: 0.5rem;
  justify-content: space-between;
  padding: 0.6875rem 0.5rem;
}

.phone-home {
  background: var(--brand);
  border-radius: 1rem;
  height: 0.1875rem;
  margin: 0.625rem auto 0;
  width: 3.375rem;
}

.connection-badge {
  align-items: center;
  background: var(--paper);
  border: 0.0625rem solid #d9dece;
  border-radius: 0.75rem;
  bottom: 3.75rem;
  box-shadow: 0 0.625rem 1.25rem rgb(33 53 41 / 8%);
  display: flex;
  font-size: 0.6875rem;
  gap: 0.625rem;
  left: -0.125rem;
  line-height: 1.5;
  padding: 0.875rem 1rem;
  position: absolute;
  transform: rotate(-3deg);
  z-index: 3;
}

.connection-badge > span {
  background: var(--sage);
  border-radius: 50%;
  padding: 0.5625rem;
}

.hero-visual figcaption {
  color: var(--muted);
  font-size: var(--text-caption);
  margin-top: 0.75rem;
  text-align: center;
  width: 100%;
}

.local-strip {
  align-items: center;
  border-block: 0.0625rem solid var(--line);
  display: flex;
  gap: 2rem;
  justify-content: space-between;
  padding-block: 1.75rem;
}

.local-strip p {
  color: var(--muted);
  font-size: var(--text-small);
  line-height: 1.6;
}

.local-strip strong {
  color: var(--ink);
  font-weight: 500;
}

.local-strip > span {
  align-items: center;
  display: flex;
  font-family: var(--serif);
  font-size: 1.1875rem;
  gap: 0.75rem;
  letter-spacing: -0.025em;
}

.profit-section {
  align-items: center;
  display: grid;
  gap: 5rem;
  grid-template-columns: 1.2fr 1fr;
  padding-block: 4.5rem;
}

.profit-copy > p:not(.eyebrow) {
  color: var(--muted);
  margin-top: 1.5rem;
  max-width: 31rem;
}

.profit-copy .fine-print {
  font-size: var(--text-small);
  line-height: 1.65;
  max-width: 27rem;
}

.profit-card {
  background: var(--sage);
  border: 0.0625rem solid #d9dfce;
  border-radius: var(--radius);
  padding: 2.375rem;
}

.profit-label {
  align-items: center;
  display: flex;
  font-size: var(--text-small);
  gap: 0.5rem;
}

.profit-number {
  align-items: baseline;
  display: flex;
  font-family: var(--serif);
  font-size: clamp(4.375rem, 7vw, 6rem);
  letter-spacing: -0.08em;
  line-height: 1.15;
  margin-block: 0.875rem 0.5rem;
}

.profit-number span {
  font-family: var(--sans);
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0;
  margin-inline: 0.625rem;
}

.profit-number sup {
  align-self: center;
  font-size: 2.25rem;
  margin-left: 0.5rem;
}

.profit-card h3 {
  font-size: 1.1875rem;
  margin-bottom: 0.75rem;
}

.platform-section {
  background: #eaece2;
  border-block: 0.0625rem solid #dee2d5;
  padding-block: 4rem;
}

.section-heading {
  align-items: end;
  display: flex;
  gap: 3rem;
  justify-content: space-between;
  margin-bottom: 2.25rem;
}

.section-heading > p {
  color: var(--muted);
  font-size: 0.875rem;
  max-width: 20rem;
  padding-bottom: 0.25rem;
}

.feature-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-card {
  background: #f8f7f0;
  border: 0.0625rem solid #d9dfd1;
  border-radius: 1.125rem;
  display: flex;
  flex-direction: column;
  padding: 1.875rem;
}

.feature-top {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin-bottom: 1.125rem;
}

.feature-icon {
  align-items: center;
  background: #e5e9dc;
  border-radius: 0.75rem;
  display: flex;
  height: 3rem;
  justify-content: center;
  width: 3rem;
}

.feature-number {
  color: var(--muted);
  font-size: var(--text-caption);
}

.feature-card h3 {
  font-family: var(--serif);
  font-size: 1.65rem;
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1.2;
  margin-bottom: 0.75rem;
}

.feature-card > p {
  color: var(--muted);
  font-size: 0.875rem;
  line-height: 1.65;
}

.feature-card-accent {
  background: #eee8d7;
  border-color: #daceaf;
}

.feature-card-accent .feature-icon {
  background: #e3d8ba;
}

.feature-card-delivery {
  background: #e5ecdd;
  border-color: #c6d2b9;
  grid-column: 1 / -1;
}

.feature-card-delivery > p {
  max-width: 50rem;
}

.feature-card-delivery > .feature-note {
  font-size: var(--text-small);
  margin-top: 0.75rem;
}

.mission-section {
  align-items: center;
  display: grid;
  gap: 5.5rem;
  grid-template-columns: 1fr 1fr;
  padding-block: 4.5rem;
}

.mission-art {
  align-items: center;
  background: #e9dfc9;
  border: 0.0625rem solid #ddd3bd;
  border-radius: 1.75rem;
  display: flex;
  height: 28rem;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.mission-stamp {
  align-items: center;
  border: 0.0625rem solid #a9ab83;
  border-radius: 50%;
  display: flex;
  font-size: 0.625rem;
  height: 6rem;
  justify-content: center;
  left: 1.5rem;
  letter-spacing: 0.08em;
  line-height: 1.7;
  position: absolute;
  text-align: center;
  top: 1.5rem;
  transform: rotate(-16deg);
  width: 6rem;
}

.store-illustration {
  filter: drop-shadow(0 1rem 0.6875rem rgb(81 75 45 / 9%));
  margin-top: 2rem;
  transform: rotate(-3deg);
  width: 66%;
}

.store-roof {
  display: flex;
  height: 3.25rem;
  position: relative;
  z-index: 1;
}

.store-roof span {
  background: var(--brand);
  border: 0.0625rem solid #314d32;
  border-radius: 0.1875rem 0.1875rem 1rem 1rem;
  flex: 1;
}

.store-roof span:nth-child(even) {
  background: #f3ecd9;
}

.store-name {
  background: #f3ecd9;
  border-inline: 0.25rem solid var(--brand);
  font-family: var(--serif);
  font-size: 1.3rem;
  letter-spacing: -0.035em;
  margin-inline: 0.625rem;
  margin-top: -0.625rem;
  padding: 1.0625rem 0.5rem 0.625rem;
  text-align: center;
}

.store-front {
  background: #f3ecd9;
  border: 0.25rem solid var(--brand);
  border-top-width: 0.125rem;
  display: grid;
  gap: 0.75rem;
  grid-template-columns: 1.25fr 0.8fr;
  height: 9.5rem;
  margin-inline: 0.625rem;
  padding: 0.875rem 0.625rem 0;
}

.store-window {
  align-items: center;
  background: #c4d0b6;
  border: 0.125rem solid var(--brand);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 1.0625rem;
}

.store-window span {
  font-family: var(--serif);
  font-size: 0.6875rem;
  font-style: italic;
}

.store-door {
  align-items: center;
  background: linear-gradient(to bottom, #acbfa6 76%, #2f4f36 76%);
  border: 0.1875rem solid var(--brand);
  border-bottom: 0;
  display: flex;
  justify-content: center;
  position: relative;
}

.store-door span {
  background: #f5edda;
  font-family: var(--serif);
  font-size: 0.875rem;
  margin-bottom: 1rem;
  padding: 0.1875rem 0.5rem;
  transform: rotate(8deg);
}

.store-door::after {
  background: #eedcb2;
  border-radius: 1rem;
  content: "";
  height: 1rem;
  left: 0.25rem;
  position: absolute;
  top: 3.5rem;
  width: 0.1875rem;
}

.store-step {
  background: #8a9676;
  border: 0.0625rem solid #647256;
  border-radius: 0.1875rem;
  height: 0.625rem;
}

.mission-art-caption {
  bottom: 2rem;
  font-family: var(--serif);
  font-size: 1.125rem;
  font-style: italic;
  position: absolute;
  transform: rotate(-3deg);
}

.mission-spark {
  color: #967638;
  position: absolute;
  right: 2rem;
  top: 3.25rem;
}

.mission-copy > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 0.9375rem;
  margin-top: 1.375rem;
}

.mission-signoff {
  align-items: center;
  display: flex;
  font-size: 0.75rem;
  font-weight: 600;
  gap: 0.625rem;
  margin-top: 1.625rem;
}

.trial-section {
  padding-bottom: 4.5rem;
}

.trial-panel {
  align-items: center;
  background: var(--brand);
  border-radius: 1.75rem;
  color: var(--cream);
  display: grid;
  gap: 3rem;
  grid-template-columns: 1fr 20rem;
  overflow: hidden;
  padding: 3rem 4rem;
}

.trial-copy h2 {
  font-size: clamp(2.375rem, 4.3vw, 3.75rem);
}

.trial-copy em {
  color: #ddc78f;
}

.trial-copy > p:not(.eyebrow) {
  color: #d1daca;
  font-size: 0.9375rem;
  margin-block: 1.625rem 2rem;
  max-width: 31rem;
}

.trial-panel a:focus-visible {
  outline-color: var(--gold);
}

.trial-ticket {
  background: var(--cream);
  border-radius: 1rem;
  color: var(--brand);
  padding: 1.75rem;
  position: relative;
  text-align: center;
  transform: rotate(4deg);
}

.ticket-overline {
  display: block;
  font-size: var(--text-caption);
  font-weight: 600;
  letter-spacing: 0.075em;
  margin-bottom: 1.125rem;
}

.ticket-number {
  font-family: var(--serif);
  font-size: 7.5rem;
  letter-spacing: -0.05em;
  line-height: 0.95;
}

.ticket-number span {
  display: block;
  font-size: 1.5rem;
  font-style: italic;
  letter-spacing: -0.025em;
  margin-top: 0.5rem;
}

.ticket-free {
  font-size: 0.875rem;
  font-weight: 600;
  margin-top: 1rem;
}

.ticket-divider {
  border-top: 0.0625rem dashed #a6b298;
  margin-block: 1.25rem;
}

.ticket-status {
  align-items: center;
  display: inline-flex;
  font-size: var(--text-caption);
  font-weight: 600;
  gap: 0.4375rem;
}

.ticket-terms {
  color: var(--muted);
  font-size: var(--text-caption);
  line-height: 1.75;
  margin-top: 0.75rem;
}

.faq-section {
  display: grid;
  gap: 5rem;
  grid-template-columns: 0.85fr 1.2fr;
  padding-bottom: 4.5rem;
}

.availability-note {
  border-left: 0.125rem solid #b4c3a5;
  color: var(--muted);
  font-size: 0.875rem;
  margin-top: 1.75rem;
  max-width: 22rem;
  padding-left: 1rem;
  scroll-margin-top: 7rem;
}

.availability-note .status-dot {
  margin-right: 0.3125rem;
  vertical-align: middle;
}

.faq-list details {
  border-bottom: 0.0625rem solid var(--line);
}

.faq-list details:first-child {
  border-top: 0.0625rem solid var(--line);
}

.faq-list summary {
  align-items: center;
  cursor: pointer;
  display: flex;
  font-size: 1rem;
  font-weight: 500;
  gap: 1.25rem;
  justify-content: space-between;
  line-height: 1.5;
  list-style: none;
  min-height: 4.625rem;
  padding: 1.125rem 0.625rem;
}

.faq-list summary:focus-visible {
  border-radius: 0.5rem;
  outline-offset: -0.25rem;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary:hover {
  color: #476138;
}

.faq-indicator {
  flex-shrink: 0;
  height: 1rem;
  position: relative;
  width: 1rem;
}

.faq-indicator::before, .faq-indicator::after {
  background: currentColor;
  content: "";
  height: 0.0625rem;
  left: 0.125rem;
  position: absolute;
  top: 0.5rem;
  width: 0.75rem;
}

.faq-indicator::after {
  transform: rotate(90deg);
  transition: transform 160ms ease;
}

details[open] .faq-indicator::after {
  transform: rotate(0);
}

.faq-list details > p {
  color: var(--muted);
  font-size: 0.875rem;
  line-height: 1.8;
  padding: 0.375rem 2.5rem 1.5rem 0.625rem;
}

.faq-list details > p + p {
  padding-top: 0;
}

.share-section {
  align-items: center;
  border-top: 0.0625rem solid var(--line);
  display: flex;
  gap: 3rem;
  justify-content: space-between;
  padding-block: 3.5rem 4rem;
}

.share-section .eyebrow {
  margin-bottom: 1rem;
}

.share-section h2 {
  font-size: clamp(2rem, 3.3vw, 2.875rem);
}

.share-section > div > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 0.875rem;
  margin-top: 1rem;
}

.share-actions {
  max-width: 19rem;
  min-width: 14rem;
}

.share-actions .share-fallback, .share-actions .share-status {
  font-size: var(--text-caption);
  line-height: 1.65;
}

.share-status:empty {
  display: none;
}

.share-manual-link {
  display: inline-block;
  font-size: 0.8125rem;
  margin-top: 0.5rem;
  overflow-wrap: anywhere;
}

.site-footer {
  align-items: center;
  border-top: 0.0625rem solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  justify-content: space-between;
  padding-block: 2rem;
}

.site-footer .brand {
  font-size: 1.35rem;
}

.site-footer > p, .site-footer > div {
  color: var(--muted);
  font-size: var(--text-caption);
}

.site-footer > div {
  align-items: center;
  display: flex;
  gap: 1.5rem;
}

.site-footer > div a {
  align-items: center;
  display: inline-flex;
  min-height: 2.75rem;
}

.document-page {
  margin-inline: auto;
  max-width: 48rem;
  min-height: calc(100svh - 15rem);
  padding-block: 4.5rem;
}

.document-page h1 {
  font-size: clamp(2.75rem, 6vw, 4.5rem);
  margin-bottom: 2rem;
}

.document-page h2 {
  font-size: 1.75rem;
  margin-block: 2.5rem 1rem;
}

.document-page p, .document-page li {
  color: var(--muted);
  margin-bottom: 1rem;
}

.document-page .button {
  margin-top: 1rem;
}

.not-found {
  align-items: start;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 42rem;
}

@media (min-width: 90rem) {
  .hero {
    padding-block: 4.5rem 5rem;
  }
}

@media (max-width: 64rem) {
  .primary-nav {
    gap: 1.5rem;
  }

  .hero {
    gap: 2rem;
  }

  .restaurant-window {
    width: 88%;
  }

  .window-content {
    padding: 1.25rem;
  }

  .phone-preview {
    width: 49%;
  }

  .phone-greeting {
    font-size: 1.1875rem;
  }

  .connection-badge {
    font-size: 0.625rem;
    left: -0.5rem;
    padding: 0.75rem;
  }

  .local-strip {
    gap: 1rem;
  }

  .local-strip > span {
    font-size: 1rem;
    gap: 0.5rem;
  }

  .profit-section, .mission-section, .faq-section {
    gap: 3rem;
  }

  .profit-card {
    padding: 1.875rem;
  }

  .feature-card {
    padding: 1.5rem;
  }

  .trial-panel {
    gap: 2rem;
    grid-template-columns: 1fr 17rem;
    padding: 3rem;
  }
}

@media (max-width: 58rem) {
  .hero {
    gap: 1rem;
    grid-template-columns: 1fr;
    padding-top: 3rem;
  }

  .hero-copy {
    max-width: 40rem;
  }

  .hero h1 {
    font-size: clamp(3.5rem, 9vw, 5.5rem);
  }

  .hero-description {
    max-width: 34rem;
  }

  .hero-visual {
    margin: 0 auto;
    width: min(100%, 32rem);
  }

  .restaurant-window {
    width: 85%;
  }

  .phone-preview {
    width: 46%;
  }

  .phone-greeting {
    font-size: 1.375rem;
  }

  .local-strip {
    flex-wrap: wrap;
    gap: 1.25rem;
  }

  .local-strip p {
    width: 100%;
  }

  .local-strip p br {
    display: none;
  }

  .profit-section {
    gap: 2rem;
    grid-template-columns: 1.15fr 1fr;
  }

  .section-heading {
    align-items: start;
    flex-direction: column;
    gap: 1.5rem;
  }

  .section-heading > p {
    max-width: 33rem;
  }

  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mission-section {
    gap: 2.5rem;
    grid-template-columns: 1fr;
  }

  .mission-art {
    height: 25rem;
    order: 2;
    width: min(100%, 32rem);
  }

  .mission-copy {
    max-width: 35rem;
  }

  .mission-copy h2 br {
    display: none;
  }

  .trial-panel {
    gap: 2.5rem;
    grid-template-columns: 1fr;
  }

  .trial-ticket {
    margin-inline: auto;
    width: 18rem;
  }

  .faq-section {
    gap: 2.5rem;
    grid-template-columns: 1fr;
  }

  .availability-note {
    max-width: 35rem;
  }

  .share-section {
    align-items: start;
    flex-direction: column;
    gap: 1.75rem;
  }

  .share-actions {
    max-width: 26rem;
  }

  .site-footer > p {
    display: none;
  }
}

@media (max-width: 46rem) {
  .section-shell, .header-inner {
    width: calc(100% - 2.5rem);
  }

  .preview-banner {
    font-size: var(--text-caption);
    gap: 0.75rem;
  }

  .preview-banner > p .status-dot {
    display: none;
  }

  .preview-banner > a {
    flex-shrink: 0;
  }

  .header-inner {
    flex-wrap: wrap;
    min-height: 4.75rem;
  }

  .brand {
    font-size: 1.4rem;
  }

  .brand img {
    height: 2.125rem;
    width: 2.125rem;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .primary-nav {
    align-items: stretch;
    border-top: 0.0625rem solid var(--line);
    flex-direction: column;
    gap: 0.375rem;
    padding-block: 0.875rem 1.25rem;
    width: 100%;
  }

  .primary-nav[data-enhanced="true"] {
    display: none;
  }

  .primary-nav[data-enhanced="true"][data-open="true"] {
    display: flex;
  }

  .primary-nav > a:not(.button) {
    padding-inline: 0.25rem;
  }

  .primary-nav .nav-cta {
    margin-top: 0.5rem;
  }

  .hero {
    padding-block: 2.5rem 3rem;
  }

  .hero h1 {
    font-size: clamp(2.875rem, 10.5vw, 4.75rem);
  }

  .hero-description {
    font-size: 0.9375rem;
  }

  .hero-actions {
    gap: 0.5rem 1rem;
    margin-top: 1.5rem;
  }

  .hero-actions .button {
    font-size: 0.875rem;
    padding-inline: 1.125rem;
  }

  .hero-visual {
    margin-top: 0.5rem;
  }

  .local-strip {
    gap: 1rem 1.5rem;
    padding-block: 1.375rem;
  }

  .local-strip > span {
    font-size: 0.9375rem;
  }

  .profit-section, .mission-section {
    grid-template-columns: 1fr;
    padding-block: 3rem;
  }

  .profit-section h2 br {
    display: none;
  }

  .profit-card {
    padding: 1.75rem;
  }

  .profit-number {
    font-size: 5.75rem;
  }

  .platform-section {
    padding-block: 3rem;
  }

  .section-heading {
    gap: 1.25rem;
    margin-bottom: 2rem;
  }

  .feature-card {
    padding: 1.375rem;
  }

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

  .mission-art {
    height: 24rem;
  }

  .trial-section {
    padding-bottom: 3rem;
  }

  .trial-panel {
    border-radius: 1.25rem;
    padding: 2rem 1.5rem 2.5rem;
  }

  .trial-copy .eyebrow {
    max-width: 16rem;
  }

  .trial-copy h2 {
    font-size: clamp(2.125rem, 7.5vw, 3rem);
  }

  .trial-ticket {
    width: min(100%, 18rem);
  }

  .faq-section {
    padding-bottom: 2.75rem;
  }

  .faq-list summary {
    font-size: 0.9375rem;
  }

  .share-section {
    padding-block: 2.75rem;
  }

  .site-footer {
    align-items: start;
    flex-direction: column;
    gap: 0.75rem;
    padding-block: 1.75rem;
  }

  .site-footer > div {
    justify-content: space-between;
    width: 100%;
  }

  .document-page {
    padding-block: 3rem;
  }
}

@media (max-width: 34rem) {
  .preview-banner > p {
    max-width: 12.5rem;
  }

  .orbit-one, .orbit-two {
    height: 24rem;
  }

  .restaurant-window {
    left: 0.625rem;
    width: 82%;
  }

  .window-content {
    padding: 1.0625rem;
  }

  .window-bar {
    font-size: 0.4375rem;
    gap: 0.5rem;
    padding: 0.6875rem;
  }

  .window-heading h2 {
    font-size: 1.375rem;
  }

  .mock-stat {
    margin-top: 0.875rem;
    padding: 0.75rem;
  }

  .mock-stat strong {
    font-size: 1.125rem;
  }

  .mock-section-heading {
    margin-top: 0.9375rem;
  }

  .chart-bars {
    height: 2.75rem;
  }

  .phone-preview {
    border-radius: 1.5rem;
    border-width: 0.25rem;
    bottom: 3.5rem;
    padding: 0.5rem;
    right: 0.75rem;
    width: 46%;
  }

  .phone-speaker {
    margin-bottom: 0.5rem;
    width: 2rem;
  }

  .phone-top {
    font-size: 0.5rem;
  }

  .phone-greeting {
    font-size: 1rem;
    margin-block: 0.625rem;
  }

  .phone-meal {
    padding-block: 0.6875rem;
  }

  .phone-meal .mock-overline {
    font-size: 0.375rem;
  }

  .phone-meal h3 {
    font-size: 1rem;
  }

  .phone-meal p, .phone-action {
    font-size: 0.4375rem;
  }

  .phone-action {
    gap: 0.25rem;
    padding-inline: 0.4375rem;
  }

  .phone-action svg {
    height: 0.75rem;
    width: 0.75rem;
  }

  .connection-badge {
    bottom: 2rem;
    font-size: 0.5625rem;
    gap: 0.5rem;
    left: 0;
    padding: 0.625rem;
  }

  .connection-badge > span {
    padding: 0.375rem;
  }

  .connection-badge svg {
    height: 1.125rem;
    width: 1.125rem;
  }

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

  .feature-card {
    padding: 1.5rem;
  }

  .feature-top {
    margin-bottom: 1.25rem;
  }

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

  .feature-card > p {
    font-size: 0.875rem;
  }

  .mission-art {
    height: 23rem;
  }

  .store-illustration {
    width: 77%;
  }

  .mission-stamp {
    font-size: 0.5rem;
    height: 4.75rem;
    left: 1rem;
    top: 1rem;
    width: 4.75rem;
  }

  .mission-spark {
    right: 1.25rem;
    top: 1.875rem;
  }
}

@media (max-width: 23rem) {
  .section-shell, .header-inner {
    width: calc(100% - 2rem);
  }

  .hero h1 {
    font-size: 2.75rem;
  }

  .orbit-one, .orbit-two {
    height: 22rem;
  }

  .window-heading h2 {
    font-size: 1.125rem;
  }

  .mock-avatar {
    height: 1.75rem;
    width: 1.75rem;
  }

  .mock-stat svg {
    width: 1.5rem;
  }

  .profit-number {
    font-size: 4.75rem;
  }

  .phone-preview {
    bottom: 3rem;
  }

  .phone-greeting {
    font-size: 0.875rem;
  }

  .phone-meal h3 {
    font-size: 0.875rem;
  }

  .connection-badge {
    bottom: 1.75rem;
    font-size: 0.5rem;
  }

  .trial-panel {
    padding-inline: 1.25rem;
  }
}

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

  *, *::before, *::after, .faq-indicator::after {
    scroll-behavior: auto;
    transition: none;
  }
}

[hidden] {
  display: none;
}
