/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Nunito', sans-serif;
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ===== VARIABLES ===== */
:root {
  --sky: #4DC8E8;
  --coral: #E84C3D;
  --mango: #FFB300;
  --lime: #6DBF2E;
  --cream: #FFF8F0;
  --deep: #1A1A2E;
  --white: #FFFFFF;
  --text: #2C2C2C;
  --shadow-soft: 0 4px 24px rgba(0,0,0,0.10);
  --shadow-deep: 0 8px 40px rgba(0,0,0,0.18);
  --radius: 16px;
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== TYPOGRAPHY ===== */
h1 { font-family: 'Fraunces', serif; font-size: clamp(2.5rem, 6vw, 6rem); line-height: 1.05; }
h2 { font-family: 'Fraunces', serif; font-size: clamp(1.8rem, 4vw, 3.5rem); line-height: 1.15; }
h3 { font-family: 'Fraunces', serif; font-size: clamp(1.2rem, 2.5vw, 2rem); }
h4 { font-family: 'Nunito', sans-serif; font-weight: 700; }
p { line-height: 1.75; }

/* ===== NAVIGATION ===== */
.site-nav {
  position: sticky; top: 0; z-index: 1000;
  background: var(--sky);
  display: flex; align-items: center; gap: 1.5rem;
  padding: 0 2rem; height: 72px;
  transition: box-shadow 0.3s ease;
}
.site-nav.scrolled { box-shadow: var(--shadow-soft); }
.nav-logo { display: flex; align-items: center; gap: 0.6rem; flex-shrink: 0; }
.nav-logo img { height: 52px; width: auto; }
.nav-logo-text { font-family: 'Fraunces', serif; font-weight: 700; font-size: 1.05rem; color: var(--deep); }
.nav-links { display: flex; align-items: center; gap: 0.2rem; flex: 1; justify-content: center; }
.nav-links a {
  font-family: 'Nunito', sans-serif; font-weight: 600; font-size: 0.9rem;
  color: var(--deep); padding: 0.4rem 0.7rem; border-radius: 6px;
  transition: color 0.2s; white-space: nowrap;
}
.nav-links a:hover { color: var(--coral); }
.nav-links a.active { border-bottom: 2.5px solid var(--deep); }
.nav-locator-btn {
  display: flex; align-items: center; gap: 0.4rem;
  font-family: 'Nunito', sans-serif; font-weight: 700; font-size: 0.85rem;
  color: var(--deep); border: 2px solid var(--deep);
  border-radius: 999px; padding: 0.4rem 1rem;
  white-space: nowrap; flex-shrink: 0;
  transition: background 0.2s, color 0.2s;
}
.nav-locator-btn svg { width: 15px; height: 15px; }
.nav-locator-btn:hover { background: var(--deep); color: var(--white); }
.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; background: none; border: none; padding: 4px; margin-left: auto;
}
.nav-hamburger span { display: block; width: 24px; height: 2.5px; background: var(--deep); border-radius: 2px; }
.nav-mobile-menu {
  display: none; position: fixed;
  top: 72px; left: 0; right: 0;
  background: var(--sky); padding: 1rem 2rem 1.5rem;
  z-index: 999; box-shadow: var(--shadow-soft);
}
.nav-mobile-menu.open { display: block; }
.nav-mobile-menu a {
  display: block; font-family: 'Nunito', sans-serif; font-weight: 600;
  font-size: 1rem; color: var(--deep);
  padding: 0.7rem 0; border-bottom: 1px solid rgba(0,0,0,0.08);
}
.nav-mobile-menu a:last-child { border-bottom: none; }

/* ===== LAYOUT ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.section { padding: 100px 0; }
.section-sm { padding: 64px 0; }
.section-cream { background: var(--cream); }
.section-white { background: var(--white); }
.section-sky { background: var(--sky); }
.section-coral { background: var(--coral); }
.section-deep { background: var(--deep); }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.split--reverse { direction: rtl; }
.split--reverse > * { direction: ltr; }
.split-text { display: flex; flex-direction: column; gap: 1.25rem; }

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: 'Nunito', sans-serif; font-weight: 800;
  font-size: 0.95rem; letter-spacing: 0.02em;
  padding: 0.85rem 2rem; border-radius: 999px;
  border: none; cursor: pointer; transition: var(--transition);
  position: relative; overflow: hidden; z-index: 0;
}
.btn-primary::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(255,255,255,0.2);
  transform: translateY(100%); transition: transform 0.35s ease; z-index: -1;
}
.btn-primary:hover::after { transform: translateY(0); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-soft); }
.btn-coral { background: var(--coral); color: var(--white); }
.btn-lime { background: var(--lime); color: var(--white); }
.btn-mango { background: var(--mango); color: var(--deep); }
.btn-sky { background: var(--sky); color: var(--deep); }
.btn-white { background: var(--white); color: var(--deep); border: 2px solid var(--deep); }
.btn-dark { background: var(--deep); color: var(--white); }

/* ===== BADGE ===== */
.badge {
  display: inline-block; font-family: 'Nunito', sans-serif; font-weight: 800;
  font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase;
  padding: 0.3rem 0.9rem; border-radius: 999px;
}
.badge-lime { background: var(--lime); color: var(--white); }
.badge-mango { background: var(--mango); color: var(--deep); }
.badge-coral { background: var(--coral); color: var(--white); }
.badge-sky { background: var(--sky); color: var(--deep); }

/* ===== FLOATING SHAPES ===== */
.floating-bg { position: absolute; inset: 0; pointer-events: none; overflow: hidden; z-index: 0; }
.float-shape {
  position: absolute; pointer-events: none; will-change: transform;
  animation: floatUp var(--duration, 8s) ease-in-out infinite;
  animation-delay: var(--delay, 0s);
}
@keyframes floatUp {
  0%   { transform: translateY(0px) rotate(0deg); opacity: 0.55; }
  50%  { transform: translateY(-28px) rotate(8deg); opacity: 0.85; }
  100% { transform: translateY(0px) rotate(0deg); opacity: 0.55; }
}
.shape-coral { color: var(--coral); }
.shape-mango { color: var(--mango); }
.shape-lime  { color: var(--lime); }
.shape-sky   { color: var(--sky); }
.shape-tan   { color: #c8a46e; }

/* ===== HERO ===== */
.hero-wrap { position: relative; height: 100vh; min-height: 560px; overflow: hidden; display: flex; align-items: flex-end; }
.hero-img-wrap { position: absolute; inset: 0; overflow: hidden; }
.parallax-hero { width: 100%; height: 130%; object-fit: cover; object-position: center; will-change: transform; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top right, rgba(0,0,0,0.55) 0%, transparent 60%);
}
.hero-text { position: relative; z-index: 2; padding: 0 4rem 5rem; max-width: 700px; }
.hero-line-1 {
  display: block; font-family: 'Nunito', sans-serif; font-weight: 700;
  font-size: clamp(0.9rem, 2vw, 1.35rem); letter-spacing: 0.22em;
  text-transform: uppercase; color: rgba(255,255,255,0.85); margin-bottom: 0.15rem;
}
.hero-line-2 {
  display: block; font-family: 'Fraunces', serif; font-weight: 900;
  font-size: clamp(4rem, 11vw, 9.5rem); letter-spacing: 0.04em;
  color: var(--white); line-height: 0.88; margin-bottom: 0.3rem;
}
.hero-line-3 {
  display: flex; align-items: center; gap: 0.5rem;
  font-family: 'Nunito', sans-serif; font-weight: 700;
  font-size: clamp(0.9rem, 2vw, 1.35rem); letter-spacing: 0.22em;
  text-transform: uppercase; color: rgba(255,255,255,0.85);
}
.hero-scroll-indicator {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.3rem;
  color: rgba(255,255,255,0.6); font-family: 'Nunito', sans-serif;
  font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase; z-index: 2;
  animation: scrollBounce 2s ease-in-out infinite;
}
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(10px); }
}

/* ===== BRAND INTRO ===== */
.brand-intro { position: relative; overflow: hidden; background: var(--cream); padding: 100px 0; text-align: center; }
.brand-intro__content {
  position: relative; z-index: 1;
  max-width: 680px; margin: 0 auto;
  display: flex; flex-direction: column; align-items: center; gap: 1.5rem;
}
.brand-intro h2 { color: var(--coral); }

/* ===== PRODUCT IMAGE CONTAINERS ===== */
.treat-img-container {
  position: relative; overflow: hidden;
  border-radius: var(--radius); height: 480px;
  box-shadow: var(--shadow-deep);
}
.treat-img-container img {
  position: absolute; top: 0; left: 0;
  width: 100%; height: 130%; object-fit: cover; will-change: transform;
}
.split-img { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-deep); aspect-ratio: 4/3; }
.split-img img { width: 100%; height: 100%; object-fit: cover; will-change: transform; }

/* ===== TREATS HERO ===== */
.treats-hero {
  padding: 120px 0 80px; text-align: center;
  background: linear-gradient(135deg, var(--coral), var(--mango), var(--lime), var(--sky));
  background-size: 300% 300%;
  animation: gradientShift 8s ease infinite;
}
@keyframes gradientShift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
.treats-hero h1 { color: var(--white); margin-bottom: 1rem; }
.treats-hero p { color: rgba(255,255,255,0.9); max-width: 720px; margin: 0 auto; }

/* ===== PACKAGED HERO ===== */
.packaged-hero { position: relative; overflow: hidden; height: 420px; }
.packaged-hero img { width: 100%; height: 130%; object-fit: cover; object-position: center; will-change: transform; }
.packaged-header { text-align: center; padding: 80px 0 40px; }
.packaged-header p { font-size: 1rem; color: #666; letter-spacing: 0.05em; margin-top: 0.4rem; }

/* ===== FLAVOR CARDS ===== */
.card-group { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 1.5rem; margin-top: 2.5rem; }
.flavor-card {
  border-radius: var(--radius); padding: 2rem 1.5rem;
  display: flex; flex-direction: column; gap: 0.75rem; box-shadow: var(--shadow-soft);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  transform-style: preserve-3d; will-change: transform;
}
.flavor-card:hover { transform: rotateY(-6deg) rotateX(4deg) scale(1.04); box-shadow: var(--shadow-deep); }
.flavor-card h3 { font-family: 'Pacifico', cursive; font-weight: 400; font-size: clamp(1.25rem, 2vw, 1.55rem); color: var(--deep); line-height: 1.2; }
.flavor-card p { font-family: 'Nunito', sans-serif; font-size: 0.88rem; color: #555; line-height: 1.55; }
.flavor-card img { width: 100%; aspect-ratio: 3/4; object-fit: cover; border-radius: 10px; box-shadow: var(--shadow-soft); }

/* ===== EQUIPMENT CARDS ===== */
.equipment-card { background: var(--white); border-radius: 20px; padding: 2rem; box-shadow: var(--shadow-deep); display: flex; justify-content: center; }
.equipment-card img { object-fit: contain; width: 100%; }
.equipment-card--freezer img { max-height: 420px; }
.equipment-card--trays img { max-height: 480px; }

/* ===== FEATURE LIST ===== */
.feature-list { display: flex; flex-direction: column; gap: 0.85rem; margin-top: 0.5rem; }
.feature-item { display: flex; align-items: flex-start; gap: 0.75rem; font-size: 0.95rem; line-height: 1.55; }
.check-icon { flex-shrink: 0; margin-top: 1px; }

/* ===== ICON CARDS ===== */
.icon-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin: 2.5rem 0; }
.icon-card { background: var(--cream); border-radius: var(--radius); padding: 1.75rem; display: flex; flex-direction: column; gap: 0.85rem; box-shadow: var(--shadow-soft); }
.icon-card__icon svg { width: 38px; height: 38px; }
.icon-card__text { font-size: 0.93rem; line-height: 1.6; color: var(--text); }

/* ===== STORY TEXT ===== */
.story-section { padding: 100px 0; background: var(--white); }
.story-text { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 2rem; }
.story-text p { font-size: clamp(1.05rem, 1.5vw, 1.2rem); line-height: 1.9; color: #3a3a4a; }

/* ===== PURPOSE CARDS ===== */
.purpose-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-top: 3rem; }
.purpose-card { border-radius: var(--radius); padding: 2.5rem; box-shadow: var(--shadow-soft); }
.purpose-card__label { font-family: 'Nunito', sans-serif; font-weight: 800; font-size: 0.75rem; letter-spacing: 0.18em; text-transform: uppercase; margin-bottom: 1rem; }
.purpose-card__quote { font-family: 'Fraunces', serif; font-style: italic; font-size: clamp(1rem, 1.4vw, 1.2rem); line-height: 1.65; color: var(--deep); }

/* ===== ROOTS HERO ===== */
.roots-hero { position: relative; height: 100vh; min-height: 560px; overflow: hidden; display: flex; align-items: flex-end; }
.roots-hero-img { position: absolute; inset: 0; overflow: hidden; }
.roots-hero-img img { width: 100%; height: 130%; object-fit: cover; object-position: center; will-change: transform; }
.roots-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(26,26,46,.85) 0%, rgba(26,26,46,.3) 50%, transparent 100%);
}
.roots-hero__content { position: relative; z-index: 2; padding: 0 4rem 5rem; }
.roots-hero h1 { color: var(--white); }
.roots-hero .hero-sub { color: var(--sky); font-size: 1.1rem; margin-top: 0.35rem; }

/* ===== JUANCHO HERO ===== */
.juancho-hero {
  min-height: 90vh;
  background: linear-gradient(160deg, var(--sky) 0%, #2dd8f5 40%, #a8edff 100%);
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; text-align: center;
  padding: 120px 24px 80px; position: relative; overflow: hidden;
}
.penguin-hero { max-width: 300px; width: 80%; border-radius: 50%; overflow: hidden; box-shadow: var(--shadow-deep); margin-bottom: 2rem; will-change: transform; }
.penguin-hero img { width: 100%; height: auto; object-fit: cover; }
.juancho-hero h1 { color: var(--white); margin-bottom: 0.4rem; }
.juancho-hero h2 { font-family: 'Nunito', sans-serif; font-weight: 600; font-size: 1.1rem; color: rgba(255,255,255,0.88); }
.snow-story { position: relative; padding: 100px 0; background: var(--white); overflow: hidden; }

/* ===== PARTNERS ===== */
.partners-hero {
  position: relative; padding: 140px 0 100px;
  background: linear-gradient(135deg, var(--deep) 0%, #2c1a4e 100%);
  overflow: hidden; text-align: center;
}
.partners-hero::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(232,76,61,0.35) 0%, rgba(255,179,0,0.25) 100%);
}
.partners-hero__content { position: relative; z-index: 1; }
.partners-hero h1 { color: var(--white); margin-bottom: 0.75rem; }
.partners-hero p { color: rgba(255,255,255,0.78); font-size: 1.05rem; }
.partners-intro { padding: 80px 0; background: var(--white); }
.partners-intro-inner { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: 1.5rem; }
.partners-intro-inner p { font-size: 1.05rem; line-height: 1.8; }

/* ===== PARTNER / CTA ===== */
.partner-cta { background: var(--sky); padding: 80px 0; text-align: center; }
.partner-cta__content { max-width: 600px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; gap: 1.25rem; }
.partner-cta h2 { color: var(--white); }
.partner-cta p { color: rgba(255,255,255,0.9); max-width: 480px; }

/* ===== CTA BAND ===== */
.cta-band { padding: 72px 0; text-align: center; }
.cta-band__content { max-width: 640px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; gap: 1.25rem; }
.cta-band h2 { color: var(--white); }
.cta-band p { color: rgba(255,255,255,0.9); }

/* ===== STORE PREVIEW MAP (homepage) ===== */
.map-preview-section { background: var(--sky); padding: 64px 0 72px; text-align: center; }
.map-preview-section h2 { color: var(--white); margin-bottom: 1.5rem; }
#map-preview { width: 100%; height: 480px; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-deep); }
.map-preview-caption { color: rgba(255,255,255,0.88); margin-top: 1.25rem; margin-bottom: 1.75rem; }

/* ===== STORE LOCATOR ===== */
.locator-wrap { display: grid; grid-template-columns: 40% 60%; height: calc(100vh - 72px); }
.locator-sidebar { display: flex; flex-direction: column; background: var(--white); border-right: 1px solid #eee; }
.locator-sidebar__header { padding: 1.5rem; border-bottom: 1px solid #eee; }
.locator-sidebar__header h1 { font-size: 1.5rem; margin-bottom: 0.75rem; }
.locator-search { width: 100%; padding: 0.7rem 1rem; border: 1.5px solid #e0e0e8; border-radius: 999px; font-family: 'Nunito', sans-serif; font-size: 0.9rem; outline: none; transition: border-color 0.2s; }
.locator-search:focus { border-color: var(--coral); }
.locator-list { flex: 1; overflow-y: auto; }
.store-item { padding: 1rem 1.5rem; border-bottom: 1px solid #f0f0f0; cursor: pointer; transition: background 0.15s; border-left: 4px solid transparent; }
.store-item:hover { background: var(--cream); }
.store-item.active { border-left-color: var(--coral); background: #fff5f4; }
.store-item__name { font-family: 'Nunito', sans-serif; font-weight: 700; font-size: 0.92rem; color: var(--deep); margin-bottom: 0.2rem; }
.store-item__addr { font-size: 0.82rem; color: #888; line-height: 1.45; }
.locator-map { position: relative; }
#map { width: 100%; height: 100%; }
.leaflet-popup-content-wrapper { border-radius: 12px !important; box-shadow: var(--shadow-deep) !important; }
.leaflet-popup-content { margin: 14px 18px !important; }
.popup-name { font-family: 'Nunito', sans-serif; font-weight: 800; font-size: 0.95rem; color: var(--deep); margin-bottom: 0.2rem; }
.popup-addr { font-size: 0.82rem; color: #666; margin-bottom: 0.6rem; line-height: 1.4; }
.popup-dir { font-family: 'Nunito', sans-serif; font-weight: 700; font-size: 0.8rem; color: var(--coral); display: inline-flex; align-items: center; gap: 0.3rem; }
.popup-dir:hover { text-decoration: underline; }

/* ===== CONTACT ===== */
.contact-page { min-height: calc(100vh - 72px); background: linear-gradient(160deg, #fff5ee 0%, #ffe8f5 45%, #e8f9ff 100%); display: flex; align-items: center; justify-content: center; padding: 80px 1.5rem; }
.contact-card { background: var(--white); border-radius: 24px; padding: 3rem; box-shadow: var(--shadow-deep); max-width: 560px; width: 100%; animation: cardUp 0.7s cubic-bezier(0.4,0,0.2,1) both; }
@keyframes cardUp {
  from { opacity: 0; transform: scale(0.9) translateY(32px); }
  to   { opacity: 1; transform: none; }
}
.contact-card__header { text-align: center; margin-bottom: 2rem; }
.contact-card__title { font-family: 'Fraunces', serif; font-size: 2rem; color: var(--deep); margin-bottom: 0.4rem; }
.contact-card__sub { color: #888; font-size: 0.9rem; }
.form-group { margin-bottom: 1.1rem; }
.form-label { display: block; font-family: 'Nunito', sans-serif; font-weight: 700; font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; color: #888; margin-bottom: 0.45rem; }
.form-input, .form-textarea { width: 100%; padding: 0.85rem 1rem; border: 1.5px solid #e0e0e8; border-radius: 10px; font-family: 'Nunito', sans-serif; font-size: 0.95rem; color: var(--deep); background: #fafafa; outline: none; transition: border-color 0.2s, box-shadow 0.2s; }
.form-input:focus, .form-textarea:focus { border-color: var(--coral); box-shadow: 0 0 0 3px rgba(232,76,61,0.1); }
.form-textarea { resize: vertical; min-height: 130px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.submit-btn { width: 100%; margin-top: 0.5rem; }
.submit-btn:disabled { opacity: 0.6; cursor: not-allowed; }
.hidden-field { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
.form-input.invalid, .form-textarea.invalid { border-color: var(--coral); box-shadow: 0 0 0 3px rgba(232,76,61,0.1); }
.form-error { display: block; min-height: 1.1rem; font-size: 0.78rem; color: var(--coral); margin-top: 0.35rem; }
.form-status { margin-top: 1rem; text-align: center; font-size: 0.9rem; font-weight: 700; display: none; }
.form-status.success { display: block; color: var(--lime); }
.form-status.error { display: block; color: var(--coral); }

/* ===== FOOTER ===== */
.site-footer { background: var(--deep); color: rgba(255,255,255,0.7); padding: 60px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 3rem; padding: 0 2rem; max-width: 1200px; margin: 0 auto; }
.footer-brand { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-brand img { height: 48px; width: auto; }
.footer-brand-name { font-family: 'Fraunces', serif; font-weight: 700; color: var(--white); font-size: 1rem; }
.footer-tagline { font-size: 0.85rem; font-style: italic; }
.footer-col h4 { font-family: 'Nunito', sans-serif; font-weight: 800; font-size: 0.75rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--white); margin-bottom: 1rem; }
.footer-col ul { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-col a { font-size: 0.88rem; color: rgba(255,255,255,0.6); transition: color 0.2s; }
.footer-col a:hover { color: var(--sky); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 0.5rem; padding: 1.5rem 2rem; margin-top: 3rem; border-top: 1px solid rgba(255,255,255,0.08); max-width: 1200px; margin-left: auto; margin-right: auto; font-size: 0.82rem; }

/* ===== GROUP IMAGE — CONTAIN (no-crop product flat-lays) ===== */
.split-img--contain,
.treat-img-container--contain {
  background: var(--white);
  display: flex; align-items: center; justify-content: center;
  padding: 2rem;
}
.split-img--contain img,
.treat-img-container--contain img {
  position: static; width: 100%; height: 100%; object-fit: contain; will-change: auto;
}

/* ===== FLAVOR QUICK-LOOK MODAL ===== */
.btn-quicklook {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-family: 'Nunito', sans-serif; font-weight: 700; font-size: 0.85rem;
  color: var(--deep); background: none; border: 2px solid var(--deep);
  border-radius: 999px; padding: 0.7rem 1.3rem; cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.btn-quicklook:hover { background: var(--deep); color: var(--white); }
.flavor-modal { position: fixed; inset: 0; z-index: 1100; display: none; align-items: center; justify-content: center; padding: 1.5rem; }
.flavor-modal.open { display: flex; }
.flavor-modal__backdrop { position: absolute; inset: 0; background: rgba(26,26,46,0.82); }
.flavor-modal__content {
  position: relative; background: var(--white); border-radius: var(--radius);
  max-width: min(1100px, 92vw); max-height: 90vh; overflow-y: auto;
  padding: 2rem; box-shadow: var(--shadow-deep);
  animation: cardUp 0.35s cubic-bezier(0.4,0,0.2,1) both;
}
.flavor-modal__content h3 { margin-bottom: 1rem; text-align: center; }
.flavor-modal__content img { width: 100%; height: auto; object-fit: contain; border-radius: 12px; }
.flavor-modal__close {
  position: absolute; top: 1rem; right: 1rem; width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  background: var(--cream); border: none; border-radius: 50%; cursor: pointer;
  color: var(--deep); transition: background 0.2s;
}
.flavor-modal__close:hover { background: var(--coral); color: var(--white); }
@media (max-width: 480px) {
  .flavor-modal__content { padding: 1.25rem; }
}


/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 768px) {
  .nav-links, .nav-locator-btn { display: none; }
  .nav-hamburger { display: flex; }
  .hero-text { padding: 0 1.5rem 4rem; }
  .hero-line-2 { font-size: clamp(3rem, 15vw, 5rem); }
  .split { grid-template-columns: 1fr; gap: 2.5rem; }
  .split--reverse { direction: ltr; }
  .icon-cards { grid-template-columns: 1fr; }
  .purpose-cards { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .locator-wrap { grid-template-columns: 1fr; grid-template-rows: auto 400px; height: auto; }
  .locator-sidebar { max-height: 50vh; }
  .form-row { grid-template-columns: 1fr; }
  .roots-hero__content { padding: 0 1.5rem 3.5rem; }
  .container { padding: 0 1.25rem; }
  .treat-img-container { height: 320px; }
  #map-preview { height: 320px; }
}
@media (max-width: 480px) {
  .contact-card { padding: 2rem 1.25rem; }
  .site-nav { padding: 0 1.25rem; }
  .packaged-hero { height: 240px; }
  .card-group { grid-template-columns: 1fr 1fr; }
}

/* ===== FLAVOR VOID GALLERY (pinned scroll sequence) ===== */
.flavor-void {
  position: relative;
  background: var(--deep);
  height: 100vh;           /* occupies exactly one viewport height */
  overflow: hidden;
}
.flavor-void__inner {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 1;
}
.flavor-void__title {
  font-family: 'Fraunces', serif;
  font-weight: 900;
  font-size: clamp(3rem, 9vw, 7rem);
  color: var(--lime);
  text-align: center;
  letter-spacing: -0.01em;
}
.flavor-void__hint {
  margin-top: 1rem;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.38);
}
/* Images are centered via negative margins; GSAP moves them radially with x/y */
.void-img {
  position: absolute;
  top: 50%; left: 50%;
  width: 180px; height: 240px;
  margin-left: -90px; margin-top: -120px;
  border-radius: 14px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.6);
  object-fit: cover;
  opacity: 0;
  z-index: 2;
  will-change: transform, opacity, filter;
}
@media (max-width: 768px) {
  .void-img { width: 120px; height: 160px; margin-left: -60px; margin-top: -80px; }
}
@media (prefers-reduced-motion: reduce) {
  .void-img { opacity: 1 !important; transform: none !important; filter: none !important; }
}
