/* ============ CREPES PARTY EXPRESS — ink & cream crêperie ============ */
:root {
  --cream: #FFF6E8;
  --cream-deep: #FBEAD1;
  --batter: #F2C879;
  --batter-deep: #DFA24E;
  --ink: #211A16;
  --ink-soft: #4A3C33;
  --red: #D93A3F;
  --red-deep: #B22228;
  --nutella: #5A3825;
  --wa: #22B65B;
  --wa-deep: #179146;
  --paper-shadow: 0 10px 30px rgba(33, 26, 22, .12);
  --radius: 22px;
  --font-display: "Caprasimo", serif;
  --font-script: "Pacifico", cursive;
  --font-body: "Nunito", system-ui, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  /* subtle paper grain via layered gradients */
  background-image:
    radial-gradient(circle at 15% 20%, rgba(223, 162, 78, .08) 0 2px, transparent 3px),
    radial-gradient(circle at 80% 60%, rgba(217, 58, 63, .05) 0 2px, transparent 3px),
    radial-gradient(circle at 45% 85%, rgba(90, 56, 37, .05) 0 2px, transparent 3px);
  background-size: 340px 340px, 460px 460px, 280px 280px;
  overflow-x: clip;
}
img { max-width: 100%; display: block; }
a { color: inherit; }

/* ---------- promo ribbon ---------- */
.promo-ribbon {
  background: var(--ink);
  color: var(--cream);
  text-align: center;
  padding: .55rem 2.6rem .55rem 1rem;
  font-size: .92rem;
  position: relative;
  z-index: 60;
}
.promo-ribbon strong { color: var(--batter); }
.ribbon-close {
  position: absolute; right: .7rem; top: 50%; translate: 0 -50%;
  background: none; border: 0; color: var(--cream);
  font-size: 1.3rem; cursor: pointer; line-height: 1;
}

/* ---------- nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; gap: 1.2rem;
  padding: .6rem clamp(1rem, 4vw, 2.5rem);
  background: color-mix(in srgb, var(--cream) 88%, white);
  backdrop-filter: blur(10px);
  border-bottom: 3px solid var(--ink);
}
.nav-brand { display: flex; align-items: center; gap: .6rem; text-decoration: none; }
.nav-brand img { width: 52px; height: 52px; object-fit: contain; }
.nav-wordmark { font-family: var(--font-display); font-size: 1.15rem; letter-spacing: .3px; }
.nav-wordmark em { font-family: var(--font-script); font-style: normal; color: var(--red); font-size: .95em; }
.nav-links { display: flex; gap: 1.4rem; margin-left: auto; }
.nav-links a {
  text-decoration: none; font-weight: 800; font-size: .95rem;
  padding: .3rem 0; position: relative;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: -2px;
  height: 3px; background: var(--red); border-radius: 3px;
  transition: right .25s ease;
}
.nav-links a:hover::after { right: 0; }
.nav-cta { white-space: nowrap; }
.nav-burger { display: none; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--font-body); font-weight: 900; font-size: 1rem;
  padding: .78rem 1.5rem; border-radius: 999px;
  text-decoration: none; cursor: pointer; border: 3px solid var(--ink);
  transition: transform .15s ease, box-shadow .15s ease;
  box-shadow: 4px 4px 0 var(--ink);
}
.btn:hover { transform: translate(-2px, -2px); box-shadow: 7px 7px 0 var(--ink); }
.btn:active { transform: translate(2px, 2px); box-shadow: 1px 1px 0 var(--ink); }
.btn-red { background: var(--red); color: #fff; }
.btn-wa { background: var(--wa); color: #fff; }
.btn-ghost { background: transparent; color: var(--ink); }

/* ---------- hero ---------- */
.hero { position: relative; padding: clamp(2rem, 6vw, 4.5rem) clamp(1rem, 5vw, 3rem) 0; }
.hero-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1.15fr 1fr; gap: 2rem; align-items: center;
}
.hero-eyebrow {
  font-weight: 800; letter-spacing: .5px; font-size: .95rem;
  color: var(--ink-soft); margin-bottom: 1rem;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6.5vw, 5rem);
  line-height: .98; letter-spacing: -1px;
}
.stroke-word {
  color: transparent;
  -webkit-text-stroke: 3px var(--red);
  paint-order: stroke fill;
}
.stroke-word-dark { color: transparent; -webkit-text-stroke: 3px var(--ink); }
.script-word { font-family: var(--font-script); color: var(--red); font-weight: 400; }
.hero-sub {
  margin: 1.3rem 0 1.6rem; font-size: 1.15rem; line-height: 1.6;
  max-width: 34rem; color: var(--ink-soft);
}
.hero-ctas { display: flex; gap: .9rem; flex-wrap: wrap; }
.hero-badges { display: flex; gap: .6rem; flex-wrap: wrap; margin-top: 1.5rem; }
.hero-badges span {
  background: #fff; border: 2px solid var(--ink); border-radius: 999px;
  padding: .35rem .85rem; font-size: .85rem; font-weight: 800;
  box-shadow: 2px 2px 0 var(--ink);
}

/* griddle toy */
.hero-griddle { position: relative; text-align: center; padding: 1rem 0 2rem; }
.griddle-hint {
  font-family: var(--font-script); color: var(--nutella);
  font-size: 1.15rem; rotate: -3deg; margin-bottom: .4rem;
}
.griddle { position: relative; width: min(340px, 80vw); margin: 0 auto; aspect-ratio: 1; }
.griddle-plate {
  position: absolute; inset: 0; border-radius: 50%;
  background: radial-gradient(circle at 42% 38%, #4C4441, #2A2422 62%, #171310);
  border: 10px solid #3B3330;
  box-shadow: inset 0 6px 18px rgba(0,0,0,.55), 0 18px 30px rgba(33,26,22,.35);
}
.crepe {
  position: absolute; inset: 13%;
  cursor: pointer; perspective: 700px; border-radius: 50%;
  transform-style: preserve-3d;
  transition: transform .6s cubic-bezier(.3, 1.6, .6, 1);
}
.crepe.flipping { animation: crepe-jump .62s ease; }
@keyframes crepe-jump {
  0%   { translate: 0 0; }
  40%  { translate: 0 -26%; }
  100% { translate: 0 0; }
}
.crepe-face {
  position: absolute; inset: 0; border-radius: 50%;
  backface-visibility: hidden;
  transition: transform .62s cubic-bezier(.45, 1.4, .6, 1);
}
.crepe-front {
  background: radial-gradient(circle at 45% 40%, #F7DFA8, #EFC272 62%, #DFA24E);
  box-shadow: inset 0 -4px 12px rgba(160, 105, 40, .4);
}
.crepe-back {
  transform: rotateX(180deg);
  background:
    radial-gradient(circle at 30% 30%, rgba(140, 84, 28, .55) 0 12%, transparent 16%),
    radial-gradient(circle at 68% 42%, rgba(140, 84, 28, .5) 0 9%, transparent 13%),
    radial-gradient(circle at 45% 72%, rgba(140, 84, 28, .5) 0 11%, transparent 15%),
    radial-gradient(circle at 45% 40%, #EFC272, #DFA24E 70%, #C98B3B);
}
.crepe.is-flipped .crepe-front { transform: rotateX(180deg); }
.crepe.is-flipped .crepe-back { transform: rotateX(360deg); }
.flip-counter { font-weight: 900; font-size: .95rem; color: var(--ink-soft); margin-top: .8rem; }

.steam {
  position: absolute; top: 6%; width: 10px; height: 42px;
  border-radius: 8px; background: rgba(255,255,255,.55);
  filter: blur(4px); opacity: 0;
  animation: steam-rise 2.6s ease-in-out infinite;
}
.steam-1 { left: 38%; animation-delay: 0s; }
.steam-2 { left: 50%; animation-delay: .9s; }
.steam-3 { left: 62%; animation-delay: 1.7s; }
@keyframes steam-rise {
  0% { transform: translateY(10px) scaleY(.6); opacity: 0; }
  35% { opacity: .8; }
  100% { transform: translateY(-46px) scaleY(1.25) translateX(6px); opacity: 0; }
}

.hero-mascot {
  position: absolute; width: clamp(90px, 11vw, 140px);
  right: -1%; bottom: 4%; rotate: 8deg;
  filter: drop-shadow(4px 6px 0 rgba(33,26,22,.15));
}
.sticker { position: absolute; font-size: 2rem; }
.sticker-berry { top: 8%; left: 4%; rotate: -14deg; }
.sticker-banana { top: 2%; right: 12%; rotate: 18deg; }
.sticker-choc { bottom: 12%; left: 10%; rotate: -8deg; }
.float-slow { animation: floaty 5.5s ease-in-out infinite; }
.float-mid  { animation: floaty 4.2s ease-in-out .6s infinite; }
.float-fast { animation: floaty 3.4s ease-in-out .2s infinite; }
@keyframes floaty { 50% { translate: 0 -12px; } }

.drizzle-divider { display: block; width: 100%; height: 60px; fill: var(--ink); margin-top: 1rem; }

/* ---------- sections ---------- */
.section { padding: clamp(3rem, 7vw, 5.5rem) clamp(1rem, 5vw, 3rem); }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 2.6rem; }
.kicker {
  font-family: var(--font-script); color: var(--red);
  font-size: 1.25rem; margin-bottom: .3rem;
}
.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.6vw, 3.2rem); line-height: 1.05;
}
.section-sub { margin-top: .9rem; color: var(--ink-soft); font-size: 1.08rem; }

[data-reveal] { opacity: 0; translate: 0 26px; transition: opacity .6s ease, translate .6s ease; }
[data-reveal].revealed { opacity: 1; translate: 0 0; }

/* ---------- how ---------- */
.how { background: var(--ink); color: var(--cream); }
.how .section-head h2 { color: var(--cream); }
.how .kicker { color: var(--batter); }
.how-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem;
  max-width: 1150px; margin: 0 auto;
}
.how-card {
  background: var(--cream); color: var(--ink);
  border-radius: var(--radius); padding: 1.2rem;
  border: 3px solid var(--ink); box-shadow: 6px 6px 0 var(--red);
  position: relative; transition: rotate .2s ease;
}
.how-card:nth-child(odd) { rotate: -1deg; }
.how-card:nth-child(even) { rotate: 1.2deg; }
.how-card:hover { rotate: 0deg; }
.how-num {
  position: absolute; top: -18px; left: -12px;
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--red); color: #fff;
  font-family: var(--font-display); font-size: 1.5rem;
  display: grid; place-items: center;
  border: 3px solid var(--ink); z-index: 2;
}
.how-photo { border-radius: 14px; overflow: hidden; border: 2px solid var(--ink); aspect-ratio: 4/3; }
.how-photo img { width: 100%; height: 100%; object-fit: cover; transition: scale .4s ease; }
.how-card:hover .how-photo img { scale: 1.06; }
.how-card h3 { font-family: var(--font-display); margin: .9rem 0 .35rem; font-size: 1.35rem; }
.how-card p { color: var(--ink-soft); line-height: 1.55; font-size: .98rem; }

/* ---------- menus ---------- */
.menu-tabs { display: flex; justify-content: center; gap: .7rem; flex-wrap: wrap; margin-bottom: 2rem; }
.menu-tab {
  font-family: var(--font-body); font-weight: 900; font-size: 1.02rem;
  padding: .65rem 1.4rem; border-radius: 999px; cursor: pointer;
  background: #fff; border: 3px solid var(--ink); box-shadow: 3px 3px 0 var(--ink);
  transition: transform .15s ease, background .15s ease;
}
.menu-tab:hover { transform: translateY(-2px); }
.menu-tab.is-active { background: var(--red); color: #fff; }
.menu-panel {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.1rem; max-width: 1150px; margin: 0 auto;
}
.dish-card {
  background: #fff; border: 2.5px solid var(--ink); border-radius: 18px;
  padding: 1.05rem 1.1rem .95rem; position: relative;
  box-shadow: var(--paper-shadow); cursor: default;
  transition: transform .18s ease, box-shadow .18s ease;
  animation: dish-in .4s ease backwards;
}
.dish-card:hover { transform: translateY(-4px) rotate(-.6deg); box-shadow: 0 16px 34px rgba(33,26,22,.18); }
@keyframes dish-in { from { opacity: 0; translate: 0 14px; } }
.dish-emoji { font-size: 1.6rem; }
.dish-card h4 { font-family: var(--font-display); font-size: 1.12rem; margin: .35rem 0 .3rem; }
.dish-card p { font-size: .9rem; color: var(--ink-soft); line-height: 1.45; }
.dish-tag {
  position: absolute; top: .7rem; right: .7rem;
  font-size: .68rem; font-weight: 900; letter-spacing: .6px;
  padding: .18rem .55rem; border-radius: 999px;
  background: var(--cream-deep); border: 1.5px solid var(--ink);
  text-transform: uppercase;
}
.menu-downloads {
  display: flex; align-items: center; justify-content: center; gap: .7rem;
  flex-wrap: wrap; margin-top: 2.2rem; font-weight: 800; color: var(--ink-soft);
}
.chip-dl {
  text-decoration: none; font-weight: 900; font-size: .88rem;
  background: var(--batter); border: 2.5px solid var(--ink);
  padding: .45rem 1rem; border-radius: 999px; box-shadow: 3px 3px 0 var(--ink);
  transition: transform .15s ease;
}
.chip-dl:hover { transform: translate(-1px, -2px); }

/* ---------- food strip ---------- */
.food-strip {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: .5rem;
  padding: 0 .5rem;
}
.food-strip figure { position: relative; overflow: hidden; aspect-ratio: 1; border-radius: 14px; }
.food-strip img { width: 100%; height: 100%; object-fit: cover; transition: scale .5s ease; }
.food-strip figure:hover img { scale: 1.08; }
.food-strip figcaption {
  position: absolute; left: 50%; bottom: 8px; translate: -50% 0;
  font-family: var(--font-script); color: #fff; font-size: 1.05rem;
  text-shadow: 0 2px 8px rgba(0,0,0,.7); white-space: nowrap;
}

/* ---------- builder ---------- */
.builder { background: var(--cream-deep); }
.builder-stage {
  display: grid; grid-template-columns: minmax(280px, 420px) 1fr;
  gap: clamp(1.5rem, 4vw, 3.5rem); max-width: 1100px; margin: 0 auto;
  align-items: start;
}
.builder-crepe-zone { text-align: center; position: sticky; top: 90px; }
.builder-crepe {
  width: 100%; max-width: 400px;
  filter: drop-shadow(0 14px 24px rgba(90, 56, 37, .28));
}
.topping { transition: opacity .25s ease; animation: topping-drop .45s cubic-bezier(.3, 1.5, .6, 1) backwards; }
@keyframes topping-drop { from { opacity: 0; transform: translateY(-30px) scale(.4); } }
.builder-status {
  font-family: var(--font-script); font-size: 1.2rem; color: var(--nutella);
  margin-top: .8rem; min-height: 2.2em;
}
.builder-mode { display: flex; gap: .6rem; margin-bottom: 1.1rem; }
.mode-btn {
  flex: 1; padding: .6rem 1rem; font-weight: 900; font-size: 1rem;
  border: 3px solid var(--ink); border-radius: 999px; cursor: pointer;
  background: #fff; box-shadow: 3px 3px 0 var(--ink);
}
.mode-btn.is-active { background: var(--ink); color: var(--cream); }
.ingredient-grid { display: flex; flex-wrap: wrap; gap: .55rem; }
.ing-chip {
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .5rem .95rem; border-radius: 999px; cursor: pointer;
  background: #fff; border: 2.5px solid var(--ink);
  font-weight: 800; font-size: .95rem; user-select: none;
  transition: transform .12s ease, background .15s ease;
}
.ing-chip:hover { transform: translateY(-2px) rotate(-1deg); }
.ing-chip.is-on { background: var(--batter); box-shadow: 2px 2px 0 var(--ink); }
.builder-result {
  margin-top: 1.4rem; background: #fff; border: 3px dashed var(--red);
  border-radius: 18px; padding: 1rem 1.2rem;
  animation: dish-in .35s ease;
}
.result-label { font-size: .85rem; font-weight: 800; letter-spacing: .4px; color: var(--ink-soft); text-transform: uppercase; }
.result-name { font-family: var(--font-display); color: var(--red-deep); font-size: 1.5rem; margin: .2rem 0; }
.result-desc { color: var(--ink-soft); font-size: .95rem; }
.builder-actions { display: flex; gap: .8rem; flex-wrap: wrap; margin-top: 1.2rem; }

/* ---------- packages ---------- */
.pkg-calc {
  max-width: 640px; margin: 0 auto 3rem; text-align: center;
  background: #fff; border: 3px solid var(--ink); border-radius: var(--radius);
  padding: 1.6rem 1.8rem; box-shadow: 7px 7px 0 var(--batter);
}
.pkg-slider-row { display: flex; align-items: center; gap: .9rem; }
.pkg-slider-icon { font-size: 1.5rem; }
input[type="range"] {
  flex: 1; appearance: none; height: 12px; border-radius: 8px;
  background: linear-gradient(90deg, var(--batter), var(--red));
  border: 2px solid var(--ink); cursor: pointer;
}
input[type="range"]::-webkit-slider-thumb {
  appearance: none; width: 34px; height: 34px; border-radius: 50%;
  background: radial-gradient(circle at 42% 38%, #F7DFA8, #DFA24E);
  border: 3px solid var(--ink); box-shadow: 2px 3px 0 rgba(33,26,22,.4);
}
input[type="range"]::-moz-range-thumb {
  width: 30px; height: 30px; border-radius: 50%;
  background: radial-gradient(circle at 42% 38%, #F7DFA8, #DFA24E);
  border: 3px solid var(--ink);
}
.pkg-guest-readout { margin: .7rem 0 1rem; font-size: 1.2rem; font-weight: 700; }
.pkg-guest-readout strong { font-family: var(--font-display); font-size: 1.9rem; color: var(--red); }
.pkg-result-card h3 { font-family: var(--font-display); font-size: 1.5rem; color: var(--red-deep); }
.pkg-result-card p { color: var(--ink-soft); margin-top: .3rem; font-weight: 600; }
.pkg-result-stats { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; margin-top: .9rem; }
.pkg-result-stats span {
  background: var(--cream-deep); border: 2px solid var(--ink); border-radius: 12px;
  padding: .45rem .9rem; font-weight: 900; font-size: .95rem;
}
.pkg-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem;
  max-width: 1150px; margin: 0 auto;
}
.pkg-card {
  background: #fff; border: 3px solid var(--ink); border-radius: var(--radius);
  padding: 1.5rem 1.5rem 1.3rem; box-shadow: var(--paper-shadow); position: relative;
}
.pkg-card h3 { font-family: var(--font-display); font-size: 1.35rem; margin-bottom: .9rem; }
.pkg-card ul { list-style: none; }
.pkg-card li { padding: .42rem 0; border-bottom: 1.5px dashed var(--cream-deep); font-size: .97rem; }
.pkg-card li:last-child { border-bottom: 0; }
.pkg-note { color: var(--ink-soft); font-size: .85rem !important; font-style: italic; }
.pkg-card-kids { background: var(--red); color: #fff; box-shadow: 7px 7px 0 var(--ink); rotate: 1deg; }
.pkg-card-kids li { border-bottom-color: rgba(255,255,255,.25); }
.pkg-flag {
  position: absolute; top: -14px; right: 16px;
  background: var(--batter); color: var(--ink);
  font-family: var(--font-script); font-size: 1rem;
  padding: .2rem .9rem; border-radius: 999px; border: 2.5px solid var(--ink);
  rotate: 3deg;
}
.pkg-kids-inc { font-size: .88rem; line-height: 1.5; margin-bottom: .8rem; opacity: .95; }
.price { font-size: 1.15rem; }
.pkg-card-kids .price { color: var(--batter); }
.pkg-combos span {
  display: inline-grid; place-items: center; width: 28px; height: 28px;
  background: var(--ink); color: var(--cream); border-radius: 50%;
  font-weight: 900; font-size: .85rem; margin-right: .55rem;
}

/* ---------- gallery scrapbook ---------- */
.gallery { background: var(--ink); color: var(--cream); }
.gallery .section-head h2 { color: var(--cream); }
.gallery .kicker { color: var(--batter); }
.gallery .section-sub { color: #C9BBAE; }
.scrapbook {
  max-width: 1150px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.8rem 1.4rem; padding-top: .5rem;
}
.polaroid {
  background: #FDF9F0; padding: .55rem .55rem 2.4rem; border-radius: 4px;
  box-shadow: 0 12px 26px rgba(0,0,0,.45);
  cursor: zoom-in; position: relative;
  transition: transform .25s ease, box-shadow .25s ease; border: 0;
}
.polaroid:hover { transform: scale(1.05) rotate(0deg) !important; z-index: 3; box-shadow: 0 20px 44px rgba(0,0,0,.6); }
.polaroid img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.polaroid figcaption {
  position: absolute; left: 0; right: 0; bottom: .5rem; text-align: center;
  font-family: var(--font-script); color: var(--ink-soft); font-size: .98rem;
}
.polaroid .tape {
  position: absolute; top: -10px; left: 50%; translate: -50% 0; rotate: -4deg;
  width: 86px; height: 24px; background: rgba(242, 200, 121, .85);
  box-shadow: 0 2px 5px rgba(0,0,0,.25);
}

/* ---------- story ---------- */
.story-grid {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: center;
}
.story-copy h2 { font-family: var(--font-display); font-size: clamp(1.9rem, 4vw, 2.8rem); margin-bottom: 1.1rem; }
.story-copy p { line-height: 1.7; color: var(--ink-soft); margin-bottom: 1rem; font-size: 1.05rem; }
.story-photo { position: relative; rotate: 2deg; }
.story-photo img {
  border-radius: var(--radius); border: 3px solid var(--ink);
  box-shadow: 10px 10px 0 var(--batter);
}
.story-caption {
  font-family: var(--font-script); text-align: center; margin-top: 1rem;
  color: var(--nutella); font-size: 1.15rem; rotate: -2deg;
}
.partners { max-width: 1100px; margin: 3.5rem auto 0; text-align: center; }
.partners-label { font-family: var(--font-script); color: var(--red); font-size: 1.2rem; margin-bottom: 1.1rem; }
.partners-row { display: flex; justify-content: center; gap: 2rem; flex-wrap: wrap; }
.partners-row img {
  width: 110px; height: 110px; object-fit: cover; border-radius: 50%;
  border: 3px solid var(--ink); box-shadow: 4px 4px 0 var(--batter);
  transition: transform .2s ease; background: #fff;
}
.partners-row a:hover img { transform: translateY(-4px) rotate(3deg); }

/* ---------- contact ---------- */
.contact { background: var(--cream-deep); }
.contact-grid {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1.3fr 1fr; gap: 2rem; align-items: start;
}
.quote-form {
  background: #fff; border: 3px solid var(--ink); border-radius: var(--radius);
  padding: 1.8rem; box-shadow: 8px 8px 0 var(--red);
  display: flex; flex-direction: column; gap: 1rem;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.quote-form label { font-weight: 800; font-size: .92rem; display: flex; flex-direction: column; gap: .35rem; }
.quote-form .opt { font-weight: 600; color: var(--ink-soft); }
.quote-form input, .quote-form select, .quote-form textarea {
  font-family: var(--font-body); font-size: 1rem; padding: .65rem .8rem;
  border: 2.5px solid var(--ink); border-radius: 12px; background: var(--cream);
  outline-color: var(--red);
}
.form-actions { display: flex; gap: .8rem; flex-wrap: wrap; margin-top: .3rem; }
.form-fine { font-size: .82rem; color: var(--ink-soft); }
.contact-cards { display: flex; flex-direction: column; gap: .9rem; }
.c-card {
  display: flex; gap: .9rem; align-items: center; text-decoration: none;
  background: #fff; border: 3px solid var(--ink); border-radius: 16px;
  padding: .95rem 1.1rem; box-shadow: 4px 4px 0 var(--ink);
  transition: transform .15s ease; line-height: 1.35; font-size: .95rem;
}
.c-card:not(.c-card-static):hover { transform: translate(-2px, -3px); }
.c-icon { font-size: 1.6rem; }

/* ---------- footer ---------- */
.footer {
  background: var(--ink); color: var(--cream);
  text-align: center; padding: 3rem 1.5rem 2.2rem;
}
.footer-logo { width: 92px; margin: 0 auto .6rem; filter: drop-shadow(0 0 0 transparent); }
.footer-word { font-family: var(--font-display); font-size: 1.5rem; }
.footer-word em { font-family: var(--font-script); font-style: normal; color: var(--red); }
.footer-tag { font-family: var(--font-script); color: var(--batter); margin: .3rem 0 1.2rem; }
.footer-social { display: flex; justify-content: center; gap: 1.4rem; margin-bottom: 1.4rem; }
.footer-social a { color: var(--cream); font-weight: 800; text-decoration: none; border-bottom: 2px solid var(--red); }
.footer-fine { font-size: .78rem; color: #A6988B; max-width: 560px; margin: 0 auto; line-height: 1.6; }

/* ---------- lightbox ---------- */
[hidden] { display: none !important; }
.lightbox {
  position: fixed; inset: 0; z-index: 100;
  background: rgba(20, 15, 12, .92);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 2rem;
}
.lightbox img { max-width: min(92vw, 900px); max-height: 78vh; border-radius: 10px; object-fit: contain; }
.lightbox p { color: var(--cream); font-family: var(--font-script); font-size: 1.3rem; margin-top: 1rem; }
.lb-close {
  position: absolute; top: 1rem; right: 1.4rem; background: none; border: 0;
  color: #fff; font-size: 2.6rem; cursor: pointer; line-height: 1;
}

/* ---------- responsive ---------- */
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-griddle { order: 2; }
  .how-grid, .pkg-grid { grid-template-columns: 1fr 1fr; }
  .builder-stage { grid-template-columns: 1fr; }
  .builder-crepe-zone { position: static; }
  .story-grid, .contact-grid { grid-template-columns: 1fr; }
  .food-strip { grid-template-columns: repeat(3, 1fr); }
  .food-strip figure:nth-child(n+4) { display: none; }
}
@media (max-width: 700px) {
  .nav { flex-wrap: wrap; }
  .nav-links {
    display: none; width: 100%; flex-direction: column; gap: .2rem; padding: .6rem 0 .4rem;
  }
  .nav-links.is-open { display: flex; }
  .nav-links a { padding: .55rem .2rem; border-bottom: 1.5px dashed var(--cream-deep); }
  .nav-cta { margin-left: auto; font-size: .85rem; padding: .55rem 1rem; }
  .nav-burger {
    display: flex; flex-direction: column; gap: 5px; background: none;
    border: 0; cursor: pointer; padding: .4rem;
  }
  .nav-burger span { width: 26px; height: 3.5px; background: var(--ink); border-radius: 3px; }
  .how-grid, .pkg-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-title { font-size: 2.7rem; }
  .hero-mascot { width: 84px; right: 0; }
  .scrapbook { grid-template-columns: repeat(2, 1fr); gap: 1.4rem .9rem; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  html { scroll-behavior: auto; }
}
