/* ===================================================
   takeyourcookie — design tokens
=================================================== */
:root {
  --cream: #FFF7EC;
  --cream-deep: #FBEFDD;
  --cocoa: #3A2417;
  --raspberry: #C93F5B;
  --raspberry-deep: #A8324A;
  --caramel: #E3A33E;
  --sage: #7C8C5A;
  --blush: #F4D7DC;
  --white: #FFFDF9;
  --peach: #FFD9B3;
  --mint: #CFE8D6;
  --lilac: #E6D9F2;

  --font-display: "Fraunces", serif;
  --font-body: "Work Sans", sans-serif;

  --radius-lg: 30px;
  --radius-md: 20px;
  --wrap: 1160px;

  --shadow-cute: 0 12px 0 rgba(58,36,23,0.06), 0 20px 34px rgba(201,63,91,0.16);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background:
    radial-gradient(circle at 6% 12%, rgba(244,215,220,0.55) 0%, transparent 38%),
    radial-gradient(circle at 94% 8%, rgba(227,163,62,0.18) 0%, transparent 32%),
    radial-gradient(circle at 90% 60%, rgba(124,140,90,0.12) 0%, transparent 30%),
    radial-gradient(circle at 4% 70%, rgba(230,217,242,0.4) 0%, transparent 34%),
    var(--cream);
  color: var(--cocoa);
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

@keyframes float-blob {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-16px) rotate(4deg); }
}
@keyframes wiggle {
  0%, 100% { transform: rotate(-6deg); }
  50% { transform: rotate(-2deg); }
}

img, svg { display: block; max-width: 100%; }

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

.wrap {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 28px;
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.08;
  margin: 0 0 0.5em;
  color: var(--cocoa);
}

h1 { font-size: clamp(3rem, 5.8vw, 5rem); letter-spacing: -0.01em; }
h1 em { font-style: italic; font-weight: 500; color: var(--raspberry); }

h2 { font-size: clamp(2.1rem, 3.8vw, 3rem); }

p { margin: 0 0 1em; }

.eyebrow {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--raspberry);
  margin-bottom: 0.9em;
}
.eyebrow.center { text-align: center; }
.center { text-align: center; }

.section-sub {
  max-width: 600px;
  margin: 0 auto 3rem;
  font-size: 1.1rem;
  color: rgba(58,36,23,0.78);
}

/* ===================================================
   Icing scallop divider — the recurring bakery motif
=================================================== */
.icing-divider {
  height: 26px;
  width: 100%;
  background:
    radial-gradient(circle at 10px 0, transparent 12px, var(--cream) 13px) 0 -12px / 24px 24px repeat-x;
  background-color: var(--white);
  position: relative;
  z-index: 2;
}
.top-divider { display: none; }

/* ===================================================
   Header
=================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 247, 236, 0.98);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(58,36,23,0.08);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding-top: 16px;
  padding-bottom: 16px;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.55rem;
  color: var(--cocoa);
  white-space: nowrap;
}
.logo span { color: var(--raspberry); font-weight: 700; }

.logo-mark {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 0 2px var(--white), 0 2px 8px rgba(58,36,23,0.18);
}
.footer-logo .logo-mark { box-shadow: 0 0 0 2px rgba(255,247,236,0.5), 0 2px 8px rgba(0,0,0,0.25); }

.main-nav {
  display: flex;
  gap: 1.9rem;
  margin-left: auto;
  font-weight: 500;
  font-size: 1.05rem;
}
.main-nav a {
  position: relative;
  padding: 7px 14px;
  border-radius: 999px;
  white-space: nowrap;
  transition: background 0.2s var(--ease), color 0.2s var(--ease), transform 0.2s var(--bounce);
}
.main-nav a:hover {
  background: var(--blush);
  color: var(--raspberry-deep);
  transform: translateY(-2px);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  width: 22px; height: 2px; background: var(--cocoa); border-radius: 2px;
}

/* ===================================================
   Instagram icon
=================================================== */
.icon-ig {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  display: inline-block;
  vertical-align: middle;
}
.icon-ig-sm { width: 15px; height: 15px; }

.icon-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  transition: background 0.2s var(--ease), transform 0.2s var(--bounce);
}
.icon-link:hover { background: var(--blush); transform: translateY(-2px) scale(1.06); }

/* ===================================================
   Buttons — order ticket motif
=================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1.03rem;
  padding: 15px 28px;
  border-radius: 999px;
  transition: transform 0.25s var(--bounce), box-shadow 0.25s var(--bounce);
  white-space: nowrap;
}
.btn-ticket {
  background: var(--raspberry);
  color: var(--white);
  position: relative;
  box-shadow: 0 6px 0 var(--raspberry-deep);
}
.btn-ticket:hover { transform: translateY(-3px) scale(1.03) rotate(-1deg); box-shadow: 0 9px 0 var(--raspberry-deep); }
.btn-ticket:active { transform: translateY(2px); box-shadow: 0 3px 0 var(--raspberry-deep); }

.btn-outline {
  border: 2px solid var(--cocoa);
  color: var(--cocoa);
  padding: 13px 26px;
}
.btn-outline:hover { background: var(--cocoa); color: var(--cream); transform: translateY(-3px) scale(1.03) rotate(1deg); }

.btn-small { padding: 11px 22px; font-size: 0.94rem; }

/* ===================================================
   Hero
=================================================== */
.hero {
  min-height: 75vh;
  display: flex;
  align-items: center;
  padding: 56px 0 76px;
  overflow: hidden;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  grid-template-areas: "title art" "rest art";
  align-items: start;
  gap: 3rem;
  width: 100%;
}
.hero-title { grid-area: title; }
.hero-art { grid-area: art; }
.hero-rest { grid-area: rest; }
.hero-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: 1.7rem;
  color: var(--raspberry);
  margin: -0.3em 0 0.9em;
}
.hero-sub {
  max-width: 480px;
  color: rgba(58,36,23,0.8);
  font-size: 1.2rem;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 1.6rem; }

.hero-custom-note {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 1.6rem 0 0;
  padding: 10px 18px;
  background: var(--blush);
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--raspberry-deep);
}

.hero-art { display: flex; justify-content: center; position: relative; }

.hero-photo-collage {
  position: relative;
  width: 100%;
  max-width: 500px;
  aspect-ratio: 1 / 1;
}

.hero-photo-frame {
  position: absolute;
  background: var(--white);
  border-radius: 22px;
  box-shadow: 0 20px 36px rgba(58,36,23,0.2), 0 2px 0 rgba(58,36,23,0.05);
  padding: 10px 10px 32px;
}
.hero-photo {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 14px;
}

.hero-photo-frame-main {
  width: 64%;
  top: 0%;
  left: 2%;
  z-index: 2;
  transform: rotate(-4deg);
  animation: float-blob 6s ease-in-out infinite;
}
.hero-photo-frame-right {
  width: 63%;
  top: 32%;
  right: -24%;
  z-index: 1;
  transform: rotate(8deg);
  animation: float-blob 8.5s ease-in-out infinite;
}

.hero-blob {
  position: absolute;
  top: 50%; left: 50%;
  width: 480px; height: 480px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, var(--peach) 0%, var(--blush) 55%, transparent 75%);
  border-radius: 62% 38% 55% 45% / 48% 55% 45% 52%;
  filter: blur(2px);
  opacity: 0.8;
  animation: float-blob 8s ease-in-out infinite reverse;
  z-index: 0;
}
.hero-sticker {
  position: absolute;
  top: 2%;
  right: 8%;
  z-index: 5;
  background: var(--white);
  color: var(--raspberry-deep);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.92rem;
  padding: 11px 18px;
  border-radius: 999px;
  border: 2px dashed var(--raspberry);
  box-shadow: 0 8px 18px rgba(58,36,23,0.14);
  transform: rotate(-8deg);
  animation: wiggle 4s ease-in-out infinite;
  white-space: nowrap;
}
.hero-sparkle {
  position: absolute;
  z-index: 2;
  font-size: 1.6rem;
  color: var(--caramel);
  animation: float-blob 5s ease-in-out infinite;
  pointer-events: none;
}
.hero-sparkle-1 { bottom: 10%; left: 2%; color: var(--raspberry); font-size: 1.3rem; }
.hero-sparkle-2 { top: 2%; left: 12%; animation-delay: -2s; font-size: 1.2rem; }
.hero-sparkle-3 { bottom: 30%; right: 2%; color: var(--sage); font-size: 1.1rem; animation-delay: -3.5s; }
.hero-sparkle-4 { top: 46%; left: -4%; font-size: 1rem; animation-delay: -1s; }

.hero-deco {
  position: absolute;
  z-index: 3;
  pointer-events: none;
  filter: drop-shadow(0 4px 6px rgba(58,36,23,0.1));
}
.hero-deco-cupcake {
  width: 62px;
  bottom: -2%;
  left: -10%;
  animation: float-blob 7s ease-in-out infinite;
}
.hero-deco-star-1 {
  width: 28px;
  top: 20%;
  left: -8%;
  color: var(--caramel);
  animation: wiggle 5s ease-in-out infinite;
}
.hero-deco-star-2 {
  width: 22px;
  bottom: 24%;
  right: -30%;
  animation: wiggle 4.5s ease-in-out infinite reverse;
}
.hero-deco-star-3 {
  width: 20px;
  top: 48%;
  right: -44%;
  animation: wiggle 5.5s ease-in-out infinite;
}
.hero-deco-star-4 {
  width: 26px;
  bottom: -8%;
  right: 22%;
  animation: wiggle 4s ease-in-out infinite reverse;
}
.hero-deco-star-5 {
  width: 18px;
  bottom: -3%;
  right: 46%;
  animation: wiggle 6s ease-in-out infinite;
}

/* ===================================================
   About
=================================================== */
.about { padding: 88px 0; overflow: hidden; }
.about-inner {
  display: grid;
  grid-template-columns: 0.62fr 1fr;
  gap: 9rem;
  align-items: center;
  max-width: 1340px;
  margin-left: 18%;
}
.about-art { position: relative; }
.about-art::before {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  width: 460px; height: 460px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, var(--mint) 0%, transparent 70%);
  border-radius: 40% 60% 55% 45% / 55% 45% 55% 45%;
  opacity: 0.7;
  z-index: 0;
}
.about-photo-frame {
  width: 100%;
  max-width: 460px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  animation: float-blob 7s ease-in-out infinite;
}
.about-photo {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 42% 58% 63% 37% / 55% 40% 60% 45%;
  box-shadow: 0 0 0 10px var(--white), 0 24px 44px rgba(58,36,23,0.2);
}
.about-sparkle {
  position: absolute;
  z-index: 2;
  font-size: 1.7rem;
  color: var(--raspberry);
  pointer-events: none;
  animation: wiggle 4.5s ease-in-out infinite;
}
.about-sparkle-1 { top: 4%; right: 6%; }
.about-sparkle-2 { bottom: 8%; left: 0%; color: var(--caramel); font-size: 1.3rem; animation-delay: -2s; }
.about-copy p { max-width: 520px; }
.about-tags {
  list-style: none;
  padding: 0;
  margin: 1.4rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.about-tags li {
  font-weight: 500;
  font-size: 1.05rem;
  padding-left: 26px;
  position: relative;
}
.about-tags li::before {
  content: "";
  position: absolute;
  left: 0; top: 6px;
  width: 14px; height: 14px;
  background: var(--sage);
  border-radius: 50%;
}

/* ===================================================
   Menu — order ticket cards
=================================================== */
.menu { padding: 88px 0; position: relative; overflow: hidden; }

.menu-sparkle {
  position: absolute;
  font-size: 1.6rem;
  color: var(--caramel);
  animation: float-blob 5s ease-in-out infinite;
  pointer-events: none;
}
.menu-sparkle-1 { top: 12%; left: 6%; color: var(--raspberry); font-size: 1.3rem; }
.menu-sparkle-2 { top: 8%; right: 9%; animation-delay: -1.5s; }
.menu-sparkle-3 { bottom: 14%; left: 10%; color: var(--sage); font-size: 1.2rem; animation-delay: -3s; }
.ticket-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 2rem;
}
.flavor-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 30px 28px;
  position: relative;
  box-shadow: 0 2px 0 rgba(58,36,23,0.05), 0 10px 24px rgba(58,36,23,0.08);
  transition: transform 0.3s var(--bounce), box-shadow 0.3s var(--bounce);
}
.flavor-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: var(--shadow-cute);
}
.flavor-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  opacity: 0.5;
  z-index: 0;
}
.flavor-card > * { position: relative; z-index: 1; }

.flavor-vanilla::before { background: radial-gradient(circle at 100% 0%, var(--peach) 0%, transparent 60%); }
.flavor-chocolate::before { background: radial-gradient(circle at 100% 0%, #E8D2C2 0%, transparent 60%); }
.flavor-matcha::before { background: radial-gradient(circle at 100% 0%, var(--mint) 0%, transparent 60%); }

.flavor-card h3 { font-size: 1.4rem; margin-bottom: 0.6em; }

.flavor-banner {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: 999px;
  margin-bottom: 14px;
  box-shadow: 0 4px 0 rgba(58,36,23,0.12);
}
.flavor-banner h3 {
  margin: 0;
  font-size: 1.15rem;
  color: #fff;
  white-space: nowrap;
}
.flavor-bow { width: 26px; height: 18px; flex-shrink: 0; }

.flavor-vanilla .flavor-banner { background: var(--caramel); }
.flavor-vanilla .flavor-bow { color: #FEDA75; }

.flavor-chocolate .flavor-banner { background: #6B4226; }
.flavor-chocolate .flavor-bow { color: #A9754F; }

.flavor-matcha .flavor-banner { background: var(--sage); }
.flavor-matcha .flavor-bow { color: #C4D3A4; }

.flavor-icon {
  width: 64px;
  height: auto;
  margin-bottom: 14px;
  filter: drop-shadow(0 4px 6px rgba(58,36,23,0.12));
}
.flavor-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.flavor-list li {
  position: relative;
  padding-left: 24px;
  font-size: 1.03rem;
  font-weight: 500;
  color: var(--cocoa);
}
.flavor-list li::before {
  content: "★";
  position: absolute;
  left: 0;
  top: -1px;
  color: var(--caramel);
  font-size: 0.8em;
}

.how-to-choose {
  max-width: 480px;
  margin: 2.5rem auto 0;
  text-align: center;
  background: var(--blush);
  border-radius: var(--radius-lg);
  padding: 22px 28px;
  box-shadow: 0 2px 0 rgba(58,36,23,0.05), 0 10px 24px rgba(201,63,91,0.12);
}
.how-to-choose-label {
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.85rem;
  color: var(--raspberry-deep);
  margin-bottom: 0.5em;
}
.how-to-choose-example { margin: 0; font-size: 1.05rem; }
.how-to-choose-example strong {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 600;
  color: var(--raspberry);
}

/* ===================================================
   How to order — numbered steps
=================================================== */
.order-steps { padding: 88px 0; }
.steps {
  list-style: none;
  margin: 2.5rem 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.steps li { position: relative; padding-top: 8px; }
.step-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.5rem;
  color: var(--white);
  background: var(--caramel);
  border-radius: 50%;
  margin-bottom: 0.6em;
  box-shadow: 0 6px 0 rgba(58,36,23,0.12);
  transition: transform 0.3s var(--bounce);
}
.steps li:hover .step-num { transform: rotate(-8deg) scale(1.08); }
.steps h3 { font-size: 1.22rem; margin-bottom: 0.3em; }
.steps p { font-size: 1.02rem; color: rgba(58,36,23,0.78); }

/* ===================================================
   Gallery
=================================================== */
.gallery { padding: 88px 0 100px; }
.gallery .wrap { max-width: 1400px; }

.gallery-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 1.8rem;
}
.gallery-tab {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--cocoa);
  background: var(--white);
  border: 2px solid transparent;
  padding: 10px 20px;
  border-radius: 999px;
  cursor: pointer;
  transition: transform 0.25s var(--bounce), background 0.2s var(--ease), color 0.2s var(--ease), border-color 0.2s var(--ease);
}
.gallery-tab:hover { transform: translateY(-2px); border-color: var(--blush); }
.gallery-tab.is-active {
  background: var(--raspberry);
  color: var(--white);
  box-shadow: 0 6px 0 var(--raspberry-deep);
}
.gallery-tabs-break { display: none; }

.gallery-carousel {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 2.2rem;
}
.gallery-arrow {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--white);
  border: none;
  color: var(--cocoa);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 6px 16px rgba(58,36,23,0.14);
  transition: transform 0.25s var(--bounce), background 0.2s var(--ease), color 0.2s var(--ease);
}
.gallery-arrow svg { width: 20px; height: 20px; }
.gallery-arrow:hover { background: var(--raspberry); color: var(--white); transform: scale(1.08); }
.gallery-arrow:active { transform: scale(0.95); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  flex: 1;
  min-width: 0;
  transition: opacity 0.2s var(--ease);
}
.gallery-grid.is-transitioning { opacity: 0.25; }
.gallery-card.is-hidden { display: none; }
.gallery-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 20px;
  text-align: center;
  transition: transform 0.3s var(--bounce), box-shadow 0.3s var(--bounce);
}
.gallery-card:hover {
  transform: translateY(-5px) rotate(1deg) scale(1.03);
  box-shadow: var(--shadow-cute);
}
.gallery-card svg { width: 100%; max-width: 140px; margin: 0 auto 12px; }
.gallery-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: calc(var(--radius-md) - 6px);
  margin-bottom: 12px;
}
.gallery-card p { font-size: 0.96rem; font-weight: 500; margin: 0; color: rgba(58,36,23,0.8); }
.gallery-note { text-align: center; margin-top: 2rem; font-size: 1rem; color: rgba(58,36,23,0.7); }
.gallery-note a { color: var(--raspberry); font-weight: 600; }
.gallery-note-ig { display: inline-flex; align-items: center; gap: 4px; }

/* ===================================================
   Footer
=================================================== */
.site-footer {
  background: var(--cocoa);
  color: var(--cream);
  padding: 64px 0 32px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,247,236,0.15);
}
.footer-logo { color: var(--cream); font-size: 1.7rem; margin: 0 0 0.4em; }
.footer-logo span { color: var(--caramel); }
.footer-tagline { color: rgba(255,247,236,0.75); font-size: 1.02rem; max-width: 320px; margin: 0; }
.footer-links { display: flex; flex-direction: column; gap: 10px; font-weight: 500; font-size: 1.02rem; }
.footer-links a:hover { color: var(--caramel); }
.footer-ig { display: inline-flex; align-items: center; gap: 8px; }
.footer-copy {
  text-align: center;
  font-size: 0.88rem;
  color: rgba(255,247,236,0.55);
  margin: 1.6rem 0 0;
}

/* ===================================================
   Reveal-on-scroll
=================================================== */
[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  .hero-photo-frame, .hero-blob, .hero-sticker, .hero-sparkle, .hero-deco, .about-photo-frame { animation: none; }
}

/* ===================================================
   Responsive
=================================================== */
@media (max-width: 980px) {
  .hero-inner, .about-inner { grid-template-columns: 1fr; }
  .hero-inner { grid-template-areas: "title" "art" "rest"; }
  .about-inner { margin-left: 0; gap: 3rem; max-width: 100%; }
  .about-art { order: -1; }
  .ticket-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-photo-frame-right { right: -8%; }
  .hero-deco-star-2 { right: -10%; }
  .hero-deco-star-3 { right: -14%; }
}

@media (max-width: 720px) {
  .site-header .header-inner {
    position: relative;
    justify-content: center;
    padding-top: 22px;
    padding-bottom: 22px;
  }
  .header-inner .icon-link { display: none; }
  .main-nav {
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--cream);
    flex-direction: column;
    padding: 20px 28px 28px;
    gap: 1.1rem;
    border-bottom: 1px solid rgba(58,36,23,0.08);
    display: none;
  }
  .main-nav.is-open { display: flex; }
  .nav-toggle {
    display: flex;
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
  }
  .header-inner .btn-small { display: none; }
  .ticket-grid, .steps, .gallery-grid { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr; }
  .about-inner { gap: 2rem; }
  .about-art::before { width: 320px; height: 320px; }
  .gallery-carousel { gap: 10px; }
  .gallery-arrow { width: 38px; height: 38px; }
  .gallery-arrow svg { width: 16px; height: 16px; }
}

@media (max-width: 480px) {
  h1 { font-size: 2.3rem; }
  h2 { font-size: 1.65rem; }
  .eyebrow { font-size: 0.78rem; }
  .section-sub { font-size: 1rem; }

  .ticket-grid { grid-template-columns: 1fr; }
  .wrap { padding: 0 24px; }

  .gallery-tabs { justify-content: center; gap: 6px; margin-top: 1.4rem; }
  .gallery-tab { font-size: 0.72rem; padding: 7px 12px; }
  .gallery-tabs-break { display: block; flex-basis: 100%; width: 0; height: 0; }
  .gallery-tab.is-active { box-shadow: 0 4px 0 var(--raspberry-deep); }

  .hero { min-height: auto; padding: 40px 0 56px; }
  .hero-inner { gap: 2.2rem; }
  .hero-quote { font-size: 1.25rem; }
  .hero-sub { font-size: 1rem; }
  .hero-custom-note { margin-bottom: 0.4rem; }
  .hero-title { margin-bottom: 0.6rem; }
  .hero-art { margin-bottom: 1.2rem; }
  .icing-divider { display: none; }

  .about, .order-steps { background: var(--cream-deep); }
  .menu, .gallery { background: var(--cream); }
  .hero-sticker { font-size: 0.8rem; padding: 9px 14px; top: -2%; right: -4%; }
  .hero-photo-frame-right { right: 0%; width: 58%; }
  .hero-deco-star-2, .hero-deco-star-3 { right: 0%; }
  .hero-deco-star-4, .hero-deco-star-5 { right: 8%; }
  .about { padding: 48px 0; }
  .about-inner { gap: 1.5rem; }
  .about-art::before { width: 220px; height: 220px; }
  .about-photo-frame { max-width: 240px; }
  .menu { padding: 48px 0; }

  .ticket-grid { gap: 18px; margin-top: 1.5rem; }
  .flavor-card {
    display: grid;
    grid-template-columns: auto auto;
    grid-template-areas: "banner icon" "list list";
    align-items: center;
    column-gap: 10px;
    padding: 20px 18px 22px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(58,36,23,0.06);
  }
  .flavor-card h3 { font-size: 1.15rem; }
  .flavor-banner { grid-area: banner; padding: 9px 18px; margin-bottom: 0; }
  .flavor-banner h3 { font-size: 1.18rem; }
  .flavor-bow { width: 22px; height: 15px; }
  .flavor-icon { grid-area: icon; justify-self: end; width: 36px; margin-bottom: 0; }
  .flavor-list { grid-area: list; flex-direction: row; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
  .flavor-list li {
    padding: 7px 16px 7px 28px;
    border-radius: 999px;
    font-size: 0.98rem;
    font-weight: 600;
  }
  .flavor-list li::before { left: 10px; top: 50%; transform: translateY(-50%); }

  .flavor-vanilla .flavor-list li { background: rgba(227,163,62,0.15); color: #8A5A10; }
  .flavor-chocolate .flavor-list li { background: rgba(107,66,38,0.12); color: #6B4226; }
  .flavor-matcha .flavor-list li { background: rgba(124,140,90,0.16); color: #566129; }

  .how-to-choose { margin-top: 1.8rem; padding: 18px 22px; }

  .order-steps { padding: 48px 0; }
  .gallery { padding: 48px 0 64px; }
  .gallery-arrow { display: none; }

  .gallery-grid {
    display: flex;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x proximity;
    overscroll-behavior-x: contain;
    gap: 14px;
    padding: 4px 4px 12px;
    margin: 0 -4px;
    scrollbar-width: none;
  }
  .gallery-grid::-webkit-scrollbar { display: none; }
  .gallery-card {
    flex: 0 0 74%;
    scroll-snap-align: start;
    padding: 0;
    overflow: hidden;
    -webkit-tap-highlight-color: transparent;
  }
  .gallery-card:hover, .gallery-card:active { transform: none; box-shadow: none; }
  .gallery-grid { -webkit-tap-highlight-color: transparent; }
  .gallery-card img {
    margin-bottom: 0;
    border-radius: 0;
    aspect-ratio: 4 / 5;
    pointer-events: none;
  }
  .gallery-card p {
    margin: 0;
    padding: 12px 14px;
  }

  .steps {
    gap: 0;
    margin-top: 2.4rem;
    padding: 4px 6px 0;
  }
  .steps li {
    position: relative;
    padding: 0 0 32px 64px;
  }
  .steps li:last-child { padding-bottom: 0; }
  .steps li::before {
    content: "";
    position: absolute;
    left: 22px;
    top: 48px;
    bottom: 4px;
    width: 1px;
    background-image: linear-gradient(rgba(58,36,23,0.18) 60%, transparent 0%);
    background-size: 1px 8px;
    background-repeat: repeat-y;
  }
  .steps li:last-child::before { display: none; }
  .steps li:last-child::after {
    content: "✦";
    position: absolute;
    left: 13px;
    bottom: -6px;
    font-size: 0.8rem;
    color: var(--caramel);
  }

  .step-num {
    position: absolute;
    left: 0;
    top: 0;
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    font-size: 1.2rem;
    margin-bottom: 0;
    background: var(--raspberry);
    box-shadow: 0 4px 10px rgba(201,63,91,0.25), 0 0 0 5px var(--step-ring, rgba(201,63,91,0.12));
  }
  .steps li:nth-child(1) .step-num { --step-ring: rgba(201,63,91,0.14); }
  .steps li:nth-child(2) .step-num { --step-ring: rgba(227,163,62,0.18); }
  .steps li:nth-child(3) .step-num { --step-ring: rgba(124,140,90,0.18); }
  .steps li:nth-child(4) .step-num { --step-ring: rgba(201,63,91,0.14); }

  .steps h3 { font-size: 1.25rem; margin: 0.35em 0 0.3em; }
  .steps h3::after { font-size: 0.9em; margin-left: 0.35em; }
  .steps li:nth-child(1) h3::after { content: "💬"; }
  .steps li:nth-child(2) h3::after { content: "📋"; }
  .steps li:nth-child(3) h3::after { content: "🎂"; }
  .steps li:nth-child(4) h3::after { content: "🚚"; }
  .steps p { font-size: 1.02rem; color: rgba(58,36,23,0.72); }
}
