@font-face {
  font-family: "Vela Sans";
  src: url("/assets/VelaSans-Regular.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Vela Sans";
  src: url("/assets/VelaSans-Medium.woff2") format("woff2");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Vela Sans";
  src: url("/assets/VelaSans-SemiBold.woff2") format("woff2");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Vela Sans";
  src: url("/assets/VelaSans-Bold.woff2") format("woff2");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

:root {
  --ink: #211916;
  --ink-soft: #594d47;
  --paper: #f2ebdd;
  --paper-light: #faf7f0;
  --red: #914036;
  --red-dark: #6f2f28;
  --acid: #c7d84d;
  --white: #fffdf8;
  --line: rgb(33 25 22 / 18%);
  --container: 1440px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

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

body {
  min-width: 320px;
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Vela Sans", Arial, sans-serif;
  font-synthesis: none;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

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

::selection {
  color: var(--white);
  background: var(--red);
}

:focus-visible {
  outline: 3px solid var(--acid);
  outline-offset: 4px;
}

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

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

.site-header {
  position: absolute;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  transition: background 180ms ease, border-color 180ms ease;
}

.site-header.is-stuck {
  position: fixed;
  border-bottom: 1px solid var(--line);
  background: rgb(242 235 221 / 88%);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100%, var(--container));
  min-height: 90px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 64px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand img {
  width: 42px;
  height: 42px;
  border-radius: 12px;
}

.brand-copy {
  display: grid;
  gap: 1px;
}

.brand-copy strong {
  font-size: 15px;
  line-height: 1;
  letter-spacing: -0.04em;
}

.brand-copy small {
  color: var(--ink-soft);
  font-size: 8px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.2em;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.4vw, 36px);
  font-size: 14px;
  font-weight: 500;
}

.desktop-nav a {
  position: relative;
  text-decoration: none;
}

.desktop-nav > a:not(.nav-button)::after {
  position: absolute;
  right: 0;
  bottom: -6px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.desktop-nav > a:not(.nav-button):hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  transition: color 180ms ease, background 180ms ease;
}

.nav-button:hover {
  color: var(--paper);
  background: var(--ink);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink);
  background: transparent;
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  display: block;
  width: 18px;
  height: 1px;
  margin: 4px auto;
  background: currentColor;
  content: "";
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle[aria-expanded="true"] span {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"]::before {
  transform: translateY(5px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"]::after {
  transform: translateY(-5px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  z-index: 90;
  inset: 0;
  display: none;
  align-content: end;
  padding: 110px 24px 42px;
  color: var(--white);
  background: var(--red);
}

.mobile-menu.is-open {
  display: grid;
}

.mobile-menu nav {
  display: grid;
  gap: 10px;
}

.mobile-menu a {
  padding: 8px 0;
  font-size: clamp(34px, 12vw, 58px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.06em;
  text-decoration: none;
}

.mobile-menu-meta {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 36px;
  padding-top: 20px;
  border-top: 1px solid rgb(255 255 255 / 28%);
  font-size: 12px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(460px, 1fr);
  gap: clamp(28px, 5vw, 82px);
  width: min(100%, var(--container));
  min-height: 100svh;
  margin: 0 auto;
  padding: 112px clamp(20px, 4vw, 64px) 36px;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: clamp(30px, 5vw, 84px);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 24px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 34px;
  height: 1px;
  background: currentColor;
  content: "";
}

.hero h1,
.career-hero h1 {
  margin: 0;
  font-size: clamp(64px, 8.6vw, 142px);
  font-weight: 600;
  line-height: 0.8;
  letter-spacing: -0.078em;
}

.hero h1 span,
.career-hero h1 span {
  color: var(--red);
}

.hero-intro {
  max-width: 530px;
  margin: 40px 0 0 auto;
  font-size: clamp(18px, 1.7vw, 26px);
  line-height: 1.3;
  letter-spacing: -0.03em;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  margin: 38px 0 0 auto;
}

.button,
.button-light,
.button-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 28px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  transition: transform 180ms ease, color 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button {
  color: var(--paper);
  background: var(--ink);
}

.button-light {
  color: var(--ink);
  background: var(--paper-light);
}

.button-outline {
  border-color: currentColor;
  color: inherit;
  background: transparent;
}

.button:hover,
.button-light:hover,
.button-outline:hover {
  transform: translateY(-3px);
}

.text-link {
  font-size: 15px;
  text-underline-offset: 5px;
}

.hero-media {
  position: relative;
  overflow: hidden;
  min-height: 560px;
  border-radius: 2px 2px 120px 2px;
  background: #c8bca9;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 700ms cubic-bezier(0.2, 0.75, 0.25, 1);
}

.hero-media picture {
  display: block;
  height: 100%;
}

.hero-media:hover img {
  transform: scale(1.025);
}

.hero-stamp {
  position: absolute;
  right: 24px;
  bottom: 24px;
  display: grid;
  place-items: center;
  width: 116px;
  height: 116px;
  border-radius: 50%;
  color: var(--white);
  background: var(--red);
  font-size: 11px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.07em;
  text-align: center;
  text-transform: uppercase;
  transform: rotate(8deg);
}

.ticker {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--acid);
}

.ticker-track {
  display: flex;
  width: max-content;
  padding: 17px 0 15px;
  animation: ticker 26s linear infinite;
}

.ticker-track span {
  display: flex;
  align-items: center;
  gap: 28px;
  padding-right: 28px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.ticker-track span::after {
  content: "✦";
}

@keyframes ticker {
  to { transform: translateX(-50%); }
}

.section {
  width: min(100%, var(--container));
  margin: 0 auto;
  padding: clamp(90px, 11vw, 170px) clamp(20px, 4vw, 64px);
}

.section-kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.section-kicker b {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 9px;
}

.story-grid {
  display: grid;
  grid-template-columns: minmax(220px, 0.5fr) minmax(0, 1.5fr);
  gap: clamp(40px, 7vw, 130px);
}

.story-copy h2,
.menu-heading h2,
.app-copy h2,
.place-copy h2,
.careers-intro h2,
.apply-copy h2 {
  margin: 0;
  font-size: clamp(42px, 6vw, 92px);
  font-weight: 500;
  line-height: 0.95;
  letter-spacing: -0.065em;
}

.story-copy > p {
  max-width: 700px;
  margin: 46px 0 0 30%;
  color: var(--ink-soft);
  font-size: clamp(17px, 1.55vw, 23px);
  line-height: 1.45;
  letter-spacing: -0.02em;
}

.story-notes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 70px;
  border-top: 1px solid var(--line);
}

.story-note {
  min-height: 220px;
  padding: 24px 24px 28px 0;
  border-right: 1px solid var(--line);
}

.story-note + .story-note {
  padding-left: 24px;
}

.story-note:last-child {
  border-right: 0;
}

.story-note small {
  color: var(--red);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.story-note h3 {
  margin: 44px 0 12px;
  font-size: 23px;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.story-note p {
  max-width: 320px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.55;
}

.story-more {
  width: fit-content;
  margin-top: 42px;
}

.menu-section {
  overflow: hidden;
  color: var(--white);
  background: var(--red);
}

.menu-section .section {
  padding-bottom: clamp(76px, 9vw, 130px);
}

.menu-heading {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 40px;
}

.menu-heading h2 {
  max-width: 880px;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 76px;
  border-top: 1px solid rgb(255 255 255 / 28%);
}

.menu-card {
  min-height: 310px;
  padding: 26px 26px 24px 0;
  border-right: 1px solid rgb(255 255 255 / 28%);
}

.menu-card + .menu-card {
  padding-left: 26px;
}

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

.menu-card span {
  color: rgb(255 255 255 / 62%);
  font-size: 11px;
  letter-spacing: 0.12em;
}

.menu-card h3 {
  margin: 140px 0 10px;
  font-size: clamp(25px, 2.4vw, 38px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.05em;
}

.menu-card p {
  margin: 0;
  color: rgb(255 255 255 / 72%);
  font-size: 13px;
  line-height: 1.5;
}

.app-section {
  background: var(--ink);
  color: var(--white);
}

.app-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.8fr);
  align-items: center;
  gap: clamp(70px, 10vw, 170px);
  width: min(100%, var(--container));
  margin: 0 auto;
  padding: clamp(90px, 11vw, 160px) clamp(20px, 7vw, 118px);
}

.app-copy h2 {
  margin-top: 34px;
}

.app-copy > p:not(.section-kicker) {
  max-width: 560px;
  margin: 34px 0 0;
  color: rgb(255 255 255 / 68%);
  font-size: clamp(17px, 1.55vw, 22px);
  line-height: 1.45;
}

.web-app-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 34px;
  font-size: 15px;
  font-weight: 600;
  text-underline-offset: 6px;
}

.web-app-link::after {
  content: "↗";
}

.store-label {
  margin: 56px 0 18px;
  color: var(--acid);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.store-badges {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 650px;
}

.store-badge {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  min-width: 0;
  height: 68px;
  padding: 9px 10px 9px 12px;
  border: 1px solid rgb(255 255 255 / 20%);
  border-radius: 15px;
  background: #070707;
  opacity: 0.9;
}

.store-badge img {
  width: auto;
  max-width: min(112px, calc(100% - 52px));
  max-height: 42px;
}

.store-badge.google img {
  width: 118px;
  height: auto;
}

.store-badge .soon {
  flex: 0 0 auto;
  padding: 4px 8px 3px;
  border-radius: 999px;
  color: var(--ink);
  background: var(--acid);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.phone-stage {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 660px;
}

.phone-orbit {
  position: absolute;
  width: min(42vw, 560px);
  aspect-ratio: 1;
  border: 1px solid rgb(255 255 255 / 18%);
  border-radius: 50%;
}

.phone-orbit::before,
.phone-orbit::after {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--acid);
  content: "";
}

.phone-orbit::before { top: 16%; left: 11%; }
.phone-orbit::after { right: 8%; bottom: 21%; background: var(--red); }

.phone {
  position: relative;
  z-index: 2;
  width: min(310px, 72vw);
  padding: 9px;
  border: 1px solid rgb(255 255 255 / 35%);
  border-radius: 48px;
  background: #080706;
  box-shadow: 0 40px 90px rgb(0 0 0 / 45%);
  transform: rotate(5deg);
}

.phone::before {
  position: absolute;
  z-index: 3;
  top: 17px;
  left: 50%;
  width: 86px;
  height: 24px;
  border-radius: 999px;
  background: #080706;
  content: "";
  transform: translateX(-50%);
}

.phone-screen {
  min-height: 620px;
  overflow: hidden;
  padding: 54px 16px 18px;
  border-radius: 39px;
  color: var(--ink);
  background: var(--paper-light);
}

.phone-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.phone-top img {
  width: 34px;
  height: 34px;
  border-radius: 10px;
}

.phone-top span {
  font-size: 10px;
  font-weight: 600;
}

.phone-screen h3 {
  margin: 26px 0 16px;
  font-size: 27px;
  line-height: 0.95;
  letter-spacing: -0.06em;
}

.phone-pills {
  display: flex;
  gap: 6px;
  overflow: hidden;
}

.phone-pill {
  padding: 7px 10px;
  border-radius: 999px;
  background: #e8e0d3;
  font-size: 8px;
  white-space: nowrap;
}

.phone-pill.active {
  color: white;
  background: var(--red);
}

.phone-product {
  margin-top: 14px;
  overflow: hidden;
  border-radius: 20px;
  background: white;
}

.phone-product-photo {
  height: 172px;
  background: url("/assets/coffee-hero.webp") center / cover;
}

.phone-product-copy {
  padding: 14px;
}

.phone-product-copy strong {
  display: block;
  font-size: 13px;
}

.phone-product-copy p {
  margin: 5px 0 0;
  color: #786d67;
  font-size: 9px;
  line-height: 1.4;
}

.phone-bottom {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
  margin-top: 17px;
  color: #9b918a;
  font-size: 7px;
  text-align: center;
}

.phone-bottom b {
  display: block;
  margin-bottom: 5px;
  color: var(--red);
  font-size: 16px;
  font-weight: 400;
}

.place-section {
  background: var(--paper-light);
}

.place-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: clamp(60px, 9vw, 150px);
}

.place-copy h2 {
  margin-top: 34px;
}

.place-facts {
  display: grid;
  border-top: 1px solid var(--line);
}

.place-fact {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 22px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.place-fact dt {
  color: var(--ink-soft);
  font-size: 12px;
}

.place-fact dd {
  margin: 0;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
}

.place-fact a {
  text-underline-offset: 4px;
}

.place-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 360px;
  padding: 34px;
  color: white;
  background: var(--red);
  border-radius: 2px 2px 70px 2px;
}

.place-card p {
  max-width: 280px;
  margin: 0;
  font-size: 23px;
  line-height: 1.15;
  letter-spacing: -0.04em;
}

.place-card span {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.site-footer {
  color: var(--white);
  background: var(--red-dark);
}

.footer-inner {
  width: min(100%, var(--container));
  margin: 0 auto;
  padding: 70px clamp(20px, 4vw, 64px) 28px;
}

.footer-top {
  display: grid;
  grid-template-columns: minmax(280px, 1.25fr) repeat(2, minmax(170px, 0.5fr));
  gap: 60px;
}

.footer-wordmark {
  max-width: 760px;
  font-size: clamp(42px, 6vw, 92px);
  font-weight: 600;
  line-height: 0.84;
  letter-spacing: -0.075em;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 12px;
}

.footer-column strong {
  margin-bottom: 8px;
  color: rgb(255 255 255 / 56%);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.footer-column a {
  width: fit-content;
  font-size: 14px;
  text-decoration: none;
}

.footer-column a:hover {
  text-decoration: underline;
  text-underline-offset: 5px;
}

.footer-bottom {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-top: 90px;
  padding-top: 20px;
  border-top: 1px solid rgb(255 255 255 / 25%);
  color: rgb(255 255 255 / 64%);
  font-size: 11px;
  line-height: 1.5;
}

.footer-bottom a {
  text-underline-offset: 4px;
}

.reveal {
  opacity: 1;
  transform: none;
}

.js .reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 650ms ease, transform 650ms cubic-bezier(0.2, 0.75, 0.25, 1);
}

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

.values-heading {
  margin: 34px 0 0;
  font-size: clamp(42px, 6vw, 84px);
  font-weight: 500;
  line-height: 0.95;
  letter-spacing: -0.065em;
}

/* Story */
.story-page-hero {
  position: relative;
  display: grid;
  align-items: end;
  width: min(100%, var(--container));
  min-height: 92svh;
  margin: 0 auto;
  padding: 146px clamp(20px, 4vw, 64px) 72px;
  isolation: isolate;
}

.story-year {
  position: absolute;
  z-index: -1;
  top: 92px;
  right: clamp(20px, 4vw, 64px);
  color: rgb(145 64 54 / 10%);
  font-size: clamp(140px, 28vw, 460px);
  font-weight: 700;
  line-height: 0.8;
  letter-spacing: -0.09em;
}

.story-hero-copy {
  max-width: 1100px;
}

.story-hero-copy h1 {
  max-width: 1050px;
  margin: 0;
  font-size: clamp(64px, 9vw, 142px);
  font-weight: 600;
  line-height: 0.8;
  letter-spacing: -0.078em;
}

.story-hero-copy h1 span {
  color: var(--red);
}

.story-hero-copy > p:last-child {
  max-width: 520px;
  margin: 48px 0 0 auto;
  color: var(--ink-soft);
  font-size: clamp(18px, 1.7vw, 25px);
  line-height: 1.4;
  letter-spacing: -0.025em;
}

.story-origin {
  color: var(--white);
  background: var(--red);
}

.story-origin-grid {
  display: grid;
  grid-template-columns: minmax(240px, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(60px, 10vw, 160px);
}

.story-quote {
  max-width: 480px;
  margin: 82px 0 0;
  font-size: clamp(34px, 4.4vw, 64px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.055em;
}

.story-timeline {
  display: grid;
}

.story-step {
  padding: 0 0 54px;
  border-bottom: 1px solid rgb(255 255 255 / 30%);
}

.story-step + .story-step {
  padding-top: 54px;
}

.story-step span {
  color: var(--acid);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.story-step h2 {
  margin: 28px 0 18px;
  font-size: clamp(28px, 3vw, 45px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.05em;
}

.story-step p {
  max-width: 660px;
  margin: 0;
  color: rgb(255 255 255 / 72%);
  font-size: 16px;
  line-height: 1.65;
}

.story-today {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(360px, 1.2fr);
  align-items: start;
  gap: clamp(70px, 10vw, 160px);
}

.story-today-heading {
  position: sticky;
  top: 140px;
}

.story-today-heading h2,
.story-meaning-heading h2,
.story-question h2 {
  margin: 38px 0 0;
  font-size: clamp(44px, 6.2vw, 92px);
  font-weight: 500;
  line-height: 0.94;
  letter-spacing: -0.068em;
}

.story-today-heading h2 i {
  color: var(--red);
  font-style: normal;
}

.story-today-body {
  padding-top: 4px;
}

.story-today-lead,
.story-today-closing {
  max-width: 680px;
  margin: 0;
  color: var(--ink-soft);
  font-size: clamp(17px, 1.45vw, 21px);
  line-height: 1.55;
}

.recipe-notes {
  display: grid;
  margin: 58px 0;
  border-top: 1px solid var(--line);
}

.recipe-note {
  display: grid;
  grid-template-columns: 48px minmax(120px, 0.65fr) minmax(180px, 1fr);
  gap: 20px;
  align-items: baseline;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.recipe-note span {
  color: var(--red);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.recipe-note h3 {
  margin: 0;
  font-size: clamp(22px, 2.2vw, 32px);
  font-weight: 500;
  letter-spacing: -0.045em;
}

.recipe-note p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.55;
}

.story-meaning {
  color: var(--white);
  background: var(--ink);
}

.story-meaning-heading {
  display: grid;
  grid-template-columns: minmax(210px, 0.55fr) minmax(0, 1.2fr);
  gap: clamp(50px, 8vw, 120px);
  align-items: start;
}

.story-meaning-heading h2 {
  margin-top: 0;
}

.story-meaning-heading > p:last-child {
  grid-column: 2;
  max-width: 620px;
  margin: -38px 0 0;
  color: rgb(255 255 255 / 64%);
  font-size: 18px;
  line-height: 1.55;
}

.meaning-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 86px;
  border-top: 1px solid rgb(255 255 255 / 24%);
  border-left: 1px solid rgb(255 255 255 / 24%);
}

.meaning-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 260px;
  padding: 28px;
  border-right: 1px solid rgb(255 255 255 / 24%);
  border-bottom: 1px solid rgb(255 255 255 / 24%);
}

.meaning-card span {
  color: var(--acid);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.meaning-card p {
  max-width: 480px;
  margin: 0;
  font-size: clamp(23px, 2.7vw, 38px);
  line-height: 1.12;
  letter-spacing: -0.045em;
}

.story-question {
  padding: clamp(80px, 10vw, 150px) clamp(20px, 4vw, 64px);
  background: var(--acid);
}

.story-question-inner {
  display: grid;
  justify-items: center;
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

.story-question-inner > span {
  color: var(--red);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.story-question h2 {
  margin-top: 28px;
}

.story-question p {
  margin: 26px 0 34px;
  font-size: 18px;
}

/* Careers */
.career-hero {
  display: grid;
  align-content: end;
  width: min(100%, var(--container));
  min-height: 88svh;
  margin: 0 auto;
  padding: 150px clamp(20px, 4vw, 64px) 70px;
}

.career-hero h1 {
  max-width: 1120px;
}

.career-hero-bottom {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 0.55fr);
  gap: 60px;
  align-items: end;
  margin-top: 62px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.career-hero-bottom p {
  max-width: 520px;
  margin: 0;
  font-size: clamp(18px, 1.6vw, 24px);
  line-height: 1.4;
  letter-spacing: -0.025em;
}

.career-hero-bottom .eyebrow {
  margin: 0;
}

.careers-intro {
  color: var(--white);
  background: var(--red);
}

.careers-intro .section {
  display: grid;
  grid-template-columns: minmax(220px, 0.5fr) minmax(0, 1.5fr);
  gap: clamp(40px, 7vw, 130px);
}

.role-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 70px;
  gap: 14px;
}

.role-card {
  display: flex;
  min-height: 340px;
  flex-direction: column;
  padding: 26px;
  border: 1px solid rgb(255 255 255 / 28%);
  border-radius: 2px 2px 36px 2px;
  background: rgb(255 255 255 / 4%);
}

.role-card + .role-card {
  padding-left: 26px;
}

.role-card span {
  color: rgb(255 255 255 / 60%);
  font-size: 11px;
  letter-spacing: 0.12em;
}

.role-card h3 {
  margin: 62px 0 12px;
  font-size: clamp(24px, 2.4vw, 36px);
  font-weight: 500;
  letter-spacing: -0.05em;
}

.role-card p {
  margin: 0;
  color: rgb(255 255 255 / 70%);
  font-size: 14px;
  line-height: 1.55;
}

.vacancy-board {
  min-height: 250px;
}

.vacancy-status {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 150px;
  margin-top: 70px;
  padding: 28px 0;
  border-top: 1px solid rgb(255 255 255 / 30%);
  border-bottom: 1px solid rgb(255 255 255 / 30%);
  color: rgb(255 255 255 / 72%);
}

.vacancy-status p { margin: 0; }
.vacancy-status a { color: var(--acid); text-underline-offset: 5px; }

.vacancy-loader {
  width: 18px;
  height: 18px;
  border: 1px solid rgb(255 255 255 / 26%);
  border-top-color: var(--acid);
  border-radius: 50%;
  animation: vacancy-spin 0.8s linear infinite;
}

@keyframes vacancy-spin { to { transform: rotate(360deg); } }

.vacancy-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 22px;
}

.vacancy-meta span {
  padding: 6px 8px 5px;
  border: 1px solid rgb(255 255 255 / 22%);
  border-radius: 999px;
  color: rgb(255 255 255 / 68%);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.vacancy-details {
  margin-top: 26px;
  padding-top: 20px;
  border-top: 1px solid rgb(255 255 255 / 18%);
}

.vacancy-details summary {
  cursor: pointer;
  color: var(--acid);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  list-style: none;
  text-transform: uppercase;
}

.vacancy-details summary::-webkit-details-marker { display: none; }
.vacancy-details summary::after { content: " +"; }
.vacancy-details[open] summary::after { content: " −"; }
.vacancy-details h4 { margin: 22px 0 9px; font-size: 13px; }
.vacancy-details p, .vacancy-details li { color: rgb(255 255 255 / 66%); font-size: 13px; line-height: 1.55; }
.vacancy-details ul { margin: 0; padding-left: 18px; }

.vacancy-apply {
  align-self: flex-start;
  margin-top: auto;
  padding-top: 28px;
  color: var(--acid);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-decoration: none;
  text-transform: uppercase;
}

.values-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(60px, 10vw, 160px);
}

.values-list {
  display: grid;
}

.value-item {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 18px;
  padding: 26px 0;
  border-top: 1px solid var(--line);
}

.value-item:last-child {
  border-bottom: 1px solid var(--line);
}

.value-item b {
  color: var(--red);
  font-size: 11px;
  letter-spacing: 0.12em;
}

.value-item h3 {
  margin: 0 0 8px;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.04em;
}

.value-item p {
  max-width: 540px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.55;
}

.apply-section {
  color: var(--white);
  background: var(--ink);
}

.apply-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(70px, 10vw, 160px);
}

.apply-copy h2 {
  margin-top: 34px;
}

.apply-copy > p:not(.section-kicker) {
  margin: 28px 0 0;
  color: rgb(255 255 255 / 64%);
  font-size: 15px;
  line-height: 1.6;
}

.apply-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 20px;
}

.field {
  display: grid;
  gap: 9px;
}

.field-wide {
  grid-column: 1 / -1;
}

.field label {
  color: rgb(255 255 255 / 60%);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgb(255 255 255 / 30%);
  border-radius: 0;
  color: white;
  background: transparent;
  font-size: 16px;
}

.field input,
.field select {
  height: 52px;
}

.field textarea {
  min-height: 130px;
  padding: 14px 0;
  resize: vertical;
}

.field select {
  color-scheme: dark;
}

.field input::placeholder,
.field textarea::placeholder {
  color: rgb(255 255 255 / 34%);
}

.form-footer {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 10px;
}

.form-footer p {
  max-width: 380px;
  margin: 0;
  color: rgb(255 255 255 / 46%);
  font-size: 11px;
  line-height: 1.5;
}

.form-footer button {
  cursor: pointer;
}

@media (max-width: 980px) {
  .desktop-nav { display: none; }
  .menu-toggle { display: block; }
  .hero { grid-template-columns: 1fr; min-height: auto; padding-top: 104px; }
  .hero-copy { order: 2; padding: 4px 0 44px; }
  .hero-media { min-height: 60svh; }
  .hero h1 { font-size: clamp(62px, 16vw, 112px); }
  .hero-intro, .hero-actions { margin-left: 0; }
  .story-grid, .careers-intro .section { grid-template-columns: 1fr; }
  .story-copy > p { margin-left: 20%; }
  .menu-grid { grid-template-columns: repeat(2, 1fr); }
  .menu-card:nth-child(2) { border-right: 0; }
  .menu-card:nth-child(-n+2) { border-bottom: 1px solid rgb(255 255 255 / 28%); }
  .menu-card:nth-child(3) { padding-left: 0; }
  .app-layout { grid-template-columns: 1fr; }
  .phone-stage { min-height: 650px; }
  .phone-orbit { width: min(70vw, 560px); }
  .place-grid { grid-template-columns: 1fr; }
  .place-card { min-height: 290px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-wordmark { grid-column: 1 / -1; }
  .story-page-hero { min-height: 78svh; }
  .story-origin-grid, .story-today { grid-template-columns: 1fr; }
  .story-today-heading { position: static; }
  .story-meaning-heading { grid-template-columns: 1fr; }
  .story-meaning-heading > p:last-child { grid-column: 1; margin: 0; }
  .career-hero { min-height: 78svh; }
  .career-hero-bottom { grid-template-columns: 1fr; }
  .role-grid { grid-template-columns: 1fr; }
  .role-card, .role-card + .role-card { min-height: 320px; padding: 25px; }
  .values-grid, .apply-grid { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  .header-inner { min-height: 78px; }
  .brand-copy strong { max-width: 110px; line-height: 0.95; }
  .brand-copy small { display: none; }
  .hero { gap: 26px; padding-top: 92px; }
  .hero-media { min-height: 430px; border-radius: 2px 2px 72px 2px; }
  .hero-stamp { right: 18px; bottom: 18px; width: 92px; height: 92px; font-size: 9px; }
  .hero-intro { margin-top: 28px; }
  .hero-actions { align-items: flex-start; flex-direction: column; margin-top: 30px; }
  .section { padding-top: 84px; padding-bottom: 84px; }
  .story-copy > p { margin: 32px 0 0; }
  .story-notes { grid-template-columns: 1fr; margin-top: 48px; }
  .story-note, .story-note + .story-note { min-height: auto; padding: 24px 0 28px; border-right: 0; border-bottom: 1px solid var(--line); }
  .story-note h3 { margin-top: 48px; }
  .menu-heading { grid-template-columns: 1fr; }
  .menu-grid { grid-template-columns: 1fr; margin-top: 52px; }
  .menu-card, .menu-card + .menu-card { min-height: auto; padding: 22px 0 25px; border-right: 0; border-bottom: 1px solid rgb(255 255 255 / 28%); }
  .menu-card h3 { margin-top: 64px; }
  .app-layout { padding-top: 84px; padding-bottom: 84px; }
  .store-badges { grid-template-columns: 1fr; max-width: 320px; }
  .store-badge, .store-badge.rustore { width: 100%; height: 66px; }
  .store-badge img { max-width: 132px; }
  .store-badge.google img { width: 132px; }
  .phone-stage { min-height: 590px; }
  .phone-screen { min-height: 560px; }
  .phone-orbit { width: 88vw; }
  .place-fact { grid-template-columns: 88px 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 44px; }
  .footer-wordmark { grid-column: auto; }
  .footer-bottom { align-items: flex-start; flex-direction: column; margin-top: 66px; }
  .story-page-hero { min-height: auto; padding-top: 150px; }
  .story-year { top: 120px; font-size: 44vw; }
  .story-hero-copy h1 { font-size: clamp(62px, 17vw, 94px); }
  .story-hero-copy > p:last-child { margin: 38px 0 0; }
  .story-quote { margin-top: 54px; }
  .story-step { padding-bottom: 40px; }
  .story-step + .story-step { padding-top: 40px; }
  .story-today { gap: 52px; }
  .recipe-note { grid-template-columns: 34px 1fr; }
  .recipe-note p { grid-column: 2; }
  .meaning-grid { grid-template-columns: 1fr; margin-top: 58px; }
  .meaning-card { min-height: 220px; }
  .story-question { padding-top: 84px; padding-bottom: 84px; }
  .career-hero { min-height: auto; padding-top: 150px; }
  .career-hero h1 { font-size: clamp(62px, 17vw, 94px); }
  .career-hero-bottom { margin-top: 46px; }
  .value-item { grid-template-columns: 40px 1fr; }
  .apply-form { grid-template-columns: 1fr; }
  .field-wide, .form-footer { grid-column: 1; }
  .form-footer { align-items: flex-start; flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
