/* ============================================
   REIGNBOW SNOWBALLS & MORE — Brand Stylesheet
   Direction: Soft & sweet, with bold accent pops
   (mint, cream, coral, peach — warm & approachable,
   with saturated coral/teal reserved for key moments)
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@500;600;700&family=Fredoka:wght@500;600;700&family=Outfit:wght@400;500;600;700&display=swap');

:root {
  /* Base palette — soft & sweet */
  --cream: #FFF9F2;
  --cream-deep: #FCEFE3;
  --mint: #A8DCD4;
  --mint-deep: #6FBDB1;
  --coral: #FF8C7A;
  --coral-soft: #FFB5A7;
  --peach: #FFD9A8;
  --gold: #F2A93B;
  --ink: #4A3B36;        /* warm soft brown-black, never harsh */
  --ink-soft: #7A6A62;
  --white: #FFFFFF;

  /* Accent pops — saturated, used sparingly for impact */
  --pop-coral: #FF5A45;
  --pop-teal: #1FA89B;

  /* Rainbow accent (logo callback, used as a small signature only) */
  --r1: #FF5A45;
  --r2: #F2A93B;
  --r3: #6FBDB1;
  --r4: #5B8FD9;
  --r5: #B07ACB;

  --font-display: 'Fredoka', sans-serif;
  --font-accent: 'Quicksand', sans-serif;
  --font-body: 'Outfit', sans-serif;

  --radius-lg: 32px;
  --radius-md: 20px;
  --radius-sm: 14px;

  --shadow-soft: 0 10px 28px rgba(74, 59, 54, 0.08);
  --shadow-lift: 0 20px 44px rgba(74, 59, 54, 0.14);

  --container: 1180px;
}

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

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

h1 { font-size: clamp(2.5rem, 5vw, 4.2rem); font-weight: 600; }
h2 { font-size: clamp(1.9rem, 3.4vw, 2.6rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); }

h1 em, h2 em {
  font-family: var(--font-accent);
  font-style: normal;
  color: var(--pop-coral);
  font-weight: 700;
}

p { margin: 0 0 1em 0; }

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

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

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

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--mint-deep);
  color: var(--white);
  padding: 10px 16px;
  border-radius: 0 0 8px 0;
  z-index: 1000;
}
.skip-link:focus { left: 0; }

/* ============ RAINBOW DIVIDER (signature element, used sparingly) ============ */
.rainbow-divider {
  height: 5px;
  width: 96px;
  margin: 0 auto;
  background: linear-gradient(90deg, var(--r1), var(--r2), var(--r3), var(--r4), var(--r5));
  border: none;
  border-radius: 6px;
}

.rainbow-divider.thin {
  height: 4px;
  width: 64px;
  opacity: 0.9;
}

.rainbow-divider.full {
  width: 100%;
  height: 6px;
  border-radius: 0;
}

/* ============ HEADER / NAV ============ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 500;
  background: rgba(255, 249, 242, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(111, 189, 177, 0.18);
}

.nav-wrap {
  max-width: var(--container);
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--mint-deep);
}

.brand-logo img { height: 56px; width: auto; }

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.main-nav a {
  font-weight: 600;
  font-size: 0.98rem;
  color: var(--ink);
  position: relative;
  padding: 6px 2px;
  transition: color 0.2s ease;
  font-family: var(--font-accent);
}

.main-nav a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 3px;
  background: var(--coral);
  border-radius: 3px;
  transition: width 0.25s ease;
}

.main-nav a:hover::after,
.main-nav a.active::after { width: 100%; }

.main-nav a.active { color: var(--pop-coral); }

.nav-cta {
  background: var(--pop-coral);
  color: var(--white) !important;
  padding: 11px 26px;
  border-radius: 50px;
  font-weight: 700;
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.nav-cta:hover {
  background: var(--mint-deep);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lift);
}

.nav-cta::after { display: none; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle svg { width: 28px; height: 28px; color: var(--mint-deep); }

@media (max-width: 860px) {
  .main-nav {
    position: fixed;
    top: 0; right: 0;
    height: 100vh;
    width: min(78vw, 320px);
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 32px 32px;
    gap: 26px;
    box-shadow: -10px 0 40px rgba(74,59,54,0.18);
    transform: translateX(100%);
    transition: transform 0.3s ease;
  }
  .main-nav.open { transform: translateX(0); }
  .nav-toggle { display: block; z-index: 600; }
  .nav-cta { margin-top: 8px; }
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.02rem;
  cursor: pointer;
  border: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  font-family: var(--font-accent);
}

.btn-primary {
  background: var(--pop-coral);
  color: var(--white);
  box-shadow: var(--shadow-soft);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: var(--shadow-lift); background: #E84A36; }

.btn-outline {
  background: transparent;
  color: var(--mint-deep);
  border: 2px solid var(--mint-deep);
}
.btn-outline:hover { background: var(--mint-deep); color: var(--white); }

.btn-gold {
  background: var(--gold);
  color: var(--white);
  box-shadow: var(--shadow-soft);
}
.btn-gold:hover { transform: translateY(-3px); box-shadow: var(--shadow-lift); }

/* ============ HERO (bold accent moment) ============ */
.hero {
  position: relative;
  padding: 72px 24px 0;
  text-align: center;
  overflow: hidden;
  background: linear-gradient(180deg, #FFF1E6 0%, var(--cream) 100%);
}

.hero-inner { padding-bottom: 80px; }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-accent);
  background: var(--white);
  color: var(--pop-coral);
  font-weight: 700;
  font-size: 0.92rem;
  padding: 8px 20px;
  border-radius: 50px;
  margin-bottom: 22px;
  box-shadow: var(--shadow-soft);
}

.hero h1 {
  max-width: 820px;
  margin: 0 auto 20px;
  color: var(--ink);
}

.hero-sub {
  max-width: 600px;
  margin: 0 auto 36px;
  font-size: 1.15rem;
  color: var(--ink-soft);
}

.hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============ GENERIC SECTION / PAGE HERO ============ */
.page-hero {
  padding: 60px 24px 52px;
  text-align: center;
  background: linear-gradient(180deg, #FFF1E6 0%, var(--cream) 100%);
}

.page-hero h1 { margin-bottom: 12px; }
.page-hero p { max-width: 640px; margin: 0 auto; color: var(--ink-soft); font-size: 1.1rem; }

section { padding: 76px 24px; }

.section-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 50px;
}

.section-head .eyebrow {
  display: inline-block;
  font-family: var(--font-accent);
  font-weight: 700;
  color: var(--pop-teal);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.82rem;
  margin-bottom: 12px;
}

.section-head p { color: var(--ink-soft); font-size: 1.08rem; }

.bg-soft { background: var(--cream-deep); }

.bg-plum {
  background: var(--mint-deep);
  color: var(--white);
}
.bg-plum h2, .bg-plum h3 { color: var(--white); }
.bg-plum .section-head p { color: rgba(255,255,255,0.85); }
.bg-plum .section-head .eyebrow { color: var(--peach); }

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

@media (max-width: 900px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

.card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.card:hover { transform: translateY(-6px) rotate(-0.5deg); box-shadow: var(--shadow-lift); }

.card .icon-circle {
  width: 58px; height: 58px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  font-size: 1.7rem;
}

.card .icon-circle svg {
  width: 28px;
  height: 28px;
}

/* ---- Translucent / glass card variant ---- */
.card.glass {
  background: rgba(255,255,255,0.55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.6);
  box-shadow: 0 8px 32px rgba(74,59,54,0.08);
}
.card.glass:hover {
  background: rgba(255,255,255,0.7);
}
.card.glass .icon-circle {
  background: rgba(255,255,255,0.6) !important;
}

/* ============ IMAGE + TEXT SPLIT ============ */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 58px;
  align-items: center;
}

@media (max-width: 860px) {
  .split { grid-template-columns: 1fr; gap: 32px; }
  .split.reverse .split-img { order: -1; }
}

.split-img img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lift);
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.split.reverse { direction: rtl; }
.split.reverse > * { direction: ltr; }

/* ============ FLAVOR CARDS ============ */
.flavor-card {
  background: rgba(255,255,255,0.55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: var(--radius-md);
  padding: 22px 24px;
  box-shadow: 0 8px 28px rgba(74,59,54,0.08);
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  border: 2px solid var(--flavor-color, var(--coral));
  border-left-width: 5px;
}
.flavor-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 36px rgba(74,59,54,0.12);
  background: rgba(255,255,255,0.72);
}

.flavor-emoji {
  font-size: 1.5rem;
  line-height: 1;
  flex-shrink: 0;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--flavor-color, var(--pop-coral));
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}
.flavor-emoji svg {
  width: 22px;
  height: 22px;
  color: var(--white);
}
.flavor-card h3 { margin-bottom: 4px; font-size: 1.18rem; color: var(--ink); }
.flavor-card p { margin: 0; color: var(--ink-soft); font-size: 0.96rem; }
.flavor-tag {
  display: inline-block;
  font-family: var(--font-accent);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  background: var(--mint);
  color: var(--white);
  padding: 4px 12px;
  border-radius: 50px;
  margin-top: 8px;
}

/* ============ PRICING / PACKAGES ============ */
.pricing-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 38px 32px;
  box-shadow: var(--shadow-soft);
  text-align: center;
  position: relative;
  border: 3px solid transparent;
}

.pricing-card.featured {
  border-color: var(--gold);
  transform: scale(1.03);
  box-shadow: var(--shadow-lift);
}

.pricing-card.featured::before {
  content: 'MOST POPULAR';
  position: absolute;
  top: -15px; left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--white);
  font-family: var(--font-accent);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 6px 18px;
  border-radius: 50px;
}

.pricing-card h3 { font-size: 1.3rem; margin-bottom: 4px; color: var(--ink); }
.pricing-card .price {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--pop-coral);
  margin: 14px 0 4px;
}
.pricing-card .price span {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ink-soft);
}
.pricing-card .guest-count {
  font-family: var(--font-accent);
  color: var(--pop-teal);
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.pricing-card ul { list-style: none; padding: 0; margin: 0 0 28px; text-align: left; }
.pricing-card li {
  padding: 9px 0;
  border-bottom: 1px solid var(--cream-deep);
  font-size: 0.95rem;
  display: flex;
  gap: 10px;
}
.pricing-card li:last-child { border-bottom: none; }
.pricing-card li svg { flex-shrink: 0; width: 18px; height: 18px; color: var(--mint-deep); margin-top: 2px; }

/* ============ TESTIMONIAL CAROUSEL ============ */
.testimonial-carousel { max-width: 720px; margin: 0 auto; position: relative; }
.testimonial-track { position: relative; min-height: 220px; }

.testimonial-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  pointer-events: none;
  text-align: center;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 42px 38px;
  box-shadow: var(--shadow-soft);
}

.testimonial-slide.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  position: relative;
}

.stars { color: var(--gold); font-size: 1.2rem; margin-bottom: 16px; letter-spacing: 2px; }
.testimonial-quote { font-size: 1.12rem; color: var(--ink); margin-bottom: 20px; font-style: italic; }
.testimonial-name { font-family: var(--font-accent); font-weight: 700; color: var(--mint-deep); }

.testimonial-dots { display: flex; justify-content: center; gap: 10px; margin-top: 26px; }
.testimonial-dots button {
  width: 10px; height: 10px;
  border-radius: 50%;
  border: none;
  background: var(--cream-deep);
  cursor: pointer;
  padding: 0;
  transition: background 0.2s ease, transform 0.2s ease;
}
.testimonial-dots button.active { background: var(--pop-coral); transform: scale(1.2); }

.google-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  padding: 11px 22px;
  border-radius: 50px;
  box-shadow: var(--shadow-soft);
  font-family: var(--font-accent);
  font-weight: 700;
  margin: 30px auto 0;
  text-align: center;
}

.center-wrap { text-align: center; }

/* ============ FORMS ============ */
.form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 42px;
  box-shadow: var(--shadow-lift);
}

.form-row { margin-bottom: 22px; }
.form-row.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
@media (max-width: 600px) { .form-row.two-col { grid-template-columns: 1fr; } }

label {
  display: block;
  font-family: var(--font-accent);
  font-weight: 700;
  color: var(--mint-deep);
  margin-bottom: 7px;
  font-size: 0.92rem;
}

input, select, textarea {
  width: 100%;
  padding: 13px 18px;
  border: 2px solid var(--cream-deep);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 1rem;
  background: var(--cream);
  color: var(--ink);
  transition: border-color 0.2s ease;
}

input:focus, select:focus, textarea:focus { outline: none; border-color: var(--coral); }
textarea { resize: vertical; min-height: 110px; }

.form-note { font-size: 0.88rem; color: var(--ink-soft); margin-top: -6px; }

#formStatus {
  margin-top: 18px;
  padding: 15px 20px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  display: none;
}
#formStatus.show { display: block; }
#formStatus.success { background: #E3F4F0; color: var(--mint-deep); }

/* ============ CONTACT INFO BLOCKS ============ */
.contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid var(--cream-deep);
}
.contact-info-card:last-child { border-bottom: none; }
.contact-info-card .icon-circle { width: 50px; height: 50px; flex-shrink: 0; }

/* ============ FOOTER ============ */
.site-footer {
  background: var(--mint-deep);
  color: rgba(255,255,255,0.88);
  padding: 60px 24px 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 42px;
  max-width: var(--container);
  margin: 0 auto 38px;
}

@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr; gap: 30px; } }

.footer-grid h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 18px;
  font-family: var(--font-accent);
}

.footer-grid a {
  display: block;
  color: rgba(255,255,255,0.82);
  margin-bottom: 11px;
  transition: color 0.2s ease;
  font-size: 0.96rem;
}
.footer-grid a:hover { color: var(--peach); }

.footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer-logo img { height: 48px; }
.footer-logo span { font-family: var(--font-display); font-weight: 600; color: var(--white); font-size: 1.05rem; }

.footer-social { display: flex; gap: 14px; margin-top: 18px; }
.footer-social a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 0;
  transition: background 0.2s ease;
}
.footer-social a:hover { background: var(--coral); }
.footer-social svg { width: 18px; height: 18px; color: var(--white); }

.footer-bottom {
  max-width: var(--container);
  margin: 0 auto;
  padding-top: 26px;
  border-top: 1px solid rgba(255,255,255,0.18);
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
}

/* ============ MISC UTILITIES ============ */
.tag-pill {
  display: inline-block;
  font-family: var(--font-accent);
  background: var(--cream-deep);
  color: var(--mint-deep);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
}

.tag-pill.bold {
  background: var(--pop-teal);
  color: var(--white);
}

.tag-pill.bold-coral {
  background: var(--pop-coral);
  color: var(--white);
}

.mt-0 { margin-top: 0; }
.text-center { text-align: center; }

/* CTA band — bold accent pop moment */
.cta-band {
  background: linear-gradient(120deg, var(--pop-coral) 0%, var(--coral-soft) 100%);
  border-radius: var(--radius-lg);
  padding: 60px 44px;
  text-align: center;
  color: var(--white);
  max-width: var(--container);
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}
.cta-band h2 { color: var(--white); }
.cta-band p { color: rgba(255,255,255,0.92); max-width: 560px; margin: 0 auto 30px; font-size: 1.08rem; }
.cta-band .btn-gold { background: var(--white); color: var(--pop-coral); }
.cta-band .btn-gold:hover { background: var(--cream); }

/* Reveal-on-scroll */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in-view { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* Map embed wrapper */
.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  margin-top: 32px;
}
.map-wrap iframe { width: 100%; height: 340px; border: 0; display: block; }

/* ============================================
   EDITORIAL / PHOTO-LED LAYOUT ADDITIONS
   ============================================ */

/* ---- Full-bleed photo hero with overlaid text ---- */
.photo-hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  padding: 40px 24px;
}

.photo-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(74,59,54,0.15) 0%, rgba(74,59,54,0.55) 100%);
  z-index: 1;
}

.photo-hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.photo-hero .hero-eyebrow {
  background: rgba(255,255,255,0.92);
}

.photo-hero h1 {
  color: var(--white);
  text-shadow: 0 2px 20px rgba(0,0,0,0.25);
}

.photo-hero h1 em { color: var(--peach); }

.photo-hero .hero-sub {
  color: rgba(255,255,255,0.95);
  text-shadow: 0 1px 12px rgba(0,0,0,0.2);
}

@media (max-width: 700px) {
  .photo-hero { min-height: 78vh; }
}

/* ---- Video background hero variant ---- */
.video-hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 40px 24px;
}

.video-hero video {
  position: absolute;
  top: 50%; left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto; height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 0;
}

.video-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(74,59,54,0.25) 0%, rgba(74,59,54,0.6) 100%);
  z-index: 1;
}

@media (max-width: 700px) {
  .video-hero { min-height: 78vh; }
}

@media (prefers-reduced-motion: reduce) {
  .video-hero video { display: none; }
  .video-hero { background: linear-gradient(135deg, var(--mint-deep), var(--pop-teal)); }
}

/* ---- Smaller full-bleed banner (for sub-pages) ---- */
.photo-banner {
  position: relative;
  min-height: 52vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  padding: 40px 24px;
}
.photo-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(74,59,54,0.2) 0%, rgba(74,59,54,0.6) 100%);
  z-index: 1;
}
.photo-banner-content { position: relative; z-index: 2; max-width: 700px; }
.photo-banner h1 { color: var(--white); text-shadow: 0 2px 20px rgba(0,0,0,0.25); }
.photo-banner h1 em { color: var(--peach); }
.photo-banner p { color: rgba(255,255,255,0.95); }

/* ---- Overlapping image collage (Cindy-style) ---- */
.collage {
  position: relative;
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  aspect-ratio: 1/1.05;
}

.collage img {
  position: absolute;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lift);
  object-fit: cover;
  border: 6px solid var(--white);
}

.collage .img-main {
  width: 72%;
  height: 78%;
  top: 0;
  left: 0;
  z-index: 2;
  animation: float-main 6s ease-in-out infinite;
}

.collage .img-accent {
  width: 52%;
  height: 48%;
  bottom: 0;
  right: 0;
  z-index: 3;
  transform: rotate(3deg);
  animation: float-accent 5s ease-in-out infinite;
}

@keyframes float-main {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-10px) rotate(-1deg); }
}

@keyframes float-accent {
  0%, 100% { transform: translateY(0) rotate(3deg); }
  50% { transform: translateY(-14px) rotate(5deg); }
}

@media (prefers-reduced-motion: reduce) {
  .collage .img-main, .collage .img-accent { animation: none; }
}

.collage .badge-stamp {
  position: absolute;
  top: -18px;
  right: 8%;
  width: 92px;
  height: 92px;
  background: var(--pop-coral);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: var(--font-accent);
  font-weight: 700;
  font-size: 0.78rem;
  line-height: 1.2;
  box-shadow: var(--shadow-lift);
  z-index: 4;
  transform: rotate(-8deg);
  padding: 8px;
  animation: badge-pulse 3s ease-in-out infinite;
}

@keyframes badge-pulse {
  0%, 100% { transform: rotate(-8deg) scale(1); }
  50% { transform: rotate(-8deg) scale(1.06); }
}

@media (prefers-reduced-motion: reduce) {
  .collage .badge-stamp { animation: none; }
}

@media (max-width: 600px) {
  .collage { max-width: 340px; }
}

/* ---- Editorial split (bigger photo emphasis, Summer's-site style) ---- */
.editorial-split {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 0;
  align-items: stretch;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lift);
  background: var(--white);
}

.editorial-split .ed-photo {
  position: relative;
  min-height: 420px;
}
.editorial-split .ed-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: 0;
  box-shadow: none;
}

.editorial-split .ed-text {
  padding: 52px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.editorial-split.reverse { direction: rtl; }
.editorial-split.reverse > * { direction: ltr; }

@media (max-width: 860px) {
  .editorial-split { grid-template-columns: 1fr; }
  .editorial-split .ed-photo { min-height: 280px; }
  .editorial-split .ed-text { padding: 36px 28px; }
}

/* ---- Color-bleed section transitions (gradient instead of hard line) ---- */
.bleed-peach {
  background: linear-gradient(180deg, var(--cream) 0%, #FFE9D4 50%, var(--cream) 100%);
}
.bleed-mint {
  background: linear-gradient(180deg, var(--cream) 0%, #DCF1ED 50%, var(--cream) 100%);
}

/* ---- Menu-style flavor list (less boxy than cards) ---- */
.menu-list {
  max-width: 720px;
  margin: 0 auto;
}
.menu-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1.5px dashed var(--mint);
}
.menu-row:last-child { border-bottom: none; }
.menu-row .menu-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.menu-row .menu-desc {
  color: var(--ink-soft);
  font-size: 0.95rem;
  text-align: right;
}

/* ============================================
   BOLD RAINBOW COLOR STRIP (new bold moment)
   ============================================ */
.color-strip {
  display: flex;
  height: 90px;
  width: 100%;
}
.color-strip .strip-band {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: flex 0.3s ease;
}
.color-strip .strip-band:hover { flex: 1.4; }
.color-strip .strip-band span {
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  text-shadow: 0 2px 6px rgba(0,0,0,0.2);
  opacity: 0;
  transition: opacity 0.25s ease;
}
.color-strip .strip-band:hover span { opacity: 1; }

@media (max-width: 700px) {
  .color-strip { height: 64px; }
  .color-strip .strip-band span { display: none; }
}

/* ============================================
   PHOTO SLIDESHOW (Instagram gallery)
   ============================================ */
.slideshow {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lift);
  background: var(--ink);
}

.slideshow-track {
  position: relative;
  aspect-ratio: 4/5;
  max-height: 640px;
}

.slideshow-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.6s ease;
  pointer-events: none;
}

.slideshow-slide.active {
  opacity: 1;
  pointer-events: auto;
}

.slideshow-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
  box-shadow: none;
}

.slideshow-caption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 28px 24px 20px;
  background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.65) 100%);
  color: var(--white);
  font-family: var(--font-accent);
  font-weight: 600;
  font-size: 0.98rem;
}

.slideshow-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.92);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  box-shadow: var(--shadow-soft);
  transition: background 0.2s ease, transform 0.2s ease;
}
.slideshow-arrow:hover { background: var(--white); transform: translateY(-50%) scale(1.08); }
.slideshow-arrow.prev { left: 16px; }
.slideshow-arrow.next { right: 16px; }
.slideshow-arrow svg { width: 20px; height: 20px; color: var(--ink); }

.slideshow-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
}
.slideshow-dots button {
  width: 9px; height: 9px;
  border-radius: 50%;
  border: none;
  background: var(--cream-deep);
  cursor: pointer;
  padding: 0;
  transition: background 0.2s ease, transform 0.2s ease;
}
.slideshow-dots button.active { background: var(--pop-coral); transform: scale(1.25); }

@media (max-width: 600px) {
  .slideshow-track { aspect-ratio: 3/4; }
  .slideshow-arrow { width: 38px; height: 38px; }
}
