/* ==========================================================================
   Bubbly Samosas — Global Stylesheet
   Premium, bubbly, warm pastel restaurant brand
   ========================================================================== */

/* ---------- Design tokens ---------- */
:root {
  /* Brand palette */
  --pink:        #FF9EC4;
  --pink-soft:   #FFD9E6;
  --pink-tint:   #FFF0F5;
  --cream:       #FFF7EC;
  --saffron:     #F6B12E;
  --saffron-soft:#FFE0A3;
  --peach:       #FFC9A8;
  --mint:        #BCE7D2;
  --mint-soft:   #E4F6EC;
  --brown:       #3A2C26;
  --charcoal:    #2C2522;
  --muted:       #7A6A62;

  /* Surfaces */
  --bg:          #FFFBF5;
  --card:        #FFFFFF;
  --line:        rgba(58, 44, 38, 0.10);

  /* Typography */
  --font-script: 'Pacifico', cursive;
  --font-display:'Fredoka', sans-serif;
  --font-body:   'Nunito', sans-serif;

  /* Radii + shadows */
  --r-sm: 14px;
  --r-md: 22px;
  --r-lg: 32px;
  --r-xl: 44px;
  --r-pill: 999px;
  --shadow-sm: 0 6px 18px rgba(58, 44, 38, 0.08);
  --shadow-md: 0 16px 40px rgba(58, 44, 38, 0.12);
  --shadow-lg: 0 30px 70px rgba(58, 44, 38, 0.16);
  --shadow-pink: 0 18px 40px rgba(255, 110, 165, 0.35);

  /* Layout */
  --maxw: 1200px;
  --gutter: clamp(20px, 5vw, 56px);
  --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(--charcoal);
  background: var(--bg);
  line-height: 1.65;
  font-size: 1.0625rem;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.12;
  color: var(--brown);
  letter-spacing: -0.01em;
}

::selection { background: var(--pink-soft); color: var(--brown); }

/* ---------- Layout helpers ---------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section { padding-block: clamp(64px, 9vw, 120px); position: relative; }
.section--tight { padding-block: clamp(48px, 6vw, 80px); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--pink);
  background: var(--pink-tint);
  padding: 7px 16px;
  border-radius: var(--r-pill);
}
.eyebrow::before { content: "●"; font-size: 0.6em; color: var(--saffron); }

.section-head { max-width: 660px; margin-bottom: clamp(36px, 5vw, 56px); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 {
  font-size: clamp(2rem, 4.4vw, 3.1rem);
  margin-top: 16px;
}
.section-head p {
  margin-top: 16px;
  color: var(--muted);
  font-size: 1.08rem;
}

.text-script { font-family: var(--font-script); color: var(--pink); font-weight: 400; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  padding: 15px 28px;
  border-radius: var(--r-pill);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .3s ease;
  will-change: transform;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }

.btn--primary {
  background: linear-gradient(135deg, var(--pink) 0%, #FF7FB0 100%);
  color: #fff;
  box-shadow: var(--shadow-pink);
}
.btn--primary:hover { transform: translateY(-4px) scale(1.02); box-shadow: 0 24px 50px rgba(255,110,165,.45); }

.btn--saffron {
  background: linear-gradient(135deg, var(--saffron) 0%, #F39B1E 100%);
  color: #fff;
  box-shadow: 0 16px 36px rgba(246, 177, 46, 0.38);
}
.btn--saffron:hover { transform: translateY(-4px) scale(1.02); box-shadow: 0 24px 48px rgba(246,177,46,.5); }

.btn--ghost {
  background: #fff;
  color: var(--brown);
  box-shadow: var(--shadow-sm);
  border: 1.5px solid var(--line);
}
.btn--ghost:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--pink-soft); }

.btn--light { background: rgba(255,255,255,.18); color:#fff; border:1.5px solid rgba(255,255,255,.4); backdrop-filter: blur(6px); }
.btn--light:hover { background: rgba(255,255,255,.3); transform: translateY(-4px); }

.btn--block { width: 100%; }
.btn--lg { padding: 18px 34px; font-size: 1.08rem; }

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  transition: background .35s ease, box-shadow .35s ease, padding .35s ease;
  padding-block: 14px;
}
.site-header.scrolled {
  background: rgba(255, 251, 245, 0.85);
  backdrop-filter: saturate(180%) blur(14px);
  box-shadow: 0 8px 30px rgba(58, 44, 38, 0.08);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

/* Logo */
.logo { display: inline-flex; align-items: center; gap: 12px; }
.logo__mark { width: 46px; height: 46px; flex: none; transition: transform .5s var(--ease); }
.logo:hover .logo__mark { transform: rotate(-8deg) scale(1.06); }
.logo__text { display: flex; flex-direction: column; line-height: 1; }
.logo__name {
  font-family: var(--font-script);
  font-size: 1.5rem;
  color: var(--pink);
  line-height: 1;
}
.logo__tag {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.6rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 3px;
}

/* Nav */
.nav { display: flex; align-items: center; gap: 6px; }
.nav a {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1rem;
  color: var(--brown);
  padding: 9px 16px;
  border-radius: var(--r-pill);
  transition: background .25s ease, color .25s ease;
  position: relative;
}
.nav a:hover { background: var(--pink-tint); color: var(--pink); }
.nav a.active { color: var(--pink); }
.nav a.active::after {
  content:""; position:absolute; left:50%; bottom:2px; transform: translateX(-50%);
  width: 6px; height: 6px; border-radius: 50%; background: var(--saffron);
}

.header-actions { display: flex; align-items: center; gap: 12px; }

/* Mobile toggle */
.nav-toggle {
  display: none;
  width: 46px; height: 46px;
  border-radius: var(--r-sm);
  background: #fff;
  box-shadow: var(--shadow-sm);
  position: relative;
}
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  content: ""; position: absolute; left: 50%; top: 50%;
  width: 20px; height: 2.2px; border-radius: 2px; background: var(--brown);
  transform: translate(-50%, -50%);
  transition: transform .3s var(--ease), opacity .2s ease;
}
.nav-toggle span::before { transform: translate(-50%, -7px); }
.nav-toggle span::after  { transform: translate(-50%, 7px); }
.nav-toggle.open span { background: transparent; }
.nav-toggle.open span::before { transform: translate(-50%, 0) rotate(45deg); }
.nav-toggle.open span::after  { transform: translate(-50%, 0) rotate(-45deg); }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  padding-block: clamp(40px, 7vw, 90px) clamp(60px, 8vw, 110px);
  overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0; z-index: -2;
  background:
    radial-gradient(60% 50% at 12% 0%, var(--pink-tint) 0%, transparent 60%),
    radial-gradient(50% 50% at 95% 15%, var(--mint-soft) 0%, transparent 60%),
    radial-gradient(60% 60% at 70% 100%, var(--saffron-soft) 0%, transparent 55%),
    var(--cream);
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: clamp(32px, 5vw, 64px);
}
.hero__content { max-width: 620px; }
.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.4rem);
  margin-block: 22px 20px;
}
.hero h1 .text-script { display: block; font-size: 0.78em; }
.hero__sub {
  font-size: clamp(1.05rem, 2.2vw, 1.22rem);
  color: var(--muted);
  max-width: 520px;
}
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.hero__trust {
  display: flex; align-items: center; gap: 22px; margin-top: 36px; flex-wrap: wrap;
}
.hero__trust .stars { color: var(--saffron); font-size: 1.05rem; letter-spacing: 2px; }
.hero__trust small { color: var(--muted); font-weight: 600; }
.hero__avatars { display: flex; }
.hero__avatars span {
  width: 38px; height: 38px; border-radius: 50%; margin-left: -10px;
  border: 2.5px solid #fff; background: var(--pink-soft);
  display: grid; place-items: center; font-size: 1rem; box-shadow: var(--shadow-sm);
}
.hero__avatars span:first-child { margin-left: 0; }

/* Hero visual */
.hero__visual { position: relative; }
.hero__photo {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 4.4;
  background: var(--pink-soft);
  border: 8px solid #fff;
}
.hero__photo img { width: 100%; height: 100%; object-fit: cover; }

.hero__badge {
  position: absolute;
  background: #fff;
  border-radius: var(--r-md);
  box-shadow: var(--shadow-md);
  padding: 14px 18px;
  display: flex; align-items: center; gap: 12px;
}
.hero__badge .emoji { font-size: 1.6rem; }
.hero__badge strong { font-family: var(--font-display); display: block; font-size: 1rem; color: var(--brown); }
.hero__badge small { color: var(--muted); font-size: .82rem; }
.hero__badge--tl { top: 18px; left: -26px; animation: floatY 5s ease-in-out infinite; }
.hero__badge--br { bottom: 24px; right: -22px; animation: floatY 6s ease-in-out infinite .5s; }

@keyframes floatY {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* ==========================================================================
   Floating bubbles (decorative)
   ========================================================================== */
.bubbles { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: -1; }
.bubble {
  position: absolute;
  border-radius: 50%;
  opacity: .5;
  animation: bubbleFloat linear infinite;
}
@keyframes bubbleFloat {
  0%   { transform: translateY(20px) translateX(0) scale(.9); opacity: 0; }
  15%  { opacity: .5; }
  100% { transform: translateY(-120px) translateX(20px) scale(1.1); opacity: 0; }
}

/* ==========================================================================
   Logo cloud / marquee strip
   ========================================================================== */
.strip {
  background: var(--brown);
  color: #fff;
  padding-block: 16px;
  overflow: hidden;
}
.strip__track {
  display: flex; gap: 56px; width: max-content;
  animation: marquee 28s linear infinite;
}
.strip__track span {
  font-family: var(--font-display); font-weight: 500; font-size: 1.05rem;
  display: inline-flex; align-items: center; gap: 14px; color: rgba(255,255,255,.92);
  white-space: nowrap;
}
.strip__track span::after { content:"✦"; color: var(--saffron); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ==========================================================================
   Story / split
   ========================================================================== */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.split--reverse .split__media { order: 2; }
.split__media { position: relative; }
.split__media img {
  width: 100%; border-radius: var(--r-lg); box-shadow: var(--shadow-md);
  aspect-ratio: 5/4.4; object-fit: cover; border: 7px solid #fff;
}
.split__body h2 { font-size: clamp(1.9rem, 4vw, 2.8rem); }
.split__body p { color: var(--muted); margin-top: 18px; }

.feature-list { margin-top: 28px; display: grid; gap: 16px; }
.feature-list li { display: flex; gap: 14px; align-items: flex-start; }
.feature-list .ic {
  flex: none; width: 42px; height: 42px; border-radius: var(--r-sm);
  display: grid; place-items: center; font-size: 1.2rem;
  background: var(--mint-soft);
}
.feature-list li:nth-child(2) .ic { background: var(--pink-tint); }
.feature-list li:nth-child(3) .ic { background: #FFF1DC; }
.feature-list strong { font-family: var(--font-display); color: var(--brown); display: block; }
.feature-list span { color: var(--muted); font-size: .96rem; }

/* ==========================================================================
   Featured products / cards
   ========================================================================== */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 26px;
}
.product-card {
  background: var(--card);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
  display: flex; flex-direction: column;
  border: 1px solid var(--line);
}
.product-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.product-card__media { position: relative; aspect-ratio: 4/3; overflow: hidden; background: var(--pink-soft); }
.product-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.product-card:hover .product-card__media img { transform: scale(1.08); }
.product-card__tag {
  position: absolute; top: 14px; left: 14px;
  background: rgba(255,255,255,.92); backdrop-filter: blur(4px);
  color: var(--brown); font-family: var(--font-display); font-weight: 600;
  font-size: .76rem; padding: 6px 13px; border-radius: var(--r-pill);
}
.product-card__tag.hot { background: var(--pink); color: #fff; }
.product-card__tag.veg { background: var(--mint); color: #1f5b40; }
.product-card__body { padding: 20px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.product-card__body h3 { font-size: 1.22rem; }
.product-card__body p { color: var(--muted); font-size: .94rem; margin-top: 6px; flex: 1; }
.product-card__foot { display: flex; align-items: center; justify-content: space-between; margin-top: 18px; }
.product-card__price { font-family: var(--font-display); font-weight: 600; font-size: 1.25rem; color: var(--brown); }
.product-card__price small { font-weight: 500; font-size: .8rem; color: var(--muted); }
.add-btn {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--pink-tint); color: var(--pink);
  display: grid; place-items: center; font-size: 1.4rem; font-weight: 700;
  transition: background .25s ease, transform .25s ease, color .25s ease;
}
.add-btn:hover { background: var(--pink); color: #fff; transform: scale(1.12) rotate(90deg); }

/* ==========================================================================
   Why-love feature blocks
   ========================================================================== */
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 24px; }
.why-card {
  background: var(--card); border-radius: var(--r-lg); padding: 32px 28px;
  box-shadow: var(--shadow-sm); border: 1px solid var(--line);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.why-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.why-card .ic {
  width: 60px; height: 60px; border-radius: var(--r-md); display: grid; place-items: center;
  font-size: 1.8rem; margin-bottom: 18px;
  background: var(--pink-tint);
}
.why-card:nth-child(2) .ic { background: var(--mint-soft); }
.why-card:nth-child(3) .ic { background: #FFF1DC; }
.why-card:nth-child(4) .ic { background: #EFEAFB; }
.why-card h3 { font-size: 1.2rem; }
.why-card p { color: var(--muted); font-size: .96rem; margin-top: 8px; }

/* ==========================================================================
   Order-type highlight (3 ways)
   ========================================================================== */
.ways-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; }
.way-card {
  position: relative; isolation: isolate;
  border-radius: var(--r-lg); overflow: hidden; min-height: 320px;
  display: flex; flex-direction: column; justify-content: flex-end; padding: 28px;
  color: #fff; box-shadow: var(--shadow-md);
  transition: transform .45s var(--ease);
}
.way-card:hover { transform: translateY(-8px); }
.way-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; }
.way-card::after {
  content:""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(44,34,28,0) 30%, rgba(44,34,28,.85) 100%);
}
.way-card h3 { color: #fff; font-size: 1.5rem; }
.way-card p { color: rgba(255,255,255,.9); font-size: .96rem; margin-top: 6px; }
.way-card .pill {
  align-self: flex-start; margin-bottom: 14px;
  background: rgba(255,255,255,.2); backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,.35);
  padding: 6px 14px; border-radius: var(--r-pill); font-size: .8rem;
  font-family: var(--font-display); font-weight: 600;
}

/* ==========================================================================
   Testimonials
   ========================================================================== */
.testi-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 24px; }
.testi-card {
  background: var(--card); border-radius: var(--r-lg); padding: 30px 28px;
  box-shadow: var(--shadow-sm); border: 1px solid var(--line);
  display: flex; flex-direction: column;
}
.testi-card .stars { color: var(--saffron); letter-spacing: 2px; margin-bottom: 14px; }
.testi-card blockquote { font-size: 1.05rem; color: var(--brown); flex: 1; }
.testi-card .who { display: flex; align-items: center; gap: 12px; margin-top: 22px; }
.testi-card .who .av {
  width: 46px; height: 46px; border-radius: 50%; background: var(--pink-soft);
  display: grid; place-items: center; font-size: 1.2rem; flex: none;
}
.testi-card .who strong { font-family: var(--font-display); display: block; color: var(--brown); }
.testi-card .who small { color: var(--muted); }

/* ==========================================================================
   CTA band
   ========================================================================== */
.cta-band { position: relative; overflow: hidden; }
.cta-inner {
  position: relative;
  background: linear-gradient(135deg, var(--pink) 0%, #FF7FB0 55%, var(--saffron) 130%);
  border-radius: var(--r-xl);
  padding: clamp(40px, 6vw, 72px);
  text-align: center;
  color: #fff;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.cta-inner h2 { color: #fff; font-size: clamp(2rem, 4.5vw, 3.2rem); }
.cta-inner p { color: rgba(255,255,255,.92); max-width: 540px; margin: 16px auto 0; font-size: 1.1rem; }
.cta-inner .hero__cta { justify-content: center; }
.cta-inner .deco { position: absolute; border-radius: 50%; background: rgba(255,255,255,.16); }
.cta-inner .deco.d1 { width: 180px; height: 180px; top: -60px; left: -40px; }
.cta-inner .deco.d2 { width: 120px; height: 120px; bottom: -40px; right: 8%; }
.cta-inner .deco.d3 { width: 70px; height: 70px; top: 30%; right: -20px; }

/* ==========================================================================
   Page hero (interior pages)
   ========================================================================== */
.page-hero {
  position: relative; overflow: hidden;
  padding-block: clamp(48px, 7vw, 90px);
  text-align: center;
  background:
    radial-gradient(50% 60% at 20% 0%, var(--pink-tint) 0%, transparent 60%),
    radial-gradient(50% 60% at 85% 10%, var(--mint-soft) 0%, transparent 60%),
    var(--cream);
}
.page-hero .eyebrow { margin-bottom: 16px; }
.page-hero h1 { font-size: clamp(2.3rem, 5.5vw, 3.8rem); }
.page-hero p { color: var(--muted); max-width: 600px; margin: 18px auto 0; font-size: 1.12rem; }
.breadcrumb { display: flex; gap: 8px; justify-content: center; margin-top: 18px; font-size: .9rem; color: var(--muted); }
.breadcrumb a:hover { color: var(--pink); }

/* ==========================================================================
   Menu page
   ========================================================================== */
.menu-note {
  background: var(--saffron-soft);
  border: 1px dashed rgba(180, 120, 20, .4);
  color: #7a5510;
  border-radius: var(--r-md);
  padding: 16px 22px;
  font-size: .96rem;
  font-weight: 600;
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 40px;
}
.menu-note .emoji { font-size: 1.3rem; }

.menu-section { margin-bottom: clamp(48px, 7vw, 80px); }
.menu-section__head { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; flex-wrap: wrap; margin-bottom: 30px; }
.menu-section__head h2 { font-size: clamp(1.7rem, 3.6vw, 2.4rem); }
.menu-section__head .lead { color: var(--muted); margin-top: 6px; }
.menu-section__price-note { color: var(--pink); font-family: var(--font-display); font-weight: 600; }

/* ==========================================================================
   Frozen box highlight
   ========================================================================== */
.frozen-band {
  background: linear-gradient(135deg, var(--mint-soft), #DFF1FF);
  border-radius: var(--r-xl);
  padding: clamp(32px, 5vw, 56px);
}

/* ==========================================================================
   About — values + steps
   ========================================================================== */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap: 24px; counter-reset: step; }
.step {
  background: var(--card); border-radius: var(--r-lg); padding: 30px 26px;
  box-shadow: var(--shadow-sm); border: 1px solid var(--line); position: relative;
}
.step .num {
  font-family: var(--font-display); font-weight: 700; font-size: 1.1rem;
  width: 44px; height: 44px; border-radius: 50%; background: var(--pink); color: #fff;
  display: grid; place-items: center; margin-bottom: 16px;
}
.step:nth-child(2) .num { background: var(--saffron); }
.step:nth-child(3) .num { background: var(--mint); color:#1f5b40; }
.step:nth-child(4) .num { background: var(--brown); }
.step h3 { font-size: 1.18rem; }
.step p { color: var(--muted); font-size: .95rem; margin-top: 8px; }

.stat-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px,1fr)); gap: 20px; }
.stat { text-align: center; padding: 28px 16px; background: var(--card); border-radius: var(--r-lg); box-shadow: var(--shadow-sm); border: 1px solid var(--line); }
.stat .big { font-family: var(--font-display); font-weight: 700; font-size: clamp(2rem,4vw,2.8rem); color: var(--pink); line-height: 1; }
.stat .lbl { color: var(--muted); font-size: .92rem; margin-top: 8px; }

/* ==========================================================================
   Order / Contact page
   ========================================================================== */
.order-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: clamp(28px, 4vw, 48px); align-items: start; }

.form-card {
  background: var(--card); border-radius: var(--r-xl); padding: clamp(26px, 4vw, 44px);
  box-shadow: var(--shadow-md); border: 1px solid var(--line);
}
.form-card h2 { font-size: 1.7rem; }
.form-card > p { color: var(--muted); margin-top: 8px; margin-bottom: 26px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-family: var(--font-display); font-weight: 500; font-size: .92rem; margin-bottom: 8px; color: var(--brown); }
.field .req { color: var(--pink); }
.field input, .field select, .field textarea {
  width: 100%; font-family: var(--font-body); font-size: 1rem; color: var(--charcoal);
  background: var(--bg); border: 1.5px solid var(--line); border-radius: var(--r-sm);
  padding: 13px 16px; transition: border-color .25s ease, box-shadow .25s ease, background .25s ease;
}
.field textarea { resize: vertical; min-height: 110px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--pink); background: #fff;
  box-shadow: 0 0 0 4px var(--pink-tint);
}

/* Choice chips (order type / fulfilment) */
.chips { display: flex; flex-wrap: wrap; gap: 10px; }
.chip { position: relative; }
.chip input { position: absolute; opacity: 0; inset: 0; cursor: pointer; }
.chip span {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-display); font-weight: 500; font-size: .94rem;
  padding: 11px 18px; border-radius: var(--r-pill);
  background: var(--bg); border: 1.5px solid var(--line); color: var(--brown);
  transition: all .25s ease;
}
.chip input:checked + span { background: var(--pink); color: #fff; border-color: var(--pink); box-shadow: var(--shadow-pink); }
.chip input:focus-visible + span { box-shadow: 0 0 0 4px var(--pink-tint); }

.form-msg {
  margin-top: 18px; padding: 16px 20px; border-radius: var(--r-md);
  background: var(--mint-soft); color: #1f5b40; font-weight: 600;
  display: none; align-items: center; gap: 12px;
}
.form-msg.show { display: flex; animation: pop .4s var(--ease); }
@keyframes pop { from { transform: scale(.96); opacity: 0; } to { transform: scale(1); opacity: 1; } }

/* Contact aside */
.contact-aside { display: grid; gap: 18px; }
.info-card {
  background: var(--card); border-radius: var(--r-lg); padding: 26px;
  box-shadow: var(--shadow-sm); border: 1px solid var(--line);
}
.info-card.accent { background: linear-gradient(135deg, var(--pink) 0%, #FF7FB0 100%); color: #fff; }
.info-card.accent h3, .info-card.accent a { color: #fff; }
.info-card h3 { font-size: 1.15rem; margin-bottom: 14px; display: flex; align-items: center; gap: 10px; }
.info-list { display: grid; gap: 12px; }
.info-list li { display: flex; gap: 12px; align-items: flex-start; color: var(--muted); font-size: .96rem; }
.info-card.accent .info-list li { color: rgba(255,255,255,.92); }
.info-list .ic { flex: none; font-size: 1.1rem; }
.info-list strong { color: var(--brown); font-family: var(--font-display); }
.info-card.accent .info-list strong { color: #fff; }

.hours-table { width: 100%; border-collapse: collapse; }
.hours-table td { padding: 9px 0; border-bottom: 1px solid var(--line); font-size: .96rem; }
.hours-table td:last-child { text-align: right; color: var(--muted); font-weight: 600; }
.hours-table tr:last-child td { border-bottom: none; }

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq { max-width: 760px; margin-inline: auto; display: grid; gap: 14px; }
.faq-item {
  background: var(--card); border-radius: var(--r-md); border: 1px solid var(--line);
  box-shadow: var(--shadow-sm); overflow: hidden;
}
.faq-q {
  width: 100%; text-align: left; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 20px 24px; font-family: var(--font-display); font-weight: 600; font-size: 1.08rem; color: var(--brown);
}
.faq-q .plus { flex: none; width: 28px; height: 28px; border-radius: 50%; background: var(--pink-tint); color: var(--pink); display: grid; place-items: center; font-size: 1.3rem; transition: transform .3s var(--ease), background .3s ease, color .3s ease; }
.faq-item.open .faq-q .plus { transform: rotate(135deg); background: var(--pink); color: #fff; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); }
.faq-a-inner { padding: 0 24px 22px; color: var(--muted); }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer { background: var(--brown); color: rgba(255,255,255,.82); padding-block: clamp(48px, 7vw, 80px) 32px; position: relative; overflow: hidden; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; }
.site-footer .logo__name { color: #fff; }
.site-footer .logo__tag { color: rgba(255,255,255,.55); }
.footer-about { margin-top: 18px; max-width: 320px; font-size: .96rem; color: rgba(255,255,255,.7); }
.footer-col h4 { color: #fff; font-size: 1.05rem; margin-bottom: 18px; }
.footer-col ul { display: grid; gap: 11px; }
.footer-col a, .footer-col li { font-size: .96rem; color: rgba(255,255,255,.72); transition: color .2s ease; }
.footer-col a:hover { color: var(--pink); }
.footer-social { display: flex; gap: 12px; margin-top: 18px; }
.footer-social a {
  width: 42px; height: 42px; border-radius: 50%; background: rgba(255,255,255,.1);
  display: grid; place-items: center; transition: background .25s ease, transform .25s ease;
}
.footer-social a:hover { background: var(--pink); transform: translateY(-3px); }
.footer-social svg { width: 18px; height: 18px; fill: #fff; }
.footer-bottom {
  margin-top: 44px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.12);
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  font-size: .88rem; color: rgba(255,255,255,.6);
}

/* ==========================================================================
   Scroll reveal
   ========================================================================== */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }
.reveal[data-delay="4"] { transition-delay: .32s; }

/* Page fade-in */
.page-fade { animation: pageIn .6s var(--ease) both; }
@keyframes pageIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 980px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__visual { max-width: 460px; margin-inline: auto; }
  .hero__content { max-width: 640px; }
  .split { grid-template-columns: 1fr; }
  .split--reverse .split__media { order: 0; }
  .order-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 760px) {
  .nav-toggle { display: grid; }
  .nav {
    position: fixed; inset: 0 0 auto 0; top: 0;
    flex-direction: column; align-items: stretch; gap: 6px;
    background: var(--bg); padding: 90px 24px 32px;
    transform: translateY(-100%); transition: transform .45s var(--ease);
    box-shadow: var(--shadow-lg); height: auto; z-index: 90;
  }
  .nav.open { transform: translateY(0); }
  .header-inner .logo,
  .header-inner .header-actions { position: relative; z-index: 95; }
  .logo__mark { width: 40px; height: 40px; }
  .logo__name { font-size: 1.25rem; white-space: nowrap; }
  .logo__tag { font-size: .54rem; letter-spacing: .22em; }
  .header-actions { gap: 8px; }
  .nav a { font-size: 1.15rem; padding: 14px 18px; }
  .nav a.active::after { display: none; }
  .header-actions .btn { display: none; }
  .header-actions .nav-cta-mobile { display: inline-flex; }
  .hero__badge--tl { left: 8px; }
  .hero__badge--br { right: 8px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .menu-section__head { flex-direction: column; align-items: flex-start; }
}

@media (min-width: 761px) {
  .nav-cta-mobile { display: none; }
}

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