/* =====================================================================
   SCOOP — Ice Cream & Gelato Shop Website Template
   Plain HTML5 + CSS3 + vanilla JS. No frameworks. No build tools.
   ---------------------------------------------------------------------
   REBRAND: To rebrand, edit the CSS variables in :root below.
   Change --pink (bubblegum), --mint, --cream and the fonts.
   Replace the shop name "Scoop" in the HTML files + logo.
   Photos are loaded from loremflickr.com / pravatar.cc — swap the
   <img src> values for your own files when ready.
   ===================================================================== */

/* ---------- DESIGN TOKENS ---------- */
:root {
  /* Colors — bright, playful pastel palette */
  --pink:        #ff9eb5;   /* bubblegum pink (primary)         */
  --pink-dark:   #f56a8c;   /* deeper pink for hovers/contrast  */
  --pink-soft:   #ffd6e0;   /* soft pink tint                   */
  --mint:        #7fd1c1;   /* mint accent                      */
  --mint-dark:   #4fb3a0;   /* deeper mint                      */
  --mint-soft:   #d4f0ea;   /* soft mint tint                   */
  --cream:       #fff7f2;   /* warm cream background            */
  --cream-soft:  #fffdfb;   /* softer cream / cards             */
  --lemon:       #ffe08a;   /* sunny yellow pop                 */
  --ink:         #4a2c3a;   /* deep berry-brown text            */
  --muted:       #8a6f7a;   /* muted mauve text                 */
  --white:       #ffffff;
  --line:        #ffe3ea;   /* hairline border on cream         */

  /* Typography */
  --font-head: "Quicksand", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;

  /* Layout */
  --maxw: 1180px;
  --radius: 22px;
  --radius-sm: 14px;
  --shadow-sm: 0 4px 16px rgba(245, 106, 140, 0.10);
  --shadow-md: 0 16px 40px rgba(245, 106, 140, 0.16);
  --shadow-lg: 0 28px 64px rgba(245, 106, 140, 0.22);
  --header-h: 76px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream-soft);
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.15; font-weight: 700; color: var(--ink); }
h1 { font-size: clamp(2.3rem, 5vw, 3.7rem); letter-spacing: -0.01em; }
h2 { font-size: clamp(1.9rem, 3.5vw, 2.8rem); letter-spacing: -0.01em; }
h3 { font-size: 1.32rem; }
p  { color: var(--muted); }

/* ---------- LAYOUT HELPERS ---------- */
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.section { padding: 92px 0; }
.section--cream { background: var(--cream); }
.section--mint { background: var(--mint-soft); }
.text-center { text-align: center; }
.eyebrow {
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--pink-dark);
  margin-bottom: 12px;
  display: inline-block;
}
.section-head { max-width: 680px; margin: 0 auto 56px; }
.section-head p { margin-top: 14px; font-size: 1.05rem; }
.lead { font-size: 1.13rem; color: var(--muted); }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.96rem;
  border-radius: 50px;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s, color .25s;
  white-space: nowrap;
}
.btn--primary { background: var(--pink); color: #fff; box-shadow: var(--shadow-sm); }
.btn--primary:hover { background: var(--pink-dark); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.btn--ghost { background: transparent; color: var(--ink); border: 2px solid var(--mint); }
.btn--ghost:hover { background: var(--mint); color: #fff; transform: translateY(-3px); }
.btn--light { background: var(--white); color: var(--pink-dark); }
.btn--light:hover { background: var(--cream); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.btn--outline-light { border: 2px solid rgba(255,255,255,.7); color: #fff; }
.btn--outline-light:hover { background: #fff; color: var(--pink-dark); }

/* =====================================================================
   HEADER (shared, sticky)
   ===================================================================== */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 253, 251, 0.85);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .3s, background .3s;
}
.site-header.scrolled { box-shadow: var(--shadow-sm); background: rgba(255,253,251,.97); }
.nav {
  display: flex; align-items: center; justify-content: space-between;
  height: var(--header-h);
}
.logo { display: flex; align-items: center; gap: 11px; font-family: var(--font-head); font-weight: 700; font-size: 1.35rem; color: var(--ink); }
.logo-mark {
  width: 44px; height: 44px; border-radius: 14px;
  display: grid; place-items: center; font-size: 1.5rem;
  background: linear-gradient(135deg, var(--pink) 0%, var(--mint) 100%);
  box-shadow: var(--shadow-sm);
}
.logo span small { display: block; font-family: var(--font-body); font-weight: 500; font-size: .62rem; letter-spacing: .22em; text-transform: uppercase; color: var(--mint-dark); margin-top: -2px; }

.nav-menu { display: flex; align-items: center; gap: 6px; }
.nav-menu a {
  font-family: var(--font-head); font-weight: 600; font-size: .96rem;
  padding: 9px 16px; border-radius: 50px; color: var(--ink);
  transition: color .2s, background .2s;
}
.nav-menu a:hover { color: var(--pink-dark); background: rgba(255,158,181,.16); }
.nav-menu a.active { color: var(--pink-dark); background: rgba(255,158,181,.24); font-weight: 700; }

.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-cta .btn { padding: 10px 22px; }

/* Hamburger */
.hamburger {
  display: none; width: 44px; height: 44px; border-radius: 12px;
  position: relative; background: rgba(255,158,181,.14);
}
.hamburger span {
  position: absolute; left: 11px; right: 11px; height: 2.5px; border-radius: 3px;
  background: var(--pink-dark); transition: transform .3s var(--ease), opacity .2s;
}
.hamburger span:nth-child(1) { top: 15px; }
.hamburger span:nth-child(2) { top: 21px; }
.hamburger span:nth-child(3) { top: 27px; }
.hamburger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* =====================================================================
   HERO (home)
   ===================================================================== */
.hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(900px 500px at 88% -10%, rgba(255,158,181,.40), transparent 60%),
    radial-gradient(700px 500px at 0% 110%, rgba(127,209,193,.34), transparent 55%),
    linear-gradient(160deg, var(--cream) 0%, var(--cream-soft) 100%);
}
.hero-grid {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: center;
  padding: 86px 0 96px;
}
.hero-text h1 { margin-bottom: 18px; }
.hero-text h1 .hl { color: var(--pink-dark); }
.hero-text .lead { margin-bottom: 30px; max-width: 520px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 34px; }
.hero-stats { display: flex; gap: 34px; flex-wrap: wrap; }
.hero-stats .stat strong { font-family: var(--font-head); font-size: 1.8rem; color: var(--ink); display: block; }
.hero-stats .stat span { font-size: .85rem; color: var(--muted); }

/* Hero visual: photo with floating cards */
.hero-art { position: relative; min-height: 460px; }
.hero-photo {
  width: 100%; height: 100%; min-height: 440px; object-fit: cover;
  border-radius: 30px; box-shadow: var(--shadow-lg);
  border: 6px solid #fff;
}
.hero-badge {
  position: absolute; background: var(--white); color: var(--ink);
  padding: 14px 18px; border-radius: 18px; box-shadow: var(--shadow-md);
  display: flex; align-items: center; gap: 10px; font-weight: 700; font-family: var(--font-head);
}
.hero-badge .emoji { font-size: 1.5rem; }
.hero-badge--top { top: 6%; left: -6%; animation: float 5s ease-in-out infinite; }
.hero-badge--bottom { bottom: 7%; right: -5%; animation: float 6s ease-in-out infinite reverse; }
.hero-badge small { display: block; font-family: var(--font-body); font-weight: 500; font-size: .72rem; color: var(--muted); }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }

/* =====================================================================
   PAGE BANNER (inner pages)
   ===================================================================== */
.page-banner {
  position: relative; padding: 70px 0 62px; text-align: center; color: #fff;
  background:
    radial-gradient(700px 360px at 80% -30%, rgba(255,224,138,.55), transparent 60%),
    linear-gradient(150deg, var(--pink) 0%, var(--mint) 120%);
}
.page-banner h1 { color: #fff; margin-bottom: 12px; }
.page-banner p { color: rgba(255,255,255,.92); max-width: 620px; margin: 0 auto; }
.breadcrumb { display: flex; gap: 8px; justify-content: center; align-items: center; margin-top: 18px; font-size: .88rem; font-family: var(--font-head); font-weight: 600; }
.breadcrumb a { color: #fff; opacity: .85; }
.breadcrumb a:hover { opacity: 1; text-decoration: underline; }
.breadcrumb span { opacity: .6; }
.breadcrumb .current { color: #fff; opacity: 1; font-weight: 700; }

/* =====================================================================
   CARDS / GRIDS
   ===================================================================== */
.grid { display: grid; gap: 26px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px; box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.card h3 { margin-bottom: 10px; }
.icon-badge {
  width: 60px; height: 60px; border-radius: 18px; display: grid; place-items: center;
  font-size: 1.8rem; margin-bottom: 18px;
  background: linear-gradient(135deg, rgba(255,158,181,.24), rgba(127,209,193,.22));
}

/* Flavor / product cards with real photos */
.product { overflow: hidden; padding: 0; }
.product .thumb { position: relative; aspect-ratio: 4 / 3; overflow: hidden; }
.product .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.product:hover .thumb img { transform: scale(1.06); }
.product .thumb .tag { position: absolute; top: 14px; left: 14px; background: var(--white); color: var(--pink-dark); font-family: var(--font-head); font-weight: 700; font-size: .72rem; padding: 5px 13px; border-radius: 50px; box-shadow: var(--shadow-sm); }
.product .body { padding: 22px 24px 26px; }
.product .body .row { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; }
.product .body .price { font-family: var(--font-head); font-weight: 700; color: var(--mint-dark); font-size: 1.1rem; white-space: nowrap; }
.product .body p { font-size: .92rem; margin-top: 6px; }

/* =====================================================================
   SPLIT SECTIONS (about teaser / story)
   ===================================================================== */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split-visual {
  border-radius: var(--radius); position: relative; overflow: hidden;
  box-shadow: var(--shadow-md);
}
.split-visual img { width: 100%; height: 100%; min-height: 380px; object-fit: cover; }
.split-text h2 { margin-bottom: 18px; }
.split-text p + p { margin-top: 14px; }
.check-list { margin-top: 22px; display: grid; gap: 12px; }
.check-list li { display: flex; gap: 12px; align-items: flex-start; color: var(--ink); }
.check-list li::before { content: "🍦"; flex: none; }

/* =====================================================================
   HOURS / LOCATION STRIP
   ===================================================================== */
.strip { background: linear-gradient(135deg, var(--pink) 0%, var(--mint) 130%); color: #fff; border-radius: var(--radius); padding: 40px; display: grid; grid-template-columns: repeat(3,1fr); gap: 30px; box-shadow: var(--shadow-md); }
.strip .item { display: flex; gap: 16px; align-items: flex-start; }
.strip .item .ic { font-size: 1.8rem; }
.strip .item h4 { color: #fff; font-size: 1.05rem; margin-bottom: 4px; }
.strip .item p { color: rgba(255,255,255,.92); font-size: .92rem; }

/* =====================================================================
   GALLERY TEASER STRIP (home)
   ===================================================================== */
.photo-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.photo-row .ph { aspect-ratio: 1; border-radius: var(--radius-sm); overflow: hidden; box-shadow: var(--shadow-sm); }
.photo-row .ph img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.photo-row .ph:hover img { transform: scale(1.07); }

/* =====================================================================
   TESTIMONIALS
   ===================================================================== */
.quote-card { max-width: 760px; margin: 0 auto; text-align: center; }
.quote-card .stars { color: var(--lemon); font-size: 1.3rem; letter-spacing: 3px; margin-bottom: 18px; -webkit-text-stroke: .5px var(--pink-dark); }
.quote-card blockquote { font-family: var(--font-head); font-size: clamp(1.3rem,2.4vw,1.8rem); color: var(--ink); line-height: 1.4; font-weight: 600; }
.quote-card .who { margin-top: 22px; display: flex; gap: 14px; align-items: center; justify-content: center; }
.quote-card .avatar { width: 54px; height: 54px; border-radius: 50%; object-fit: cover; box-shadow: var(--shadow-sm); }
.quote-card .who b { font-family: var(--font-head); color: var(--ink); display: block; }
.quote-card .who small { color: var(--muted); }

.testi-grid .card .stars { color: var(--lemon); letter-spacing: 2px; margin-bottom: 12px; -webkit-text-stroke: .5px var(--pink-dark); }
.testi-grid .card p { color: var(--ink); font-style: italic; }
.testi-grid .card .who { margin-top: 18px; display: flex; align-items: center; gap: 12px; }
.testi-grid .card .avatar { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; }
.testi-grid .card .who b { font-family: var(--font-head); font-size: .95rem; }
.testi-grid .card .who small { color: var(--muted); }

/* =====================================================================
   CTA BAND
   ===================================================================== */
.cta-band { text-align: center; }
.cta-band .inner {
  background: linear-gradient(150deg, var(--pink) 0%, var(--mint) 130%);
  border-radius: 30px; padding: 64px 40px; color: #fff; box-shadow: var(--shadow-lg);
  position: relative; overflow: hidden;
}
.cta-band .inner::after { content: "🍦"; position: absolute; right: -6px; bottom: -34px; font-size: 12rem; opacity: .14; }
.cta-band h2 { color: #fff; margin-bottom: 14px; }
.cta-band p { color: rgba(255,255,255,.94); max-width: 540px; margin: 0 auto 28px; }
.cta-band .hero-actions { justify-content: center; margin-bottom: 0; }

/* =====================================================================
   TEAM / MAKERS
   ===================================================================== */
.team-card { text-align: center; }
.team-card .photo { width: 130px; height: 130px; border-radius: 50%; margin: 0 auto 18px; object-fit: cover; box-shadow: var(--shadow-md); border: 5px solid #fff; }
.team-card h3 { font-size: 1.18rem; margin-bottom: 2px; }
.team-card .role { color: var(--mint-dark); font-family: var(--font-head); font-weight: 700; font-size: .85rem; text-transform: uppercase; letter-spacing: .08em; }
.team-card p { font-size: .9rem; margin-top: 10px; }

/* =====================================================================
   FLAVORS PAGE
   ===================================================================== */
.flavor-cat { margin-bottom: 64px; }
.flavor-cat:last-child { margin-bottom: 0; }
.flavor-cat-head { display: flex; align-items: center; gap: 16px; margin-bottom: 28px; }
.flavor-cat-head .ic { width: 58px; height: 58px; border-radius: 18px; display: grid; place-items: center; font-size: 1.8rem; background: linear-gradient(135deg, rgba(255,158,181,.26), rgba(127,209,193,.22)); flex: none; }
.flavor-cat-head h2 { font-size: 1.8rem; }
.flavor-cat-head p { font-size: .92rem; }

/* =====================================================================
   GALLERY PAGE
   ===================================================================== */
.gallery-group { margin-bottom: 54px; }
.gallery-group h2 { margin-bottom: 22px; }
.gallery-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.tile {
  border-radius: var(--radius-sm); position: relative; overflow: hidden;
  box-shadow: var(--shadow-sm); transition: transform .3s var(--ease), box-shadow .3s var(--ease);
  aspect-ratio: 1;
}
.tile img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.tile::after {
  content: attr(data-label); position: absolute; left: 0; right: 0; bottom: 0;
  padding: 30px 14px 12px; font-family: var(--font-head); font-size: .82rem; font-weight: 700; color: #fff;
  background: linear-gradient(transparent, rgba(74,44,58,.78)); text-align: left;
  opacity: 0; transform: translateY(8px); transition: opacity .3s, transform .3s;
}
.tile:hover { transform: scale(1.03); box-shadow: var(--shadow-md); z-index: 2; }
.tile:hover img { transform: scale(1.08); }
.tile:hover::after { opacity: 1; transform: translateY(0); }
.tile.wide { grid-column: span 2; aspect-ratio: 2 / 1; }

.gallery-tabs { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-bottom: 44px; }
.gallery-tabs a { padding: 9px 22px; border-radius: 50px; font-family: var(--font-head); font-weight: 700; font-size: .9rem; background: var(--white); border: 1px solid var(--line); color: var(--pink-dark); transition: background .2s, color .2s, transform .2s; }
.gallery-tabs a:hover { background: var(--pink); color: #fff; transform: translateY(-2px); }

/* =====================================================================
   CONTACT PAGE
   ===================================================================== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: start; }
.contact-info .info-item { display: flex; gap: 16px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.contact-info .info-item:last-child { border-bottom: none; }
.contact-info .info-item .ic { width: 50px; height: 50px; flex: none; border-radius: 16px; display: grid; place-items: center; font-size: 1.45rem; background: linear-gradient(135deg, rgba(255,158,181,.26), rgba(127,209,193,.22)); }
.contact-info .info-item h4 { margin-bottom: 2px; }
.contact-info .info-item p, .contact-info .info-item a { color: var(--muted); font-size: .95rem; }
.contact-info .info-item a:hover { color: var(--pink-dark); }

.form { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 34px; box-shadow: var(--shadow-sm); }
.field { margin-bottom: 18px; }
.field label { display: block; font-family: var(--font-head); font-weight: 700; font-size: .88rem; color: var(--ink); margin-bottom: 7px; }
.field input, .field textarea, .field select {
  width: 100%; padding: 13px 16px; border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  font-family: var(--font-body); font-size: .95rem; color: var(--ink); background: var(--cream);
  transition: border-color .2s, box-shadow .2s;
}
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--pink); box-shadow: 0 0 0 3px rgba(255,158,181,.26); background: #fff; }
.field textarea { resize: vertical; min-height: 130px; }
.field.error input, .field.error textarea { border-color: #e0566c; }
.field .msg { color: #e0566c; font-size: .8rem; margin-top: 5px; display: none; }
.field.error .msg { display: block; }
.form-note { font-size: .82rem; color: var(--muted); margin-top: 6px; }
.form-success { display: none; background: rgba(127,209,193,.18); border: 1px solid rgba(79,179,160,.5); color: var(--mint-dark); padding: 14px 18px; border-radius: var(--radius-sm); font-family: var(--font-head); font-weight: 700; margin-bottom: 18px; }
.form-success.show { display: block; }

.map-placeholder {
  margin-top: 30px; height: 280px; border-radius: var(--radius); overflow: hidden; position: relative;
  background:
    repeating-linear-gradient(45deg, rgba(255,158,181,.10) 0 18px, transparent 18px 36px),
    linear-gradient(150deg, var(--pink-soft) 0%, var(--mint-soft) 100%);
  border: 1px solid var(--line); display: grid; place-items: center; text-align: center;
}
.map-placeholder .pin { font-size: 2.8rem; animation: float 4s ease-in-out infinite; }
.map-placeholder .label { font-family: var(--font-head); font-weight: 700; color: var(--ink); margin-top: 6px; }
.map-placeholder small { color: var(--muted); }

/* =====================================================================
   FOOTER (shared)
   ===================================================================== */
.site-footer { background: var(--ink); color: rgba(255,247,242,.82); padding: 70px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.3fr; gap: 40px; }
.footer-grid h4 { color: #fff; font-size: 1rem; margin-bottom: 18px; letter-spacing: .02em; }
.footer-brand .logo { color: #fff; margin-bottom: 16px; }
.footer-brand .logo span small { color: var(--pink); }
.footer-brand p { font-size: .92rem; max-width: 280px; }
.footer-col a, .footer-col p { display: block; color: rgba(255,247,242,.82); font-size: .92rem; padding: 5px 0; transition: color .2s, padding-left .2s; }
.footer-col a:hover { color: var(--pink); padding-left: 5px; }
.socials { display: flex; gap: 10px; margin-top: 8px; }
.socials a { width: 42px; height: 42px; border-radius: 14px; display: grid; place-items: center; font-size: 1.1rem; background: rgba(255,247,242,.10); padding: 0; transition: background .2s; }
.socials a:hover { background: var(--pink); padding-left: 0; }
.footer-bottom { border-top: 1px solid rgba(255,247,242,.16); margin-top: 48px; padding-top: 24px; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: .85rem; }
.footer-bottom a:hover { color: var(--pink); }

/* =====================================================================
   SCROLL REVEAL
   ===================================================================== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.visible { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }
/* Fallback: if JS disabled, show everything */
.no-js .reveal { opacity: 1; transform: none; }

/* =====================================================================
   RESPONSIVE
   ===================================================================== */
@media (max-width: 980px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-art { min-height: 340px; order: -1; }
  .hero-photo { min-height: 320px; }
  .hero-badge--top { left: 2%; }
  .hero-badge--bottom { right: 2%; }
  .split { grid-template-columns: 1fr; gap: 34px; }
  .split-visual img { min-height: 300px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .gallery-grid { grid-template-columns: repeat(2,1fr); }
  .photo-row { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 760px) {
  .section { padding: 64px 0; }
  /* Mobile nav */
  .hamburger { display: block; }
  .nav-menu {
    position: fixed; inset: var(--header-h) 0 auto 0;
    flex-direction: column; align-items: stretch; gap: 4px;
    background: var(--cream-soft); padding: 16px 20px 26px;
    border-bottom: 1px solid var(--line); box-shadow: var(--shadow-md);
    transform: translateY(-12px); opacity: 0; pointer-events: none;
    transition: transform .3s var(--ease), opacity .3s;
  }
  .nav-menu.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav-menu a { padding: 13px 16px; font-size: 1rem; }
  .nav-cta .btn { display: none; }
  .strip { grid-template-columns: 1fr; gap: 22px; padding: 30px; }
  .hero-stats { gap: 24px; }
  .flavor-cat-head h2 { font-size: 1.5rem; }
}

@media (max-width: 480px) {
  .grid-3, .grid-4, .grid-2 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .photo-row { grid-template-columns: 1fr 1fr; }
  .tile.wide { grid-column: span 1; aspect-ratio: 1; }
  .container { padding: 0 18px; }
  .cta-band .inner { padding: 44px 24px; }
}
