/* =========================================================
   G-Vital Vibes — site stylesheet
   Design language extended from the source hero section:
   hand-set stickers, dashed rubber-stamp badges, thick ink
   borders with offset hard shadows, painted radial washes,
   Fredoka/Caveat/Nunito type, palm + squiggle motifs.
========================================================= */

:root {
  --cyan: #17c9c9;
  --cyan-deep: #0a8f9c;
  --pink: #ec2f8e;
  --pink-deep: #b81972;
  --yellow: #ffcb2e;
  --leaf: #269e5e;
  --leaf-dark: #0d6b3c;
  --ink: #0c2b2e;
  --paper: #fdf6e7;
  --paper-dim: #f6ecd6;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

html, body {
  width: 100%;
  font-family: 'Nunito', system-ui, sans-serif;
  background: var(--paper);
  overflow-x: hidden;
  color: var(--ink);
}

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

section { position: relative; }
section[id] { scroll-margin-top: 92px; }

.wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding-inline: 2rem;
}

/* ---------- shared motifs ---------- */

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--paper);
  border: 3px dashed var(--pink-deep);
  color: var(--pink-deep);
  padding: 0.5rem 1.3rem;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: 0.03em;
  font-size: 0.8rem;
  transform: rotate(-3deg);
  box-shadow: 3px 4px 0 rgba(0,0,0,0.12);
}

/* quiet section label — used instead of .badge everywhere except the hero
   and story, so the dashed-stamp motif reads as a signature detail rather
   than a repeated template widget */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1rem;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--pink-deep);
}
.section-tag::before {
  content: "";
  width: 26px;
  height: 2px;
  background: currentColor;
  opacity: 0.55;
  display: inline-block;
}
.section-tag.on-dark { color: var(--yellow); }

.pill {
  background: var(--paper);
  border: 1.5px solid rgba(12,43,46,0.15);
  color: var(--ink);
  padding: 0.45rem 1.05rem;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 800;
  box-shadow: 0 2px 6px rgba(12,43,46,0.08);
  display: inline-block;
}

.btn {
  position: relative;
  padding: 0.9rem 2.1rem;
  border-radius: 12px;
  font-family: 'Fredoka', sans-serif;
  font-weight: 600;
  font-size: 1.02rem;
  letter-spacing: 0.01em;
  text-decoration: none;
  border: none;
  cursor: pointer;
  display: inline-block;
  transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
}
.btn-primary {
  background: var(--pink); color: #fff;
  box-shadow: 0 1px 0 rgba(255,255,255,0.25) inset, 0 10px 22px -10px rgba(184,25,114,0.65);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 1px 0 rgba(255,255,255,0.25) inset, 0 14px 26px -8px rgba(184,25,114,0.6); filter: brightness(1.04); }
.btn-primary:active { transform: translateY(0); box-shadow: 0 1px 0 rgba(255,255,255,0.15) inset, 0 6px 14px -8px rgba(184,25,114,0.6); }
.btn-secondary {
  background: var(--yellow); color: var(--ink);
  box-shadow: 0 1px 0 rgba(255,255,255,0.4) inset, 0 10px 22px -10px rgba(255,203,46,0.7);
}
.btn-secondary:hover { transform: translateY(-2px); box-shadow: 0 1px 0 rgba(255,255,255,0.4) inset, 0 14px 26px -8px rgba(255,203,46,0.65); filter: brightness(1.02); }
.btn-secondary:active { transform: translateY(0); box-shadow: 0 1px 0 rgba(255,255,255,0.3) inset, 0 6px 14px -8px rgba(255,203,46,0.6); }
.btn-outline {
  background: rgba(253,246,231,0.08); color: var(--paper);
  border: 1.5px solid rgba(253,246,231,0.55);
  box-shadow: none;
}
.btn-outline:hover { transform: translateY(-2px); background: rgba(253,246,231,0.14); border-color: var(--paper); }
.btn-outline:active { transform: translateY(0); }

.eyebrow-title {
  font-family: 'Fredoka', sans-serif;
  font-size: clamp(2rem, 4.4vw, 3.1rem);
  line-height: 1.1;
  color: var(--ink);
  text-wrap: balance;
}
.eyebrow-title .accent {
  font-family: 'Caveat', cursive;
  color: var(--pink);
  font-size: 1.15em;
  display: inline-block;
  transform: rotate(-2deg);
}

.squiggle-rule { display: block; width: 160px; height: 16px; margin-top: 0.4rem; }

/* photo frame — taped/instax feel used across sections */
.photo-frame {
  position: relative;
  background: #fff;
  border: 3px solid var(--ink);
  border-radius: 14px;
  padding: 10px 10px 14px;
  box-shadow: 6px 7px 0 rgba(12,43,46,0.18);
}
.photo-frame img { border-radius: 6px; width: 100%; height: 100%; object-fit: cover; display: block; }
.photo-frame.tilt-l { transform: rotate(-3deg); }
.photo-frame.tilt-r { transform: rotate(3deg); }

/* reveal-on-scroll (one-time fade/slide-in) */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
[data-reveal].is-visible { opacity: 1; transform: none; }
[data-reveal="left"] { transform: translateX(-32px); }
[data-reveal="left"].is-visible { transform: none; }
[data-reveal="right"] { transform: translateX(32px); }
[data-reveal="right"].is-visible { transform: none; }
[data-reveal="scale"] { transform: scale(0.92); }
[data-reveal="scale"].is-visible { transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  [data-reveal] { opacity: 1 !important; transform: none !important; transition: none !important; }
  [data-parallax] { transform: none !important; }
  .float-el { animation: none !important; }
}

/* =========================================================
   NAV
========================================================= */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 1.6rem;
  background: transparent;
  transition: background 0.25s ease, box-shadow 0.25s ease, padding 0.25s ease;
}
.site-nav.scrolled {
  background: var(--paper);
  box-shadow: 0 3px 0 rgba(12,43,46,0.15);
  padding: 0.6rem 1.6rem;
}
.nav-brand { display: flex; align-items: center; gap: 0.6rem; text-decoration: none; }
.nav-logo-orb {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--cyan); border: 2.5px solid var(--ink);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; flex-shrink: 0;
}
.nav-logo-orb img { width: 100%; height: 100%; object-fit: cover; }
.nav-brand span {
  font-family: 'Fredoka', sans-serif; font-weight: 700;
  color: var(--ink); font-size: 1.15rem;
}
.nav-links {
  display: flex; gap: 1.6rem; list-style: none;
}
.nav-links a {
  font-family: 'Nunito', sans-serif; font-weight: 800;
  font-size: 0.92rem; color: var(--ink); text-decoration: none;
  position: relative;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -4px;
  height: 3px; background: var(--pink); transform: scaleX(0);
  transform-origin: left; transition: transform 0.2s ease;
}
.nav-links a:hover::after { transform: scaleX(1); }
.nav-cta { display: none; }
@media (min-width: 900px) {
  .nav-cta { display: inline-block; padding: 0.55rem 1.3rem; font-size: 0.9rem; }
}
.nav-toggle {
  display: flex; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 0.4rem;
  z-index: 101;
}
.nav-toggle span { width: 26px; height: 3px; background: var(--ink); border-radius: 2px; transition: transform 0.2s ease, opacity 0.2s ease; }
@media (min-width: 900px) { .nav-toggle { display: none; } }
@media (max-width: 899px) { .nav-links { display: none; } }

.mobile-menu {
  position: fixed; inset: 0; z-index: 99;
  background: var(--paper);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 1.6rem;
  transform: translateY(-100%);
  transition: transform 0.35s ease;
}
.mobile-menu.open { transform: translateY(0); }
.mobile-menu a {
  font-family: 'Fredoka', sans-serif; font-size: 1.6rem; color: var(--ink); text-decoration: none;
}

/* =========================================================
   HERO — verbatim from source reference
========================================================= */
section.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  background: var(--cyan);
  background-image: radial-gradient(circle, rgba(255,255,255,0.18) 1.5px, transparent 1.5px);
  background-size: 18px 18px;
  overflow: hidden;
  padding: 5rem 2rem 3rem;
  isolation: isolate;
}
section.hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 45% at 12% 8%, rgba(255,203,46,0.35), transparent 60%),
    radial-gradient(ellipse 55% 50% at 92% 95%, rgba(236,47,142,0.4), transparent 60%),
    radial-gradient(ellipse 40% 35% at 100% 10%, rgba(10,143,156,0.5), transparent 65%);
  z-index: 0; pointer-events: none;
}
section.hero::after {
  content: ""; position: absolute; inset: 0; z-index: 4; pointer-events: none; opacity: 0.06;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.float-el {
  position: absolute; font-size: 2.6rem;
  filter: drop-shadow(2px 4px 0 rgba(0,0,0,0.15));
  will-change: transform; pointer-events: none; user-select: none; z-index: 2;
}
.palm-left { position: absolute; left: -50px; bottom: -30px; width: 300px; opacity: 0.95; z-index: 1; transform: rotate(-4deg); }
.palm-right { position: absolute; right: -40px; top: -50px; width: 230px; transform: rotate(178deg) scaleX(-1); opacity: 0.85; z-index: 1; }
.hero .content {
  position: relative; z-index: 3; max-width: 800px; text-align: center;
  display: flex; flex-direction: column; align-items: center;
}
.hero h1 {
  font-family: 'Fredoka', sans-serif;
  font-size: clamp(2.3rem, 6.6vw, 4.4rem);
  font-weight: 700; line-height: 1.08; color: #fff;
  text-shadow: 0 2px 18px rgba(10,60,64,0.35);
}
.accent-wrap { position: relative; display: inline-block; margin-top: 0.3rem; }
.hero h1 .accent {
  display: block; font-family: 'Caveat', cursive; font-weight: 700;
  font-size: 1.5em; color: var(--yellow);
  text-shadow: 0 2px 14px rgba(10,60,64,0.3);
}
.squiggle { display: block; width: 220px; max-width: 60vw; height: 18px; margin: 0.2rem auto 0; }
.hero p.tagline {
  margin-top: 1.3rem; font-size: 1.1rem; font-weight: 700; color: #06393d;
  max-width: 44ch; line-height: 1.55; background: rgba(255,255,255,0.35);
  padding: 0.3rem 0.9rem; border-radius: 10px;
}
.hero .pills { display: flex; flex-wrap: wrap; gap: 0.6rem; justify-content: center; margin-top: 1.7rem; }
.hero .cta-row { display: flex; gap: 1.1rem; flex-wrap: wrap; justify-content: center; margin-top: 2.3rem; }
.logo-tag {
  margin-top: 2.4rem; display: inline-flex; align-items: center; gap: 0.6rem;
  background: var(--paper); border: 3px solid var(--ink); border-radius: 999px;
  padding: 0.4rem 1rem 0.4rem 0.4rem; box-shadow: 3px 4px 0 rgba(0,0,0,0.2); transform: rotate(-1deg);
}
.logo-orb {
  width: 46px; height: 46px; border-radius: 50%; background: var(--cyan);
  border: 2.5px solid var(--ink); display: flex; align-items: center; justify-content: center;
}
.logo-orb span { font-family: 'Fredoka', sans-serif; font-weight: 700; color: var(--pink-deep); font-size: 1.2rem; }
.logo-tag small { font-family: 'Caveat', cursive; font-weight: 600; font-size: 1.2rem; color: var(--ink); }

.scroll-cue {
  position: absolute; bottom: 1.4rem; left: 50%; transform: translateX(-50%);
  z-index: 3; color: #06393d; font-weight: 800; font-size: 0.75rem;
  letter-spacing: 0.15em; text-transform: uppercase; opacity: 0.75;
  display: flex; flex-direction: column; align-items: center; gap: 0.3rem;
}
.scroll-cue .line { width: 2px; height: 22px; background: currentColor; animation: scrollLine 1.8s ease-in-out infinite; }
@keyframes scrollLine { 0%,100%{ transform: scaleY(0.4); opacity: 0.4;} 50%{ transform: scaleY(1); opacity: 1;} }
@media (prefers-reduced-motion: reduce) { .scroll-cue .line { animation: none; } }

@media (max-width: 640px) {
  .palm-left, .palm-right { width: 160px; }
  .float-el { font-size: 1.9rem; }
}

/* =========================================================
   OUR STORY — split, overlapping photos
========================================================= */
.story {
  background: var(--paper);
  padding: 7rem 0 6rem;
  overflow: hidden;
}
.story .wrap {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3.5rem;
  align-items: center;
}
.story-media { position: relative; min-height: 420px; }
.story-media .photo-frame.main { width: 78%; aspect-ratio: 4/5; position: relative; z-index: 2; }
.story-media .photo-frame.accent {
  width: 46%; aspect-ratio: 1/1; position: absolute; right: 0; bottom: -1.5rem; z-index: 3;
}
.story-media .badge.float-badge {
  position: absolute; top: -1.2rem; left: -0.6rem; z-index: 4;
}
.story-text .badge { margin-bottom: 1.1rem; }
.story-text p { font-size: 1.05rem; line-height: 1.7; font-weight: 600; color: #24494c; margin-top: 1.1rem; max-width: 52ch; }
.story-stats { display: flex; gap: 1.6rem; margin-top: 2rem; flex-wrap: wrap; }
.story-stat { display: flex; flex-direction: column; }
.story-stat b { font-family: 'Fredoka', sans-serif; font-size: 2rem; color: var(--pink-deep); line-height: 1; }
.story-stat span { font-size: 0.8rem; font-weight: 800; color: #24494c; text-transform: uppercase; letter-spacing: 0.04em; margin-top: 0.3rem; }

@media (max-width: 860px) {
  .story .wrap { grid-template-columns: 1fr; }
  .story-media { min-height: 320px; margin-bottom: 1rem; }
}

/* =========================================================
   MENU — collage anchor + rotated category cards
========================================================= */
.menu {
  background: var(--ink);
  padding: 7rem 0 6rem;
  position: relative;
  overflow: hidden;
}
.menu::before {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(253,246,231,0.05) 1.5px, transparent 1.5px);
  background-size: 20px 20px;
}
.menu .wrap { position: relative; z-index: 2; }
.menu-head { max-width: 640px; margin-bottom: 3rem; }
.menu-head .eyebrow-title { color: var(--paper); }
.menu-head p { color: rgba(253,246,231,0.75); font-weight: 700; margin-top: 1rem; font-size: 1.02rem; }
.menu-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.menu-layout .photo-frame { aspect-ratio: 4/3; }
.menu-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.menu-card {
  background: var(--paper); border: 3px solid var(--paper);
  border-radius: 16px; padding: 1.4rem 1.3rem;
  box-shadow: 5px 6px 0 rgba(253,246,231,0.15);
}
.menu-card:nth-child(1) { transform: rotate(-2deg); }
.menu-card:nth-child(2) { transform: rotate(1.5deg); }
.menu-card:nth-child(3) { transform: rotate(1.2deg); }
.menu-card:nth-child(4) { transform: rotate(-1.4deg); }
.menu-card h3 { font-family: 'Fredoka', sans-serif; color: var(--pink-deep); font-size: 1.15rem; margin-bottom: 0.5rem; }
.menu-card p { font-size: 0.92rem; font-weight: 700; color: #29403f; line-height: 1.5; }
.menu-note { margin-top: 2rem; color: rgba(253,246,231,0.7); font-weight: 700; font-size: 0.9rem; }
.menu-note a { color: var(--yellow); }

@media (max-width: 860px) {
  .menu-layout { grid-template-columns: 1fr; }
  .menu-cards { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) {
  .menu-cards { grid-template-columns: 1fr; }
}

/* =========================================================
   FEATURED — full-bleed filmstrip
========================================================= */
.featured { background: var(--paper); padding: 6rem 0 2rem; }
.featured-head { text-align: center; max-width: 620px; margin: 0 auto 3rem; padding-inline: 2rem; }
.featured-head p { margin-top: 1rem; font-weight: 700; color: #24494c; }
.filmstrip {
  display: flex; gap: 1.4rem; overflow-x: auto; padding: 1rem 2rem 3rem;
  scroll-snap-type: x proximity;
  scrollbar-width: thin;
}
.filmstrip::-webkit-scrollbar { height: 8px; }
.filmstrip::-webkit-scrollbar-thumb { background: var(--ink); border-radius: 4px; }
.film-item {
  flex: 0 0 auto; width: 260px; scroll-snap-align: start;
}
.film-item .photo-frame { aspect-ratio: 3/4; }
.film-item figcaption {
  margin-top: 0.7rem; text-align: center; font-family: 'Caveat', cursive;
  font-size: 1.3rem; color: var(--pink-deep); font-weight: 700;
}

/* =========================================================
   GALLERY — overlapping tilted wall
========================================================= */
.gallery { background: var(--paper-dim); padding: 6rem 0 6rem; overflow: hidden; }
.gallery-head { display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: 1.5rem; margin-bottom: 3rem; }
.gallery-head p { font-weight: 700; color: #24494c; margin-top: 0.8rem; max-width: 40ch; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-auto-rows: 140px;
  gap: 1.1rem;
}
.gallery-grid .photo-frame { width: 100%; height: 100%; padding: 6px 6px 10px; }
.g-1 { grid-column: span 2; grid-row: span 2; }
.g-2 { grid-column: span 2; grid-row: span 1; }
.g-3 { grid-column: span 1; grid-row: span 2; }
.g-4 { grid-column: span 2; grid-row: span 2; }
.g-5 { grid-column: span 1; grid-row: span 1; }
.g-6 { grid-column: span 2; grid-row: span 1; }
.g-7 { grid-column: span 1; grid-row: span 2; }
.g-8 { grid-column: span 2; grid-row: span 2; }
.g-9 { grid-column: span 2; grid-row: span 1; }
.g-10 { grid-column: span 1; grid-row: span 1; }

@media (max-width: 900px) {
  .gallery-grid { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 120px; }
  .g-1,.g-4,.g-8 { grid-column: span 2; grid-row: span 2; }
  .g-2,.g-6,.g-9 { grid-column: span 1; grid-row: span 1; }
  .g-3,.g-5,.g-7,.g-10 { grid-column: span 1; grid-row: span 1; }
}
@media (max-width: 560px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 130px; }
  .gallery-grid > div { grid-column: span 1 !important; grid-row: span 1 !important; }
}

/* =========================================================
   VIDEO / BEHIND THE SCENES
========================================================= */
.reels-section { background: var(--cyan-deep); padding: 6rem 0; position: relative; overflow: hidden; }
.reels-section::before {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.12) 1.5px, transparent 1.5px);
  background-size: 18px 18px;
}
.reels-section .wrap { position: relative; z-index: 2; }
.reels-head { max-width: 640px; margin-bottom: 2.6rem; }
.reels-head .eyebrow-title { color: #fff; }
.reels-head p { color: rgba(255,255,255,0.85); font-weight: 700; margin-top: 1rem; }
.reel-card {
  position: relative;
  background: var(--ink); border: 3px solid var(--paper); border-radius: 18px;
  overflow: hidden; box-shadow: 6px 7px 0 rgba(0,0,0,0.3);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.reel-card iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: none; }
.reel-card:hover { transform: translateY(-4px) !important; box-shadow: 8px 10px 0 rgba(0,0,0,0.35); }
.reels-grid-small { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem 1.2rem; }
.reels-grid-small .reel-card { aspect-ratio: 9/16; }
.reels-grid-small .reel-card:nth-child(1) { transform: rotate(-1.5deg); }
.reels-grid-small .reel-card:nth-child(2) { transform: rotate(1.5deg); margin-top: 1.4rem; }
.reels-grid-small .reel-card:nth-child(3) { transform: rotate(-1deg); }
.reels-grid-small .reel-card:nth-child(4) { transform: rotate(1.5deg); }
.reels-grid-small .reel-card:nth-child(5) { transform: rotate(-1.5deg); margin-top: 1.4rem; }
.reels-grid-small .reel-card:nth-child(6) { transform: rotate(1deg); }
.reels-cta { margin-top: 2.4rem; }

@media (max-width: 860px) {
  .reels-grid-small { grid-template-columns: repeat(2, 1fr); }
  .reels-grid-small .reel-card { margin-top: 0 !important; }
}

/* small tilted reel accent embedded inline in other sections */
.inline-reel {
  position: relative; width: 168px; aspect-ratio: 9/16;
  background: var(--ink); border: 3px solid var(--ink); border-radius: 16px;
  overflow: hidden; box-shadow: 5px 6px 0 rgba(12,43,46,0.25);
}
.inline-reel iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: none; }
.story-reel { position: absolute; right: -1.6rem; top: 1.5rem; z-index: 4; transform: rotate(4deg); }
.story-reel span, .process-reel span {
  display: block; text-align: center; margin-top: 0.5rem; font-family: 'Caveat', cursive;
  font-size: 1.1rem; font-weight: 700;
}
.process-reel-wrap { display: flex; flex-direction: column; align-items: center; margin: 3rem auto 0; }
.process-reel { transform: rotate(-3deg); }
.process-reel span { color: var(--yellow); }

/* =========================================================
   WHY CHOOSE US — alternating stat/feature rows
========================================================= */
.why { background: var(--paper); padding: 7rem 0; }
.why-head { max-width: 620px; margin-bottom: 3.5rem; }
.why-head p { font-weight: 700; color: #24494c; margin-top: 1rem; }
.why-row {
  display: flex; align-items: center; gap: 2.5rem;
  padding: 1.8rem 0; border-bottom: 3px dashed rgba(12,43,46,0.15);
}
.why-row:last-child { border-bottom: none; }
.why-row:nth-child(even) { flex-direction: row-reverse; }
.why-thumb { flex: 0 0 auto; width: 96px; height: 96px; border-radius: 50%; overflow: hidden; border: 3px solid var(--ink); box-shadow: 4px 5px 0 rgba(12,43,46,0.15); }
.why-thumb img { width: 100%; height: 100%; object-fit: cover; }
.why-copy h3 { font-family: 'Fredoka', sans-serif; font-size: 1.4rem; color: var(--pink-deep); margin-bottom: 0.4rem; }
.why-copy p { font-weight: 700; color: #24494c; max-width: 52ch; }

@media (max-width: 640px) {
  .why-row, .why-row:nth-child(even) { flex-direction: column; text-align: center; gap: 1rem; }
}

/* =========================================================
   ORDERING PROCESS — connected step-line
========================================================= */
.process { background: var(--ink); padding: 7rem 0; position: relative; overflow: hidden; }
.process-head { max-width: 620px; margin-bottom: 3.5rem; }
.process-head .eyebrow-title { color: var(--paper); }
.process-head p { color: rgba(253,246,231,0.75); font-weight: 700; margin-top: 1rem; }
.process-steps {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.8rem; position: relative;
}
.process-steps::before {
  content: ""; position: absolute; top: 34px; left: 8%; right: 8%; height: 3px;
  background-image: repeating-linear-gradient(90deg, var(--yellow) 0 10px, transparent 10px 18px);
}
.process-step { position: relative; text-align: center; }
.step-num {
  width: 68px; height: 68px; border-radius: 50%; margin: 0 auto 1.1rem;
  background: var(--yellow); border: 3px solid var(--paper); color: var(--ink);
  font-family: 'Fredoka', sans-serif; font-weight: 700; font-size: 1.6rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 4px 5px 0 rgba(0,0,0,0.35); position: relative; z-index: 2;
  overflow: hidden;
}
.step-num img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.28; }
.step-num span { position: relative; z-index: 1; }
.process-step h3 { font-family: 'Fredoka', sans-serif; color: var(--paper); font-size: 1.1rem; margin-bottom: 0.4rem; }
.process-step p { color: rgba(253,246,231,0.7); font-weight: 700; font-size: 0.9rem; }

@media (max-width: 760px) {
  .process-steps { grid-template-columns: 1fr 1fr; gap: 2.4rem; }
  .process-steps::before { display: none; }
}

/* =========================================================
   CURBSIDE INFO — split with map-pin motif
========================================================= */
.curbside { background: var(--paper-dim); padding: 7rem 0; }
.curbside .wrap { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: 3.5rem; align-items: center; }
.curbside-media { position: relative; }
.curbside-media .photo-frame { aspect-ratio: 4/5; }
.pin-badge {
  position: absolute; bottom: -1.4rem; left: -1.2rem; z-index: 2;
  background: var(--pink); border: 3px solid var(--ink); border-radius: 50%;
  width: 92px; height: 92px; display: flex; align-items: center; justify-content: center;
  box-shadow: 4px 5px 0 rgba(12,43,46,0.3); transform: rotate(-8deg);
}
.pin-badge svg { width: 40px; height: 40px; }
.curbside-copy p { font-weight: 700; color: #24494c; line-height: 1.7; margin-top: 1.1rem; max-width: 50ch; }
.curbside-list { list-style: none; margin-top: 1.6rem; display: flex; flex-direction: column; gap: 0.8rem; }
.curbside-list li { display: flex; align-items: center; gap: 0.7rem; font-weight: 800; color: var(--ink); }
.curbside-list li .dot { width: 10px; height: 10px; border-radius: 50%; background: var(--pink); flex-shrink: 0; }

@media (max-width: 860px) {
  .curbside .wrap { grid-template-columns: 1fr; }
  .curbside-media { max-width: 320px; margin: 0 auto 2rem; }
}

/* =========================================================
   TRUST / REVIEWS band
========================================================= */
.trust { background: var(--leaf-dark); padding: 5rem 0; position: relative; overflow: hidden; }
.trust::before {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(253,246,231,0.08) 1.5px, transparent 1.5px);
  background-size: 20px 20px;
}
.trust .wrap { position: relative; z-index: 2; display: flex; flex-wrap: wrap; gap: 3rem; align-items: center; justify-content: space-between; }
.trust-copy { max-width: 420px; }
.trust-copy h2 { font-family: 'Fredoka', sans-serif; color: var(--paper); font-size: clamp(1.7rem, 3.4vw, 2.3rem); line-height: 1.15; }
.trust-copy p { color: rgba(253,246,231,0.75); font-weight: 700; margin-top: 1rem; }
.trust-stats { display: flex; gap: 2.2rem; flex-wrap: wrap; }
.trust-stat {
  background: var(--paper); border: 3px solid var(--ink); border-radius: 16px;
  padding: 1.4rem 1.7rem; box-shadow: 5px 6px 0 rgba(0,0,0,0.25); text-align: center; min-width: 130px;
}
.trust-stat:nth-child(2) { transform: rotate(1.5deg); }
.trust-stat:nth-child(1) { transform: rotate(-1.5deg); }
.trust-stat:nth-child(3) { transform: rotate(1deg); }
.trust-stat b { font-family: 'Fredoka', sans-serif; font-size: 2.1rem; color: var(--pink-deep); display: block; }
.trust-stat span { font-size: 0.78rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.03em; color: #24494c; }

/* =========================================================
   LOCATION / SERVICE
========================================================= */
.location { background: var(--paper); padding: 7rem 0; }
.location .wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; }
.location-card {
  background: #fff; border: 3px solid var(--ink); border-radius: 18px; padding: 2.2rem;
  box-shadow: 6px 7px 0 rgba(12,43,46,0.15);
}
.location-card h3 { font-family: 'Fredoka', sans-serif; color: var(--pink-deep); font-size: 1.3rem; margin-bottom: 0.9rem; }
.location-card p, .location-card a { font-weight: 700; color: #24494c; line-height: 1.7; text-decoration: none; }
.location-card a { color: var(--cyan-deep); }
.location-card ul { list-style: none; margin-top: 0.6rem; }
.location-card li { padding: 0.25rem 0; font-weight: 700; color: #24494c; }

@media (max-width: 760px) { .location .wrap { grid-template-columns: 1fr; } }

/* =========================================================
   FINAL CTA
========================================================= */
.final-cta {
  position: relative; min-height: 70vh; display: flex; align-items: center; justify-content: center;
  text-align: center; background: var(--cyan); overflow: hidden; padding: 6rem 2rem; isolation: isolate;
}
.final-cta::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 55% 45% at 85% 15%, rgba(255,203,46,0.4), transparent 60%),
    radial-gradient(ellipse 50% 45% at 8% 90%, rgba(236,47,142,0.4), transparent 60%);
  z-index: 0;
}
.final-cta .content { position: relative; z-index: 2; max-width: 720px; }
.final-cta h2 {
  font-family: 'Fredoka', sans-serif; color: #fff; font-size: clamp(2.1rem, 6vw, 3.6rem);
  line-height: 1.1; text-shadow: 0 2px 18px rgba(10,60,64,0.35);
}
.final-cta .accent { font-family: 'Caveat', cursive; color: var(--yellow); font-size: 1.2em; display: block; transform: rotate(-2deg); }
.final-cta p { margin-top: 1.2rem; font-weight: 700; color: #06393d; font-size: 1.1rem; }
.final-cta .cta-row { display: flex; gap: 1.1rem; flex-wrap: wrap; justify-content: center; margin-top: 2.2rem; }

/* =========================================================
   FOOTER
========================================================= */
footer.site-footer { background: var(--ink); color: var(--paper); padding: 3.5rem 0 2rem; }
footer .wrap { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 2.5rem; }
.footer-brand { display: flex; align-items: center; gap: 0.7rem; }
.footer-brand span { font-family: 'Fredoka', sans-serif; font-size: 1.2rem; }
.footer-cols { display: flex; gap: 3.5rem; flex-wrap: wrap; }
.footer-col h4 { font-family: 'Fredoka', sans-serif; color: var(--yellow); font-size: 0.95rem; margin-bottom: 0.8rem; }
.footer-col a, .footer-col p { display: block; color: rgba(253,246,231,0.75); text-decoration: none; font-weight: 700; font-size: 0.92rem; margin-bottom: 0.5rem; }
.footer-col a:hover { color: var(--paper); }
.footer-bottom {
  max-width: 1180px; margin: 2.5rem auto 0; padding: 1.4rem 2rem 0; border-top: 1px solid rgba(253,246,231,0.15);
  font-size: 0.82rem; color: rgba(253,246,231,0.55); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 0.6rem;
}

@media (max-width: 640px) {
  footer .wrap { flex-direction: column; }
}

/* =========================================================
   INNER PAGE HERO (Shop / About / Contact / Cart / Checkout)
========================================================= */
.page-hero {
  position: relative; padding: 8.5rem 2rem 3.5rem; text-align: center;
  background: var(--cyan);
  background-image: radial-gradient(circle, rgba(255,255,255,0.18) 1.5px, transparent 1.5px);
  background-size: 18px 18px; overflow: hidden; isolation: isolate;
}
.page-hero::before {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 60% 45% at 12% 8%, rgba(255,203,46,0.35), transparent 60%),
    radial-gradient(ellipse 55% 50% at 92% 95%, rgba(236,47,142,0.4), transparent 60%);
}
.page-hero .wrap { position: relative; z-index: 2; }
.page-hero h1 {
  font-family: 'Fredoka', sans-serif; color: #fff; font-size: clamp(2rem, 5vw, 3.2rem);
  text-shadow: 0 2px 18px rgba(10,60,64,0.35);
}
.page-hero p { margin-top: 0.8rem; font-weight: 700; color: #06393d; }
.breadcrumb { margin-top: 1rem; font-size: 0.85rem; font-weight: 800; color: #06393d; }
.breadcrumb a { color: #06393d; text-decoration: underline; }

/* nav cart icon + badge */
.nav-actions { display: flex; align-items: center; gap: 1.1rem; }
.nav-cart { position: relative; display: inline-flex; align-items: center; text-decoration: none; }
.nav-cart svg { width: 26px; height: 26px; }
.cart-badge {
  position: absolute; top: -8px; right: -10px; background: var(--pink); color: #fff;
  font-size: 0.68rem; font-weight: 800; border-radius: 999px; min-width: 18px; height: 18px;
  align-items: center; justify-content: center; display: none; padding: 0 4px; border: 2px solid var(--paper);
}

/* toast */
.toast {
  position: fixed; left: 50%; bottom: 2rem; transform: translateX(-50%) translateY(20px);
  background: var(--ink); color: var(--paper); padding: 0.8rem 1.4rem; border-radius: 12px;
  font-weight: 800; font-size: 0.9rem; box-shadow: 4px 5px 0 rgba(0,0,0,0.25);
  opacity: 0; pointer-events: none; transition: opacity 0.25s ease, transform 0.25s ease; z-index: 999;
  border: 2px solid var(--yellow);
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* =========================================================
   SHOP
========================================================= */
.shop-section { background: var(--paper); padding: 3rem 0 6rem; }
.shop-filters { display: flex; gap: 0.7rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.filter-btn {
  background: #fff; border: 2.5px solid var(--ink); border-radius: 999px; padding: 0.5rem 1.2rem;
  font-weight: 800; font-size: 0.88rem; cursor: pointer; box-shadow: 2px 3px 0 rgba(12,43,46,0.2);
  transition: transform 0.15s ease, background 0.15s ease;
}
.filter-btn.active, .filter-btn:hover { background: var(--yellow); transform: translateY(-1px); }
.product-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 1.8rem;
}
.product-card {
  background: #fff; border: 3px solid var(--ink); border-radius: 18px; overflow: hidden;
  box-shadow: 5px 6px 0 rgba(12,43,46,0.15); display: flex; flex-direction: column;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.product-card:hover { transform: translateY(-4px); box-shadow: 7px 9px 0 rgba(12,43,46,0.2); }
.product-card .thumb { aspect-ratio: 4/3; overflow: hidden; border-bottom: 3px solid var(--ink); }
.product-card .thumb img { width: 100%; height: 100%; object-fit: cover; }
.product-card .body { padding: 1.1rem 1.2rem 1.3rem; display: flex; flex-direction: column; gap: 0.5rem; flex: 1; }
.product-card .cat-tag { font-size: 0.72rem; font-weight: 800; color: var(--pink-deep); text-transform: uppercase; letter-spacing: 0.03em; }
.product-card h3 { font-family: 'Fredoka', sans-serif; font-size: 1.1rem; }
.product-card h3 a { color: var(--ink); text-decoration: none; }
.product-card p.tag { font-size: 0.85rem; font-weight: 700; color: #4a6265; flex: 1; }
.product-card .price-row { display: flex; align-items: center; justify-content: space-between; margin-top: 0.4rem; }
.product-card .price { font-family: 'Fredoka', sans-serif; font-size: 1.15rem; color: var(--pink-deep); }
.btn-sm { padding: 0.55rem 1.1rem; font-size: 0.85rem; border-radius: 10px; }

/* =========================================================
   PRODUCT DETAIL
========================================================= */
.product-detail { background: var(--paper); padding: 3rem 0 6rem; }
.product-detail .wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.product-detail .photo-frame { aspect-ratio: 4/5; }
.product-info .cat-tag { font-size: 0.78rem; font-weight: 800; color: var(--pink-deep); text-transform: uppercase; letter-spacing: 0.03em; }
.product-info h1 { font-family: 'Fredoka', sans-serif; font-size: clamp(1.8rem, 3.6vw, 2.5rem); margin: 0.4rem 0 0.7rem; }
.product-info .price { font-family: 'Fredoka', sans-serif; font-size: 1.6rem; color: var(--pink-deep); margin-bottom: 1rem; }
.product-info p.desc { font-weight: 700; color: #24494c; line-height: 1.7; max-width: 48ch; }
.qty-row { display: flex; align-items: center; gap: 1rem; margin: 1.6rem 0; }
.qty-control { display: flex; align-items: center; border: 2.5px solid var(--ink); border-radius: 10px; overflow: hidden; }
.qty-control button { width: 38px; height: 38px; background: var(--paper-dim); border: none; font-size: 1.1rem; font-weight: 800; cursor: pointer; }
.qty-control input { width: 46px; text-align: center; border: none; font-weight: 800; font-size: 1rem; }
.related-heading { margin: 4rem 0 1.5rem; font-family: 'Fredoka', sans-serif; font-size: 1.4rem; }

/* =========================================================
   CART
========================================================= */
.cart-section { background: var(--paper); padding: 3rem 0 6rem; min-height: 40vh; }
.cart-table { width: 100%; border-collapse: separate; border-spacing: 0 1rem; }
.cart-row td { background: #fff; padding: 1rem; vertical-align: middle; }
.cart-row td:first-child { border-radius: 12px 0 0 12px; border-left: 3px solid var(--ink); border-top: 3px solid var(--ink); border-bottom: 3px solid var(--ink); }
.cart-row td:last-child { border-radius: 0 12px 12px 0; border-right: 3px solid var(--ink); border-top: 3px solid var(--ink); border-bottom: 3px solid var(--ink); }
.cart-row td:not(:first-child):not(:last-child) { border-top: 3px solid var(--ink); border-bottom: 3px solid var(--ink); }
.cart-item { display: flex; align-items: center; gap: 1rem; }
.cart-item img { width: 64px; height: 64px; object-fit: cover; border-radius: 10px; border: 2px solid var(--ink); }
.cart-item span { font-weight: 800; }
.cart-remove { background: none; border: none; color: var(--pink-deep); font-weight: 800; cursor: pointer; font-size: 0.85rem; }
.cart-summary {
  max-width: 380px; margin-left: auto; background: #fff; border: 3px solid var(--ink); border-radius: 16px;
  padding: 1.6rem; box-shadow: 5px 6px 0 rgba(12,43,46,0.15); margin-top: 2rem;
}
.cart-summary .row { display: flex; justify-content: space-between; font-weight: 700; margin-bottom: 0.6rem; }
.cart-summary .total { font-family: 'Fredoka', sans-serif; font-size: 1.3rem; color: var(--pink-deep); }
.empty-state { text-align: center; padding: 3rem 1rem; }
.empty-state p { font-weight: 700; color: #4a6265; margin-bottom: 1.4rem; }

@media (max-width: 760px) {
  .product-detail .wrap { grid-template-columns: 1fr; }
  .cart-table, .cart-table tbody, .cart-row { display: block; width: 100%; }
  .cart-table thead { display: none; }
  .cart-row { margin-bottom: 1rem; }
  .cart-row td { display: block; border-radius: 12px !important; border: 3px solid var(--ink) !important; margin-bottom: 0.5rem; }
}

/* =========================================================
   CHECKOUT
========================================================= */
.checkout-section { background: var(--paper); padding: 3rem 0 6rem; }
.checkout-section .wrap { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 3rem; align-items: start; }
.checkout-form { background: #fff; border: 3px solid var(--ink); border-radius: 18px; padding: 2rem; box-shadow: 6px 7px 0 rgba(12,43,46,0.15); }
.form-group { margin-bottom: 1.2rem; }
.form-group label { display: block; font-weight: 800; margin-bottom: 0.4rem; font-size: 0.9rem; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 0.7rem 0.9rem; border: 2.5px solid var(--ink); border-radius: 10px;
  font-family: 'Nunito', sans-serif; font-size: 0.95rem; background: var(--paper-dim);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.payment-note {
  background: var(--paper-dim); border: 2.5px dashed var(--pink-deep); border-radius: 12px;
  padding: 1rem 1.2rem; font-weight: 700; font-size: 0.88rem; color: #4a2b45; margin-top: 1.4rem;
}
.checkout-summary {
  background: #fff; border: 3px solid var(--ink); border-radius: 18px; padding: 1.6rem;
  box-shadow: 6px 7px 0 rgba(12,43,46,0.15); position: sticky; top: 6rem;
}
.checkout-summary h3 { font-family: 'Fredoka', sans-serif; margin-bottom: 1rem; }
.checkout-line { display: flex; justify-content: space-between; font-weight: 700; font-size: 0.9rem; margin-bottom: 0.5rem; color: #4a6265; }
.checkout-summary .total-row { display: flex; justify-content: space-between; margin-top: 1rem; padding-top: 1rem; border-top: 2px dashed rgba(12,43,46,0.2); font-family: 'Fredoka', sans-serif; font-size: 1.2rem; color: var(--pink-deep); }

@media (max-width: 860px) {
  .checkout-section .wrap { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .checkout-summary { position: static; }
}

.order-confirm { text-align: center; padding: 4rem 1rem; max-width: 560px; margin: 0 auto; }
.order-confirm .check-badge {
  width: 84px; height: 84px; border-radius: 50%; background: var(--leaf); border: 3px solid var(--ink);
  display: flex; align-items: center; justify-content: center; margin: 0 auto 1.4rem; box-shadow: 4px 5px 0 rgba(12,43,46,0.2);
}
.order-confirm .check-badge svg { width: 42px; height: 42px; }
.order-confirm h1 { font-family: 'Fredoka', sans-serif; font-size: 1.9rem; margin-bottom: 0.8rem; }
.order-confirm p { font-weight: 700; color: #4a6265; margin-bottom: 0.6rem; }

/* =========================================================
   ABOUT PAGE extras
========================================================= */
.about-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap: 1.6rem; margin-top: 2.5rem; }
.about-card { background: #fff; border: 3px solid var(--ink); border-radius: 16px; padding: 1.6rem; box-shadow: 5px 6px 0 rgba(12,43,46,0.15); }
.about-card h3 { font-family: 'Fredoka', sans-serif; color: var(--pink-deep); margin-bottom: 0.5rem; }
.about-card p { font-weight: 700; color: #4a6265; font-size: 0.92rem; }

/* =========================================================
   CONTACT PAGE
========================================================= */
.contact-section { background: var(--paper); padding: 3rem 0 6rem; }
.contact-section .wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; }
.contact-form { background: #fff; border: 3px solid var(--ink); border-radius: 18px; padding: 2rem; box-shadow: 6px 7px 0 rgba(12,43,46,0.15); }
.contact-info-card { background: var(--ink); color: var(--paper); border-radius: 18px; padding: 2rem; }
.contact-info-card h3 { font-family: 'Fredoka', sans-serif; color: var(--yellow); margin-bottom: 1rem; }
.contact-info-card p, .contact-info-card a { color: rgba(253,246,231,0.85); font-weight: 700; text-decoration: none; display: block; margin-bottom: 0.7rem; }
.contact-info-card a:hover { color: #fff; }

@media (max-width: 860px) {
  .contact-section .wrap { grid-template-columns: 1fr; }
}
