/* Munchly marketing site
   Paper and ink, with the diner-app green. Bricolage Grotesque for display,
   Instrument Sans for everything else. */

:root {
  --paper: #f6f5f1;
  --paper-2: #efede6;
  --ink: #1a1d1a;
  --ink-2: #4a4f4a;
  --ink-3: #7a807a;
  --line: rgba(26, 29, 26, 0.12);
  --green: #1f6f54;
  --green-deep: #0f3d2e;
  --green-soft: #e3efe8;
  --amber: #c9871a;
  --amber-soft: #fbefd8;
  --red: #c0392b;
  --blue: #2a63c4;
  --white: #ffffff;

  --display: 'Bricolage Grotesque', 'Helvetica Neue', Arial, sans-serif;
  --body: 'Instrument Sans', system-ui, -apple-system, 'Segoe UI', sans-serif;

  --radius: 18px;
  --radius-sm: 10px;
  --shadow: 0 1px 2px rgba(26, 29, 26, 0.05), 0 12px 40px -12px rgba(26, 29, 26, 0.18);
  --gutter: clamp(16px, 5vw, 64px);
  --max: 1200px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
body.nav-open { overflow: hidden; }

h1, h2, h3 {
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin: 0;
  text-wrap: balance;
}
h1 { font-size: clamp(2.4rem, 5.4vw, 4rem); font-weight: 800; }
h2 { font-size: clamp(1.9rem, 4vw, 3rem); }
h3 { font-size: 1.25rem; letter-spacing: -0.01em; line-height: 1.2; }
p { margin: 0; }
a { color: inherit; }
img, svg { max-width: 100%; }

.skip {
  position: absolute; left: -999px; top: 8px;
  background: var(--ink); color: var(--paper); padding: 8px 12px; border-radius: 8px; z-index: 100;
}
.skip:focus { left: 8px; }

.eyebrow {
  font-family: var(--display);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 14px;
}
.lede { font-size: clamp(1.05rem, 1.6vw, 1.25rem); color: var(--ink-2); max-width: 40ch; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--display); font-weight: 600; font-size: 0.98rem;
  padding: 11px 18px; border-radius: 999px; text-decoration: none;
  border: 1.5px solid transparent; white-space: nowrap;
  transition: transform 0.12s ease, background 0.15s ease, box-shadow 0.15s ease;
}
.btn:active { transform: translateY(1px) scale(0.99); }
.btn-primary { background: var(--green); color: var(--white); box-shadow: 0 8px 24px -10px rgba(31, 111, 84, 0.7); }
.btn-primary:hover { background: var(--green-deep); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { background: rgba(26, 29, 26, 0.05); border-color: rgba(26, 29, 26, 0.25); }
.btn-lg { padding: 15px 24px; font-size: 1.05rem; }

/* ---------- nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; gap: 28px;
  padding: 14px var(--gutter);
  background: color-mix(in srgb, var(--paper) 88%, transparent);
  backdrop-filter: saturate(1.4) blur(12px);
  -webkit-backdrop-filter: saturate(1.4) blur(12px);
  border-bottom: 1px solid var(--line);
}
.wordmark {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--display); font-weight: 800; font-size: 1.3rem; letter-spacing: -0.02em;
  text-decoration: none; margin-right: auto;
}
.mark {
  display: inline-grid; place-items: center;
  width: 34px; height: 34px; border-radius: 10px;
  background: var(--green); color: var(--paper);
  font-family: var(--display); font-weight: 800; font-size: 1.1rem;
}
.nav-links { display: flex; gap: 24px; }
.nav-links a {
  white-space: nowrap; text-decoration: none; font-weight: 500; color: var(--ink-2); font-size: 0.98rem;
  padding: 6px 0; border-bottom: 2px solid transparent;
}
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--ink); border-bottom-color: var(--green); }
.nav-cta { display: flex; gap: 10px; }
.nav-toggle {
  display: none; width: 44px; height: 44px; border: 0; background: transparent; cursor: pointer;
  flex-direction: column; justify-content: center; align-items: center; gap: 6px; padding: 0; border-radius: 10px;
}
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--ink); transition: transform 0.2s ease; }
.nav-toggle[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:last-child { transform: translateY(-4px) rotate(-45deg); }
.mobile-nav {
  position: fixed; inset: 63px 0 0 0; z-index: 49;
  background: var(--paper); padding: 24px var(--gutter);
  display: flex; flex-direction: column; gap: 6px;
}
.mobile-nav[hidden] { display: none; }
.mobile-nav a:not(.btn) {
  font-family: var(--display); font-weight: 600; font-size: 1.6rem; text-decoration: none;
  padding: 12px 0; border-bottom: 1px solid var(--line);
}
.mobile-nav .btn { margin-top: 20px; align-self: flex-start; }

@media (max-width: 1040px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
}

/* ---------- sections ---------- */
main > section { padding: clamp(56px, 9vw, 120px) var(--gutter); }
.section-head { max-width: var(--max); margin: 0 auto clamp(32px, 5vw, 56px); }
.section-head h2 { max-width: 22ch; }

/* ---------- hero ---------- */
.hero {
  max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(32px, 6vw, 80px); align-items: center;
  padding-top: clamp(40px, 7vw, 96px) !important;
  padding-bottom: clamp(48px, 7vw, 96px) !important;
}
.hero h1 { margin-bottom: 22px; max-width: 13ch; }
.hero .lede { margin-bottom: 30px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-facts {
  list-style: none; padding: 0; margin: 34px 0 0; display: flex; flex-wrap: wrap; gap: 10px 22px;
  color: var(--ink-2); font-size: 0.95rem;
}
.hero-facts li { display: inline-flex; align-items: center; gap: 8px; }
.hero-facts li::before {
  content: ''; width: 18px; height: 18px; border-radius: 50%; flex: none;
  background: var(--green-soft) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231f6f54' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 13l4 4L19 7'/%3E%3C/svg%3E") center / 11px no-repeat;
}

.hero-stage {
  position: relative; display: grid; grid-template-columns: 1fr; place-items: center;
  padding: 24px 0;
}
.hero-stage::before {
  content: ''; position: absolute; inset: 14% -6% 6% 10%; border-radius: 40px; z-index: 0;
  background: radial-gradient(ellipse at 70% 30%, rgba(31, 111, 84, 0.2), transparent 60%), var(--paper-2);
}

/* hero photo */
.hero-photo {
  position: relative; z-index: 1; margin: 0; width: min(100%, 520px); border-radius: 32px; overflow: hidden;
  box-shadow: 0 40px 80px -30px rgba(26,29,26,0.45); transform: rotate(-1.5deg);
}
.hero-photo img { display: block; width: 100%; height: auto; aspect-ratio: 6 / 7; object-fit: cover; }
.hero-chip {
  position: absolute; z-index: 2; left: 0; top: 10%;
  display: flex; align-items: center; gap: 10px; padding: 10px 14px 10px 12px; border-radius: 14px;
  background: #fbfaf6; color: var(--ink); box-shadow: var(--shadow); border: 1px solid var(--line);
  transform: rotate(-3deg);
}
.hero-chip-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 4px rgba(31,111,84,0.18); animation: pulse 1.6s ease-in-out infinite; }
@keyframes pulse { 0%, 100% { box-shadow: 0 0 0 3px rgba(31,111,84,0.18); } 50% { box-shadow: 0 0 0 7px rgba(31,111,84,0.1); } }
@media (prefers-reduced-motion: reduce) { .hero-chip-dot { animation: none; } }
.hero-chip b { display: block; font-family: var(--display); font-weight: 800; font-size: 0.95rem; letter-spacing: -0.01em; }
.hero-chip small { display: block; font-size: 0.72rem; color: var(--ink-3); }

/* the table card */
.qr-card {
  position: absolute; z-index: 2; right: -4%; bottom: -2%;
  width: 208px; background: var(--white); border-radius: 16px; padding: 16px;
  box-shadow: var(--shadow); text-align: center; transform: rotate(4deg);
  border: 1px solid var(--line);
}
.qr { display: grid; place-items: center; }
.qr img, .qr canvas { width: 100% !important; height: auto !important; border-radius: 6px; }
.qr-title { font-family: var(--display); font-weight: 700; font-size: 1rem; margin-top: 10px; letter-spacing: -0.01em; }
.qr-sub { font-size: 0.78rem; color: var(--ink-2); margin-top: 4px; }
.qr-link { display: inline-block; margin-top: 8px; font-size: 0.82rem; font-weight: 600; color: var(--green); text-decoration: none; }
.qr-link:hover { text-decoration: underline; }

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; }
  .hero-stage { padding-bottom: 60px; }
  .qr-card { right: 2%; bottom: 0; width: 180px; }
}
@media (max-width: 480px) {
  .hero-photo { width: 100%; transform: none; border-radius: 24px; }
  .qr-card { width: 158px; padding: 12px; right: 0; }
  .qr-sub { display: none; }
}

/* ---------- how: numbered rows ---------- */
.how { background: var(--white); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.steps { list-style: none; padding: 0; margin: 0 auto; max-width: var(--max); display: grid; gap: clamp(28px, 4vw, 56px); }
.step {
  display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr); gap: clamp(28px, 5vw, 72px); align-items: center;
}
.step:nth-child(even) .step-visual { order: 2; }
.step-copy { max-width: 46ch; }
.step-num {
  display: inline-block; font-family: var(--display); font-weight: 700; font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--green); background: var(--green-soft); padding: 5px 10px; border-radius: 999px; margin-bottom: 14px;
}
.step-copy h3 { font-size: clamp(1.4rem, 2.4vw, 2rem); margin-bottom: 12px; }
.step-copy p { color: var(--ink-2); }
.step-visual {
  position: relative; min-height: 300px; border-radius: 24px; overflow: hidden; display: grid; place-items: center; padding: 28px;
  background: var(--paper-2);
}
.step-v-setup { background: radial-gradient(ellipse at 70% 20%, rgba(31,111,84,0.16), transparent 55%), var(--paper-2); }
.step-v-scan { background: radial-gradient(ellipse at 30% 80%, rgba(201,135,26,0.16), transparent 55%), var(--paper-2); }
.step-v-order { background: radial-gradient(ellipse at 80% 80%, rgba(31,111,84,0.18), transparent 55%), var(--paper-2); }
.step-v-kitchen { background: #141816; }

/* step 1: a fan of table cards */
.card-stack { position: relative; width: 260px; height: 230px; }
.tcard {
  position: absolute; left: 0; top: 0; width: 150px; padding: 14px 14px 12px; border-radius: 12px; background: var(--white);
  box-shadow: var(--shadow); border: 1px solid var(--line); text-align: center; transform-origin: bottom left;
}
.tcard:nth-child(1) { transform: rotate(-8deg) translate(0, 24px); }
.tcard:nth-child(2) { transform: rotate(2deg) translate(48px, 8px); }
.tcard:nth-child(3) { transform: rotate(11deg) translate(100px, 0); }
.tcard b { display: block; font-family: var(--display); font-weight: 800; font-size: 1.05rem; margin-top: 8px; letter-spacing: -0.01em; }
.tcard small { display: block; font-size: 0.66rem; color: var(--ink-3); margin-top: 2px; }
.tcard-qr {
  display: block; width: 84px; height: 84px; margin: 0 auto; border-radius: 6px; background: var(--white);
  background-image:
    linear-gradient(var(--ink), var(--ink)), linear-gradient(var(--ink), var(--ink)), linear-gradient(var(--ink), var(--ink)),
    repeating-linear-gradient(90deg, var(--ink) 0 4px, transparent 4px 8px),
    repeating-linear-gradient(0deg, var(--ink) 0 4px, transparent 4px 8px);
  background-size: 22px 22px, 22px 22px, 22px 22px, 30px 6px, 6px 30px;
  background-position: 6px 6px, 56px 6px, 6px 56px, 48px 62px, 62px 30px;
  background-repeat: no-repeat; outline: 1px solid var(--line);
}
.tcard-qr.big { width: 120px; height: 120px; background-size: 30px 30px, 30px 30px, 30px 30px, 44px 8px, 8px 44px; background-position: 8px 8px, 82px 8px, 8px 82px, 66px 90px, 90px 40px; }

/* step 2: phone camera over a card */
.scan-scene { position: relative; width: 280px; height: 250px; }
.scan-card {
  position: absolute; left: 10px; top: 40px; width: 160px; padding: 16px 12px; border-radius: 12px; background: var(--white);
  box-shadow: var(--shadow); border: 1px solid var(--line); text-align: center; transform: rotate(-6deg);
}
.scan-card b { display: block; font-family: var(--display); font-weight: 800; font-size: 1.1rem; margin-top: 8px; }
.scan-phone {
  position: absolute; right: 0; top: 0; width: 130px; height: 250px; border-radius: 24px; background: var(--ink); padding: 8px;
  box-shadow: 0 24px 50px -20px rgba(26,29,26,0.6); transform: rotate(8deg);
}
.scan-frame {
  display: block; height: 100%; border-radius: 18px; background: #2b3330; position: relative; overflow: hidden;
}
.scan-frame::before {
  content: ''; position: absolute; inset: 60px 20px 90px; border: 2px solid var(--white); border-radius: 8px;
  mask: linear-gradient(#000 0 0) top left / 22px 22px no-repeat, linear-gradient(#000 0 0) top right / 22px 22px no-repeat,
        linear-gradient(#000 0 0) bottom left / 22px 22px no-repeat, linear-gradient(#000 0 0) bottom right / 22px 22px no-repeat;
  -webkit-mask: linear-gradient(#000 0 0) top left / 22px 22px no-repeat, linear-gradient(#000 0 0) top right / 22px 22px no-repeat,
        linear-gradient(#000 0 0) bottom left / 22px 22px no-repeat, linear-gradient(#000 0 0) bottom right / 22px 22px no-repeat;
}
.scan-frame::after {
  content: ''; position: absolute; left: 22px; right: 22px; top: 70px; height: 2px; background: #8fd4b6; box-shadow: 0 0 12px #8fd4b6;
  animation: scanline 2s ease-in-out infinite alternate;
}
@keyframes scanline { from { top: 66px; } to { top: 150px; } }
@media (prefers-reduced-motion: reduce) { .scan-frame::after { animation: none; } }
.scan-phone em {
  position: absolute; left: 14px; right: 14px; bottom: 26px; font-style: normal; font-size: 10px; font-weight: 600; text-align: center;
  background: var(--white); color: var(--ink); padding: 8px 6px; border-radius: 999px; box-shadow: 0 6px 16px -6px rgba(0,0,0,0.5);
}

/* step 3: a modifier sheet */
.order-sheet { width: min(320px, 100%); background: var(--white); border-radius: 18px; padding: 18px; box-shadow: var(--shadow); font-size: 13px; }
.os-title { display: flex; justify-content: space-between; font-family: var(--display); font-weight: 700; font-size: 1.15rem; letter-spacing: -0.01em; padding-bottom: 10px; border-bottom: 1px solid var(--line); }
.os-title em { font-style: normal; }
.os-group { display: flex; flex-wrap: wrap; gap: 6px; align-items: center; padding: 10px 0 2px; }
.os-group span { width: 100%; font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; color: var(--ink-3); margin-bottom: 2px; }
.os-group i { font-style: normal; padding: 6px 10px; border-radius: 999px; border: 1px solid var(--line); font-weight: 500; }
.os-group i.on { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.os-note { margin-top: 12px; padding: 9px 12px; border-radius: 10px; background: var(--paper); border: 1px dashed rgba(26,29,26,0.25); color: var(--ink-2); font-style: italic; }
.os-cta { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 14px; }
.os-cta b { padding: 11px 6px; border-radius: 999px; text-align: center; font-family: var(--display); font-weight: 600; border: 1.5px solid var(--line); font-size: 12.5px; }
.os-cta b.g { background: var(--green); color: var(--white); border-color: var(--green); }

/* step 4: one docket, big */
.mini-board { width: min(300px, 100%); }
.mini-board .docket { margin: 0; font-size: 15px; padding: 14px 14px 12px; }
.mini-board .d-head b { font-size: 22px; }
.mini-board .d-btn { font-size: 14px; padding: 11px; }

@media (max-width: 860px) {
  .step { grid-template-columns: 1fr; gap: 20px; }
  .step:nth-child(even) .step-visual { order: 0; }
  .step-visual { min-height: 260px; }
}
@media (max-width: 420px) {
  .card-stack { width: 220px; }
  .tcard { width: 130px; }
  .tcard:nth-child(3) { transform: rotate(11deg) translate(80px, 0); }
}

/* ---------- benefits ---------- */
.benefits-wrap { max-width: var(--max); margin: 0 auto; }
.benefits .section-head h2 { max-width: 24ch; }
.benefits-body { display: grid; grid-template-columns: minmax(0, 0.38fr) minmax(0, 0.62fr); gap: clamp(20px, 3vw, 40px); align-items: stretch; }
.benefits-photo { margin: 0; border-radius: var(--radius); overflow: hidden; min-height: 100%; }
.benefits-photo img { display: block; width: 100%; height: 100%; object-fit: cover; }
.benefit-list { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; align-content: start; }
.benefit-list li {
  display: grid; gap: 6px; padding: 22px 22px 22px 56px; border-radius: var(--radius); background: var(--white); border: 1px solid var(--line); position: relative;
}
.benefit-list li::before {
  content: ''; position: absolute; left: 20px; top: 24px; width: 24px; height: 24px; border-radius: 50%;
  background: var(--green-soft) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231f6f54' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 13l4 4L19 7'/%3E%3C/svg%3E") center / 13px no-repeat;
}
.benefit-list strong { font-family: var(--display); font-weight: 700; font-size: 1.1rem; letter-spacing: -0.01em; }
.benefit-list span { color: var(--ink-2); font-size: 0.96rem; }
@media (max-width: 960px) { .benefits-body { grid-template-columns: 1fr; } .benefits-photo img { aspect-ratio: 16 / 9; } }
@media (max-width: 600px) { .benefit-list { grid-template-columns: 1fr; } }

/* ---------- founding ---------- */
.founding { background: var(--white); border-top: 1px solid var(--line); }
.founding-card {
  max-width: var(--max); margin: 0 auto; padding: clamp(28px, 4vw, 48px); border-radius: 26px;
  background: var(--green-deep); color: var(--paper);
  display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr); grid-template-areas: "copy photo" "ticks photo" "cta photo"; gap: 20px clamp(24px, 4vw, 56px); align-items: start;
}
.founding-card > div:first-child { grid-area: copy; }
.founding-photo { grid-area: photo; margin: 0; border-radius: 18px; overflow: hidden; align-self: stretch; min-height: 320px; }
.founding-photo img { display: block; width: 100%; height: 100%; object-fit: cover; }
.founding-ticks { grid-area: ticks; }
.founding-card .btn { grid-area: cta; }
.founding-card .eyebrow { color: #8fd4b6; }
.founding-card h2 { margin-bottom: 14px; }
.founding-copy { color: rgba(246,245,241,0.8); max-width: 48ch; }
.founding-ticks { margin: 0; }
.founding-card .btn { justify-self: start; background: var(--paper); color: var(--green-deep); box-shadow: none; }
.founding-card .btn:hover { background: var(--white); }
@media (max-width: 800px) { .founding-card { grid-template-columns: 1fr; grid-template-areas: "copy" "photo" "ticks" "cta"; } .founding-photo { min-height: 0; } .founding-photo img { aspect-ratio: 16 / 10; } }

/* ---------- kitchen ---------- */
.kitchen {
  background: var(--green-deep); color: var(--paper);
}
.kitchen-wrap {
  max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr); gap: clamp(32px, 6vw, 80px); align-items: center;
}
.kitchen .eyebrow { color: #8fd4b6; }
.kitchen h2 { margin-bottom: 18px; }
.kitchen p { color: rgba(246, 245, 241, 0.78); max-width: 46ch; }
.kitchen em { font-style: normal; background: var(--amber-soft); color: var(--ink); padding: 1px 6px; border-radius: 5px; font-weight: 500; }
.ticks { list-style: none; padding: 0; margin: 24px 0 0; display: grid; gap: 10px; }
.ticks li { display: flex; gap: 12px; align-items: flex-start; line-height: 1.4; }
.ticks li::before {
  content: ''; flex: none; width: 20px; height: 20px; border-radius: 50%; margin-top: 2px;
  background: rgba(143, 212, 182, 0.2) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%238fd4b6' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 13l4 4L19 7'/%3E%3C/svg%3E") center / 12px no-repeat;
}

.board {
  background: #141816; border-radius: 22px; padding: 16px; border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 40px 80px -30px rgba(0,0,0,0.6); font-size: 13px; color: var(--paper);
}
.board-head { display: flex; justify-content: space-between; align-items: center; padding: 4px 6px 14px; }
.board-title { font-family: var(--display); font-weight: 700; letter-spacing: -0.01em; font-size: 14px; }
.board-live { font-size: 11px; color: #8fd4b6; letter-spacing: 0.06em; text-transform: uppercase; font-weight: 600; }
.rails { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.rail { background: rgba(255,255,255,0.03); border-radius: 14px; padding: 8px; min-height: 240px; }
.rail-head {
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--display); font-weight: 700; font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase;
  color: #8fd4b6; padding: 6px 8px 10px;
}
.rail-head.prep { color: #f2c46d; }
.rail-head.ready { color: #8db6f2; }
.rail-head span { background: rgba(255,255,255,0.1); color: var(--paper); border-radius: 999px; padding: 1px 8px; font-size: 11px; }
.docket { background: #fbfaf6; color: var(--ink); border-radius: 10px; padding: 10px 10px 8px; margin-bottom: 8px; box-shadow: 0 6px 16px -8px rgba(0,0,0,0.6); }
.docket.fresh { outline: 2px solid var(--green); outline-offset: 1px; }
.docket.warn { outline: 2px solid var(--amber); outline-offset: 1px; }
.d-head { display: flex; align-items: baseline; gap: 8px; padding-bottom: 6px; border-bottom: 1px dashed var(--line); margin-bottom: 6px; }
.d-head b { font-family: var(--display); font-weight: 800; font-size: 17px; letter-spacing: -0.02em; }
.d-head span { font-weight: 600; color: var(--ink-2); font-size: 12px; }
.d-head em { margin-left: auto; font-style: normal; font-size: 11px; color: var(--ink-3); font-variant-numeric: tabular-nums; }
.docket.warn .d-head em { color: var(--amber); font-weight: 700; }
.d-line { display: grid; grid-template-columns: 20px 1fr; gap: 6px; padding: 4px 0; font-weight: 600; }
.d-line i { font-style: normal; font-family: var(--display); font-weight: 800; }
.d-line small { display: block; font-weight: 400; color: var(--ink-2); font-size: 11.5px; }
.d-line mark { display: inline-block; background: var(--amber-soft); color: var(--ink); font-weight: 500; font-size: 11.5px; padding: 1px 6px; border-radius: 4px; margin-top: 3px; }
.d-btn { margin-top: 8px; text-align: center; padding: 8px; border-radius: 8px; background: var(--green); color: var(--white); font-family: var(--display); font-weight: 700; font-size: 12.5px; }
.d-btn.amber { background: var(--amber); }
.d-btn.blue { background: var(--blue); }

@media (max-width: 900px) {
  .kitchen-wrap { grid-template-columns: 1fr; }
  .rails { grid-template-columns: 1fr; }
  .rail { min-height: 0; }
}

/* ---------- pay ---------- */
.pay-body { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: minmax(0, 0.45fr) minmax(0, 0.55fr); gap: clamp(20px, 3vw, 40px); align-items: stretch; }
.pay-photo { margin: 0; border-radius: var(--radius); overflow: hidden; }
.pay-photo img { display: block; width: 100%; height: 100%; object-fit: cover; }
.pay-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; align-content: start; }
.pay-grid article {
  padding: 26px; border-radius: var(--radius); background: var(--white); border: 1px solid var(--line);
}
.pay-grid h3 { margin-bottom: 10px; }
.pay-grid p { color: var(--ink-2); font-size: 0.98rem; }
@media (max-width: 1000px) { .pay-body { grid-template-columns: 1fr; } .pay-photo img { aspect-ratio: 16 / 9; } }
@media (max-width: 560px) { .pay-grid { grid-template-columns: 1fr; } }

/* ---------- pricing ---------- */
.pricing { background: var(--white); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.price-card {
  max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(24px, 5vw, 64px); align-items: center;
  padding: clamp(28px, 4vw, 48px); border-radius: 26px;
  background: var(--paper); border: 1px solid var(--line);
}
.price { font-family: var(--display); font-weight: 800; font-size: clamp(2.6rem, 5vw, 4rem); letter-spacing: -0.03em; line-height: 1; }
.price span { font-size: 1.05rem; font-weight: 600; color: var(--ink-2); letter-spacing: 0; margin-left: 6px; }
.price-note { color: var(--ink-2); margin-top: 16px; max-width: 40ch; }
.price-card .ticks { margin: 0; }
.price-card .ticks li::before { background-color: var(--green-soft); background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231f6f54' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 13l4 4L19 7'/%3E%3C/svg%3E"); }
.price-card .btn { grid-column: 1 / -1; justify-self: start; }
@media (max-width: 800px) { .price-card { grid-template-columns: 1fr; } }

/* ---------- faq ---------- */
.faq-list { max-width: 760px; margin: 0 auto; border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary {
  cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 16px;
  padding: 20px 0; font-family: var(--display); font-weight: 600; font-size: 1.15rem; letter-spacing: -0.01em;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: '+'; flex: none; width: 30px; height: 30px; border-radius: 50%; display: grid; place-items: center;
  background: var(--paper-2); font-weight: 500; transition: transform 0.2s ease;
}
.faq-list details[open] summary::after { transform: rotate(45deg); }
.faq-list details p { color: var(--ink-2); padding: 0 0 22px; max-width: 62ch; }

/* ---------- cta ---------- */
.cta { text-align: center; background: var(--green-soft); }
.cta h2 { margin-bottom: 12px; }
.cta p { color: var(--ink-2); margin-bottom: 26px; }
.cta .hero-actions { justify-content: center; }

/* ---------- footer ---------- */
.footer {
  padding: 40px var(--gutter) 48px; border-top: 1px solid var(--line);
  max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: 1fr auto; gap: 24px; align-items: start;
}
.footer-brand { display: flex; gap: 14px; align-items: flex-start; }
.footer-brand strong { font-family: var(--display); font-size: 1.1rem; }
.footer-brand p { color: var(--ink-3); font-size: 0.9rem; margin-top: 4px; }
.footer-links { display: flex; flex-wrap: wrap; gap: 20px; font-size: 0.95rem; }
.footer-links a { color: var(--ink-2); text-decoration: none; }
.footer-links a:hover { color: var(--ink); text-decoration: underline; }
.footer-fine { grid-column: 1 / -1; color: var(--ink-3); font-size: 0.82rem; }
@media (max-width: 640px) { .footer { grid-template-columns: 1fr; } }

/* ---------- about ---------- */
.about-hero { max-width: 900px; margin: 0 auto; }
.about-hero h1 { font-size: clamp(2.1rem, 5vw, 3.6rem); margin-bottom: 22px; }
.about-hero .lede { max-width: 60ch; }
.about-grid {
  max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 18px;
  padding-top: 0 !important;
}
.about-grid article { padding: 30px; border-radius: var(--radius); background: var(--white); border: 1px solid var(--line); }
.about-grid h2 { font-size: 1.5rem; margin-bottom: 12px; }
.about-grid p { color: var(--ink-2); }
.principles { background: var(--white); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.principle-list { list-style: none; padding: 0; margin: 0 auto; max-width: 860px; counter-reset: p; }
.principle-list li {
  counter-increment: p; display: grid; grid-template-columns: 64px 1fr; gap: 16px; padding: 24px 0; border-top: 1px solid var(--line);
}
.principle-list li::before {
  content: counter(p, decimal-leading-zero); font-family: var(--display); font-weight: 800; font-size: 1.8rem; color: var(--green); letter-spacing: -0.03em; line-height: 1;
}
.principle-list h3 { margin-bottom: 8px; }
.principle-list p { color: var(--ink-2); }
@media (max-width: 760px) { .about-grid { grid-template-columns: 1fr; } .principle-list li { grid-template-columns: 44px 1fr; } }

.footer-fine a { color: var(--ink-3); }
.about-photo-band { padding-top: 0 !important; }
.about-photo { max-width: var(--max); margin: 0 auto; border-radius: 26px; overflow: hidden; }
.about-photo img { display: block; width: 100%; height: auto; aspect-ratio: 16 / 9; object-fit: cover; }
@media (max-width: 600px) { .about-photo img { aspect-ratio: 4 / 3; } }
