/* ============================================================
   VENDALL — Vending Machine as Editorial Object
   ============================================================ */

:root {
  --ink:       #0E0D0B;
  --ink-2:     #1B1916;
  --cream:     #F2EBDD;
  --cream-2:   #EAE1CF;
  --smoke:     #C9BEA9;
  --mustard:   #F4B400;
  --mustard-d: #C99500;
  --oxblood:   #8E1B14;
  --oxblood-d: #6E1009;
  --olive:     #5B5A1F;
  --paper:     #FAF6EC;

  --f-display: "Bricolage Grotesque", "Helvetica Neue", Arial, sans-serif;
  --f-serif:   "Instrument Serif", "Times New Roman", serif;
  --f-mono:    "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;

  --chrome-top: 56px;
  --chrome-bot: 64px;

  --ease: cubic-bezier(.2,.7,.1,1);
  --ease-out: cubic-bezier(.16,1,.3,1);
}

* { box-sizing: border-box; -webkit-tap-highlight-color: transparent; }
[hidden] { display: none !important; }
html, body { margin: 0; padding: 0; }
html { background: var(--cream); }
body {
  font-family: var(--f-display);
  font-weight: 400;
  font-optical-sizing: auto;
  color: var(--ink);
  background: var(--cream);
  overflow: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; }
button { font: inherit; color: inherit; cursor: pointer; border: 0; background: none; }
a { color: inherit; text-decoration: none; }
em { font-family: var(--f-serif); font-style: italic; font-weight: 400; letter-spacing: -.01em; }

.mono { font-family: var(--f-mono); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; }
.ink-italic { font-family: var(--f-serif); font-style: italic; font-weight: 400; }

/* ============================================================
   TOP & BOTTOM CHROME
   ============================================================ */
.chrome {
  position: fixed; left: 0; right: 0; z-index: 50;
  display: flex; align-items: center; gap: 12px;
  padding: 0 14px;
  background: color-mix(in oklab, var(--cream) 92%, transparent);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
}
.chrome--top { top: 0; height: var(--chrome-top); justify-content: space-between; border-bottom: 1px solid color-mix(in oklab, var(--ink) 12%, transparent); }
.chrome--bottom { bottom: 0; height: var(--chrome-bot); padding-bottom: env(safe-area-inset-bottom, 0); justify-content: space-between; border-top: 1px solid color-mix(in oklab, var(--ink) 12%, transparent); }

.brand { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; letter-spacing: -.01em; font-size: 17px; color: var(--ink); }
.brand__mark { color: var(--mustard); display: inline-flex; }
.brand__word { font-family: var(--f-display); }

.counter { display: inline-flex; align-items: baseline; gap: 4px; font-family: var(--f-mono); font-size: 11px; letter-spacing: .12em; color: var(--ink); }
.counter__current { font-weight: 700; color: var(--oxblood); }
.counter__divider { opacity: .35; }
.counter__total { opacity: .65; }

.ghost-btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 7px 12px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-family: var(--f-mono); font-size: 11px; letter-spacing: .1em; text-transform: uppercase;
  color: var(--ink);
  transition: background .25s var(--ease), color .25s var(--ease);
}
.ghost-btn:hover { background: var(--ink); color: var(--cream); }

/* dots + progress + arrows */
.dots { display: inline-flex; gap: 6px; flex: 0 0 auto; }
.dots button {
  width: 22px; height: 6px; border-radius: 2px;
  background: color-mix(in oklab, var(--ink) 18%, transparent);
  transition: background .25s var(--ease), width .35s var(--ease);
}
.dots button[aria-current="true"] {
  background: var(--ink);
  width: 36px;
}
.dots button.dot--inv { background: color-mix(in oklab, var(--cream) 35%, transparent); }
.dots button.dot--inv[aria-current="true"] { background: var(--mustard); }

.progress { flex: 1 1 auto; height: 2px; background: color-mix(in oklab, var(--ink) 10%, transparent); border-radius: 2px; overflow: hidden; margin: 0 14px; }
.progress__bar { height: 100%; width: 0%; background: var(--ink); transition: width .4s var(--ease); }

.nav-arrows { display: inline-flex; gap: 6px; }
.arrow {
  width: 40px; height: 36px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid var(--ink); border-radius: 8px;
  transition: background .2s var(--ease), color .2s var(--ease), transform .15s var(--ease);
}
.arrow:hover { background: var(--ink); color: var(--cream); }
.arrow:active { transform: translateY(1px); }
.arrow--primary { background: var(--mustard); border-color: var(--ink); }
.arrow--primary:hover { background: var(--ink); color: var(--mustard); }

/* dark chrome variants when over dark slide */
.chrome.is-inverted { background: color-mix(in oklab, var(--ink) 88%, transparent); border-color: color-mix(in oklab, var(--cream) 12%, transparent); color: var(--cream); }
.chrome.is-inverted .brand, .chrome.is-inverted .counter { color: var(--cream); }
.chrome.is-inverted .counter__current { color: var(--mustard); }
.chrome.is-inverted .ghost-btn { color: var(--cream); border-color: var(--cream); }
.chrome.is-inverted .ghost-btn:hover { background: var(--mustard); color: var(--ink); border-color: var(--mustard); }
.chrome.is-inverted .dots button { background: color-mix(in oklab, var(--cream) 25%, transparent); }
.chrome.is-inverted .dots button[aria-current="true"] { background: var(--mustard); }
.chrome.is-inverted .progress { background: color-mix(in oklab, var(--cream) 18%, transparent); }
.chrome.is-inverted .progress__bar { background: var(--mustard); }
.chrome.is-inverted .arrow { border-color: var(--cream); }
.chrome.is-inverted .arrow:hover { background: var(--cream); color: var(--ink); }
.chrome.is-inverted .arrow--primary { background: var(--mustard); border-color: var(--mustard); color: var(--ink); }

/* ============================================================
   DECK / SLIDES
   ============================================================ */
.deck {
  height: 100dvh;
  overflow-y: auto;
  overflow-x: hidden;
  scroll-snap-type: y mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  outline: none;
}
.deck::-webkit-scrollbar { display: none; }

.slide {
  position: relative;
  min-height: 100dvh;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  padding: calc(var(--chrome-top) + 18px) 22px calc(var(--chrome-bot) + 24px);
  display: flex; flex-direction: column;
  overflow: hidden;
}

/* slot heads on each slide (vending row label) */
.slot-head {
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px;
  padding-bottom: 14px;
  margin-bottom: 18px;
  border-bottom: 1px dashed color-mix(in oklab, var(--ink) 25%, transparent);
  color: color-mix(in oklab, var(--ink) 70%, transparent);
}
.slot-num { color: var(--oxblood); }
.slot-name { letter-spacing: .14em; }
.slot-head--inv { border-color: color-mix(in oklab, var(--cream) 25%, transparent); color: color-mix(in oklab, var(--cream) 70%, transparent); }
.slot-head--inv .slot-num { color: var(--mustard); }

/* ============================================================
   SLIDE 1 — HERO
   ============================================================ */
.slide--hero {
  background:
    radial-gradient(120% 80% at 100% 0%, color-mix(in oklab, var(--mustard) 18%, transparent) 0%, transparent 55%),
    var(--cream);
}
.hero {
  position: relative; z-index: 2;
  flex: 1 1 auto;
  display: flex; flex-direction: column; justify-content: space-between;
  gap: 28px;
}
.hero__meta { display: inline-flex; align-items: center; gap: 8px; align-self: flex-start; color: color-mix(in oklab, var(--ink) 75%, transparent); }
.hero__meta .dot { width: 8px; height: 8px; border-radius: 50%; display: inline-block; }
.dot--mustard { background: var(--mustard); box-shadow: 0 0 0 3px color-mix(in oklab, var(--mustard) 30%, transparent); }
.hero__meta .sep { opacity: .4; }

.hero__title {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(80px, 26vw, 240px);
  line-height: .82;
  letter-spacing: -.06em;
  margin: 0;
}
.hero__title .line { display: block; }
.hero__title .line-2 { color: var(--oxblood); padding-left: .12em; }
.hero__title em { font-family: var(--f-serif); font-style: italic; font-weight: 400; letter-spacing: -.02em; }

.hero__kicker {
  font-size: clamp(18px, 4.6vw, 26px);
  line-height: 1.3;
  max-width: 28ch;
  margin: 0;
  color: color-mix(in oklab, var(--ink) 88%, transparent);
  font-weight: 400;
  letter-spacing: -.01em;
}

.hero__cta { display: flex; gap: 10px; flex-wrap: wrap; }

.hero__strip {
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
  color: color-mix(in oklab, var(--ink) 70%, transparent);
  padding-top: 12px;
  border-top: 1px solid color-mix(in oklab, var(--ink) 18%, transparent);
}
.hero__strip .bullet { color: var(--mustard); font-size: 8px; }

/* hero deco bg */
.hero__bg { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.hero__bg-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(color-mix(in oklab, var(--ink) 5%, transparent) 1px, transparent 1px),
    linear-gradient(90deg, color-mix(in oklab, var(--ink) 5%, transparent) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(70% 50% at 80% 90%, #000 30%, transparent 80%);
}
.hero__bg-blob {
  position: absolute; right: -10%; bottom: -10%;
  width: 70vmin; height: 70vmin;
  background: radial-gradient(circle at 30% 30%, var(--mustard) 0%, var(--mustard-d) 40%, transparent 70%);
  filter: blur(6px);
  opacity: .55;
}
.hero__bg-tag {
  position: absolute; left: 22px; bottom: calc(var(--chrome-bot) + 30px);
  color: color-mix(in oklab, var(--ink) 45%, transparent);
  writing-mode: vertical-rl; transform: rotate(180deg);
  display: none;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 20px;
  border-radius: 999px;
  font-family: var(--f-display);
  font-size: 15px; font-weight: 600; letter-spacing: -.005em;
  border: 1.5px solid transparent;
  transition: transform .12s var(--ease), background .2s var(--ease), color .2s var(--ease), box-shadow .25s var(--ease);
}
.btn:active { transform: translateY(1px) scale(.99); }
.btn--primary {
  background: var(--oxblood); color: var(--cream);
  box-shadow: 0 1px 0 0 var(--oxblood-d), 0 8px 22px -10px color-mix(in oklab, var(--oxblood) 80%, transparent);
}
.btn--primary:hover { background: var(--oxblood-d); }
.btn--accent {
  background: var(--mustard); color: var(--ink);
  box-shadow: 0 1px 0 0 var(--mustard-d), 0 12px 30px -12px color-mix(in oklab, var(--mustard) 80%, transparent);
}
.btn--accent:hover { background: var(--ink); color: var(--mustard); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: var(--cream); }
.btn--xl { padding: 18px 26px; font-size: 18px; }
.btn--block { width: 100%; }

/* ============================================================
   SLIDE 2 — MANIFESTO
   ============================================================ */
.slide--manifesto { background: var(--cream); }
.manifesto { padding-top: 4px; }
.manifesto__lead {
  font-size: clamp(40px, 10vw, 88px);
  line-height: .98;
  letter-spacing: -.04em;
  font-weight: 600;
  margin: 0 0 28px;
}
.manifesto__lead em { color: var(--oxblood); }
.manifesto__body {
  font-size: clamp(16px, 4vw, 19px);
  line-height: 1.55;
  max-width: 44ch;
  margin: 0 0 18px;
  color: color-mix(in oklab, var(--ink) 90%, transparent);
}
.manifesto__body strong { font-weight: 700; background: linear-gradient(180deg, transparent 65%, var(--mustard) 65%, var(--mustard) 92%, transparent 92%); padding: 0 2px; }

.manifesto__pills { display: flex; gap: 8px; flex-wrap: wrap; }
.pill { padding: 6px 10px; border: 1px solid var(--ink); border-radius: 999px; color: var(--ink); }

.manifesto__photo {
  margin: 22px 0 0; padding: 0;
  position: relative;
  border-radius: 14px; overflow: hidden;
  border: 1.5px solid var(--ink);
  box-shadow: 8px 8px 0 0 var(--ink);
}
.manifesto__photo img {
  width: 100%; height: auto; aspect-ratio: 16/9; object-fit: cover;
  filter: contrast(1.05) saturate(.95);
}
.manifesto__photo figcaption {
  position: absolute; left: 12px; bottom: 10px;
  padding: 6px 10px; background: var(--cream); color: var(--ink);
  border: 1px solid var(--ink);
}

/* ============================================================
   SLIDE 3-7 — SERVICE
   ============================================================ */
.slide--service {
  background: var(--cream);
}
.service--01 { background: linear-gradient(180deg, var(--cream) 0%, var(--cream-2) 100%); }
.service--02 { background: linear-gradient(180deg, #EFE6D2 0%, #E5D8B7 100%); }
.service--03 { background: linear-gradient(180deg, #DEE9DB 0%, #C9DDC3 100%); }
.service--04 { background: linear-gradient(180deg, #F0E1D2 0%, #E3CDB6 100%); }
.service--05 { background: linear-gradient(180deg, #E5DDF0 0%, #D4C6E6 100%); }

.service {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  flex: 1 1 auto;
  align-items: start;
}
.service__copy { display: flex; flex-direction: column; gap: 14px; }
.service__eyebrow { color: var(--oxblood); margin: 0; }
.service__title {
  font-size: clamp(48px, 13vw, 110px);
  line-height: .92; letter-spacing: -.045em; font-weight: 700;
  margin: 0;
}
.service__title em { color: var(--mustard); }
.service__body {
  font-size: clamp(15px, 4vw, 17px); line-height: 1.55;
  max-width: 42ch; margin: 0;
  color: color-mix(in oklab, var(--ink) 88%, transparent);
}
.service__list { list-style: none; padding: 0; margin: 4px 0 0; display: flex; flex-direction: column; gap: 6px; color: var(--ink); }
.service__list li { display: flex; gap: 8px; align-items: baseline; }
.service__list li span { color: var(--oxblood); font-weight: 700; }

.service__art {
  position: relative;
  margin: 0; padding: 26px;
  display: flex; align-items: center; justify-content: center;
  background: color-mix(in oklab, var(--cream) 90%, var(--ink));
  border: 1.5px solid var(--ink);
  border-radius: 18px;
  min-height: 240px;
  box-shadow: 6px 6px 0 0 var(--ink);
  overflow: hidden;
}
.service__art::before {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(circle at 1px 1px, color-mix(in oklab, var(--ink) 22%, transparent) 1px, transparent 0);
  background-size: 14px 14px;
  opacity: .5;
}
.service__art img {
  position: relative; z-index: 1;
  max-height: 260px; width: auto;
  filter: drop-shadow(0 20px 30px rgba(0,0,0,.22));
}
.service__tag {
  position: absolute; top: 10px; right: 10px;
  background: var(--ink); color: var(--mustard);
  padding: 5px 8px; border-radius: 6px;
  z-index: 2;
}

/* ============================================================
   SLIDE 8 — WHY
   ============================================================ */
.slide--why { background: var(--paper); }
.why__title {
  font-size: clamp(44px, 11vw, 96px);
  line-height: .94; letter-spacing: -.04em; font-weight: 700;
  margin: 6px 0 26px;
}
.why__title em { color: var(--oxblood); }
.why__list { list-style: none; padding: 0; margin: 0 0 28px; display: flex; flex-direction: column; gap: 18px; }
.why__row {
  display: grid; grid-template-columns: 40px 1fr; gap: 14px;
  padding: 16px 0; border-top: 1px solid color-mix(in oklab, var(--ink) 18%, transparent);
}
.why__row:last-child { border-bottom: 1px solid color-mix(in oklab, var(--ink) 18%, transparent); }
.why__num { color: var(--mustard-d); background: var(--ink); color: var(--mustard); padding: 4px 6px; border-radius: 4px; height: fit-content; text-align: center; }
.why__row h3 { font-size: 22px; margin: 0 0 4px; letter-spacing: -.02em; font-weight: 600; }
.why__row p  { margin: 0; color: color-mix(in oklab, var(--ink) 78%, transparent); line-height: 1.5; font-size: 15px; }

.why__badge { display: flex; gap: 12px; align-items: center; }
.why__badge img { width: 84px; height: auto; }
.why__badge p { margin: 0; color: color-mix(in oklab, var(--ink) 70%, transparent); }

/* ============================================================
   SLIDE 9 — CTA
   ============================================================ */
.slide--cta {
  background:
    radial-gradient(120% 80% at 0% 100%, color-mix(in oklab, var(--mustard) 22%, transparent) 0%, transparent 50%),
    radial-gradient(80% 60% at 100% 0%, color-mix(in oklab, var(--oxblood) 35%, transparent) 0%, transparent 55%),
    var(--ink);
  color: var(--cream);
}
.slide--cta::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(color-mix(in oklab, var(--cream) 5%, transparent) 1px, transparent 1px),
    linear-gradient(90deg, color-mix(in oklab, var(--cream) 5%, transparent) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: radial-gradient(60% 60% at 50% 50%, #000, transparent 80%);
}
.cta { position: relative; z-index: 2; flex: 1 1 auto; display: flex; flex-direction: column; justify-content: center; gap: 22px; max-width: 600px; }
.cta__eyebrow { color: var(--mustard); margin: 0; }
.cta__title {
  font-size: clamp(54px, 16vw, 140px);
  line-height: .9; letter-spacing: -.05em; font-weight: 700;
  margin: 0;
}
.cta__title em { color: var(--mustard); }
.cta__body { font-size: clamp(16px, 4vw, 19px); line-height: 1.5; margin: 0; max-width: 42ch; color: color-mix(in oklab, var(--cream) 85%, transparent); }
.cta__direct { display: inline-flex; gap: 10px; align-items: center; color: color-mix(in oklab, var(--cream) 70%, transparent); flex-wrap: wrap; }
.cta__direct a:hover { color: var(--mustard); }
.cta__direct .sep { opacity: .4; }

.foot {
  position: relative; z-index: 2;
  display: flex; justify-content: space-between; gap: 12px;
  margin-top: 24px;
  padding-top: 14px;
  border-top: 1px solid color-mix(in oklab, var(--cream) 18%, transparent);
  color: color-mix(in oklab, var(--cream) 60%, transparent);
}

/* ============================================================
   LEAD SHEET
   ============================================================ */
.sheet { position: fixed; inset: 0; z-index: 200; display: flex; align-items: flex-end; justify-content: center; }
.sheet[hidden] { display: none; }
.sheet__scrim {
  position: absolute; inset: 0;
  background: color-mix(in oklab, var(--ink) 70%, transparent);
  animation: scrimIn .25s var(--ease) both;
}
@keyframes scrimIn { from { opacity: 0; } to { opacity: 1; } }

.sheet__panel {
  position: relative;
  width: 100%; max-width: 560px;
  background: var(--cream);
  border-top-left-radius: 22px; border-top-right-radius: 22px;
  max-height: 92dvh; overflow-y: auto;
  box-shadow: 0 -10px 40px -10px rgba(0,0,0,.4);
  animation: sheetUp .35s var(--ease-out) both;
  padding-bottom: env(safe-area-inset-bottom, 0);
}
@keyframes sheetUp { from { transform: translateY(20px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.sheet__handle { width: 44px; height: 4px; background: color-mix(in oklab, var(--ink) 25%, transparent); border-radius: 2px; margin: 10px auto 0; }
.sheet__close {
  position: absolute; top: 12px; right: 14px;
  width: 36px; height: 36px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 999px; background: color-mix(in oklab, var(--ink) 6%, transparent); color: var(--ink);
  transition: background .2s var(--ease);
}
.sheet__close:hover { background: var(--ink); color: var(--cream); }

.sheet__inner { padding: 18px 22px 28px; }
.sheet__eyebrow { color: var(--oxblood); margin: 8px 0; }
.sheet__title { font-size: clamp(30px, 7vw, 44px); line-height: 1; letter-spacing: -.035em; margin: 0 0 10px; font-weight: 700; }
.sheet__title em { color: var(--oxblood); }
.sheet__body { margin: 0 0 18px; color: color-mix(in oklab, var(--ink) 80%, transparent); line-height: 1.5; }

/* form */
.form { display: grid; grid-template-columns: 1fr; gap: 12px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field--row { grid-column: span 1; }
.field__label { color: color-mix(in oklab, var(--ink) 65%, transparent); }
.field input, .field select, .field textarea {
  font: inherit;
  padding: 12px 14px;
  background: var(--paper);
  border: 1.5px solid color-mix(in oklab, var(--ink) 18%, transparent);
  border-radius: 10px;
  color: var(--ink);
  transition: border-color .15s var(--ease), box-shadow .15s var(--ease), background .15s var(--ease);
  font-size: 16px; /* prevent iOS zoom */
  width: 100%;
}
.field textarea { resize: vertical; min-height: 84px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--oxblood);
  box-shadow: 0 0 0 4px color-mix(in oklab, var(--oxblood) 18%, transparent);
  background: var(--cream);
}
.field input[aria-invalid="true"], .field select[aria-invalid="true"] {
  border-color: var(--oxblood);
  box-shadow: 0 0 0 4px color-mix(in oklab, var(--oxblood) 14%, transparent);
}
.hp { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }

.form__actions { margin-top: 6px; display: flex; flex-direction: column; gap: 10px; }
.form__fineprint { color: color-mix(in oklab, var(--ink) 55%, transparent); text-align: center; margin: 0; }

.btn[disabled] { opacity: .65; cursor: progress; }

.sheet__success { text-align: center; padding: 20px 8px 8px; display: flex; flex-direction: column; align-items: center; gap: 12px; }
.sheet__success .success-mark { color: var(--oxblood); animation: pop .5s var(--ease-out) both; }
@keyframes pop { from { transform: scale(.6); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.sheet__success h3 { font-size: clamp(28px, 7vw, 40px); margin: 0; line-height: 1; letter-spacing: -.03em; font-weight: 700; }
.sheet__success h3 em { color: var(--oxblood); }
.sheet__success p { margin: 0 0 12px; color: color-mix(in oklab, var(--ink) 75%, transparent); max-width: 36ch; }

/* ============================================================
   DESKTOP
   ============================================================ */
@media (min-width: 760px) {
  :root { --chrome-top: 64px; --chrome-bot: 72px; }
  .chrome { padding: 0 28px; }
  .slide { padding: calc(var(--chrome-top) + 36px) 56px calc(var(--chrome-bot) + 40px); }

  .hero { gap: 40px; }
  .hero__bg-tag { display: block; }

  .service {
    grid-template-columns: 1.1fr 1fr;
    gap: 40px;
    align-items: center;
  }
  .service--reverse .service__art { order: -1; }
  .service__art { min-height: 380px; padding: 40px; }
  .service__art img { max-height: 360px; }

  .manifesto { display: grid; grid-template-columns: 1.2fr 1fr; gap: 40px; align-items: end; }
  .manifesto__photo { margin-top: 0; }

  .why { display: grid; grid-template-columns: 1.1fr 1fr; gap: 40px; }
  .why__title { grid-column: 1 / -1; }
  .why__list { gap: 6px; }
  .why__row { grid-template-columns: 50px 1fr; padding: 22px 0; }
  .why__row h3 { font-size: 26px; }

  .cta { gap: 28px; }
  .form { grid-template-columns: 1fr 1fr; }
  .form > .field:nth-child(1),
  .form > .field:nth-child(7),
  .form > .form__actions { grid-column: 1 / -1; }
  .sheet { align-items: center; padding: 24px; }
  .sheet__panel { border-radius: 22px; max-height: 86dvh; }
}

@media (min-width: 1100px) {
  .hero__title { font-size: clamp(140px, 16vw, 280px); }
  .service__title { font-size: clamp(80px, 8.5vw, 140px); }
  .cta__title { font-size: clamp(80px, 10vw, 160px); }
  .manifesto__lead { font-size: clamp(60px, 7vw, 110px); }
  .why__title { font-size: clamp(60px, 7vw, 112px); }
}

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