:root {
  --midnight: #0B0D0F;
  --charcoal: #15181C;
  --carbon: #24282E;
  --orange: #FF5A1F;
  --orange-hover: #E94C13;
  --cream: #F5F1E8;
  --smoke: #9A9EA5;
  --available: #62D98B;
  --warning: #FFB84D;
  --unavailable: #FF5C5C;
  --font-display: "Space Grotesk", "Arial Narrow", Arial, sans-serif;
  --font-body: "Inter", Arial, sans-serif;
  --font-mono: "Roboto Mono", "SFMono-Regular", Consolas, monospace;
  --container: 1360px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --border: 1px solid var(--carbon);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 76px;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--cream);
  background: var(--midnight);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

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

button,
input {
  color: inherit;
  font: inherit;
}

button {
  border: 0;
}

:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 4px;
}

::selection {
  color: var(--midnight);
  background: var(--orange);
}

.container {
  width: min(100%, var(--container));
  margin-inline: auto;
  padding-inline: 72px;
}

.section {
  padding-block: 144px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: var(--midnight);
  background: var(--cream);
  border-radius: 8px;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.eyebrow {
  margin: 0 0 24px;
  color: var(--smoke);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  font-family: var(--font-display);
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2.5rem, 4.1vw, 3.5rem);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -0.045em;
}

h3 {
  font-size: 1.65rem;
  line-height: 1.15;
  letter-spacing: -0.025em;
}

.display {
  margin: 0;
  font-size: clamp(4rem, 7.1vw, 6.5rem);
  font-weight: 700;
  line-height: 0.92;
  letter-spacing: -0.075em;
  text-transform: uppercase;
}

.status-dot {
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  background: var(--available);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(98, 217, 139, 0.1);
}

.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 28px;
  border: 1px solid transparent;
  border-radius: 10px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.button svg,
.text-link svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

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

.button--primary {
  color: var(--midnight);
  background: var(--orange);
}

.button--primary:hover {
  background: var(--orange-hover);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.28);
}

.button--secondary {
  color: var(--cream);
  background: var(--charcoal);
  border-color: var(--carbon);
}

.button--secondary:hover {
  background: var(--carbon);
}

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

.button--cream:hover {
  background: #E7E0D3;
}

.button--small {
  min-height: 44px;
  padding-inline: 20px;
  font-size: 12px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
}

.text-link::before {
  width: 5px;
  height: 5px;
  content: "";
  background: var(--orange);
  border-radius: 50%;
  transition: transform 180ms ease;
}

.text-link:hover::before {
  transform: scale(1.5);
}

.announcement {
  min-height: 34px;
  display: flex;
  align-items: center;
  color: var(--smoke);
  background: var(--charcoal);
  border-bottom: var(--border);
}

.announcement__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.announcement p {
  margin: 0;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.announcement strong {
  color: var(--orange);
  font-weight: 600;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  width: 100%;
  background: var(--midnight);
  border-bottom: 1px solid transparent;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  border-color: var(--carbon);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.24);
}

.nav {
  min-height: 76px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

.wordmark {
  width: max-content;
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: 0.04em;
}

.wordmark > span > span {
  display: block;
  margin-top: 5px;
  color: var(--smoke);
  font-size: 8px;
  letter-spacing: 0.22em;
}

.wordmark__mark {
  width: 29px;
  height: 29px;
  fill: none;
  stroke: var(--orange);
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  color: var(--smoke);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 500;
}

.desktop-nav a {
  transition: color 180ms ease;
}

.desktop-nav a:hover {
  color: var(--cream);
}

.nav__actions {
  display: flex;
  justify-content: flex-end;
}

.menu-toggle,
.mobile-menu {
  display: none;
}

.hero {
  min-height: calc(91vh - 110px);
  display: flex;
  align-items: center;
  padding-block: 56px 80px;
  overflow: hidden;
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(500px, 0.94fr) minmax(540px, 1.06fr);
  align-items: center;
  gap: 24px;
}

.hero__content {
  position: relative;
  z-index: 2;
  padding-block: 40px;
}

.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--cream);
}

.hero__lede {
  max-width: 590px;
  margin: 32px 0;
  color: var(--smoke);
  font-size: 18px;
  line-height: 1.65;
}

.hero__actions {
  display: flex;
  gap: 12px;
}

.hero__ops {
  max-width: 600px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 56px 0 0;
  padding-top: 24px;
  border-top: var(--border);
}

.hero__ops div {
  padding-right: 18px;
}

.hero__ops div + div {
  padding-left: 22px;
  border-left: var(--border);
}

.hero__ops dt {
  margin-bottom: 7px;
  color: var(--smoke);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero__ops dd {
  margin: 0;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
}

.hero__ops div:first-child dd {
  color: var(--orange);
}

.hero__visual {
  position: relative;
  min-width: 0;
  margin-right: -88px;
}

.hero__visual::before {
  position: absolute;
  z-index: 2;
  inset: 14px;
  border: 1px solid rgba(245, 241, 232, 0.13);
  border-radius: 13px;
  content: "";
  pointer-events: none;
}

.hero__visual img {
  width: 100%;
  min-height: 590px;
  object-fit: cover;
  border-radius: 16px 0 0 16px;
}

.hero__timestamp {
  position: absolute;
  z-index: 3;
  top: 34px;
  left: 36px;
  width: 220px;
}

.hero__timestamp span {
  color: rgba(245, 241, 232, 0.72);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
}

.hero__timestamp svg {
  width: 100%;
  height: 48px;
  fill: var(--orange);
  stroke: var(--orange);
  stroke-width: 1.2;
}

.route-base {
  fill: none;
  stroke: rgba(245, 241, 232, 0.25);
  stroke-dasharray: 3 5;
}

.hero__image-note {
  position: absolute;
  z-index: 3;
  right: 112px;
  bottom: 36px;
  margin: 0;
  color: var(--cream);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero__image-note span {
  margin-right: 10px;
  color: var(--orange);
}

.proof {
  background: var(--cream);
  color: var(--midnight);
}

.proof__grid {
  min-height: 250px;
  display: grid;
  grid-template-columns: 0.75fr 2.25fr;
  align-items: stretch;
}

.proof__intro {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-right: 48px;
  border-right: 1px solid #D8D1C6;
}

.proof__intro .eyebrow {
  color: #65686C;
}

.proof__intro > p:last-child {
  margin: 0;
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.proof__metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 0;
}

.proof__metrics > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 48px;
}

.proof__metrics > div + div {
  border-left: 1px solid #D8D1C6;
}

.proof__metrics dt {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.05em;
}

.proof__metrics dt span {
  color: var(--orange);
  font-size: clamp(3.2rem, 5.1vw, 4.8rem);
  font-weight: 700;
}

.proof__metrics dd {
  margin: 16px 0 0;
  color: #65686C;
  font-size: 13px;
}

.section-heading {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  align-items: end;
  gap: 64px;
  margin-bottom: 64px;
}

.section-heading > p {
  max-width: 390px;
  margin: 0 0 4px;
  color: var(--smoke);
}

.menu {
  background: var(--midnight);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: start;
  gap: 24px;
}

.product-card {
  overflow: hidden;
  background: var(--charcoal);
  border: var(--border);
  border-radius: 16px;
}

.product-card--americano {
  margin-top: 48px;
}

.product-card--caramel {
  margin-top: 16px;
}

.product-card__image {
  position: relative;
  aspect-ratio: 4 / 4.45;
  overflow: hidden;
  background: #101214;
}

.product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms var(--ease);
}

.product-card:hover .product-card__image img {
  transform: scale(1.018);
}

.strength {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 7px 9px;
  color: var(--cream);
  background: var(--midnight);
  border: 1px solid rgba(245, 241, 232, 0.16);
  border-radius: 4px;
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.product-card__body {
  padding: 28px;
}

.product-card__index {
  margin-bottom: 20px;
  color: var(--orange);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.product-card h3 {
  margin-bottom: 12px;
}

.product-card__body > p:not(.product-card__index) {
  min-height: 52px;
  margin-bottom: 26px;
  color: var(--smoke);
  font-size: 14px;
}

.product-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 22px;
  border-top: var(--border);
}

.product-card__footer > span {
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 600;
}

.add-button {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  color: var(--midnight);
  background: var(--orange);
  border-radius: 9px;
  cursor: pointer;
  transition: background-color 180ms ease, transform 180ms ease;
}

.add-button:hover {
  background: var(--orange-hover);
  transform: translateY(-2px);
}

.add-button svg {
  width: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 2;
}

.menu__note {
  margin: 26px 0 0;
  color: #676C73;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-align: right;
  text-transform: uppercase;
}

.why {
  background: var(--charcoal);
}

.why__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 120px;
}

.why__sticky {
  align-self: start;
  position: sticky;
  top: 130px;
}

.why__sticky > p:not(.eyebrow) {
  max-width: 500px;
  margin: 32px 0;
  color: var(--smoke);
  font-size: 17px;
}

.benefit-list {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: benefits;
}

.benefit-list li {
  min-height: 230px;
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 30px;
  padding: 40px 0;
  border-top: var(--border);
}

.benefit-list li:last-child {
  border-bottom: var(--border);
}

.benefit-list__number {
  color: var(--orange);
  font-family: var(--font-mono);
  font-size: 12px;
}

.benefit-list svg {
  width: 30px;
  margin-bottom: 36px;
  fill: none;
  stroke: var(--cream);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.benefit-list h3 {
  margin-bottom: 12px;
}

.benefit-list p {
  max-width: 410px;
  margin-bottom: 0;
  color: var(--smoke);
}

.lifestyle {
  padding-block: 64px;
  background: var(--charcoal);
}

.lifestyle__frame {
  position: relative;
  min-height: 680px;
  overflow: hidden;
  border-radius: 16px;
}

.lifestyle__frame > picture,
.lifestyle__frame img {
  width: 100%;
  height: 100%;
}

.lifestyle__frame > picture {
  position: absolute;
  inset: 0;
}

.lifestyle__frame img {
  object-fit: cover;
}

.lifestyle__panel {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 48px;
  width: 340px;
  padding: 36px;
  background: var(--midnight);
  border: var(--border);
  transform: translateY(-50%);
}

.lifestyle__panel .eyebrow {
  margin-bottom: 48px;
}

.lifestyle__time {
  margin: 0;
  color: var(--orange);
  font-family: var(--font-mono);
  font-size: 56px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.06em;
}

.lifestyle__time span {
  font-size: 16px;
  letter-spacing: 0;
}

.lifestyle__panel h2 {
  margin-top: 10px;
  text-transform: uppercase;
}

.lifestyle__panel > p:last-child {
  margin: 20px 0 0;
  color: var(--smoke);
}

.process {
  background: var(--midnight);
}

.process__track {
  position: relative;
  padding-top: 26px;
}

.process__route {
  position: absolute;
  top: 38px;
  left: 3%;
  width: 94%;
  height: 54px;
  overflow: visible;
}

.process__route .route-base {
  stroke: var(--carbon);
  stroke-dasharray: none;
  stroke-width: 2;
}

.route-progress {
  fill: none;
  stroke: var(--orange);
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  stroke-linecap: round;
  stroke-width: 3;
  transition: stroke-dashoffset 1200ms var(--ease);
}

.process__track.is-visible .route-progress {
  stroke-dashoffset: 0;
}

.process__steps {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 72px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process__steps li {
  padding: 0 24px 0 0;
}

.process__steps li:nth-child(2) {
  padding-left: 24px;
}

.process__steps li:nth-child(3) {
  padding-left: 48px;
}

.process__steps li > span {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  margin-bottom: 54px;
  color: var(--midnight);
  background: var(--orange);
  border: 5px solid var(--midnight);
  border-radius: 50%;
  font-family: var(--font-mono);
  font-size: 0;
  box-shadow: 0 0 0 1px var(--orange);
}

.process__steps svg {
  width: 28px;
  margin-bottom: 28px;
  fill: none;
  stroke: var(--cream);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.process__steps h3 {
  margin-bottom: 12px;
  font-size: 22px;
}

.process__steps p {
  max-width: 280px;
  margin: 0;
  color: var(--smoke);
  font-size: 14px;
}

.delivery {
  background: var(--cream);
  color: var(--midnight);
}

.delivery__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 100px;
}

.delivery .eyebrow {
  color: #65686C;
}

.delivery__content > p:not(.eyebrow, .delivery__examples) {
  max-width: 600px;
  margin: 30px 0;
  color: #5F6368;
}

.zone-form {
  margin-top: 38px;
}

.zone-form label {
  display: block;
  margin-bottom: 10px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
}

.zone-form__controls {
  display: flex;
  gap: 10px;
}

.input-wrap {
  position: relative;
  flex: 1;
}

.input-wrap svg {
  position: absolute;
  top: 50%;
  left: 17px;
  width: 20px;
  fill: none;
  stroke: #686B70;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
  transform: translateY(-50%);
  pointer-events: none;
}

.input-wrap input {
  width: 100%;
  min-height: 54px;
  padding: 0 18px 0 48px;
  color: var(--midnight);
  background: #FFFFFF;
  border: 1px solid #CAC4BA;
  border-radius: 10px;
  outline: 0;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.input-wrap input:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255, 90, 31, 0.13);
}

.input-wrap input[aria-invalid="true"] {
  border-color: var(--unavailable);
}

.form-message {
  min-height: 24px;
  margin: 9px 0 0;
  color: #62666B;
  font-size: 13px;
}

.form-message.is-error {
  color: #B62929;
}

.form-message.is-success {
  color: #257A45;
}

.delivery__examples {
  margin: 12px 0 0;
  color: #777A7E;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.04em;
}

.delivery-card {
  overflow: hidden;
  color: var(--cream);
  background: var(--charcoal);
  border: 1px solid #2E333A;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

.delivery-card__top {
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-inline: 24px;
  border-bottom: var(--border);
}

.delivery-card__label,
.delivery-card__status {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.delivery-card__status {
  display: flex;
  align-items: center;
  gap: 8px;
}

.delivery-card__status i {
  width: 7px;
  height: 7px;
  background: var(--smoke);
  border-radius: 50%;
}

.delivery-card[data-status="available"] .delivery-card__status {
  color: var(--available);
}

.delivery-card[data-status="available"] .delivery-card__status i {
  background: var(--available);
}

.delivery-card[data-status="unavailable"] .delivery-card__status {
  color: var(--unavailable);
}

.delivery-card[data-status="unavailable"] .delivery-card__status i {
  background: var(--unavailable);
}

.city-grid {
  position: relative;
  height: 310px;
  overflow: hidden;
  background: #101316;
}

.city-grid svg {
  width: 100%;
  height: 100%;
}

.city-grid__streets {
  fill: none;
  stroke: #292E34;
  stroke-width: 13;
}

.city-grid__route {
  fill: none;
  stroke: var(--orange);
  stroke-dasharray: 1;
  stroke-dashoffset: 0.62;
  stroke-linecap: round;
  stroke-width: 4;
  transition: stroke-dashoffset 900ms var(--ease), stroke 180ms ease;
}

.delivery-card[data-status="available"] .city-grid__route {
  stroke-dashoffset: 0;
}

.delivery-card[data-status="unavailable"] .city-grid__route {
  stroke: var(--unavailable);
  stroke-dashoffset: 0.84;
}

.city-grid__hub {
  fill: var(--orange);
  stroke: var(--charcoal);
  stroke-width: 5;
}

.city-grid__destination {
  fill: var(--charcoal);
  stroke: var(--smoke);
  stroke-width: 3;
}

.delivery-card[data-status="available"] .city-grid__destination {
  fill: var(--available);
  stroke: var(--charcoal);
  stroke-width: 5;
}

.delivery-card[data-status="unavailable"] .city-grid__destination {
  fill: var(--unavailable);
  stroke: var(--charcoal);
  stroke-width: 5;
}

.city-grid__hub-label {
  position: absolute;
  bottom: 48px;
  left: 65px;
  padding: 5px 7px;
  background: var(--charcoal);
  border: var(--border);
  border-radius: 4px;
  font-family: var(--font-mono);
  font-size: 9px;
}

.delivery-card__result {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  border-top: var(--border);
}

.delivery-card__result > div {
  min-width: 0;
  padding: 24px;
}

.delivery-card__result > div + div {
  border-left: var(--border);
}

.delivery-card__result span,
.delivery-card__result strong {
  display: block;
}

.delivery-card__result span {
  margin-bottom: 8px;
  color: var(--smoke);
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.delivery-card__result strong {
  overflow: hidden;
  font-family: var(--font-mono);
  font-size: 22px;
  font-weight: 500;
  line-height: 1.3;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.delivery-card[data-status="available"] [data-eta] {
  color: var(--orange);
}

.delivery-card__meta {
  margin: 0;
  padding: 12px 24px;
  color: #747980;
  background: #111316;
  border-top: var(--border);
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.moments {
  background: var(--midnight);
}

.moments__heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 80px;
}

.moments__clock {
  margin: 0;
  color: #20242A;
  font-family: var(--font-mono);
  font-size: clamp(5rem, 11vw, 10rem);
  font-weight: 600;
  line-height: 0.75;
  letter-spacing: -0.1em;
}

.moment-list {
  border-top: var(--border);
}

.moment-list article {
  display: grid;
  grid-template-columns: 0.65fr 1fr 1.25fr 0.85fr;
  align-items: center;
  min-height: 116px;
  border-bottom: var(--border);
  transition: background-color 180ms ease;
}

.moment-list article:hover {
  background: var(--charcoal);
}

.moment-list time {
  color: var(--orange);
  font-family: var(--font-mono);
  font-size: 12px;
}

.moment-list h3 {
  margin: 0;
  font-size: 21px;
}

.moment-list p {
  margin: 0;
  color: var(--smoke);
  font-size: 14px;
}

.moment-list article > span {
  justify-self: end;
  padding: 7px 10px;
  color: var(--cream);
  background: var(--charcoal);
  border: var(--border);
  border-radius: 4px;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.delivery-visual {
  padding-bottom: 128px;
}

.delivery-visual__frame {
  overflow: hidden;
  background: var(--charcoal);
  border: var(--border);
  border-radius: 16px;
}

.delivery-visual__frame img {
  width: 100%;
  aspect-ratio: 16 / 7.5;
  object-fit: cover;
  object-position: center 52%;
}

.delivery-visual__caption {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 20px 28px;
}

.delivery-visual__caption p {
  margin: 0;
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 500;
}

.delivery-visual__caption p span {
  margin-right: 22px;
  color: var(--orange);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
}

.testimonials {
  background: var(--charcoal);
}

.testimonials__grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 120px;
}

.quote-list {
  border-top: var(--border);
}

.quote-list figure {
  margin: 0;
  padding: 40px 0;
  border-bottom: var(--border);
}

.quote-list blockquote {
  margin: 0 0 30px;
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: -0.02em;
}

.quote-list figcaption {
  display: flex;
  align-items: center;
  gap: 14px;
}

.quote-list figcaption > span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: var(--orange);
  background: var(--midnight);
  border-radius: 50%;
  font-family: var(--font-mono);
  font-size: 10px;
}

.quote-list strong,
.quote-list small {
  display: block;
}

.quote-list strong {
  font-family: var(--font-display);
  font-size: 13px;
}

.quote-list small {
  color: var(--smoke);
  font-size: 11px;
}

.faq {
  background: var(--midnight);
}

.faq__grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 120px;
}

.faq__heading > p:not(.eyebrow) {
  max-width: 340px;
  margin: 30px 0 0;
  color: var(--smoke);
}

.accordion {
  border-top: var(--border);
}

.accordion__item {
  border-bottom: var(--border);
}

.accordion__item h3 {
  margin: 0;
}

.accordion__item button {
  width: 100%;
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0;
  color: var(--cream);
  background: transparent;
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
}

.accordion__item button span {
  position: relative;
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
}

.accordion__item button span::before,
.accordion__item button span::after {
  position: absolute;
  top: 9px;
  left: 3px;
  width: 14px;
  height: 1.5px;
  content: "";
  background: var(--orange);
  transition: transform 180ms ease;
}

.accordion__item button span::after {
  transform: rotate(90deg);
}

.accordion__item button[aria-expanded="true"] span::after {
  transform: rotate(0);
}

.accordion__panel {
  display: grid;
  grid-template-rows: 0fr;
  visibility: hidden;
  transition: grid-template-rows 320ms var(--ease), visibility 0s linear 320ms;
}

.accordion__panel > div {
  overflow: hidden;
}

.accordion__panel p {
  max-width: 660px;
  margin: 0;
  padding: 0 42px 28px 0;
  color: var(--smoke);
}

.accordion__item button[aria-expanded="true"] + .accordion__panel {
  grid-template-rows: 1fr;
  visibility: visible;
  transition: grid-template-rows 320ms var(--ease), visibility 0s linear 0s;
}

.final-cta {
  padding-block: 96px;
  color: var(--midnight);
  background: var(--orange);
}

.final-cta .eyebrow {
  color: rgba(11, 13, 15, 0.68);
}

.final-cta__inner {
  display: grid;
  grid-template-columns: 1.45fr 0.55fr;
  align-items: end;
  gap: 64px;
}

.final-cta h2 {
  max-width: 900px;
  font-size: clamp(3.2rem, 6vw, 5.7rem);
  font-weight: 700;
  line-height: 0.92;
  text-transform: uppercase;
}

.final-cta__action p {
  margin-bottom: 24px;
  font-size: 14px;
}

.final-cta__action .button {
  width: 100%;
}

.site-footer {
  padding-block: 72px 30px;
  background: var(--midnight);
}

.site-footer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 56px;
  border-bottom: var(--border);
}

.wordmark--footer {
  font-size: 19px;
}

.wordmark--footer .wordmark__mark {
  width: 38px;
  height: 38px;
}

.site-footer__status {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-footer__contact {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

.site-footer__contact > a {
  color: var(--smoke);
  font-family: var(--font-mono);
  font-size: 11px;
  transition: color 180ms ease;
}

.site-footer__contact > a:hover {
  color: var(--cream);
}

.site-footer__links {
  display: flex;
  justify-content: space-between;
  padding-block: 48px 72px;
}

.site-footer__links nav {
  display: flex;
  gap: 30px;
}

.site-footer__links a {
  color: var(--smoke);
  font-family: var(--font-display);
  font-size: 13px;
  transition: color 180ms ease;
}

.site-footer__links a:hover {
  color: var(--cream);
}

.site-footer__bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 24px;
  color: #646970;
  border-top: var(--border);
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.site-footer__bottom p {
  margin: 0;
}

.order-toast {
  position: fixed;
  z-index: 200;
  right: 24px;
  bottom: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 12px 12px 18px;
  color: var(--cream);
  background: var(--charcoal);
  border: var(--border);
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px);
  transition: opacity 220ms ease, transform 220ms var(--ease);
}

.order-toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.order-toast__count {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  color: var(--midnight);
  background: var(--orange);
  border-radius: 6px;
  font-family: var(--font-mono);
  font-size: 11px;
}

[data-reveal] {
  opacity: 1;
  transform: none;
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 560ms var(--ease), transform 560ms var(--ease);
}

.js [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.js .hero__eyebrow,
.js .hero .display,
.js .hero__lede,
.js .hero__actions,
.js .hero__ops,
.js .hero__visual {
  opacity: 0;
  transform: translateY(12px);
  animation: hero-in 520ms var(--ease) forwards;
}

.js .hero .display {
  animation-delay: 70ms;
}

.js .hero__lede,
.js .hero__actions {
  animation-delay: 140ms;
}

.js .hero__ops {
  animation-delay: 210ms;
}

.js .hero__visual {
  animation-delay: 250ms;
}

@keyframes hero-in {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1180px) {
  .container {
    padding-inline: 40px;
  }

  .section {
    padding-block: 120px;
  }

  .hero__grid {
    grid-template-columns: minmax(440px, 0.9fr) minmax(440px, 1.1fr);
  }

  .hero__visual {
    margin-right: -42px;
  }

  .hero__visual img {
    min-height: 540px;
  }

  .hero__image-note {
    right: 66px;
  }

  .why__grid,
  .delivery__grid,
  .testimonials__grid,
  .faq__grid {
    gap: 72px;
  }

  .lifestyle__frame {
    min-height: 590px;
  }

  .process__steps {
    gap: 36px;
  }
}

@media (max-width: 960px) {
  html {
    scroll-padding-top: 68px;
  }

  .desktop-nav,
  .desktop-order {
    display: none;
  }

  .nav {
    min-height: 68px;
    grid-template-columns: 1fr auto;
  }

  .menu-toggle {
    width: 44px;
    height: 44px;
    display: grid;
    place-content: center;
    gap: 7px;
    padding: 0;
    color: var(--cream);
    background: var(--charcoal);
    border: var(--border);
    border-radius: 8px;
    cursor: pointer;
  }

  .menu-toggle span {
    width: 19px;
    height: 1.5px;
    background: currentColor;
    transition: transform 180ms ease;
  }

  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(4.25px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-4.25px) rotate(-45deg);
  }

  .mobile-menu {
    position: fixed;
    z-index: 99;
    top: 102px;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 46px 40px 36px;
    visibility: hidden;
    background: var(--midnight);
    opacity: 0;
    transform: translateY(-8px);
    transition: opacity 180ms ease, transform 180ms ease, visibility 0s linear 180ms;
  }

  .mobile-menu.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    transition: opacity 180ms ease, transform 180ms ease, visibility 0s linear 0s;
  }

  .site-header.is-scrolled .mobile-menu {
    top: 68px;
  }

  .mobile-menu nav {
    display: flex;
    flex-direction: column;
  }

  .mobile-menu nav > a:not(.button) {
    min-height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: var(--border);
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 600;
  }

  .mobile-menu .button {
    margin-top: 32px;
  }

  .mobile-menu__status {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .hero {
    min-height: auto;
    padding-block: 56px 88px;
  }

  .hero__grid {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .hero__content {
    padding: 0;
  }

  .hero__visual {
    margin-right: 0;
  }

  .hero__visual img {
    min-height: 0;
    aspect-ratio: 16 / 9;
    border-radius: 16px;
  }

  .hero__image-note {
    right: 36px;
  }

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

  .proof__intro {
    min-height: 150px;
    padding-right: 0;
    border-right: 0;
    border-bottom: 1px solid #D8D1C6;
  }

  .proof__metrics {
    min-height: 220px;
  }

  .proof__metrics > div:first-child {
    padding-left: 0;
  }

  .product-grid {
    gap: 16px;
  }

  .product-card--americano,
  .product-card--caramel {
    margin-top: 0;
  }

  .product-card__body {
    padding: 22px;
  }

  .why__grid,
  .delivery__grid {
    grid-template-columns: 1fr;
  }

  .why__sticky {
    position: static;
  }

  .lifestyle__frame {
    min-height: 520px;
  }

  .lifestyle__panel {
    top: auto;
    bottom: 24px;
    left: 24px;
    transform: none;
  }

  .delivery__grid {
    gap: 64px;
  }

  .testimonials__grid,
  .faq__grid {
    grid-template-columns: 1fr;
    gap: 64px;
  }

  .testimonials__grid > div:first-child br {
    display: none;
  }
}

@media (max-width: 760px) {
  .container {
    padding-inline: 22px;
  }

  .section {
    padding-block: 80px;
  }

  .announcement p {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .mobile-menu {
    padding-inline: 22px;
  }

  .display {
    font-size: clamp(3.35rem, 16.8vw, 5rem);
  }

  h2 {
    font-size: clamp(2rem, 9.5vw, 2.65rem);
  }

  .hero {
    padding-block: 42px 72px;
  }

  .hero__lede {
    margin-block: 26px;
    font-size: 16px;
  }

  .hero__actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .hero__ops {
    margin-top: 40px;
  }

  .hero__ops div {
    padding-right: 10px;
  }

  .hero__ops div + div {
    padding-left: 11px;
  }

  .hero__ops dd {
    font-size: 10px;
  }

  .hero__visual img {
    aspect-ratio: 4 / 3.3;
    object-position: 57% center;
  }

  .hero__timestamp {
    top: 26px;
    left: 28px;
    width: 150px;
  }

  .hero__image-note {
    right: 27px;
    bottom: 26px;
    font-size: 8px;
  }

  .proof__metrics {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .proof__metrics > div,
  .proof__metrics > div:first-child {
    min-height: 150px;
    padding-left: 0;
  }

  .proof__metrics > div + div {
    border-top: 1px solid #D8D1C6;
    border-left: 0;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 44px;
  }

  .section-heading > p {
    max-width: 520px;
  }

  .product-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .product-card {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    min-height: 340px;
  }

  .product-card__image {
    height: 100%;
    aspect-ratio: auto;
  }

  .product-card__body {
    display: flex;
    flex-direction: column;
    padding: 20px;
  }

  .product-card__index {
    margin-bottom: 14px;
  }

  .product-card h3 {
    font-size: 21px;
  }

  .product-card__body > p:not(.product-card__index) {
    min-height: 0;
    margin-bottom: 24px;
    font-size: 13px;
  }

  .product-card__footer {
    margin-top: auto;
  }

  .product-card__footer > span {
    font-size: 17px;
  }

  .strength {
    top: 10px;
    right: 10px;
  }

  .menu__note {
    text-align: left;
  }

  .why__grid {
    gap: 64px;
  }

  .benefit-list li {
    grid-template-columns: 42px 1fr;
    gap: 14px;
  }

  .lifestyle {
    padding-block: 22px 64px;
  }

  .lifestyle__frame {
    min-height: 560px;
  }

  .lifestyle__frame img {
    object-position: 63% center;
  }

  .lifestyle__panel {
    right: 18px;
    bottom: 18px;
    left: 18px;
    width: auto;
    padding: 24px;
  }

  .lifestyle__panel .eyebrow {
    margin-bottom: 26px;
  }

  .lifestyle__time {
    font-size: 44px;
  }

  .process__track {
    position: relative;
    padding-top: 0;
  }

  .process__route {
    display: none;
  }

  .process__track::before,
  .process__track::after {
    position: absolute;
    z-index: 1;
    top: 14px;
    bottom: 34px;
    left: 15px;
    width: 2px;
    content: "";
    transform-origin: top;
  }

  .process__track::before {
    background: var(--carbon);
  }

  .process__track::after {
    background: var(--orange);
    transform: scaleY(0);
    transition: transform 1100ms var(--ease);
  }

  .process__track.is-visible::after {
    transform: scaleY(1);
  }

  .process__steps {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .process__steps li,
  .process__steps li:nth-child(2),
  .process__steps li:nth-child(3) {
    min-height: 190px;
    padding: 0 0 48px 58px;
  }

  .process__steps li > span {
    position: absolute;
    left: 2px;
    margin-bottom: 0;
  }

  .process__steps svg {
    margin-bottom: 22px;
  }

  .delivery__grid {
    gap: 48px;
  }

  .zone-form__controls {
    flex-direction: column;
  }

  .zone-form__controls .button {
    width: 100%;
  }

  .city-grid {
    height: 260px;
  }

  .delivery-card__result strong {
    font-size: 17px;
  }

  .moments__heading {
    margin-bottom: 48px;
  }

  .moments__clock {
    display: none;
  }

  .moment-list article {
    grid-template-columns: 1fr auto;
    gap: 6px 16px;
    padding-block: 22px;
  }

  .moment-list time,
  .moment-list h3 {
    grid-column: 1;
  }

  .moment-list p {
    grid-column: 1;
  }

  .moment-list article > span {
    grid-row: 1 / 4;
    grid-column: 2;
    max-width: 100px;
    text-align: center;
  }

  .delivery-visual {
    padding-bottom: 80px;
  }

  .delivery-visual__frame img {
    aspect-ratio: 4 / 3;
    object-position: 62% center;
  }

  .delivery-visual__caption {
    align-items: flex-start;
    flex-direction: column;
    padding: 24px;
  }

  .delivery-visual__caption p span {
    display: block;
    margin: 0 0 8px;
  }

  .quote-list blockquote {
    font-size: 21px;
  }

  .accordion__item button {
    min-height: 78px;
    font-size: 16px;
  }

  .final-cta {
    padding-block: 72px;
  }

  .final-cta__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .final-cta h2 {
    font-size: clamp(2.8rem, 13vw, 4.2rem);
  }

  .site-footer__top,
  .site-footer__links,
  .site-footer__bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 28px;
  }

  .site-footer__contact {
    align-items: flex-start;
  }

  .site-footer__links {
    padding-block: 42px 58px;
  }

  .site-footer__links nav {
    flex-wrap: wrap;
    gap: 16px 26px;
  }

  .order-toast {
    right: 18px;
    bottom: 18px;
    left: 18px;
    justify-content: space-between;
  }
}

@media (max-width: 460px) {
  .hero__actions {
    grid-template-columns: 1fr;
  }

  .product-card {
    grid-template-columns: 1fr;
  }

  .product-card__image {
    aspect-ratio: 4 / 3;
  }

  .delivery-card__result {
    grid-template-columns: 1fr;
  }

  .delivery-card__result > div + div {
    border-top: var(--border);
    border-left: 0;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .route-progress {
    stroke-dashoffset: 0;
  }

  .js [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
