/* =============================================
   TRUE BEEF — MAIN STYLESHEET
   Dark ranch aesthetic: deep greens, gold accents,
   serif headings, clean sans-serif body
   ============================================= */

/* ---------- CSS RESET & BASE ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg-dark:       #0d1a0f;
  --bg-mid:        #111f13;
  --bg-card:       #152018;
  --bg-card-feat:  #1c2e1e;
  --gold:          #b8943f;
  --gold-light:    #d4aa5a;
  --cream:         #e8e0d0;
  --cream-dim:     #b0a890;
  --white:         #ffffff;
  --green-accent:  #3a6b3e;
  --border:        rgba(184,148,63,0.2);
  --border-light:  rgba(184,148,63,0.08);

  --font-serif:    'Cormorant Garamond', Georgia, serif;
  --font-sans:     'Montserrat', 'Helvetica Neue', Arial, sans-serif;

  --max-w:         1200px;
  --section-pad:   100px;
}

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

body {
  background-color: var(--bg-dark);
  color: var(--cream);
  font-family: var(--font-sans);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

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

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 40px;
}

/* ---------- TYPOGRAPHY ---------- */
.section-label {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.section-label::before {
  content: '';
  display: inline-block;
  width: 30px;
  height: 1px;
  background: var(--gold);
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--cream);
  margin-bottom: 32px;
}
.section-title em {
  font-style: italic;
  color: var(--gold-light);
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 14px 28px;
  transition: all 0.3s ease;
  cursor: pointer;
}
.btn--solid {
  background: var(--gold);
  color: var(--bg-dark);
  border: 1px solid var(--gold);
}
.btn--solid:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
}
.btn--outline {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(232,224,208,0.4);
}
.btn--outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.btn--text {
  background: transparent;
  color: var(--gold);
  border: none;
  padding: 0;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
}
.btn--text:hover { color: var(--gold-light); }

/* =============================================
   NAVIGATION
   ============================================= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 40px;
  transition: background 0.4s ease, padding 0.4s ease;
}
.nav.scrolled {
  background: rgba(13, 26, 15, 0.97);
  backdrop-filter: blur(10px);
  padding: 14px 40px;
  border-bottom: 1px solid var(--border-light);
}
.nav__links {
  display: flex;
  gap: 32px;
}
.nav__links a {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream-dim);
  transition: color 0.2s;
}
.nav__links a:hover { color: var(--gold); }

.nav__logo {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--cream);
  text-align: center;
  line-height: 1.1;
}
.nav__logo-sub {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.5rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  color: var(--gold);
  text-transform: uppercase;
  margin-top: 2px;
}

.nav__cta { font-size: 0.58rem; padding: 10px 20px; }
.nav__hamburger { display: none; flex-direction: column; gap: 5px; padding: 4px; }
.nav__hamburger span { display: block; width: 22px; height: 1px; background: var(--cream); transition: all 0.3s; }

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--bg-dark);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  transform: translateX(100%);
  transition: transform 0.4s ease;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu__close {
  position: absolute;
  top: 24px; right: 28px;
  font-size: 1.4rem;
  color: var(--cream-dim);
  background: none;
  border: none;
  cursor: pointer;
}
.mobile-menu__link {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream);
  transition: color 0.2s;
}
.mobile-menu__link:hover { color: var(--gold); }
.mobile-menu__cta { margin-top: 12px; }

/* =============================================
   HERO
   ============================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  padding-bottom: 100px;
}
.hero__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: grayscale(40%) brightness(0.55);
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(13,26,15,0.3) 0%,
    rgba(13,26,15,0.1) 40%,
    rgba(13,26,15,0.7) 80%,
    rgba(13,26,15,0.95) 100%
  );
}
.hero__content {
  position: relative;
  z-index: 2;
  padding: 0 40px;
  max-width: 700px;
}
.hero__eyebrow {
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cream-dim);
  margin-bottom: 20px;
}
.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 400;
  line-height: 1.05;
  color: var(--cream);
  margin-bottom: 24px;
}
.hero__title em {
  font-style: italic;
  color: var(--gold-light);
}
.hero__sub {
  font-size: 0.8rem;
  font-weight: 300;
  letter-spacing: 0.06em;
  color: var(--cream-dim);
  margin-bottom: 40px;
  line-height: 1.8;
}
.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.hero__scroll {
  position: absolute;
  bottom: 36px;
  right: 48px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--cream-dim);
  font-size: 0.55rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.hero__scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.1); }
}

/* =============================================
   TICKER STRIP
   ============================================= */
.ticker {
  background: var(--bg-mid);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  padding: 14px 0;
}
.ticker__track {
  display: flex;
  align-items: center;
  gap: 24px;
  white-space: nowrap;
  animation: tickerScroll 30s linear infinite;
}
.ticker__track span {
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cream-dim);
}
.ticker__dot { color: var(--gold) !important; font-size: 0.5rem !important; }
@keyframes tickerScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* =============================================
   OUR STORY
   ============================================= */
.story {
  padding: var(--section-pad) 0;
  background: var(--bg-dark);
}
.story__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.story__body {
  font-size: 0.88rem;
  color: var(--cream-dim);
  margin-bottom: 20px;
  line-height: 1.85;
}
.story__stats {
  display: flex;
  gap: 40px;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}
.story__stat { display: flex; flex-direction: column; gap: 4px; }
.story__stat-num {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
}
.story__stat-label {
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream-dim);
}
.story__image-wrap {
  position: relative;
}
.story__image {
  width: 100%;
  height: 500px;
  object-fit: cover;
  filter: brightness(0.8);
}
.story__image-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(13,26,15,0.85);
  border: 1px solid var(--border);
  padding: 10px 18px;
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  backdrop-filter: blur(6px);
}

/* =============================================
   QUOTE BREAK
   ============================================= */
.quote-break {
  background: var(--bg-mid);
  padding: 80px 0;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}
.quote-break__text {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  font-weight: 400;
  font-style: normal;
  line-height: 1.4;
  color: var(--cream);
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}
.quote-break__text em {
  font-style: italic;
  color: var(--gold-light);
}

/* =============================================
   HOW IT WORKS
   ============================================= */
.process {
  padding: var(--section-pad) 0;
  background: var(--bg-dark);
}
.process .section-title { margin-bottom: 60px; }
.process__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}
.process__step {
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.process__step-num {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 300;
  color: var(--gold);
  opacity: 0.4;
  line-height: 1;
  margin-bottom: 20px;
}
.process__step-line {
  width: 30px;
  height: 1px;
  background: var(--gold);
  margin-bottom: 20px;
}
.process__step-title {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 16px;
}
.process__step-body {
  font-size: 0.82rem;
  color: var(--cream-dim);
  line-height: 1.85;
  margin-bottom: 20px;
}
.process__step-quote {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  font-style: italic;
  color: var(--gold-light);
  opacity: 0.8;
}

/* =============================================
   BEEF SHARES
   ============================================= */
.shares {
  padding: var(--section-pad) 0;
  background: var(--bg-mid);
}
.shares .section-title { margin-bottom: 60px; }
.shares__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
  /* Ensure cards are always visible regardless of animation state */
}
.shares__grid .share-card {
  opacity: 1 !important;
  transform: none !important;
}

.share-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 36px 28px;
  position: relative;
  transition: border-color 0.3s;
}
.share-card:hover { border-color: var(--gold); }
.share-card--featured {
  background: var(--bg-card-feat);
  border-color: var(--gold);
}

.share-card__badge {
  position: absolute;
  top: -1px; right: 24px;
  background: var(--gold);
  color: var(--bg-dark);
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 5px 12px;
}
.share-card__title {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 4px;
}
.share-card__subtitle {
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--cream-dim);
  margin-bottom: 24px;
}
.share-card__price {
  font-family: var(--font-serif);
  font-size: 2.8rem;
  font-weight: 400;
  color: var(--cream);
  line-height: 1;
  margin-bottom: 4px;
}
.share-card__price-note {
  font-size: 0.62rem;
  color: var(--cream-dim);
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}
.share-card__deposit {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}
.share-card__features {
  margin-bottom: 24px;
}
.share-card__features li {
  font-size: 0.78rem;
  color: var(--cream-dim);
  padding: 6px 0;
  padding-left: 18px;
  position: relative;
  border-bottom: 1px solid var(--border-light);
}
.share-card__features li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.7rem;
}

.share-card__toggle {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 10px 0;
  width: 100%;
  text-align: left;
  border-top: 1px solid var(--border);
  transition: color 0.2s;
}
.share-card__toggle:hover { color: var(--gold-light); }

.share-card__cuts {
  display: none;
  padding-top: 20px;
  border-top: 1px solid var(--border-light);
  margin-top: 4px;
}
.share-card__cuts.open { display: block; }

.cuts-group { margin-bottom: 20px; }
.cuts-group h4 {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.cuts-row {
  display: flex;
  justify-content: space-between;
  padding: 5px 0;
  border-bottom: 1px solid var(--border-light);
  font-size: 0.75rem;
  color: var(--cream-dim);
}
.cuts-row--total {
  font-weight: 600;
  color: var(--cream);
  border-bottom: none;
  margin-top: 6px;
}
.cuts-note {
  font-size: 0.65rem;
  color: var(--cream-dim);
  font-style: italic;
  margin-top: 8px;
  opacity: 0.7;
}

.share-card__btn {
  display: block;
  text-align: center;
  margin-top: 28px;
  width: 100%;
}

/* =============================================
   STEAK IMAGE BREAK
   ============================================= */
.steak-break {
  position: relative;
  height: 400px;
  overflow: hidden;
}
.steak-break__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.6);
}
.steak-break__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(13,26,15,0.8) 0%,
    rgba(13,26,15,0.2) 50%,
    rgba(13,26,15,0.8) 100%
  );
}

/* =============================================
   WHY TRUE BEEF
   ============================================= */
.why {
  padding: var(--section-pad) 0;
  background: var(--bg-dark);
}
.why__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  margin-top: 16px;
}
.why__item {
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.why__num {
  font-family: var(--font-serif);
  font-size: 0.85rem;
  color: var(--gold);
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 16px;
}
.why__title {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 14px;
  line-height: 1.3;
}
.why__body {
  font-size: 0.82rem;
  color: var(--cream-dim);
  line-height: 1.85;
  margin-bottom: 18px;
}
.why__quote {
  font-family: var(--font-serif);
  font-size: 0.9rem;
  font-style: italic;
  color: var(--gold-light);
  opacity: 0.75;
}

/* =============================================
   COMPARISON TABLE
   ============================================= */
.comparison {
  padding: var(--section-pad) 0;
  background: var(--bg-mid);
}
.comparison .section-title { margin-bottom: 48px; }
.comparison__table-wrap { overflow-x: auto; }
.comparison__table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.82rem;
}
.comparison__table thead tr {
  border-bottom: 1px solid var(--gold);
}
.comparison__table th {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 16px 20px;
  text-align: left;
}
.comparison__table th:first-child { color: var(--cream-dim); }
.comparison__table td {
  padding: 16px 20px;
  color: var(--cream-dim);
  border-bottom: 1px solid var(--border-light);
  vertical-align: top;
}
.comparison__table td:first-child {
  font-weight: 500;
  color: var(--cream);
  font-size: 0.8rem;
}
.comparison__table tbody tr:hover { background: rgba(184,148,63,0.04); }
.comp-no { color: #c0392b; font-weight: 700; margin-right: 6px; }
.comp-yes { color: #27ae60; font-weight: 700; margin-right: 6px; }

/* =============================================
   TESTIMONIAL
   ============================================= */
.testimonial {
  padding: 80px 0;
  background: var(--bg-dark);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  text-align: center;
}
.testimonial__quote {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 400;
  font-style: italic;
  color: var(--cream);
  max-width: 800px;
  margin: 0 auto 24px;
  line-height: 1.5;
}
.testimonial__cite {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}

/* =============================================
   FREEZER ADD-ON
   ============================================= */
.freezer {
  padding: var(--section-pad) 0;
  background: var(--bg-mid);
}
.freezer__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.freezer__problem {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream-dim);
  margin-bottom: 10px;
}
.freezer__body {
  font-size: 0.88rem;
  color: var(--cream-dim);
  line-height: 1.85;
  margin-bottom: 32px;
}
.freezer__image {
  width: 100%;
  height: 420px;
  object-fit: cover;
  filter: brightness(0.75);
}

/* =============================================
   FAQ
   ============================================= */
.faq {
  padding: var(--section-pad) 0;
  background: var(--bg-dark);
}
.faq .section-title { margin-bottom: 48px; }
.faq__list { max-width: 800px; }
.faq__item {
  border-bottom: 1px solid var(--border);
}
.faq__question {
  width: 100%;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--cream);
  letter-spacing: 0.02em;
  gap: 16px;
  transition: color 0.2s;
}
.faq__question:hover { color: var(--gold); }
.faq__icon {
  font-size: 1.2rem;
  color: var(--gold);
  font-weight: 300;
  flex-shrink: 0;
  transition: transform 0.3s;
}
.faq__item.open .faq__icon { transform: rotate(45deg); }
.faq__answer {
  display: none;
  padding-bottom: 22px;
}
.faq__answer.open { display: block; }
.faq__answer p {
  font-size: 0.82rem;
  color: var(--cream-dim);
  line-height: 1.85;
}

/* =============================================
   CTA SECTION
   ============================================= */
.cta-section {
  padding: var(--section-pad) 0;
  background: var(--bg-mid);
  text-align: center;
}
.cta-section__inner { max-width: 700px; margin: 0 auto; }
.cta-section__inner .section-label { justify-content: center; }
.cta-section__inner .section-label::before { display: none; }
.cta-section__body {
  font-size: 0.88rem;
  color: var(--cream-dim);
  line-height: 1.85;
  margin-bottom: 40px;
}
.cta-section__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: #080f09;
  border-top: 1px solid var(--border);
  padding-top: 80px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--border-light);
}
.footer__logo {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--cream);
  margin-bottom: 2px;
}
.footer__logo-sub {
  font-size: 0.55rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.footer__tagline {
  font-size: 0.78rem;
  color: var(--cream-dim);
  line-height: 1.75;
  max-width: 280px;
}
.footer__heading {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer__links li { margin-bottom: 10px; }
.footer__links a {
  font-size: 0.75rem;
  color: var(--cream-dim);
  transition: color 0.2s;
}
.footer__links a:hover { color: var(--gold); }
.footer__bottom {
  padding: 24px 0;
}
.footer__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer__bottom p {
  font-size: 0.65rem;
  color: var(--cream-dim);
  opacity: 0.6;
}
.footer__legal {
  display: flex;
  gap: 24px;
}
.footer__legal a {
  font-size: 0.65rem;
  color: var(--cream-dim);
  opacity: 0.6;
  transition: opacity 0.2s;
}
.footer__legal a:hover { opacity: 1; color: var(--gold); }
.footer__service {
  font-size: 0.62rem;
  color: var(--cream-dim);
  opacity: 0.5;
  font-style: italic;
}

/* =============================================
   SCROLL ANIMATIONS
   ============================================= */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  :root { --section-pad: 80px; }
  .container { padding: 0 28px; }
  .story__grid { grid-template-columns: 1fr; gap: 48px; }
  .story__image { height: 360px; }
  .process__steps { grid-template-columns: 1fr; gap: 36px; }
  .shares__grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
  .why__grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .freezer__grid { grid-template-columns: 1fr; gap: 48px; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 768px) {
  :root { --section-pad: 60px; }
  .container { padding: 0 20px; }

  .nav__links { display: none; }
  .nav__cta { display: none; }
  .nav__hamburger { display: flex; }
  .nav { padding: 16px 20px; }
  .nav.scrolled { padding: 12px 20px; }

  .hero__content { padding: 0 20px; }
  .hero__scroll { display: none; }
  .hero__actions { flex-direction: column; align-items: flex-start; }

  .story__stats { flex-direction: column; gap: 24px; }
  .why__grid { grid-template-columns: 1fr; }
  .comparison__table { font-size: 0.72rem; }
  .comparison__table th, .comparison__table td { padding: 12px 10px; }

  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom-inner { flex-direction: column; align-items: flex-start; }

  .cta-section__actions { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
  .hero__title { font-size: 2.6rem; }
  .section-title { font-size: 1.8rem; }
  .share-card { padding: 24px 18px; }
}
