/* ============================================
   Home Generator Services of Virginia
   Design tokens, layout, and component styles
   ============================================ */

:root {
  /* Color system */
  --navy-950: #050b16;
  --navy-900: #0a1628;
  --navy-800: #0f2140;
  --navy-700: #183258;
  --navy-600: #2a4a7a;
  --navy-500: #4a6b9e;

  --amber-400: #fbbf24;
  --amber-500: #f59e0b;
  --amber-600: #d97706;

  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  --gray-400: #94a3b8;
  --gray-500: #64748b;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1e293b;
  --gray-900: #0f172a;

  --white: #ffffff;
  --success: #10b981;
  --danger: #ef4444;

  /* Semantic */
  --color-bg: var(--white);
  --color-bg-alt: var(--gray-50);
  --color-bg-dark: var(--navy-900);
  --color-surface: var(--white);
  --color-text: var(--navy-900);
  --color-text-muted: var(--gray-600);
  --color-text-inverse: var(--gray-50);
  --color-accent: var(--amber-500);
  --color-accent-hover: var(--amber-600);
  --color-border: var(--gray-200);
  --color-border-strong: var(--gray-300);

  /* Typography */
  --font-sans: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-display: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: clamp(1.35rem, 1.1rem + 1vw, 1.75rem);
  --text-3xl: clamp(1.75rem, 1.3rem + 2vw, 2.5rem);
  --text-4xl: clamp(2.25rem, 1.5rem + 3vw, 3.5rem);
  --text-hero: clamp(2.5rem, 1.5rem + 5vw, 5.25rem);

  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-section: clamp(4rem, 3rem + 4vw, 7rem);

  /* Radius */
  --radius-sm: 4px;
  --radius: 8px;
  --radius-lg: 12px;
  --radius-xl: 20px;
  --radius-full: 9999px;

  /* Shadow */
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.06);
  --shadow: 0 4px 12px rgba(15, 23, 42, 0.08), 0 1px 3px rgba(15, 23, 42, 0.04);
  --shadow-lg: 0 16px 40px rgba(15, 23, 42, 0.12), 0 4px 12px rgba(15, 23, 42, 0.06);
  --shadow-amber: 0 12px 28px -8px rgba(245, 158, 11, 0.45);

  /* Motion */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --duration-fast: 180ms;
  --duration: 320ms;
  --duration-slow: 600ms;

  /* Layout */
  --container: 1240px;
  --container-narrow: 880px;
  --nav-height: 76px;
}

/* ============================================
   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(--font-sans);
  font-size: var(--text-base);
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* Faint background grid across the whole site */
body {
  background-color: var(--color-bg);
  background-image:
    linear-gradient(rgba(15, 23, 42, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 23, 42, 0.035) 1px, transparent 1px);
  background-size: 48px 48px;
  background-position: -1px -1px;
  background-attachment: fixed;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--duration-fast) var(--ease-out);
}

button {
  font: inherit;
  cursor: pointer;
  border: 0;
  background: transparent;
  color: inherit;
}

input, select, textarea {
  font: inherit;
  color: inherit;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.08;
  color: var(--color-text);
}

h1 { font-size: var(--text-hero); }
h2 { font-size: var(--text-4xl); }
h3 { font-size: var(--text-2xl); }
h4 { font-size: var(--text-xl); font-family: var(--font-sans); letter-spacing: -0.01em; line-height: 1.3; }

p { color: var(--color-text-muted); }

:focus-visible {
  outline: 2px solid var(--amber-500);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

/* ============================================
   Layout helpers
   ============================================ */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1rem, 3vw, 2rem);
}

.container-narrow {
  max-width: var(--container-narrow);
  margin-inline: auto;
  padding-inline: clamp(1rem, 3vw, 2rem);
}

.section {
  padding-block: var(--space-section);
}

.section-dark {
  background: var(--color-bg-dark);
  color: var(--color-text-inverse);
}

.section-dark h1, .section-dark h2, .section-dark h3, .section-dark h4 {
  color: var(--white);
}

.section-dark p {
  color: rgba(255,255,255,0.72);
}

.section-alt {
  background: var(--color-bg-alt);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber-600);
}

.eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--amber-500);
}

.section-dark .eyebrow {
  color: var(--amber-400);
}

.section-header {
  max-width: 720px;
  margin-bottom: var(--space-12);
}

.section-header p {
  font-size: var(--text-lg);
  margin-top: var(--space-5);
}

/* ============================================
   Buttons
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: 0.9rem 1.5rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: var(--text-sm);
  letter-spacing: 0.02em;
  transition: transform var(--duration-fast) var(--ease-out),
              background-color var(--duration-fast) var(--ease-out),
              box-shadow var(--duration-fast) var(--ease-out),
              color var(--duration-fast) var(--ease-out);
  white-space: nowrap;
}

.btn-primary {
  background: var(--amber-500);
  color: var(--navy-900);
  box-shadow: var(--shadow-amber);
}

.btn-primary:hover {
  background: var(--amber-400);
  transform: translateY(-1px);
  box-shadow: 0 16px 32px -8px rgba(245, 158, 11, 0.55);
}

.btn-secondary {
  background: var(--navy-900);
  color: var(--white);
}

.btn-secondary:hover {
  background: var(--navy-800);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: inherit;
  border: 1px solid currentColor;
  opacity: 0.85;
}

.btn-ghost:hover {
  opacity: 1;
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--navy-900);
  border: 1.5px solid var(--navy-900);
}

.btn-outline:hover {
  background: var(--navy-900);
  color: var(--white);
  transform: translateY(-1px);
}

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

.btn svg { width: 18px; height: 18px; stroke-width: 2.25; }

/* ============================================
   Header / Nav
   ============================================ */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.92);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
  transition: box-shadow var(--duration-fast) var(--ease-out);
}

.header.scrolled {
  box-shadow: var(--shadow-sm);
}

.nav {
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
}

.brand {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-weight: 700;
  letter-spacing: -0.015em;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--navy-900), var(--navy-700));
  display: grid;
  place-items: center;
  color: var(--amber-400);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.08);
}

.brand-mark svg { width: 22px; height: 22px; stroke-width: 2.25; }

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-text strong {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--navy-900);
  letter-spacing: -0.02em;
}

.brand-text span {
  font-size: 0.7rem;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-top: 2px;
}

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

.nav-links a {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--gray-700);
  position: relative;
  padding: var(--space-2) 0;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--navy-900);
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: var(--amber-500);
  border-radius: 2px;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

.nav-phone {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--navy-900);
}

.nav-phone svg { width: 16px; height: 16px; color: var(--amber-600); }

.nav-toggle {
  display: none;
  padding: var(--space-2);
  color: var(--navy-900);
}

.nav-toggle svg { width: 28px; height: 28px; }

@media (max-width: 960px) {
  .nav-links,
  .nav-phone { display: none; }
  .nav-toggle { display: inline-flex; }
  .nav-cta .btn { display: none; }
}

/* Mobile drawer */
.mobile-drawer {
  position: fixed;
  inset: var(--nav-height) 0 0 0;
  background: var(--navy-900);
  color: var(--white);
  padding: var(--space-10) var(--space-6);
  transform: translateX(100%);
  transition: transform var(--duration) var(--ease-out);
  z-index: 49;
  display: flex;
  flex-direction: column;
  gap: var(--space-8);
}

.mobile-drawer.open { transform: translateX(0); }

.mobile-drawer ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}

.mobile-drawer a {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 500;
  color: var(--white);
  letter-spacing: -0.02em;
}

.mobile-drawer a:hover { color: var(--amber-400); }

.mobile-drawer .drawer-contact {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  padding-top: var(--space-8);
  border-top: 1px solid rgba(255,255,255,0.08);
}

.mobile-drawer .drawer-contact a {
  font-family: var(--font-sans);
  font-size: var(--text-base);
  color: rgba(255,255,255,0.85);
  display: inline-flex;
  gap: var(--space-3);
  align-items: center;
}

/* ============================================
   Hero
   ============================================ */
.hero {
  position: relative;
  background:
    linear-gradient(180deg, rgba(10,22,40,0.58) 0%, rgba(10,22,40,0.42) 55%, rgba(10,22,40,0.72) 100%),
    url("../images/hero-storm-bg.webp") center / cover no-repeat,
    var(--navy-900);
  color: var(--white);
  padding-block: clamp(4rem, 3rem + 4vw, 7rem) clamp(5rem, 4rem + 4vw, 8rem);
  overflow: hidden;
  isolation: isolate;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 85% 20%, rgba(245, 158, 11, 0.22), transparent 50%),
    radial-gradient(ellipse at 10% 80%, rgba(42, 74, 122, 0.35), transparent 55%);
  z-index: -1;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  z-index: -1;
  opacity: 0.7;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(2rem, 3vw, 4rem);
  align-items: center;
}

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

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 0.4rem 0.85rem;
  background: rgba(245, 158, 11, 0.12);
  border: 1px solid rgba(245, 158, 11, 0.25);
  color: var(--amber-400);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: var(--space-6);
}

.hero-pill .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--amber-400);
  box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.4);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.45); }
  70%  { box-shadow: 0 0 0 10px rgba(245, 158, 11, 0); }
  100% { box-shadow: 0 0 0 0 rgba(245, 158, 11, 0); }
}

.hero h1 {
  color: var(--white);
  margin-bottom: var(--space-6);
}

.hero h1 em {
  font-style: normal;
  color: var(--amber-400);
  position: relative;
  display: inline-block;
}

.hero h1 em::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0.05em;
  height: 0.22em;
  background: rgba(245, 158, 11, 0.18);
  z-index: -1;
  border-radius: 2px;
}

.hero-lead {
  font-size: var(--text-lg);
  color: rgba(255,255,255,0.78);
  max-width: 52ch;
  margin-bottom: var(--space-8);
}

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

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-6) var(--space-10);
}

.hero-proof div {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.85);
}

.hero-proof svg {
  width: 22px; height: 22px;
  color: var(--amber-400);
  stroke-width: 2;
}

/* Hero visual */
.hero-visual {
  position: relative;
  aspect-ratio: 5 / 6;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--navy-800);
  box-shadow: 0 40px 80px -20px rgba(0,0,0,0.55), 0 0 0 1px rgba(255,255,255,0.06);
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.02);
}

.hero-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(10,22,40,0.6));
}

.hero-card {
  position: absolute;
  z-index: 2;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-lg);
  padding: var(--space-4) var(--space-5);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
  color: var(--navy-900);
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.hero-card.bottom-left {
  bottom: 6%;
  left: 6%;
  max-width: calc(100% - 12%);
}

.hero-card-icon {
  width: 40px; height: 40px;
  border-radius: 8px;
  background: var(--amber-500);
  color: var(--navy-900);
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}

.hero-card-icon svg { width: 20px; height: 20px; stroke-width: 2.25; }

.hero-card-label {
  font-size: var(--text-xs);
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  margin-bottom: 2px;
}

.hero-card-value {
  font-weight: 700;
  font-size: 0.95rem;
}

@media (max-width: 560px) {
  .hero-card.bottom-left { left: 4%; }
}

/* ============================================
   Trust bar
   ============================================ */
.trust-bar {
  background: var(--white);
  border-bottom: 1px solid var(--color-border);
  padding-block: var(--space-8);
}

.trust-bar-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-8);
  align-items: center;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.trust-item svg {
  width: 28px; height: 28px;
  color: var(--amber-600);
  stroke-width: 1.75;
  flex: 0 0 auto;
}

.trust-item strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy-900);
}

.trust-item span {
  font-size: var(--text-xs);
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ============================================
   Services grid (bento)
   ============================================ */
.services-bento {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: var(--space-5);
}

.service-card {
  background: var(--white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  transition: transform var(--duration) var(--ease-out),
              box-shadow var(--duration) var(--ease-out),
              border-color var(--duration) var(--ease-out);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  min-height: 260px;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.service-card .icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--navy-900), var(--navy-700));
  color: var(--amber-400);
  display: grid;
  place-items: center;
  margin-bottom: var(--space-6);
  transition: transform var(--duration) var(--ease-out);
}

.service-card:hover .icon {
  transform: scale(1.08) rotate(-3deg);
}

.service-card .icon svg { width: 26px; height: 26px; stroke-width: 2; }

.service-card h3 {
  font-size: 1.35rem;
  margin-bottom: var(--space-3);
}

.service-card p {
  font-size: 0.95rem;
  margin-bottom: var(--space-5);
}

.service-card .link {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--navy-900);
}

.service-card .link svg {
  width: 16px; height: 16px;
  transition: transform var(--duration-fast) var(--ease-out);
}

.service-card:hover .link svg { transform: translateX(4px); }

/* Bento spans */
.service-card.span-3 { grid-column: span 3; }
.service-card.span-2 { grid-column: span 2; }

.service-card.feature {
  grid-column: span 3;
  background: var(--navy-900);
  color: var(--white);
  border: 0;
}

.service-card.feature h3 { color: var(--white); font-size: 1.75rem; }
.service-card.feature p { color: rgba(255,255,255,0.72); font-size: 1.05rem; }

.service-card.feature .icon {
  width: 68px; height: 68px;
  background: var(--amber-500);
  color: var(--navy-900);
}

.service-card.feature .icon svg { width: 32px; height: 32px; }

.service-card.feature::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 110% -10%, rgba(245, 158, 11, 0.25), transparent 45%),
    radial-gradient(ellipse at -10% 110%, rgba(42, 74, 122, 0.35), transparent 55%);
  pointer-events: none;
}

.service-card.feature > * { position: relative; }

.service-card.feature .link { color: var(--amber-400); }

@media (max-width: 960px) {
  .services-bento { grid-template-columns: repeat(2, 1fr); }
  .service-card,
  .service-card.span-3,
  .service-card.span-2,
  .service-card.feature { grid-column: span 1; grid-row: auto; }
  .service-card.feature { grid-column: span 2; }
}

@media (max-width: 600px) {
  .services-bento { grid-template-columns: 1fr; }
  .service-card.feature { grid-column: span 1; }
}

/* ============================================
   Why us / feature split
   ============================================ */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 5rem);
  align-items: center;
}

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

.split-visual {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--navy-800);
}

.split-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.split-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, transparent 55%, rgba(10,22,40,0.6));
}

.stat-callout {
  position: absolute;
  bottom: var(--space-6);
  left: var(--space-6);
  right: var(--space-6);
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(10px);
  padding: var(--space-5) var(--space-6);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  gap: var(--space-6);
}

.stat-callout strong {
  font-family: var(--font-display);
  font-size: 2.25rem;
  color: var(--navy-900);
  line-height: 1;
  letter-spacing: -0.03em;
}

.stat-callout span {
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.3;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
  margin-top: var(--space-8);
}

.feature-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: var(--space-4);
}

.feature-item .icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--amber-500);
  color: var(--navy-900);
  display: grid;
  place-items: center;
}

.feature-item .icon svg { width: 22px; height: 22px; stroke-width: 2.25; }

.feature-item h4 {
  font-size: 1.1rem;
  margin-bottom: var(--space-1);
}

.feature-item p { font-size: 0.95rem; }

/* ============================================
   Brands
   ============================================ */
.brand-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: var(--space-4);
  align-items: stretch;
}

.brand-card {
  background: var(--white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color var(--duration-fast) var(--ease-out),
              transform var(--duration-fast) var(--ease-out);
  min-height: 120px;
}

.brand-card:hover {
  border-color: var(--amber-500);
  transform: translateY(-2px);
}

.brand-card img {
  max-height: 56px;
  max-width: 140px;
  object-fit: contain;
  filter: saturate(0.95);
}

/* ============================================
   Service areas
   ============================================ */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-4);
}

.area-card {
  background: var(--white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: var(--space-5);
  display: flex;
  align-items: center;
  gap: var(--space-3);
  text-decoration: none;
  color: inherit;
  transition: border-color var(--duration-fast) var(--ease-out),
              transform var(--duration-fast) var(--ease-out),
              box-shadow var(--duration-fast) var(--ease-out);
}

.area-card:hover {
  border-color: var(--amber-500);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.area-card svg {
  width: 22px; height: 22px;
  color: var(--amber-600);
  flex: 0 0 auto;
}

.area-card strong {
  display: block;
  font-weight: 600;
  color: var(--navy-900);
  font-size: 0.98rem;
}

.area-card span {
  font-size: var(--text-xs);
  color: var(--gray-500);
}

/* ============================================
   Testimonials
   ============================================ */
.testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-6);
}

.testimonial {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  border: 1px solid var(--color-border);
  position: relative;
}

.testimonial .stars {
  display: flex;
  gap: 2px;
  color: var(--amber-500);
  margin-bottom: var(--space-4);
}

.testimonial .stars svg { width: 18px; height: 18px; fill: currentColor; stroke: none; }

.testimonial blockquote {
  font-family: var(--font-display);
  font-size: 1.2rem;
  line-height: 1.4;
  color: var(--navy-900);
  margin-bottom: var(--space-5);
  letter-spacing: -0.01em;
}

.testimonial cite {
  display: block;
  font-style: normal;
  font-weight: 600;
  color: var(--navy-900);
  font-size: 0.95rem;
}

.testimonial cite span {
  display: block;
  font-weight: 400;
  color: var(--gray-500);
  font-size: 0.85rem;
  margin-top: 2px;
}

/* ============================================
   CTA band
   ============================================ */
.cta-band {
  background: linear-gradient(135deg, var(--navy-900), var(--navy-800));
  border-radius: var(--radius-xl);
  padding: clamp(2rem, 4vw, 4rem);
  color: var(--white);
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: var(--space-8);
  align-items: center;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 100% 0%, rgba(245, 158, 11, 0.18), transparent 55%);
  z-index: -1;
}

.cta-band h2 {
  color: var(--white);
  margin-bottom: var(--space-4);
}

.cta-band p { color: rgba(255,255,255,0.8); }

.cta-band-actions {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  justify-self: end;
}

@media (max-width: 760px) {
  .cta-band { grid-template-columns: 1fr; }
  .cta-band-actions { justify-self: start; }
}

/* ============================================
   Footer
   ============================================ */
.footer {
  background: var(--navy-950);
  color: rgba(255,255,255,0.7);
  padding-block: var(--space-20) var(--space-8);
}

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

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

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

.footer h5 {
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: var(--space-5);
  font-weight: 600;
  font-family: var(--font-sans);
}

.footer ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.footer a {
  color: rgba(255,255,255,0.7);
  font-size: 0.92rem;
  transition: color var(--duration-fast) var(--ease-out);
}

.footer a:hover { color: var(--amber-400); }

.footer .brand {
  color: var(--white);
  margin-bottom: var(--space-4);
}

.footer .brand strong { color: var(--white); }

.footer-desc {
  font-size: 0.92rem;
  max-width: 34ch;
  margin-bottom: var(--space-5);
}

.contact-line {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: 0.92rem;
  margin-bottom: var(--space-2);
}

.contact-line svg {
  width: 16px; height: 16px;
  color: var(--amber-400);
  flex: 0 0 auto;
}

.footer-bottom {
  padding-top: var(--space-8);
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: var(--space-4);
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}

/* ============================================
   Page header (inner pages)
   ============================================ */
.page-header {
  background: var(--navy-900);
  color: var(--white);
  padding-block: clamp(4rem, 3rem + 4vw, 6rem);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.page-header--services {
  background:
    linear-gradient(180deg, rgba(10,22,40,0.78) 0%, rgba(10,22,40,0.62) 50%, rgba(10,22,40,0.92) 100%),
    url("../images/services-hero-bg.webp") center / cover no-repeat,
    var(--navy-900);
}

.page-header--areas {
  background:
    linear-gradient(90deg, var(--navy-900) 0%, var(--navy-900) 32%, rgba(10,22,40,0.55) 55%, transparent 75%),
    url("../images/areas-hero-virginia.webp") right 2rem center / auto 78% no-repeat,
    var(--navy-900);
}

.page-header--about {
  background:
    linear-gradient(180deg, rgba(10,22,40,0.78) 0%, rgba(10,22,40,0.62) 50%, rgba(10,22,40,0.92) 100%),
    url("../images/about-hero-bg.webp") center 78% / cover no-repeat,
    var(--navy-900);
}

.page-header--brands {
  background:
    linear-gradient(180deg, rgba(10,22,40,0.78) 0%, rgba(10,22,40,0.62) 50%, rgba(10,22,40,0.92) 100%),
    url("../images/brands-hero-bg.webp") center / cover no-repeat,
    var(--navy-900);
}

.page-header--booking {
  padding-bottom: clamp(1.5rem, 1rem + 1vw, 2.5rem);
}
@media (max-width: 720px) {
  .page-header--areas {
    background:
      linear-gradient(180deg, var(--navy-900) 0%, rgba(10,22,40,0.85) 50%, rgba(10,22,40,0.40) 100%),
      url("../images/areas-hero-virginia.webp") center bottom / 80% auto no-repeat,
      var(--navy-900);
    padding-bottom: clamp(8rem, 6rem + 12vw, 14rem);
  }
}

.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(245, 158, 11, 0.16), transparent 50%),
    radial-gradient(ellipse at 0% 100%, rgba(42, 74, 122, 0.4), transparent 55%);
  z-index: -1;
}

.page-header::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse at 30% 50%, black 20%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at 30% 50%, black 20%, transparent 70%);
  z-index: -1;
  opacity: 0.6;
}

.page-header h1 {
  color: var(--white);
  max-width: 18ch;
  margin-bottom: var(--space-5);
}

.page-header p {
  color: rgba(255,255,255,0.78);
  max-width: 60ch;
  font-size: var(--text-lg);
}

.breadcrumb {
  display: flex;
  gap: var(--space-2);
  font-size: var(--text-xs);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: var(--space-8);
  font-weight: 600;
}

.breadcrumb a { color: var(--amber-400); }

/* ============================================
   Service detail list (services page)
   ============================================ */
.service-detail {
  display: grid;
  grid-template-columns: 80px 1fr 1fr;
  gap: var(--space-8);
  padding-block: var(--space-12);
  border-top: 1px solid var(--color-border);
  align-items: start;
}

.service-detail:first-child { border-top: 0; }

@media (max-width: 800px) {
  .service-detail { grid-template-columns: 56px 1fr; }
  .service-detail .detail-visual { grid-column: 1 / -1; margin-top: var(--space-4); }
}

.service-detail .num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--amber-500);
  line-height: 1;
}

.service-detail h3 {
  margin-bottom: var(--space-4);
}

.service-detail ul {
  list-style: none;
  margin-top: var(--space-5);
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.service-detail li {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: 0.95rem;
  color: var(--gray-700);
}

.service-detail li svg {
  width: 18px; height: 18px;
  color: var(--success);
  flex: 0 0 auto;
}

.detail-visual {
  background: var(--navy-900);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.detail-visual h4 {
  color: var(--white);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
}

.detail-visual .price {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--amber-400);
  letter-spacing: -0.02em;
}

.detail-visual p {
  color: rgba(255,255,255,0.72);
  font-size: 0.92rem;
}

/* ============================================
   About page
   ============================================ */
.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 5rem);
}

@media (max-width: 900px) {
  .about-story { grid-template-columns: 1fr; }
}

.about-story h2 { margin-bottom: var(--space-6); }

.about-story p + p { margin-top: var(--space-4); }

.value-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--space-6);
}

.value-card {
  padding: var(--space-6);
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
}

.value-card .icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--amber-500);
  color: var(--navy-900);
  display: grid;
  place-items: center;
  margin-bottom: var(--space-4);
}

.value-card .icon svg { width: 24px; height: 24px; stroke-width: 2.25; }

.value-card h4 { margin-bottom: var(--space-2); }
.value-card p { font-size: 0.95rem; }

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: var(--space-6);
  padding: var(--space-10);
  background: var(--navy-900);
  color: var(--white);
  border-radius: var(--radius-xl);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.stats-grid::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 30%, rgba(245,158,11,0.12), transparent 50%);
  z-index: -1;
}

.stat {
  text-align: left;
}

.stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 1.5rem + 3vw, 3.75rem);
  color: var(--amber-400);
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: var(--space-2);
}

.stat span {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

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

.faq-item {
  border-bottom: 1px solid var(--color-border);
}

.faq-item summary {
  padding: var(--space-6) 0;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--navy-900);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: '';
  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='%230f2140' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  transition: transform var(--duration-fast) var(--ease-out);
  flex: 0 0 auto;
}

.faq-item[open] summary::after { transform: rotate(180deg); }

.faq-item .answer {
  padding: 0 0 var(--space-6);
  color: var(--gray-700);
  line-height: 1.6;
}

/* ============================================
   Contact page
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 5rem);
  align-items: start;
}

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

.contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

.contact-card {
  padding: var(--space-6);
  background: var(--white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: var(--space-4);
}

.contact-card .icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--navy-900);
  color: var(--amber-400);
  display: grid;
  place-items: center;
}

.contact-card .icon svg { width: 22px; height: 22px; stroke-width: 2.25; }

.contact-card h4 { font-size: 1rem; margin-bottom: var(--space-1); }
.contact-card p, .contact-card a { font-size: 0.95rem; color: var(--gray-700); }
.contact-card a:hover { color: var(--amber-600); }

/* Utility */
.text-center { text-align: center; }
.mb-0 { margin-bottom: 0; }
.mt-0 { margin-top: 0; }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
