/* ==========================================================================
   BrightRig Logistics — Global Stylesheet
   Design: Industrial Precision
   Palette: Charcoal + Safety Orange
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800;900&family=DM+Sans:ital,opsz,wght@0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,400&display=swap');

/* --- Design Tokens --- */
:root {
  --clr-black: #0f1218;
  --clr-dark: #1b2028;
  --clr-dark-alt: #17191f;
  --clr-slate: #1d1e20;
  --clr-muted: #717887;
  --clr-light-grey: #d7d7d7;
  --clr-light: #bcc3d1;
  --clr-off-white: #ebebe6;
  --clr-white: #ffffff;
  --clr-orange: #e86a1e;
  --clr-orange-hover: #ff7a00;
  --clr-orange-muted: rgba(232,106,30,0.12);
  --clr-orange-glow: rgba(232,106,30,0.15);
  --clr-green: #22c55e;

  --ff-heading: 'Outfit', sans-serif;
  --ff-body: 'DM Sans', sans-serif;

  --fs-xs: 0.75rem;
  --fs-sm: 0.875rem;
  --fs-base: 1rem;
  --fs-md: 1.125rem;
  --fs-lg: 1.25rem;
  --fs-xl: 1.5rem;
  --fs-2xl: 2rem;
  --fs-3xl: 2.5rem;
  --fs-4xl: 3.25rem;
  --fs-5xl: 4rem;

  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;
  --space-3xl: 8rem;

  --max-w: 1200px;
  --radius: 6px;
  --radius-lg: 12px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.3);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.4);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.5);
  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);

  --bg-body: var(--clr-white);
  --bg-surface: var(--clr-light);
  --bg-elevated: var(--clr-dark-alt);

  --text-primary: var(--clr-black);
  --text-secondary: var(--clr-slate);
  --text-muted: var(--clr-muted);

  --border-subtle: rgba(255,255,255,0.06);
  --border-strong: rgba(255,255,255,0.12);

  --header-bg: rgba(255, 255, 255, 0.867);
  --header-bg-scrolled: rgba(218, 218, 218, 0.97);
}

/* --- Reset & Base --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--ff-body);
  font-size: var(--fs-base);
  line-height: 1.7;
  color: var(--text-primary);
   background-color: var(--bg-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

a {
  color: var(--clr-orange);
  text-decoration: none;
  transition: color var(--transition);
}
a:hover { color: var(--clr-orange-hover); }

h2, h4, h5{
  font-family: var(--ff-heading);
  font-weight: 700;
  line-height: 1.15;
  color: var(--clr-black);
}

h1, h3{
  font-family: var(--ff-heading);
  font-weight: 700;
  line-height: 1.15;
  color: var(--clr-white);
}

h1 { font-size: var(--fs-4xl); letter-spacing: -0.02em; }
h2 { font-size: var(--fs-2xl); letter-spacing: -0.01em; margin-bottom: var(--space-md); }
h3 { font-size: var(--fs-xl); margin-bottom: var(--space-sm); }
p { margin-bottom: var(--space-sm); }
p:last-child { margin-bottom: 0; }

/* --- Utility --- */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--space-md); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.text-orange { color: var(--clr-orange); }
.text-muted { color: var(--clr-light); }
.text-center { text-align: center; }

/* --- Grain Overlay --- */
body::after {
  content: '';
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.5;
}

/* ==========================================================================
   HEADER / NAV
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--header-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background var(--transition);
}

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

.logo-img {
  height: 55px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  list-style: none;
}

/* ========================================================================== 
   MAIN NAV LINKS (TOP LEVEL ONLY)
   ========================================================================== */

.nav-links > li > a {
  font-family: var(--ff-heading);
  font-size: var(--fs-sm);
  font-weight: 600;
  color: transparent;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: color var(--transition);
  position: relative;

  background-image: linear-gradient(to right, var(--clr-orange) 50%, var(--clr-black) 50%);
  background-size: 200% 100%;
  background-position: right center;

  -webkit-background-clip: text;
  background-clip: text;

  transition: background-position 0.35s ease;
}

.nav-links > li > a:hover {
  background-position: left center;
  color: transparent !important;
}

.nav-links > li > a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--clr-orange);
  transition: width 0.35s ease;
}

.nav-links > li > a:hover::after {
  width: 100%;
}

.nav-links > li > a:visited {
  color: transparent;
  background-position: right center;
}

.nav-links > li > a:visited:hover {
  color: transparent;
  background-position: left center;
}

.nav-links > li > a.active,
.nav-links > li > a.active:visited {
  color: var(--clr-orange);
}

.nav-links > li > a.active::after {
  width: 100%;
}

/* ========================================================================== 
   BUTTON LINKS IN NAV
   ========================================================================== */

.nav-links a.btn::after,
.nav-links a.btn:hover::after {
  width: 0 !important;
  content: none;
}

.nav-links a.btn,
.nav-links a.btn:hover {
  text-decoration: none !important;
}

.nav-links a.btn-primary,
.nav-links a.btn-primary:link,
.nav-links a.btn-primary:visited,
.nav-links a.btn-primary:active,
.nav-links a.btn-primary:focus {
  color: var(--clr-white) !important;
  background: var(--clr-orange) !important;
  background-image: none !important;
  -webkit-background-clip: unset !important;
  background-clip: unset !important;
}

.nav-links a.btn-primary:hover {
  color: var(--clr-white) !important;
  background: #111111 !important;
  box-shadow: none;
}

/* ========================================================================== 
   DROPDOWN
   ========================================================================== */

.dropdown {
  position: relative;
}

/* Hidden menu */

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fffffff6;
  list-style: none;
  padding: 10px 0;
  margin: 0;
  min-width: 200px;
  border-radius: 6px;
  display: none;
}

/* Dropdown links */

.dropdown-menu li a {
  display: block;
  padding: 10px 16px;
  color: #000;
  text-decoration: none;
  background: none;
}

.dropdown-menu li a:hover {
  background: rgba(0,0,0,0.05);
  color: var(--clr-orange);
}

/* Show dropdown */

.dropdown:hover .dropdown-menu {
  display: block;
}

/* ========================================================================== 
   WHATSAPP BUTTON
   ========================================================================== */

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #25D366;
  color: var(--clr-white);
}

.btn-whatsapp:hover {
  background: #1ebe5d;
  color: var(--clr-white);
  box-shadow: 0 0 24px 4px rgba(37,211,102,0.25);
  transform: translateY(-1px);
}

.btn-whatsapp:visited,
.btn-whatsapp:active,
.btn-whatsapp:focus {
  color: var(--clr-white);
  background: #25D366;
}

.btn-whatsapp svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.6rem;
  border-radius: var(--radius);
  transition: background var(--transition);
  -webkit-tap-highlight-color: transparent;
}
.nav-toggle:hover {
  background: rgba(0,0,0,0.06);
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: #111111;
  margin: 5.5px 0;
  border-radius: 2px;
  transition: var(--transition);
}

/* --- CTA Button --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--ff-heading);
  font-weight: 700;
  font-size: var(--fs-sm);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.85rem 1.8rem;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}

.btn-primary {
  background: var(--clr-orange);
  color: var(--clr-white);
  box-shadow: 0 0 0 0 var(--clr-orange-glow);
}
.btn-primary:hover {
  background: var(--clr-orange-hover);
  color: var(--clr-white);
  box-shadow: 0 0 24px 4px var(--clr-orange-glow);
  transform: translateY(-1px);
}
.btn-primary:visited,
.btn-primary:active,
.btn-primary:focus {
  color: var(--clr-white);
  background: var(--clr-orange);
}
.btn-outline:visited {
  color: var(--clr-orange);
}

.btn-outline {
  background: transparent;
  color: var(--clr-orange);
  border: 2px solid var(--clr-orange);
}
.btn-outline:hover {
  background: var(--clr-orange);
  color: var(--clr-white);
}

.btn-sm {
  padding: 0.6rem 1.2rem;
  font-size: var(--fs-xs);
}

.btn-lg {
  padding: 1.1rem 2.4rem;
  font-size: var(--fs-base);
}

/* Phone CTA in header */
.header-phone {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--ff-heading);
  font-weight: 700;
  font-size: var(--fs-sm);
  color: var(--clr-orange);
  text-decoration: none;
}
.header-phone:hover { color: var(--clr-orange-hover); }

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero {
  position: relative;
  padding: calc(var(--space-3xl) + 60px) 0 var(--space-3xl);
  overflow: hidden;
  min-height: 85vh;
  display: flex;
  align-items: center;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-size: cover;     
  background-position: center;
  background-repeat: no-repeat; 
  z-index: 1;
}

/* Diagonal steel beam accent */
.hero::after {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 200%;
  background: linear-gradient(165deg, transparent 45%, var(--clr-orange-muted) 45%, var(--clr-orange-muted) 46%, transparent 46%);
  z-index: 0;
  opacity: 0.5;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--clr-orange-muted);
  border: 1px solid rgba(232,106,30,0.25);
  color: var(--clr-orange);
  font-family: var(--ff-heading);
  font-size: var(--fs-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.4rem 1rem;
  border-radius: 100px;
  margin-bottom: var(--space-md);
}

.hero-badge .dot {
  width: 6px;
  height: 6px;
  background: var(--clr-orange);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero h1 {
  font-size: clamp(2.5rem, 5vw, var(--fs-5xl));
  max-width: 750px;
  margin-bottom: var(--space-md);
}

.hero h1 .highlight {
  color: var(--clr-orange);
  position: relative;
}

.hero-sub {
  font-size: var(--fs-lg);
  color: var(--clr-light-grey);
  max-width: 600px;
  margin-bottom: var(--space-lg);
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-bottom: var(--space-xl);
}

.hero-stats {
  display: flex;
  gap: var(--space-xl);
}

.hero-stat {
  border-left: 2px solid var(--clr-orange);
  padding-left: var(--space-sm);
}

.hero-stat-number {
  font-family: var(--ff-heading);
  font-weight: 800;
  font-size: var(--fs-2xl);
  color: var(--clr-white);
  line-height: 1;
}

.hero-stat-label {
  font-size: var(--fs-sm);
  color: var(--clr-light);
  margin-top: 0.25rem;
}

/* ==========================================================================
   SECTIONS
   ========================================================================== */
section {
  padding: var(--space-2xl) 0;
}

.section-label {
  display: inline-block;
  font-family: var(--ff-heading);
  font-size: var(--fs-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--clr-orange);
  margin-bottom: var(--space-sm);
}

.section-heading {
  font-size: clamp(1.75rem, 3.5vw, var(--fs-3xl));
  max-width: 700px;
  margin-bottom: var(--space-md);
}

.section-intro {
  font-size: var(--fs-md);
  color: var(--clr-slate);
  max-width: 640px;
  margin-bottom: var(--space-xl);
}

/* Alternating bg */
.section-dark { background: var(--clr-white); }
.section-darker { background: var(--clr-off-white); }
.section-slate { background: var(--clr-light); }

/* ==========================================================================
   ANSWER CAPSULE (AEO)
   ========================================================================== */
.answer-capsule {
  background: var(--clr-off-white);
  border-left: 4px solid var(--clr-orange);
  padding: var(--space-md) var(--space-lg);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  margin-bottom: var(--space-xl);
  font-size: var(--fs-md);
  line-height: 1.8;
}

.answer-capsule strong {
  color: var(--clr-black);
}

/* ==========================================================================
   SERVICE CARDS
   ========================================================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--space-md);
}

.service-card {
  background: var(--clr-black);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--clr-orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.service-card:hover {
  border-color: rgba(232,106,30,0.2);
  transform: translateY(-2px);
}
.service-card:hover::before { transform: scaleX(1); }

.service-card-icon {
  width: 48px;
  height: 48px;
  background: var(--clr-orange-muted);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-sm);
  font-size: 1.5rem;
}

.service-card h1 {
  font-size: var(--fs-lg);
  margin-bottom: var(--space-xs);
}

.service-card p {
  color: var(--clr-light);
  font-size: var(--fs-sm);
  line-height: 1.7;
}

.service-card .card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-family: var(--ff-heading);
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--clr-orange);
  margin-top: var(--space-sm);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.service-card .card-link:hover { gap: 0.6rem; }

/* ==========================================================================
   PRICING TABLE
   ========================================================================== */
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--fs-sm);
}

.pricing-table thead {
  background: var(--clr-dark-alt);
}

.pricing-table th {
  font-family: var(--ff-heading);
  font-weight: 700;
  font-size: var(--fs-xs);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--clr-orange);
  padding: var(--space-sm) var(--space-md);
  text-align: left;
  border-bottom: 2px solid var(--clr-orange);
}

.pricing-table td {
  padding: var(--space-sm) var(--space-md);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  color: var(--text-primary);
}

.pricing-table tbody tr:hover {
  background: rgba(232,106,30,0.05);
}

.pricing-table .price {
  font-family: var(--ff-heading);
  font-weight: 700;
  color: var(--clr-orange);
}

/* ==========================================================================
   LOCATION GRID
   ========================================================================== */
.location-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-sm);
}

.location-card {
  background: var(--clr-dark-alt);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  padding: var(--space-md);
  text-decoration: none;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.location-card:hover {
  border-color: var(--clr-orange);
  background: rgba(8, 8, 8, 0.9);
}

.location-card .loc-icon {
  color: var(--clr-orange);
  font-size: var(--fs-xl);
  flex-shrink: 0;
}

.location-card .loc-name {
  font-family: var(--ff-heading);
  font-weight: 600;
  color: var(--clr-white);
  font-size: var(--fs-base);
}

.location-card .loc-detail {
  font-size: var(--fs-sm);
  color: var(--clr-light-grey);
}

/* ==========================================================================
   FAQ ACCORDION
   ========================================================================== */
.faq-list {
  max-width: 800px;
}

.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: var(--space-md) 0;
  font-family: var(--ff-heading);
  font-size: var(--fs-lg);
  font-weight: 600;
  color: var(--clr-black);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-sm);
  transition: color var(--transition);
}

.faq-question:hover { color: var(--clr-orange); }

.faq-question .icon {
  font-size: var(--fs-xl);
  color: var(--clr-orange);
  transition: transform var(--transition);
  flex-shrink: 0;
}

.faq-item.open .faq-question .icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.open .faq-answer {
  max-height: 500px;
  padding-bottom: var(--space-md);
}

.faq-answer p {
  color: var(--clr-slate);
  line-height: 1.8;
  font-size: var(--fs-base);
}

/* ==========================================================================
   TRUST / SOCIAL PROOF
   ========================================================================== */
.trust-bar {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-lg);
  align-items: center;
  justify-content: center;
  padding: var(--space-lg) 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--ff-heading);
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--clr-black);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.trust-item .check {
  color: var(--clr-green);
  font-size: var(--fs-lg);
}

/* ==========================================================================
   CTA BANNER
   ========================================================================== */
.cta-banner {
  background: linear-gradient(135deg, var(--clr-dark) 0%, var(--clr-dark-alt) 100%);
  border: 1px solid rgba(232,106,30,0.15);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 70% 30%, var(--clr-orange-muted) 0%, transparent 50%);
  pointer-events: none;
}

.cta-banner > * { position: relative; z-index: 1; }

.cta-banner h2 { margin-bottom: var(--space-sm); }

.cta-banner p {
  color: var(--clr-light);
  max-width: 500px;
  margin: 0 auto var(--space-md);
}

.cta-banner .cta-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.cta-banner .phone-number {
  font-family: var(--ff-heading);
  font-weight: 700;
  font-size: var(--fs-xl);
  color: var(--clr-white);
  display: block;
  margin-top: var(--space-sm);
}

/* ==========================================================================
   INTERNAL LINKS BAR
   ========================================================================== */
.related-pages {
  background: var(--clr-dark);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  margin-top: var(--space-xl);
}

.related-pages h3 {
  font-size: var(--fs-base);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--clr-light);
  margin-bottom: var(--space-sm);
}

.related-links {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.related-links a {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  background: var(--clr-dark-alt);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 0.5rem 1rem;
  border-radius: 100px;
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--clr-white);
  transition: all var(--transition);
}

.related-links a:hover {
  border-color: var(--clr-orange);
  color: var(--clr-orange);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  background: var(--clr-dark);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: var(--space-xl) 0 var(--space-lg);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

.footer-brand p {
  color: var(--clr-light);
  font-size: var(--fs-sm);
  margin-top: var(--space-sm);
  max-width: 300px;
}

.footer-col h4 {
  font-size: var(--fs-sm);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--clr-white);
  margin-bottom: var(--space-sm);
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 0.4rem;
}

.footer-col a {
  color: var(--clr-muted);
  font-size: var(--fs-sm);
}
.footer-col a:visited { color: var(--clr-muted); }
.footer-col a:hover { color: var(--clr-orange); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: var(--space-md);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: var(--fs-xs);
  color: var(--clr-muted);
}

/* ==========================================================================
   CONTACT FORM
   ========================================================================== */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

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

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-group label {
  font-family: var(--ff-heading);
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--clr-slate);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--clr-dark);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 0.85rem 1rem;
  font-family: var(--ff-body);
  font-size: var(--fs-base);
  color: var(--clr-off-white);
  transition: border-color var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--clr-orange);
  box-shadow: 0 0 0 3px var(--clr-orange-muted);
}

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

/* ==========================================================================
   BREADCRUMBS
   ========================================================================== */
.breadcrumbs {
  padding: calc(60px + var(--space-md)) 0 0;
  font-size: var(--fs-sm);
  color: var(--clr-muted);
}

.breadcrumbs a {
  color: var(--clr-light);
}

.breadcrumbs .sep {
  margin: 0 0.4rem;
  color: var(--clr-muted);
}

/* ==========================================================================
   CONTENT AREA (for article / service pages)
   ========================================================================== */
.content-area {
  max-width: 800px;
}

.content-area h2 {
  margin-top: var(--space-xl);
  padding-top: var(--space-md);
  border-top: 1px solid rgba(255,255,255,0.06);
}

.content-area h2:first-of-type {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.content-area ul, .content-area ol {
  padding-left: 1.5rem;
  margin-bottom: var(--space-sm);
  color: var(--clr-slate);
}

.content-area li {
  margin-bottom: 0.5rem;
  line-height: 1.7;
}

.content-area li strong {
  color: var(--clr-black);
}

/* ==========================================================================
   TWO-COLUMN LAYOUT
   ========================================================================== */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: start;
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
/* ==========================================================================
   SCROLL REVEAL ANIMATIONS
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-left.revealed {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-right.revealed {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-scale.revealed,
.revealed .reveal-scale {
  opacity: 1;
  transform: scale(1);
}

.reveal-child {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-child.revealed,
.revealed .reveal-child {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger delays via CSS for common grids */
.reveal .service-card:nth-child(1),
.reveal .location-card:nth-child(1) { transition-delay: 0s; }
.reveal .service-card:nth-child(2),
.reveal .location-card:nth-child(2) { transition-delay: 0.08s; }
.reveal .service-card:nth-child(3),
.reveal .location-card:nth-child(3) { transition-delay: 0.16s; }
.reveal .service-card:nth-child(4),
.reveal .location-card:nth-child(4) { transition-delay: 0.24s; }
.reveal .service-card:nth-child(5),
.reveal .location-card:nth-child(5) { transition-delay: 0.32s; }
.reveal .service-card:nth-child(6) { transition-delay: 0.4s; }

/* ==========================================================================
   PARALLAX HERO BACKGROUNDS
   ========================================================================== */
.hero-bg-wrap {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  overflow: hidden;
  z-index: 0;
}

.parallax-bg {
  position: absolute;
  top: -15%;
  left: 0;
  width: 100%;
  height: 130%;
  object-fit: cover;
  will-change: transform;
  transform: translate3d(0, 0, 0) scale(1.15);
}

/* Fallback gradient when images aren't loaded */
.hero-bg-wrap {
  background:
    linear-gradient(135deg,
      var(--clr-dark) 0%,
      var(--clr-dark-alt) 10%,
      var(--clr-slate) 30%,
      var(--clr-dark) 50%);
}

.hero-bg-wrap::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background:
    linear-gradient(180deg,
      rgba(14,16,20,0.85) 0%,
      rgba(14,16,20,0.5) 40%,
      rgba(14,16,20,0.7) 70%,
      rgba(14,16,20,0.95) 100%);
  z-index: 1;
}

/* Ken Burns slow zoom on hero images */
@keyframes kenBurns {
  0%   { transform: scale(1.0) translate3d(0, 0, 0); }
  100% { transform: scale(1.12) translate3d(-1%, -1%, 0); }
}

.hero-img-animate {
  animation: kenBurns 25s ease-in-out infinite alternate;
}

/* ==========================================================================
   HEADER ENHANCEMENTS
   ========================================================================== */
.site-header {
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
              background 0.35s ease;
}

.site-header.scrolled {
  background: var(--header-bg-scrolled);
  box-shadow: 0 2px 20px rgba(0,0,0,0.4);
}

.site-header.header-hidden {
  transform: translateY(-100%);
}

/* Reading progress bar */
.reading-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--clr-orange), var(--clr-orange-hover));
  z-index: 1001;
  transition: width 0.1s linear;
}

/* ==========================================================================
   MOBILE NAV DRAWER
   ========================================================================== */
@media (max-width: 768px) {

  /* Drawer panel */
  .nav-links {
    display: flex !important;
    flex-direction: column;
    align-items: stretch;
    position: fixed;
    top: 0;
    right: -100%;
    width: min(320px, 88vw);
    height: 100dvh;
    background: #ffffff;
    border-left: 1px solid rgba(0,0,0,0.08);
    padding: 0;
    gap: 0;
    transition: right 0.38s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
    box-shadow: -8px 0 48px rgba(0,0,0,0.18);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .nav-links.nav-open {
    right: 0;
  }

  /* Drawer header strip */
  .nav-links::before {
    content: 'Menu';
    display: block;
    font-family: var(--ff-heading);
    font-weight: 800;
    font-size: var(--fs-lg);
    color: #111111;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 1.4rem 1.6rem 1.2rem;
    border-bottom: 2px solid var(--clr-orange);
    background: #f8f8f8;
    flex-shrink: 0;
  }

  /* Each list item */
  .nav-links > li {
    border-bottom: 1px solid rgba(0,0,0,0.07);
  }

  .nav-links > li:last-child {
    border-bottom: none;
    padding: 1.2rem 1.6rem;
    margin-top: auto;
  }

  /* All links inside drawer */
  .nav-links a {
    display: flex !important;
    align-items: center;
    width: 100%;
    font-family: var(--ff-heading);
    font-size: 1rem;
    font-weight: 600;
    color: #111111 !important;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 1.05rem 1.6rem;
    background: transparent;
    background-image: none !important;
    -webkit-background-clip: unset !important;
    background-clip: unset !important;
    transition: background var(--transition), color var(--transition), padding-left var(--transition);
    min-height: 56px; /* large tap target */
    border-bottom: none !important;
    text-decoration: none;
  }

  .nav-links a:hover,
  .nav-links a:focus {
    background: rgba(232, 106, 30, 0.08);
    color: var(--clr-orange) !important;
    padding-left: 2rem;
    outline: none;
  }

  /* Orange accent bar on active link */
  .nav-links a::before {
    content: '';
    display: inline-block;
    width: 3px;
    height: 0;
    background: var(--clr-orange);
    border-radius: 2px;
    margin-right: 0;
    transition: height 0.2s ease, margin-right 0.2s ease;
    flex-shrink: 0;
    align-self: center;
  }
  .nav-links a:hover::before,
  .nav-links a:focus::before {
    height: 18px;
    margin-right: 10px;
  }

  /* Remove underline pseudo from desktop */
  .nav-links a::after {
    display: none !important;
  }

  /* CTA button at bottom */
  .nav-links a.btn {
    display: inline-flex !important;
    width: 100%;
    justify-content: center;
    text-align: center;
    min-height: 52px;
    padding: 1rem 1.6rem !important;
    border-radius: var(--radius);
    margin: 0;
    font-size: var(--fs-sm);
  }

  .nav-links a.btn::before {
    display: none;
  }

  .nav-links a.btn-primary,
  .nav-links a.btn-primary:hover,
  .nav-links a.btn-primary:focus {
    color: #ffffff !important;
    background: var(--clr-orange) !important;
    background-image: none !important;
    padding-left: 1.6rem !important;
  }

  .nav-links a.btn-primary:hover {
    background: #c95a12 !important;
  }

  /* Backdrop */
  .nav-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.55);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
    z-index: 998;
  }

  .nav-overlay.active {
    opacity: 1;
    pointer-events: all;
  }

  /* Hamburger → X animation */
  .nav-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .nav-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
  }
  .nav-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  /* Active hamburger turns orange */
  .nav-toggle.active span {
    background: var(--clr-orange);
  }

  /* ------------------------------------------------------------------
     MOBILE DROPDOWN ACCORDION
  ------------------------------------------------------------------ */

  /* Services parent trigger row */
  .nav-links .dropdown > a {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    user-select: none;
  }

  /* Chevron icon — replace the ▾ with a CSS arrow for control */
  .nav-links .dropdown > a .arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(0,0,0,0.06);
    font-size: 0.8rem;
    margin-left: auto;
    flex-shrink: 0;
    transition: transform 0.3s ease, background 0.2s ease;
    line-height: 1;
  }

  /* Rotate chevron when open */
  .nav-links .dropdown.mob-open > a .arrow {
    transform: rotate(180deg);
    background: var(--clr-orange);
    color: #fff;
  }

  /* Orange left bar on hover for trigger */
  .nav-links .dropdown > a:hover,
  .nav-links .dropdown.mob-open > a {
    background: rgba(232, 106, 30, 0.07);
    color: var(--clr-orange) !important;
  }

  /* Sub-menu: collapsed by default on mobile */
  .nav-links .dropdown-menu {
    position: static !important;
    display: block !important;
    max-height: 0;
    overflow: hidden;
    background: #f5f5f5;
    border-top: none;
    border-bottom: none;
    border-radius: 0;
    min-width: unset;
    padding: 0;
    margin: 0;
    box-shadow: none;
    transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  }

  /* Expanded state driven by JS .mob-open class */
  .nav-links .dropdown.mob-open .dropdown-menu {
    border-top: 1px solid rgba(0,0,0,0.07);
    border-bottom: 1px solid rgba(0,0,0,0.07);
  }

  /* Sub-menu links */
  .nav-links .dropdown-menu li {
    border-bottom: 1px solid rgba(0,0,0,0.05);
  }
  .nav-links .dropdown-menu li:last-child {
    border-bottom: none;
  }

  .nav-links .dropdown-menu li a {
    display: flex !important;
    align-items: center;
    padding: 0.9rem 1.6rem 0.9rem 2.4rem !important;
    font-size: 0.85rem !important;
    font-weight: 600;
    color: #333 !important;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    min-height: 50px;
    background-image: none !important;
    -webkit-background-clip: unset !important;
    background-clip: unset !important;
    transition: background var(--transition), color var(--transition), padding-left var(--transition);
  }

  /* Orange dot bullet */
  .nav-links .dropdown-menu li a::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--clr-orange);
    margin-right: 10px;
    flex-shrink: 0;
    opacity: 0.7;
    transition: opacity 0.2s, transform 0.2s;
  }

  .nav-links .dropdown-menu li a:hover {
    background: rgba(232, 106, 30, 0.1) !important;
    color: var(--clr-orange) !important;
    padding-left: 2.8rem !important;
  }
  .nav-links .dropdown-menu li a:hover::before {
    opacity: 1;
    transform: scale(1.3);
  }

  /* Remove the generic ::before left-bar from sub-links */
  .nav-links .dropdown-menu li a::after {
    display: none !important;
  }
}

/* ==========================================================================  
   LIGHT MODE  
   ========================================================================== */

[data-theme="light"] {
  --clr-black: #f6f7f9;
  --clr-dark: #ffffff;
  --clr-dark-alt: #f1f3f6;
  --clr-slate: #e5e7eb;

  --clr-light: #374151;
  --clr-muted: #6b7280;
  --clr-off-white: #111827;
  --clr-white: #0b0f19;

  /* semantic remap */
  --bg-body: #f6f7f9;
  --bg-surface: #ffffff;
  --bg-elevated: #f1f3f6;

  --text-primary: #0b0f19;
  --text-secondary: #374151;
  --text-muted: #6b7280;

  --border-subtle: rgba(0,0,0,0.08);
  --border-strong: rgba(0,0,0,0.14);

  --header-bg: rgba(255,255,255,0.9);
  --header-bg-scrolled: rgba(255,255,255,0.98);

  /* shadows softer in light mode */
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 6px 18px rgba(0,0,0,0.10);
  --shadow-lg: 0 18px 48px rgba(0,0,0,0.12);
}

[data-theme="light"] body::after {
  opacity: 0.15;
}

/* ==========================================================================
   CURSOR GLOW (desktop)
   ========================================================================== */
.cursor-glow {
  position: fixed;
  top: 0;
  left: 0;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,106,30,0.06) 0%, transparent 70%);
  pointer-events: none;
  z-index: 9998;
  opacity: 0.6;
  transition: opacity 0.3s ease;
  will-change: transform;
}

.cursor-glow.glow-active {
  opacity: 1;
  background: radial-gradient(circle, rgba(232,106,30,0.1) 0%, transparent 70%);
}

/* ==========================================================================
   DIAGONAL SECTION DIVIDERS
   ========================================================================== */
.section-divider {
  position: relative;
  height: 80px;
  overflow: hidden;
  margin-top: -1px;
}

.section-divider::before {
  content: '';
  position: absolute;
  top: 0; left: -5%;
  width: 110%;
  height: 100%;
  background: var(--clr-dark);
  transform: skewY(-2deg);
  transform-origin: top left;
}

.section-divider.divider-to-darker::before {
  background: var(--clr-dark-alt);
}

.section-divider.divider-to-black::before {
  background: var(--clr-black);
}

/* ==========================================================================
   GLOWING ACCENT LINE
   ========================================================================== */
.glow-line {
  height: 2px;
  background: linear-gradient(90deg,
    transparent 0%,
    var(--clr-orange) 20%,
    var(--clr-orange-hover) 50%,
    var(--clr-orange) 80%,
    transparent 100%);
  opacity: 0.5;
  position: relative;
}

.glow-line::after {
  content: '';
  position: absolute;
  top: -4px; left: 0; right: 0;
  height: 10px;
  background: linear-gradient(90deg,
    transparent 0%,
    var(--clr-orange-glow) 20%,
    var(--clr-orange-glow) 80%,
    transparent 100%);
  filter: blur(6px);
}

/* ==========================================================================
   ENHANCED SERVICE CARDS WITH IMAGES
   ========================================================================== */
.service-card-img {
  position: relative;
  overflow: hidden;
  background: var(--clr-off-white);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

.service-card-img .card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  display: block;
  background: linear-gradient(135deg, var(--clr-off-white) 0%, var(--clr-white) 100%);
}

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

.service-card-img .card-image-overlay {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 200px;
  background: linear-gradient(180deg, transparent 40%, rgba(14,16,20,0.7) 100%);
  pointer-events: none;
  z-index: 1;
}

/* Orange tint on hover */
.service-card-img::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 200px;
  background: rgba(232,106,30,0.1);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  z-index: 2;
}

.service-card-img:hover::after {
  opacity: 1;
}

.service-card-img .card-content {
  padding: var(--space-md) var(--space-lg) var(--space-lg);
  position: relative;
  z-index: 3;
}

.service-card-img::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--clr-orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
  z-index: 4;
}

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

.service-card-img:hover {
  border-color: rgba(232,106,30,0.2);
  box-shadow: var(--shadow-lg);
}

/* ==========================================================================
   IMAGE LAZY LOAD FADE
   ========================================================================== */
img[loading="lazy"] {
  opacity: 0;
  transition: opacity 0.5s ease;
}

img[loading="lazy"].loaded {
  opacity: 1;
}

/* ==========================================================================
   FORM FOCUS ENHANCEMENTS
   ========================================================================== */
.form-group.focused label {
  color: var(--clr-orange);
  transform: translateY(-2px);
  transition: color var(--transition), transform var(--transition);
}

.form-group label {
  transition: color var(--transition), transform var(--transition);
}

/* ==========================================================================
   ENHANCED FAQ (smooth height via JS)
   ========================================================================== */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              padding 0.3s ease;
  padding-bottom: 0;
}

.faq-item.open .faq-answer {
  padding-bottom: var(--space-md);
}

/* ==========================================================================
   GRADIENT TEXT (for hero accents)
   ========================================================================== */
.gradient-text {
  background: linear-gradient(135deg, var(--clr-orange) 0%, #ff9a56 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 768px) {
  .nav-toggle { display: block; }
  .hero h1 { font-size: var(--fs-3xl); }
  .hero-stats { flex-direction: column; gap: var(--space-sm); }
  .services-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--space-lg); }
  .two-col { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .location-grid { grid-template-columns: 1fr 1fr; }
  .hero-actions { flex-direction: column; }
  .cursor-glow { display: none; }
  .section-divider { height: 50px; }
  .service-card-img .card-image { height: 160px; }
  .service-card-img .card-image-overlay { height: 160px; }
  .service-card-img::after { height: 160px; }
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .location-grid { grid-template-columns: 1fr; }
  h1 { font-size: var(--fs-2xl); }
  h2 { font-size: var(--fs-xl); }
}

    .contact-card {
      background: var(--clr-dark-alt);
      border: 1px solid rgba(255,255,255,0.07);
      border-radius: var(--radius-lg);
      padding: var(--space-xl);
      display: flex;
      flex-direction: column;
      gap: var(--space-sm);
      transition: border-color 0.25s, transform 0.25s;
    }
    .contact-card:hover {
      border-color: var(--clr-orange);
      transform: translateY(-3px);
    }
    .contact-card-icon {
      width: 52px;
      height: 52px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.4rem;
      margin-bottom: var(--space-xs);
      flex-shrink: 0;
    }
    .contact-card-label {
      font-family: var(--ff-heading);
      font-size: var(--fs-sm);
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: var(--clr-light);
    }
    .contact-card-value {
      font-family: var(--ff-heading);
      font-size: var(--fs-xl);
      font-weight: 800;
      line-height: 1.2;
      margin: 0.15rem 0;
    }
    .contact-card-note {
      font-size: var(--fs-sm);
      color: var(--clr-muted);
    }
    .contact-cards-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: var(--space-md);
      margin-top: var(--space-xl);
    }
    .hours-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: var(--space-md);
      margin-top: var(--space-lg);
    }
    .hours-card {
      background: var(--clr-dark-alt);
      border: 1px solid rgba(255,255,255,0.06);
      border-radius: var(--radius-md);
      padding: var(--space-lg);
      text-align: center;
    }
    .hours-day {
      font-family: var(--ff-heading);
      font-weight: 700;
      font-size: var(--fs-base);
      color: var(--clr-light);
      margin-bottom: 0.3rem;
    }
    .hours-time {
      font-size: var(--fs-xl);
      font-family: var(--ff-heading);
      font-weight: 800;
      color: var(--clr-orange);
    }
    .hours-note {
      font-size: var(--fs-xs);
      color: var(--clr-muted);
      margin-top: 0.3rem;
    }
    .coverage-list {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
      gap: var(--space-sm);
      margin-top: var(--space-lg);
      list-style: none;
      padding: 0;
    }
    .coverage-list li {
      background: var(--clr-dark-alt);
      border: 1px solid rgba(255,255,255,0.06);
      border-radius: var(--radius-md);
      padding: 0.9rem 1.1rem;
      display: flex;
      align-items: center;
      gap: 0.6rem;
      font-family: var(--ff-heading);
      font-weight: 600;
      font-size: var(--fs-sm);
      color: var(--clr-light);
    }
    .coverage-list li span.dot {
      width: 8px;
      height: 8px;
      background: var(--clr-orange);
      border-radius: 50%;
      flex-shrink: 0;
    }
    .cta-split {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: var(--space-md);
      margin-top: var(--space-xl);
    }
    @media (max-width: 640px) {
      .cta-split { grid-template-columns: 1fr; }
    }
    .cta-block {
      border-radius: var(--radius-lg);
      padding: var(--space-xl);
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: var(--space-sm);
    }
