/* ===== TOKENS ===== */
:root {
  color-scheme: light dark;
  --navy: #0D1B2A;
  --navy-mid: #1B2D45;
  --navy-light: #253B56;
  --orange: #C95A12;
  --orange-hover: #A6350A;
  --copper: #B87333;
  --surface: #F5F2ED;
  --surface-card: #FFFFFF;
  --ink: #0D1B2A;
  --ink-secondary: #3D4F5F;
  --ink-muted: #5C6B7A;
  --border: #DDD8D0;
  --star: #F0A500;
  --shadow-card: rgba(13,27,42,0.08);
  --shadow-card-hover: rgba(13,27,42,0.14);
  --font: 'Segoe UI', system-ui, -apple-system, sans-serif;
  --max-w: 1100px;
  --gap: clamp(1rem, 3vw, 2rem);
  --section-py: clamp(3rem, 8vw, 6rem);
  --bg: var(--surface);
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --surface: #0A1219;
    --surface-card: #12202E;
    --ink: #E8E5E0;
    --ink-secondary: #A8B8C8;
    --ink-muted: #8A9AAA;
    --border: #1E3044;
    --navy: #0A1219;
    --navy-mid: #0F1A26;
    --navy-light: #162636;
    --shadow-card: rgba(0,0,0,0.25);
    --shadow-card-hover: rgba(0,0,0,0.4);
    --bg: var(--surface);
  }
}
:root[data-theme="dark"] {
  --surface: #0A1219;
  --surface-card: #12202E;
  --ink: #E8E5E0;
  --ink-secondary: #A8B8C8;
  --ink-muted: #8A9AAA;
  --border: #1E3044;
  --navy: #0A1219;
  --navy-mid: #0F1A26;
  --navy-light: #162636;
  --shadow-card: rgba(0,0,0,0.25);
  --shadow-card-hover: rgba(0,0,0,0.4);
  --bg: var(--surface);
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
img:not([class*="nav-logo"]) { object-fit: cover; max-width: 100%; }
.service-img img, .about-img, .gallery-item img, .content-section img { aspect-ratio: 16/10; width: 100%; height: auto; object-fit: cover; }
body {
  font-family: var(--font);
  background: var(--surface);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  text-wrap: pretty;
  overflow-x: clip;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; }

/* Focus-visible for keyboard accessibility */
:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 2px;
}
:focus:not(:focus-visible) { outline: none; }
.site-nav :focus-visible,
.about :focus-visible,
.testimonials :focus-visible,
.cta-section :focus-visible,
.site-footer :focus-visible,
.page-header :focus-visible,
.content-section.alt :focus-visible,
.mobile-cta :focus-visible {
  outline-color: #fff;
}

/* ===== UTILITIES ===== */
.wrap { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--gap); }
.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.5rem;
}
.section-title {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.15;
  text-wrap: balance;
  color: var(--ink);
  margin-bottom: 1rem;
}
.section-subtitle {
  font-size: 1rem;
  color: var(--ink-secondary);
  max-width: 55ch;
  line-height: 1.65;
}

/* ===== NAV ===== */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(13, 27, 42, 0.95);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background 0.3s;
}
.site-nav:has(.nav-links.open) {
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  background: var(--navy);
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gap);
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.nav-logo {
  display: flex;
  align-items: center;
  color: #fff;
  letter-spacing: -0.02em;
  transition: opacity 0.2s;
}
.nav-logo:hover { opacity: 0.85; }
.nav-logo img { height: 36px; width: auto; }
.nav-logo-text { display: flex; flex-direction: column; margin-left: 0.4rem; line-height: 1.05; }
.nav-logo-text span { display: block; font-weight: 900; text-transform: uppercase; letter-spacing: 2px; }
.nav-logo-text .logo-name { font-size: 0.7rem; color: #fff; }
.nav-logo-text .logo-tagline { font-size: 0.7rem; color: #fff; }
.nav-logo-text .logo-region { font-size: 0.7rem; color: #fff; }
@media (min-width: 768px) {
  .nav-logo img { height: 64px; }
  .nav-logo-text { margin-left: 0.6rem; line-height: 1.1; }
  .nav-logo-text .logo-name { font-size: 1.1rem; }
  .nav-logo-text .logo-tagline { font-size: 1.1rem; }
  .nav-logo-text .logo-region { font-size: 1.1rem; }
  .nav-inner { height: 90px; }
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  list-style: none;
}
.nav-links > li { position: relative; }
.nav-links > li > a {
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.02em;
  transition: color 0.2s;
  padding: 0.5rem 0;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}
.nav-links > li > a:hover { color: #fff; }
.nav-links a[aria-current="page"] { color: #fff; }
.nav-links .caret {
  display: inline-block;
  width: 0; height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid currentColor;
  margin-top: 1px;
}
.nav-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  min-width: 200px;
  background: var(--navy-mid);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: 0.5rem 0;
  box-shadow: 0 12px 32px rgba(0,0,0,0.35);
  list-style: none;
  z-index: 110;
}
.nav-dropdown::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 12px; height: 6px;
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
  background: var(--navy-mid);
}
.nav-dropdown li a {
  display: block;
  padding: 0.55rem 1.25rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  white-space: nowrap;
  transition: background 0.15s, color 0.15s;
}
.nav-dropdown li a:hover {
  background: rgba(232,101,26,0.12);
  color: var(--orange);
}
.has-dropdown:hover .nav-dropdown,
.has-dropdown:focus-within .nav-dropdown {
  display: block;
}
.nav-phone {
  display: none;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  font-weight: 700;
  color: #fff;
}
.nav-links .nav-cta {
  background: var(--orange);
  color: #fff !important;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 15px 1.1rem;
  border-radius: 5px;
  letter-spacing: 0.02em;
  transition: background 0.2s, transform 0.15s;
  cursor: pointer;
}
.nav-links .nav-cta:hover { background: var(--orange-hover); transform: translateY(-1px); }

@media (min-width: 768px) {
  .nav-phone { display: flex; }
}

.nav-toggle {
  display: none;
  background: none;
  color: #fff;
  font-size: 1.4rem;
  padding: 0.25rem;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}
@media (max-width: 767px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 0;
    background: var(--navy);
    padding: 6rem 2rem 2rem;
    gap: 0;
    z-index: 999;
    justify-content: flex-start;
    align-items: flex-start;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .nav-links.open > li {
    width: 100%;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    opacity: 0;
    transform: translateY(20px);
    animation: menuItemIn 0.4s ease forwards;
  }
  .nav-links.open > li:nth-child(1) { animation-delay: 0.05s; }
  .nav-links.open > li:nth-child(2) { animation-delay: 0.12s; }
  .nav-links.open > li:nth-child(3) { animation-delay: 0.19s; }
  .nav-links.open > li:nth-child(4) { animation-delay: 0.26s; }
  .nav-links.open > li:last-child { border-bottom: none; }
  @keyframes menuItemIn {
    to { opacity: 1; transform: translateY(0); }
  }
  .nav-links.open > li > a {
    font-size: clamp(2rem, 7vw, 2.8rem);
    font-weight: 900;
    color: #fff;
    padding: 1rem 0 0.5rem;
    display: block;
    width: 100%;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    transition: color 0.2s;
  }
  .nav-links.open > li > a:hover,
  .nav-links.open > li > a:active { color: var(--orange); }
  .nav-links.open .has-dropdown > a .caret { display: none; }
  .nav-links.open .has-dropdown .nav-dropdown {
    display: flex !important;
    flex-wrap: wrap;
    gap: 0;
    padding: 0 0 1rem;
    position: static;
    background: none;
    border: none;
    box-shadow: none;
    min-width: unset;
    width: 100%;
    transform: none;
    border-radius: 0;
    z-index: auto;
  }
  .nav-links.open .has-dropdown .nav-dropdown::before {
    display: none;
  }
  .nav-links.open .has-dropdown .nav-dropdown li {
    width: 50%;
  }
  .nav-links.open .has-dropdown .nav-dropdown li a {
    font-size: 0.95rem;
    font-weight: 500;
    color: rgba(255,255,255,0.55);
    padding: 0.4rem 0;
    display: block;
    transition: color 0.2s;
    letter-spacing: 0;
    text-transform: none;
  }
  .nav-links.open .has-dropdown .nav-dropdown li a:hover,
  .nav-links.open .has-dropdown .nav-dropdown li a:active {
    color: var(--orange);
  }
  .nav-links.open .nav-cta {
    display: none !important;
  }
  .nav-links.open .nav-phone {
    display: none !important;
  }
  .nav-links.open ~ .mobile-cta,
  .nav-links.open + .mobile-cta { display: none; }
  body:has(.nav-links.open) .mobile-cta { display: none !important; }
  .nav-toggle { z-index: 1000; position: relative; }
}

/* ===== PAGE HEADER (inner pages) ===== */
.page-header {
  background: var(--navy);
  padding: 12rem 0 4rem;
  color: #fff;
  background-size: cover;
  background-position: center;
  position: relative;
}
.page-header.has-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13,27,42,0.45) 0%, rgba(13,27,42,0.55) 100%);
  z-index: 0;
}
.page-header.has-bg .wrap {
  position: relative;
  z-index: 1;
}
.page-header .section-label { margin-bottom: 0.5rem; }
.page-header h1 {
  font-size: clamp(2.2rem, 6vw, 3.6rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: #fff;
  max-width: 20ch;
  text-wrap: balance;
}
.page-header h1 span { color: var(--orange); }
.page-header p {
  margin-top: 0.75rem;
  font-size: 1rem;
  color: rgba(255,255,255,0.7);
  max-width: 50ch;
  line-height: 1.6;
}
.breadcrumb {
  margin-top: 1rem;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.6);
}
.breadcrumb a {
  color: rgba(255,255,255,0.7);
  transition: color 0.2s;
}
.breadcrumb a:hover { color: var(--orange); }
.breadcrumb .sep { margin: 0 0.35rem; }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  padding: 0 0 clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
  background: var(--navy);
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.85;
}
.hero-overlay {
  display: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gap);
  width: 100%;
}
.hero-accent {
  width: 4px;
  height: 48px;
  background: var(--orange);
  border-radius: 2px;
  margin-bottom: 1.25rem;
}
.hero h1 {
  font-size: clamp(2.2rem, 6vw, 3.8rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: #fff;
  max-width: 14ch;
  text-wrap: balance;
  margin-bottom: 1rem;
  text-shadow: 0 2px 12px rgba(0,0,0,0.5), 0 1px 3px rgba(0,0,0,0.4);
}
.hero h1 span { color: var(--orange); text-shadow: 0 2px 12px rgba(0,0,0,0.5), 0 1px 3px rgba(0,0,0,0.4); }
.hero-sub {
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  color: rgba(255,255,255,0.9);
  max-width: 42ch;
  line-height: 1.6;
  margin-bottom: 1.75rem;
  text-shadow: 0 1px 8px rgba(0,0,0,0.5), 0 1px 2px rgba(0,0,0,0.3);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--orange);
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 1rem 2rem;
  border-radius: 6px;
  letter-spacing: 0.01em;
  transition: background 0.2s, transform 0.15s;
}
.btn-primary:hover { background: var(--orange-hover); transform: translateY(-1px); }
.btn-primary:active { transform: translateY(0); }
.btn-primary:disabled {
  background: var(--ink-muted);
  cursor: not-allowed;
  transform: none;
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255,255,255,0.08);
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 1rem 2rem;
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.2);
  transition: background 0.2s;
}
.btn-outline:hover { background: rgba(255,255,255,0.15); }
.btn-surface {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--surface-card);
  color: var(--orange);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 1rem 2rem;
  border-radius: 6px;
  border: 1px solid var(--border);
  transition: border-color 0.2s, transform 0.15s;
}
.btn-surface:hover { border-color: var(--orange); transform: translateY(-1px); }
.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: #fff;
  color: var(--orange);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 1rem 2rem;
  border-radius: 6px;
  transition: transform 0.15s, box-shadow 0.2s;
}
.btn-white:hover { transform: translateY(-1px); box-shadow: 0 4px 12px rgba(0,0,0,0.15); }
.btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: transparent;
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 1rem 2rem;
  border-radius: 6px;
  border: 2px solid rgba(255,255,255,0.4);
  transition: background 0.2s, border-color 0.2s;
}
.btn-outline-white:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.6); }

/* ===== TRUST BAR ===== */
.trust-bar {
  background: var(--navy);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 1.25rem 0;
}
.trust-bar .wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  text-align: center;
}
.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
}
.trust-icon { font-size: 1.3rem; line-height: 1; }
.trust-text {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}
@media (max-width: 600px) {
  .trust-bar .wrap { grid-template-columns: repeat(2, 1fr); }
}

/* ===== SERVICES ===== */
.services {
  padding: var(--section-py) 0;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
.services::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--orange) 0%, rgba(232,101,26,0.2) 100%);
}
.services::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,90,18,0.04) 0%, transparent 70%);
  animation: floatOrb 20s ease-in-out infinite;
  pointer-events: none;
}
@keyframes floatOrb {
  0%, 100% { transform: translate(0, 0); }
  33% { transform: translate(-40px, 60px); }
  66% { transform: translate(30px, -40px); }
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
}
.service-card {
  background: var(--surface-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}
.service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px var(--shadow-card-hover);
}
.service-img {
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}
.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.service-card:hover .service-img img {
  transform: scale(1.06);
}
.service-body {
  padding: 1.25rem 1.5rem 1.5rem;
}
.service-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
  padding: 15px 15px 0;
}
.service-card p {
  font-size: 0.85rem;
  color: var(--ink-secondary);
  line-height: 1.55;
  padding: 0 15px;
}
.service-card .learn {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  margin-top: 0.75rem;
  padding: 0 15px 15px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--orange);
  transition: gap 0.2s;
}
.service-card:hover .learn { gap: 0.5rem; }
a.service-card { display: block; }
@media (max-width: 900px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 550px) { .services-grid { grid-template-columns: 1fr; } }

/* ===== ABOUT ===== */
.about {
  padding: var(--section-py) 0;
  background: var(--navy);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.about::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 80px,
      rgba(255,255,255,0.015) 80px,
      rgba(255,255,255,0.015) 81px
    );
  pointer-events: none;
}
.about::after {
  content: '';
  position: absolute;
  bottom: -120px;
  right: -120px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,90,18,0.1) 0%, transparent 70%);
  animation: pulseGlow 6s ease-in-out infinite;
  pointer-events: none;
}
@keyframes pulseGlow {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.15); opacity: 1; }
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  margin-top: 2rem;
}
.about-img {
  border-radius: 8px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  width: 100%;
}
.about .section-title { color: #fff; }
.about .section-subtitle { color: rgba(255,255,255,0.75); }
.about-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
}
.stat { text-align: center; }
.stat-num {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 900;
  color: var(--orange);
  letter-spacing: -0.02em;
  line-height: 1;
}
.stat-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-top: 0.25rem;
}
/* Reversed about grid (image left, text right) */
.about-grid--reverse {
  direction: rtl;
}
.about-grid--reverse > * {
  direction: ltr;
}

/* Pull quote */
.about-quote {
  margin-top: 1.5rem;
  padding: 1.25rem 1.5rem;
  border-left: 3px solid var(--orange);
  background: rgba(255,255,255,0.04);
  border-radius: 0 6px 6px 0;
  font-size: 1rem;
  font-style: italic;
  color: rgba(255,255,255,0.85);
  line-height: 1.65;
}

/* Community towns callout */
.community-towns {
  text-align: center;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.community-towns p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  max-width: 55ch;
  margin: 0 auto;
}
.community-towns strong {
  color: rgba(255,255,255,0.85);
  font-weight: 700;
}

@media (max-width: 700px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-grid--reverse { direction: ltr; }
  .about-stats { grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
}

/* ===== WHY US ===== */
.why-us {
  padding: var(--section-py) 0;
  background: linear-gradient(180deg, var(--bg) 0%, #f0ece6 100%);
  position: relative;
  overflow: hidden;
}
.why-us::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, rgba(232,101,26,0.2) 0%, var(--orange) 50%, rgba(232,101,26,0.2) 100%);
}
.why-us::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: -10%;
  width: 120%;
  height: 200px;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 200'%3E%3Cpath d='M0,100 C360,160 720,40 1080,100 C1260,130 1380,80 1440,100 L1440,200 L0,200Z' fill='%230D1B2A' fill-opacity='0.03'/%3E%3C/svg%3E")
    no-repeat bottom center / 100% auto;
  pointer-events: none;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
}
.why-card {
  display: flex;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--surface-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.why-card:hover {
  border-color: var(--orange);
  box-shadow: 0 4px 16px var(--shadow-card);
}
.why-num {
  flex-shrink: 0;
  width: 36px; height: 36px;
  background: var(--navy);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 800;
}
:root[data-theme="dark"] .why-num,
:root:not([data-theme="light"]) .why-num { background: var(--orange); }
@media (prefers-color-scheme: light) { :root:not([data-theme="dark"]) .why-num { background: var(--navy); } }
/* Dark mode badge icon bg */
:root[data-theme="dark"] .badge-icon,
:root:not([data-theme="light"]) .badge-icon { background: rgba(201, 90, 18, 0.15); }
@media (prefers-color-scheme: light) { :root:not([data-theme="dark"]) .badge-icon { background: rgba(201, 90, 18, 0.08); } }
/* Dark mode: why-us gradient fix */
:root[data-theme="dark"] .why-us { background: linear-gradient(180deg, var(--bg) 0%, #0e1920 100%); }
@media (prefers-color-scheme: dark) { :root:not([data-theme="light"]) .why-us { background: linear-gradient(180deg, var(--bg) 0%, #0e1920 100%); } }
.why-card h3 { font-size: 0.95rem; font-weight: 700; margin-bottom: 0.25rem; }
.why-card p { font-size: 0.82rem; color: var(--ink-secondary); line-height: 1.55; }
@media (max-width: 650px) { .why-grid { grid-template-columns: 1fr; } }

/* ===== TESTIMONIALS ===== */
.testimonials {
  padding: var(--section-py) 0;
  background: var(--navy);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.testimonials::before {
  content: '';
  position: absolute;
  inset: -300px 0 0 0;
  background: repeating-linear-gradient(
    93deg,
    transparent,
    transparent 7px,
    rgba(174,194,224,0.05) 7px,
    rgba(174,194,224,0.05) 8px
  );
  animation: drizzle 1.4s linear infinite;
  pointer-events: none;
}
@keyframes drizzle {
  0% { transform: translateY(-300px); }
  100% { transform: translateY(0); }
}
.testimonials .section-title { color: #fff; }
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
}
.testi-card {
  background: var(--navy-mid);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 8px;
  padding: 1.5rem;
  transition: border-color 0.2s, transform 0.2s;
}
.testi-card:hover {
  border-color: rgba(255,255,255,0.14);
  transform: translateY(-2px);
}
.testi-stars {
  color: var(--star);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  margin-bottom: 0.75rem;
}
.testi-card blockquote {
  font-size: 0.88rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.85);
  margin-bottom: 1rem;
  font-style: normal;
}
.testi-author {
  font-size: 0.78rem;
  font-weight: 700;
  color: rgba(255,255,255,0.6);
}
.testi-author .city { color: var(--orange); font-weight: 600; }
@media (max-width: 800px) { .testi-grid { grid-template-columns: 1fr; } }

/* ===== SERVICE AREA ===== */
.area { padding: var(--section-py) 0; }
.area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
}
.area-tag {
  display: inline-block;
  background: var(--surface-card);
  border: 1px solid var(--border);
  padding: 0.45rem 0.9rem;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--ink-secondary);
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s;
}
a.area-tag:hover { border-color: var(--orange); color: var(--orange); text-decoration: none; }
.area-tag:hover { border-color: var(--orange); color: var(--orange); }
@media (max-width: 767px) {
  .area-tag {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
  }
}

/* ===== CTA SECTION ===== */
.cta-section {
  padding: clamp(4rem, 10vw, 7rem) 0;
  background: linear-gradient(135deg, var(--orange) 0%, #a84e0e 50%, var(--orange) 100%);
  background-size: 200% 200%;
  animation: ctaShift 8s ease infinite;
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle 400px at 20% 50%, rgba(255,255,255,0.08) 0%, transparent 60%),
    radial-gradient(circle 300px at 80% 30%, rgba(255,255,255,0.05) 0%, transparent 60%),
    url('images/oregon-coast-storm.jpg') center/cover no-repeat;
  opacity: 0.15;
  pointer-events: none;
}
@keyframes ctaShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
.cta-section h2 {
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}
.cta-section p {
  font-size: 1rem;
  opacity: 0.9;
  margin-bottom: 1.5rem;
  max-width: 45ch;
  margin-left: auto;
  margin-right: auto;
}
.cta-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.5rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
  transition: transform 0.15s, opacity 0.2s;
}
.cta-phone:hover { transform: scale(1.03); opacity: 0.9; }
.cta-actions { display: flex; gap: 0.75rem; justify-content: center; flex-wrap: wrap; }

/* ===== CONTACT FORM ===== */
.contact { padding: var(--section-py) 0; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  margin-top: 2rem;
}
.contact-info h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 0.75rem; }
.contact-line {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  margin-bottom: 0.75rem;
  font-size: 0.88rem;
  color: var(--ink-secondary);
}
.contact-line strong { color: var(--ink); }
.contact-line a {
  color: var(--ink-secondary);
  transition: color 0.2s;
}
.contact-line a:hover { color: var(--orange); }
.form-group { margin-bottom: 1rem; }
.form-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 0.35rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 0.85rem;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 0.88rem;
  font-family: var(--font);
  background: var(--surface-card);
  color: var(--ink);
  transition: border-color 0.2s;
}
.form-group input,
.form-group select {
  min-height: 44px;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(232,101,26,0.12);
}
.form-group select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%237A8B99' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.85rem center;
  padding-right: 2.5rem;
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--ink-muted);
  opacity: 0.7;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 700px) {
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

/* ===== QUICK RESPONSE BANNER ===== */
.response-banner {
  background: var(--navy);
  border-bottom: 3px solid var(--orange);
  padding: 1.25rem 0;
}
.response-banner .wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.response-badge {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.85);
  font-weight: 600;
}
.response-badge .badge-icon {
  flex-shrink: 0;
  width: 36px; height: 36px;
  background: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}
.response-badge strong {
  color: #fff;
}
@media (max-width: 600px) {
  .response-banner .wrap {
    flex-direction: column;
    gap: 0.75rem;
    text-align: center;
  }
}

/* ===== CONTACT METHOD CARDS ===== */
.contact-methods {
  display: grid;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}
.contact-method {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 1rem 1.15rem;
  background: var(--surface-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.contact-method:hover {
  border-color: var(--orange);
  box-shadow: 0 4px 16px var(--shadow-card);
}
.contact-method-icon {
  flex-shrink: 0;
  width: 40px; height: 40px;
  background: var(--navy);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) .contact-method-icon { background: var(--orange); }
}
:root[data-theme="dark"] .contact-method-icon { background: var(--orange); }
.contact-method-text {
  flex: 1;
  min-width: 0;
}
.contact-method-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 0.15rem;
}
.contact-method-value {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--ink);
}
.contact-method-value a {
  color: var(--ink);
  transition: color 0.2s;
}
.contact-method-value a:hover { color: var(--orange); }
.contact-method-sub {
  font-size: 0.78rem;
  color: var(--ink-muted);
  margin-top: 0.15rem;
  line-height: 1.4;
}

/* ===== BUSINESS HOURS TABLE ===== */
.hours-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
  margin-top: 0.75rem;
}
.hours-table tr { border-bottom: 1px solid var(--border); }
.hours-table tr:last-child { border-bottom: none; }
.hours-table td {
  padding: 0.5rem 0;
  color: var(--ink-secondary);
}
.hours-table td:first-child {
  font-weight: 600;
  color: var(--ink);
  width: 55%;
}
.hours-table td:last-child { text-align: right; }
.hours-table .hours-today td {
  color: var(--orange);
  font-weight: 700;
}
.hours-table .hours-closed td:last-child {
  color: var(--ink-muted);
}

/* ===== LICENSE BADGE ===== */
.license-badge {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 1rem;
  background: rgba(34,197,94,0.08);
  border: 1px solid rgba(34,197,94,0.2);
  border-radius: 8px;
  margin-top: 1rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink-secondary);
}
.license-badge .badge-check {
  flex-shrink: 0;
  width: 24px; height: 24px;
  background: #22C55E;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 900;
}

/* ===== MAP SECTION ===== */
.map-section {
  padding: 0 0 var(--section-py);
  background: var(--bg);
}
.map-container {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 4px 16px var(--shadow-card);
}
.map-container iframe {
  display: block;
  width: 100%;
  height: 400px;
  border: 0;
}
@media (max-width: 700px) {
  .map-container iframe { height: 280px; }
}

/* ===== CONTENT SECTIONS (inner pages) ===== */
.content-section { padding: var(--section-py) 0; }
.content-section.alt { background: var(--navy); color: #fff; }
.content-section.alt .section-title { color: #fff; }
.content-section.alt .section-subtitle { color: rgba(255,255,255,0.75); }
.content-section.alt .content-body { color: rgba(255,255,255,0.75); }
.content-section.alt .content-body h2,
.content-section.alt .content-body h3,
.content-section.alt .content-body strong { color: #fff; }
.content-body {
  max-width: 70ch;
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--ink-secondary);
}
.city-page .content-body {
  max-width: 100%;
}
.content-body h2 {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--ink);
  margin: 2rem 0 0.75rem;
  letter-spacing: -0.02em;
}
.content-body h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
  margin: 1.5rem 0 0.5rem;
}
.content-body p { margin-bottom: 1rem; }
.content-body ul, .content-body ol {
  margin: 0.75rem 0 1rem 1.25rem;
}
.content-body li { margin-bottom: 0.35rem; }
.content-body strong { color: var(--ink); }
.content-body a {
  color: var(--orange);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(232,101,26,0.3);
  transition: text-decoration-color 0.2s;
}
.content-body a:hover { text-decoration-color: var(--orange); }

/* ===== PROCESS STEPS ===== */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
}
.process-step {
  text-align: center;
  padding: 1.5rem 1rem;
}
.step-num {
  width: 44px; height: 44px;
  background: var(--orange);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 800;
  margin: 0 auto 0.75rem;
}
.process-step h3 {
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}
.process-step p {
  font-size: 0.8rem;
  color: var(--ink-secondary);
  line-height: 1.5;
}
@media (max-width: 700px) { .process-steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 450px) { .process-steps { grid-template-columns: 1fr; } }

/* ===== FAQ ACCORDION ===== */
.faq-list { margin-top: 2rem; max-width: 70ch; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 0;
  background: none;
  text-align: left;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--ink);
  cursor: pointer;
  transition: color 0.2s;
}
.faq-question:hover { color: var(--orange); }
.faq-icon {
  flex-shrink: 0;
  width: 20px; height: 20px;
  position: relative;
  transition: transform 0.3s;
}
.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: var(--ink-muted);
  border-radius: 1px;
}
.faq-icon::before {
  width: 12px; height: 2px;
  top: 9px; left: 4px;
}
.faq-icon::after {
  width: 2px; height: 12px;
  top: 4px; left: 9px;
  transition: transform 0.3s;
}
.faq-item.open .faq-icon::after { transform: rotate(90deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-answer-inner {
  padding: 0 0 1.1rem;
  font-size: 0.88rem;
  color: var(--ink-secondary);
  line-height: 1.65;
}

/* ===== GALLERY FILTERS ===== */
.filter-row { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-bottom: 2rem; }
.filter-tag {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1.1rem;
  border-radius: 100px;
  border: 1px solid var(--border);
  background: var(--surface-card);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--ink-secondary);
  cursor: pointer;
  transition: all 0.2s;
  min-height: 44px;
}
.filter-tag:hover { border-color: var(--orange); color: var(--orange); }
.filter-tag.active { background: var(--orange); border-color: var(--orange); color: #fff; }
.gallery-title { font-size: 0.85rem; font-weight: 800; color: #fff; margin-bottom: 0.2rem; }
.gallery-desc { font-size: 0.72rem; color: rgba(255,255,255,0.75); line-height: 1.4; }

/* ===== GALLERY GRID ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-top: 2rem;
}
.gallery-item {
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--navy-mid);
  position: relative;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(13,27,42,0.85));
  padding: 2rem 0.75rem 0.75rem;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 600;
}
@media (max-width: 700px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 450px) { .gallery-grid { grid-template-columns: 1fr; } }

/* ===== TWO-COL LAYOUT ===== */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
  margin-top: 2rem;
}
@media (max-width: 700px) { .two-col { grid-template-columns: 1fr; } }

/* ===== FEATURE LIST ===== */
.feature-list { list-style: none; margin: 1.5rem 0; }
.feature-list li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.88rem;
  color: var(--ink-secondary);
}
.feature-list li:last-child { border-bottom: none; }
.feature-check {
  flex-shrink: 0;
  width: 22px; height: 22px;
  background: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.65rem;
  font-weight: 900;
  margin-top: 0.1rem;
}

/* ===== CITY CARD ===== */
.city-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
}
.city-card {
  background: var(--surface-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.5rem;
  transition: transform 0.2s, box-shadow 0.2s;
}
.city-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px var(--shadow-card-hover);
}
.city-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}
.city-card p {
  font-size: 0.82rem;
  color: var(--ink-secondary);
  line-height: 1.55;
}
@media (max-width: 700px) { .city-grid { grid-template-columns: 1fr; } }

/* ===== FOOTER ===== */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.7);
  padding: 3rem 0 1.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}
.footer-brand { font-size: 0.85rem; line-height: 1.65; }
.footer-brand .name {
  font-size: 1.05rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.5rem;
}
.footer-col h3 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 0.75rem;
}
.footer-col a {
  display: block;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 0.4rem;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--orange); text-decoration: underline; text-underline-offset: 3px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.55);
}
.footer-areas {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 1.5rem;
  margin-bottom: 1.5rem;
}
.footer-areas h3 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 0.75rem;
}
.footer-areas .area-tag {
  font-size: 0.75rem;
  padding: 0.3rem 0.65rem;
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 767px) {
  .footer-col a { min-height: 44px; display: flex; align-items: center; }
}
@media (max-width: 500px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ===== SCROLL REVEAL & ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }
.reveal-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal-scale.visible { opacity: 1; transform: scale(1); }
.stagger-1 { transition-delay: 0.08s; }
.stagger-2 { transition-delay: 0.16s; }
.stagger-3 { transition-delay: 0.24s; }
.stagger-4 { transition-delay: 0.32s; }
.stagger-5 { transition-delay: 0.40s; }
.stagger-6 { transition-delay: 0.48s; }

/* Hero parallax */
.hero { position: relative; overflow: hidden; }
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: inherit;
  background-size: cover;
  background-position: center;
  will-change: transform;
}
.hero-content {
  animation: heroFadeIn 1s cubic-bezier(0.22, 1, 0.36, 1) 0.2s both;
}
@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(32px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero .section-label {
  animation: heroFadeIn 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.1s both;
}
.hero h1 {
  animation: heroFadeIn 1s cubic-bezier(0.22, 1, 0.36, 1) 0.25s both;
}
.hero p {
  animation: heroFadeIn 1s cubic-bezier(0.22, 1, 0.36, 1) 0.4s both;
}
.hero .hero-actions {
  animation: heroFadeIn 1s cubic-bezier(0.22, 1, 0.36, 1) 0.55s both;
}

/* Stat counters pulse */
@keyframes countPulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.08); }
  100% { transform: scale(1); }
}
.stat-number.visible {
  animation: countPulse 0.5s ease 0.3s;
}

/* Service card hover lift */
.service-card {
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(13,27,42,0.18);
}

/* Glow pulse on CTA sections */
@keyframes glowPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(232,101,26,0); }
  50% { box-shadow: 0 0 40px 8px rgba(232,101,26,0.15); }
}
.cta-section .btn-white {
  animation: glowPulse 3s ease-in-out infinite;
}

/* Floating badge shimmer */
@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

/* Smooth nav scroll shadow */
.site-nav.scrolled {
  background: rgba(13, 27, 42, 0.98);
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

/* ===== MOBILE RESPONSIVE FIXES ===== */
@media (max-width: 767px) {
  .btn-primary,
  .btn-outline,
  .btn-surface,
  .btn-white,
  .btn-outline-white {
    padding: 15px 24px;
    font-size: 1rem;
    width: 100%;
    justify-content: center;
    text-align: center;
    min-height: 48px;
  }
  .hero-actions {
    flex-direction: column;
    width: 100%;
  }
  .hero-actions a { width: 100%; }
  .cta-actions {
    flex-direction: column;
    width: 100%;
    align-items: stretch;
  }
  .hero h1 {
    font-size: clamp(1.8rem, 8vw, 2.6rem);
  }
  .hero-sub {
    font-size: 0.95rem;
  }
  .page-header {
    padding: 6rem 0 2.5rem;
  }
  .page-header h1 {
    font-size: clamp(1.8rem, 7vw, 2.8rem);
  }
  .estimate-card {
    max-height: 95vh;
    margin: 0;
    border-radius: 12px 12px 0 0;
  }
  .estimate-overlay {
    align-items: flex-end;
    padding: 0;
  }
  .estimate-overlay.active {
    display: flex;
  }
  .calc-widget {
    margin: 0 auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-left, .reveal-right, .reveal-scale { opacity: 1; transform: none; transition: none; }
  .hero-content, .hero .section-label, .hero h1, .hero p, .hero .hero-actions { animation: none; }
  .testimonials::before { animation: none; }
  .cta-section .btn-white { animation: none; }
  .service-card { transition: none; }
}

/* ===== BLOG ARTICLE ===== */
.blog-article .wrap { max-width: 760px; }
.blog-meta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding-bottom: 1.5rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--border);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--ink-muted);
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.blog-meta .blog-category {
  background: var(--orange);
  color: #fff;
  padding: 0.2rem 0.6rem;
  border-radius: 3px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  transition: background 0.2s;
}
.blog-meta .blog-category:hover {
  background: var(--orange-hover);
}
.blog-article .content-body {
  max-width: 100%;
  font-size: 1.05rem;
  line-height: 1.8;
}
.blog-article .content-body p { margin-bottom: 1.25rem; }
.blog-article .content-body h2 {
  font-size: 1.4rem;
  margin: 2.5rem 0 1rem;
}
.blog-article .content-body h3 {
  font-size: 1.15rem;
  margin: 2rem 0 0.75rem;
}
.blog-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 0;
  border-top: 1px solid var(--border);
  margin-top: 2rem;
}
.blog-nav a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--orange);
  transition: color 0.2s, gap 0.2s;
}
.blog-nav a:hover { color: var(--orange-hover); gap: 0.6rem; }

/* Blog content blockquote */
.blog-article .content-body blockquote {
  margin: 1.75rem 0;
  padding: 1.25rem 1.5rem;
  border-left: 3px solid var(--orange);
  background: var(--surface-card);
  border-radius: 0 6px 6px 0;
  font-size: 1rem;
  color: var(--ink-secondary);
  line-height: 1.7;
  font-style: italic;
}

/* ===== SKIP LINK ===== */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--orange);
  color: #fff;
  padding: 0.75rem 1.5rem;
  z-index: 200;
  font-weight: 700;
  font-size: 0.85rem;
  border-radius: 0 0 6px 6px;
}
.skip-link:focus {
  left: 0.5rem;
  outline: 2px solid #fff;
  outline-offset: 2px;
}

/* ===== STICKY MOBILE CTA ===== */
.mobile-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 90;
  background: var(--orange);
  padding: 0.75rem var(--gap);
  padding-bottom: calc(0.75rem + env(safe-area-inset-bottom, 0px));
}
.mobile-cta a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: #fff;
  font-weight: 800;
  font-size: 1rem;
  transition: opacity 0.15s;
}
.mobile-cta a:active { opacity: 0.85; }
@media (max-width: 767px) {
  .mobile-cta { display: block; }
  .site-footer { padding-bottom: 4rem; }
}

/* ===== ESTIMATE MODAL ===== */
.estimate-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 500;
  background: rgba(10, 18, 25, 0.8);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  align-items: center;
  justify-content: center;
  padding: var(--gap);
  animation: fadeIn 0.2s ease;
}
.estimate-overlay.active { display: flex; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes slideUp { from { transform: translateY(24px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.estimate-card {
  background: var(--surface-card);
  border-radius: 12px;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  width: 100%;
  max-width: 520px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 24px 64px rgba(0,0,0,0.35);
  animation: slideUp 0.25s ease;
}
.estimate-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}
.estimate-card-header h2 {
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1.2;
}
.estimate-card-header p {
  font-size: 0.85rem;
  color: var(--ink-muted);
  margin-top: 0.25rem;
}
.estimate-close {
  width: 44px; height: 44px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--ink-muted);
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.15s, color 0.15s;
  margin-left: 1rem;
}
.estimate-close:hover { background: var(--border); color: var(--ink); }
.estimate-card .form-group { margin-bottom: 0.85rem; }
.estimate-card .form-row { gap: 0.75rem; }
.estimate-card .btn-primary {
  width: 100%;
  justify-content: center;
  padding: 0.85rem 1.5rem;
  font-size: 1rem;
  margin-top: 0.5rem;
}
.estimate-success {
  display: none;
  text-align: center;
  padding: 2rem 1rem;
}
.estimate-success.show { display: block; }
.estimate-success .check-circle {
  width: 56px; height: 56px;
  background: #22C55E;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.6rem;
  color: #fff;
}
.estimate-success h3 {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}
.estimate-success p {
  font-size: 0.9rem;
  color: var(--ink-secondary);
  line-height: 1.6;
}

/* ===== FLOATING ESTIMATE BUTTON ===== */
.float-estimate {
  display: none;
  position: fixed;
  bottom: 5rem;
  right: 1.25rem;
  z-index: 80;
  background: var(--orange);
  color: #fff;
  font-weight: 800;
  font-size: 0.82rem;
  padding: 0.75rem 1.25rem;
  border-radius: 50px;
  box-shadow: 0 6px 20px rgba(232,101,26,0.4);
  cursor: pointer;
  border: none;
  letter-spacing: 0.02em;
  transition: transform 0.2s, box-shadow 0.2s;
  animation: fadeIn 0.3s ease;
}
.float-estimate:hover { transform: translateY(-2px) scale(1.03); box-shadow: 0 8px 28px rgba(232,101,26,0.5); }
@media (min-width: 768px) {
  .float-estimate.visible { display: block; }
}

/* ===== BACK TO TOP ===== */
.back-to-top {
  display: none;
  position: fixed;
  bottom: 5rem;
  left: 1.25rem;
  z-index: 80;
  width: 44px;
  height: 44px;
  background: var(--navy);
  color: #fff;
  border: 2px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  transition: transform 0.2s, background 0.2s;
  animation: fadeIn 0.3s ease;
}
.back-to-top:hover {
  transform: translateY(-2px);
  background: var(--orange);
  border-color: var(--orange);
}
.back-to-top.visible { display: flex; }
@media (max-width: 767px) {
  .back-to-top { bottom: 4.5rem; left: 1rem; width: 40px; height: 40px; font-size: 1rem; }
}

/* ===== GUTTER CALCULATOR ===== */
.calculator-section {
  padding: clamp(4rem, 10vw, 8rem) 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.calculator-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 20% 80%, rgba(201,90,18,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 80% 20%, rgba(201,90,18,0.08) 0%, transparent 60%);
  pointer-events: none;
  animation: calcGlow 8s ease-in-out infinite alternate;
}
@keyframes calcGlow {
  0% { opacity: 0.6; }
  100% { opacity: 1; }
}
.calc-hero-wrap {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 var(--gap);
  text-align: center;
}
.calc-hero-title {
  font-size: clamp(2.4rem, 6vw, 3.6rem);
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
  text-align: center;
}
.calc-hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.75);
  max-width: 55ch;
  margin: 0 auto 2.5rem;
  line-height: 1.6;
  text-align: center;
}
.calc-widget {
  background: #fff;
  border: none;
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 8px 40px rgba(0,0,0,0.25);
  max-width: 640px;
  margin: 0 auto;
  text-align: left;
}
.calc-widget h3 {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 0.25rem;
}
.calc-widget .calc-sub {
  font-size: 0.85rem;
  color: var(--ink-muted);
  margin-bottom: 1.5rem;
}
.calc-row {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}
.calc-row .calc-field { flex: 1; }
.calc-field label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-muted);
  margin-bottom: 0.35rem;
}
.calc-field select,
.calc-field input[type="number"] {
  width: 100%;
  padding: 0.65rem 0.75rem;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 0.95rem;
  background: var(--bg);
  color: var(--ink);
  min-height: 44px;
}
.calc-field select:focus,
.calc-field input[type="number"]:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(232,101,26,0.12);
}
.calc-result {
  background: var(--navy);
  color: #fff;
  border-radius: 8px;
  padding: 1.25rem 1.5rem;
  margin-top: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.calc-result .calc-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.7;
}
.calc-result .calc-price {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--orange);
}
.calc-result .calc-range {
  font-size: 0.85rem;
  opacity: 0.7;
  margin-top: 0.15rem;
}
.calc-cta {
  display: block;
  width: 100%;
  margin-top: 1rem;
  text-align: center;
  padding: 0.85rem;
  background: var(--orange);
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.calc-cta:hover { background: #d45a16; transform: translateY(-1px); }
@media (max-width: 600px) {
  .calc-row { flex-direction: column; gap: 0.75rem; }
  .calc-widget { padding: 1.25rem; }
}

/* ===== TRUST BADGE STRIP ===== */
.badge-strip {
  padding: 2rem 0;
  background: var(--surface-card);
  border-bottom: 1px solid var(--border);
}
.badge-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.badge-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.badge-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: rgba(201, 90, 18, 0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
}
.badge-text strong {
  display: block;
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--ink);
  line-height: 1.2;
}
.badge-text span {
  font-size: 0.72rem;
  color: var(--ink-muted);
  font-weight: 500;
}
@media (max-width: 900px) {
  .badge-row { grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
}
@media (max-width: 450px) {
  .badge-row { grid-template-columns: 1fr; gap: 1rem; }
}

/* ===== GUTTER DIVIDERS ===== */
.gutter-divider {
  line-height: 0;
  margin-top: -1px;
  position: relative;
  z-index: 2;
}
.gutter-divider svg {
  width: 100%;
  height: clamp(24px, 3vw, 40px);
  display: block;
}
.wave-to-navy { color: var(--navy); }

/* ===== SOCIAL PROOF STATS STRIP ===== */
.proof-strip {
  padding: clamp(3rem, 8vw, 5rem) 0;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  position: relative;
  overflow: hidden;
  color: #fff;
}
.proof-strip .section-label { color: rgba(255,255,255,0.6); }
.proof-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 120px,
      rgba(255,255,255,0.02) 120px,
      rgba(255,255,255,0.02) 121px
    ),
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 120px,
      rgba(255,255,255,0.02) 120px,
      rgba(255,255,255,0.02) 121px
    );
  pointer-events: none;
}
.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 1.5rem;
  text-align: center;
}
.proof-stat {
  padding: 2rem 1rem;
  border-radius: 12px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  transition: transform 0.2s, box-shadow 0.2s, background 0.3s;
  backdrop-filter: blur(4px);
}
.proof-stat:hover {
  transform: translateY(-3px);
  background: rgba(255,255,255,0.08);
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}
.proof-num {
  font-size: clamp(2.5rem, 6vw, 3.5rem);
  font-weight: 900;
  color: var(--orange);
  letter-spacing: -0.03em;
  line-height: 1;
}
.proof-unit {
  font-size: 0.6em;
  vertical-align: middle;
  color: var(--star);
}
.proof-label {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.5);
  margin-top: 0.4rem;
}
@media (max-width: 700px) {
  .proof-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
}
@media (max-width: 400px) {
  .proof-grid { grid-template-columns: 1fr; }
}

/* ===== TESTIMONIAL ENHANCEMENTS ===== */
.testi-card {
  position: relative;
  border-left: 3px solid var(--orange);
  padding-top: 2.5rem;
}
.testi-quote-icon {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  color: rgba(255,255,255,0.08);
  line-height: 1;
}
.testi-card:hover .testi-quote-icon {
  color: rgba(232, 101, 26, 0.2);
  transition: color 0.3s;
}

/* ===== CTA URGENCY ENHANCEMENTS ===== */
.cta-urgency {
  display: inline-block;
  background: rgba(255,255,255,0.18);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: 100px;
  margin-bottom: 1rem;
  animation: urgencyPulse 2.5s ease-in-out infinite;
}
@keyframes urgencyPulse {
  0%, 100% { background: rgba(255,255,255,0.18); }
  50% { background: rgba(255,255,255,0.28); }
}
.cta-micro {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1.25rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}
.cta-micro span {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}
@media (max-width: 500px) {
  .cta-micro {
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
  }
}
