/* ===== DESIGN SYSTEM ===== */
:root {
  --green-900: #064e3b;
  --green-700: #047857;
  --green-500: #10b981;
  --green-100: #d1fae5;
  --green-50: #ecfdf5;
  --amber-500: #f59e0b;
  --amber-400: #fbbf24;
  --cream: #fefdf8;
  --white: #ffffff;
  --dark: #111827;
  --gray-700: #374151;
  --gray-500: #6b7280;
  --gray-300: #d1d5db;
  --gray-100: #f3f4f6;
  --radius: 20px;
  --radius-sm: 12px;
  --shadow: 0 4px 24px rgba(0,0,0,0.06);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.1);
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', system-ui, sans-serif;
  color: var(--dark);
  background: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

.wrap {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3 { font-family: 'Poppins', sans-serif; font-weight: 700; line-height: 1.2; }
h1 { font-size: clamp(2.2rem, 4vw, 3.2rem); color: var(--green-900); }
h2 { font-size: clamp(1.8rem, 3vw, 2.5rem); color: var(--green-900); }
h2 em, h1 em { font-style: italic; color: var(--green-700); }
h3 { font-size: 1.3rem; }
h4 { font-size: 1.1rem; font-weight: 700; }
h5 { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1.5px; font-weight: 700; color: var(--gray-500); margin-bottom: 16px; }

.overline {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 2px;
  color: var(--green-700); margin-bottom: 12px;
}
.overline::before {
  content: ''; width: 32px; height: 2px; background: var(--green-500); border-radius: 2px;
}

.section-header { text-align: center; max-width: 560px; margin: 0 auto 56px; }
.section-header p { color: var(--gray-500); margin-top: 12px; font-size: 1.05rem; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 22px; border-radius: 60px; font-weight: 600; font-size: 0.88rem;
  transition: all 0.35s var(--ease); border: 2px solid transparent;
}
.btn--filled {
  background: var(--green-700); color: var(--white); border-color: var(--green-700);
}
.btn--filled:hover {
  background: var(--green-900); border-color: var(--green-900);
  transform: translateY(-2px); box-shadow: 0 8px 24px rgba(4,120,87,0.3);
}
.btn--soft {
  background: var(--green-50); color: var(--green-700); border-color: var(--green-100);
}
.btn--soft:hover {
  background: var(--green-100); transform: translateY(-2px);
}
.btn--white {
  background: var(--white); color: var(--green-900); border-color: var(--white);
}
.btn--white:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.15); }
.btn--glass {
  background: rgba(255,255,255,0.15); color: var(--white); border-color: rgba(255,255,255,0.3);
  backdrop-filter: blur(8px);
}
.btn--glass:hover { background: rgba(255,255,255,0.25); transform: translateY(-2px); }

/* ===== HEADER ===== */
#site-header {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  padding: 16px 0; transition: all 0.4s var(--ease);
}
#site-header.scrolled {
  padding: 10px 0;
  background: rgba(254,253,248,0.85);
  backdrop-filter: blur(16px) saturate(180%);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
#main-nav { display: flex; align-items: center; justify-content: space-between; }

.brand {
  display: flex; align-items: center; gap: 10px; text-decoration: none;
}
.brand img {
  height: 70px; width: auto; object-fit: contain;
}

.nav-menu { display: flex; gap: 8px; }
.nav-menu a {
  padding: 8px 16px; border-radius: 40px; font-size: 0.9rem; font-weight: 500;
  color: var(--gray-700); transition: all 0.3s var(--ease);
}
.nav-menu a:hover { color: var(--green-700); background: var(--green-50); }

.nav-actions { display: flex; align-items: center; gap: 16px; }
.nav-phone {
  display: flex; align-items: center; gap: 8px; padding: 10px 20px;
  background: var(--green-50); border-radius: 40px; font-weight: 600; font-size: 0.9rem;
  color: var(--green-700); transition: all 0.3s var(--ease);
}
.nav-phone:hover { background: var(--green-100); }

.hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.hamburger span { width: 24px; height: 2px; background: var(--dark); border-radius: 2px; transition: all 0.3s var(--ease); }

/* ===== HERO ===== */
.hero {
  padding: 90px 0 40px;
  background: linear-gradient(160deg, var(--cream) 0%, var(--green-50) 50%, #fef3c7 100%);
  position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; top: -200px; right: -200px;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(16,185,129,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero-wrap { display: grid; grid-template-columns: 1fr 1.1fr; gap: 40px; align-items: center; }

.badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 16px; border-radius: 40px;
  background: rgba(16,185,129,0.1); border: 1px solid rgba(16,185,129,0.2);
  font-size: 0.78rem; font-weight: 600; color: var(--green-700); margin-bottom: 12px;
}
.badge-dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--green-500);
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.5); }
}

.hero-text h1 { margin-bottom: 12px; }
.hero-text > p { font-size: 0.95rem; color: var(--gray-500); max-width: 480px; margin-bottom: 18px; line-height: 1.6; }

.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 24px; }

.hero-stats {
  display: flex; align-items: center; gap: 20px;
  padding: 14px 24px; background: var(--white); border-radius: var(--radius-sm);
  box-shadow: var(--shadow); border: 1px solid rgba(0,0,0,0.04);
}
.stat strong { display: block; font-size: 1.2rem; font-family: 'Playfair Display', serif; color: var(--green-900); }
.stat span { font-size: 0.72rem; color: var(--gray-500); font-weight: 500; }
.stat-divider { width: 1px; height: 28px; background: var(--gray-300); }

.hero-visual { position: relative; }
.hero-img-wrapper {
  position: relative; border-radius: 20px; overflow: visible;
  box-shadow: var(--shadow-lg);
}
.hero-img-wrapper > img {
  border-radius: 20px; overflow: hidden;
}
.hero-img-wrapper img {
  width: 100%; height: 400px; object-fit: cover;
  transition: transform 8s var(--ease);
}
.hero-img-wrapper:hover img { transform: scale(1.05); }

.hero-float {
  position: absolute; display: flex; align-items: center; gap: 12px;
  padding: 14px 20px; background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px); border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.1); border: 1px solid rgba(255,255,255,0.6);
  animation: float 4s ease-in-out infinite;
}
.hero-float i { font-size: 1.2rem; color: var(--green-700); }
.hero-float strong { font-size: 0.85rem; display: block; }
.hero-float small { font-size: 0.72rem; color: var(--gray-500); }
.hero-float--1 { top: 20px; left: -30px; animation-delay: 0s; }
.hero-float--2 { bottom: 30px; right: -20px; animation-delay: 2s; }

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

/* ===== MARQUEE ===== */
.marquee {
  padding: 20px 0; background: var(--green-900); overflow: hidden;
}
.marquee-track {
  display: flex; gap: 32px; white-space: nowrap;
  animation: scroll-marquee 30s linear infinite;
  font-size: 1rem; font-weight: 600; color: rgba(255,255,255,0.8);
}
@keyframes scroll-marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== SCROLL HIGHLIGHT TIMELINE ===== */
.step-journey { background: var(--cream); position: relative; }
.step-sticky { display: flex; flex-direction: column; justify-content: center; }

@media (min-width: 861px) {
  .step-journey { height: 350vh; }
  .step-sticky { position: sticky; top: 0; height: 100vh; overflow: hidden; }
}

.bento-header { text-align: center; max-width: 600px; margin: 0 auto 48px; }
.bento-header h2 { margin-bottom: 16px; }

.step-container {
  display: flex; flex-direction: row; gap: 20px;
  max-width: 1000px; height: 360px; margin: 0 auto;
}

.step-card {
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 32px; border-radius: 24px;
  background: var(--white); box-shadow: var(--shadow);
  opacity: 0.5; 
  flex: 1; /* Inactive cards take 1 fraction */
  transition: flex 0.6s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.6s var(--ease), transform 0.6s var(--ease);
  border: 2px solid transparent; overflow: hidden; position: relative;
}

.step-card.active {
  flex: 3; /* Active card takes 3 fractions (approx 50% of width!) */
  opacity: 1; transform: scale(1.02);
  border-color: var(--green-500); box-shadow: var(--shadow-lg);
}

.step-icon {
  font-size: 3rem; display: flex; align-items: center; justify-content: center;
  width: 70px; height: 70px; background: var(--green-50); border-radius: 20px;
  transition: transform 0.6s var(--ease), background 0.6s var(--ease);
  position: absolute; top: 32px; left: 32px;
}

.step-card.active .step-icon {
  background: var(--green-100); transform: scale(1.1);
}

.step-title-vertical {
  position: absolute; bottom: 32px; left: 67px;
  transform: translateX(-50%) rotate(180deg);
  writing-mode: vertical-rl;
  font-size: 1.1rem; font-weight: 700; color: var(--green-700);
  opacity: 1; transition: opacity 0.3s var(--ease);
  white-space: nowrap; pointer-events: none; letter-spacing: 1px;
}

.step-card.active .step-title-vertical {
  opacity: 0;
}

.step-content {
  min-width: 250px; /* Keep text wide even when card is shrunk */
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
  transition-delay: 0s;
}

.step-card.active .step-content {
  opacity: 1; transform: translateY(0);
  transition-delay: 0.2s; /* Text fades in after card expands */
}

.step-content h3 { font-size: 1.4rem; margin-bottom: 8px; color: var(--green-900); white-space: nowrap; }
.step-content p { color: var(--gray-500); font-size: 0.95rem; margin-bottom: 0; }

@media (max-width: 860px) {
  .step-container { flex-direction: column; height: auto; gap: 32px; max-width: 500px; }
  .step-card { 
    flex-direction: column; justify-content: flex-start; padding: 24px;
    height: 140px; flex: none; align-items: flex-start;
  }
  .step-card.active { height: 220px; transform: scale(1.05); }
  .step-icon { position: relative; top: 0; left: 0; margin-bottom: 16px; }
  .step-title-vertical { display: none; }
  .step-content { min-width: 100%; white-space: normal; }
  .step-content h3 { white-space: normal; }
}

/* ===== SECTIONS ===== */
.section { padding: 100px 0; }

/* ===== OUR STORY ===== */
.story { background: var(--white); }
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.story-image img {
  border-radius: var(--radius); box-shadow: var(--shadow-lg);
  width: 100%; height: 460px; object-fit: cover;
}
.story-content h2 { margin-bottom: 20px; }
.story-content p { color: var(--gray-500); margin-bottom: 16px; }
.story-features { display: flex; gap: 20px; margin-top: 28px; flex-wrap: wrap; }
.sf-item {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 18px; background: var(--green-50); border-radius: var(--radius-sm);
}
.sf-icon {
  width: 36px; height: 36px; border-radius: 10px;
  background: var(--green-700); color: var(--white);
  display: flex; align-items: center; justify-content: center; font-size: 0.85rem;
}
.sf-item span { font-size: 0.85rem; font-weight: 600; color: var(--green-900); }

/* ===== FRESH PICKS ===== */
.picks { background: var(--cream); }
.picks-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
}
.pick-card {
  background: var(--white); border-radius: var(--radius); overflow: hidden;
  border: 1px solid rgba(0,0,0,0.05);
  transition: all 0.4s var(--ease); position: relative;
}
.pick-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.pick-card--large { grid-row: span 2; }
.pick-card__img { overflow: hidden; height: 220px; }
.pick-card--large .pick-card__img { height: 100%; min-height: 300px; }
.pick-card__img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.pick-card:hover .pick-card__img img { transform: scale(1.08); }
.pick-card__body { padding: 28px; }
.pick-card--large { display: grid; grid-template-columns: 1fr 1fr; }
.pick-card__label {
  display: inline-block; padding: 4px 14px; border-radius: 20px;
  background: var(--green-50); color: var(--green-700);
  font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px;
  margin-bottom: 12px;
}
.pick-card__body h3 { margin-bottom: 10px; }
.pick-card__body p { color: var(--gray-500); font-size: 0.92rem; margin-bottom: 16px; }
.pick-card__link {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 600; font-size: 0.9rem; color: var(--green-700);
  transition: gap 0.3s var(--ease);
}
.pick-card__link:hover { gap: 14px; }

/* ===== DELIVERY BANNER ===== */
.delivery-banner { padding: 24px 0; }
.db-inner {
  display: grid; grid-template-columns: 1.2fr 0.8fr; align-items: center;
  background: linear-gradient(135deg, var(--green-900) 0%, var(--green-700) 100%);
  border-radius: 28px; padding: 64px; color: var(--white); position: relative; overflow: hidden;
}
.db-inner::before {
  content: ''; position: absolute; top: -100px; right: -100px;
  width: 400px; height: 400px; border-radius: 50%;
  background: rgba(255,255,255,0.05); pointer-events: none;
}
.db-content .overline { color: rgba(255,255,255,0.6); }
.db-content .overline::before { background: rgba(255,255,255,0.4); }
.db-content h2 { color: var(--white); margin-bottom: 16px; }
.db-content h2 em { color: var(--amber-400); }
.db-content p { color: rgba(255,255,255,0.8); margin-bottom: 28px; max-width: 420px; }
.db-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.db-visual { text-align: center; }
.db-visual img { max-height: 280px; margin: 0 auto; border-radius: var(--radius); filter: drop-shadow(0 20px 40px rgba(0,0,0,0.3)); }

/* ===== PROMISES ===== */
.promises { background: var(--white); }
.promises-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}
.promise-card {
  padding: 36px 28px; border-radius: var(--radius);
  background: var(--cream); border: 1px solid rgba(0,0,0,0.04);
  transition: all 0.4s var(--ease); text-align: center;
}
.promise-card:hover {
  transform: translateY(-6px); box-shadow: var(--shadow-lg);
  background: var(--white); border-color: var(--green-100);
}
.promise-icon { font-size: 2.4rem; margin-bottom: 16px; display: block; }
.promise-card h4 { margin-bottom: 10px; color: var(--green-900); }
.promise-card p { font-size: 0.9rem; color: var(--gray-500); }

/* ===== GALLERY ===== */
.gallery { padding: 100px 0; background: var(--cream); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 240px 240px;
  gap: 16px;
}
.gallery-item {
  border-radius: var(--radius); overflow: hidden; position: relative; cursor: pointer;
}
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.gallery-item:hover img { transform: scale(1.1); }
.gallery-item::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.3), transparent);
  opacity: 0; transition: opacity 0.4s var(--ease);
}
.gallery-item:hover::after { opacity: 1; }
.gallery-item--wide { grid-column: span 2; }
.gallery-item--tall { grid-row: span 2; }

/* ===== TESTIMONIALS ===== */
.voices { background: var(--white); }
.voices-slider { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.voice-card {
  padding: 36px; border-radius: var(--radius);
  background: var(--cream); border: 1px solid rgba(0,0,0,0.04);
  transition: all 0.4s var(--ease);
}
.voice-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--green-100); }
.voice-stars { color: var(--amber-500); font-size: 1.1rem; margin-bottom: 16px; letter-spacing: 2px; }
.voice-card blockquote { font-size: 1rem; color: var(--gray-700); margin-bottom: 24px; font-style: italic; line-height: 1.7; }
.voice-author { display: flex; align-items: center; gap: 14px; }
.voice-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--green-500), var(--green-700));
  color: var(--white); display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.8rem;
}
.voice-author strong { display: block; font-size: 0.9rem; }
.voice-author span { font-size: 0.8rem; color: var(--gray-500); }

/* ===== FIND US ===== */
.findus { background: var(--cream); }
.findus-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: stretch; }
.findus-info h2 { margin-bottom: 28px; }
.findus-details { display: flex; flex-direction: column; gap: 20px; margin-bottom: 32px; }
.fd-item { display: flex; align-items: flex-start; gap: 16px; }
.fd-icon {
  width: 44px; height: 44px; min-width: 44px; border-radius: 12px;
  background: var(--green-50); color: var(--green-700);
  display: flex; align-items: center; justify-content: center; font-size: 1rem;
}
.fd-item strong { display: block; font-size: 0.9rem; margin-bottom: 2px; }
.fd-item p { font-size: 0.9rem; color: var(--gray-500); }
.findus-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.findus-map {
  border-radius: var(--radius); overflow: hidden; min-height: 400px;
  box-shadow: var(--shadow); border: 4px solid var(--white);
}
.findus-map iframe { width: 100%; height: 100%; }

/* ===== FOOTER ===== */
.site-footer {
  background: var(--green-900); color: rgba(255,255,255,0.8); padding: 72px 0 0;
}
.footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px;
  padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand .brand { margin-bottom: 16px; display: inline-block; }
.footer-brand .brand img { background: var(--white); padding: 8px 16px; border-radius: 12px; height: 60px; object-fit: contain; }
.footer-brand p { font-size: 0.9rem; color: rgba(255,255,255,0.6); margin-bottom: 20px; }
.footer-socials { display: flex; gap: 12px; }
.footer-socials a {
  width: 40px; height: 40px; border-radius: 12px;
  background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.7);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s var(--ease);
}
.footer-socials a:hover { background: var(--green-500); color: var(--white); transform: translateY(-2px); }
.footer-col h5 { color: rgba(255,255,255,0.5); }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 0.9rem; color: rgba(255,255,255,0.6); transition: all 0.3s var(--ease); }
.footer-col a:hover { color: var(--white); padding-left: 4px; }
.footer-col li:not(:has(a)) { font-size: 0.9rem; color: rgba(255,255,255,0.5); }
.footer-bottom { padding: 24px 0; text-align: center; font-size: 0.85rem; color: rgba(255,255,255,0.4); }

/* ===== WHATSAPP FAB ===== */
.whatsapp-fab {
  position: fixed; bottom: 28px; right: 28px; z-index: 999;
  width: 60px; height: 60px; border-radius: 50%;
  background: #25d366; color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; box-shadow: 0 6px 24px rgba(37,211,102,0.4);
  transition: all 0.3s var(--ease);
}
.whatsapp-fab:hover { transform: scale(1.1); box-shadow: 0 8px 32px rgba(37,211,102,0.5); }
.fab-tooltip {
  position: absolute; right: 72px; top: 50%; transform: translateY(-50%);
  background: var(--dark); color: var(--white); padding: 8px 16px;
  border-radius: 8px; font-size: 0.8rem; font-weight: 600; white-space: nowrap;
  opacity: 0; pointer-events: none; transition: opacity 0.3s var(--ease);
}
.whatsapp-fab:hover .fab-tooltip { opacity: 1; }

/* ===== REVEAL ANIMATIONS ===== */
[data-reveal] {
  opacity: 0; transform: translateY(32px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
[data-reveal].revealed { opacity: 1; transform: translateY(0); }

/* ===== MOBILE NAV ===== */
.nav-menu.open {
  display: flex !important; flex-direction: column;
  position: absolute; top: 100%; left: 0; width: 100%;
  background: rgba(254,253,248,0.97); backdrop-filter: blur(16px);
  padding: 24px; border-radius: 0 0 var(--radius) var(--radius);
  box-shadow: var(--shadow-lg); gap: 4px;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== RESPONSIVE ===== */

/* Tablet — nav collapses, minor adjustments */
@media (max-width: 860px) {
  .nav-menu { display: none; }
  .hamburger { display: flex; }
}

/* Small tablet — stack grids */
@media (max-width: 768px) {
  .hero-wrap { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .hero-text > p { margin-left: auto; margin-right: auto; }
  .hero-cta { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-img-wrapper { max-width: 520px; margin: 0 auto; }
  .story-grid { grid-template-columns: 1fr; gap: 40px; }
  .findus-grid { grid-template-columns: 1fr; gap: 40px; }
  .picks-grid { grid-template-columns: 1fr; }
  .pick-card--large { grid-row: auto; grid-template-columns: 1fr; }
  .pick-card--large .pick-card__img { height: 260px; }
  .db-inner { grid-template-columns: 1fr; padding: 48px 32px; }
  .db-visual { display: none; }
  .voices-slider { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 200px 200px 200px; }
  .gallery-item--wide { grid-column: span 1; }
  .promises-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

/* Mobile */
@media (max-width: 540px) {
  .section { padding: 72px 0; }
  .hero { padding: 120px 0 60px; }
  .hero-stats { flex-direction: column; gap: 16px; text-align: center; padding: 20px; }
  .stat-divider { width: 40px; height: 1px; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { justify-content: center; }
  .hero-float { display: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .gallery-item--wide, .gallery-item--tall { grid-column: auto; grid-row: auto; }
  .promises-grid { grid-template-columns: 1fr; }
  .story-features { flex-direction: column; }
  .db-inner { padding: 36px 24px; }
  .nav-phone span { display: none; }
}
