/* =============================================================
   GRILL-N-GRIDDLE.COM — Main Stylesheet
   Deployed & Field-Tested
   Fonts: Bebas Neue (display) / Barlow (body)
   Stack: Vanilla CSS — no framework
   ============================================================= */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Barlow:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&display=swap');

/* -------------------------------------------------------------
   1. DESIGN TOKENS
------------------------------------------------------------- */
:root {
  /* Palette */
  --coal:  #0d0d0d;
  --char:  #1c1c1c;
  --ember: #c0391c;
  --flame: #e85d04;
  --gold:  #f4a01a;
  --smoke: #7a7a7a;
  --ash:   #d4d0cb;
  --white: #ffffff;

  /* Typography */
  --font-display: 'Bebas Neue', sans-serif;
  --font-body:    'Barlow', sans-serif;

  /* Layout */
  --max-width: 1200px;
  --gutter:    clamp(1rem, 4vw, 2rem);

  /* Radii */
  --radius-sm:  4px;
  --radius-md:  8px;
  --radius-lg:  12px;

  /* Transitions */
  --t-fast:   150ms ease;
  --t-normal: 300ms ease;
  --t-slow:   500ms ease;

  /* Shadows */
  --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.45);
  --shadow-lift: 0 8px 40px rgba(0, 0, 0, 0.65);
}

/* -------------------------------------------------------------
   2. RESET
------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
 background-color: #0d0d0d !important;
  color: #d4d0cb !important;
  font-family: 'Barlow', sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, video {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font: inherit;
  color: inherit;
}

input, textarea, select {
  font: inherit;
  color: inherit;
}

/* -------------------------------------------------------------
   3. TYPOGRAPHY
------------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  line-height: 1;
  letter-spacing: 0.03em;
  color: var(--white);
}

h1 { font-size: clamp(3.5rem, 9vw,  7.5rem); }
h2 { font-size: clamp(2.2rem, 5vw,  4rem);   }
h3 { font-size: clamp(1.6rem, 3vw,  2.6rem); }
h4 { font-size: clamp(1.3rem, 2vw,  2rem);   }
h5 { font-size: clamp(1.1rem, 1.5vw, 1.5rem); }
h6 { font-size: 1.1rem; }

p {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--ash);
}

.lead {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  font-weight: 300;
  line-height: 1.65;
  color: var(--ash);
}

strong { font-weight: 700; color: var(--white); }
em     { font-style: italic; }

/* Accent text */
.text-flame  { color: var(--flame); }
.text-gold   { color: var(--gold);  }
.text-ember  { color: var(--ember); }
.text-smoke  { color: var(--smoke); }
.text-white  { color: var(--white); }

/* Section labels */
.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--flame);
  margin-bottom: 0.75rem;
}

/* -------------------------------------------------------------
   4. LAYOUT UTILITIES
------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.container--narrow {
  max-width: 760px;
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section {
  padding-block: clamp(4rem, 8vw, 7rem);
}

.section--dark  { background-color: var(--coal); }
.section--char  { background-color: var(--char); }

/* Grid helpers */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 420px), 1fr));
  gap: 2rem;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 320px), 1fr));
  gap: 1.75rem;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 240px), 1fr));
  gap: 1.5rem;
}

/* Flex helpers */
.flex        { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between{ display: flex; align-items: center; justify-content: space-between; }

/* Spacing */
.mt-sm { margin-top: 0.5rem; }
.mt-md { margin-top: 1rem;   }
.mt-lg { margin-top: 2rem;   }
.mb-sm { margin-bottom: 0.5rem; }
.mb-md { margin-bottom: 1rem;   }
.mb-lg { margin-bottom: 2rem;   }

/* Divider */
.divider {
  height: 1px;
  background: linear-gradient(to right, transparent, var(--smoke), transparent);
  margin-block: 3rem;
  border: none;
}

/* -------------------------------------------------------------
   5. BUTTONS & CTAs
------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  border-radius: var(--radius-sm);
  transition: background-color var(--t-fast), color var(--t-fast), transform var(--t-fast), box-shadow var(--t-fast);
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:active {
  transform: translateY(0);
}

/* Primary — flame orange */
.btn-primary {
  background-color: var(--flame);
  color: var(--white);
}
.btn-primary:hover {
  background-color: var(--ember);
  box-shadow: 0 6px 20px rgba(232, 93, 4, 0.4);
}

/* Secondary — outlined */
.btn-secondary {
  background-color: transparent;
  color: var(--white);
  border: 2px solid var(--smoke);
}
.btn-secondary:hover {
  border-color: var(--flame);
  color: var(--flame);
}

/* Gold accent */
.btn-gold {
  background-color: var(--gold);
  color: var(--coal);
}
.btn-gold:hover {
  background-color: #e0900f;
  box-shadow: 0 6px 20px rgba(244, 160, 26, 0.35);
}

/* Text link style */
.btn-text {
  padding: 0;
  color: var(--flame);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.btn-text:hover {
  color: var(--gold);
  transform: none;
}
.btn-text::after {
  content: ' →';
}

/* -------------------------------------------------------------
   6. NAVIGATION
------------------------------------------------------------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding-block: 1.25rem;
  transition: background-color var(--t-normal), padding var(--t-normal), backdrop-filter var(--t-normal);
}

.site-header.scrolled {
  padding-block: 0.75rem;
  background-color: rgba(13, 13, 13, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

/* Logo / Brand */
.nav-logo {
  display: flex;
  flex-direction: column;
  gap: 0;
  line-height: 1;
}

.nav-logo-name {
  font-family: var(--font-display);
  font-size: 1.8rem;
  letter-spacing: 0.06em;
  color: var(--white);
  line-height: 1;
}

.nav-logo-name span {
  color: var(--flame);
}

.nav-logo-badge {
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--smoke);
}

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ash);
  transition: color var(--t-fast);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--flame);
  transition: width var(--t-normal);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

/* Mobile hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--ash);
  transition: transform var(--t-normal), opacity var(--t-normal), background-color var(--t-fast);
}

.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav drawer */
.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--coal);
  z-index: 999;
  padding-top: 6rem;
  padding-inline: var(--gutter);
  transform: translateX(100%);
  transition: transform var(--t-normal);
}

.nav-mobile.open {
  transform: translateX(0);
}

.nav-mobile a {
  font-family: var(--font-display);
  font-size: 2.5rem;
  letter-spacing: 0.05em;
  color: var(--ash);
  padding-block: 0.75rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color var(--t-fast);
}

.nav-mobile a:hover {
  color: var(--flame);
}

/* -------------------------------------------------------------
   7. HERO
------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  padding-bottom: clamp(3rem, 8vw, 6rem);
  overflow: hidden;
  background-color: var(--coal);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Gradient overlay — heavy at bottom, clears at top */
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(13,13,13,0.3) 0%,
    rgba(13,13,13,0.15) 30%,
    rgba(13,13,13,0.6) 60%,
    rgba(13,13,13,0.95) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.hero-content h1 {
  max-width: 16ch;
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

.hero-content .lead {
  max-width: 52ch;
  margin-bottom: 2.25rem;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Stat strip inside hero */
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.hero-stat-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--flame);
  line-height: 1;
  display: block;
}

.hero-stat-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--smoke);
  margin-top: 0.25rem;
  display: block;
}

/* -------------------------------------------------------------
   8. SECTION HEADERS
------------------------------------------------------------- */
.section-header {
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
}

.section-header h2 {
  margin-bottom: 0.75rem;
}

.section-header p {
  max-width: 60ch;
}

.section-header--center {
  text-align: center;
}

.section-header--center p {
  margin-inline: auto;
}

/* Flame underline accent on section headings */
.section-header h2 span.underline {
  display: inline-block;
  position: relative;
}

.section-header h2 span.underline::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(to right, var(--flame), var(--gold));
  border-radius: 2px;
}

/* -------------------------------------------------------------
   9. CARDS — POST / RECIPE / REVIEW / GUIDE
------------------------------------------------------------- */
.card {
  background-color: var(--char);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--t-normal), box-shadow var(--t-normal);
  box-shadow: var(--shadow-card);
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lift);
}

/* Card image */
.card-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background-color: #2a2a2a;
}

.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow);
}

.card:hover .card-img img {
  transform: scale(1.04);
}

.card-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  background: linear-gradient(135deg, var(--char), #2a2a2a);
}

/* Card tag pill (on image) */
.card-tag {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.25rem 0.6rem;
  border-radius: var(--radius-sm);
  background-color: var(--ember);
  color: var(--white);
  z-index: 1;
}

.card-tag--gold   { background-color: var(--gold);  color: var(--coal); }
.card-tag--flame  { background-color: var(--flame); color: var(--white); }
.card-tag--smoke  { background-color: var(--smoke); color: var(--white); }

/* Card body */
.card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.75rem;
}

.card-body h3,
.card-body h4 {
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  line-height: 1.1;
}

.card-body p {
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--smoke);
  flex: 1;
}

.card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--smoke);
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.card-meta-item {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

/* Recipe-specific card stat bar */
.card-stats {
  display: flex;
  gap: 1rem;
  padding: 0.875rem 1.5rem;
  background-color: rgba(255,255,255,0.03);
  border-top: 1px solid rgba(255,255,255,0.06);
}

.card-stat {
  text-align: center;
  flex: 1;
}

.card-stat-value {
  display: block;
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--flame);
  line-height: 1;
}

.card-stat-label {
  display: block;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--smoke);
  margin-top: 0.2rem;
}

/* Review star rating on card */
.card-rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.stars {
  display: flex;
  gap: 2px;
  color: var(--gold);
  font-size: 0.85rem;
}

.rating-value {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--gold);
  line-height: 1;
}

.rating-count {
  font-size: 0.75rem;
  color: var(--smoke);
}

/* Featured card — larger, horizontal at wider breakpoints */
.card--featured {
  grid-column: 1 / -1;
}

@media (min-width: 680px) {
  .card--featured {
    flex-direction: row;
    max-height: 360px;
  }
  .card--featured .card-img {
    width: 50%;
    min-width: 50%;
    aspect-ratio: unset;
  }
  .card--featured .card-body {
    padding: 2rem;
  }
  .card--featured .card-body h3 {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
  }
}

/* -------------------------------------------------------------
   10. TAGS / PILLS
------------------------------------------------------------- */
.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tag {
  display: inline-flex;
  align-items: center;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.7rem;
  border-radius: var(--radius-sm);
  background-color: rgba(255,255,255,0.06);
  color: var(--smoke);
  transition: background-color var(--t-fast), color var(--t-fast);
}

.tag:hover {
  background-color: rgba(232,93,4,0.15);
  color: var(--flame);
}

.tag--active {
  background-color: var(--flame);
  color: var(--white);
}

/* -------------------------------------------------------------
   11. GEAR / PRODUCT RAIL
------------------------------------------------------------- */
.gear-rail {
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 1rem;
  scrollbar-width: thin;
  scrollbar-color: var(--smoke) transparent;
}

.gear-rail::-webkit-scrollbar { height: 4px; }
.gear-rail::-webkit-scrollbar-track { background: transparent; }
.gear-rail::-webkit-scrollbar-thumb { background-color: var(--smoke); border-radius: 2px; }

.gear-card {
  flex: 0 0 260px;
  scroll-snap-align: start;
  background-color: var(--char);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--t-normal), box-shadow var(--t-normal);
  box-shadow: var(--shadow-card);
}

.gear-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lift);
}

.gear-card-img {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background-color: #2a2a2a;
}

.gear-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow);
}

.gear-card:hover .gear-card-img img {
  transform: scale(1.05);
}

.gear-card-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  background: linear-gradient(135deg, #222, #2a2a2a);
}

.gear-card-body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}

.gear-card-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--white);
  line-height: 1.1;
}

.gear-card-note {
  font-size: 0.85rem;
  color: var(--smoke);
  line-height: 1.5;
}

.gear-card-price {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--gold);
  margin-top: auto;
}

.gear-card-cta {
  display: block;
  text-align: center;
  padding: 0.65rem;
  background-color: var(--flame);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.08em;
  border-top: none;
  transition: background-color var(--t-fast);
}

.gear-card-cta:hover {
  background-color: var(--ember);
}

/* -------------------------------------------------------------
   12. RECIPE PAGE — Article Layout
------------------------------------------------------------- */
.recipe-header {
  padding-top: calc(80px + clamp(3rem, 6vw, 5rem));
  padding-bottom: clamp(3rem, 5vw, 4rem);
  background-color: var(--char);
}

.recipe-header-inner {
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.recipe-hero-image {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  margin-top: 2rem;
}

/* Recipe meta bar */
.recipe-meta-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding-block: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.07);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  margin-block: 2rem;
}

.recipe-meta-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.recipe-meta-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--smoke);
}

.recipe-meta-value {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--flame);
  line-height: 1;
}

/* Recipe two-column layout */
.recipe-body {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: var(--gutter);
  padding-block: clamp(3rem, 6vw, 5rem);
}

@media (min-width: 900px) {
  .recipe-body {
    grid-template-columns: 1fr 320px;
    align-items: start;
  }
  .recipe-sidebar {
    position: sticky;
    top: 100px;
  }
}

/* Ingredients / Steps */
.recipe-article h2 {
  font-size: clamp(1.6rem, 2.5vw, 2.4rem);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--flame);
  display: inline-block;
}

.ingredients-list {
  list-style: disc;
  padding-left: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 3rem;
}

.ingredients-list li {
  font-size: 1rem;
  color: var(--ash);
  line-height: 1.5;
}

.steps-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  counter-reset: step-counter;
}

.step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.25rem;
  align-items: start;
}

.step-number {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--ember);
  line-height: 1;
  min-width: 2rem;
  opacity: 0.6;
}

.step-content h4 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.step-content p {
  font-size: 0.95rem;
  color: var(--ash);
}

/* Pro tips box */
.pro-tip {
  background-color: rgba(232,93,4,0.1);
  border-left: 3px solid var(--flame);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 1.25rem 1.5rem;
  margin-block: 2rem;
}

.pro-tip-label {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.08em;
  color: var(--flame);
  margin-bottom: 0.5rem;
}

.pro-tip p {
  font-size: 0.9rem;
  color: var(--ash);
  margin: 0;
}

/* Recipe sidebar */
.recipe-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.sidebar-box {
  background-color: var(--char);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  border: 1px solid rgba(255,255,255,0.06);
}

.sidebar-box h4 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

/* Affiliate disclosure notice */
.affiliate-notice {
  font-size: 0.8rem;
  color: var(--smoke);
  font-style: italic;
  line-height: 1.5;
}

/* -------------------------------------------------------------
   13. REVIEW PAGE
------------------------------------------------------------- */
.review-score-block {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 2rem;
  background-color: var(--char);
  border-radius: var(--radius-lg);
  margin-block: 2rem;
  flex-wrap: wrap;
}

.review-score-main {
  text-align: center;
  min-width: 120px;
}

.review-score-number {
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--gold);
  line-height: 1;
}

.review-score-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--smoke);
  margin-top: 0.25rem;
}

.review-score-breakdown {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.score-row {
  display: grid;
  grid-template-columns: 120px 1fr auto;
  align-items: center;
  gap: 0.75rem;
}

.score-row-label {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--smoke);
}

.score-bar-track {
  height: 6px;
  background-color: rgba(255,255,255,0.08);
  border-radius: 3px;
  overflow: hidden;
}

.score-bar-fill {
  height: 100%;
  background: linear-gradient(to right, var(--flame), var(--gold));
  border-radius: 3px;
  transition: width 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.score-row-value {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--gold);
  min-width: 2rem;
  text-align: right;
}

/* Pros / Cons */
.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-block: 2rem;
}

@media (max-width: 580px) {
  .pros-cons { grid-template-columns: 1fr; }
}

.pros-list,
.cons-list {
  background-color: var(--char);
  border-radius: var(--radius-md);
  padding: 1.5rem;
}

.pros-list h4 { color: #4caf50; }
.cons-list h4 { color: var(--ember); }

.pros-list ul,
.cons-list ul {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-top: 1rem;
}

.pros-list li::before { content: '✓ '; color: #4caf50; font-weight: 700; }
.cons-list li::before { content: '✗ '; color: var(--ember); font-weight: 700; }

.pros-list li,
.cons-list li {
  font-size: 0.9rem;
  color: var(--ash);
  line-height: 1.5;
}

/* Verdict box */
.verdict-box {
  background: linear-gradient(135deg, rgba(192,57,28,0.15), rgba(244,160,26,0.08));
  border: 1px solid rgba(232,93,4,0.3);
  border-radius: var(--radius-lg);
  padding: 2rem;
  margin-block: 2rem;
}

.verdict-label {
  font-family: var(--font-display);
  font-size: 0.9rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--flame);
  margin-bottom: 0.75rem;
}

.verdict-box p {
  font-size: 1.05rem;
  line-height: 1.7;
}

/* -------------------------------------------------------------
   14. ARTICLE / GUIDE BODY CONTENT
------------------------------------------------------------- */
.article-content {
  max-width: 760px;
  margin-inline: auto;
}

.article-content h2 {
  margin-top: 3rem;
  margin-bottom: 1rem;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.article-content h3 {
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  font-size: clamp(1.3rem, 2vw, 1.8rem);
  color: var(--gold);
}

.article-content p {
  margin-bottom: 1.25rem;
}

.article-content ul,
.article-content ol {
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.article-content ul { list-style: disc; }
.article-content ol { list-style: decimal; }

.article-content li {
  font-size: 1rem;
  color: var(--ash);
  line-height: 1.65;
  padding-left: 0.25rem;
}

.article-content a {
  color: var(--flame);
  border-bottom: 1px solid transparent;
  transition: border-color var(--t-fast);
}

.article-content a:hover {
  border-color: var(--flame);
}

/* Numbered item — guide style */
.numbered-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.5rem;
  align-items: start;
  padding-block: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.numbered-item-num {
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--ember);
  opacity: 0.5;
  line-height: 1;
  min-width: 3rem;
}

.numbered-item h3 {
  margin-bottom: 0.5rem;
}

.numbered-item p {
  font-size: 0.95rem;
}

/* Callout box */
.callout {
  background-color: var(--char);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 1.5rem;
  margin-block: 2rem;
}

.callout-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.06em;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.callout p {
  font-size: 0.9rem;
  margin: 0;
}

/* Table — comparison / spec */
.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
  margin-block: 2rem;
}

.data-table th {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.06em;
  text-align: left;
  padding: 0.75rem 1rem;
  background-color: var(--char);
  color: var(--white);
  border-bottom: 2px solid var(--flame);
}

.data-table td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  color: var(--ash);
}

.data-table tr:hover td {
  background-color: rgba(255,255,255,0.02);
}

/* -------------------------------------------------------------
   15. INDEX PAGES — FILTERS & GRID
------------------------------------------------------------- */
.index-header {
  padding-top: calc(80px + clamp(3rem, 6vw, 4rem));
  padding-bottom: clamp(2rem, 4vw, 3rem);
  background-color: var(--char);
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
  align-items: center;
}

.filter-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--smoke);
  margin-right: 0.25rem;
}

/* -------------------------------------------------------------
   16. ABOUT PAGE
------------------------------------------------------------- */
.about-intro {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  padding-block: clamp(4rem, 8vw, 7rem);
}

@media (min-width: 768px) {
  .about-intro {
    grid-template-columns: 1fr 1fr;
  }
}

.about-intro-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background-color: var(--char);
}

.about-intro-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 260px), 1fr));
  gap: 1.5rem;
}

.value-card {
  background-color: var(--char);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  border-top: 2px solid var(--flame);
  transition: transform var(--t-normal);
}

.value-card:hover {
  transform: translateY(-4px);
}

.value-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.value-card h4 {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}

.value-card p {
  font-size: 0.9rem;
  color: var(--smoke);
}

/* Team strip */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 220px), 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.team-card {
  text-align: center;
}

.team-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background-color: var(--char);
  margin-inline: auto;
  margin-bottom: 1rem;
  overflow: hidden;
  border: 3px solid var(--flame);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
}

.team-card h4 {
  font-size: 1.4rem;
  margin-bottom: 0.25rem;
}

.team-card p {
  font-size: 0.85rem;
  color: var(--smoke);
}

/* -------------------------------------------------------------
   17. CONTACT PAGE
------------------------------------------------------------- */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  max-width: 600px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--smoke);
}

.form-control {
  background-color: var(--char);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  padding: 0.875rem 1rem;
  color: var(--white);
  font-size: 1rem;
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
  width: 100%;
}

.form-control::placeholder { color: var(--smoke); }

.form-control:focus {
  outline: none;
  border-color: var(--flame);
  box-shadow: 0 0 0 3px rgba(232,93,4,0.15);
}

textarea.form-control {
  min-height: 140px;
  resize: vertical;
}

/* -------------------------------------------------------------
   18. NEWSLETTER STRIP
------------------------------------------------------------- */
.newsletter-strip {
  background-color: var(--char);
  padding-block: clamp(3rem, 5vw, 4.5rem);
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.newsletter-strip h2 {
  margin-bottom: 0.75rem;
}

.newsletter-strip p {
  max-width: 50ch;
  margin-inline: auto;
  margin-bottom: 2rem;
  color: var(--smoke);
}

.newsletter-form {
  display: flex;
  gap: 0.75rem;
  max-width: 460px;
  margin-inline: auto;
  flex-wrap: wrap;
  justify-content: center;
}

.newsletter-form input {
  flex: 1;
  min-width: 220px;
  background-color: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1.1rem;
  color: var(--white);
  font-size: 1rem;
}

.newsletter-form input::placeholder { color: var(--smoke); }

.newsletter-form input:focus {
  outline: none;
  border-color: var(--flame);
}

/* -------------------------------------------------------------
   19. FOOTER
------------------------------------------------------------- */
.site-footer {
  background-color: #080808;
  padding-top: clamp(3rem, 5vw, 5rem);
  border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 3rem;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: var(--gutter);
  padding-bottom: 3rem;
}

@media (max-width: 860px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

.footer-brand .nav-logo-name {
  font-size: 2rem;
  display: block;
  margin-bottom: 0.25rem;
}

.footer-brand .nav-logo-badge {
  display: block;
  margin-bottom: 1rem;
}

.footer-brand p {
  font-size: 0.875rem;
  color: var(--smoke);
  line-height: 1.65;
  max-width: 30ch;
}

.footer-col h5 {
  font-size: 0.75rem;
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--smoke);
  margin-bottom: 1.25rem;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.footer-col a {
  font-size: 0.9rem;
  color: var(--ash);
  transition: color var(--t-fast);
}

.footer-col a:hover {
  color: var(--flame);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-block: 1.25rem;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: var(--gutter);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.footer-bottom p,
.footer-bottom a {
  font-size: 0.8rem;
  color: var(--smoke);
}

.footer-bottom a:hover { color: var(--flame); }

/* -------------------------------------------------------------
   20. SCROLL REVEAL ANIMATIONS
------------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* -------------------------------------------------------------
   21. BREADCRUMBS
------------------------------------------------------------- */
.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  align-items: center;
  margin-bottom: 1.25rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--smoke);
}

.breadcrumbs a {
  color: var(--smoke);
  transition: color var(--t-fast);
}

.breadcrumbs a:hover { color: var(--flame); }

.breadcrumbs .sep {
  color: rgba(255,255,255,0.2);
}

.breadcrumbs .current {
  color: var(--ash);
}

/* -------------------------------------------------------------
   22. UTILITY — MISC
------------------------------------------------------------- */
/* Visually hidden (accessibility) */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border-width: 0;
}

/* Flame gradient text */
.gradient-text {
  background: linear-gradient(135deg, var(--flame) 0%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Subtle noise texture overlay */
.texture::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}

/* Flame accent bar (top-of-page decorative) */
.flame-bar {
  height: 3px;
  background: linear-gradient(to right, var(--ember), var(--flame), var(--gold), var(--flame), var(--ember));
  width: 100%;
}

/* -------------------------------------------------------------
   23. RESPONSIVE OVERRIDES
------------------------------------------------------------- */
@media (max-width: 860px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-mobile { display: flex; }
}

@media (max-width: 640px) {
  .hero-stats { gap: 1.5rem; }
  .review-score-block { flex-direction: column; text-align: center; }
  .score-row { grid-template-columns: 1fr; gap: 0.4rem; }
  .score-row-value { text-align: left; }
}

@media (max-width: 480px) {
  .recipe-meta-bar { gap: 1rem; }
  .numbered-item { grid-template-columns: 1fr; }
  .numbered-item-num { font-size: 2.5rem; }
}

/* Print */
@media print {
  .site-header,
  .site-footer,
  .newsletter-strip { display: none; }
  body { color: #000; background: #fff; }
}

/* -------------------------------------------------------------
   24. COMPATIBILITY PATCH — Current HTML Templates
   These classes match the existing static HTML pages:
   page-hero, article-header, post-grid, post-card, product-card,
   disclosure, gear-section, gear-grid, footer-inner, etc.
------------------------------------------------------------- */

/* Fixed header compensation */
body {
  padding-top: 90px;
}

/* Logo fallback when nav-logo is plain text instead of nested spans */
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.8rem;
  letter-spacing: 0.06em;
  color: var(--white);
  line-height: 1;
  flex-direction: row;
  align-items: center;
}

/* Header should have visible dark background even without scroll JS */
.site-header {
  background-color: rgba(13, 13, 13, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

/* Current mobile menu JS toggles is-open, not open */
.nav-links.is-open {
  display: flex;
}

.nav-cta a {
  background: var(--flame);
  color: var(--white);
  padding: 0.55rem 0.9rem;
  border-radius: var(--radius-sm);
}

.nav-cta a::after {
  display: none;
}

.nav-cta a:hover {
  background: var(--ember);
}

/* Generic page hero used by index pages */
.page-hero,
.article-header {
  background:
    radial-gradient(circle at top left, rgba(232, 93, 4, 0.18), transparent 34rem),
    linear-gradient(135deg, var(--char), var(--coal));
  padding-block: clamp(3rem, 6vw, 5rem);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.page-hero h1,
.article-header h1 {
  margin-bottom: 1rem;
}

.page-hero p,
.article-header__dek {
  max-width: 760px;
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  color: var(--ash);
}

.article-header__category,
.post-card__category,
.product-card__label {
  display: inline-block;
  color: var(--flame);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 0.5rem;
}

.article-header__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.25rem;
  color: var(--smoke);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Current post listing cards */
.post-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 320px), 1fr));
  gap: 1.75rem;
}

.post-card,
.product-card {
  background-color: var(--char);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(255,255,255,0.06);
  transition: transform var(--t-normal), box-shadow var(--t-normal), border-color var(--t-normal);
}

.post-card:hover,
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lift);
  border-color: rgba(232,93,4,0.35);
}

.post-card__icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.post-card__body {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.post-card h3 {
  font-size: clamp(1.4rem, 2.4vw, 2rem);
}

.post-card h3 a:hover {
  color: var(--flame);
}

.post-card__excerpt {
  color: var(--smoke);
}

.post-card__meta {
  color: var(--smoke);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 0.5rem;
}

/* Article body/prose used by recipe pages */
.article-body {
  background: var(--coal);
}

.prose {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.prose h2,
.prose h3 {
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.prose h2 {
  border-bottom: 2px solid var(--flame);
  display: inline-block;
  padding-bottom: 0.4rem;
}

.prose p,
.prose ul,
.prose ol,
.prose table {
  margin-bottom: 1.25rem;
}

.prose ul {
  list-style: disc;
  padding-left: 1.5rem;
}

.prose ol {
  list-style: decimal;
  padding-left: 1.5rem;
}

.prose li {
  margin-bottom: 0.5rem;
  color: var(--ash);
}

.prose a {
  color: var(--flame);
}

.prose a:hover {
  color: var(--gold);
}

.prose hr {
  border: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(255,255,255,0.16), transparent);
  margin: 2.5rem 0;
}

.prose table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: var(--radius-sm);
}

.prose th,
.prose td {
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 0.85rem;
  text-align: left;
}

.prose th {
  background: var(--char);
  color: var(--white);
  font-family: var(--font-display);
  letter-spacing: 0.06em;
}

.prose img {
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
}

.disclosure {
  background: rgba(244,160,26,0.1);
  border-left: 4px solid var(--gold);
  padding: 1rem 1.25rem;
  margin-bottom: 2rem;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  color: var(--ash);
}

.btn--amazon {
  background: var(--gold);
  color: var(--coal);
}

.btn--amazon:hover {
  background: #e0900f;
  box-shadow: 0 6px 20px rgba(244, 160, 26, 0.35);
}

/* Gear section used by current recipe pages */
.gear-section {
  background-color: var(--char);
  padding-block: clamp(3rem, 6vw, 5rem);
  border-top: 1px solid rgba(255,255,255,0.06);
}

.gear-section__header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.gear-section__icon {
  font-size: 2rem;
}

.gear-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 260px), 1fr));
  gap: 1.5rem;
}

/* Current footer HTML uses footer-inner, not footer-grid */
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr repeat(2, 1fr);
  gap: 3rem;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: var(--gutter);
  padding-bottom: 3rem;
}

.footer-brand .nav-logo {
  display: inline-flex;
  margin-bottom: 1rem;
}

.footer-brand p {
  color: var(--smoke);
  max-width: 32ch;
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--smoke);
  margin-bottom: 1.25rem;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.footer-col a {
  color: var(--ash);
}

.footer-col a:hover {
  color: var(--flame);
}

/* Root placeholder homepage fallback */
body > h1:first-child,
body > ul:first-of-type {
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

/* Responsive compatibility */
@media (max-width: 860px) {
  .nav-links.is-open {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: var(--coal);
    padding: 1rem var(--gutter);
    border-top: 1px solid rgba(255,255,255,0.06);
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }

  .nav-links.is-open li {
    width: 100%;
  }

  .nav-links.is-open a {
    display: block;
    padding: 0.9rem 0;
  }
}

@media (max-width: 700px) {
  body {
    padding-top: 76px;
  }

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