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

:root {
  --ink:     #0d0d0d;
  --dark:    #141414;
  --coal:    #1c1c1c;
  --steel:   #2a2a2a;
  --iron:    #3d3d3d;
  --mid:     #8a8a8a;
  --ash:     #999;
  --fog:     #ccc;
  --parch:   #f0ebe0;
  --white:   #fafafa;
  --gold:    #c9a84c;
  --gold2:   #e8c96a;
  --gold3:   #f5dfa0;
  --rule:    rgba(201,168,76,0.2);
}

html { scroll-behavior: smooth; }

body {
  background: var(--ink);
  color: var(--white);
  font-family: 'Barlow', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
}

/* ── GRAIN OVERLAY ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  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.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.028;
  pointer-events: none;
  z-index: 1000;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(to bottom, rgba(13,13,13,0.95), transparent);
}

.nav-brand {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--white);
}

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

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--ash);
  text-decoration: none;
  transition: color 0.2s;
}

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

.nav-cta {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--ink) !important;
  background: var(--gold);
  padding: 8px 20px;
  text-decoration: none;
  transition: background 0.2s;
}

.nav-cta:hover { background: var(--gold2) !important; color: var(--ink) !important; }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 60px 80px;
  position: relative;
  overflow: hidden;
}

/* Grid lines bg */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
}

.hero-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(220px, 28vw, 420px);
  color: rgba(255,255,255,0.03);
  line-height: 0.85;
  position: absolute;
  right: -20px;
  bottom: -20px;
  letter-spacing: -8px;
  user-select: none;
  pointer-events: none;
}

.hero-overline {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.2s forwards;
}

.hero-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(72px, 10vw, 148px);
  line-height: 0.92;
  letter-spacing: 2px;
  color: var(--white);
  max-width: 900px;
  opacity: 0;
  animation: fadeUp 0.9s ease 0.35s forwards;
}

.hero-headline em {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 300;
  color: var(--gold);
  letter-spacing: 0;
}

.hero-sub {
  margin-top: 32px;
  font-family: 'Barlow', sans-serif;
  font-size: 16px;
  font-weight: 300;
  color: var(--ash);
  max-width: 480px;
  line-height: 1.7;
  opacity: 0;
  animation: fadeUp 0.9s ease 0.5s forwards;
}

.hero-actions {
  margin-top: 44px;
  display: flex;
  gap: 20px;
  align-items: center;
  opacity: 0;
  animation: fadeUp 0.9s ease 0.65s forwards;
}

.btn-primary {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--ink);
  padding: 16px 36px;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s, transform 0.15s;
}

.btn-primary:hover { background: var(--gold2); transform: translateY(-1px); }

.btn-ghost {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--ash);
  text-decoration: none;
  border-bottom: 1px solid var(--iron);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}

.btn-ghost:hover { color: var(--gold); border-color: var(--gold); }

.hero-rule {
  position: absolute;
  bottom: 80px;
  right: 60px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-end;
  opacity: 0;
  animation: fadeIn 1s ease 1s forwards;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
}

.hero-stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 36px;
  color: var(--gold);
  line-height: 1;
}

.hero-stat-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--mid);
}

.hero-divider {
  width: 1px;
  height: 40px;
  background: var(--rule);
  align-self: flex-end;
}

/* ── SECTION SHARED ── */
section {
  position: relative;
}

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 60px;
}

.section-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.section-label::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--gold);
}

.section-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(48px, 6vw, 84px);
  line-height: 0.95;
  letter-spacing: 1px;
  color: var(--white);
}

.section-headline em {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 300;
  color: var(--gold);
}

/* ── MARQUEE STRIP ── */
.marquee-strip {
  background: var(--gold);
  padding: 14px 0;
  overflow: hidden;
  white-space: nowrap;
}

.marquee-track {
  display: inline-flex;
  animation: marquee 28s linear infinite;
}

.marquee-item {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--ink);
  padding: 0 40px;
}

.marquee-sep {
  color: rgba(13,13,13,0.3);
  padding: 0 4px;
}

/* ── PROBLEM ── */
.problem-section {
  background: var(--dark);
  border-top: 1px solid var(--iron);
  border-bottom: 1px solid var(--iron);
}

.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  margin-top: 64px;
  align-items: start;
}

.problem-intro {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 400;
  font-style: italic;
  color: var(--fog);
  line-height: 1.6;
  border-left: 2px solid var(--gold);
  padding-left: 28px;
}

.problem-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.problem-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 20px 0;
  border-bottom: 1px solid var(--steel);
}

.problem-item:first-child { border-top: 1px solid var(--steel); }

.problem-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 13px;
  color: var(--gold);
  opacity: 0.6;
  flex-shrink: 0;
  width: 28px;
  padding-top: 2px;
}

.problem-text {
  font-family: 'Barlow', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: var(--fog);
  line-height: 1.6;
}

.problem-text strong {
  color: var(--white);
  font-weight: 500;
}

/* ── HOW IT WORKS ── */
.how-section {
  background: var(--ink);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--steel);
  margin-top: 64px;
}

.step-card {
  background: var(--dark);
  padding: 44px 32px;
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
}

.step-card:hover { background: var(--coal); }

.step-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.step-card:hover::before { transform: scaleX(1); }

.step-big-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 72px;
  color: rgba(201,168,76,0.12);
  line-height: 1;
  position: absolute;
  top: 20px; right: 20px;
}

.step-icon {
  font-size: 28px;
  margin-bottom: 20px;
  display: block;
}

.step-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 12px;
}

.step-body {
  font-family: 'Barlow', sans-serif;
  font-size: 13px;
  font-weight: 300;
  color: var(--mid);
  line-height: 1.7;
}

/* ── WHAT YOU GET ── */
.offer-section {
  background: var(--coal);
  border-top: 1px solid var(--iron);
}

.offer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 100px;
  margin-top: 64px;
  align-items: start;
}

.offer-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.offer-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 22px 0;
  border-bottom: 1px solid var(--steel);
}

.offer-item:first-child { border-top: 1px solid var(--steel); }

.offer-check {
  width: 22px;
  height: 22px;
  border: 1px solid var(--gold);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}

.offer-check::after {
  content: '✓';
  font-size: 11px;
  color: var(--gold);
  font-weight: 700;
}

.offer-item-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--white);
  margin-bottom: 3px;
}

.offer-item-sub {
  font-family: 'Barlow', sans-serif;
  font-size: 12px;
  font-weight: 300;
  color: var(--mid);
  line-height: 1.5;
}

.offer-aside {
  position: sticky;
  top: 100px;
}

.offer-aside-block {
  background: var(--dark);
  border: 1px solid var(--iron);
  border-top: 3px solid var(--gold);
  padding: 40px 36px;
}

.aside-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.aside-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 40px;
  line-height: 1;
  color: var(--white);
  margin-bottom: 16px;
}

.aside-body {
  font-family: 'Barlow', sans-serif;
  font-size: 13px;
  font-weight: 300;
  color: var(--ash);
  line-height: 1.7;
  margin-bottom: 28px;
}

.aside-areas {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}

.area-tag {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--mid);
  border: 1px solid var(--iron);
  padding: 4px 10px;
}

/* ── ABOUT / WHY LOCAL ── */
.about-section {
  background: var(--dark);
  border-top: 1px solid var(--iron);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-top: 64px;
}

.about-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 400;
  color: var(--fog);
  line-height: 1.75;
}

.about-text strong {
  color: var(--gold);
  font-weight: 600;
}

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--steel);
  align-self: start;
}

.about-stat {
  background: var(--coal);
  padding: 32px 28px;
}

.about-stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 52px;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}

.about-stat-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--mid);
  line-height: 1.4;
}

/* ── CTA ── */
.cta-section {
  background: var(--gold);
  padding: 100px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: 'GRAND';
  font-family: 'Bebas Neue', sans-serif;
  font-size: 380px;
  color: rgba(0,0,0,0.06);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  letter-spacing: -8px;
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
}

.cta-inner {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto;
}

.cta-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: rgba(13,13,13,0.5);
  margin-bottom: 20px;
}

.cta-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(52px, 7vw, 96px);
  line-height: 0.9;
  color: var(--ink);
  margin-bottom: 24px;
}

.cta-sub {
  font-family: 'Barlow', sans-serif;
  font-size: 16px;
  font-weight: 300;
  color: rgba(13,13,13,0.65);
  line-height: 1.7;
  margin-bottom: 44px;
}

.cta-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
}

.btn-dark {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  background: var(--ink);
  color: var(--gold);
  padding: 16px 40px;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s;
}

.btn-dark:hover { background: var(--dark); }

.btn-light-ghost {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(13,13,13,0.6);
  text-decoration: none;
  border-bottom: 1px solid rgba(13,13,13,0.3);
  padding-bottom: 2px;
  transition: color 0.2s;
}

.cta-contact {
  margin-top: 48px;
  display: flex;
  gap: 40px;
  justify-content: center;
}

.cta-contact-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.cta-contact-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(13,13,13,0.45);
}

.cta-contact-value {
  font-family: 'Barlow', sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: var(--ink);
}

/* ── FOOTER ── */
footer {
  background: var(--ink);
  border-top: 1px solid var(--iron);
  padding: 40px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-brand {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--mid);
}

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

.footer-links { display: flex; gap: 24px; }

.footer-links a {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ash);
  text-decoration: none;
  transition: color 0.2s;
}

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

.footer-copy {
  font-family: 'Barlow', sans-serif;
  font-size: 11px;
  color: var(--mid);
}

.footer-area {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--mid);
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s ease, transform 0.8s 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; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  nav { padding: 20px 28px; }
  .nav-links { display: none; }
  .hero { padding: 0 28px 60px; }
  .section-inner { padding: 80px 28px; }
  .problem-grid,
  .offer-grid,
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .hero-rule { display: none; }
  .cta-section { padding: 80px 28px; }
  footer { flex-direction: column; gap: 12px; text-align: center; padding: 32px 28px; }
  .cta-contact { flex-direction: column; gap: 20px; }
  .cta-actions { flex-direction: column; }
}

/* ══════════════════════════════════════════════
   CATALOG SECTION
══════════════════════════════════════════════ */
.catalog-section { background: var(--ink); border-top: 1px solid var(--iron); }

.catalog-filter-bar {
  background: var(--dark); border-bottom: 1px solid var(--iron);
  padding: 0 60px; position: sticky; top: 64px; z-index: 90;
}
.catalog-filter-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; gap: 6px; align-items: center;
  overflow-x: auto; padding: 14px 0; scrollbar-width: none;
}
.catalog-filter-inner::-webkit-scrollbar { display: none; }
.filter-pill {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
  white-space: nowrap; padding: 7px 18px; border: 1px solid var(--iron);
  background: transparent; color: var(--mid); cursor: pointer; transition: all 0.2s; flex-shrink: 0;
}
.filter-pill:hover { border-color: var(--gold); color: var(--gold); }
.filter-pill.active { background: var(--gold); border-color: var(--gold); color: var(--ink); }

.catalog-grid-wrap { max-width: 1200px; margin: 0 auto; padding: 40px 60px 80px; }
.catalog-count-bar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 28px; }
.catalog-count { font-family: 'Barlow Condensed', sans-serif; font-size: 11px; font-weight: 500; letter-spacing: 3px; text-transform: uppercase; color: var(--mid); }
.catalog-count span { color: var(--gold); }

.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; }

.product-card { background: var(--coal); display: flex; flex-direction: column; overflow: hidden; position: relative; transition: background 0.25s; }
.product-card:hover { background: var(--steel); }
.product-card::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px; background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform 0.35s ease; }
.product-card:hover::after { transform: scaleX(1); }

.card-img-wrap { width: 100%; aspect-ratio: 1 / 1; overflow: hidden; background: var(--dark); position: relative; flex-shrink: 0; }
.card-img-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s ease; }
.product-card:hover .card-img-wrap img { transform: scale(1.05); }
.card-no-img { width: 100%; height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; }
.card-no-img-icon { font-size: 28px; opacity: 0.2; }
.card-no-img-label { font-family: 'Barlow Condensed', sans-serif; font-size: 8px; letter-spacing: 2px; text-transform: uppercase; color: var(--iron); }
.card-info { padding: 14px 16px 18px; flex: 1; display: flex; flex-direction: column; gap: 4px; }
.card-category { font-family: 'Barlow Condensed', sans-serif; font-size: 8.5px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: var(--gold); }
.card-name { font-family: 'Barlow Condensed', sans-serif; font-size: 14px; font-weight: 600; color: var(--white); line-height: 1.25; letter-spacing: 0.3px; }
.card-brand { font-size: 11px; font-weight: 300; color: var(--mid); margin-top: 2px; }

.skeleton-card { background: var(--coal); overflow: hidden; }
.skeleton-img { aspect-ratio: 1 / 1; background: linear-gradient(90deg, var(--steel) 25%, var(--iron) 50%, var(--steel) 75%); background-size: 200% 100%; animation: shimmer 1.4s infinite; }
.skeleton-info { padding: 14px 16px 18px; display: flex; flex-direction: column; gap: 8px; }
.skeleton-line { height: 9px; background: linear-gradient(90deg, var(--steel) 25%, var(--iron) 50%, var(--steel) 75%); background-size: 200% 100%; animation: shimmer 1.4s infinite; }
.skeleton-line.w-40 { width: 40%; }
.skeleton-line.w-75 { width: 75%; }
.skeleton-line.w-55 { width: 55%; }

.load-trigger { display: flex; justify-content: center; padding: 40px 0 0; }
.load-spinner { width: 28px; height: 28px; border: 2px solid var(--iron); border-top-color: var(--gold); border-radius: 50%; animation: spin 0.8s linear infinite; display: none; }
.load-spinner.visible { display: block; }

.state-message { grid-column: 1 / -1; padding: 80px 40px; text-align: center; }
.state-message-icon { font-size: 36px; margin-bottom: 12px; }
.state-message-title { font-family: 'Bebas Neue', sans-serif; font-size: 28px; color: var(--mid); margin-bottom: 6px; }
.state-message-sub { font-size: 13px; font-weight: 300; color: var(--mid); }

.cat-fade-in { opacity: 0; animation: fadeUp 0.45s ease forwards; }

@keyframes shimmer { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }
@keyframes spin    { to { transform: rotate(360deg); } }

@media (max-width: 1100px) { .product-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 900px)  {
  .catalog-filter-bar { padding: 0 24px; }
  .catalog-grid-wrap  { padding: 32px 24px 60px; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
}


/* ══════════════════════════════════════════════
   WHO WE SERVE SECTION
══════════════════════════════════════════════ */
.serve-section {
  background: var(--ink);
  border-top: 1px solid var(--iron);
}

/* Venue grid — 4 cols */
.venue-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--steel);
  margin-top: 64px;
}

.venue-card {
  background: var(--dark);
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
}
.venue-card:hover { background: var(--coal); }
.venue-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.venue-card:hover::after { transform: scaleX(1); }

.venue-icon {
  font-size: 26px;
  margin-bottom: 16px;
  display: block;
}

.venue-tag {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 8.5px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.venue-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--white);
  margin-bottom: 10px;
  text-transform: uppercase;
}

.venue-body {
  font-family: 'Barlow', sans-serif;
  font-size: 12px;
  font-weight: 300;
  color: var(--mid);
  line-height: 1.65;
}

/* Workforce moments table */
.moments-wrap {
  margin-top: 80px;
}

.moments-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 400;
  font-style: italic;
  color: var(--fog);
  line-height: 1.5;
  border-left: 2px solid var(--gold);
  padding-left: 28px;
  margin-bottom: 40px;
  max-width: 600px;
}

.moments-table {
  width: 100%;
  border-collapse: collapse;
}

.moments-table thead tr {
  border-bottom: 1px solid var(--iron);
}

.moments-table th {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  padding: 0 20px 14px 0;
  text-align: left;
}

.moments-table td {
  font-family: 'Barlow', sans-serif;
  font-size: 13px;
  font-weight: 300;
  color: var(--fog);
  padding: 18px 20px 18px 0;
  border-bottom: 1px solid var(--steel);
  vertical-align: top;
  line-height: 1.5;
}

.moments-table td:first-child {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.3px;
  white-space: nowrap;
}

.moments-table td strong { color: var(--gold); font-weight: 500; }

@media (max-width: 900px) {
  .venue-grid { grid-template-columns: 1fr 1fr; }
  .moments-table { display: none; }
}
@media (max-width: 560px) {
  .venue-grid { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════════
   SERVICES OVERVIEW
══════════════════════════════════════════════ */
.services-section { background: var(--coal); border-top: 1px solid var(--iron); }

.services-intro {
  margin-top: 16px; font-family: 'Barlow', sans-serif; font-size: 15px;
  font-weight: 300; color: var(--ash); max-width: 620px; line-height: 1.7;
}

.services-split {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2px;
  background: var(--steel); margin-top: 64px;
}

.service-panel {
  background: var(--dark); padding: 48px 44px;
  position: relative; overflow: hidden; transition: background 0.3s;
  display: flex; flex-direction: column;
}
.service-panel:hover { background: var(--coal); }
.service-panel::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform 0.4s ease;
}
.service-panel:hover::before { transform: scaleX(1); }

.service-kicker {
  font-family: 'Barlow Condensed', sans-serif; font-size: 9px; font-weight: 600;
  letter-spacing: 4px; text-transform: uppercase; color: var(--gold); margin-bottom: 14px;
}
.service-name {
  font-family: 'Bebas Neue', sans-serif; font-size: 46px; line-height: 0.95;
  color: var(--white); margin-bottom: 8px; letter-spacing: 1px;
}
.service-name em { font-family: 'Cormorant Garamond', serif; font-style: italic; font-weight: 300; color: var(--gold); letter-spacing: 0; }
.service-tag { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 19px; color: var(--fog); margin-bottom: 22px; }
.service-desc { font-family: 'Barlow', sans-serif; font-size: 13px; font-weight: 300; color: var(--mid); line-height: 1.75; margin-bottom: 24px; }
.service-price {
  font-family: 'Barlow Condensed', sans-serif; font-size: 12px; font-weight: 500;
  letter-spacing: 1.5px; text-transform: uppercase; color: var(--ash);
  border-top: 1px solid var(--steel); padding-top: 18px; margin-top: auto; margin-bottom: 22px;
}
.service-price strong { color: var(--gold); font-weight: 700; }
.service-link {
  font-family: 'Barlow Condensed', sans-serif; font-size: 11px; font-weight: 600;
  letter-spacing: 3px; text-transform: uppercase; color: var(--white); text-decoration: none;
  border-bottom: 1px solid var(--gold); padding-bottom: 3px; align-self: flex-start; transition: color 0.2s;
}
.service-link:hover { color: var(--gold); }

/* ══════════════════════════════════════════════
   SERVICE DETAIL (VENDING / COFFEE)
══════════════════════════════════════════════ */
.detail-section { border-top: 1px solid var(--iron); }
.detail-section.vending { background: var(--ink); }
.detail-section.coffee  { background: var(--dark); }

.detail-intro {
  margin-top: 16px; font-family: 'Barlow', sans-serif; font-size: 15px;
  font-weight: 300; color: var(--ash); max-width: 600px; line-height: 1.7;
}

.spec-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; background: var(--steel); margin-top: 64px; }
.spec-card { background: var(--coal); padding: 40px 36px; }
.spec-station {
  font-family: 'Barlow Condensed', sans-serif; font-size: 9px; font-weight: 600;
  letter-spacing: 4px; text-transform: uppercase; color: var(--gold); margin-bottom: 12px;
}
.spec-title { font-family: 'Bebas Neue', sans-serif; font-size: 36px; color: var(--white); line-height: 1; margin-bottom: 10px; letter-spacing: 1px; }
.spec-title em { font-family: 'Cormorant Garamond', serif; font-style: italic; font-weight: 300; color: var(--gold); letter-spacing: 0; }
.spec-lede { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 16px; color: var(--fog); margin-bottom: 22px; line-height: 1.5; }
.spec-feats { display: flex; flex-direction: column; }
.spec-feat {
  padding: 14px 0; border-bottom: 1px solid var(--steel);
  font-family: 'Barlow', sans-serif; font-size: 13px; font-weight: 300; color: var(--mid); line-height: 1.6;
}
.spec-feat:first-child { border-top: 1px solid var(--steel); }
.spec-feat strong { color: var(--white); font-weight: 500; }

.detail-lower { display: grid; grid-template-columns: 1.2fr 1fr; gap: 80px; margin-top: 72px; align-items: start; }

.numbers-block { background: var(--coal); border: 1px solid var(--iron); border-top: 3px solid var(--gold); padding: 36px 32px; }
.numbers-row { display: flex; justify-content: space-between; align-items: baseline; gap: 16px; padding: 15px 0; border-bottom: 1px solid var(--steel); }
.numbers-row:first-of-type { border-top: 1px solid var(--steel); }
.numbers-key { font-family: 'Barlow', sans-serif; font-size: 13px; font-weight: 300; color: var(--fog); }
.numbers-val { font-family: 'Bebas Neue', sans-serif; font-size: 26px; color: var(--gold); letter-spacing: 1px; line-height: 1; white-space: nowrap; }
.numbers-val.text { font-family: 'Barlow Condensed', sans-serif; font-size: 14px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; }
.numbers-note {
  font-family: 'Barlow Condensed', sans-serif; font-size: 10px; letter-spacing: 2px;
  text-transform: uppercase; color: var(--mid); margin-top: 18px; line-height: 1.7;
}
.brochure-link {
  display: inline-flex; align-items: center; gap: 9px; margin-top: 24px;
  font-family: 'Barlow Condensed', sans-serif; font-size: 11px; font-weight: 600;
  letter-spacing: 3px; text-transform: uppercase; color: var(--gold); text-decoration: none;
  border: 1px solid var(--iron); padding: 12px 20px; transition: all 0.2s;
}
.brochure-link:hover { border-color: var(--gold); background: rgba(201,168,76,0.08); }

/* ══════════════════════════════════════════════
   PLATFORM — GRAND VENDING OS
══════════════════════════════════════════════ */
.platform-section { background: var(--coal); border-top: 1px solid var(--iron); }

.platform-loop { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--steel); margin-top: 64px; }
.loop-card { background: var(--dark); padding: 44px 34px; position: relative; overflow: hidden; transition: background 0.3s; }
.loop-card:hover { background: var(--coal); }
.loop-step { font-family: 'Bebas Neue', sans-serif; font-size: 64px; color: rgba(201,168,76,0.12); line-height: 1; position: absolute; top: 18px; right: 22px; }
.loop-word { font-family: 'Bebas Neue', sans-serif; font-size: 32px; color: var(--gold); letter-spacing: 2px; margin-bottom: 14px; }
.loop-body { font-family: 'Barlow', sans-serif; font-size: 13px; font-weight: 300; color: var(--mid); line-height: 1.75; }

@media (max-width: 900px) {
  .services-split,
  .spec-grid,
  .detail-lower,
  .platform-loop { grid-template-columns: 1fr; }
  .detail-lower { gap: 48px; }
  .service-panel { padding: 40px 28px; }
}



/* ══════════════════════════════════════════════
   NAV — MOBILE TOGGLE
══════════════════════════════════════════════ */
.nav-brand { text-decoration: none; }

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--iron);
  padding: 9px 11px;
  cursor: pointer;
  line-height: 0;
}
.nav-toggle:hover { border-color: var(--gold); }
.nav-toggle-bar {
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--white);
  transition: background 0.2s;
}
.nav-toggle-bar + .nav-toggle-bar { margin-top: 5px; }
.nav-toggle:hover .nav-toggle-bar { background: var(--gold); }

/* ══════════════════════════════════════════════
   PAGE HERO — INTERIOR PAGES
══════════════════════════════════════════════ */
.page-hero {
  padding: 150px 60px 64px;
  border-bottom: 1px solid var(--iron);
  position: relative;
  overflow: hidden;
  background: var(--dark);
}

.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
}

.page-hero-inner { max-width: 1200px; margin: 0 auto; position: relative; z-index: 1; }

.page-hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(42px, 6vw, 76px);
  line-height: 0.98;
  letter-spacing: 1.5px;
  color: var(--white);
  max-width: 900px;
  margin-top: 14px;
}

.page-hero-title em {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 300;
  color: var(--gold);
  letter-spacing: 0;
}

.page-hero-sub {
  margin-top: 22px;
  font-family: 'Barlow', sans-serif;
  font-size: 16px;
  font-weight: 300;
  color: var(--ash);
  max-width: 640px;
  line-height: 1.75;
}

.page-hero-actions { margin-top: 34px; display: flex; gap: 18px; align-items: center; flex-wrap: wrap; }

/* ── BREADCRUMBS ── */
.crumbs {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 0 4px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--mid);
}
.crumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.crumbs a { color: var(--mid); text-decoration: none; transition: color 0.2s; }
.crumbs a:hover { color: var(--gold); }
.crumbs li + li::before { content: '/'; color: var(--mid); margin-right: 8px; }
.crumbs [aria-current='page'] { color: var(--gold); }

/* ══════════════════════════════════════════════
   OVERVIEW CARDS — HOMEPAGE SERVICE LINKS
══════════════════════════════════════════════ */
.services-split.three { grid-template-columns: repeat(3, 1fr); }

.link-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 40px; }

.link-tile {
  flex: 1 1 260px;
  background: var(--dark);
  border: 1px solid var(--iron);
  padding: 26px 28px;
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
}
.link-tile:hover { border-color: var(--gold); background: var(--coal); }
.link-tile-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 9px; font-weight: 600; letter-spacing: 3.5px;
  text-transform: uppercase; color: var(--gold);
}
.link-tile-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 26px; color: var(--white); letter-spacing: 1px; margin-top: 8px; line-height: 1.05;
}
.link-tile-body {
  font-family: 'Barlow', sans-serif; font-size: 13px; font-weight: 300;
  color: var(--mid); line-height: 1.7; margin-top: 10px;
}

/* ══════════════════════════════════════════════
   FAQ
══════════════════════════════════════════════ */
.faq-list { margin-top: 56px; max-width: 860px; }

.faq-item { border-bottom: 1px solid var(--steel); padding: 26px 0; }
.faq-item:first-child { border-top: 1px solid var(--steel); }

.faq-q {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 19px; font-weight: 600; letter-spacing: 0.5px;
  color: var(--white); line-height: 1.35;
}

.faq-a {
  font-family: 'Barlow', sans-serif; font-size: 14px; font-weight: 300;
  color: var(--mid); line-height: 1.8; margin-top: 12px;
}
.faq-a strong { color: var(--fog); font-weight: 500; }
.faq-a a { color: var(--gold); text-decoration: none; border-bottom: 1px solid var(--rule); }
.faq-a a:hover { border-color: var(--gold); }

/* ══════════════════════════════════════════════
   SERVICE AREA
══════════════════════════════════════════════ */
.area-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2px; background: var(--steel); margin-top: 56px; }
.area-col { background: var(--coal); padding: 36px 34px; }
.area-col-title {
  font-family: 'Bebas Neue', sans-serif; font-size: 28px; color: var(--white);
  letter-spacing: 1px; margin-bottom: 6px;
}
.area-col-sub {
  font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 15px;
  color: var(--ash); margin-bottom: 22px;
}
.area-list { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; }
.area-list li {
  font-family: 'Barlow Condensed', sans-serif; font-size: 11px; font-weight: 500;
  letter-spacing: 2px; text-transform: uppercase; color: var(--fog);
  border: 1px solid var(--iron); padding: 8px 14px;
}

/* ══════════════════════════════════════════════
   CONTACT
══════════════════════════════════════════════ */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; background: var(--steel); margin-top: 56px; }
.contact-card { background: var(--coal); padding: 38px 34px; }
.contact-card-label {
  font-family: 'Barlow Condensed', sans-serif; font-size: 9px; font-weight: 600;
  letter-spacing: 4px; text-transform: uppercase; color: var(--gold); margin-bottom: 12px;
}
.contact-card-value {
  font-family: 'Bebas Neue', sans-serif; font-size: 30px; color: var(--white);
  letter-spacing: 1px; line-height: 1.1; word-break: break-word;
}
.contact-card-value a { color: var(--white); text-decoration: none; transition: color 0.2s; }
.contact-card-value a:hover { color: var(--gold); }
.contact-card-sub {
  font-family: 'Barlow', sans-serif; font-size: 13px; font-weight: 300;
  color: var(--mid); line-height: 1.7; margin-top: 10px;
}

/* ══════════════════════════════════════════════
   FOOTER — NAV + NAP
══════════════════════════════════════════════ */
.site-footer {
  background: var(--ink);
  border-top: 1px solid var(--iron);
  padding: 56px 60px 40px;
}

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

.footer-top {
  display: grid;
  grid-template-columns: 1fr 2.5fr;
  gap: 56px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--steel);
}

.footer-nap-block .footer-brand { font-size: 13px; color: var(--white); margin-bottom: 18px; }

.footer-nap {
  font-family: 'Barlow', sans-serif;
  font-size: 13px;
  font-weight: 300;
  font-style: normal;
  color: var(--mid);
  line-height: 2;
}
.footer-nap a { color: var(--fog); text-decoration: none; transition: color 0.2s; }
.footer-nap a:hover { color: var(--gold); }
.footer-nap .nap-sep { color: var(--mid); padding: 0 4px; }

.footer-nav-groups { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }

.footer-nav-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 9px; font-weight: 600; letter-spacing: 3.5px;
  text-transform: uppercase; color: var(--gold); margin-bottom: 16px;
}

.footer-nav-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-nav-list a {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px; font-weight: 500; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--ash); text-decoration: none; transition: color 0.2s;
}
.footer-nav-list a:hover { color: var(--gold); }

.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  gap: 20px; flex-wrap: wrap; padding-top: 26px;
}

.footer-legal { display: flex; gap: 22px; }
.footer-legal a {
  font-family: 'Barlow Condensed', sans-serif; font-size: 11px; font-weight: 500;
  letter-spacing: 2px; text-transform: uppercase; color: var(--mid);
  text-decoration: none; transition: color 0.2s;
}
.footer-legal a:hover { color: var(--gold); }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 200;
  background: var(--gold);
  color: var(--ink);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 12px 20px;
}
.skip-link:focus { left: 12px; top: 12px; }

:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

/* ══════════════════════════════════════════════
   RESPONSIVE — NEW COMPONENTS
══════════════════════════════════════════════ */
@media (max-width: 900px) {
  .nav-toggle { display: block; }

  nav.open { background: var(--ink); flex-wrap: wrap; }
  nav.open .nav-links {
    display: flex;
    flex-direction: column;
    gap: 0;
    width: 100%;
    order: 3;
    margin-top: 18px;
    border-top: 1px solid var(--steel);
  }
  nav.open .nav-links li { border-bottom: 1px solid var(--steel); }
  nav.open .nav-links a { display: block; padding: 15px 2px; font-size: 12px; }
  nav.open .nav-links .nav-cta { display: inline-block; margin: 16px 0; padding: 12px 22px; }

  .page-hero { padding: 120px 28px 52px; }
  .services-split.three,
  .area-grid,
  .contact-grid,
  .footer-top,
  .footer-nav-groups { grid-template-columns: 1fr; }
  .footer-top { gap: 40px; }
  .site-footer { padding: 44px 28px 32px; }
  .footer-bottom { justify-content: flex-start; }
  .footer-nap { line-height: 2.1; }
}

@media (max-width: 560px) {
  .steps-grid { grid-template-columns: 1fr; }
  .footer-nav-groups { gap: 28px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .marquee-track { animation: none; }
  .hero-overline, .hero-headline, .hero-sub, .hero-actions { animation: none; opacity: 1; }
}

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ══════════════════════════════════════════════
   SERVICE-PAGE SECTION VARIANTS
══════════════════════════════════════════════ */

/* Tone alternation for the segment grid, matching .detail-section. */
.serve-section.coffee  { background: var(--dark); }
.serve-section.vending { background: var(--ink); }

/* Checklist with no numbers-block aside runs full width. */
.detail-lower.single { grid-template-columns: 1fr; }

/* Onward link inside a venue card. */
.venue-link {
  display: inline-block;
  margin-top: 16px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid var(--rule);
  padding-bottom: 3px;
  transition: border-color 0.2s;
}
.venue-link:hover { border-color: var(--gold); }

/* Inline links in body copy — same treatment as .faq-a a. */
.detail-intro a,
.venue-body a,
.step-body a,
.spec-feat a,
.offer-item-sub a {
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid var(--rule);
}
.detail-intro a:hover,
.venue-body a:hover,
.step-body a:hover,
.spec-feat a:hover,
.offer-item-sub a:hover { border-color: var(--gold); }

/* Stacked paragraphs inside a prose section. */
.detail-section .detail-intro + .detail-intro { margin-top: 18px; }

/* ── /faq — grouped questions ── */
.faq-groups { margin-top: 56px; max-width: 860px; }

.faq-group + .faq-group { margin-top: 64px; }

.faq-group-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 32px;
  color: var(--gold);
  letter-spacing: 1.5px;
  line-height: 1;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--rule);
}

.faq-group .faq-list { margin-top: 0; }
.faq-group .faq-item:first-child { border-top: none; }

/* ══════════════════════════════════════════════
   HEADER SUBMENU (SERVICE AREA → CITY PAGES)
══════════════════════════════════════════════ */
.nav-has-sub { position: relative; display: flex; align-items: center; gap: 7px; }

.nav-sub-caret {
  width: 0; height: 0;
  border-left: 3.5px solid transparent;
  border-right: 3.5px solid transparent;
  border-top: 4px solid var(--iron);
  transition: border-top-color 0.2s;
}
.nav-has-sub:hover .nav-sub-caret,
.nav-has-sub:focus-within .nav-sub-caret,
.nav-sub-current .nav-sub-caret { border-top-color: var(--gold); }

.nav-sub {
  position: absolute;
  top: 100%; left: -18px;
  z-index: 120;
  min-width: 214px;
  padding: 16px 0 10px;
  list-style: none;
  background: rgba(20, 20, 20, 0.98);
  border: 1px solid var(--steel);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
}
.nav-has-sub:hover > .nav-sub,
.nav-has-sub:focus-within > .nav-sub { opacity: 1; visibility: visible; transform: translateY(0); }

.nav-sub li + li { border-top: 1px solid rgba(42, 42, 42, 0.8); }
.nav-sub a { display: block; padding: 11px 20px; letter-spacing: 2px; color: var(--fog); }
.nav-sub a[aria-current='page'] { color: var(--gold); }

/* Seven top-level items need a tighter track on narrower desktops. */
@media (max-width: 1240px) { .nav-links { gap: 24px; } }
@media (max-width: 1060px) {
  .nav-links { gap: 15px; }
  .nav-links a { letter-spacing: 2px; }
  .nav-cta { padding: 8px 14px; }
}

/* ══════════════════════════════════════════════
   CITY LINK PILLS (SERVICE AREA BLOCKS)
══════════════════════════════════════════════ */
.city-link-list { margin-top: 40px; }
.city-link-list li { border: 0; padding: 0; }
.city-link-list li a {
  display: block;
  border: 1px solid var(--iron);
  padding: 9px 15px;
  color: var(--fog);
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.city-link-list li a:hover { border-color: var(--gold); color: var(--gold); background: var(--coal); }

@media (max-width: 1100px) { .footer-nav-groups { grid-template-columns: repeat(2, 1fr); } }

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

  /* Mobile drawer: the submenu is a nested, always-visible list. */
  nav.open .nav-has-sub { display: block; }
  nav.open .nav-sub {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    min-width: 0;
    background: none;
    border: 0;
    padding: 0 0 12px;
  }
  nav.open .nav-sub li,
  nav.open .nav-sub li + li { border: 0; }
  nav.open .nav-sub a {
    padding: 9px 0 9px 16px;
    font-size: 11px;
    color: var(--mid);
    border-left: 1px solid var(--steel);
  }
  nav.open .nav-sub-caret { display: none; }
}
