/* ============================================================
   DNA Hail Solutions — Consolidated Stylesheet
   Shared across index.html and blog.php
   ============================================================ */

:root {
  --black: #040404;
  --deep: #080808;
  --dark: #0e0e0e;
  --card: #111111;
  --card2: #141414;
  --gold: #c6942f;
  --gold-light: #e7c56b;
  --gold-bright: #f5d97a;
  --gold-dim: #8a6520;
  --silver: #c8c8c8;
  --silver-light: #e8e8e8;
  --orange: #ff6b00;
  --orange-dim: #cc5500;
  --white: #ffffff;
  --gray: #888888;
  --border: rgba(198,148,47,0.15);
  --border-dim: rgba(255,255,255,0.06);
  --shadow-gold: 0 0 40px rgba(198,148,47,0.12);
  --shadow-heavy: 0 24px 60px rgba(0,0,0,0.6);
  --radius: 4px;
  --radius-lg: 8px;
  --max: 1240px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Barlow', sans-serif;
  background: var(--black);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container {
  width: min(92%, var(--max));
  margin: 0 auto;
}

/* ─── NOISE OVERLAY ─── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.025;
  pointer-events: none;
  z-index: 9999;
}

/* ─── TOPBAR ─── */
.topbar {
  position: sticky;
  top: 0;
  z-index: 900;
  background: rgba(4,4,4,0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  /* needed for mobile dropdown positioning */
  isolation: isolate;
}

.topbar::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 1;   /* allow brand to give up space instead of overflowing */
  min-width: 0;
}

.brand img {
  width: 200px;
  height: auto;
  filter: drop-shadow(0 0 12px rgba(198,148,47,0.4));
  transition: filter 0.3s;
  flex-shrink: 0;
}

.brand:hover img {
  filter: drop-shadow(0 0 20px rgba(231,197,107,0.6));
}

.brand-text {
  display: block;
  line-height: 1.05;
  min-width: 0;
}

.brand-text strong {
  display: block;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 1.02rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: var(--white);
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.brand-text span {
  display: block;
  font-size: 0.72rem;
  color: var(--gold-light);
  letter-spacing: 1.35px;
  text-transform: uppercase;
  font-family: 'Rajdhani', sans-serif;
  white-space: nowrap;
  margin-top: 3px;
}

.menu {
  display: flex;
  gap: 18px;
  align-items: center;
  flex-wrap: nowrap;
  flex-shrink: 0;
}

.menu a {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--silver);
  transition: color 0.2s;
  position: relative;
  white-space: nowrap;
}

.menu a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 1px;
  background: var(--gold-light);
  transform: scaleX(0);
  transition: transform 0.25s;
}

.menu a:hover { color: var(--gold-bright); }
.menu a:hover::after { transform: scaleX(1); }

.menu .cta-nav {
  background: linear-gradient(135deg, var(--gold), var(--gold-dim));
  color: #000 !important;
  padding: 9px 22px;
  border-radius: 2px;
  font-weight: 700;
  letter-spacing: 2px;
  transition: all 0.25s;
  white-space: nowrap;
}

.menu .cta-nav:hover {
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  transform: translateY(-1px);
}

.menu .cta-nav::after { display: none; }



/* ─── LOCATIONS DROPDOWN ─── */
.nav-dropdown {
  position: relative;
  display: flex;
  align-items: center;
}

.menu .nav-drop-toggle {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--silver);
  background: transparent;
  border: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0;
  position: relative;
  white-space: nowrap;
  transition: color 0.2s;
}

.menu .nav-drop-toggle::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gold-light);
  transform: scaleX(0);
  transition: transform 0.25s;
}

.menu .nav-drop-toggle:hover,
.nav-dropdown.open .nav-drop-toggle,
.nav-dropdown:focus-within .nav-drop-toggle {
  color: var(--gold-bright);
}

.menu .nav-drop-toggle:hover::after,
.nav-dropdown.open .nav-drop-toggle::after,
.nav-dropdown:focus-within .nav-drop-toggle::after {
  transform: scaleX(1);
}

.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 16px);
  left: 0;
  min-width: 280px;
  padding: 10px;
  background: rgba(4,4,4,0.98);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-heavy), var(--shadow-gold);
  z-index: 1000;
}

.nav-dropdown-menu::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: -17px;
  height: 17px;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  display: grid;
  gap: 2px;
}

.nav-dropdown-menu a {
  display: block;
  padding: 10px 14px;
  border-bottom: 1px solid var(--border-dim);
  color: var(--silver);
  text-transform: none;
  letter-spacing: 0.7px;
  font-size: 0.95rem;
  white-space: nowrap;
}

.nav-dropdown-menu a:last-child { border-bottom: 0; }
.nav-dropdown-menu a::after { display: none; }

.nav-dropdown-menu a:hover {
  color: var(--gold-bright);
  background: rgba(198,148,47,0.08);
}

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

.hero-bg {
  position: absolute;
  inset: 0;
  background: #040404;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 15% 50%, rgba(198,148,47,0.06) 0%, transparent 60%),
    linear-gradient(160deg, rgba(4,3,2,0.52) 0%, rgba(4,4,4,0.3) 50%, rgba(4,4,4,0.45) 100%);
  z-index: 1;
}

/* animated grid lines */
.hero-grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(198,148,47,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(198,148,47,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black, transparent);
  z-index: 2;
}

/* diagonal accent line */
.hero::before {
  content: '';
  position: absolute;
  top: -10%;
  right: 8%;
  width: 1px;
  height: 130%;
  background: linear-gradient(180deg, transparent, rgba(198,148,47,0.3), rgba(198,148,47,0.08), transparent);
  transform: rotate(-12deg);
  z-index: 3;
}

.hero-inner {
  position: relative;
  z-index: 5;
  width: 100%;
  padding: 120px 0 100px;
}

.hero-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 24px;
}

.eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold-light);
}

h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3.5rem, 7vw, 7rem);
  line-height: 0.95;
  letter-spacing: 2px;
  margin-bottom: 28px;
}

.h1-gold { color: var(--gold-light); }
.h1-white { color: var(--white); }
.h1-silver {
  color: transparent;
  -webkit-text-stroke: 1px rgba(200,200,200,0.4);
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--silver);
  line-height: 1.75;
  max-width: 600px;
  margin-bottom: 40px;
  font-weight: 300;
}

.hero-sub strong { color: var(--white); font-weight: 600; }

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 40px;
  white-space: nowrap;
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 50%, var(--gold-dim) 100%);
  color: #000;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all 0.3s;
  box-shadow: 0 4px 30px rgba(198,148,47,0.3);
  position: relative;
  overflow: hidden;
}

.btn-gold::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 40px rgba(198,148,47,0.45);
}

.btn-gold:hover::before { opacity: 1; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 40px;
  white-space: nowrap;
  border: 1px solid rgba(198,148,47,0.5);
  color: var(--gold-light);
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all 0.3s;
}

.btn-ghost:hover {
  background: rgba(198,148,47,0.08);
  border-color: var(--gold-light);
  transform: translateY(-2px);
}

.hero-stats {
  display: flex;
  gap: 0;
  border-top: 1px solid var(--border-dim);
  padding-top: 40px;
}

.stat {
  flex: 1;
  padding-right: 30px;
  border-right: 1px solid var(--border-dim);
  margin-right: 30px;
}

.stat:last-child { border-right: none; margin-right: 0; }

.stat-val {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.8rem;
  line-height: 1;
  color: var(--gold-light);
  letter-spacing: 2px;
}

.stat-label {
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray);
  margin-top: 4px;
}

/* Hero right panel */
.hero-panel {
  position: relative;
}

.hero-card {
  background: linear-gradient(145deg, #161412, #0e0d0b);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-heavy), var(--shadow-gold);
  position: relative;
  overflow: hidden;
}

.hero-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--gold-light), var(--gold), transparent);
}

.hero-card .logo-wrap {
  text-align: center;
  margin-bottom: 28px;
  padding: 20px;
  background: radial-gradient(ellipse at center, rgba(198,148,47,0.08), transparent 70%);
  border-radius: var(--radius-lg);
}

.hero-card .logo-wrap img {
  width: 400px;
  margin: 0 auto;
  filter: drop-shadow(0 0 20px rgba(198,148,47,0.3));
}

.hero-card h3 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 20px;
}

.check-list {
  list-style: none;
  display: grid;
  gap: 0;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border-dim);
  font-size: 0.95rem;
  color: var(--silver);
}

.check-list li:last-child { border-bottom: none; }

.check-list li::before {
  content: '◆';
  color: var(--gold);
  font-size: 0.6rem;
  margin-top: 5px;
  flex-shrink: 0;
}

.phone-hero {
  margin-top: 24px;
  padding: 20px 24px;
  background: linear-gradient(135deg, rgba(198,148,47,0.12), rgba(198,148,47,0.05));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.phone-hero-label {
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gray);
}

.phone-hero-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.9rem;
  letter-spacing: 3px;
  color: var(--white);
  transition: color 0.2s;
}

.phone-hero-num:hover { color: var(--gold-light); }

.phone-hero-icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dim));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.phone-hero-icon svg { width: 18px; height: 18px; fill: #000; }

/* ─── SECTION BASE ─── */
section { padding: 100px 0; }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

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

h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 0.95;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--silver);
  max-width: 700px;
  line-height: 1.75;
  font-weight: 300;
}

.section-head { margin-bottom: 56px; }

/* ─── DARK BAND ─── */
.dark-band {
  background:
    linear-gradient(180deg, #0a0904 0%, #0c0c0c 100%);
  border-top: 1px solid var(--border-dim);
  border-bottom: 1px solid var(--border-dim);
}

/* ─── SERVICES STRIP ─── */
.services-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.service-block {
  background: var(--card);
  padding: 44px 36px;
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
}

.service-block::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-dim), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s;
}

.service-block:hover { background: #161412; }
.service-block:hover::before { transform: scaleX(1); }

.service-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 4rem;
  line-height: 1;
  color: rgba(198,148,47,0.08);
  position: absolute;
  top: 20px;
  right: 24px;
  letter-spacing: 4px;
  transition: color 0.3s;
}

.service-block:hover .service-num {
  color: rgba(198,148,47,0.15);
}

.service-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
}

.service-icon svg {
  width: 100%;
  height: 100%;
}

.service-block h3 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 14px;
}

.service-block p {
  color: var(--silver);
  font-size: 0.95rem;
  line-height: 1.7;
  font-weight: 300;
}

/* ─── SPLIT SECTION ─── */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.split-block h2 { margin-bottom: 16px; }

.check-items {
  list-style: none;
  display: grid;
  gap: 2px;
  margin-top: 28px;
}

.check-items li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 18px;
  background: var(--card);
  border-left: 2px solid var(--gold-dim);
  transition: all 0.25s;
}

.check-items li:hover {
  background: #161412;
  border-left-color: var(--gold-light);
}

.check-items li::before {
  content: '▸';
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 1px;
}

.check-items li strong { color: var(--white); font-weight: 600; }
.check-items li span { color: var(--silver); font-size: 0.95rem; }

/* ─── CARDS GRID ─── */
.cards-grid-4,
.cards-grid-3,
.cards-grid-2 {
  display: grid;
  gap: 2px;
  background: var(--border-dim);
}

.cards-grid-4 { grid-template-columns: repeat(4, 1fr); }
.cards-grid-3 { grid-template-columns: repeat(3, 1fr); }
.cards-grid-2 { grid-template-columns: repeat(2, 1fr); }

.card-item {
  background: var(--card);
  padding: 36px 30px;
  position: relative;
  transition: background 0.3s;
}

.card-item:hover { background: #151210; }

.card-item h3 {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 12px;
}

.card-item p {
  color: var(--silver);
  font-size: 0.93rem;
  line-height: 1.7;
  font-weight: 300;
}

.card-num {
  position: absolute;
  top: 24px; right: 24px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.8rem;
  color: rgba(198,148,47,0.06);
  letter-spacing: 2px;
  transition: color 0.3s;
}

.card-item:hover .card-num { color: rgba(198,148,47,0.12); }

/* ─── PROCESS ─── */
.process-line {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
  gap: 0;
}

.process-line::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-dim), var(--gold), var(--gold-dim), transparent);
  z-index: 0;
}

.process-step {
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.step-num {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dim));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem;
  color: #000;
  letter-spacing: 2px;
  margin: 0 auto 28px;
  box-shadow: 0 0 0 4px var(--black), 0 0 0 5px var(--gold-dim);
}

.process-step h3 {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 10px;
  text-align: center;
}

.process-step p {
  color: var(--silver);
  font-size: 0.9rem;
  text-align: center;
  line-height: 1.65;
  font-weight: 300;
}

/* ─── CTA BANNER ─── */
.cta-banner {
  background: linear-gradient(135deg, #130f08 0%, #0d0b08 50%, #0a0808 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 80px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 100%, rgba(198,148,47,0.08), transparent);
}

.cta-banner::after {
  content: '';
  position: absolute;
  top: 0; left: 20%; right: 20%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.cta-banner h2 {
  font-size: clamp(2.5rem, 5vw, 5rem);
  margin-bottom: 16px;
  position: relative;
}

.cta-banner p {
  color: var(--silver);
  font-size: 1.08rem;
  max-width: 700px;
  margin: 0 auto 36px;
  line-height: 1.75;
  font-weight: 300;
  position: relative;
}

.cta-banner .hero-actions {
  justify-content: center;
  margin-bottom: 0;
  position: relative;
}

/* ─── FAQ ─── */
.faq-list {
  display: grid;
  gap: 2px;
  background: var(--border-dim);
}

.faq-item {
  background: var(--card);
  padding: 28px 32px;
  cursor: pointer;
  transition: background 0.25s;
}

.faq-item:hover { background: #141210; }

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.faq-q h3 {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: 0.5px;
  color: var(--white);
}

.faq-toggle {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  font-size: 1.2rem;
  font-weight: 300;
  transition: all 0.25s;
}

.faq-item.open .faq-toggle {
  background: var(--gold);
  border-color: var(--gold);
  color: #000;
  transform: rotate(45deg);
}

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

.faq-item.open .faq-a {
  max-height: 300px;
  padding-top: 16px;
}

.faq-a p {
  color: var(--silver);
  font-size: 0.95rem;
  line-height: 1.7;
  font-weight: 300;
}

/* ─── CONTACT ─── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--border-dim);
}

.contact-panel {
  background: var(--card);
  padding: 50px 44px;
}

.contact-panel h3 {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
}

.info-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border-dim);
}

.info-row:last-child { border-bottom: none; }

.info-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  background: rgba(198,148,47,0.1);
  border: 1px solid var(--border);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.info-icon svg { width: 16px; height: 16px; fill: var(--gold); }

.info-label {
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 3px;
}

.info-val {
  color: var(--white);
  font-size: 1rem;
}

.info-val a { color: var(--white); transition: color 0.2s; }
.info-val a:hover { color: var(--gold-light); }

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.tag {
  padding: 6px 14px;
  border: 1px solid var(--border);
  border-radius: 2px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gray);
  transition: all 0.2s;
}

.tag:hover {
  border-color: var(--gold-dim);
  color: var(--gold-light);
  background: rgba(198,148,47,0.05);
}

.location-link-grid { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }

/* ─── FOOTER ─── */
footer {
  background: #000;
  border-top: 1px solid var(--border-dim);
  padding: 32px 0;
  position: relative;
}

footer::before {
  content: '';
  position: absolute;
  top: 0; left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-dim), transparent);
}

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

.footer-copy {
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 1px;
  color: var(--gray);
}

.footer-links {
  display: flex;
  gap: 20px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 1px;
}

.footer-links a { color: var(--gray); transition: color 0.2s; }
.footer-links a:hover { color: var(--gold-light); }

/* ─── ORANGE ACCENTS ─── */
.orange { color: var(--orange); }

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

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

.animate-1 { animation: fadeUp 0.8s ease both; }
.animate-2 { animation: fadeUp 0.8s 0.1s ease both; }
.animate-3 { animation: fadeUp 0.8s 0.2s ease both; }
.animate-4 { animation: fadeUp 0.8s 0.3s ease both; }
.animate-5 { animation: fadeUp 0.8s 0.4s ease both; }

/* ─── SCROLL REVEAL ─── */
/* animations handled inline */

/* ─── HAMBURGER BUTTON ─── */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  padding: 8px;
  flex-shrink: 0;
}

.menu-toggle span {
  display: block;
  height: 1.5px;
  background: var(--gold-light);
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}

.menu-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.menu-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }


/* ─── HEADER SQUEEZE (between hamburger breakpoint and container max) ─── */
@media (max-width: 1240px) and (min-width: 1024px) {
  .brand img { width: 112px; }
  .brand-text strong { font-size: 0.92rem; }
  .brand-text span { font-size: 0.64rem; letter-spacing: 0.9px; }
  .menu { gap: 12px; }
  .menu a,
  .menu .nav-drop-toggle { font-size: 0.88rem; letter-spacing: 1.1px; }
  .menu .cta-nav { padding-left: 14px; padding-right: 14px; }
}

/* ─── RESPONSIVE ─── */

/* Tablet */
@media (max-width: 1100px) {
  .hero-layout { grid-template-columns: 1fr; }
  .hero-panel { display: none; }
  .split-section { grid-template-columns: 1fr; gap: 48px; }
  .services-strip { grid-template-columns: 1fr; }
  .cards-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .cards-grid-3 { grid-template-columns: repeat(2, 1fr); }
  .process-line { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .process-line::before { display: none; }
  .contact-layout { grid-template-columns: 1fr; }
  .hero-inner { padding: 100px 0 80px; }
}

/* Hamburger nav — kicks in before the 9-item menu can overflow */
@media (max-width: 1023px) {

  /* ── Nav ── */
  .nav {
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    gap: 0;
  }
  .brand { max-width: calc(100% - 54px); }
  .brand img { width: 78px; max-width: none; }
  .brand-text strong { font-size: 0.86rem; }
  .brand-text span { display: none; }

  .menu-toggle { display: flex; }

  .menu {
    display: none;
    flex-direction: column;
    gap: 0;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(4,4,4,0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 8px 0 16px;
    z-index: 899;
  }

  .menu.open { display: flex; }

  .menu a {
    padding: 14px 24px;
    font-size: 1rem;
    letter-spacing: 2px;
    border-bottom: 1px solid var(--border-dim);
  }

  .menu a::after { display: none; }

  .menu .cta-nav {
    margin: 12px 24px 0;
    text-align: center;
    border-radius: 2px;
    padding: 14px;
  }


  .nav-dropdown {
    width: 100%;
    display: block;
  }

  .menu .nav-drop-toggle {
    width: 100%;
    justify-content: space-between;
    padding: 14px 24px;
    font-size: 1rem;
    letter-spacing: 2px;
    border-bottom: 1px solid var(--border-dim);
  }

  .menu .nav-drop-toggle::after { display: none; }

  .nav-dropdown-menu {
    position: static;
    min-width: 0;
    width: 100%;
    padding: 0 0 8px;
    background: rgba(198,148,47,0.05);
    border: 0;
    border-bottom: 1px solid var(--border-dim);
    border-radius: 0;
    box-shadow: none;
  }

  .nav-dropdown-menu::before { display: none; }

  .nav-dropdown-menu a {
    padding: 11px 42px;
    border-bottom: 0;
    font-size: 0.95rem;
  }

}

/* Mobile */
@media (max-width: 768px) {

  /* ── Hero ── */
  .hero-inner { padding: 80px 0 60px; }

  h1 {
    font-size: clamp(3rem, 13vw, 4.5rem);
    margin-bottom: 20px;
  }

  .eyebrow { font-size: 0.72rem; margin-bottom: 16px; }
  .hero-sub { font-size: 1rem; margin-bottom: 28px; }

  .hero-actions {
    flex-direction: column;
    gap: 12px;
    margin-bottom: 40px;
  }

  .btn-gold, .btn-ghost {
    width: 100%;
    justify-content: center;
    padding: 16px 24px;
  }

  .hero-stats {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0;
    border-top: 1px solid var(--border-dim);
    padding-top: 28px;
  }

  .stat {
    flex: 1 1 calc(33% - 2px);
    min-width: 90px;
    border-right: 1px solid var(--border-dim);
    margin-right: 0;
    padding: 0 12px 0 0;
    margin-right: 12px;
  }

  .stat:last-child { border-right: none; margin-right: 0; padding-right: 0; }

  .stat-val { font-size: 2rem; }
  .stat-label { font-size: 0.68rem; }

  /* ── Sections ── */
  section { padding: 56px 0; }
  .section-head { margin-bottom: 36px; }

  h2 { font-size: clamp(2rem, 8vw, 3rem); }

  .section-desc { font-size: 0.97rem; }

  /* ── Services ── */
  .services-strip { grid-template-columns: 1fr; }
  .service-block { padding: 32px 24px; }

  /* ── Cards ── */
  .cards-grid-4,
  .cards-grid-3,
  .cards-grid-2 { grid-template-columns: 1fr; }

  .card-item { padding: 28px 22px; }

  /* ── Split ── */
  .split-section { grid-template-columns: 1fr; gap: 40px; }

  /* ── Process ── */
  .process-line { grid-template-columns: 1fr; gap: 32px; }
  .process-line::before { display: none; }
  .process-step { padding: 0; }

  /* ── CTA banner ── */
  .cta-banner { padding: 44px 20px; }
  .cta-banner .hero-actions { flex-direction: column; }
  .cta-banner .btn-gold,
  .cta-banner .btn-ghost { width: 100%; justify-content: center; }

  /* ── FAQ ── */
  .faq-item { padding: 20px 18px; }
  .faq-q h3 { font-size: 0.97rem; }

  /* ── Contact ── */
  .contact-layout { grid-template-columns: 1fr; }
  .contact-panel { padding: 28px 20px; }

  /* ── Footer ── */
  .footer-inner { flex-direction: column; align-items: center; text-align: center; gap: 10px; }

  /* ── iOS zoom fix — inputs must be >= 16px ── */
  .form-input { font-size: 16px; }
}

/* Small phones */
@media (max-width: 400px) {
  .brand img { width: 68px; }
  .brand-text strong { font-size: 0.78rem; }
  h1 { font-size: 2.8rem; }
  .hero-stats { flex-direction: column; gap: 16px; }
  .stat { border-right: none; border-bottom: 1px solid var(--border-dim); padding-bottom: 16px; margin-right: 0; }
  .stat:last-child { border-bottom: none; padding-bottom: 0; }
}
/* ─── CONTACT FORM ─── */
.form-group {
  margin-bottom: 18px;
}

.form-label {
  display: block;
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 8px;
}

.form-input {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-dim);
  border-radius: var(--radius);
  padding: 13px 16px;
  color: var(--white);
  font-family: 'Barlow', sans-serif;
  font-size: 0.97rem;
  outline: none;
  transition: border-color 0.25s, background 0.25s, box-shadow 0.25s;
  -webkit-appearance: none;
  appearance: none;
}

.form-input::placeholder { color: var(--gray); }

.form-input:focus {
  border-color: var(--gold-dim);
  background: rgba(198,148,47,0.05);
  box-shadow: 0 0 0 3px rgba(198,148,47,0.08);
}

.form-select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23888'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 20px;
  padding-right: 40px;
}

.form-select option {
  background: #1a1a1a;
  color: var(--white);
}

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

.form-submit {
  width: 100%;
  justify-content: center;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  margin-top: 4px;
}

.form-success {
  display: none;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  padding: 14px 18px;
  background: rgba(198,148,47,0.1);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  color: var(--gold-light);
}

.form-success svg { flex-shrink: 0; fill: var(--gold-light); }
.form-success.show { display: flex; }

.form-error {
  display: none;
  margin-top: 12px;
  padding: 12px 16px;
  background: rgba(255, 80, 80, 0.08);
  border: 1px solid rgba(255, 80, 80, 0.25);
  border-radius: var(--radius);
  color: #ff8080;
  font-size: 0.9rem;
  line-height: 1.5;
}

.form-error.show { display: block; }

@keyframes spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}


/* ─── BLOG PAGE ─── */
.blog-hero {
  min-height: 54vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(ellipse 70% 70% at 18% 40%, rgba(198,148,47,0.12), transparent 60%),
    linear-gradient(160deg, #080604 0%, #040404 55%, #0b0b0b 100%);
  border-bottom: 1px solid var(--border-dim);
}

.blog-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(198,148,47,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(198,148,47,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 85% 75% at 50% 50%, black, transparent);
}

.blog-hero::after {
  content: '';
  position: absolute;
  top: -20%;
  right: 10%;
  width: 1px;
  height: 150%;
  background: linear-gradient(180deg, transparent, rgba(198,148,47,0.35), rgba(255,107,0,0.14), transparent);
  transform: rotate(-12deg);
}

.blog-hero-inner {
  position: relative;
  z-index: 2;
  padding: 110px 0 80px;
}

.blog-hero h1 {
  max-width: 920px;
  margin-bottom: 20px;
}

.blog-kicker {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.blog-list-section { padding-top: 76px; }

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border-dim);
  border: 1px solid var(--border-dim);
}

.blog-card {
  background: var(--card);
  min-height: 100%;
  display: flex;
  flex-direction: column;
  transition: background 0.3s, transform 0.3s;
}

.blog-card:hover { background: #151210; }

.blog-card-image {
  display: block;
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, rgba(198,148,47,0.14), rgba(255,107,0,0.07));
  border-bottom: 1px solid var(--border-dim);
  overflow: hidden;
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.86;
  transition: transform 0.45s, opacity 0.3s;
}

.blog-card:hover .blog-card-image img {
  transform: scale(1.04);
  opacity: 1;
}

.blog-card-body {
  padding: 34px 30px 32px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blog-date {
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.74rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.blog-card h2,
.blog-card h3 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.35rem;
  line-height: 1.15;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin: 0 0 14px;
}

.blog-card p {
  color: var(--silver);
  font-size: 0.96rem;
  line-height: 1.75;
  font-weight: 300;
  margin-bottom: 24px;
}

.blog-read-more {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold-light);
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  font-size: 0.9rem;
  transition: color 0.2s, transform 0.2s;
}

.blog-read-more:hover {
  color: var(--orange);
  transform: translateX(3px);
}

.blog-empty,
.blog-error {
  background: var(--card);
  border: 1px solid var(--border-dim);
  padding: 44px 34px;
  color: var(--silver);
  line-height: 1.75;
}

.blog-error {
  border-color: rgba(255, 80, 80, 0.25);
  color: #ffb0b0;
  background: rgba(255, 80, 80, 0.06);
}

.blog-pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 36px;
}

.blog-page-link {
  min-width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  color: var(--silver);
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  letter-spacing: 1px;
  transition: all 0.25s;
  padding: 0 14px;
}

.blog-page-link:hover,
.blog-page-link.active {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: #000;
  border-color: var(--gold);
}

.blog-article-wrap {
  max-width: 920px;
  margin: 0 auto;
}

.blog-article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  align-items: center;
  color: var(--gray);
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.86rem;
  letter-spacing: 1.7px;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.blog-article-image {
  border: 1px solid var(--border-dim);
  background: var(--card);
  margin: 0 0 42px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-heavy);
}

.blog-article-image img {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
}

.blog-content {
  color: var(--silver-light);
  font-size: 1.06rem;
  line-height: 1.85;
  font-weight: 300;
}

.blog-content p,
.blog-content ul,
.blog-content ol,
.blog-content blockquote { margin-bottom: 24px; }

.blog-content h2,
.blog-content h3,
.blog-content h4 {
  font-family: 'Rajdhani', sans-serif;
  color: var(--gold-light);
  line-height: 1.15;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin: 42px 0 16px;
}

.blog-content h2 { font-size: 2rem; }
.blog-content h3 { font-size: 1.55rem; }
.blog-content h4 { font-size: 1.25rem; }

.blog-content a {
  color: var(--gold-light);
  border-bottom: 1px solid rgba(198,148,47,0.45);
}

.blog-content a:hover { color: var(--orange); }

.blog-content ul,
.blog-content ol { padding-left: 24px; }

.blog-content li { margin-bottom: 10px; }

.blog-content blockquote {
  border-left: 3px solid var(--gold);
  background: rgba(198,148,47,0.06);
  padding: 22px 26px;
  color: var(--white);
  font-style: italic;
}

.blog-content img {
  width: auto;
  max-width: 100%;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-dim);
  margin: 28px auto;
}

.blog-back {
  margin-top: 50px;
  padding-top: 36px;
  border-top: 1px solid var(--border-dim);
}

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

@media (max-width: 768px) {
  .blog-hero-inner { padding: 76px 0 56px; }
  .blog-list-section { padding-top: 56px; }
  .blog-grid { grid-template-columns: 1fr; }
  .blog-card-body { padding: 28px 22px; }
  .blog-content { font-size: 1rem; }
  .blog-content h2 { font-size: 1.65rem; }
  .blog-content h3 { font-size: 1.35rem; }
}

/* ─── Utility classes (migrated from inline styles) ─── */
.brand-orange { color: #ff6600; }
.brand-orange-lg { color: #ff6600; font-size: 22px; }
.phone-hero-num--form { font-size: 1.3rem; letter-spacing: 1px; }
.icon-spin { animation: spin 0.8s linear infinite; }

/* ─── Location pages (/locations/) ─── */
/* Scoped under body.page-location to preserve per-page differences */
@media (min-width: 1024px) {
  .page-location .brand img { width: 150px; }
}
.page-location .location-link-grid { margin-top: 26px; }

.location-hero-note { color: var(--gold-light); font-family: 'Rajdhani', sans-serif; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 16px; }
.breadcrumb { color: var(--gray); font-family: 'Rajdhani', sans-serif; letter-spacing: 1px; text-transform: uppercase; font-size: .82rem; margin-bottom: 18px; }
.breadcrumb a { color: var(--gold-light); }
.local-copy { color: var(--silver); font-size: 1.03rem; line-height: 1.8; font-weight: 300; }

/* ─── TWO-LOCATION EMPHASIS ─── */
.btn-location {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 15px 24px;
  border: 1px solid rgba(231,197,107,.65);
  background: rgba(4,4,4,.72);
  color: var(--gold-light);
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all .25s;
}
.btn-location:hover {
  color: #000;
  background: var(--gold-light);
  transform: translateY(-2px);
}
.btn-location-pin { color: var(--orange); font-size: .72rem; }
.btn-location:hover .btn-location-pin { color: #000; }

.location-spotlight {
  padding: 72px 0;
  background: linear-gradient(135deg, #171006 0%, #090909 50%, #14100a 100%);
  border-top: 1px solid rgba(231,197,107,.35);
  border-bottom: 1px solid rgba(231,197,107,.25);
  position: relative;
}
.location-spotlight::before {
  content: '';
  position: absolute;
  top: 0; left: 8%; right: 8%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--orange), var(--gold-light), var(--orange), transparent);
}
.location-spotlight-head {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 44px;
  align-items: end;
  margin-bottom: 38px;
}
.location-spotlight-head h2 { margin-bottom: 0; }
.location-spotlight-head > p {
  color: var(--silver);
  line-height: 1.75;
  font-size: 1.05rem;
}
.location-spotlight-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.location-spotlight-card {
  background: linear-gradient(145deg, #171512, #0d0d0d);
  border: 1px solid rgba(231,197,107,.28);
  padding: 38px;
  position: relative;
  box-shadow: var(--shadow-heavy), var(--shadow-gold);
}
.location-spotlight-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-left: 4px solid var(--orange);
  pointer-events: none;
}
.location-badge {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--orange);
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-size: .76rem;
}
.location-spotlight-card h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2rem, 3vw, 3rem);
  letter-spacing: 1.5px;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 14px;
}
.location-spotlight-card address {
  color: var(--white);
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.45;
  font-style: normal;
  margin-bottom: 14px;
}
.location-spotlight-card p {
  color: var(--silver);
  max-width: 540px;
  margin-bottom: 24px;
}
.location-directions { padding: 13px 24px; }

.footer-inner { align-items: flex-start; }
.footer-locations {
  display: grid;
  grid-template-columns: repeat(2, minmax(220px, 1fr));
  gap: 16px;
}
.footer-locations a {
  display: grid;
  gap: 2px;
  color: var(--silver);
  font-size: .82rem;
  line-height: 1.4;
}
.footer-locations strong {
  color: var(--gold-light);
  font-family: 'Rajdhani', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.footer-locations a:hover span { color: var(--white); }

@media (max-width: 900px) {
  .location-spotlight-head { grid-template-columns: 1fr; gap: 12px; }
  .location-spotlight-grid { grid-template-columns: 1fr; }
  .footer-locations { grid-template-columns: 1fr; width: 100%; }
}
@media (max-width: 768px) {
  .hero-location-actions .btn-location { width: 100%; }
  .location-spotlight { padding: 52px 0; }
  .location-spotlight-card { padding: 30px 24px; }
  .location-directions { width: 100%; }
}
