/* ── Reset & Base ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green-900: #1B4332;
  --green-700: #2D6A4F;
  --green-600: #40916C;
  --green-500: #52B788;
  --green-300: #95D5B2;
  --green-100: #D8F3DC;
  --cream: #F5F0E8;
  --cream-light: #FAFAF6;
  --white: #FFFFFF;
  --sand: #E8E0D0;
  --sand-light: #F0EBE0;
  --gold: #D4A843;
  --gold-light: #F0D68A;
  --text-dark: #1A2E23;
  --text-mid: #3D5A4C;
  --text-light: #6B8F7E;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --shadow-sm: 0 2px 8px rgba(27,67,50,0.06);
  --shadow-md: 0 8px 30px rgba(27,67,50,0.10);
  --shadow-lg: 0 20px 60px rgba(27,67,50,0.12);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; font-size: 16px; }

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

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

.skip-link {
  position: absolute; top: -100%; left: 16px;
  background: var(--green-900); color: var(--white);
  padding: 8px 16px; border-radius: var(--radius-sm);
  z-index: 9999; font-size: 0.875rem;
}
.skip-link:focus { top: 16px; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ── Typography ─────────────────────────────────────────────── */
.section-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--green-600);
  margin-bottom: 12px;
}

.section-title {
  font-family: 'DM Serif Display', 'Playfair Display', Georgia, serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--green-900);
  margin-bottom: 24px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-mid);
  max-width: 560px;
  line-height: 1.7;
}

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 0.9375rem;
  font-weight: 500;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--green-900);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(27,67,50,0.25);
}
.btn-primary:hover {
  background: var(--green-700);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(27,67,50,0.30);
}

.btn-ghost {
  background: rgba(255,255,255,0.15);
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.4);
  backdrop-filter: blur(4px);
}
.btn-ghost:hover {
  background: var(--white);
  color: var(--green-900);
  border-color: var(--white);
}

.btn-full { width: 100%; justify-content: center; }

/* ── Header ─────────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(245,240,232,0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(27,67,50,0.06);
  transition: var(--transition);
}
.site-header.scrolled {
  background: rgba(250,250,246,0.95);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'DM Serif Display', serif;
  font-size: 1.25rem;
  color: var(--green-900);
}
.logo em { font-style: italic; color: var(--green-600); }

.logo-mark {
  width: 36px; height: 36px;
  background: var(--green-900);
  border-radius: 10px;
  position: relative;
  flex-shrink: 0;
}
.logo-mark::after {
  content: 'W';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-family: 'DM Serif Display', serif;
  font-size: 1rem;
}

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 32px;
}
.main-nav a {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-mid);
  transition: var(--transition);
  position: relative;
}
.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--green-600);
  border-radius: 2px;
  transition: var(--transition);
}
.main-nav a:hover { color: var(--green-900); }
.main-nav a:hover::after { width: 100%; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  z-index: 1001;
}
.nav-toggle-line {
  width: 24px; height: 2px;
  background: var(--green-900);
  border-radius: 2px;
  transition: var(--transition);
}
.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ── Hero ───────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: linear-gradient(160deg, var(--cream) 0%, var(--cream-light) 50%, var(--green-100) 100%);
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(82,183,136,0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -100px; left: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(212,168,67,0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content { max-width: 540px; }

.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--green-600);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-eyebrow::before {
  content: '';
  width: 32px; height: 2px;
  background: var(--green-500);
  border-radius: 2px;
}

.hero-headline {
  font-family: 'DM Serif Display', 'Playfair Display', Georgia, serif;
  font-size: clamp(2.25rem, 4.5vw, 3.5rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--green-900);
  margin-bottom: 24px;
}
.hero-headline em {
  font-style: italic;
  color: var(--green-600);
}

.hero-sub {
  font-size: 1.125rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
}
.stat { display: flex; flex-direction: column; }
.stat-number {
  font-family: 'DM Serif Display', serif;
  font-size: 1.75rem;
  color: var(--green-900);
  line-height: 1;
}
.stat-label {
  font-size: 0.8125rem;
  color: var(--text-light);
  margin-top: 4px;
}
.stat-divider {
  width: 1px; height: 40px;
  background: var(--sand);
}

/* Hero Image Stack */
.hero-visual { position: relative; }
.hero-img-stack { position: relative; }

.hero-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.hero-img:hover img { transform: scale(1.03); }

.hero-img-main {
  width: 100%;
  aspect-ratio: 600/750;
}
.hero-img-accent {
  position: absolute;
  bottom: -40px; left: -60px;
  width: 55%;
  aspect-ratio: 400/300;
  border: 6px solid var(--cream);
  box-shadow: var(--shadow-md);
}
.hero-img-accent img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.hero-badge {
  position: absolute;
  top: -20px; right: -20px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-md);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--green-900);
  z-index: 2;
}
.hero-badge-icon {
  width: 36px; height: 36px;
  background: var(--green-100);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-700);
}

.hero-wave {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  line-height: 0;
}
.hero-wave svg { width: 100%; height: auto; display: block; }

/* ── About ──────────────────────────────────────────────────── */
.about {
  padding: 120px 0;
  background: var(--cream-light);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-image {
  position: relative;
}
.about-image img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.about-image-accent {
  position: absolute;
  top: -20px; right: -20px;
  width: 120px; height: 120px;
  background: var(--green-100);
  border-radius: var(--radius-md);
  z-index: -1;
}

.about-content p {
  color: var(--text-mid);
  font-size: 1.0625rem;
  line-height: 1.8;
  margin-bottom: 16px;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
}
.about-feature {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1rem;
  color: var(--text-dark);
  font-weight: 500;
}
.about-feature-icon {
  width: 40px; height: 40px;
  background: var(--green-100);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-700);
  flex-shrink: 0;
}

/* ── Marketplace ────────────────────────────────────────────── */
.marketplace {
  padding: 120px 0;
  background: var(--white);
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.marketplace-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.market-card {
  background: var(--cream-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  border: 1px solid rgba(27,67,50,0.04);
}
.market-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.market-card-img {
  overflow: hidden;
  aspect-ratio: 500/380;
}
.market-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.market-card:hover .market-card-img img { transform: scale(1.06); }

.market-card-body {
  padding: 32px;
}
.market-card-title {
  font-family: 'DM Serif Display', serif;
  font-size: 1.5rem;
  color: var(--green-900);
  margin-bottom: 12px;
}
.market-card-desc {
  font-size: 0.9375rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 20px;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--green-700);
  transition: var(--transition);
}
.link-arrow:hover { gap: 12px; color: var(--green-900); }
.link-arrow svg { transition: var(--transition); }

/* ── Bakery ─────────────────────────────────────────────────── */
.bakery {
  padding: 120px 0;
  background: linear-gradient(160deg, var(--green-100) 0%, var(--cream) 100%);
}

.bakery-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.bakery-content p {
  font-size: 1.0625rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 32px;
}

.bakery-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 36px;
}
.bakery-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1rem;
  color: var(--text-dark);
}
.bakery-list-dot {
  width: 8px; height: 8px;
  background: var(--green-500);
  border-radius: 50%;
  flex-shrink: 0;
}

.bakery-visual { position: relative; }
.bakery-img-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.bakery-img-grid img {
  width: 100%;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}
.bakery-img-grid img:hover { transform: scale(1.02); }
.bakery-img-grid img:first-child { aspect-ratio: 400/500; }
.bakery-img-grid img:last-child { aspect-ratio: 400/300; }

/* ── Grocery ────────────────────────────────────────────────── */
.grocery {
  padding: 120px 0;
  background: var(--white);
}

.grocery-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.grocery-content p {
  font-size: 1.0625rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 32px;
}

.grocery-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 36px;
}
.grocery-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1rem;
  color: var(--text-dark);
}
.grocery-list-dot {
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

.grocery-visual { position: relative; }
.grocery-img-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.grocery-img-grid img {
  width: 100%;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}
.grocery-img-grid img:hover { transform: scale(1.02); }
.grocery-img-grid img:first-child { aspect-ratio: 400/300; }
.grocery-img-grid img:last-child { aspect-ratio: 400/500; }

/* ── Visit ──────────────────────────────────────────────────── */
.visit {
  padding: 120px 0;
  background: var(--cream-light);
}

.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: stretch;
}

.visit-info { display: flex; flex-direction: column; }

.visit-address {
  font-size: 1.125rem;
  color: var(--text-dark);
  margin-bottom: 36px;
  line-height: 1.8;
}

.visit-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 36px;
  flex: 1;
}
.visit-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.visit-detail-icon {
  width: 44px; height: 44px;
  background: var(--green-100);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-700);
  flex-shrink: 0;
}
.visit-detail-label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-light);
  margin-bottom: 4px;
}
.visit-detail-value {
  font-size: 1rem;
  color: var(--text-dark);
  line-height: 1.6;
}
.visit-detail-link {
  color: var(--green-700);
  font-size: 1rem;
  transition: var(--transition);
}
.visit-detail-link:hover { color: var(--green-900); }

.visit-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  min-height: 420px;
}

/* ── Contact CTA ────────────────────────────────────────────── */
.contact-cta {
  padding: 120px 0;
  background: linear-gradient(160deg, var(--green-900) 0%, var(--green-700) 100%);
  position: relative;
  overflow: hidden;
}
.contact-cta::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(149,213,178,0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.contact-cta-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  position: relative;
  z-index: 1;
}

.contact-cta-text .section-eyebrow { color: var(--green-300); }
.contact-cta-text .section-title { color: var(--white); }
.contact-cta-text p {
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.8;
}

.contact-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}
.form-group label {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1.5px solid var(--sand);
  border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem;
  color: var(--text-dark);
  background: var(--cream-light);
  transition: var(--transition);
  outline: none;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green-600);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(82,183,136,0.12);
}
.form-group textarea { resize: vertical; min-height: 120px; }

.form-note {
  font-size: 0.8125rem;
  color: var(--text-light);
  text-align: center;
  margin-top: 12px;
}

.form-success {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: var(--green-100);
  border-radius: var(--radius-sm);
  color: var(--green-900);
  font-size: 0.9375rem;
  font-weight: 500;
  margin-top: 16px;
}
.form-success svg { color: var(--green-700); flex-shrink: 0; }

/* ── Footer ─────────────────────────────────────────────────── */
.site-footer {
  background: var(--green-900);
  color: rgba(255,255,255,0.7);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand .logo { color: var(--white); margin-bottom: 16px; }
.footer-brand .logo-mark { background: var(--green-600); }
.footer-brand p { font-size: 0.9375rem; line-height: 1.8; }
.footer-brand a {
  color: rgba(255,255,255,0.7);
  transition: var(--transition);
}
.footer-brand a:hover { color: var(--green-300); }

.footer-nav h4,
.footer-hours h4 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.125rem;
  color: var(--white);
  margin-bottom: 20px;
}
.footer-nav ul,
.footer-hours ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-nav a {
  font-size: 0.9375rem;
  transition: var(--transition);
}
.footer-nav a:hover { color: var(--green-300); }
.footer-hours li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-size: 0.9375rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.4);
}

/* ── Scroll to top ──────────────────────────────────────────── */
.scroll-top {
  position: fixed;
  bottom: 32px; right: 32px;
  width: 48px; height: 48px;
  background: var(--green-900);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition: var(--transition);
  z-index: 999;
  cursor: pointer;
}
.scroll-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.scroll-top:hover { background: var(--green-700); transform: translateY(-2px); }

/* ── Animations ─────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-grid { gap: 40px; }
  .about-grid,
  .bakery-layout,
  .grocery-layout,
  .visit-grid,
  .contact-cta-inner { gap: 48px; }
}

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-content { max-width: 100%; }
  .hero-eyebrow { justify-content: center; }
  .hero-sub { max-width: 100%; margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-visual { max-width: 480px; margin: 0 auto; }
  .hero-img-accent { left: -20px; bottom: -24px; }

  .about-grid,
  .bakery-layout,
  .grocery-layout,
  .visit-grid,
  .contact-cta-inner {
    grid-template-columns: 1fr;
  }
  .bakery-layout,
  .grocery-layout { direction: ltr; }
  .bakery-visual,
  .grocery-visual { order: -1; }

  .marketplace-grid { grid-template-columns: 1fr 1fr; }

  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .main-nav {
    position: fixed;
    top: 0; right: 0;
    width: 280px; height: 100vh;
    background: var(--cream-light);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 28px;
    box-shadow: var(--shadow-lg);
    transform: translateX(100%);
    transition: var(--transition);
    z-index: 1000;
  }
  .main-nav.open { transform: translateX(0); }
  .main-nav ul { flex-direction: column; align-items: center; }
  .nav-toggle { display: flex; }

  .hero { padding: 100px 0 60px; min-height: auto; }
  .hero-img-accent { display: none; }
  .hero-badge { top: 12px; right: 12px; padding: 12px 16px; }

  .marketplace-grid { grid-template-columns: 1fr; }

  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 28px; }

  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-headline { font-size: 1.875rem; }
  .section-title { font-size: 1.75rem; }
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-stats { flex-wrap: wrap; gap: 16px; }
  .stat-divider { display: none; }
}
