/* Bigfoot Beef Jerky — styles.css */
/* Mobile-first. Dark wilderness aesthetic. */

@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;600;700&family=Open+Sans:wght@400;500;600&display=swap');

:root {
  --bg-deepest:   #0a0704;
  --bg-dark:      #100c07;
  --bg-card:      #1a1208;
  --bg-card-alt:  #211710;
  --brown-mid:    #3d1f0a;
  --amber:        #c4621a;
  --amber-light:  #e07928;
  --amber-pale:   #f0a050;
  --green:        #2d5016;
  --green-light:  #3d6b20;
  --text-light:   #f5f0e8;
  --text-muted:   #a89880;
  --text-dim:     #7a6855;
  --border:       rgba(196, 98, 26, 0.25);
  --border-light: rgba(245, 240, 232, 0.08);
  --shadow:       0 4px 24px rgba(0, 0, 0, 0.6);
  --shadow-card:  0 2px 16px rgba(0, 0, 0, 0.5);
  --radius:       6px;
  --radius-lg:    10px;
  --font-head:    'Oswald', sans-serif;
  --font-body:    'Open Sans', sans-serif;
  --max-width:    1200px;
  --transition:   0.2s ease;
}

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

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

body {
  font-family: var(--font-body);
  background: var(--bg-dark);
  color: var(--text-light);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a { color: var(--amber-light); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--amber-pale); }
ul { list-style: none; }

/* ── Layout ───────────────────────────────────────────── */
.container { width: 100%; max-width: var(--max-width); margin: 0 auto; padding: 0 1.25rem; }
.section { padding: 4rem 0; }
.section--dark { background: var(--bg-deepest); }
.section--card { background: var(--bg-card); }

/* ── Typography ───────────────────────────────────────── */
h1, h2, h3, h4 { font-family: var(--font-head); text-transform: uppercase; letter-spacing: 0.04em; line-height: 1.15; }
h1 { font-size: clamp(2.4rem, 7vw, 5rem); font-weight: 700; }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 700; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); font-weight: 600; }
h4 { font-size: 1rem; font-weight: 600; }
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }
.section-label {
  font-family: var(--font-head);
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 0.75rem;
  display: block;
}
.section-title { color: var(--text-light); margin-bottom: 1rem; }
.section-subtitle { color: var(--text-muted); font-size: 1.05rem; max-width: 600px; }

/* ── Buttons ──────────────────────────────────────────── */
.btn {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.85rem 2rem;
  border-radius: var(--radius);
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  text-decoration: none;
  text-align: center;
}
.btn-primary {
  background: var(--amber);
  color: var(--text-light);
}
.btn-primary:hover {
  background: var(--amber-light);
  color: var(--text-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(196, 98, 26, 0.4);
}
.btn-outline {
  background: transparent;
  color: var(--text-light);
  border: 2px solid var(--amber);
}
.btn-outline:hover {
  background: var(--amber);
  color: var(--text-light);
  transform: translateY(-2px);
}
.btn-sm { padding: 0.6rem 1.4rem; font-size: 0.85rem; }
.btn-lg { padding: 1rem 2.6rem; font-size: 1.1rem; }
.btn-block { display: block; width: 100%; }

/* ── Navigation ───────────────────────────────────────── */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(10, 7, 4, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  padding: 0 1.25rem;
  height: 64px;
  display: flex;
  align-items: center;
}
.nav-inner {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-head);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--text-light);
  text-transform: uppercase;
  line-height: 1;
}
.nav-logo span { color: var(--amber); }
.nav-logo:hover { color: var(--text-light); }
.nav-links {
  display: none;
  gap: 0.25rem;
  align-items: center;
}
.nav-links a {
  color: var(--text-muted);
  font-family: var(--font-head);
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.4rem 0.75rem;
  border-radius: var(--radius);
  transition: all var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--text-light); background: var(--bg-card-alt); }
.nav-cta { margin-left: 0.75rem; }
.nav-toggle {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-light);
  padding: 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-light);
  border-radius: 2px;
  transition: all var(--transition);
}
.nav-mobile {
  display: none;
  position: fixed;
  top: 64px; left: 0; right: 0;
  background: var(--bg-deepest);
  border-bottom: 1px solid var(--border);
  padding: 1rem 1.25rem;
  flex-direction: column;
  gap: 0.5rem;
  z-index: 999;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  color: var(--text-muted);
  font-family: var(--font-head);
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
  border-bottom: 1px solid var(--border-light);
}
.nav-mobile a:hover { color: var(--text-light); background: var(--bg-card); }
.nav-mobile a:last-child { border-bottom: none; }
.page-body { padding-top: 64px; }

/* ── Hero ─────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--bg-deepest);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1448375240586-882707db888b?w=1600&q=80');
  background-size: cover;
  background-position: center 30%;
  filter: brightness(0.25) saturate(0.6);
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(10,7,4,0.3) 0%, rgba(61,31,10,0.4) 50%, rgba(10,7,4,0.85) 100%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 5rem 1.25rem 4rem;
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
}
.hero-eyebrow {
  font-family: var(--font-head);
  font-size: 0.8rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  background: var(--amber);
  flex-shrink: 0;
}
.hero h1 { color: var(--text-light); max-width: 700px; margin-bottom: 1.25rem; }
.hero h1 em { font-style: normal; color: var(--amber-light); }
.hero-sub { font-size: 1.1rem; color: var(--text-muted); max-width: 520px; margin-bottom: 2.25rem; line-height: 1.7; }
.hero-actions { display: flex; flex-direction: column; gap: 1rem; align-items: flex-start; }
.hero-tagline {
  margin-top: 2.5rem;
  font-family: var(--font-head);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-dim);
  display: flex;
  align-items: center;
  gap: 1rem;
}
.hero-tagline::before, .hero-tagline::after {
  content: '';
  display: block;
  height: 1px;
  width: 40px;
  background: var(--text-dim);
}

/* ── Trust Badges ─────────────────────────────────────── */
.badges {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1.5rem 1.25rem;
}
.badges-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  text-align: center;
  max-width: var(--max-width);
  margin: 0 auto;
}
.badge-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-head);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
}
.badge-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
}
.badge-divider { display: none; color: var(--border); }

/* ── Product Cards ────────────────────────────────────── */
.products-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
}
.product-card:hover {
  border-color: var(--amber);
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(196, 98, 26, 0.2);
}
.product-img {
  position: relative;
  height: 200px;
  overflow: hidden;
  background: var(--brown-mid);
}
.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.85) saturate(0.9);
  transition: transform 0.4s ease;
}
.product-card:hover .product-img img { transform: scale(1.05); }
.product-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(10,7,4,0.7) 100%);
}
.product-badge {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background: var(--amber);
  color: var(--text-light);
  font-family: var(--font-head);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.25rem 0.6rem;
  border-radius: 3px;
}
.product-body { padding: 1.25rem; }
.product-name {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 0.4rem;
}
.product-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
  line-height: 1.6;
}
.product-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-bottom: 1rem; }
.product-tag {
  font-size: 0.7rem;
  font-family: var(--font-head);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.2rem 0.5rem;
  border: 1px solid var(--border);
  border-radius: 3px;
  color: var(--text-muted);
}
.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid var(--border-light);
}
.product-price {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--amber-light);
}
.product-price small {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 400;
  display: block;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ── Feature Strip ────────────────────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  text-align: center;
}
.feature-item {}
.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}
.feature-title {
  font-family: var(--font-head);
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 0.5rem;
}
.feature-desc { font-size: 0.9rem; color: var(--text-muted); }

/* ── Story Section ────────────────────────────────────── */
.story-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}
.story-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  aspect-ratio: 4/3;
}
.story-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.8) saturate(0.85);
}
.story-text {}
.story-text h2 { margin-bottom: 1.25rem; }
.story-text p { color: var(--text-muted); margin-bottom: 1.25rem; }

/* ── Testimonials ─────────────────────────────────────── */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
.testimonial-card {
  background: var(--bg-card-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}
.testimonial-stars { color: var(--amber-light); font-size: 1rem; letter-spacing: 0.15em; margin-bottom: 0.75rem; }
.testimonial-text { font-size: 0.95rem; color: var(--text-muted); font-style: italic; margin-bottom: 1rem; line-height: 1.7; }
.testimonial-author {
  font-family: var(--font-head);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
}
.testimonial-author span { color: var(--text-dim); }

/* ── Email Signup Banner ──────────────────────────────── */
.signup-banner {
  background: linear-gradient(135deg, var(--brown-mid) 0%, var(--bg-card-alt) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem 1.5rem;
  text-align: center;
}
.signup-banner h3 { color: var(--text-light); margin-bottom: 0.5rem; }
.signup-banner p { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 1.5rem; }
.signup-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 420px;
  margin: 0 auto;
}
.signup-form input[type="email"] {
  width: 100%;
  padding: 0.85rem 1.25rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text-light);
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: border-color var(--transition);
}
.signup-form input[type="email"]::placeholder { color: var(--text-dim); }
.signup-form input[type="email"]:focus { border-color: var(--amber); }

/* ── Page Hero (inner pages) ──────────────────────────── */
.page-hero {
  background: var(--bg-deepest);
  padding: 4rem 1.25rem 3rem;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(61,31,10,0.3) 0%, transparent 70%);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: var(--text-light); margin-bottom: 0.75rem; }
.page-hero p { color: var(--text-muted); font-size: 1.05rem; max-width: 560px; }

/* ── About Page ───────────────────────────────────────── */
.about-hero {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--bg-deepest);
}
.about-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1542361345-89e58247f2d5?w=1400&q=80');
  background-size: cover;
  background-position: center;
  filter: brightness(0.2) saturate(0.5);
}
.about-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(10,7,4,0.9) 0%, rgba(10,7,4,0.4) 100%);
}
.about-hero-content {
  position: relative;
  z-index: 2;
  padding: 5rem 1.25rem 4rem;
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
}
.values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
.value-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
}
.value-number {
  font-family: var(--font-head);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--amber);
  opacity: 0.3;
  margin-bottom: 0.25rem;
  line-height: 1;
}
.value-title {
  font-family: var(--font-head);
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 0.5rem;
}
.value-desc { font-size: 0.9rem; color: var(--text-muted); }

/* ── FAQ Page ─────────────────────────────────────────── */
.faq-list { display: flex; flex-direction: column; gap: 0.75rem; }
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: var(--text-light);
  font-family: var(--font-head);
  font-size: 1rem;
  letter-spacing: 0.05em;
  text-align: left;
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: background var(--transition);
}
.faq-question:hover { background: var(--bg-card-alt); }
.faq-question::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--amber);
  flex-shrink: 0;
  transition: transform var(--transition);
}
.faq-item.open .faq-question::after { transform: rotate(45deg); }
.faq-answer {
  display: none;
  padding: 0 1.5rem 1.25rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  border-top: 1px solid var(--border-light);
  padding-top: 1.25rem;
}
.faq-item.open .faq-answer { display: block; }

/* ── Contact Page ─────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
.contact-info h3 { color: var(--text-light); margin-bottom: 1rem; }
.contact-info p { color: var(--text-muted); margin-bottom: 1.5rem; }
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
}
.contact-detail-icon { font-size: 1.25rem; flex-shrink: 0; margin-top: 0.1rem; }
.contact-detail-text {}
.contact-detail-label {
  font-family: var(--font-head);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 0.2rem;
}
.contact-detail-value { font-size: 0.95rem; color: var(--text-muted); }
.social-links { display: flex; gap: 0.75rem; margin-top: 1.5rem; }
.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 1.1rem;
  transition: all var(--transition);
  color: var(--text-muted);
}
.social-link:hover { background: var(--amber); border-color: var(--amber); color: var(--text-light); }
.contact-form {}
.form-group { margin-bottom: 1.25rem; }
.form-label {
  display: block;
  font-family: var(--font-head);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}
.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 0.85rem 1.1rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text-light);
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: border-color var(--transition);
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--text-dim); }
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--amber); background: var(--bg-card-alt); }
.form-textarea { resize: vertical; min-height: 140px; }
.form-select { appearance: none; cursor: pointer; }

/* ── Footer ───────────────────────────────────────────── */
.site-footer {
  background: var(--bg-deepest);
  border-top: 1px solid var(--border);
  padding: 3rem 1.25rem 1.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  max-width: var(--max-width);
  margin: 0 auto;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--border-light);
}
.footer-brand {}
.footer-logo {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 0.75rem;
  display: block;
}
.footer-logo span { color: var(--amber); }
.footer-brand p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.65; }
.footer-col h4 {
  font-family: var(--font-head);
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 1rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-col ul a { font-size: 0.9rem; color: var(--text-muted); }
.footer-col ul a:hover { color: var(--amber-light); }
.footer-bottom {
  max-width: var(--max-width);
  margin: 1.5rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;
  text-align: center;
}
.footer-bottom p { font-size: 0.82rem; color: var(--text-dim); }

/* ── Breadcrumb ───────────────────────────────────────── */
.breadcrumb {
  font-size: 0.82rem;
  color: var(--text-dim);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}
.breadcrumb a { color: var(--text-dim); }
.breadcrumb a:hover { color: var(--amber-light); }
.breadcrumb span { color: var(--amber); }

/* ── Divider ──────────────────────────────────────────── */
.divider {
  height: 1px;
  background: var(--border-light);
  margin: 0;
}

/* ── Alert / Notice ───────────────────────────────────── */
.notice {
  background: rgba(196, 98, 26, 0.1);
  border: 1px solid rgba(196, 98, 26, 0.3);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  font-size: 0.9rem;
  color: var(--amber-pale);
}

/* ── Utility ──────────────────────────────────────────── */
.text-center { text-align: center; }
.text-amber { color: var(--amber-light); }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

/* ── Responsive: 600px ────────────────────────────────── */
@media (min-width: 600px) {
  .badges-grid {
    flex-direction: row;
    justify-content: center;
    gap: 1.5rem;
  }
  .badge-divider { display: block; font-size: 0.75rem; }
  .hero-actions { flex-direction: row; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .signup-form { flex-direction: row; }
  .signup-form input[type="email"] { flex: 1; }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── Responsive: 768px ────────────────────────────────── */
@media (min-width: 768px) {
  .nav-toggle { display: none; }
  .nav-links { display: flex; }
  .story-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr 1.6fr; }
  .footer-grid { grid-template-columns: 1.6fr 1fr 1fr 1fr; }
  .footer-bottom { flex-direction: row; justify-content: space-between; text-align: left; }
}

/* ── Responsive: 1024px ───────────────────────────────── */
@media (min-width: 1024px) {
  .products-grid { grid-template-columns: repeat(3, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(3, 1fr); }
  .features-grid { grid-template-columns: repeat(4, 1fr); }
  .values-grid { grid-template-columns: repeat(4, 1fr); }
}
