/* Wobblebun Bakery — sample site by Lampwright. Playful colour-pop / sticker language. */
@font-face {
  font-family: "Fredoka";
  src: url(fonts/fredoka-latin-wght-normal.woff2) format("woff2");
  font-weight: 300 700;
  font-display: swap;
}
@font-face {
  font-family: "Nunito";
  src: url(fonts/nunito-latin-wght-normal.woff2) format("woff2");
  font-weight: 200 1000;
  font-display: swap;
}

:root {
  --cream: #fff8ef;
  --ink: #2b1d3a;
  --ink-soft: #57466b;
  --lilac: #cdb8ff;
  --lilac-deep: #8e6bf0;
  --peach: #ffc8a8;
  --peach-deep: #ff8a5c;
  --mint: #bff0d9;
  --mint-deep: #3fbf8c;
  --butter: #ffec9c;
  --butter-deep: #ffd84d;
  --pink: #ff8fb8;
  --pink-deep: #ff4f8e;
  --sky: #a9dcff;
  --radius: 28px;
  --shadow: 5px 6px 0 var(--ink);
  --display: "Fredoka", "Baloo 2", system-ui, sans-serif;
  --body: "Nunito", system-ui, -apple-system, "Segoe UI", sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
h1, h2, h3 { font-family: var(--display); line-height: 1.05; margin: 0; letter-spacing: -0.01em; }
h2 { font-size: clamp(2.1rem, 5vw, 3.6rem); font-weight: 650; }
h3 { font-size: 1.35rem; font-weight: 600; }
p { margin: 0; }
.wrap { width: min(1180px, 100% - 40px); margin-inline: auto; }
.vh { position: absolute; width: 1px; height: 1px; overflow: hidden; clip-path: inset(50%); white-space: nowrap; }
.defs { position: absolute; }

/* ---------- sample banner (must stay visible) ---------- */
.sample-banner {
  background: var(--ink);
  color: #fff;
  font-size: 0.9rem;
  line-height: 1.45;
  padding: 10px 20px;
  text-align: center;
}
.sample-banner strong { color: var(--butter-deep); }

/* ---------- buttons, pills, eyebrows ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--display); font-weight: 600; font-size: 1.1rem;
  padding: 14px 26px; border-radius: 999px;
  background: var(--pink-deep); color: #fff; text-decoration: none;
  border: 3px solid var(--ink); box-shadow: 4px 4px 0 var(--ink);
  transition: transform .18s cubic-bezier(.3,1.6,.5,1), box-shadow .18s;
}
.btn:hover { transform: translate(-2px, -3px) rotate(-2deg); box-shadow: 6px 7px 0 var(--ink); }
.btn:active { transform: translate(2px, 2px); box-shadow: 1px 1px 0 var(--ink); }
.btn:focus-visible, a:focus-visible { outline: 3px dashed var(--lilac-deep); outline-offset: 4px; }
.btn-ghost { background: #fff; color: var(--ink); }
.btn-white { background: #fff; color: var(--ink); }
.btn-small { padding: 9px 18px; font-size: 1rem; box-shadow: 3px 3px 0 var(--ink); }
.btn-big { font-size: 1.25rem; padding: 18px 30px; }

.eyebrow {
  display: inline-block; font-family: var(--display); font-weight: 600;
  font-size: .95rem; letter-spacing: .06em; text-transform: uppercase;
  background: var(--ink); color: var(--butter); padding: 4px 14px; border-radius: 999px;
  margin-bottom: 16px; transform: rotate(-2deg);
}
.sub { color: var(--ink-soft); font-size: 1.1rem; max-width: 52ch; margin-top: 14px; }

/* ---------- header ---------- */
.top {
  position: sticky; top: 0; z-index: 20;
  background: color-mix(in srgb, var(--cream) 88%, transparent);
  backdrop-filter: blur(10px);
  border-bottom: 3px solid var(--ink);
}
.top-row { display: flex; align-items: center; gap: 24px; padding: 12px 0; }
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; font-family: var(--display); font-weight: 700; font-size: 1.6rem; }
.brand-bun { width: 46px; height: 46px; flex: none; transition: transform .4s cubic-bezier(.3,1.8,.5,1); }
.brand:hover .brand-bun { transform: rotate(-14deg) scale(1.1); }
.nav { display: flex; gap: 6px; margin-left: auto; }
.nav a { text-decoration: none; font-weight: 700; padding: 8px 14px; border-radius: 999px; transition: background .2s; }
.nav a:hover { background: var(--butter); }

/* ---------- hero ---------- */
.hero {
  position: relative; overflow: clip;
  background: var(--lilac);
  border-bottom: 3px solid var(--ink);
  padding: clamp(40px, 7vw, 96px) 0 clamp(56px, 8vw, 110px);
}
.hero::before { /* dotted texture */
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(color-mix(in srgb, var(--ink) 14%, transparent) 1.6px, transparent 1.8px);
  background-size: 26px 26px; pointer-events: none;
}
.hero-grid { position: relative; display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(28px, 5vw, 64px); align-items: center; }
.pill {
  display: inline-flex; align-items: center; gap: 10px;
  background: #fff; border: 3px solid var(--ink); border-radius: 999px;
  padding: 6px 16px; font-weight: 800; font-size: .95rem; box-shadow: 3px 3px 0 var(--ink);
}
.pill-dot { width: 11px; height: 11px; border-radius: 50%; background: var(--mint-deep); box-shadow: 0 0 0 0 var(--mint-deep); animation: ping 2s infinite; }
@keyframes ping { 0% { box-shadow: 0 0 0 0 color-mix(in srgb, var(--mint-deep) 70%, transparent); } 100% { box-shadow: 0 0 0 12px transparent; } }

.wordmark {
  font-size: clamp(4.4rem, 13.5vw, 10.5rem);
  font-weight: 700; line-height: .86; letter-spacing: -0.035em;
  margin: 22px 0 22px; color: var(--ink);
}
.wm-line { display: block; white-space: nowrap; }
.wordmark b {
  display: inline-block; font-weight: 700;
  -webkit-text-stroke: 0;
  text-shadow: 4px 5px 0 var(--pink-deep);
  animation: bounce 2.8s cubic-bezier(.3,1.6,.5,1) infinite;
  transform-origin: 50% 100%;
}
.wm-two b { color: #fff; text-shadow: 4px 5px 0 var(--ink); }
.wordmark b:nth-child(1) { animation-delay: 0s; }
.wordmark b:nth-child(2) { animation-delay: .08s; }
.wordmark b:nth-child(3) { animation-delay: .16s; }
.wordmark b:nth-child(4) { animation-delay: .24s; }
.wordmark b:nth-child(5) { animation-delay: .32s; }
.wordmark b:nth-child(6) { animation-delay: .40s; }
.wm-two b:nth-child(1) { animation-delay: .48s; }
.wm-two b:nth-child(2) { animation-delay: .56s; }
.wm-two b:nth-child(3) { animation-delay: .64s; }
@keyframes bounce {
  0%, 60%, 100% { transform: translateY(0) scale(1, 1); }
  20% { transform: translateY(-10%) scale(.96, 1.06) rotate(-3deg); }
  35% { transform: translateY(0) scale(1.06, .94); }
  45% { transform: translateY(-3%) scale(1, 1); }
}
.wm-tag {
  display: inline-block; vertical-align: top;
  font-style: normal; font-size: .22em; letter-spacing: 0;
  background: var(--butter-deep); color: var(--ink);
  border: 3px solid var(--ink); border-radius: 14px; padding: .15em .45em;
  margin: .5em 0 0 .25em; transform: rotate(8deg); box-shadow: 3px 3px 0 var(--ink);
}
.lede { font-size: clamp(1.1rem, 1.8vw, 1.3rem); max-width: 34ch; font-weight: 600; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }
.hero-facts { list-style: none; padding: 0; margin: 34px 0 0; display: flex; flex-wrap: wrap; gap: 12px; }
.hero-facts li {
  background: var(--cream); border: 3px solid var(--ink); border-radius: 18px;
  padding: 8px 16px; display: grid; line-height: 1.2;
}
.hero-facts li:nth-child(2) { transform: rotate(2deg); background: var(--mint); }
.hero-facts li:nth-child(3) { transform: rotate(-2deg); background: var(--peach); }
.hero-facts strong { font-family: var(--display); font-size: 1.35rem; font-weight: 650; }
.hero-facts span { font-size: .88rem; font-weight: 700; color: var(--ink-soft); }

.hero-art { position: relative; padding: 20px 10px 40px; }
.blob-frame {
  margin: 0; aspect-ratio: 1 / 1.02;
  border: 4px solid var(--ink); box-shadow: 10px 12px 0 var(--ink);
  border-radius: 46% 54% 42% 58% / 52% 44% 56% 48%;
  overflow: hidden; background: var(--peach);
  transform: rotate(3deg);
  animation: morph 12s ease-in-out infinite;
}
.blob-frame img { width: 100%; height: 100%; object-fit: cover; }
@keyframes morph {
  0%, 100% { border-radius: 46% 54% 42% 58% / 52% 44% 56% 48%; }
  50% { border-radius: 56% 44% 54% 46% / 44% 56% 44% 56%; }
}
.sticker { position: absolute; z-index: 2; }
.s-burst { top: -6px; left: -8px; width: clamp(110px, 13vw, 150px); aspect-ratio: 1; animation: spin 18s linear infinite; }
.s-burst svg { width: 100%; height: 100%; }
.s-burst span {
  position: absolute; inset: 0; display: grid; place-items: center; text-align: center;
  font-family: var(--display); font-weight: 700; font-size: clamp(1rem, 1.5vw, 1.25rem); line-height: 1; transform: rotate(-12deg);
}
@keyframes spin { to { transform: rotate(360deg); } }
.s-burst span { animation: spin 18s linear infinite reverse; }
.s-price {
  right: -4px; bottom: 58px; background: #fff; border: 3px solid var(--ink);
  border-radius: 20px; padding: 10px 18px; box-shadow: var(--shadow);
  transform: rotate(-6deg); display: grid; line-height: 1.1;
  animation: floaty 5s ease-in-out infinite;
}
.s-price small { font-weight: 800; font-size: .8rem; text-transform: uppercase; letter-spacing: .05em; color: var(--ink-soft); }
.s-price strong { font-family: var(--display); font-size: 2rem; color: var(--pink-deep); }
@keyframes floaty { 0%, 100% { translate: 0 0; } 50% { translate: 0 -10px; } }
.mini-frame {
  position: absolute; left: -18px; bottom: -6px; margin: 0; width: clamp(110px, 12vw, 150px); aspect-ratio: 3/4;
  border: 4px solid var(--ink); border-radius: 22px; overflow: hidden; box-shadow: var(--shadow);
  transform: rotate(-9deg); background: var(--pink);
  animation: floaty 6s ease-in-out -2s infinite;
}
.mini-frame img { width: 100%; height: 100%; object-fit: cover; }

.doodle { position: absolute; pointer-events: none; }
.d-squiggle { width: 180px; top: 26px; right: 6%; color: var(--pink-deep); transform: rotate(-8deg); }
.d-star1 { width: 44px; top: 18%; left: 45%; color: var(--butter-deep); animation: twinkle 3s ease-in-out infinite; }
.d-star2 { width: 30px; bottom: 12%; left: 4%; color: #fff; animation: twinkle 3s ease-in-out -1.4s infinite; }
.d-sprinkles { width: 130px; bottom: 6%; right: 2%; }
@keyframes twinkle { 0%, 100% { transform: scale(1) rotate(0); } 50% { transform: scale(1.35) rotate(25deg); } }

/* ---------- ticker ---------- */
.ticker { background: var(--pink-deep); border-bottom: 3px solid var(--ink); overflow: hidden; color: #fff; }
.ticker-track { display: flex; width: max-content; gap: 26px; padding: 14px 0; animation: marquee 34s linear infinite; font-family: var(--display); font-weight: 600; font-size: 1.5rem; white-space: nowrap; }
.ticker-track i { font-style: normal; color: var(--butter-deep); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- about ---------- */
.about { padding: clamp(64px, 9vw, 120px) 0; }
.about-head { text-align: center; margin-bottom: 48px; }
.about-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.blob-card {
  border: 3px solid var(--ink); border-radius: var(--radius); padding: 30px 28px 32px;
  box-shadow: var(--shadow); transition: transform .3s cubic-bezier(.3,1.6,.5,1);
}
.blob-card:nth-child(1) { transform: rotate(-2deg); }
.blob-card:nth-child(2) { transform: rotate(1.5deg) translateY(16px); }
.blob-card:nth-child(3) { transform: rotate(-1deg); }
.blob-card:hover { transform: rotate(0) translateY(-6px); }
.blob-card h3 { font-size: 1.7rem; margin: 14px 0 10px; }
.blob-card p { font-weight: 600; color: var(--ink-soft); }
.card-ico { width: 72px; height: 72px; transition: transform .4s cubic-bezier(.3,1.8,.5,1); }
.blob-card:hover .card-ico { transform: rotate(-12deg) scale(1.1); }
.c-peach { background: var(--peach); }
.c-mint { background: var(--mint); }
.c-lilac { background: var(--lilac); }

/* ---------- today's bakes ---------- */
.today { background: var(--butter); border-block: 3px solid var(--ink); padding: clamp(64px, 9vw, 120px) 0; }
.today-head { display: grid; grid-template-columns: 1.3fr 1fr; gap: 40px; align-items: end; margin-bottom: 56px; }
.scribble { position: relative; display: inline-block; color: var(--pink-deep); }
.scribble::after {
  content: ""; position: absolute; left: -4%; right: -4%; bottom: -.12em; height: .3em;
  background: url(art/underline.svg) center / 100% 100% no-repeat;
}
.oven-board {
  background: var(--ink); color: #fff; border-radius: 24px; padding: 18px 20px 20px;
  border: 3px solid var(--ink); box-shadow: 8px 8px 0 var(--pink-deep); transform: rotate(1.5deg);
}
.ob-top { display: flex; align-items: center; gap: 6px; margin-bottom: 12px; font-family: var(--display); }
.ob-top b { margin-left: 8px; font-weight: 600; letter-spacing: .04em; }
.ob-dot { width: 11px; height: 11px; border-radius: 50%; background: var(--pink); }
.ob-dot:nth-child(2) { background: var(--butter-deep); }
.ob-dot:nth-child(3) { background: var(--mint-deep); }
.oven-board ol { list-style: none; margin: 0; padding: 0; display: grid; gap: 6px; }
.oven-board li { display: grid; grid-template-columns: 58px 1fr auto; align-items: center; gap: 10px; background: #3b2b4f; border-radius: 12px; padding: 7px 12px; font-weight: 700; }
.oven-board time { font-family: var(--display); color: var(--butter); font-weight: 600; }
.oven-board em { font-style: normal; font-size: .78rem; font-weight: 800; color: var(--ink); padding: 2px 10px; border-radius: 999px; text-transform: uppercase; letter-spacing: .04em; }
.tag-peach { background: var(--peach); } .tag-mint { background: var(--mint); } .tag-lilac { background: var(--lilac); } .tag-butter { background: var(--butter-deep); }
.oven-board li:first-child em { animation: blink 1.6s ease-in-out infinite; }
@keyframes blink { 50% { background: #fff; } }

.menu-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; align-items: start; }
.menu-col { background: #fff; border: 3px solid var(--ink); border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden; }
.menu-col h3 { display: flex; align-items: center; gap: 12px; padding: 18px 24px; border-bottom: 3px solid var(--ink); font-size: 1.6rem; }
.m-peach h3 { background: var(--peach); } .m-mint h3 { background: var(--mint); } .m-lilac h3 { background: var(--lilac); }
.m-mint { transform: translateY(22px); }
.menu-num { font-size: .95rem; background: var(--ink); color: #fff; border-radius: 999px; padding: 3px 10px; }
.menu { list-style: none; margin: 0; padding: 8px 24px 16px; }
.menu li { display: flex; justify-content: space-between; align-items: baseline; gap: 16px; padding: 13px 0; border-bottom: 2px dashed color-mix(in srgb, var(--ink) 22%, transparent); }
.menu li:last-child { border-bottom: 0; }
.dish { font-weight: 800; font-size: 1.08rem; line-height: 1.25; }
.dish small { display: block; font-weight: 600; font-size: .9rem; color: var(--ink-soft); margin-top: 3px; }
.price { font-family: var(--display); font-weight: 650; font-size: 1.25rem; background: var(--butter); border: 2px solid var(--ink); border-radius: 12px; padding: 1px 9px; white-space: nowrap; transition: transform .2s; }
.menu li:hover .price { transform: rotate(-6deg) scale(1.08); background: var(--pink); }
.menu-note { margin-top: 56px; text-align: center; font-weight: 700; }

/* ---------- gallery ---------- */
.gallery { padding: clamp(64px, 9vw, 120px) 0; overflow: clip; }
.gallery-grid { display: grid; grid-template-columns: repeat(12, 1fr); grid-auto-rows: 110px; gap: 22px; }
.g { margin: 0; position: relative; border: 4px solid var(--ink); border-radius: 30px; overflow: hidden; box-shadow: var(--shadow); transition: transform .35s cubic-bezier(.3,1.6,.5,1); }
.g img { width: 100%; height: 100%; object-fit: cover; }
.g figcaption {
  position: absolute; left: 14px; bottom: 14px; background: #fff; border: 3px solid var(--ink);
  border-radius: 999px; padding: 3px 14px; font-family: var(--display); font-weight: 600; font-size: 1rem;
  transform: rotate(-3deg);
}
.g1 { grid-column: 1 / 6; grid-row: 1 / 4; transform: rotate(-2deg); }
.g2 { grid-column: 6 / 9; grid-row: 1 / 6; transform: rotate(1.5deg); border-radius: 999px 999px 30px 30px; }
.g3 { grid-column: 9 / 13; grid-row: 1 / 3; transform: rotate(2deg); }
.g4 { grid-column: 1 / 6; grid-row: 4 / 6; transform: rotate(1deg); }
.g5 { grid-column: 9 / 13; grid-row: 3 / 6; transform: rotate(-2.5deg); }
.g:hover { transform: rotate(0) scale(1.02); }
.sticker-note { background: var(--mint); padding: 24px 26px; display: flex; flex-direction: column; justify-content: center; gap: 10px; }
.sticker-note svg { width: 40px; color: var(--butter-deep); }
.sticker-note p { font-family: var(--display); font-weight: 550; font-size: 1.5rem; line-height: 1.25; }

/* ---------- pre-order ---------- */
.preorder { background: var(--peach); border-block: 3px solid var(--ink); padding: clamp(64px, 9vw, 120px) 0; position: relative; }
.preorder-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: clamp(32px, 6vw, 80px); align-items: center; }
.po-copy h2 { max-width: 16ch; }
.steps { list-style: none; padding: 0; margin: 40px 0 0; display: grid; gap: 18px; }
.step { display: grid; grid-template-columns: 64px 1fr; gap: 18px; align-items: start; background: #fff; border: 3px solid var(--ink); border-radius: 24px; padding: 20px 22px; box-shadow: 4px 4px 0 var(--ink); }
.s-b { margin-left: clamp(0px, 3vw, 36px); }
.s-c { margin-left: clamp(0px, 6vw, 72px); }
.step-num { width: 60px; height: 60px; display: grid; place-items: center; font-family: var(--display); font-size: 2rem; font-weight: 700; border: 3px solid var(--ink); border-radius: 46% 54% 50% 50% / 55% 48% 52% 45%; }
.s-a .step-num { background: var(--butter-deep); transform: rotate(-8deg); }
.s-b .step-num { background: var(--lilac); transform: rotate(6deg); }
.s-c .step-num { background: var(--mint); transform: rotate(-4deg); }
.step h3 { font-size: 1.45rem; margin-bottom: 6px; }
.step p { font-weight: 600; color: var(--ink-soft); }
.step a { color: var(--pink-deep); font-weight: 800; text-decoration-thickness: 2px; text-underline-offset: 3px; overflow-wrap: anywhere; }

.ticket-wrap { display: grid; place-items: center; }
.ticket {
  position: relative; width: min(100%, 380px); background: #fff; border: 3px solid var(--ink); border-radius: 22px;
  padding: 24px 24px 26px; box-shadow: 10px 10px 0 var(--ink); transform: rotate(3deg);
  background-image: radial-gradient(circle at 0 62%, var(--peach) 14px, transparent 15px), radial-gradient(circle at 100% 62%, var(--peach) 14px, transparent 15px);
}
.ticket-head { display: flex; align-items: center; gap: 12px; padding-bottom: 14px; border-bottom: 3px dashed var(--ink); }
.ticket-head svg { width: 48px; height: 48px; }
.ticket-head div { display: grid; line-height: 1.1; }
.ticket-head b { font-family: var(--display); font-size: 1.45rem; font-weight: 650; }
.ticket-head span { font-size: .8rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; color: var(--ink-soft); }
.ticket-meta { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin: 16px 0; }
.ticket-meta div { background: var(--lilac); border-radius: 12px; padding: 8px 12px; }
.ticket-meta dt { font-size: .75rem; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; color: var(--ink-soft); }
.ticket-meta dd { margin: 0; font-weight: 800; }
.ticket-lines { list-style: none; margin: 0; padding: 8px 0 16px; border-bottom: 3px dashed var(--ink); }
.ticket-lines li { display: flex; justify-content: space-between; gap: 10px; padding: 7px 0; font-weight: 700; }
.ticket-total { display: flex; justify-content: space-between; align-items: center; padding-top: 16px; font-weight: 800; }
.ticket-total strong { font-family: var(--display); font-size: 1.8rem; }
.ticket-stamp {
  position: absolute; right: -18px; top: -22px; background: var(--mint-deep); color: #fff;
  font-family: var(--display); font-weight: 700; font-size: 1.3rem; padding: 10px 16px; border: 3px solid var(--ink);
  border-radius: 50%; transform: rotate(14deg); box-shadow: 3px 3px 0 var(--ink);
  animation: stamp 4s ease-in-out infinite;
}
@keyframes stamp { 0%, 70%, 100% { transform: rotate(14deg) scale(1); } 78% { transform: rotate(4deg) scale(1.18); } 86% { transform: rotate(18deg) scale(.96); } }

/* ---------- boxes ---------- */
.boxes { padding: clamp(64px, 9vw, 120px) 0; }
.boxes-head { max-width: 640px; margin-bottom: 44px; }
.box-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.box { position: relative; border: 3px solid var(--ink); border-radius: var(--radius); padding: 28px 26px 22px; box-shadow: var(--shadow); display: flex; flex-direction: column; gap: 10px; transition: transform .3s cubic-bezier(.3,1.6,.5,1); }
.box:nth-child(1) { transform: rotate(-1.5deg); }
.box:nth-child(3) { transform: rotate(1.5deg); }
.box:hover { transform: translateY(-8px) rotate(0); }
.box-top { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; }
.box-top h3 { font-size: 1.8rem; }
.box-top strong { font-family: var(--display); font-size: 2.2rem; font-weight: 700; }
.box p { font-weight: 700; color: var(--ink-soft); }
.box-art { width: 130px; margin-top: auto; align-self: flex-end; }
.b-butter { background: var(--butter); }
.b-pink { background: var(--pink); }
.b-mint { background: var(--mint); }

/* ---------- visit ---------- */
.visit { background: var(--mint); border-block: 3px solid var(--ink); padding: clamp(64px, 9vw, 120px) 0; }
.visit-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: clamp(28px, 5vw, 60px); align-items: start; }
.hours-card { background: #fff; border: 3px solid var(--ink); border-radius: var(--radius); padding: 34px 30px; box-shadow: var(--shadow); transform: rotate(-1.5deg); }
.hours { width: 100%; border-collapse: collapse; margin-top: 22px; font-size: 1.08rem; }
.hours th { text-align: left; font-weight: 800; padding: 12px 0; }
.hours td { text-align: right; font-weight: 700; color: var(--ink-soft); }
.hours tr + tr { border-top: 2px dashed color-mix(in srgb, var(--ink) 22%, transparent); }
.hours tr:first-child td { color: var(--pink-deep); }
.hours-note { margin-top: 18px; background: var(--butter); border-radius: 14px; padding: 10px 14px; font-weight: 700; font-size: .98rem; }
.map-card { background: #fff; border: 3px solid var(--ink); border-radius: var(--radius); padding: 14px; box-shadow: var(--shadow); transform: rotate(1deg); }
.map { width: 100%; height: auto; display: block; }
.address { padding: 18px 12px 8px; }
.address p + p { margin-top: 8px; font-weight: 600; color: var(--ink-soft); }
.address strong { font-family: var(--display); font-size: 1.4rem; font-weight: 650; }

/* ---------- CTA ---------- */
.cta { position: relative; overflow: clip; background: var(--ink); color: #fff; padding: clamp(72px, 10vw, 130px) 0; text-align: center; }
.cta::before { content: ""; position: absolute; inset: 0; background-image: radial-gradient(color-mix(in srgb, #fff 12%, transparent) 1.6px, transparent 1.8px); background-size: 26px 26px; }
.cta-inner { position: relative; }
.cta h2 { font-size: clamp(2.4rem, 6.5vw, 5rem); max-width: 16ch; margin-inline: auto; color: var(--butter); }
.cta p { margin-top: 16px; font-size: 1.2rem; font-weight: 600; }
.cta-buttons { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; margin-top: 34px; }
.cta .btn { box-shadow: 4px 4px 0 var(--pink); border-color: #fff; }
.cta-sq { width: 200px; color: var(--lilac); top: 34px; left: 5%; transform: rotate(10deg); }

/* ---------- footer ---------- */
.foot { background: var(--cream); padding: 56px 0 44px; }
.foot-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 28px 48px; }
.foot-brand { display: flex; gap: 14px; align-items: flex-start; }
.foot-brand strong { font-family: var(--display); font-size: 1.35rem; font-weight: 650; }
.foot-brand a { font-weight: 700; }
.foot-nav { display: flex; flex-wrap: wrap; gap: 8px 12px; align-content: start; justify-content: flex-end; }
.foot-nav a { font-weight: 800; text-decoration: none; border: 2px solid var(--ink); border-radius: 999px; padding: 6px 14px; }
.foot-nav a:hover { background: var(--butter); }
.foot-nav .old-link { background: var(--ink); color: #fff; }
.foot-note { grid-column: 1 / -1; font-size: .9rem; color: var(--ink-soft); border-top: 2px dashed color-mix(in srgb, var(--ink) 25%, transparent); padding-top: 22px; max-width: 90ch; }

/* ---------- scroll reveal (progressive) ---------- */
@supports (animation-timeline: view()) {
  .reveal { animation: pop-in linear both; animation-timeline: view(); animation-range: entry 0% entry 55%; }
  @keyframes pop-in { from { opacity: 0; translate: 0 60px; scale: .92; } to { opacity: 1; translate: 0 0; scale: 1; } }
}

/* ---------- responsive ---------- */
@media (max-width: 980px) {
  .hero-grid, .today-head, .preorder-grid, .visit-grid { grid-template-columns: 1fr; }
  .hero-art { max-width: 520px; margin-inline: auto; width: 100%; }
  .about-grid, .menu-grid, .box-grid { grid-template-columns: 1fr; max-width: 560px; margin-inline: auto; }
  .blob-card:nth-child(2), .m-mint { transform: none; }
  .menu-grid { gap: 30px; }
  .gallery-grid { grid-template-columns: repeat(6, 1fr); grid-auto-rows: 90px; }
  .g1 { grid-column: 1 / 7; grid-row: 1 / 4; }
  .g2 { grid-column: 1 / 4; grid-row: 4 / 8; }
  .g3 { grid-column: 4 / 7; grid-row: 4 / 6; }
  .g4 { grid-column: 4 / 7; grid-row: 6 / 8; }
  .g5 { grid-column: 1 / 7; grid-row: 8 / 10; }
  .nav { display: none; }
  .btn-small { margin-left: auto; }
  .foot-grid { grid-template-columns: 1fr; }
  .foot-nav { justify-content: flex-start; }
}
@media (max-width: 560px) {
  body { font-size: 16px; }
  .wrap { width: calc(100% - 32px); }
  .brand { font-size: 1.35rem; }
  .brand-bun { width: 38px; height: 38px; }
  .btn-small { padding: 8px 14px; font-size: .95rem; }
  .wordmark { font-size: clamp(4rem, 27vw, 7rem); }
  .wordmark b { text-shadow: 3px 4px 0 var(--pink-deep); }
  .wm-two b { text-shadow: 3px 4px 0 var(--ink); }
  .d-squiggle { width: 110px; top: 12px; right: -20px; }
  .d-star1 { display: none; }
  .hero-art { padding: 16px 12px 40px; }
  .mini-frame { left: 0; width: 96px; }
  .s-price { right: 4px; bottom: 30px; padding: 8px 14px; }
  .s-price strong { font-size: 1.6rem; }
  .s-burst { width: 100px; left: 0; }
  .ticker-track { font-size: 1.2rem; }
  .gallery-grid { gap: 14px; grid-auto-rows: 70px; }
  .g figcaption { font-size: .85rem; left: 10px; bottom: 10px; }
  .sticker-note { padding: 16px 20px; flex-direction: row; align-items: center; gap: 14px; }
  .sticker-note svg { width: 34px; flex: none; }
  .sticker-note p { font-size: 1.05rem; }
  .cta-sq { width: 120px; top: 16px; left: -10px; }
  .step { grid-template-columns: 48px 1fr; gap: 14px; padding: 16px; }
  .step-num { width: 48px; height: 48px; font-size: 1.5rem; }
  .s-b, .s-c { margin-left: 0; }
  .ticket { transform: rotate(1.5deg); box-shadow: 6px 6px 0 var(--ink); }
  .ticket-stamp { right: -6px; }
  .hours-card { padding: 26px 20px; }
  .hours th, .hours td { font-size: .98rem; }
  .btn-big { font-size: 1.05rem; padding: 15px 22px; width: 100%; }
  .menu { padding: 6px 18px 12px; }
  .menu-col h3 { padding: 16px 18px; font-size: 1.4rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1 !important; translate: none !important; scale: none !important; }
}
