:root {
  --ink: #102021;
  --muted: #5d6a6b;
  --line: #dce5e4;
  --mist: #eef3f2;
  --paper: #f8faf8;
  --white: #ffffff;
  --accent: #ef6b50;
  --accent-dark: #c84b34;
  --accent-soft: #ffe3dc;
  --radius: 22px;
  --shadow: 0 18px 50px rgba(16, 32, 33, 0.1);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--paper);
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 78% 8%, rgba(239, 107, 80, 0.08), transparent 26rem),
    var(--paper);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

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

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

button:focus-visible,
a:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(239, 107, 80, 0.5);
  outline-offset: 4px;
}

img {
  max-width: 100%;
}

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

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

.shell {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  z-index: 10;
  top: 0;
  border-bottom: 1px solid rgba(220, 229, 228, 0.85);
  background: rgba(248, 250, 248, 0.9);
  backdrop-filter: blur(16px);
}

.nav {
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.brand-mark {
  display: inline-grid;
  width: 30px;
  height: 30px;
  place-items: center;
  color: var(--white);
  background: var(--ink);
  border-radius: 10px;
  font-size: 13px;
  letter-spacing: 0;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
}

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

.desktop-nav a:hover,
.desktop-nav a[aria-current="page"] {
  color: var(--ink);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  color: var(--white) !important;
  background: var(--ink);
  border-radius: 999px;
  transition: transform 160ms ease, background 160ms ease;
}

.nav-cta:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
}

.mobile-nav {
  display: none;
}

.mobile-nav summary {
  cursor: pointer;
  list-style: none;
  color: var(--ink);
  font-size: 14px;
  font-weight: 750;
}

.mobile-nav summary::-webkit-details-marker {
  display: none;
}

.mobile-nav summary::after {
  display: inline-block;
  margin-left: 8px;
  content: "+";
  color: var(--accent-dark);
  font-size: 18px;
  line-height: 0;
}

.mobile-nav[open] summary::after {
  content: "−";
}

.mobile-nav ul {
  display: grid;
  gap: 14px;
  margin: 18px 0 2px;
  padding: 0 0 18px;
  border-bottom: 1px solid var(--line);
  list-style: none;
}

.mobile-nav a {
  color: var(--muted);
  font-size: 15px;
  font-weight: 650;
}

.hero {
  display: grid;
  min-height: min(760px, calc(100dvh - 72px));
  align-items: center;
  grid-template-columns: minmax(0, 0.93fr) minmax(360px, 1.07fr);
  gap: clamp(40px, 7vw, 96px);
  padding: 64px 0 72px;
}

.hero-copy {
  max-width: 570px;
}

.kicker {
  margin: 0 0 22px;
  color: var(--accent-dark);
  font-family: "SF Mono", "Roboto Mono", ui-monospace, monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1.4;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  letter-spacing: -0.045em;
}

h1 {
  max-width: 620px;
  margin-bottom: 22px;
  font-size: clamp(2.8rem, 6vw, 5.3rem);
  font-weight: 780;
  line-height: 0.98;
}

.hero-copy > p:not(.kicker) {
  max-width: 500px;
  margin-bottom: 32px;
  color: var(--muted);
  font-size: clamp(1.04rem, 1.5vw, 1.2rem);
  line-height: 1.6;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 760;
  letter-spacing: -0.01em;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

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

.button-primary {
  color: var(--white);
  background: var(--accent);
}

.button-primary:hover {
  background: var(--accent-dark);
}

.button-secondary {
  color: var(--ink);
  background: transparent;
  border-color: var(--line);
}

.button-secondary:hover {
  border-color: var(--ink);
}

.hero-note {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.recipe-stage {
  position: relative;
  min-height: 500px;
  overflow: hidden;
  isolation: isolate;
  border: 1px solid rgba(16, 32, 33, 0.12);
  border-radius: 32px;
  background:
    linear-gradient(130deg, rgba(255, 255, 255, 0.75), transparent 45%),
    var(--mist);
  box-shadow: var(--shadow);
}

.recipe-stage::before,
.recipe-stage::after {
  position: absolute;
  z-index: -1;
  width: 260px;
  height: 260px;
  content: "";
  border: 1px solid rgba(16, 32, 33, 0.08);
  border-radius: 50%;
}

.recipe-stage::before {
  top: -100px;
  right: -80px;
}

.recipe-stage::after {
  bottom: -160px;
  left: -100px;
}

.recipe-card {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(76%, 390px);
  padding: 25px;
  background: var(--white);
  border: 1px solid rgba(16, 32, 33, 0.11);
  border-radius: var(--radius);
  box-shadow: 0 26px 70px rgba(16, 32, 33, 0.16);
  transform: translate(-50%, -50%) rotate(-3deg);
}

.card-topline,
.card-meta,
.ingredient-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.card-topline {
  margin-bottom: 28px;
  color: var(--muted);
  font-family: "SF Mono", "Roboto Mono", ui-monospace, monospace;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.live-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 6px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 0 5px var(--accent-soft);
}

.recipe-card h2 {
  max-width: 270px;
  margin-bottom: 10px;
  font-size: clamp(1.8rem, 4vw, 2.45rem);
  line-height: 1;
}

.recipe-card > p {
  max-width: 290px;
  margin-bottom: 25px;
  color: var(--muted);
  font-size: 13px;
}

.bowl {
  position: relative;
  width: 100%;
  height: 112px;
  margin-bottom: 23px;
  overflow: hidden;
  border-radius: 18px;
  background:
    radial-gradient(circle at 50% 12%, rgba(239, 107, 80, 0.52), transparent 8%),
    radial-gradient(circle at 68% 45%, rgba(239, 107, 80, 0.28), transparent 20%),
    linear-gradient(150deg, #153538, #254b4a);
}

.bowl::before {
  position: absolute;
  right: 18%;
  bottom: -40px;
  left: 18%;
  height: 110px;
  content: "";
  border: 2px solid rgba(255, 255, 255, 0.48);
  border-radius: 50%;
  transform: rotate(-8deg);
}

.bowl::after {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 55px;
  height: 55px;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 50%;
}

.card-meta {
  padding-bottom: 17px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
}

.card-meta strong {
  color: var(--ink);
  font-size: 14px;
}

.ingredients {
  display: grid;
  gap: 12px;
  padding-top: 17px;
}

.ingredient-row {
  color: var(--muted);
  font-size: 12px;
}

.ingredient-row strong {
  color: var(--ink);
  font-weight: 700;
}

.ingredient-row span:last-child {
  color: var(--ink);
  font-family: "SF Mono", "Roboto Mono", ui-monospace, monospace;
  font-size: 11px;
}

.section {
  padding: 112px 0;
}

.section + .section {
  border-top: 1px solid var(--line);
}

.section-heading {
  max-width: 650px;
  margin-bottom: 48px;
}

.section-heading h2 {
  max-width: 620px;
  margin-bottom: 14px;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.02;
}

.section-heading p {
  max-width: 560px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 0.85fr;
  gap: 14px;
}

.feature {
  min-height: 300px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.feature h3 {
  max-width: 240px;
  margin: 70px 0 13px;
  font-size: 1.6rem;
  line-height: 1.05;
}

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

.feature-primary {
  color: var(--white);
  background: var(--ink);
  border-color: var(--ink);
}

.feature-primary p {
  color: rgba(255, 255, 255, 0.68);
}

.feature-soft {
  background: var(--accent-soft);
  border-color: transparent;
}

.feature-mark {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--accent-dark);
  font-family: "SF Mono", "Roboto Mono", ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.feature-mark span:last-child {
  color: currentColor;
  font-size: 20px;
  line-height: 1;
}

.workflow {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 72px;
  align-items: start;
}

.workflow h2 {
  max-width: 360px;
  margin-bottom: 18px;
  font-size: clamp(2.1rem, 4vw, 3.5rem);
  line-height: 1.02;
}

.workflow-intro {
  max-width: 360px;
  margin-bottom: 0;
  color: var(--muted);
}

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

.step {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 18px;
  padding: 25px 0;
  border-bottom: 1px solid var(--line);
}

.step-number {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  color: var(--accent-dark);
  background: var(--accent-soft);
  border-radius: 50%;
  font-family: "SF Mono", "Roboto Mono", ui-monospace, monospace;
  font-size: 12px;
  font-weight: 700;
}

.step h3 {
  margin-bottom: 7px;
  font-size: 1.25rem;
  letter-spacing: -0.03em;
}

.step p {
  max-width: 520px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
}

.local-first {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  padding: 48px;
  color: var(--white);
  background: var(--ink);
  border-radius: 28px;
}

.local-first h2 {
  max-width: 450px;
  margin-bottom: 14px;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.02;
}

.local-first p {
  max-width: 540px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.7);
}

.local-list {
  display: grid;
  align-content: center;
  gap: 12px;
}

.local-list div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 14px;
}

.local-list span {
  color: rgba(255, 255, 255, 0.6);
}

.local-list strong {
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  text-align: right;
}

.closing {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 32px;
}

.closing h2 {
  max-width: 640px;
  margin-bottom: 0;
  font-size: clamp(2.2rem, 5vw, 4.8rem);
  line-height: 0.98;
}

.site-footer {
  padding: 34px 0 48px;
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-copy,
.footer-links {
  color: var(--muted);
  font-size: 12px;
}

.footer-copy {
  margin-bottom: 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

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

.legal-page {
  max-width: 760px;
  padding: 92px 0 120px;
}

.legal-page h1 {
  max-width: 700px;
  margin-bottom: 18px;
  font-size: clamp(2.5rem, 6vw, 4.8rem);
}

.legal-page .lede {
  max-width: 650px;
  margin-bottom: 48px;
  color: var(--muted);
  font-size: 1.1rem;
}

.legal-page h2 {
  margin: 44px 0 12px;
  font-size: 1.45rem;
  line-height: 1.1;
}

.legal-page p,
.legal-page li {
  color: #425051;
  font-size: 15px;
}

.legal-page ul {
  padding-left: 22px;
}

.legal-page .back-link {
  display: inline-flex;
  margin-bottom: 34px;
  color: var(--accent-dark);
  font-size: 14px;
  font-weight: 750;
}

.notice {
  margin: 28px 0;
  padding: 18px 20px;
  background: var(--accent-soft);
  border-left: 4px solid var(--accent);
  border-radius: 0 var(--radius) var(--radius) 0;
}

.notice p {
  margin: 0;
  color: var(--ink);
}

@media (max-width: 860px) {
  .desktop-nav {
    display: none;
  }

  .mobile-nav {
    display: block;
  }

  .hero,
  .workflow,
  .local-first {
    grid-template-columns: 1fr;
  }

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

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

  .recipe-stage {
    min-height: 460px;
  }

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

  .feature:first-child {
    grid-column: 1 / -1;
  }

  .workflow {
    gap: 38px;
  }

  .local-first {
    gap: 38px;
    padding: 34px;
  }
}

@media (max-width: 560px) {
  .shell {
    width: min(calc(100% - 28px), var(--max));
  }

  .nav {
    min-height: 64px;
  }

  .hero {
    padding: 44px 0 56px;
  }

  h1 {
    font-size: clamp(2.7rem, 14vw, 4.2rem);
  }

  .recipe-stage {
    min-height: 390px;
    border-radius: 24px;
  }

  .recipe-card {
    width: calc(100% - 34px);
    padding: 20px;
  }

  .section {
    padding: 78px 0;
  }

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

  .feature:first-child {
    grid-column: auto;
  }

  .feature {
    min-height: 250px;
  }

  .feature h3 {
    margin-top: 50px;
  }

  .local-first {
    padding: 27px 22px;
    border-radius: 22px;
  }

  .closing {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .footer-grid {
    align-items: flex-start;
    flex-direction: column;
  }

  .legal-page {
    padding: 64px 0 86px;
  }
}

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

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