/* ============================================
   Fine Flour Co, LLC — Styles
   A warm, sunlit artisan bakery.
   Fonts: Cormorant Garamond (display) + DM Sans (body) + Caveat (handwritten accents)
   ============================================ */

/* --- Variables --- */
:root {
  /* Warm, light bakery palette */
  --bg: #fdf8f0;
  --bg-warm: #f9f0e3;
  --bg-card: #ffffff;
  --bg-card-hover: #fffcf7;
  --bg-dark: #3b2f24;
  --border: #e8dccb;
  --border-light: #d4c4ab;

  /* Accent colors - warm golden/terracotta */
  --accent: #b8860b;
  --accent-light: #d4a843;
  --accent-dark: #8b6508;
  --terracotta: #c4724e;
  --terracotta-light: #d9917a;

  /* Text colors */
  --cream: #fdf8f0;
  --text: #3b2f24;
  --text-mid: #6b5b4d;
  --text-light: #8d7e70;
  --text-faint: #b5a898;

  /* Semantic */
  --white: #ffffff;

  /* Typography */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', 'Segoe UI', sans-serif;
  --font-hand: 'Caveat', cursive;

  /* Layout */
  --radius: 8px;
  --radius-lg: 16px;
  --shadow-sm: 0 1px 3px rgba(59, 47, 36, 0.08);
  --shadow-md: 0 4px 16px rgba(59, 47, 36, 0.1);
  --shadow-lg: 0 8px 32px rgba(59, 47, 36, 0.12);
  --shadow-glow: 0 8px 32px rgba(184, 134, 11, 0.1);
  --transition: 0.3s ease;
  --max-width: 1200px;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: var(--accent); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--accent-dark); }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* --- Subtle Paper Texture Overlay --- */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px 256px;
}

/* --- Typography --- */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; line-height: 1.15; color: var(--text); }
h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(2rem, 4vw, 3rem); letter-spacing: -0.01em; }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); }
.section-label {
  font-family: var(--font-hand);
  font-size: 1.3rem;
  color: var(--accent);
  display: block;
  margin-bottom: 0.5rem;
}
.italic-accent { font-style: italic; color: var(--terracotta); }

/* --- Container --- */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 2rem; }

/* --- Section Border --- */
.section-border-top { border-top: 1px solid var(--border); }

/* --- Buttons --- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  background: var(--accent);
  color: var(--cream);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover {
  background: var(--accent-dark);
  color: var(--cream);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  background: transparent;
  color: var(--accent);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  border: 2px solid var(--accent);
  border-radius: var(--radius);
  transition: all var(--transition);
}
.btn-ghost:hover {
  background: rgba(184, 134, 11, 0.08);
  color: var(--accent-dark);
  border-color: var(--accent-dark);
  transform: translateY(-1px);
}

/* --- Badges --- */
.card-badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: rgba(184, 134, 11, 0.08);
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 100px;
  border: 1px solid rgba(184, 134, 11, 0.15);
}

/* --- Cards --- */
.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-glow);
  border-color: var(--border-light);
}
.product-card-image {
  aspect-ratio: 4/3;
  position: relative;
  overflow: hidden;
}
.product-card-body { padding: 1.25rem 1.5rem; }
.product-card-footer {
  padding: 1rem 1.5rem;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ============================================
   NAVIGATION
   ============================================ */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 0;
  transition: all 0.4s ease;
}
.site-nav.scrolled {
  background: rgba(253, 248, 240, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--border);
  padding: 0.75rem 0;
}
.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
}
.nav-brand:hover { color: var(--text); }
.nav-brand svg { flex-shrink: 0; }
.brand-text { font-size: 1.35rem; }
.brand-co {
  color: var(--accent);
  font-style: italic;
}
.nav-links { display: flex; gap: 2rem; align-items: center; }
.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-mid);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  transition: color var(--transition);
  position: relative;
}
.nav-links a:hover,
.nav-links a.active { color: var(--text); }
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width var(--transition);
}
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-cta {
  padding: 0.5rem 1.25rem;
  font-size: 0.8rem;
}
.nav-links a.nav-cta {
  color: var(--cream);
}
.nav-links a.nav-cta:hover {
  color: var(--cream);
}
.nav-links a.nav-cta::after {
  display: none;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  width: 32px;
}
.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text);
  transition: all var(--transition);
  transform-origin: center;
}
.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); }

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(253, 248, 240, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.mobile-nav.open { opacity: 1; pointer-events: all; }
.mobile-nav a {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--text-mid);
  transition: color var(--transition);
}
.mobile-nav a:hover { color: var(--text); }

/* ============================================
   HERO
   ============================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 8rem 0 4rem;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(184, 134, 11, 0.06) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 30%, rgba(196, 114, 78, 0.05) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 80%, rgba(184, 134, 11, 0.03) 0%, transparent 40%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
  position: relative;
}
.hero-content { position: relative; z-index: 2; }
.hero-tagline {
  font-family: var(--font-hand);
  font-size: 1.35rem;
  color: var(--terracotta);
  margin-bottom: 1rem;
  opacity: 0;
  animation: fadeSlideUp 0.8s ease forwards;
  animation-delay: 0.2s;
}
.hero h1 {
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeSlideUp 0.8s ease forwards;
  animation-delay: 0.4s;
}
.hero-desc {
  font-size: 1.125rem;
  color: var(--text-mid);
  max-width: 520px;
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeSlideUp 0.8s ease forwards;
  animation-delay: 0.6s;
}
.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeSlideUp 0.8s ease forwards;
  animation-delay: 0.8s;
}
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-visual svg {
  width: 100%;
  max-width: 420px;
  height: auto;
  opacity: 0;
  animation: fadeIn 1s ease forwards;
  animation-delay: 0.6s;
}
.hero-visual svg .bread-outline {
  fill: none;
  stroke: var(--accent);
  stroke-width: 1.5;
  stroke-dasharray: 1400;
  stroke-dashoffset: 1400;
  animation: drawStroke 2.5s ease forwards;
  animation-delay: 0.8s;
}
.hero-visual svg .bread-fill {
  fill: rgba(184, 134, 11, 0.04);
}
.hero-scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-faint);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: gentleBounce 2s ease infinite;
}
.hero-scroll-hint svg { opacity: 0.5; }

/* ============================================
   OUR STORY
   ============================================ */
.story {
  padding: 6rem 0;
  position: relative;
  background: var(--bg-warm);
}
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: start;
}
.story-quote {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-style: italic;
  color: var(--text);
  line-height: 1.4;
  position: relative;
  padding-left: 1.5rem;
  border-left: 3px solid var(--terracotta);
}
.story-text { color: var(--text-mid); font-size: 1.05rem; }
.story-text p + p { margin-top: 1.25rem; }
.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid var(--border);
}
.stat-block { text-align: center; }
.stat-value {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
  display: block;
}
.stat-label {
  font-size: 0.85rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 0.25rem;
}

/* ============================================
   PRODUCTS
   ============================================ */
.products {
  padding: 6rem 0;
  position: relative;
}
.section-header {
  text-align: center;
  margin-bottom: 4rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.section-header p {
  color: var(--text-mid);
  margin-top: 1rem;
  font-size: 1.05rem;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

/* Gradient placeholder images - warm bakery tones */
.card-img-breads {
  background: linear-gradient(135deg, #d4a574 0%, #c4884e 30%, #b87535 60%, #a86328 100%);
}
.card-img-cakes {
  background: linear-gradient(150deg, #e8c5a8 0%, #d4a882 30%, #c49070 60%, #dbb89c 100%);
}
.card-img-pastries {
  background: linear-gradient(120deg, #c9a060 0%, #ddb878 30%, #eacb98 60%, #d4a86a 100%);
}
.card-img-flours {
  background: linear-gradient(160deg, #e8dcc8 0%, #d8ccb0 30%, #c8b898 60%, #e0d4c0 100%);
}
.card-img-cookies {
  background: linear-gradient(140deg, #c4884e 0%, #d4a068 40%, #c49060 70%, #b07840 100%);
}
.card-img-catering {
  background: linear-gradient(130deg, #deb890 0%, #c8a070 40%, #d4b088 70%, #c49870 100%);
}
.card-img-icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.25);
}
.product-card-body h3 {
  font-size: 1.15rem;
  margin: 0.75rem 0 0.5rem;
}
.product-card-body p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.6;
}
.card-price {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
}
.card-action {
  font-size: 0.8rem;
  color: var(--accent);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: color var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}
.card-action::after {
  content: '\2192';
  transition: transform var(--transition);
}
.card-action:hover { color: var(--accent-dark); }
.card-action:hover::after { transform: translateX(3px); }

/* ============================================
   PROCESS
   ============================================ */
.process {
  padding: 6rem 0;
  background: var(--bg-warm);
}
.process .section-header {
  text-align: center;
  margin-bottom: 4rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Timeline */
.timeline {
  display: flex;
  gap: 0;
  position: relative;
  margin-bottom: 5rem;
  overflow-x: auto;
  padding-bottom: 1rem;
}
.timeline::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 28px;
  right: 28px;
  height: 2px;
  border-top: 2px dashed var(--border-light);
}
.timeline-step {
  flex: 1;
  min-width: 180px;
  text-align: center;
  position: relative;
  padding: 0 1rem;
}
.step-dot {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 2px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--accent);
  position: relative;
  z-index: 2;
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}
.timeline-step.revealed .step-dot {
  border-color: var(--accent);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(184, 134, 11, 0.1);
}
.step-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.5rem;
}
.step-desc {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.5;
}

/* FAQ */
.faq-section { max-width: 720px; margin: 0 auto; }
.faq-section h3 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.5rem;
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item:first-of-type {
  border-top: 1px solid var(--border);
}
.faq-item summary {
  padding: 1.25rem 0;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  list-style: none;
  transition: color var(--transition);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--accent);
  font-weight: 300;
  transition: transform var(--transition);
  flex-shrink: 0;
}
.faq-item[open] summary::after {
  transform: rotate(45deg);
}
.faq-item summary:hover { color: var(--accent-dark); }
.faq-answer {
  padding: 0 0 1.25rem;
  color: var(--text-mid);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ============================================
   CONTACT
   ============================================ */
.contact {
  padding: 6rem 0;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.contact-headline { margin-bottom: 1.5rem; }
.contact-sub {
  color: var(--text-mid);
  font-size: 1.1rem;
  max-width: 440px;
}
.contact-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
}
.contact-card h3 {
  margin-bottom: 1.5rem;
  font-size: 1.35rem;
}
.contact-info { display: flex; flex-direction: column; gap: 1.25rem; margin-bottom: 2rem; }
.contact-row {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.contact-row svg {
  flex-shrink: 0;
  color: var(--accent);
  margin-top: 2px;
}
.contact-row strong {
  display: block;
  color: var(--text);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.15rem;
}
.contact-row span {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.5;
}
.contact-buttons { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  padding: 4rem 0 2rem;
  background: var(--bg-dark);
  color: var(--cream);
}
.site-footer .nav-brand { color: var(--cream); }
.site-footer .nav-brand:hover { color: var(--cream); }
.site-footer .brand-co { color: var(--accent-light); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand-text {
  color: rgba(253, 248, 240, 0.6);
  font-size: 0.9rem;
  margin-top: 1rem;
  max-width: 300px;
  line-height: 1.6;
}
.footer-heading {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--cream);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}
.footer-links { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-links a {
  font-size: 0.9rem;
  color: rgba(253, 248, 240, 0.55);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--cream); }
.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(253, 248, 240, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-copy {
  font-size: 0.8rem;
  color: rgba(253, 248, 240, 0.4);
}
.footer-legal {
  display: flex;
  gap: 1.5rem;
}
.footer-legal a {
  font-size: 0.8rem;
  color: rgba(253, 248, 240, 0.4);
}
.footer-legal a:hover { color: rgba(253, 248, 240, 0.7); }

/* ============================================
   SCROLL REVEAL
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   KEYFRAMES
   ============================================ */
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes drawStroke {
  to { stroke-dashoffset: 0; }
}
@keyframes gentleBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ============================================
   FOCUS STATES (Accessibility)
   ============================================ */
a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* ============================================
   REDUCED MOTION
   ============================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
  .hero-tagline, .hero h1, .hero-desc, .hero-buttons { opacity: 1; }
  .hero-visual svg { opacity: 1; }
  .hero-visual svg .bread-outline { stroke-dashoffset: 0; }
}

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

/* Tablet (<=1024px) */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 2rem; }
  .hero-visual { display: none; }
  .story-grid { grid-template-columns: 1fr; gap: 2rem; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .timeline { flex-direction: column; gap: 0; }
  .timeline::before {
    top: 28px;
    bottom: 28px;
    left: 28px;
    right: auto;
    width: 2px;
    height: auto;
    border-top: none;
    border-left: 2px dashed var(--border-light);
  }
  .timeline-step {
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 1.25rem;
    text-align: left;
    padding: 0;
    margin-bottom: 2rem;
    min-width: 0;
  }
  .timeline-step .step-dot { margin: 0; }
  .step-content { padding-top: 0.5rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

/* Mobile (<=768px) */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .mobile-nav { display: flex; }
  h1 { font-size: 2.25rem; }
  .hero { min-height: auto; padding: 7rem 0 3rem; }
  .hero-scroll-hint { display: none; }
  .product-grid { grid-template-columns: 1fr; max-width: 420px; margin-left: auto; margin-right: auto; }
  .stats-row { grid-template-columns: 1fr; gap: 1.5rem; }
  .stat-block { display: flex; align-items: center; gap: 1rem; text-align: left; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* Small (<=480px) */
@media (max-width: 480px) {
  .container { padding: 0 1.25rem; }
  .hero { padding: 6rem 0 2.5rem; }
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn-primary,
  .hero-buttons .btn-ghost { width: 100%; justify-content: center; }
  .contact-card { padding: 1.5rem; }
  .contact-buttons { flex-direction: column; }
  .contact-buttons .btn-primary,
  .contact-buttons .btn-ghost { width: 100%; justify-content: center; }
}
