/* ═══════════════════════════════════════════
   Paul's Asphalt Paving, Global Styles
   Editorial light theme · Cream base · Red + Orange accents
   Inspired by the logo: red border, orange wordmark, black road ribbon
   ═══════════════════════════════════════════ */

/* ── CSS Variables ── */
:root {
  /* Warm light palette */
  --bg-page: #FBF3E4;        /* Old Lace, main cream */
  --bg-surface: #FFFFFF;     /* Pure white cards/surfaces */
  --bg-card: #FFFFFF;
  --bg-elevated: #FDF7EA;    /* Slightly warmer cream for alt sections */
  --bg-raised: #F5E6C8;      /* Apricot-tinted cream */
  --bg-ink: #0D0E0D;         /* Ink panel (rare accent) */
  --bg-border: rgba(13, 14, 13, 0.10);
  --bg-border-strong: rgba(232, 33, 41, 0.28);

  /* Primary accent, Carrot Orange (buttons, kickers, most highlights) */
  --accent: #F79825;
  --accent-bright: #E82129;   /* Racing Red, hover / active state */
  --accent-dark: #D47F12;
  --accent-darker: #B06910;
  --accent-glow: rgba(247, 152, 37, 0.10);
  --accent-glow-strong: rgba(247, 152, 37, 0.22);

  /* Secondary accent, Racing Red (used for a rare contrast punch) */
  --accent-2: #E82129;
  --accent-2-dark: #C81219;
  --accent-2-glow: rgba(232, 33, 41, 0.10);

  /* Supporting warm tones */
  --sand: #D3A466;            /* Sunlit Clay */
  --peach: #F9D3A4;           /* Apricot Cream */

  /* Text, dark ink on cream */
  --text: #0D0E0D;
  --text-mid: #222225;
  --text-muted: #50504f;
  --text-faint: #7a7a78;

  /* Radii */
  --radius-sm: 2px;
  --radius: 4px;
  --radius-lg: 6px;

  /* Layout */
  --max-w: 1360px;

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

  /* Shadows, softer on a light background */
  --shadow-sm: 0 1px 3px rgba(13, 14, 13, 0.06), 0 2px 6px rgba(13, 14, 13, 0.04);
  --shadow-md: 0 6px 18px rgba(13, 14, 13, 0.08), 0 2px 6px rgba(13, 14, 13, 0.04);
  --shadow-lg: 0 18px 44px rgba(13, 14, 13, 0.10), 0 4px 12px rgba(13, 14, 13, 0.05);
  --shadow-accent: 0 10px 30px -10px rgba(232, 33, 41, 0.28);
  /* Alias retained for backward-compat references in existing rules */
  --shadow-yellow: 0 10px 30px -10px rgba(232, 33, 41, 0.28);
}

/* ── Reset ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px;
  background: var(--bg-page);
  color: var(--text-mid);
  overflow-x: hidden;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: 'ss01', 'cv11';
}
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; }

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

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

/* Selection */
::selection {
  background: var(--accent);
  color: #FFFFFF;
}

/* Scrollbar, light cream track, red thumb */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: #F5E6C8; }
::-webkit-scrollbar-thumb {
  background: var(--accent);
  border-radius: 0;
  border: 3px solid #F5E6C8;
}
::-webkit-scrollbar-thumb:hover { background: var(--accent-dark); }

/* ── Typography ── */
h1, h2, h3, h4, h5 {
  font-family: 'Archivo Black', 'Bebas Neue', 'Archivo Narrow', system-ui, sans-serif;
  color: var(--text);
  line-height: 0.95;
  letter-spacing: 0.01em;
  font-weight: 400;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 1.25rem;
}
.section-kicker::before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 2px;
  background: var(--accent);
}

.section-title {
  font-family: 'Bebas Neue', system-ui, sans-serif;
  font-size: clamp(2.6rem, 7vw, 5.4rem);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: 0.005em;
  color: var(--text);
  text-transform: uppercase;
}
.section-title em {
  font-style: normal;
  color: var(--accent);
  position: relative;
}
.section-title--compact {
  font-size: clamp(2rem, 4.6vw, 3.4rem);
  line-height: 1.05;
}
.section-intro {
  color: var(--text-muted);
  font-size: 1.08rem;
  line-height: 1.7;
  max-width: 62ch;
  margin-top: 1.25rem;
  font-family: 'Inter', 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 3rem; }
}
.section-pad {
  padding-top: 5.5rem;
  padding-bottom: 5.5rem;
  position: relative;
}
@media (min-width: 768px) {
  .section-pad { padding-top: 8rem; padding-bottom: 8rem; }
}

/* ── Buttons ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  background: var(--accent);
  color: #FBF3E4;
  padding: 1.05rem 2.25rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  border-radius: 0;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s var(--ease-fluid), box-shadow 0.3s ease, background 0.3s ease;
  will-change: transform;
}
.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, transparent 20%, rgba(255,255,255,0.35) 50%, transparent 80%);
  transform: translateX(-120%);
  transition: transform 0.7s var(--ease-fluid);
  pointer-events: none;
}
.btn-primary:hover {
  background: var(--accent-bright);
  transform: translateY(-2px);
  box-shadow: var(--shadow-yellow);
}
.btn-primary:hover::after {
  transform: translateX(120%);
}
.btn-primary:active { transform: translateY(0); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  border: 1.5px solid rgba(13, 14, 13, 0.22);
  color: var(--text);
  padding: 1.05rem 2.25rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  border-radius: 0;
  transition: border-color 0.3s ease, color 0.3s ease, transform 0.3s var(--ease-fluid), background 0.3s ease;
}
.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
  background: rgba(232, 33, 41,0.05);
}
.btn-ghost:active { transform: translateY(0); }

.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 {
  transform: translateX(4px);
}

/* CTA action groups */
.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;
    gap: 1rem;
  }
}
.final-cta-actions .btn-primary,
.final-cta-actions .btn-ghost {
  width: 100%;
  max-width: 320px;
  text-align: center;
}
@media (min-width: 480px) {
  .final-cta-actions .btn-primary,
  .final-cta-actions .btn-ghost {
    width: auto;
    max-width: none;
  }
}

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


/* ═══════════════════════════════════════════
   SCROLL PROGRESS
   ═══════════════════════════════════════════ */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: var(--accent);
  z-index: 100;
  transition: width 0.1s linear;
  box-shadow: 0 0 16px rgba(232, 33, 41, 0.6);
}


/* ═══════════════════════════════════════════
   HEADER
   ═══════════════════════════════════════════ */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition:
    transform 0.5s var(--ease),
    background 0.4s ease,
    backdrop-filter 0.4s ease,
    border-color 0.4s ease,
    box-shadow 0.4s ease;
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled {
  background: rgba(251, 243, 228, 0.92);
  backdrop-filter: blur(18px) saturate(1.2);
  -webkit-backdrop-filter: blur(18px) saturate(1.2);
  border-bottom: 1px solid rgba(232, 33, 41, 0.18);
  box-shadow: 0 4px 24px rgba(13, 14, 13, 0.06);
}
.site-header.nav-open {
  z-index: 2147483000 !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  background: transparent !important;
  border-bottom: none !important;
  box-shadow: none !important;
  transform: none !important;
  will-change: auto !important;
  filter: none !important;
  transition: none !important;
}

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

.logo-block {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  position: relative;
}
.logo-img {
  height: 58px;
  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(13, 14, 13, 0.12));
  transform-origin: left center;
}
@media (min-width: 768px) { .logo-img { height: 72px; } }
.is-scrolled .logo-img { height: 46px; }
@media (min-width: 768px) { .is-scrolled .logo-img { height: 56px; } }
.logo-block:hover .logo-img {
  transform: scale(1.04) rotate(-1deg);
  filter: drop-shadow(0 4px 14px rgba(232, 33, 41, 0.25)) drop-shadow(0 2px 6px rgba(13, 14, 13, 0.1));
}
.logo-block:active .logo-img {
  transform: scale(0.98) rotate(0);
}

/* Nav toggle, hamburger */
.nav-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}
.nav-toggle-bars {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 22px;
}
.nav-toggle-bar {
  height: 2px;
  width: 22px;
  background: var(--accent);
  border-radius: 0;
  transition: all 0.3s var(--ease);
}
@media (min-width: 1024px) { .nav-toggle { display: none; } }

/* Nav menu container */
.nav-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--bg-surface);
  z-index: 2147483000;
  flex-direction: column;
  padding: 5rem 1.75rem calc(2rem + env(safe-area-inset-bottom, 0px));
  gap: 0.25rem;
  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 0px,
    transparent 40px,
    rgba(232, 33, 41, 0.025) 40px,
    rgba(232, 33, 41, 0.025) 80px
  );
  pointer-events: none;
}
.nav-menu.is-open { display: flex; }

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

.nav-close {
  position: absolute;
  top: 1.2rem;
  right: 1.25rem;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  border: 1px solid rgba(232, 33, 41, 0.25);
}
.nav-close-icon { font-size: 1.75rem; line-height: 1; }
@media (min-width: 1024px) { .nav-close { display: none; } }

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

.nav-menu-links a,
.nav-dropdown-toggle {
  padding: 1rem 1rem;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--text);
  transition: color 0.2s ease;
  white-space: nowrap;
  position: relative;
  display: inline-flex;
  align-items: center;
  border-bottom: 1px solid rgba(13, 14, 13, 0.06);
}
@media (min-width: 1024px) {
  .nav-menu-links a,
  .nav-dropdown-toggle {
    padding: 0.6rem 0.95rem;
    font-size: 0.84rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    border-bottom: none;
  }
}

/* Underline sweep */
.nav-menu-links a::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 1rem;
  right: 1rem;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.35s cubic-bezier(0.65, 0.05, 0.36, 1);
}
@media (min-width: 1024px) {
  .nav-menu-links a::after { bottom: 2px; }
}
.nav-menu-links a:not(.header-cta):hover::after { transform: scaleX(1); }
.nav-menu-links a:hover,
.nav-dropdown-toggle:hover { color: var(--accent); }

/* Header CTA */
.header-cta,
.nav-menu-links a.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.35rem;
  background: var(--accent);
  color: #FBF3E4 !important;
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  border-radius: 0;
  border-bottom: none;
  transition: background 0.2s ease, transform 0.3s var(--ease-fluid), box-shadow 0.3s ease;
}
.header-cta:hover,
.nav-menu-links a.header-cta:hover {
  background: var(--accent-bright);
  transform: translateY(-1px);
  box-shadow: 0 4px 18px rgba(232, 33, 41, 0.35);
}
.header-cta--nav { margin-top: 1.25rem; align-self: flex-start; }
@media (min-width: 1024px) { .header-cta--nav { margin-top: 0; align-self: center; margin-left: 0.5rem; } }
.header-cta--drawer { display: none; }

/* Nav dropdown */
.nav-dropdown { position: relative; border-bottom: 1px solid rgba(13, 14, 13, 0.06); }
@media (min-width: 1024px) { .nav-dropdown { border-bottom: none; } }
.nav-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  width: 100%;
  justify-content: space-between;
}
@media (min-width: 1024px) { .nav-dropdown-toggle { width: auto; } }
.nav-dropdown-chevron {
  width: 14px;
  height: 14px;
  transition: transform 0.3s ease;
}
.nav-dropdown-toggle[aria-expanded="true"] .nav-dropdown-chevron { transform: rotate(180deg); }

.nav-dropdown-panel {
  display: none;
  padding: 0.25rem 0 0.5rem 1.25rem;
}
.nav-dropdown-panel.is-open { display: block; }
@media (min-width: 1024px) {
  .nav-dropdown:hover .nav-dropdown-panel { display: block; animation: dropdownFade 0.25s var(--ease); }
}
@keyframes dropdownFade {
  from { opacity: 0; transform: translateY(-6px) translateX(-50%); }
  to { opacity: 1; transform: translateY(0) translateX(-50%); }
}

@media (min-width: 1024px) {
  .nav-dropdown-panel {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%);
    background: var(--bg-elevated);
    border: 1px solid var(--bg-border);
    border-top: 2px solid var(--accent);
    border-radius: 0;
    padding: 0.75rem;
    min-width: 240px;
    box-shadow: 0 24px 44px rgba(0,0,0,0.55);
    z-index: 70;
  }
}

.nav-dropdown-grid { display: flex; flex-direction: column; gap: 0; }
.nav-dropdown-grid a {
  padding: 0.65rem 0.85rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  color: var(--text-mid);
  border-radius: 0;
  border-bottom: none;
  transition: background 0.18s ease, color 0.18s ease, padding-left 0.18s ease;
}
.nav-dropdown-grid a::after { display: none; }
.nav-dropdown-grid a:hover {
  background: var(--accent-glow);
  color: var(--accent);
  padding-left: 1.1rem;
}
.nav-dropdown-all {
  margin-top: 0.5rem;
  padding-top: 0.5rem;
  border-top: 1px solid var(--bg-border);
}
.nav-dropdown-all a {
  color: var(--accent) !important;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
}

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


/* ═══════════════════════════════════════════
   CAUTION STRIPE, reusable divider
   Orange + ink diagonals, like a road-work barricade.
   ═══════════════════════════════════════════ */
.caution-stripe {
  height: 14px;
  background-image: repeating-linear-gradient(
    -45deg,
    var(--accent) 0,
    var(--accent) 22px,
    #0D0E0D 22px,
    #0D0E0D 44px
  );
  position: relative;
  z-index: 2;
}

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


/* ═══════════════════════════════════════════
   SERVICE CARDS, angular industrial tiles
   ═══════════════════════════════════════════ */

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
}
@media (min-width: 560px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
}
@media (min-width: 960px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 1280px) {
  .services-grid { grid-template-columns: repeat(4, 1fr); }
}

.service-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--bg-border);
  border-radius: 0;
  overflow: hidden;
  transition: transform 0.5s var(--ease-fluid), border-color 0.4s ease, box-shadow 0.4s ease;
  isolation: isolate;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.5s var(--ease-fluid);
  z-index: 3;
}
.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(232, 33, 41, 0.28);
  box-shadow: var(--shadow-lg), var(--shadow-yellow);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card-img {
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
}
.service-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(12,12,14,0.85));
  z-index: 1;
}
.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
  filter: grayscale(0.15) contrast(1.05);
}
.service-card:hover .service-card-img img {
  transform: scale(1.08);
  filter: grayscale(0) contrast(1.1);
}
.service-card-body {
  padding: 1.1rem 1.15rem 1.15rem;
}
.service-card-title {
  font-family: 'Archivo Black', 'Bebas Neue', sans-serif;
  font-size: 1.05rem;
  font-weight: 400;
  letter-spacing: -0.005em;
  color: var(--text);
  margin-bottom: 0.4rem;
  text-transform: none;
  line-height: 1.15;
}
.service-card-title a {
  color: inherit;
  transition: color 0.2s ease;
}
.service-card-title a:hover { color: var(--accent); }
.service-card-desc {
  color: var(--text-muted);
  font-size: 0.83rem;
  line-height: 1.55;
  margin-bottom: 0.85rem;
}
.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--accent);
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  padding-bottom: 2px;
  border-bottom: 1px solid rgba(247, 152, 37, 0.35);
  transition: gap 0.3s ease, border-color 0.3s ease, color 0.2s ease;
}
.service-card-link:hover { color: var(--accent-bright); }
.service-card:hover .service-card-link {
  gap: 0.7rem;
  border-color: var(--accent);
}


/* ═══════════════════════════════════════════
   TRUST / VALUES CARDS
   ═══════════════════════════════════════════ */

.trust-cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 768px) {
  .trust-cards-grid { grid-template-columns: repeat(3, 1fr); }
}

.trust-card {
  background: var(--bg-card);
  border: 1px solid var(--bg-border);
  padding: 2.25rem 2rem;
  transition: transform 0.4s var(--ease-fluid), border-color 0.3s ease, background 0.3s ease;
  position: relative;
  overflow: hidden;
}
.trust-card::before {
  content: attr(data-num);
  position: absolute;
  top: -1.8rem;
  right: -0.6rem;
  font-family: 'Archivo Black', 'Bebas Neue', sans-serif;
  font-size: 10rem;
  font-weight: 400;
  line-height: 1;
  color: rgba(232, 33, 41, 0.06);
  pointer-events: none;
  letter-spacing: -0.02em;
}
.trust-card::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--accent);
  transform: scaleY(0);
  transform-origin: top center;
  transition: transform 0.5s var(--ease-fluid);
}
.trust-card:hover {
  transform: translateY(-4px);
  border-color: rgba(232, 33, 41, 0.25);
  background: var(--bg-elevated);
}
.trust-card:hover::after { transform: scaleY(1); }
.trust-card-icon {
  width: 54px;
  height: 54px;
  background: var(--accent-glow);
  border: 1px solid rgba(232, 33, 41, 0.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}
.trust-card-title {
  font-family: 'Archivo Black', 'Bebas Neue', sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--text);
  margin-bottom: 0.75rem;
  position: relative;
  z-index: 1;
  line-height: 1.05;
}
.trust-card-desc {
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}


/* ═══════════════════════════════════════════
   FAQ ACCORDION
   ═══════════════════════════════════════════ */

.faq-list { display: flex; flex-direction: column; gap: 0.5rem; }
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--bg-border);
  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(--accent);
  transform: scaleY(0);
  transform-origin: top center;
  transition: transform 0.4s var(--ease-fluid);
}
.faq-item:hover,
.faq-item.is-open {
  border-color: rgba(232, 33, 41, 0.25);
  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.35rem 1.5rem;
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  text-align: left;
  font-size: 1rem;
  transition: color 0.2s ease;
}
.faq-trigger:hover { color: var(--accent); }
.faq-trigger-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  transition: transform 0.4s var(--ease);
  color: var(--accent);
}
.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.5rem 1.35rem;
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.75;
}


/* ═══════════════════════════════════════════
   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-mid);
  font-family: 'Inter', sans-serif;
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-bottom: 0.5rem;
}
.form-input {
  width: 100%;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(13, 14, 13, 0.12);
  color: var(--text);
  padding: 0.95rem 1.1rem;
  font-family: 'Inter', 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(--accent);
  background: rgba(232, 33, 41, 0.03);
}
.form-input::placeholder { color: var(--text-faint); }
textarea.form-input { resize: vertical; min-height: 130px; line-height: 1.55; }
select.form-input { appearance: none; }


/* ═══════════════════════════════════════════
   ANIMATION SYSTEM
   ═══════════════════════════════════════════ */

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.9s var(--ease), transform 0.9s 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(-50px);
  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(50px);
  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);
}

/* Mask reveal, industrial wipe */
.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);
}

/* Word-level reveal, used on hero title */
.reveal-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(28px) skewY(4deg);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal-word.visible {
  opacity: 1;
  transform: translateY(0) skewY(0);
}

/* Staggered children */
.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 > *:nth-child(11) { transition-delay: 0.7s; }
/* Stagger delays were bleeding into hover transitions, making later-row
   cards (nth-child 5+) feel slow to respond. Reset delay for interactive states. */
.reveal-stagger > *:hover,
.reveal-stagger > *:focus-within,
.reveal-stagger > *:hover *,
.reveal-stagger > *:focus-within * {
  transition-delay: 0s;
}


/* ═══════════════════════════════════════════
   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, 33, 41, 0.02) 80px,
    rgba(232, 33, 41, 0.02) 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: 1rem;
  padding: 1.25rem;
  background: var(--bg-card);
  border: 1px solid var(--bg-border);
  border-left: 3px solid var(--accent);
  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(--accent-glow);
  border: 1px solid rgba(232, 33, 41, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--accent);
}
.contact-info-card-label {
  color: var(--text-faint);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 700;
  margin-bottom: 0.15rem;
}
.contact-info-card-value {
  color: var(--text);
  font-size: 1.05rem;
  font-weight: 600;
}
.contact-form-wrap {
  background: var(--bg-card);
  border: 1px solid var(--bg-border);
  padding: 1.75rem;
  position: relative;
}
.contact-form-wrap::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 40px;
  height: 3px;
  background: var(--accent);
}
@media (min-width: 768px) {
  .contact-form-wrap { padding: 2.25rem; }
}


/* ═══════════════════════════════════════════
   MOBILE CTA BAR
   ═══════════════════════════════════════════ */

.mobile-cta-bar {
  position: fixed;
  bottom: calc(10px + env(safe-area-inset-bottom, 0px));
  left: 10px;
  right: 10px;
  z-index: 40;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(232, 33, 41, 0.24);
  box-shadow: 0 10px 30px rgba(13, 14, 13, 0.12);
  padding: 0.6rem;
  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.8rem 0.75rem;
  font-size: 0.74rem;
  letter-spacing: 0.1em;
}
@media (min-width: 1024px) { .mobile-cta-bar { display: none; } }


/* ═══════════════════════════════════════════
   FLOATING CALL CTA
   ═══════════════════════════════════════════ */

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


/* ═══════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════ */

.site-footer {
  background: #08080A;
  border-top: 1px solid rgba(232, 33, 41, 0.1);
  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(--accent) 0,
    var(--accent) 44px,
    transparent 44px,
    transparent 72px
  );
}
.site-footer::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 0%, rgba(232, 33, 41, 0.05), transparent 40%);
  pointer-events: none;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
  position: relative;
}
@media (min-width: 768px) {
  .footer-grid { grid-template-columns: 1.6fr 1fr 1fr 1.1fr; }
}
.footer-brand-img {
  height: 56px;
  width: auto;
  margin-bottom: 1.25rem;
}
.footer-brand-text {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  max-width: 34ch;
  margin-bottom: 1rem;
}
.footer-social {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-muted);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  transition: color 0.2s ease;
}
.footer-social:hover { color: var(--accent); }

.footer-heading {
  font-family: 'Archivo Black', 'Bebas Neue', sans-serif;
  font-size: 1.15rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 1.1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(232, 33, 41, 0.2);
}
.footer-links { display: flex; flex-direction: column; gap: 0.55rem; }
.footer-links a {
  color: var(--text-muted);
  font-size: 0.94rem;
  transition: color 0.2s ease, padding-left 0.25s var(--ease);
  position: relative;
}
.footer-links a:hover {
  color: var(--accent);
  padding-left: 0.5rem;
}
.footer-links a.link-accent { color: var(--accent); font-weight: 700; }

.footer-bottom {
  position: relative;
  margin-top: 2.5rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--bg-border);
  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-faint); font-size: 0.85rem; }
.footer-legal-links { display: flex; gap: 1.25rem; }
.footer-legal-links a {
  color: var(--text-faint);
  font-size: 0.85rem;
  transition: color 0.2s ease;
}
.footer-legal-links a:hover { color: var(--accent); }


/* ═══════════════════════════════════════════
   SUB-PAGE HERO (about, contact, services, etc.)
   ═══════════════════════════════════════════ */

.page-hero {
  position: relative;
  padding: 10rem 0 5rem;
  background: var(--bg-page);
  overflow: hidden;
  z-index: 0;
  border-bottom: 1px solid rgba(232, 33, 41, 0.08);
}
@media (min-width: 768px) {
  .page-hero { padding: 12rem 0 6rem; }
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      45deg,
      transparent 0,
      transparent 80px,
      rgba(232, 33, 41, 0.025) 80px,
      rgba(232, 33, 41, 0.025) 160px
    ),
    radial-gradient(ellipse at 20% 30%, rgba(232, 33, 41, 0.08), transparent 50%);
  pointer-events: none;
  z-index: 0;
}
.page-hero::after {
  content: '';
  position: absolute;
  right: -120px;
  bottom: -60px;
  width: 380px;
  height: 380px;
  background-image: radial-gradient(circle, rgba(232, 33, 41, 0.08), transparent 60%);
  pointer-events: none;
  z-index: 0;
}
.page-hero > .section-inner { position: relative; z-index: 2; }
.page-hero-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}
.page-hero-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.55) contrast(1.08) brightness(0.38);
  opacity: 0;
  animation: pageHeroBgIn 1.4s var(--ease) 0.2s forwards;
}
@keyframes pageHeroBgIn { to { opacity: 0.35; } }
.page-hero--video::before { opacity: 0.55; }
.page-hero-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-faint);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 600;
  margin-bottom: 1.5rem;
}
.page-hero-breadcrumb a { transition: color 0.2s ease; }
.page-hero-breadcrumb a:hover { color: var(--accent); }
.page-hero-breadcrumb-sep { color: var(--accent); }

.page-hero-title {
  font-family: 'Archivo Black', 'Bebas Neue', sans-serif;
  font-size: clamp(1.9rem, 4.6vw, 3.2rem);
  line-height: 1.05;
  letter-spacing: -0.005em;
  color: var(--text);
  text-transform: none;
  margin-bottom: 1.1rem;
  max-width: 22ch;
}
.page-hero-title em {
  font-style: normal;
  color: var(--accent);
  text-decoration: underline;
  text-decoration-color: var(--accent);
  text-decoration-thickness: 4px;
  text-underline-offset: 0.04em;
  text-decoration-skip-ink: none;
}
.page-hero-intro {
  color: var(--text-muted);
  font-size: 1.08rem;
  line-height: 1.7;
  max-width: 60ch;
}

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


/* ═══════════════════════════════════════════
   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, 33, 41, 0.18);
}
.city-search::before {
  content: '';
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23F7C21D' 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;
}
.city-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
}
@media (min-width: 768px) { .city-grid { grid-template-columns: repeat(4, 1fr); } }

.city-chip {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1rem;
  background: var(--bg-card);
  border: 1px solid var(--bg-border);
  color: var(--text-mid);
  font-size: 0.92rem;
  font-weight: 500;
  text-decoration: none;
  transition: border-color 0.25s ease, color 0.25s ease, background 0.25s ease, transform 0.25s var(--ease-fluid);
  cursor: pointer;
  position: relative;
}
.city-chip::before {
  content: '';
  width: 14px;
  height: 14px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23F7C21D' 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 ease, transform 0.25s ease;
}
.city-chip:hover {
  border-color: rgba(232, 33, 41, 0.35);
  color: var(--text);
  background: var(--bg-elevated);
  transform: translateY(-2px);
}
.city-chip:hover::before { opacity: 1; transform: scale(1.12); }
.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: 38px;
  background: var(--bg-card);
  border: 1px solid var(--bg-border);
  color: var(--text-mid);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.city-page-btn:hover {
  border-color: rgba(232, 33, 41, 0.4);
  color: var(--accent);
}
.city-page-btn.is-active {
  background: var(--accent);
  color: #FBF3E4;
  border-color: var(--accent);
}
.city-page-btn:disabled { opacity: 0.35; cursor: not-allowed; }


/* ═══════════════════════════════════════════
   GALLERY
   ═══════════════════════════════════════════ */

.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-border);
  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,12,14,0.7));
  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: grayscale(0.15);
}
.gallery-item:hover {
  transform: translateY(-4px);
  border-color: rgba(232, 33, 41, 0.4);
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(232, 33, 41, 0.3);
}
.gallery-item:hover img { transform: scale(1.07); filter: grayscale(0); }
.gallery-item:hover::after { opacity: 1; }


/* ═══════════════════════════════════════════
   MARQUEE (services ticker)
   ═══════════════════════════════════════════ */

.marquee {
  overflow: hidden;
  background: #F5EBD4;
  border-top: 1px solid rgba(232, 33, 41, 0.15);
  border-bottom: 1px solid rgba(232, 33, 41, 0.15);
  padding: 1rem 0;
  position: relative;
}
.marquee-track {
  display: flex;
  gap: 3.5rem;
  width: max-content;
  animation: marqueeScroll 48s 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: 0.85rem;
  white-space: nowrap;
  flex-shrink: 0;
  font-family: 'Archivo Black', 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text);
}
.marquee-dot {
  width: 10px;
  height: 10px;
  background: var(--accent);
  transform: rotate(45deg);
  flex-shrink: 0;
}


/* ═══════════════════════════════════════════
   GENERIC SECTION BACKGROUNDS / MODIFIERS
   ═══════════════════════════════════════════ */

.section-alt {
  background: var(--bg-surface);
  position: relative;
}
.section-alt::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    90deg,
    transparent 0,
    transparent 120px,
    rgba(232, 33, 41, 0.018) 120px,
    rgba(232, 33, 41, 0.018) 121px
  );
  pointer-events: none;
}
.section-alt > .section-inner { position: relative; z-index: 1; }

.section-accent {
  background:
    linear-gradient(135deg, rgba(232, 33, 41, 0.04), transparent 50%),
    var(--bg-page);
  position: relative;
}


/* ═══════════════════════════════════════════
   FINAL CTA, dark w/ yellow pattern
   ═══════════════════════════════════════════ */

.final-cta {
  background: #F5EBD4;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(232, 33, 41, 0.15);
  border-bottom: 1px solid rgba(232, 33, 41, 0.15);
}
.final-cta::before {
  content: '';
  position: absolute;
  top: -40%;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 900px;
  background: radial-gradient(circle, rgba(232, 33, 41, 0.12) 0%, rgba(232, 33, 41, 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, 33, 41, 0.025) 90px,
    rgba(232, 33, 41, 0.025) 180px
  );
  pointer-events: none;
  mix-blend-mode: overlay;
}
.final-cta .section-inner { position: relative; z-index: 2; }
.final-cta .section-title {
  color: var(--text);
  margin-bottom: 1rem;
}
.final-cta .section-intro {
  margin: 0 auto 2rem;
  text-align: center;
  color: var(--text-muted);
}


/* ═══════════════════════════════════════════
   UTILITIES
   ═══════════════════════════════════════════ */

.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; }
.center-text { text-align: center; }

.ar-corner {
  position: absolute;
  width: 24px;
  height: 24px;
  border: 2px solid var(--accent);
  pointer-events: none;
}
.ar-corner--tl { top: 12px; left: 12px; border-right: none; border-bottom: none; }
.ar-corner--tr { top: 12px; right: 12px; border-left: none; border-bottom: none; }
.ar-corner--bl { bottom: 12px; left: 12px; border-right: none; border-top: none; }
.ar-corner--br { bottom: 12px; right: 12px; border-left: none; border-top: none; }


/* ═══════════════════════════════════════════
   LIGHTBOX (gallery image viewer)
   ═══════════════════════════════════════════ */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(6, 6, 8, 0.94);
  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, 33, 41, 0.35);
  box-shadow: 0 20px 60px 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 {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: var(--accent);
  font-size: 1.8rem;
  line-height: 1;
  border: 1px solid rgba(232, 33, 41, 0.45);
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
  z-index: 2;
}
.lightbox-close:hover {
  background: var(--accent);
  color: #FBF3E4;
  transform: scale(1.05);
}
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(12, 12, 14, 0.6);
  color: var(--accent);
  border: 1px solid rgba(232, 33, 41, 0.35);
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
  z-index: 2;
}
.lightbox-nav:hover { background: var(--accent); color: #FBF3E4; }
.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; }
.gallery-item, .gallery-preview .gallery-item { cursor: zoom-in; }
