/* ============================================================
   GNG AUTO DETAIL — styles.css
   Shared across homepage and all city landing pages
   ============================================================ */

/* ── Tokens ──────────────────────────────────────────────── */
:root {
  --color-bg:               #0a0a0a;
  --color-surface:          #111111;
  --color-surface-elevated: #1a1a1a;
  --color-surface-floating: #222222;
  --color-brand:            #00C8D4;
  --color-brand-dim:        #009ba4;
  --color-brand-bright:     #00e0ee;
  --color-brand-glow:       rgba(0, 200, 212, 0.15);
  --color-brand-glow-faint: rgba(0, 200, 212, 0.07);
  --color-text:             #f0f0f0;
  --color-text-muted:       #9ca3af;
  --color-border:           rgba(255, 255, 255, 0.07);
  --color-border-brand:     rgba(0, 200, 212, 0.2);

  --font-display: 'Bebas Neue', sans-serif;
  --font-body:    'Inter', sans-serif;

  --space-section: clamp(5rem, 9vw, 8rem);
  --space-section-sm: clamp(3rem, 5vw, 4.5rem);

  --radius-card: 10px;
  --radius-pill: 999px;

  --shadow-brand:
    0 0 0 1px rgba(0, 200, 212, 0.12),
    0 4px 24px rgba(0, 200, 212, 0.1),
    0 1px 4px rgba(0, 0, 0, 0.8);
  --shadow-card:
    0 2px 8px rgba(0, 0, 0, 0.5),
    0 1px 2px rgba(0, 0, 0, 0.8);

  --transition-ui:    transform 200ms ease, opacity 200ms ease;
  --transition-color: color 200ms ease, background 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 72px; /* sticky nav height */
  overflow-x: hidden;
}

body {
  background-color: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

/* ── Grain Texture ───────────────────────────────────────── */
.grain-overlay { position: relative; }
.grain-overlay::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.04;
  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.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 180px 180px;
  z-index: 1;
}
.grain-overlay > * { position: relative; z-index: 2; }

/* ── Buttons ─────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.75rem;
  background: var(--color-brand);
  color: #080808;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: var(--transition-ui), background 200ms ease, box-shadow 200ms ease;
  box-shadow: var(--shadow-brand);
  white-space: nowrap;
}
.btn-primary:hover  { background: var(--color-brand-bright); transform: translateY(-2px); box-shadow: 0 0 0 1px rgba(0,200,212,0.3), 0 8px 32px rgba(0,200,212,0.2); }
.btn-primary:active { background: var(--color-brand-dim); transform: translateY(0); }
.btn-primary:focus-visible { outline: 2px solid var(--color-brand); outline-offset: 3px; }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.75rem;
  background: transparent;
  color: var(--color-brand);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 4px;
  border: 1.5px solid var(--color-brand);
  cursor: pointer;
  transition: var(--transition-ui), background 200ms ease;
  white-space: nowrap;
}
.btn-outline:hover  { background: var(--color-brand-glow); transform: translateY(-2px); }
.btn-outline:active { transform: translateY(0); }
.btn-outline:focus-visible { outline: 2px solid var(--color-brand); outline-offset: 3px; }

.btn-sm { padding: 0.6rem 1.25rem; font-size: 0.75rem; }

/* ── Section Wrapper ─────────────────────────────────────── */
.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-brand);
  margin-bottom: 0.75rem;
}

.section-heading {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.5rem);
  line-height: 1;
  letter-spacing: 0.02em;
  color: var(--color-text);
}

.section-subhead {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: var(--color-text-muted);
  max-width: 52ch;
  line-height: 1.7;
  margin-top: 0.75rem;
  margin-left: auto;
  margin-right: auto;
}

/* ── Nav ─────────────────────────────────────────────────── */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 10, 10, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(0, 200, 212, 0.08);
  transition: var(--transition-color);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}
.nav-logo img {
  height: 42px;
  width: auto;
  display: block;
  flex-shrink: 0;
  transition: var(--transition-ui);
}
.nav-logo:hover img { transform: scale(1.05); }
.nav-logo:focus-visible { outline: 2px solid var(--color-brand); outline-offset: 4px; border-radius: 4px; }

.nav-brand-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: 0.09em;
  color: var(--color-text);
  line-height: 1;
  white-space: nowrap;
}
.nav-brand-auto { color: var(--color-brand); }

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

.nav-link {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  position: relative;
  padding-bottom: 2px;
  transition: color 200ms ease;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 1.5px;
  background: var(--color-brand);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 200ms ease;
}
.nav-link:hover { color: var(--color-text); }
.nav-link:hover::after { transform: scaleX(1); }
.nav-link:focus-visible { outline: 2px solid var(--color-brand); outline-offset: 4px; border-radius: 2px; }

.nav-cta { margin-left: 0.5rem; }

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  align-items: center;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 4px;
  border-radius: 6px;
  transition: background 200ms ease;
}
.nav-hamburger:hover { background: rgba(255,255,255,0.06); }
.nav-hamburger:focus-visible { outline: 2px solid var(--color-brand); outline-offset: 2px; }
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: transform 250ms ease, opacity 250ms ease;
}

/* Hamburger open state */
.site-nav.nav-open .nav-hamburger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.site-nav.nav-open .nav-hamburger span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.site-nav.nav-open .nav-hamburger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.nav-mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--color-surface-floating);
  border-top: 1px solid var(--color-border);
  padding: 1rem 1.5rem 1.5rem;
  gap: 0.25rem;
}
.site-nav.nav-open .nav-mobile-menu { display: flex; }

.nav-mobile-link {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--color-border);
  transition: color 200ms ease;
}
.nav-mobile-link:hover { color: var(--color-brand); }
.nav-mobile-link:last-child { border-bottom: none; }
.nav-mobile-cta { margin-top: 0.75rem; width: 100%; justify-content: center; }

@media (max-width: 767px) {
  .nav-hamburger { display: flex; }
  .nav-links { display: none; }
}

/* ── Hero ────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('images/gallery/gng-auto-detail-team-morris-county-nj.webp');
  background-size: cover;
  background-position: center 10%;
  filter: brightness(0.4) saturate(0.55);
  z-index: 0;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 55% at 50% 100%, rgba(0,200,212,0.16) 0%, transparent 65%),
    radial-gradient(ellipse 100% 40% at 50% 100%, rgba(0,0,0,0.7) 0%, transparent 80%),
    linear-gradient(170deg, rgba(10,10,10,0.5) 0%, rgba(10,10,10,0.25) 50%, rgba(10,10,10,0.7) 100%);
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 7rem 1.5rem 5rem;
  width: 100%;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-brand);
  margin-bottom: 1.25rem;
}
.hero__eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--color-brand);
}

.hero__headline {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 7vw, 5rem);
  line-height: 0.94;
  letter-spacing: 0.01em;
  color: #ffffff;
  text-shadow: 0 2px 60px rgba(0,0,0,0.7);
  max-width: 14ch;
}

.hero__headline span { color: var(--color-brand); }

.hero__subhead {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: rgba(240,240,240,0.75);
  max-width: 46ch;
  line-height: 1.7;
  margin-top: 1.5rem;
}

.hero__ctas {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}

.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255,255,255,0.35);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(0,200,212,0.6), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(0.6); }
}

@media (max-width: 767px) {
  .hero__bg {
    background-position: center 10%;
  }
}

/* ── Problems We Solve ───────────────────────────────────── */
.problems {
  padding: var(--space-section) 0;
  background: var(--color-bg);
  position: relative;
  overflow: hidden;
}
.problems::before {
  content: '';
  position: absolute;
  top: 0; left: 50%; transform: translateX(-50%);
  width: 600px; height: 300px;
  background: radial-gradient(ellipse at center, rgba(0,200,212,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.problems__header { margin-bottom: 3rem; }
.problems__header .section-subhead { margin-left: 0; margin-right: 0; }

.problems-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  overflow: hidden;
}

.problem-row {
  display: block;
  padding: 1.4rem 1.75rem;
  border-bottom: 1px solid var(--color-border);
  border-right: 1px solid var(--color-border);
  transition: background 200ms ease;
}
.problem-row:nth-child(even) { border-right: none; }
.problem-row:nth-last-child(-n+2) { border-bottom: none; }
.problem-row:hover { background: var(--color-surface-elevated); }

.problem-row__title {
  font-weight: 700;
  font-size: 0.93rem;
  color: var(--color-text);
  letter-spacing: 0.01em;
  margin-bottom: 0.35rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.problem-row__title::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-brand);
  flex-shrink: 0;
}

.problem-row__desc {
  font-size: 0.83rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}

@media (max-width: 640px) {
  .problems-list { grid-template-columns: 1fr; }
  .problem-row { border-right: none; }
  .problem-row:nth-last-child(-n+2) { border-bottom: 1px solid var(--color-border); }
  .problem-row:last-child { border-bottom: none; }
}

/* ── Services ────────────────────────────────────────────── */
.services {
  padding: var(--space-section) 0;
  background: var(--color-surface);
}

.services__header { margin-bottom: 3rem; }
.services__header .section-subhead { margin-left: 0; margin-right: 0; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  align-items: start;
}

.service-card {
  background: var(--color-surface-elevated);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: var(--transition-ui), var(--transition-color);
  box-shadow: var(--shadow-card);
}
.service-card:hover {
  transform: translateY(-4px);
  border-color: var(--color-border-brand);
  box-shadow: 0 12px 36px rgba(0,0,0,0.5), 0 0 0 1px rgba(0,200,212,0.12);
}

.service-card--featured {
  border-top: 2px solid var(--color-brand);
  background: var(--color-surface-floating);
  position: relative;
}

.service-card__badge {
  display: inline-flex;
  padding: 0.25rem 0.75rem;
  background: var(--color-brand-glow);
  border: 1px solid var(--color-border-brand);
  border-radius: var(--radius-pill);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-brand);
  align-self: flex-start;
}

.service-card__icon { color: var(--color-brand); width: 32px; height: 32px; }

.service-card__title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: 0.04em;
  color: var(--color-text);
  line-height: 1;
}

.service-card__desc {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

.service-card__includes {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  flex: 1;
}

.service-card__includes li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: var(--color-text-muted);
  line-height: 1.4;
}
.service-card__includes li::before {
  content: '';
  display: block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--color-brand);
  flex-shrink: 0;
  margin-top: 0.45rem;
}

.service-card .btn-outline { margin-top: auto; width: 100%; justify-content: center; }

/* Services assessment note */
.services-note {
  margin-top: 2.5rem;
  text-align: center;
  padding: 1.25rem 2rem;
  border: 1px solid var(--color-border-brand);
  border-radius: var(--radius-card);
  background: var(--color-brand-glow-faint);
}
.services-note__text {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  font-style: italic;
  max-width: 72ch;
  margin: 0 auto;
}

@media (max-width: 900px) {
  .services-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
}

/* ── How It Works ────────────────────────────────────────── */
.how-it-works {
  padding: var(--space-section) 0;
  background: var(--color-bg);
}
.how-it-works__header { margin-bottom: 3.5rem; }
.how-it-works__header .section-subhead { margin-left: 0; margin-right: 0; }

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
}

.steps::before {
  content: '';
  position: absolute;
  top: 3rem;
  left: calc(16.66% + 1rem);
  right: calc(16.66% + 1rem);
  height: 1px;
  border-top: 1.5px dashed rgba(0,200,212,0.25);
  pointer-events: none;
}

.step {
  padding: 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  position: relative;
  text-align: center;
  align-items: center;
}
.step:first-child { padding-left: 0; }
.step:last-child  { padding-right: 0; }

.step__number {
  font-family: var(--font-display);
  font-size: 5rem;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--color-brand);
  opacity: 0.3;
  user-select: none;
  letter-spacing: 0.04em;
}

.step__icon {
  width: 48px; height: 48px;
  background: var(--color-surface-elevated);
  border: 1px solid var(--color-border-brand);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-brand);
  margin: 0 auto;
  position: relative;
  z-index: 1;
  background: var(--color-surface-floating);
}
.step__icon svg { width: 20px; height: 20px; }

.step__title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 0.04em;
  color: var(--color-text);
}

.step__desc {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  max-width: 22ch;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .steps { grid-template-columns: 1fr; gap: 2.5rem; }
  .steps::before { display: none; }
  .step { padding: 0; text-align: left; align-items: flex-start; flex-direction: row; flex-wrap: wrap; }
  .step__number { font-size: 3rem; min-width: 3rem; }
  .step__icon { display: none; }
  .step__text { flex: 1; }
  .step__desc { max-width: none; margin: 0; }
}

/* ── Gallery ─────────────────────────────────────────────── */
.gallery {
  padding: var(--space-section) 0;
  background: var(--color-surface);
}
.gallery__header { margin-bottom: 2rem; }
.gallery__header .section-subhead { margin-left: 0; margin-right: 0; }

/* Filter tabs */
.gallery-filters {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 1.75rem;
}
.gallery-filter {
  padding: 0.45rem 1.1rem;
  border-radius: 999px;
  border: 1.5px solid var(--color-border, rgba(255,255,255,0.15));
  background: transparent;
  color: var(--color-text-muted, #9ca3af);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: background 200ms ease, color 200ms ease, border-color 200ms ease;
  white-space: nowrap;
}
.gallery-filter:hover {
  border-color: var(--color-brand, #1d6feb);
  color: #fff;
}
.gallery-filter--active {
  background: var(--color-brand, #1d6feb);
  border-color: var(--color-brand, #1d6feb);
  color: #fff;
}

/* Grid — masonry columns */
.gallery-grid {
  columns: 3;
  column-gap: 1rem;
}
.gallery-grid--city {
  columns: unset;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-card);
  overflow: hidden;
  background: var(--color-surface-elevated);
  cursor: pointer;
  break-inside: avoid;
  margin-bottom: 1rem;
  /* fade-in animation */
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 500ms ease, transform 500ms ease,
              filter 250ms ease;
}
.gallery-item--visible {
  opacity: 1;
  transform: translateY(0);
}
.gallery-item--hidden {
  display: none;
}

.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 450ms ease;
}
.gallery-item:hover img { transform: scale(1.04); }

.gallery-item__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, transparent 55%);
  opacity: 0;
  transition: opacity 250ms ease;
}
.gallery-item:hover .gallery-item__overlay { opacity: 1; }

/* Before / After badge */
.gallery-item__badge {
  position: absolute;
  bottom: 0.75rem;
  left: 0.75rem;
  padding: 0.18rem 0.6rem 0.12rem;
  border-radius: 2px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: rgba(8,8,8,0.6);
  color: rgba(230,230,235,0.75);
  border: 1px solid rgba(255,255,255,0.13);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  pointer-events: none;
}
.gallery-item__badge--before {
  color: rgba(210,210,215,0.8);
  border-color: rgba(255,255,255,0.13);
}
.gallery-item__badge--after {
  color: #00C8D4;
  border-color: rgba(0,200,212,0.45);
  background: rgba(0,200,212,0.07);
}

/* ── Lightbox ─────────────────────────────────────────────── */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(0,0,0,0.92);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox[hidden] { display: none; }

.lightbox__content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}
.lightbox__img {
  max-width: 90vw;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 6px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.6);
}
.lightbox__caption {
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
  text-align: center;
  max-width: 60ch;
  margin: 0;
}
.lightbox__counter {
  color: rgba(255,255,255,0.45);
  font-size: 0.78rem;
}

.lightbox__close,
.lightbox__nav {
  position: fixed;
  background: rgba(255,255,255,0.12);
  border: none;
  color: #fff;
  cursor: pointer;
  border-radius: 50%;
  width: 2.75rem;
  height: 2.75rem;
  font-size: 1.5rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 200ms ease;
  backdrop-filter: blur(4px);
}
.lightbox__close:hover,
.lightbox__nav:hover { background: rgba(255,255,255,0.25); }

.lightbox__close { top: 1.25rem; right: 1.25rem; font-size: 1.75rem; }
.lightbox__nav--prev { left: 1.25rem; top: 50%; transform: translateY(-50%); }
.lightbox__nav--next { right: 1.25rem; top: 50%; transform: translateY(-50%); }

/* ── Gallery responsive ───────────────────────────────────── */
@media (max-width: 767px) {
  .gallery-grid {
    columns: 2;
    column-gap: 0.75rem;
  }
  .gallery-item { margin-bottom: 0.75rem; }
  .lightbox__nav--prev { left: 0.5rem; }
  .lightbox__nav--next { right: 0.5rem; }
}
@media (max-width: 480px) {
  .gallery-grid {
    columns: 1;
  }
}

/* ── Why GNG ─────────────────────────────────────────────── */
.why-gng {
  padding: var(--space-section) 0;
  background: var(--color-bg);
  position: relative;
  overflow: hidden;
}

.why-gng__bg-img {
  position: absolute;
  inset: 0;
  background-image: url('images/gallery/gng-auto-detail-sign-morris-county-nj.webp');
  background-size: cover;
  background-position: center;
  opacity: 0.04;
  mix-blend-mode: luminosity;
  pointer-events: none;
}

.why-gng__header { margin-bottom: 0.5rem; }

.why-gng__summary {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  max-width: 70ch;
  margin-top: 1.25rem;
  margin-bottom: 3rem;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
}

.trust-card {
  border-left: 3px solid var(--color-brand);
  padding: 1.5rem 1.75rem;
  background: var(--color-surface-elevated);
  border-radius: 0 var(--radius-card) var(--radius-card) 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  transition: var(--transition-ui), var(--transition-color);
  border-top: 1px solid var(--color-border);
  border-right: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}
.trust-card:hover { transform: translateX(4px); border-left-color: var(--color-brand-bright); }

.trust-card__title {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--color-text);
}
.trust-card__desc {
  font-size: 0.87rem;
  color: var(--color-text-muted);
  line-height: 1.55;
}

/* ── Service Area ────────────────────────────────────────── */
.service-area {
  padding: var(--space-section) 0;
  background: var(--color-surface);
}
.service-area__header { margin-bottom: 2.5rem; }

.area-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.area-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.25rem;
  background: var(--color-surface-elevated);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-pill);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-text-muted);
  transition: var(--transition-color), var(--transition-ui);
}
.area-badge:hover { border-color: var(--color-border-brand); background: var(--color-brand-glow-faint); color: var(--color-text); transform: translateY(-1px); }
.area-badge svg { width: 14px; height: 14px; color: var(--color-brand); flex-shrink: 0; }

.area-note {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.85rem;
  color: var(--color-text-muted);
}
.area-note a { color: var(--color-brand); text-decoration: underline; text-underline-offset: 3px; }
.area-note a:hover { color: var(--color-brand-bright); }

/* ── FAQ ─────────────────────────────────────────────────── */
.faq {
  padding: var(--space-section) 0;
  background: var(--color-bg);
}
.faq__header { margin-bottom: 2.5rem; }

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 820px;
}

details.faq-item {
  background: var(--color-surface-elevated);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  overflow: hidden;
  transition: border-color 200ms ease;
}
details.faq-item[open] { border-color: var(--color-border-brand); }

details.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--color-text);
  list-style: none;
  user-select: none;
  transition: color 200ms ease;
}
details.faq-item summary::-webkit-details-marker { display: none; }
details.faq-item summary:hover { color: var(--color-brand); }

.faq-item__indicator {
  width: 20px; height: 20px;
  border: 1.5px solid var(--color-border-brand);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--color-brand);
  font-size: 0.9rem;
  line-height: 1;
  transition: transform 200ms ease;
}
details.faq-item[open] .faq-item__indicator { transform: rotate(45deg); }

.faq-item__answer {
  padding: 0 1.5rem 1.25rem;
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  border-top: 1px solid var(--color-border);
  padding-top: 1rem;
}

/* ── Quote Form ──────────────────────────────────────────── */
.quote {
  padding: var(--space-section) 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(0,200,212,0.09) 0%, transparent 60%),
    var(--color-bg);
}
.quote__header { margin-bottom: 3rem; }

.quote__layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 3rem;
  align-items: start;
}

.quote-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

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

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

.form-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  background: var(--color-surface-elevated);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px;
  padding: 0.875rem 1rem;
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: var(--transition-color);
  -webkit-appearance: none;
  appearance: none;
}
.form-input::placeholder,
.form-textarea::placeholder { color: rgba(156,163,175,0.5); }
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--color-brand);
  box-shadow: 0 0 0 3px rgba(0,200,212,0.1);
}

.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2300C8D4' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}
.form-select option { background: var(--color-surface-floating); color: var(--color-text); }

.form-textarea { resize: vertical; min-height: 100px; line-height: 1.5; }

.quote-form .btn-primary { width: 100%; justify-content: center; padding: 1rem; font-size: 0.85rem; }

/* Contact methods (right column) */
.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.contact-methods__label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 0.25rem;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 1.25rem;
  background: var(--color-surface-elevated);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  text-decoration: none;
  color: var(--color-text);
  transition: var(--transition-ui), var(--transition-color);
}
.contact-method:hover {
  border-color: var(--color-border-brand);
  transform: translateX(5px);
  background: var(--color-surface-floating);
}
.contact-method:focus-visible { outline: 2px solid var(--color-brand); outline-offset: 3px; border-radius: var(--radius-card); }

.contact-method__icon {
  width: 40px; height: 40px;
  background: var(--color-brand-glow-faint);
  border: 1px solid var(--color-border-brand);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-brand);
  flex-shrink: 0;
}
.contact-method__icon svg { width: 18px; height: 18px; }
.contact-method__title { font-weight: 600; font-size: 0.9rem; }
.contact-method__value { font-size: 0.82rem; color: var(--color-text-muted); }

@media (max-width: 900px) {
  .quote__layout { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .form-row { grid-template-columns: 1fr; }
}

/* ── Footer ──────────────────────────────────────────────── */
.site-footer {
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
  padding: 4rem 0 2rem;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--color-border);
}

.footer-brand__logo { height: 52px; width: auto; margin-bottom: 1rem; }
.footer-brand__tagline {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  max-width: 28ch;
}

.footer-nav__heading,
.footer-contact__heading {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 1rem;
}

.footer-nav__links {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.footer-nav__links a {
  font-size: 0.875rem;
  color: rgba(240,240,240,0.6);
  transition: color 200ms ease;
}
.footer-nav__links a:hover { color: var(--color-brand); }

.footer-contact__address {
  font-style: normal;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.footer-contact__phone {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-text);
  letter-spacing: 0.01em;
  transition: color 200ms ease;
}
.footer-contact__phone:hover { color: var(--color-brand); }

.footer-contact__location {
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

.footer-socials {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
}
.footer-social {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  background: var(--color-surface-elevated);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  color: var(--color-text-muted);
  transition: var(--transition-ui), var(--transition-color);
}
.footer-social:hover {
  color: var(--color-brand);
  border-color: var(--color-border-brand);
  transform: scale(1.1);
}
.footer-social svg { width: 16px; height: 16px; }

.footer-bottom {
  padding-top: 1.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-copyright {
  font-size: 0.8rem;
  color: rgba(156,163,175,0.5);
}

@media (max-width: 767px) {
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ── Locations ───────────────────────────────────────────── */
.locations {
  padding: var(--space-section) 0;
  background: var(--color-surface);
}
.locations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.location-card {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  background: var(--color-surface-2, #111);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 10px;
  padding: 1.25rem;
  color: var(--color-text, #f0f0f0);
  text-decoration: none;
  transition: border-color 0.2s, transform 0.2s;
}
.location-card:hover {
  border-color: var(--color-brand);
  transform: translateY(-2px);
}
.location-card svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--color-brand);
}
.location-card div { flex: 1; }
.location-card strong {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}
.location-card p {
  font-size: 0.85rem;
  color: rgba(240,240,240,0.6);
  margin: 0;
  line-height: 1.4;
}
.location-card__arrow {
  flex-shrink: 0;
  color: var(--color-brand);
  font-size: 1.1rem;
  align-self: center;
}
@media (max-width: 900px) {
  .locations-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .locations-grid { grid-template-columns: 1fr; }
}

/* ── City Page: Why Choose Us Cards ─────────────────────── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.why-card {
  background: var(--color-surface-elevated);
  border: 1px solid var(--color-border);
  border-top: 3px solid var(--color-brand);
  border-radius: var(--radius-card);
  padding: 1.5rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  box-shadow:
    0 2px 12px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(0, 200, 212, 0.06);
  transition: var(--transition-ui), var(--transition-color);
  cursor: default;
}

.why-card:hover {
  transform: translateY(-3px);
  border-top-color: var(--color-brand-bright);
  box-shadow:
    0 6px 24px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(0, 200, 212, 0.12);
}

.why-card strong {
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.04em;
  color: var(--color-brand);
  display: block;
}

.why-card p {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin: 0;
}

/* ═══════════════════════════════════════════════════════════
   BLOG LISTING
   ═══════════════════════════════════════════════════════════ */

.blog-listing-hero {
  background:
    linear-gradient(135deg, rgba(0,200,212,0.08) 0%, transparent 60%),
    var(--color-bg);
}

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

.blog-grid--empty {
  text-align: center;
  padding: 4rem 0;
  color: var(--color-text-muted);
  grid-column: 1 / -1;
}

/* ── Base card ─────────────────────────────────────── */
.blog-card {
  display: flex;
  flex-direction: column;
  background: var(--color-surface-elevated);
  border: 1px solid var(--color-border, rgba(255,255,255,0.06));
  border-radius: var(--radius-card);
  overflow: hidden;
  text-decoration: none;
  color: var(--color-text);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
  box-shadow: var(--shadow-card);
}

.blog-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 200, 212, 0.3);
  box-shadow:
    0 12px 40px rgba(0, 0, 0, 0.6),
    0 0 0 1px rgba(0, 200, 212, 0.15),
    0 0 28px rgba(0, 200, 212, 0.07);
}

/* ── Featured card (first post) ─────────────────────── */
.blog-card--featured {
  grid-column: 1 / -1;
  flex-direction: row;
}

.blog-card--featured .blog-card__image {
  width: 50%;
  flex-shrink: 0;
  aspect-ratio: auto;
  min-height: 340px;
}

.blog-card--featured .blog-card__body {
  padding: 2.5rem 2.25rem;
  justify-content: center;
}

.blog-card--featured .blog-card__title {
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  line-height: 1.1;
}

.blog-card--featured .blog-card__excerpt {
  -webkit-line-clamp: 4;
  font-size: 0.9rem;
}

/* ── Card image ──────────────────────────────────────── */
.blog-card__image {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--color-surface);
  flex-shrink: 0;
}

.blog-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
  display: block;
}

/* gradient overlay on image */
.blog-card__image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.1) 45%, transparent 65%);
  transition: opacity 0.3s ease;
  pointer-events: none;
}

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

.blog-card:hover .blog-card__image::after {
  opacity: 0.6;
}

/* ── Card body ───────────────────────────────────────── */
.blog-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1.4rem 1.6rem 1.6rem;
  gap: 0.6rem;
}

/* ── Category badge ──────────────────────────────────── */
.blog-card__category {
  display: inline-flex;
  align-self: flex-start;
  padding: 0.22rem 0.65rem;
  background: var(--color-brand-glow);
  border: 1px solid var(--color-border-brand);
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--color-brand);
}

/* ── Card title ──────────────────────────────────────── */
.blog-card__title {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  letter-spacing: 0.02em;
  line-height: 1.12;
  color: var(--color-text);
  margin: 0.1rem 0 0;
}

/* ── Card excerpt ────────────────────────────────────── */
.blog-card__excerpt {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.65;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}

/* ── Card meta row (date + read more) ────────────────── */
.blog-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 0.5rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.blog-card__date {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: var(--color-text-muted);
  opacity: 0.7;
}

.blog-card__readmore {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-brand);
  transition: gap 0.2s ease;
}

.blog-card:hover .blog-card__readmore {
  gap: 0.5rem;
}

/* ═══════════════════════════════════════════════════════════
   BLOG POST ARTICLE
   ═══════════════════════════════════════════════════════════ */

.blog-post-hero {
  min-height: 65vh;
}

.blog-post-hero__bg {
  background-size: cover;
  background-position: center;
}

.blog-post-hero__content {
  text-align: center;
}

.blog-post-hero__headline {
  font-size: clamp(2.2rem, 5vw, 4rem);
}

.blog-post__meta-hero {
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: rgba(240, 240, 240, 0.7);
  letter-spacing: 0.04em;
  margin-top: 0.75rem;
}

.blog-post {
  max-width: 760px;
  margin: 0 auto;
}

/* Rich Text body typography */
.blog-post__body h2 {
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 3vw, 2.1rem);
  letter-spacing: 0.03em;
  color: var(--color-text);
  margin: 2.75rem 0 1rem;
  line-height: 1.1;
}

.blog-post__body h3 {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  letter-spacing: 0.03em;
  color: var(--color-brand);
  margin: 2rem 0 0.75rem;
  line-height: 1.15;
}

.blog-post__body p {
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--color-text-muted);
  margin-bottom: 1.35rem;
}

.blog-post__body ul,
.blog-post__body ol {
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--color-text-muted);
  padding-left: 1.75rem;
  margin-bottom: 1.35rem;
}

.blog-post__body ul li {
  list-style: none;
  position: relative;
  padding-left: 0.5rem;
  margin-bottom: 0.5rem;
}

.blog-post__body ul li::before {
  content: '';
  position: absolute;
  left: -1.1rem;
  top: 0.65em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-brand);
}

.blog-post__body ol li {
  margin-bottom: 0.5rem;
}

.blog-post__body blockquote {
  border-left: 3px solid var(--color-brand);
  padding: 0.75rem 1.5rem;
  margin: 2rem 0;
  font-style: italic;
  color: var(--color-text-muted);
  background: var(--color-surface-elevated);
  border-radius: 0 var(--radius-card) var(--radius-card) 0;
}

.blog-post__body a {
  color: var(--color-brand);
  text-decoration: underline;
  text-decoration-color: rgba(0, 200, 212, 0.35);
  text-underline-offset: 3px;
  transition: text-decoration-color 0.2s ease;
}

.blog-post__body a:hover {
  text-decoration-color: var(--color-brand);
}

.blog-post__body img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-card);
  margin: 2rem 0;
  display: block;
}

.blog-post__body strong {
  color: var(--color-text);
  font-weight: 600;
}

.blog-post__body hr {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.07);
  margin: 2.5rem 0;
}

.blog-post__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.07);
}

.blog-post__tag {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--color-brand);
  border: 1px solid rgba(0, 200, 212, 0.35);
  border-radius: var(--radius-pill);
  padding: 0.25rem 0.75rem;
  text-decoration: none;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.blog-post__tag:hover {
  border-color: var(--color-brand);
  background: rgba(0, 200, 212, 0.07);
}

/* Blog post CTA section */
.blog-post__cta-section {
  padding: 5rem 0;
  background: var(--color-surface);
  border-top: 1px solid rgba(255,255,255,0.05);
}

/* Responsive */
@media (max-width: 767px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }

  /* Featured card: stack vertically on mobile */
  .blog-card--featured {
    flex-direction: column;
  }

  .blog-card--featured .blog-card__image {
    width: 100%;
    aspect-ratio: 16 / 9;
    min-height: unset;
  }

  .blog-card--featured .blog-card__body {
    padding: 1.4rem 1.6rem 1.6rem;
  }

  .blog-card--featured .blog-card__title {
    font-size: clamp(1.3rem, 5vw, 1.7rem);
  }

  .blog-post-hero {
    min-height: 55vh;
  }

  .blog-post__body h2 {
    margin-top: 2rem;
  }

  .blog-post__body p,
  .blog-post__body ul,
  .blog-post__body ol {
    font-size: 1rem;
  }
}
