/* ═══════════════════════════════════════════
   Road Solutions Paving — Global Styles
   Editorial + premium · Gold + Carbon
   Tennessee paving identity
   ═══════════════════════════════════════════ */

/* ── CSS Variables ── */
:root {
  /* Carbon palette — slightly cool dark tone */
  --bg-page: #0C1113;
  --bg-surface: #10171A;
  --bg-card: #141C20;
  --bg-elevated: #1B252A;
  --bg-raised: #243036;
  --bg-line: rgba(255, 255, 255, 0.06);
  --bg-line-strong: rgba(232, 188, 64, 0.22);

  /* Gold accent */
  --gold: #E8BC40;
  --gold-bright: #F2CC5E;
  --gold-warm: #C49A2A;
  --gold-deep: #8E6D17;
  --gold-glow: rgba(232, 188, 64, 0.10);
  --gold-haze: rgba(232, 188, 64, 0.20);

  /* Text */
  --text: #FFFFFF;
  --text-soft: #E6E9EB;
  --text-muted: #B6BEC2;
  --text-dim: #7E878C;

  /* Layout */
  --max-w: 1440px;
  --gutter: 1.5rem;

  /* Easings */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-snappy: cubic-bezier(0.2, 0.85, 0.2, 1);
  --ease-fluid: cubic-bezier(0.32, 0.72, 0, 1);

  /* Shadows */
  --shadow-sm: 0 1px 4px rgba(0, 0, 0, 0.5);
  --shadow-md: 0 16px 38px rgba(0, 0, 0, 0.55);
  --shadow-lg: 0 36px 70px rgba(0, 0, 0, 0.65);
  --shadow-gold: 0 14px 38px -12px rgba(232, 188, 64, 0.45);

  /* Radii — soft but architectural */
  --radius-xs: 2px;
  --radius-sm: 4px;
  --radius: 8px;
  --radius-lg: 14px;
}

/* ── Reset ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: 'Manrope', system-ui, sans-serif;
  font-size: 16px;
  background: var(--bg-page);
  color: var(--text-soft);
  overflow-x: hidden;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font: inherit; color: inherit; }
ul, ol { list-style: none; }

/* Selection + scrollbar */
::selection { background: var(--gold); color: #0C1113; }
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: #07090A; }
::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 0;
  border: 3px solid #07090A;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal, .reveal-left, .reveal-right, .reveal-scale, .reveal-up, .reveal-mask, .reveal-stack, .reveal-word { opacity: 1 !important; transform: none !important; clip-path: none !important; }
  .marquee-track { animation: none !important; }
  html { scroll-behavior: auto; }
}

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

/* ── Subtle film grain + atmospheric overlay ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9998;
  pointer-events: none;
  opacity: 0.06;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 480 480' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.78' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.85 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 240px 240px;
}
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9997;
  pointer-events: none;
  background-image: radial-gradient(circle at 80% -10%, rgba(232, 188, 64, 0.05), transparent 55%);
}

/* ═══════════════════════════════════════════
   TYPOGRAPHY
   Display: Anton (taller, sharper, editorial)
   Body: Manrope (refined, modern)
   Accent: italics use Fraunces serif
   ═══════════════════════════════════════════ */

h1, h2, h3, h4, h5 {
  font-family: 'Anton', 'Archivo Narrow', system-ui, sans-serif;
  font-weight: 400;
  color: var(--text);
  line-height: 1.02;
  letter-spacing: 0.005em;
  text-transform: uppercase;
}

.serif { font-family: 'Fraunces', 'Cormorant Garamond', Georgia, serif; font-style: italic; font-weight: 300; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  font-family: 'Manrope', sans-serif;
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--gold);
}
.eyebrow.eyebrow--center { justify-content: center; }
.eyebrow.eyebrow--center::before, .eyebrow.eyebrow--center::after {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--gold);
}
.eyebrow.eyebrow--center::after { display: inline-block; }

.section-title {
  font-family: 'Anton', sans-serif;
  font-size: clamp(2.1rem, 5.2vw, 4.1rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: 0.005em;
  color: var(--text);
  text-transform: uppercase;
}
.section-title em {
  font-family: 'Anton', sans-serif;
  font-style: normal;
  font-weight: 400;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.005em;
  display: inline-block;
  transform: skewX(-9deg);
  text-shadow:
    2px 3px 0 #07090A,
    0 0 22px rgba(232, 188, 64, 0.28);
  padding: 0 0.08em;
  font-size: 1em;
  line-height: inherit;
}
.section-title--compact {
  font-size: clamp(1.7rem, 3.8vw, 2.7rem);
  line-height: 1.1;
}
.section-intro {
  color: var(--text-muted);
  font-size: 1.08rem;
  line-height: 1.72;
  max-width: 62ch;
  font-family: 'Manrope', sans-serif;
}

/* ═══════════════════════════════════════════
   LAYOUT
   ═══════════════════════════════════════════ */

.section-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.25rem;
}
@media (min-width: 768px) { .section-inner { padding: 0 2rem; } }
@media (min-width: 1200px) { .section-inner { padding: 0 3.5rem; } }

.section-pad {
  padding-top: 5.5rem;
  padding-bottom: 5.5rem;
  position: relative;
}
@media (min-width: 768px) { .section-pad { padding-top: 8rem; padding-bottom: 8rem; } }

.section-alt {
  background: var(--bg-surface);
  position: relative;
}
.section-alt::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(180deg, rgba(232, 188, 64, 0.025) 0%, transparent 25%);
  pointer-events: none;
}

.section-deep {
  background: #07090A;
  position: relative;
}

.split-2col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
}
@media (min-width: 900px) {
  .split-2col {
    grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
    gap: 4rem;
  }
}
.split-2col--reverse > *:first-child { order: 2; }
@media (min-width: 900px) {
  .split-2col--reverse > *:first-child { order: 0; }
}

/* ═══════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════ */

.btn-primary,
.btn-ghost,
.btn-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  font-family: 'Manrope', sans-serif;
  font-size: 0.84rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  border-radius: 0;
  position: relative;
  white-space: nowrap;
  transition: transform 0.4s var(--ease-fluid), box-shadow 0.3s ease, background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.btn-primary {
  background: var(--gold);
  color: #0C1113;
  padding: 1.05rem 2.15rem;
  overflow: hidden;
  isolation: isolate;
}
.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, transparent 25%, rgba(255,255,255,0.45) 50%, transparent 75%);
  transform: translateX(-130%);
  transition: transform 0.7s var(--ease-fluid);
  pointer-events: none;
  z-index: -1;
}
.btn-primary:hover {
  background: var(--gold-bright);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}
.btn-primary:hover::after { transform: translateX(130%); }
.btn-primary:active { transform: translateY(0); }

.btn-ghost {
  border: 1.5px solid rgba(255, 255, 255, 0.22);
  color: var(--text);
  padding: 1.05rem 2.15rem;
  background: transparent;
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
  background: rgba(232, 188, 64, 0.04);
}
.btn-ghost:active { transform: translateY(0); }

.btn-link {
  color: var(--gold);
  padding: 0.45rem 0;
  border-bottom: 1px solid rgba(232, 188, 64, 0.4);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
}
.btn-link:hover { color: var(--gold-bright); gap: 1.1rem; border-color: var(--gold); }

.btn-arrow-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 14px;
  height: 14px;
  transition: transform 0.35s var(--ease);
}
.btn-primary:hover .btn-arrow-icon,
.btn-ghost:hover .btn-arrow-icon,
.btn-link:hover .btn-arrow-icon {
  transform: translateX(4px);
}

/* Skip link */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  padding: 0.5rem 1rem;
  background: var(--gold);
  color: #0C1113;
  font-weight: 800;
}
.skip-link:focus { left: 0; }

/* Scroll progress bar */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 0%;
  background: var(--gold);
  z-index: 100;
  transition: width 0.1s linear;
  box-shadow: 0 0 14px rgba(232, 188, 64, 0.7);
}

/* ═══════════════════════════════════════════
   TOP BAR (utility row above header — phone, hours)
   ═══════════════════════════════════════════ */
.top-bar {
  background: #07090A;
  border-bottom: 1px solid rgba(232, 188, 64, 0.12);
  font-family: 'Manrope', sans-serif;
  font-size: 0.78rem;
  position: relative;
  z-index: 60;
}
.top-bar-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0.55rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
@media (min-width: 768px) { .top-bar-inner { padding: 0.6rem 2rem; } }
@media (min-width: 1200px) { .top-bar-inner { padding: 0.7rem 3.5rem; } }
.top-bar-left {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  color: var(--text-muted);
}
.top-bar-meta {
  display: none;
  align-items: center;
  gap: 0.45rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.7rem;
  font-weight: 700;
}
.top-bar-meta svg { color: var(--gold); }
@media (min-width: 720px) { .top-bar-meta { display: inline-flex; } }
.top-bar-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.top-bar-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.7rem;
  color: var(--text);
  transition: color 0.2s ease;
}
.top-bar-link:hover { color: var(--gold); }
.top-bar-link svg { color: var(--gold); }
.top-bar-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--gold);
  color: #0C1113;
  padding: 0.5rem 1rem;
  font-weight: 800;
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: background 0.2s;
}
.top-bar-cta:hover { background: var(--gold-bright); }

/* ═══════════════════════════════════════════
   HEADER + NAV (with multi-category dropdowns)
   ═══════════════════════════════════════════ */

.site-header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(12, 17, 19, 0.78);
  backdrop-filter: blur(18px) saturate(1.3);
  -webkit-backdrop-filter: blur(18px) saturate(1.3);
  border-bottom: 1px solid rgba(232, 188, 64, 0.12);
  transition: background 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease, transform 0.5s var(--ease);
}
.site-header.is-scrolled {
  background: rgba(7, 9, 10, 0.92);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}
.site-header.nav-open {
  z-index: 2147483000 !important;
  background: transparent !important;
  border-bottom: none !important;
  box-shadow: none !important;
  transform: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0.85rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}
@media (min-width: 768px) { .header-inner { padding: 1rem 2rem; } }
@media (min-width: 1200px) { .header-inner { padding: 1.1rem 3.5rem; } }

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  flex-shrink: 0;
}
.brand-logo {
  height: 56px;
  width: auto;
  transition: height 0.35s var(--ease), transform 0.5s var(--ease-fluid), filter 0.35s ease;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.5));
}
@media (min-width: 768px) { .brand-logo { height: 68px; } }
@media (min-width: 1024px) { .brand-logo { height: 76px; } }
.is-scrolled .brand-logo { height: 50px; }
@media (min-width: 768px) { .is-scrolled .brand-logo { height: 58px; } }
.brand:hover .brand-logo {
  transform: rotate(-2deg) scale(1.04);
  filter: drop-shadow(0 4px 16px rgba(232, 188, 64, 0.4));
}
.brand-text {
  display: none;
  flex-direction: column;
  line-height: 1;
  font-family: 'Anton', sans-serif;
  text-transform: uppercase;
}
@media (min-width: 1280px) { .brand-text { display: inline-flex; } }
.brand-text-line1 {
  font-size: 1.2rem;
  letter-spacing: 0.05em;
  color: var(--text);
}
.brand-text-line2 {
  font-size: 0.7rem;
  letter-spacing: 0.32em;
  color: var(--gold);
  margin-top: 0.25rem;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
}

/* Hamburger */
.nav-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--text);
  font-family: 'Manrope', sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.22em;
}
.nav-toggle-bars {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 22px;
}
.nav-toggle-bar {
  height: 2px;
  width: 22px;
  background: var(--gold);
  transition: all 0.3s var(--ease);
}
@media (min-width: 1100px) { .nav-toggle { display: none; } }

/* Nav menu */
.nav-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--bg-surface);
  z-index: 2147483000;
  flex-direction: column;
  padding: 5rem 1.5rem calc(2rem + env(safe-area-inset-bottom, 0px));
  gap: 0;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}
.nav-menu::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    -45deg,
    transparent 0,
    transparent 60px,
    rgba(232, 188, 64, 0.025) 60px,
    rgba(232, 188, 64, 0.025) 120px
  );
  pointer-events: none;
}
.nav-menu.is-open { display: flex; }

@media (min-width: 1100px) {
  .nav-menu {
    display: flex !important;
    position: static;
    inset: auto;
    width: auto;
    height: auto;
    background: none;
    flex-direction: row;
    align-items: center;
    padding: 0;
    overflow: visible;
    z-index: auto;
  }
  .nav-menu::before { display: none; }
}

.nav-close {
  position: absolute;
  top: 1.2rem;
  right: 1.25rem;
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  border: 1px solid rgba(232, 188, 64, 0.32);
  font-size: 1.7rem;
  line-height: 1;
}
@media (min-width: 1100px) { .nav-close { display: none; } }

.nav-list {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 0;
}
@media (min-width: 1100px) {
  .nav-list { flex-direction: row; align-items: center; }
}

.nav-item {
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
@media (min-width: 1100px) { .nav-item { border-bottom: none; } }

.nav-link,
.nav-trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 1rem 0;
  width: 100%;
  font-family: 'Manrope', sans-serif;
  font-size: 0.96rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--text);
  transition: color 0.2s ease;
  position: relative;
}
@media (min-width: 1100px) {
  .nav-link, .nav-trigger {
    padding: 1.6rem 0.9rem;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    width: auto;
  }
}
.nav-link::after,
.nav-trigger::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.4s var(--ease);
}
@media (min-width: 1100px) {
  .nav-link::after, .nav-trigger::after {
    left: 0.9rem;
    right: 0.9rem;
    bottom: 18px;
  }
}
.nav-link:hover, .nav-trigger:hover { color: var(--gold); }
.nav-link:hover::after, .nav-item:hover .nav-trigger::after, .nav-item.is-open .nav-trigger::after {
  transform: scaleX(1);
}
.nav-trigger { justify-content: space-between; }
@media (min-width: 1100px) { .nav-trigger { justify-content: flex-start; } }
.nav-chevron {
  width: 12px;
  height: 12px;
  transition: transform 0.3s var(--ease);
}
.nav-item.is-open .nav-chevron,
.nav-item:hover .nav-chevron { transform: rotate(180deg); }

/* Dropdown panels */
.nav-panel {
  display: none;
  padding: 0.5rem 0 1rem 1rem;
}
.nav-item.is-open > .nav-panel { display: block; }

@media (min-width: 1100px) {
  .nav-item:hover > .nav-panel,
  .nav-item.is-open > .nav-panel {
    display: block;
    animation: ddIn 0.25s var(--ease);
  }
  .nav-panel {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--bg-elevated);
    border: 1px solid var(--bg-line);
    border-top: 2px solid var(--gold);
    padding: 1.2rem;
    min-width: 280px;
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.6);
    z-index: 70;
  }
  /* Wide multi-column panel for Services */
  .nav-panel--wide {
    min-width: 720px;
    padding: 1.4rem;
  }
  .nav-panel--areas {
    min-width: 520px;
    padding: 1.4rem;
  }
}
@keyframes ddIn {
  from { opacity: 0; transform: translate(-50%, -8px); }
  to { opacity: 1; transform: translate(-50%, 0); }
}
@media (max-width: 1099px) {
  .nav-panel { background: rgba(255, 255, 255, 0.02); border-left: 2px solid var(--gold); padding-left: 1rem; padding-right: 0.5rem; }
}

/* Multi-column dropdown for services */
.nav-categories {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 1100px) { .nav-categories { grid-template-columns: repeat(3, 1fr); } }
.nav-category-title {
  font-family: 'Anton', sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1px solid rgba(232, 188, 64, 0.2);
  padding-bottom: 0.5rem;
  margin-bottom: 0.65rem;
}
.nav-category-list { display: flex; flex-direction: column; gap: 0.1rem; }
.nav-category-list a {
  display: block;
  padding: 0.55rem 0.65rem;
  font-family: 'Manrope', sans-serif;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-soft);
  letter-spacing: 0;
  text-transform: none;
  border-bottom: none;
  transition: color 0.18s ease, background 0.18s ease, padding-left 0.18s ease;
}
.nav-category-list a::after { display: none; }
.nav-category-list a:hover {
  color: var(--gold);
  background: var(--gold-glow);
  padding-left: 1rem;
}

/* Service area dropdown — TN & GA columns */
.nav-areas-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 1100px) { .nav-areas-grid { grid-template-columns: 1fr 1fr; } }
.nav-areas-column-title {
  font-family: 'Anton', sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1px solid rgba(232, 188, 64, 0.2);
  padding-bottom: 0.5rem;
  margin-bottom: 0.65rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.nav-areas-column-title svg { width: 14px; height: 14px; }
.nav-areas-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.nav-areas-list a {
  display: block;
  padding: 0.4rem 0.5rem;
  font-size: 0.85rem;
  color: var(--text-soft);
  font-weight: 500;
  border-bottom: none;
  transition: color 0.18s ease, background 0.18s ease;
  letter-spacing: 0;
  text-transform: none;
}
.nav-areas-list a::after { display: none; }
.nav-areas-list a:hover { color: var(--gold); background: var(--gold-glow); }
.nav-panel-footer {
  margin-top: 0.85rem;
  padding-top: 0.85rem;
  border-top: 1px solid var(--bg-line);
  text-align: right;
}
.nav-panel-footer a {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--gold) !important;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.74rem;
  border-bottom: none !important;
}
.nav-panel-footer a::after { display: none !important; }

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  margin-top: 1.5rem;
  background: var(--gold);
  color: #0C1113 !important;
  padding: 0.85rem 1.4rem;
  font-family: 'Manrope', sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  border-bottom: none !important;
  transition: background 0.2s, transform 0.3s var(--ease);
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--gold-bright); transform: translateY(-1px); }
@media (min-width: 1100px) {
  .nav-cta { margin-top: 0; margin-left: 0.5rem; padding: 0.75rem 1.3rem; }
}

/* Nav backdrop */
.nav-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.78);
  z-index: 2147482999;
}
.nav-backdrop:not([hidden]) { display: block; }

/* ═══════════════════════════════════════════
   YELLOW HAZARD STRIPE — divider
   ═══════════════════════════════════════════ */
.hazard-stripe {
  height: 14px;
  background-image: repeating-linear-gradient(
    -45deg,
    var(--gold) 0,
    var(--gold) 18px,
    #0C1113 18px,
    #0C1113 36px
  );
  position: relative;
  z-index: 2;
}

.dashed-line {
  height: 2px;
  background-image: repeating-linear-gradient(
    90deg,
    var(--gold) 0,
    var(--gold) 22px,
    transparent 22px,
    transparent 38px
  );
  width: 100%;
}

/* ═══════════════════════════════════════════
   FORMS
   ═══════════════════════════════════════════ */
.form-row-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
@media (max-width: 520px) { .form-row-2col { grid-template-columns: 1fr; } }
.form-group { margin-bottom: 1.1rem; }
.form-label {
  display: block;
  color: var(--text-soft);
  font-family: 'Manrope', sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  margin-bottom: 0.5rem;
}
.form-input {
  width: 100%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text);
  padding: 0.95rem 1.1rem;
  font-family: 'Manrope', sans-serif;
  font-size: 16px;
  border-radius: 0;
  transition: border-color 0.25s ease, background 0.25s ease;
}
.form-input:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(232, 188, 64, 0.04);
}
.form-input::placeholder { color: var(--text-dim); }
textarea.form-input { resize: vertical; min-height: 130px; line-height: 1.55; }
select.form-input { appearance: none; background-image: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23E8BC40' stroke-width='2.5'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem; }

/* ═══════════════════════════════════════════
   REVEAL ANIMATIONS
   ═══════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.95s var(--ease), transform 0.95s var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
}
.reveal-up.visible { opacity: 1; transform: translateY(0); }
.reveal-left {
  opacity: 0;
  transform: translateX(-46px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right {
  opacity: 0;
  transform: translateX(46px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }
.reveal-scale {
  opacity: 0;
  transform: scale(0.94);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal-scale.visible { opacity: 1; transform: scale(1); }
.reveal-mask {
  opacity: 0;
  clip-path: inset(0 100% 0 0);
  transition: opacity 1.1s var(--ease), clip-path 1.1s var(--ease);
}
.reveal-mask.visible { opacity: 1; clip-path: inset(0 0 0 0); }

.reveal-stagger > *:nth-child(1) { transition-delay: 0s; }
.reveal-stagger > *:nth-child(2) { transition-delay: 0.07s; }
.reveal-stagger > *:nth-child(3) { transition-delay: 0.14s; }
.reveal-stagger > *:nth-child(4) { transition-delay: 0.21s; }
.reveal-stagger > *:nth-child(5) { transition-delay: 0.28s; }
.reveal-stagger > *:nth-child(6) { transition-delay: 0.35s; }
.reveal-stagger > *:nth-child(7) { transition-delay: 0.42s; }
.reveal-stagger > *:nth-child(8) { transition-delay: 0.49s; }
.reveal-stagger > *:nth-child(9) { transition-delay: 0.56s; }
.reveal-stagger > *:nth-child(10) { transition-delay: 0.63s; }
.reveal-stagger > *:hover,
.reveal-stagger > *:focus-within {
  transition-delay: 0s;
}

/* ═══════════════════════════════════════════
   CAT PANELS — Service cards w/ background image
   Used on home + services overview
   ═══════════════════════════════════════════ */
.cat-panels {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 3rem;
}
@media (min-width: 600px) {
  .cat-panels { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .cat-panels {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.4rem;
  }
}
@media (min-width: 1500px) {
  .cat-panels {
    grid-template-columns: repeat(5, 1fr);
    gap: 1.4rem;
  }
}

.cat-panel {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--bg-line);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 360px;
  transition: transform 0.5s var(--ease-fluid), border-color 0.4s, box-shadow 0.4s;
}
.cat-panel:hover {
  transform: translateY(-6px);
  border-color: rgba(232, 188, 64, 0.3);
  box-shadow: var(--shadow-lg), var(--shadow-gold);
}
.cat-panel-img {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.cat-panel-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.4) grayscale(0.4) contrast(1.1);
  transition: transform 0.8s var(--ease), filter 0.8s ease;
}
.cat-panel:hover .cat-panel-img img {
  transform: scale(1.08);
  filter: brightness(0.5) grayscale(0.2) contrast(1.15);
}
.cat-panel-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(7, 9, 10, 0.92) 100%);
}
.cat-panel-body {
  position: relative;
  z-index: 1;
  margin-top: auto;
  padding: 1.5rem;
  color: var(--text);
}
.cat-panel-title {
  font-family: 'Anton', sans-serif;
  font-size: 1.55rem;
  text-transform: uppercase;
  letter-spacing: 0.025em;
  color: var(--text);
  margin-bottom: 0.85rem;
  line-height: 1.05;
}
.cat-panel-desc {
  font-family: 'Manrope', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-soft);
  margin-bottom: 1.25rem;
  line-height: 1.6;
}
.cat-panel-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--gold);
  font-family: 'Manrope', sans-serif;
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(232, 188, 64, 0.4);
  transition: gap 0.3s, border-color 0.3s, color 0.3s;
}
.cat-panel:hover .cat-panel-link {
  gap: 0.85rem;
  color: var(--gold-bright);
  border-color: var(--gold);
}

/* ═══════════════════════════════════════════
   SERVICE CARDS — bigger, editorial, asymmetric
   ═══════════════════════════════════════════ */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 700px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .services-grid { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; } }

.service-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--bg-line);
  border-radius: 0;
  overflow: hidden;
  transition: transform 0.5s var(--ease-fluid), border-color 0.4s ease, box-shadow 0.4s ease;
  isolation: isolate;
  display: flex;
  flex-direction: column;
}
.service-card::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 0;
  height: 3px;
  background: var(--gold);
  transition: width 0.55s var(--ease-fluid);
  z-index: 3;
}
.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(232, 188, 64, 0.32);
  box-shadow: var(--shadow-lg), var(--shadow-gold);
}
.service-card:hover::after { width: 100%; }

.service-card-img {
  aspect-ratio: 5/3.2;
  overflow: hidden;
  position: relative;
}
.service-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(12, 17, 19, 0.85) 100%);
  z-index: 1;
  pointer-events: none;
}
.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
  filter: brightness(0.85) contrast(1.1) saturate(0.85);
}
.service-card:hover .service-card-img img {
  transform: scale(1.07);
  filter: brightness(0.95) contrast(1.12) saturate(1);
}
.service-card-cat {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(12, 17, 19, 0.85);
  color: var(--gold);
  border: 1px solid rgba(232, 188, 64, 0.35);
  padding: 0.35rem 0.75rem;
  font-family: 'Manrope', sans-serif;
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  z-index: 2;
}
.service-card-body {
  padding: 1.6rem 1.5rem 1.7rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.service-card-title {
  font-family: 'Anton', sans-serif;
  font-size: 1.7rem;
  letter-spacing: 0.02em;
  color: var(--text);
  margin-bottom: 0.6rem;
  text-transform: uppercase;
  line-height: 1;
}
.service-card-title a { color: inherit; transition: color 0.2s ease; }
.service-card-title a:hover { color: var(--gold); }
.service-card-desc {
  color: var(--text-muted);
  font-size: 0.96rem;
  line-height: 1.65;
  margin-bottom: 1.4rem;
  flex: 1;
}
.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gold);
  font-family: 'Manrope', sans-serif;
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(232, 188, 64, 0.32);
  transition: gap 0.3s ease, border-color 0.3s ease, color 0.3s ease;
  align-self: flex-start;
}
.service-card:hover .service-card-link {
  gap: 0.85rem;
  border-color: var(--gold);
  color: var(--gold-bright);
}

/* ═══════════════════════════════════════════
   FEATURE/TRUST CARDS
   ═══════════════════════════════════════════ */
.feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 768px) { .feature-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .feature-grid { grid-template-columns: repeat(4, 1fr); } }

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--bg-line);
  padding: 2rem 1.75rem;
  position: relative;
  transition: transform 0.4s var(--ease-fluid), border-color 0.3s ease, background 0.3s ease;
  overflow: hidden;
}
.feature-card::before {
  content: attr(data-num);
  position: absolute;
  top: -1.4rem;
  right: -0.5rem;
  font-family: 'Anton', sans-serif;
  font-size: 8.5rem;
  line-height: 1;
  color: rgba(232, 188, 64, 0.06);
  letter-spacing: -0.02em;
  pointer-events: none;
}
.feature-card::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--gold);
  transform: scaleY(0);
  transform-origin: top center;
  transition: transform 0.5s var(--ease-fluid);
}
.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(232, 188, 64, 0.28);
  background: var(--bg-elevated);
}
.feature-card:hover::after { transform: scaleY(1); }
.feature-icon {
  width: 48px;
  height: 48px;
  background: var(--gold-glow);
  border: 1px solid rgba(232, 188, 64, 0.25);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-bottom: 1.4rem;
  position: relative;
  z-index: 1;
}
.feature-title {
  font-family: 'Anton', sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0.02em;
  color: var(--text);
  margin-bottom: 0.6rem;
  text-transform: uppercase;
  line-height: 1.05;
  position: relative;
  z-index: 1;
}
.feature-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

/* ═══════════════════════════════════════════
   FAQ ACCORDION
   ═══════════════════════════════════════════ */
.faq-list { display: flex; flex-direction: column; gap: 0.6rem; }
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--bg-line);
  overflow: hidden;
  transition: border-color 0.25s ease, background 0.3s ease;
  position: relative;
}
.faq-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--gold);
  transform: scaleY(0);
  transform-origin: top center;
  transition: transform 0.45s var(--ease-fluid);
}
.faq-item:hover, .faq-item.is-open {
  border-color: rgba(232, 188, 64, 0.28);
  background: var(--bg-elevated);
}
.faq-item.is-open::before, .faq-item:hover::before { transform: scaleY(1); }
.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.4rem 1.6rem;
  color: var(--text);
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  text-align: left;
  font-size: 1.02rem;
  transition: color 0.2s ease;
}
.faq-trigger:hover { color: var(--gold); }
.faq-trigger-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: var(--gold);
  transition: transform 0.4s var(--ease);
}
.faq-item.is-open .faq-trigger-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease);
}
.faq-answer-inner {
  padding: 0 1.6rem 1.4rem;
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.75;
}

/* ═══════════════════════════════════════════
   GALLERY GRID
   ═══════════════════════════════════════════ */
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}
@media (min-width: 640px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; } }
@media (min-width: 1024px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); gap: 1.25rem; } }

.gallery-item {
  border-radius: 0;
  overflow: hidden;
  aspect-ratio: 4/3;
  position: relative;
  border: 1px solid var(--bg-line);
  transition: transform 0.5s var(--ease-fluid), border-color 0.4s ease, box-shadow 0.4s ease;
  cursor: zoom-in;
}
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(12, 17, 19, 0.7) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
  filter: brightness(0.86) contrast(1.05) saturate(0.85);
}
.gallery-item:hover {
  transform: translateY(-4px);
  border-color: rgba(232, 188, 64, 0.4);
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(232, 188, 64, 0.3);
}
.gallery-item:hover img { transform: scale(1.07); filter: brightness(1) contrast(1.1) saturate(1); }
.gallery-item:hover::after { opacity: 1; }

/* ═══════════════════════════════════════════
   MARQUEE TICKER
   ═══════════════════════════════════════════ */
.marquee {
  overflow: hidden;
  background: #07090A;
  border-top: 1px solid rgba(232, 188, 64, 0.2);
  border-bottom: 1px solid rgba(232, 188, 64, 0.2);
  padding: 1.1rem 0;
  position: relative;
}
.marquee-track {
  display: flex;
  gap: 3.5rem;
  width: max-content;
  animation: marqueeScroll 56s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }
@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 1.1rem;
  white-space: nowrap;
  flex-shrink: 0;
  font-family: 'Anton', sans-serif;
  font-size: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text);
}
.marquee-dot {
  width: 8px;
  height: 8px;
  background: var(--gold);
  transform: rotate(45deg);
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════
   CONTACT SECTION
   ═══════════════════════════════════════════ */
.contact-section {
  background: var(--bg-surface);
  position: relative;
}
.contact-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    0deg,
    transparent 0,
    transparent 80px,
    rgba(232, 188, 64, 0.025) 80px,
    rgba(232, 188, 64, 0.025) 81px
  );
  pointer-events: none;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  position: relative;
}
@media (min-width: 900px) {
  .contact-grid { grid-template-columns: 5fr 7fr; gap: 4rem; }
}
.contact-info-cards { display: flex; flex-direction: column; gap: 1rem; }
.contact-info-card {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  padding: 1.35rem;
  background: var(--bg-card);
  border: 1px solid var(--bg-line);
  border-left: 3px solid var(--gold);
  transition: transform 0.3s var(--ease-fluid), background 0.3s ease;
}
.contact-info-card:hover { transform: translateX(4px); background: var(--bg-elevated); }
.contact-info-icon {
  width: 48px;
  height: 48px;
  background: var(--gold-glow);
  border: 1px solid rgba(232, 188, 64, 0.25);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}
.contact-info-card-label {
  color: var(--text-dim);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-weight: 800;
  margin-bottom: 0.2rem;
}
.contact-info-card-value {
  color: var(--text);
  font-size: 1.05rem;
  font-weight: 700;
}
.contact-form-wrap {
  background: var(--bg-card);
  border: 1px solid var(--bg-line);
  padding: 1.75rem;
  position: relative;
}
.contact-form-wrap::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 50px;
  height: 3px;
  background: var(--gold);
}
@media (min-width: 768px) { .contact-form-wrap { padding: 2.25rem; } }

/* Map embed */
.map-embed {
  width: 100%;
  aspect-ratio: 16/9;
  border: 1px solid var(--bg-line);
  filter: grayscale(0.4) invert(0.92) hue-rotate(180deg) brightness(0.94);
}

/* ═══════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════ */
.site-footer {
  background: #07090A;
  border-top: 1px solid rgba(232, 188, 64, 0.12);
  position: relative;
  overflow: hidden;
  padding: 4.5rem 0 2rem;
}
.site-footer::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 6px;
  background-image: repeating-linear-gradient(
    90deg,
    var(--gold) 0,
    var(--gold) 44px,
    transparent 44px,
    transparent 76px
  );
}
.site-footer::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 0%, rgba(232, 188, 64, 0.05), transparent 40%);
  pointer-events: none;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
  position: relative;
  z-index: 1;
}
@media (min-width: 768px) {
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1.2fr; }
}
.footer-brand-img {
  height: 64px;
  width: auto;
  margin-bottom: 1.4rem;
}
.footer-brand-text {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.72;
  max-width: 36ch;
  margin-bottom: 1.4rem;
}
.footer-social-row {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}
.footer-social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text);
  transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.3s var(--ease);
}
.footer-social-icon:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #0C1113;
  transform: translateY(-2px);
}

.footer-heading {
  font-family: 'Anton', sans-serif;
  font-size: 1.15rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 1.1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(232, 188, 64, 0.22);
}
.footer-links { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links a, .footer-links span {
  color: var(--text-muted);
  font-size: 0.94rem;
  font-weight: 500;
  transition: color 0.2s, padding-left 0.25s var(--ease);
  display: inline-block;
}
.footer-links a:hover { color: var(--gold); padding-left: 0.5rem; }
.footer-links a.link-accent { color: var(--gold); font-weight: 700; }
.footer-bottom {
  position: relative;
  z-index: 1;
  margin-top: 2.5rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--bg-line);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
}
@media (min-width: 768px) {
  .footer-bottom { flex-direction: row; justify-content: space-between; }
}
.footer-legal { color: var(--text-dim); font-size: 0.85rem; }
.footer-legal-links { display: flex; gap: 1.25rem; }
.footer-legal-links a {
  color: var(--text-dim);
  font-size: 0.85rem;
  transition: color 0.2s ease;
}
.footer-legal-links a:hover { color: var(--gold); }

/* ═══════════════════════════════════════════
   MOBILE CTA BAR + FLOATING CALL
   ═══════════════════════════════════════════ */
.mobile-cta-bar {
  position: fixed;
  bottom: calc(10px + env(safe-area-inset-bottom, 0px));
  left: 10px;
  right: 10px;
  z-index: 40;
  background: rgba(7, 9, 10, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(232, 188, 64, 0.22);
  padding: 0.55rem;
  display: flex;
  gap: 0.45rem;
  transform: translateY(calc(100% + 16px));
  transition: transform 0.35s var(--ease);
}
.mobile-cta-bar.is-visible { transform: translateY(0); }
.mobile-cta-bar .btn-primary,
.mobile-cta-bar .btn-ghost {
  flex: 1;
  text-align: center;
  padding: 0.85rem 0.75rem;
  font-size: 0.74rem;
  letter-spacing: 0.12em;
}
@media (min-width: 1024px) { .mobile-cta-bar { display: none; } }

.floating-cta {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 35;
  width: 60px;
  height: 60px;
  background: var(--gold);
  color: #0C1113;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(232, 188, 64, 0.4);
  opacity: 0;
  transform: scale(0.6);
  transition: opacity 0.3s ease, transform 0.3s var(--ease);
  pointer-events: none;
  animation: floatPulse 2.6s ease-in-out infinite;
}
@keyframes floatPulse {
  0%, 100% { box-shadow: 0 6px 24px rgba(232, 188, 64, 0.4); }
  50% { box-shadow: 0 6px 36px rgba(232, 188, 64, 0.7); }
}
.floating-cta.is-visible {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}
.floating-cta:hover { background: var(--gold-bright); transform: scale(1.08); }
@media (max-width: 1023px) { .floating-cta { display: none; } }

/* ═══════════════════════════════════════════
   PAGE HERO (sub-page heroes)
   ═══════════════════════════════════════════ */
.page-hero {
  position: relative;
  padding: 5rem 0 4.5rem;
  background: var(--bg-page);
  overflow: hidden;
  z-index: 0;
  border-bottom: 1px solid rgba(232, 188, 64, 0.1);
}
@media (min-width: 768px) {
  .page-hero { padding: 7rem 0 6rem; }
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse at 22% 30%, rgba(232, 188, 64, 0.1), transparent 55%),
    repeating-linear-gradient(
      -45deg,
      transparent 0,
      transparent 90px,
      rgba(232, 188, 64, 0.022) 90px,
      rgba(232, 188, 64, 0.022) 180px
    );
  pointer-events: none;
  z-index: 0;
}
.page-hero::after {
  content: '';
  position: absolute;
  right: -120px;
  bottom: -80px;
  width: 420px;
  height: 420px;
  background-image: radial-gradient(circle, rgba(232, 188, 64, 0.1), transparent 60%);
  pointer-events: none;
  z-index: 0;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.page-hero-bg img,
.page-hero-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.4) contrast(1.1) brightness(0.4);
  opacity: 0.45;
}
.page-hero > .section-inner { position: relative; z-index: 2; }

.page-hero-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--text-dim);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-weight: 700;
  margin-bottom: 1.5rem;
}
.page-hero-breadcrumb a { transition: color 0.2s ease; }
.page-hero-breadcrumb a:hover { color: var(--gold); }
.page-hero-breadcrumb-sep { color: var(--gold); }

.page-hero-title {
  font-family: 'Anton', sans-serif;
  font-size: clamp(2.1rem, 5.8vw, 4.5rem);
  line-height: 1.05;
  letter-spacing: 0.005em;
  color: var(--text);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  max-width: 18ch;
}
.page-hero-title em {
  font-family: 'Anton', sans-serif;
  font-style: normal;
  font-weight: 400;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.005em;
  display: inline-block;
  transform: skewX(-9deg);
  text-shadow:
    2px 3px 0 #07090A,
    0 0 22px rgba(232, 188, 64, 0.28);
  padding: 0 0.08em;
  font-size: 1em;
  line-height: inherit;
}
.page-hero-intro {
  color: var(--text-soft);
  font-size: 1.1rem;
  line-height: 1.7;
  max-width: 60ch;
}

/* Hero spawn animations */
.page-hero-breadcrumb,
.page-hero .eyebrow,
.page-hero-title,
.page-hero-intro,
.page-hero-actions {
  opacity: 0;
  transform: translateY(18px);
  animation: pgHeroIn 0.85s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.page-hero-breadcrumb { animation-delay: 0.15s; }
.page-hero .eyebrow { animation-delay: 0.3s; }
.page-hero-title { animation-delay: 0.45s; animation-duration: 1s; }
.page-hero-intro { animation-delay: 0.7s; }
.page-hero-actions { animation-delay: 0.85s; }
@keyframes pgHeroIn {
  to { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  .page-hero-breadcrumb, .page-hero .eyebrow, .page-hero-title, .page-hero-intro, .page-hero-actions {
    opacity: 1; transform: none; animation: none;
  }
}

.page-hero-actions {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

/* ═══════════════════════════════════════════
   CITY GRID (service areas)
   ═══════════════════════════════════════════ */
.city-search {
  position: relative;
  max-width: 480px;
  margin-bottom: 2.25rem;
}
.city-search-input {
  padding-left: 3rem;
  background: var(--bg-card);
  border: 1px solid rgba(232, 188, 64, 0.2);
}
.city-search::before {
  content: '';
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  background-image: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23E8BC40' stroke-width='2'%3E%3Ccircle cx='11' cy='11' r='8'/%3E%3Cpath d='m21 21-4.3-4.3'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  pointer-events: none;
}
.city-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.55rem;
}
@media (min-width: 768px) { .city-grid { grid-template-columns: repeat(4, 1fr); } }

.city-chip {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.85rem 1rem;
  background: var(--bg-card);
  border: 1px solid var(--bg-line);
  color: var(--text-soft);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: border-color 0.25s, color 0.25s, background 0.25s, transform 0.25s var(--ease-fluid);
  cursor: pointer;
}
.city-chip::before {
  content: '';
  width: 14px;
  height: 14px;
  background-image: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23E8BC40' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 10c0 7-9 13-9 13s-9-6-9-13a9 9 0 0118 0z'/%3E%3Ccircle cx='12' cy='10' r='3'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  flex-shrink: 0;
  opacity: 0.85;
  transition: opacity 0.25s, transform 0.25s ease;
}
.city-chip:hover {
  border-color: rgba(232, 188, 64, 0.4);
  color: var(--text);
  background: var(--bg-elevated);
  transform: translateY(-2px);
}
.city-chip:hover::before { opacity: 1; transform: scale(1.15); }
.city-chip-state {
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  color: var(--gold);
  font-weight: 800;
  margin-left: auto;
}

.state-section { margin-bottom: 3rem; }
.state-section-title {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-family: 'Anton', sans-serif;
  font-size: 1.5rem;
  letter-spacing: 0.12em;
  color: var(--text);
  text-transform: uppercase;
  margin-bottom: 1.4rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid rgba(232, 188, 64, 0.22);
}
.state-section-title-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.85rem;
  background: var(--gold-glow);
  border: 1px solid rgba(232, 188, 64, 0.32);
  color: var(--gold);
  font-family: 'Manrope', sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.state-section-count {
  margin-left: auto;
  font-family: 'Manrope', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.12em;
}

.city-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
}
.city-page-btn {
  padding: 0.45rem 0.75rem;
  min-width: 40px;
  background: var(--bg-card);
  border: 1px solid var(--bg-line);
  color: var(--text-soft);
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.city-page-btn:hover {
  border-color: rgba(232, 188, 64, 0.4);
  color: var(--gold);
}
.city-page-btn.is-active {
  background: var(--gold);
  color: #0C1113;
  border-color: var(--gold);
}
.city-page-btn:disabled { opacity: 0.35; cursor: not-allowed; }

/* ═══════════════════════════════════════════
   LIGHTBOX
   ═══════════════════════════════════════════ */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(5, 7, 8, 0.95);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(1rem, 4vw, 3rem);
  animation: lbFade 0.28s var(--ease);
  cursor: zoom-out;
}
@keyframes lbFade { from { opacity: 0; } to { opacity: 1; } }
.lightbox-overlay img {
  max-width: 100%;
  max-height: 88vh;
  object-fit: contain;
  border: 1px solid rgba(232, 188, 64, 0.4);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.7);
  animation: lbScale 0.35s var(--ease-fluid);
  cursor: default;
}
@keyframes lbScale { from { opacity: 0; transform: scale(0.94); } to { opacity: 1; transform: scale(1); } }
.lightbox-close,
.lightbox-nav {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: var(--gold);
  border: 1px solid rgba(232, 188, 64, 0.45);
  cursor: pointer;
  transition: background 0.2s, color 0.2s, transform 0.2s;
  z-index: 2;
}
.lightbox-close { top: 1.25rem; right: 1.25rem; width: 44px; height: 44px; font-size: 1.7rem; line-height: 1; }
.lightbox-nav { top: 50%; width: 52px; height: 52px; transform: translateY(-50%); background: rgba(7, 9, 10, 0.6); }
.lightbox-close:hover, .lightbox-nav:hover { background: var(--gold); color: #0C1113; transform: translateY(-50%) scale(1.05); }
.lightbox-close:hover { transform: scale(1.05); }
.lightbox-nav--prev { left: 1rem; }
.lightbox-nav--next { right: 1rem; }
@media (max-width: 640px) {
  .lightbox-nav { width: 44px; height: 44px; }
  .lightbox-nav--prev { left: 0.5rem; }
  .lightbox-nav--next { right: 0.5rem; }
}
body.lightbox-open { overflow: hidden; }

/* ═══════════════════════════════════════════
   FINAL CTA / BANNER
   ═══════════════════════════════════════════ */
.final-cta {
  background: #07090A;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(232, 188, 64, 0.18);
  border-bottom: 1px solid rgba(232, 188, 64, 0.18);
}
.final-cta::before {
  content: '';
  position: absolute;
  top: -40%;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 900px;
  background: radial-gradient(circle, rgba(232, 188, 64, 0.14) 0%, rgba(232, 188, 64, 0.04) 35%, transparent 65%);
  pointer-events: none;
  border-radius: 50%;
}
.final-cta::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    -45deg,
    transparent 0,
    transparent 90px,
    rgba(232, 188, 64, 0.025) 90px,
    rgba(232, 188, 64, 0.025) 180px
  );
  pointer-events: none;
  mix-blend-mode: overlay;
}
.final-cta .section-inner { position: relative; z-index: 2; }
.final-cta-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-top: 2.5rem;
}
@media (min-width: 480px) {
  .final-cta-actions { flex-direction: row; justify-content: center; }
}
.final-cta-actions .btn-primary,
.final-cta-actions .btn-ghost {
  width: 100%;
  max-width: 320px;
}
@media (min-width: 480px) {
  .final-cta-actions .btn-primary,
  .final-cta-actions .btn-ghost { width: auto; max-width: none; }
}

/* ═══════════════════════════════════════════
   UTILITY HELPERS
   ═══════════════════════════════════════════ */
.center-text { text-align: center; }
.text-gold { color: var(--gold); }
.text-muted { color: var(--text-muted); }
.stack-sm { display: flex; flex-direction: column; gap: 0.5rem; }
.stack-md { display: flex; flex-direction: column; gap: 1rem; }
.stack-lg { display: flex; flex-direction: column; gap: 1.5rem; }

.section-header-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: end;
  margin-bottom: 3rem;
}
@media (min-width: 900px) {
  .section-header-split {
    grid-template-columns: minmax(0, 6fr) minmax(0, 6fr);
    gap: 2.5rem;
  }
}

.tag-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.4rem 0.85rem;
  background: var(--gold-glow);
  border: 1px solid rgba(232, 188, 64, 0.32);
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}
