/* ===== RESET ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
ul,
ol {
  list-style: none;
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
button {
  border: none;
  background: none;
  cursor: pointer;
  font: inherit;
}

/* ===== LOCAL FONTS ===== */
@font-face {
  font-family: "Bebas Neue";
  font-style: normal;
  font-weight: 400;
  font-display: optional;
  src: url("assets/fonts/bebas-neue-latin.woff2") format("woff2");
}

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400 800;
  font-display: optional;
  src: url("assets/fonts/inter-latin.woff2") format("woff2");
}

/* ===== DESIGN TOKENS ===== */
:root {
  /* Base */
  --color-black: #050505;
  --color-deep-black: #020202;
  --color-charcoal: #0b0b0d;
  --color-panel: #111114;
  --color-panel-soft: #16161a;
  --color-border: #2a2a30;

  /* Text */
  --color-white: #f7f7f2;
  --color-off-white: #e9e9e2;
  --color-muted: #a5a5aa;
  --color-muted-dark: #6e6e76;

  /* Brand + Accent */
  --color-lime: #d7ff35;
  --color-lime-hover: #e4ff63;
  --color-lime-dim: rgba(215, 255, 53, 0.14);
  --color-purple: #7b42f6;
  --color-purple-deep: #3d1d8f;
  --color-cyan: #31bdf4;
  --color-cyan-deep: #0d6ea3;

  /* Shadows */
  --shadow-lime: 0 0 26px rgba(215, 255, 53, 0.22);
  --shadow-lime-strong: 0 0 42px rgba(215, 255, 53, 0.35);
  --shadow-purple: 0 0 54px rgba(123, 66, 246, 0.28);
  --shadow-cyan: 0 0 46px rgba(49, 189, 244, 0.22);

  /* Typography */
  --font-display: "Bebas Neue", "Anton", sans-serif;
  --font-body: "Inter", "Helvetica Neue", Arial, sans-serif;
}

/* ===== BASE ===== */
html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--color-black);
  color: var(--color-white);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* ===== TYPOGRAPHY ===== */
h1,
h2,
.display {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.005em;
  font-weight: 400;
}

h1 {
  font-size: clamp(4.4rem, 8.8vw, 9.5rem);
  line-height: 0.88;
}

h2 {
  font-size: clamp(3.2rem, 6vw, 6.4rem);
  line-height: 0.9;
}

h3 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 3.2rem);
  line-height: 0.95;
  text-transform: uppercase;
}

h4 {
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.25;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

p {
  color: var(--color-muted);
  font-size: 1rem;
  line-height: 1.65;
}

.eyebrow {
  font-family: var(--font-body);
  color: var(--color-lime);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.text-accent {
  color: var(--color-lime);
}

.text-link {
  display: inline-block;
  margin-top: 16px;
  color: var(--color-lime);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.045em;
  text-transform: uppercase;
}

.text-link + .text-link {
  margin-left: 20px;
}

/* ===== LAYOUT ===== */
.container {
  width: min(100% - 48px, 1440px);
  margin-inline: auto;
}

.container-narrow {
  width: min(100% - 48px, 1120px);
  margin-inline: auto;
}

.section {
  padding: 112px 0;
}
.section-tight {
  padding: 76px 0;
}
.section-large {
  padding: 144px 0;
}

.section-header {
  margin-bottom: 64px;
}

.section-header .eyebrow {
  margin-bottom: 18px;
  display: block;
}

.section-header p {
  margin-top: 18px;
  max-width: 560px;
}

.section-header-center {
  text-align: center;
}

.section-header-center p {
  margin-inline: auto;
}

/* ===== HEADER ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: 88px;
  background: rgba(5, 5, 5, 0.86);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--color-white);
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: var(--color-lime);
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-black);
  font-weight: 800;
  font-size: 0.94rem;
  line-height: 1;
  letter-spacing: -0.01em;
  font-family: var(--font-body);
  box-shadow: 0 0 28px rgba(215, 255, 53, 0.18);
}

.logo-wordmark {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2px;
  line-height: 0.9;
}

.logo .brand-main {
  font-family: var(--font-display);
  font-size: 1.45rem;
  line-height: 0.9;
  white-space: nowrap;
}

.logo .brand-sub {
  font-family: var(--font-body);
  color: var(--color-muted);
  font-size: 0.55rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  white-space: nowrap;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 34px;
}

.main-nav a {
  font-size: 0.74rem;
  font-weight: 800;
  color: var(--color-white);
  text-transform: uppercase;
  letter-spacing: 0.045em;
  position: relative;
  transition: color 180ms ease;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--color-lime);
}

.main-nav a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -10px;
  height: 2px;
  background: var(--color-lime);
  box-shadow: var(--shadow-lime);
}

/* Nav Dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown > a {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.nav-dropdown > a::before {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
  margin-left: 2px;
  margin-bottom: 2px;
  order: 1;
  transition: transform 180ms ease;
}

.nav-dropdown:hover > a::before {
  transform: rotate(-135deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  padding-top: 18px;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 180ms ease,
    visibility 180ms ease;
}

.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
}

.nav-dropdown-menu-inner {
  background: rgba(17, 17, 20, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  padding: 10px 0;
  min-width: 180px;
  backdrop-filter: blur(16px);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.5);
}

.nav-dropdown-menu a {
  display: block;
  padding: 9px 20px;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--color-off-white);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition:
    color 120ms ease,
    background 120ms ease;
  white-space: nowrap;
}

.nav-dropdown-menu a:hover {
  color: var(--color-lime);
  background: rgba(215, 255, 53, 0.06);
}

.header-ctas {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-white);
  transition:
    transform 300ms ease,
    opacity 200ms ease;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 26px;
  border-radius: 2px;
  border: 1px solid transparent;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.045em;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--color-lime);
  color: var(--color-black);
  border-color: var(--color-lime);
  box-shadow: var(--shadow-lime);
}

.btn-primary:hover {
  background: var(--color-lime-hover);
  box-shadow: var(--shadow-lime-strong);
}

.btn-secondary {
  background: transparent;
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.24);
}

.btn-secondary:hover {
  color: var(--color-lime);
  border-color: var(--color-lime);
}

.btn-utility {
  background: rgba(255, 255, 255, 0.02);
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.24);
  min-height: 44px;
  font-size: 0.72rem;
}

.btn-utility:hover {
  border-color: var(--color-lime);
  color: var(--color-lime);
}

/* ===== BREADCRUMBS ===== */
.breadcrumbs {
  padding: 20px 0 0;
  font-size: 0.78rem;
  color: var(--color-muted-dark);
}

.breadcrumbs a {
  color: var(--color-muted);
  transition: color 180ms ease;
}

.breadcrumbs a:hover {
  color: var(--color-lime);
}

.breadcrumbs span {
  margin: 0 8px;
  color: var(--color-muted-dark);
}

/* ===== INTERIOR HERO ===== */
.interior-hero {
  padding: 60px 0 80px;
  position: relative;
  overflow: hidden;
}

.interior-hero::before {
  content: none;
}

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

.interior-hero h1 {
  font-size: clamp(3.6rem, 7vw, 7.5rem);
  margin-bottom: 24px;
}

.interior-hero .hero-subcopy {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--color-muted);
  max-width: 560px;
  margin-bottom: 36px;
}

.interior-hero .hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ===== LOCATION PAGES ===== */
.location-hero {
  min-height: 760px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.location-hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.location-hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(5, 5, 5, 0.9) 0%,
      rgba(5, 5, 5, 0.64) 44%,
      rgba(5, 5, 5, 0.22) 100%
    ),
    linear-gradient(0deg, rgba(5, 5, 5, 0.88) 0%, rgba(5, 5, 5, 0) 38%);
}

.location-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.location-hero-content {
  padding: 96px 0 120px;
}

.location-hero h1 {
  max-width: 780px;
  font-size: clamp(3.4rem, 7vw, 7rem);
  margin-bottom: 24px;
}

.location-hero .hero-subcopy {
  max-width: 570px;
  color: var(--color-off-white);
}

.location-content-grid,
.location-nearby {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 72px;
  align-items: start;
}

.location-content-grid h2,
.location-nearby h2 {
  margin-bottom: 0;
}

.location-copy p {
  color: var(--color-muted);
  line-height: 1.75;
  margin-bottom: 18px;
}

.location-service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.location-service-grid .card {
  min-height: 260px;
}

.location-service-grid h3 {
  margin-bottom: 16px;
}

.location-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.location-card {
  display: block;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 6px;
  padding: 24px 24px 28px;
  transition:
    border-color 180ms ease,
    transform 180ms ease,
    background 180ms ease;
}

.location-card:hover {
  border-color: var(--color-lime);
  transform: translateY(-2px);
  background: rgba(215, 255, 53, 0.04);
}

.location-card strong {
  display: block;
  color: var(--color-white);
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}

.location-card p {
  color: var(--color-muted);
  font-size: 0.85rem;
  line-height: 1.6;
  margin: 0;
}

.location-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.location-links a {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 4px;
  padding: 18px 20px;
  color: var(--color-white);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition:
    border-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.location-links a:hover {
  color: var(--color-lime);
  border-color: var(--color-lime);
  transform: translateY(-2px);
}

.service-areas-hub-hero {
  padding-bottom: 84px;
}

.service-area-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.service-area-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 220px;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  border-radius: 8px;
  transition:
    border-color 180ms ease,
    transform 180ms ease,
    background 180ms ease;
}

.service-area-card span {
  font-family: var(--font-display);
  font-size: 2.1rem;
  line-height: 1;
  color: var(--color-white);
  text-transform: uppercase;
}

.service-area-card p {
  margin-top: 24px;
  color: var(--color-muted);
  line-height: 1.65;
}

.service-area-card:hover {
  border-color: var(--color-lime);
  background: rgba(215, 255, 53, 0.05);
  transform: translateY(-3px);
}

/* ===== CARDS ===== */
.card {
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.035),
      rgba(255, 255, 255, 0.012)
    ),
    var(--color-panel);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 32px;
  position: relative;
  overflow: hidden;
}

.card:hover {
  border-color: rgba(215, 255, 53, 0.42);
  box-shadow: 0 0 44px rgba(215, 255, 53, 0.07);
}

.card-glow-line::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--color-lime),
    transparent
  );
  opacity: 0.8;
}

/* ===== CREDIBILITY / BENEFIT STRIP ===== */
.cred-strip {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: #080808;
  padding: 0;
}

.cred-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.cred-item {
  padding: 32px 28px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
}

.cred-item:last-child {
  border-right: none;
}

.cred-item i {
  width: 28px;
  height: 28px;
  color: var(--color-lime);
  margin-bottom: 14px;
  stroke-width: 1.8;
}

.cred-label {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-off-white);
}

.cred-sub {
  font-size: 0.8rem;
  color: var(--color-muted-dark);
  margin-top: 4px;
}

/* ===== 5-ITEM BENEFIT STRIP ===== */
.benefit-strip .cred-grid {
  grid-template-columns: repeat(5, 1fr);
}

/* ===== PATH / SERVICE CARDS ===== */
.path-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.path-card {
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.035),
      rgba(255, 255, 255, 0.012)
    ),
    var(--color-panel);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.path-card:hover {
  transform: translateY(-4px);
  border-color: rgba(215, 255, 53, 0.42);
  box-shadow: 0 0 44px rgba(215, 255, 53, 0.08);
}

.path-card::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--color-lime),
    transparent
  );
  opacity: 0;
  transition: opacity 300ms ease;
}

.path-card:hover::after {
  opacity: 0.8;
}

.path-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: var(--color-lime-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}

.path-card-icon i {
  width: 22px;
  height: 22px;
  color: var(--color-lime);
  stroke-width: 1.8;
}

.path-card h3 {
  font-size: clamp(1.6rem, 2.2vw, 2rem);
  margin-bottom: 10px;
}

.path-card .tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--color-lime);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 18px;
}

.path-card p {
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.path-card ul {
  margin-bottom: 24px;
}

.path-card ul li {
  font-size: 0.85rem;
  color: var(--color-muted);
  padding: 5px 0;
  padding-left: 18px;
  position: relative;
}

.path-card ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-lime);
  opacity: 0.6;
}

.path-card .arrow-link {
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--color-lime);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
}

.path-card .arrow-link svg {
  width: 16px;
  height: 16px;
  transition: transform 180ms ease;
}

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

/* ===== PORTFOLIO CARDS ===== */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.portfolio-card {
  background: var(--color-panel);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  overflow: hidden;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.portfolio-card:hover {
  transform: translateY(-4px);
  border-color: rgba(215, 255, 53, 0.42);
  box-shadow: 0 0 44px rgba(215, 255, 53, 0.08);
}

.portfolio-card-image {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  filter: contrast(1.04) saturate(1.04) brightness(1);
  transition:
    filter 180ms ease,
    transform 180ms ease;
}

.portfolio-card:hover .portfolio-card-image {
  filter: contrast(1.08) saturate(1.08) brightness(1.04);
  transform: scale(1.015);
}

.portfolio-card-body {
  padding: 28px;
}

.portfolio-card-label {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-lime);
  margin-bottom: 8px;
}

.portfolio-card h3 {
  font-size: 1.6rem;
  margin-bottom: 4px;
}

.portfolio-card .industry {
  font-size: 0.82rem;
  color: var(--color-muted-dark);
  margin-bottom: 16px;
}

.portfolio-card .metrics {
  display: flex;
  gap: 16px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}

.portfolio-card .metric {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--color-lime);
}

.portfolio-card .desc {
  font-size: 0.88rem;
  color: var(--color-muted);
  line-height: 1.55;
}

/* ===== BLOG CARDS ===== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.blog-card {
  background: var(--color-panel);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  overflow: hidden;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.blog-card:hover {
  transform: translateY(-4px);
  border-color: rgba(215, 255, 53, 0.42);
  box-shadow: 0 0 44px rgba(215, 255, 53, 0.08);
}

.blog-card-image {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.blog-card-body {
  padding: 28px;
}

.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.blog-card-category {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-lime);
}

.blog-card-date {
  font-size: 0.75rem;
  color: var(--color-muted-dark);
}

.blog-card h3 {
  font-size: 1.4rem;
  line-height: 1;
  margin-bottom: 12px;
}

.blog-card p {
  font-size: 0.88rem;
  line-height: 1.55;
}

.blog-card .read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 18px;
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--color-lime);
}

.blog-card .read-more svg {
  width: 14px;
  height: 14px;
  transition: transform 180ms ease;
}

.blog-card:hover .read-more svg {
  transform: translateX(4px);
}

/* ===== CTA BAND ===== */
.cta-band {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(123, 66, 246, 0.48);
  border-radius: 8px;
  background:
    radial-gradient(
      circle at 24% 50%,
      rgba(123, 66, 246, 0.32),
      transparent 28%
    ),
    radial-gradient(
      circle at 82% 50%,
      rgba(49, 189, 244, 0.2),
      transparent 30%
    ),
    linear-gradient(rgba(5, 5, 5, 0.72), rgba(5, 5, 5, 0.88)),
    url("assets/images/dark-rock-texture.webp");
  background-size: cover;
  background-position: center;
  padding: 64px;
}

.cta-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.cta-band h2 {
  font-size: clamp(3rem, 5vw, 5.8rem);
  line-height: 0.9;
  max-width: 700px;
}

.cta-band h2 .text-accent {
  color: var(--color-lime);
}

.cta-band-ctas {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-shrink: 0;
}

/* ===== COMPARISON TABLE ===== */
.compare-table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  overflow: hidden;
}

.compare-table th,
.compare-table td {
  padding: 18px 20px;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.88rem;
}

.compare-table th {
  background: var(--color-panel);
  color: var(--color-white);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 0.76rem;
}

.compare-table th:first-child,
.compare-table td:first-child {
  text-align: left;
  font-weight: 600;
  color: var(--color-off-white);
}

.compare-table td {
  color: var(--color-muted);
  background: var(--color-charcoal);
}

.compare-table tr:last-child td {
  border-bottom: none;
}

.compare-table .check {
  color: var(--color-lime);
  font-size: 1.1rem;
}

.compare-table .dash {
  color: var(--color-muted-dark);
}

/* ===== FAQ ACCORDION ===== */
.faq {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  overflow: hidden;
}

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

.faq-item:last-child {
  border-bottom: none;
}

.faq-trigger {
  width: 100%;
  background: #0b0b0d;
  color: var(--color-white);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 26px;
  border: 0;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  text-align: left;
  cursor: pointer;
  transition: color 180ms ease;
}

.faq-trigger:hover {
  color: var(--color-lime);
}

.faq-trigger svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform 300ms ease;
  stroke: currentColor;
}

.faq-item.open .faq-trigger svg {
  transform: rotate(45deg);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 400ms ease,
    padding 300ms ease;
  padding: 0 26px;
}

.faq-item.open .faq-content {
  max-height: 300px;
  padding: 0 26px 24px;
}

.faq-content p {
  font-size: 0.92rem;
  line-height: 1.65;
}

/* ===== FORMS ===== */
.form-group {
  display: grid;
  gap: 8px;
}

label {
  color: var(--color-white);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

input,
select,
textarea {
  width: 100%;
  background: #0b0b0d;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 4px;
  color: var(--color-white);
  padding: 15px 16px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.hp-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.cf-turnstile {
  margin: 8px 0 18px;
}

input::placeholder,
textarea::placeholder {
  color: var(--color-muted-dark);
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--color-lime);
  box-shadow: 0 0 0 3px rgba(215, 255, 53, 0.1);
}

textarea {
  min-height: 150px;
  resize: vertical;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--color-black);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 72px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 0.9fr 0.9fr 1.2fr;
  gap: 48px;
}

.footer h4,
.footer-heading {
  color: var(--color-white);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 18px;
}

.footer a,
.footer p {
  color: var(--color-muted);
  font-size: 0.9rem;
}

.footer a {
  display: block;
  padding: 4px 0;
  transition: color 180ms ease;
}

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

.footer-brand-copy {
  line-height: 1.6;
  margin-bottom: 20px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 48px;
  padding-top: 24px;
  color: var(--color-muted-dark);
  font-size: 0.82rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* ===== REVEAL ANIMATION ===== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 700ms ease,
    transform 700ms ease;
}

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

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ===== MOBILE NAV OVERLAY ===== */
.mobile-nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99;
  overflow-y: auto;
  background: rgba(5, 5, 5, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  flex-direction: column;
  align-items: center;
  gap: 28px;
  padding: 88px 24px 42px;
}

.mobile-nav-overlay.open {
  display: flex;
  animation: mobileNavFadeIn 250ms ease;
}

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

.mobile-nav-overlay a {
  font-family: var(--font-display);
  font-size: 2.4rem;
  text-transform: uppercase;
  color: var(--color-white);
  transition: color 180ms ease;
}

.mobile-nav-overlay a:hover {
  color: var(--color-lime);
}

.mobile-nav-close {
  position: absolute;
  top: 28px;
  right: 28px;
  color: var(--color-white);
  padding: 8px;
}

.mobile-nav-close i {
  width: 28px;
  height: 28px;
}

.mobile-nav-dropdown {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.mobile-nav-dropdown-toggle {
  font-family: var(--font-display);
  font-size: 2.4rem;
  text-transform: uppercase;
  color: var(--color-white);
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 180ms ease;
  padding: 0;
}

.mobile-nav-dropdown-toggle:hover {
  color: var(--color-lime);
}

.mobile-nav-chevron {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform 250ms ease;
  margin-bottom: 3px;
}

.mobile-nav-dropdown.open .mobile-nav-chevron {
  transform: rotate(-135deg);
  margin-bottom: 0;
}

.mobile-nav-dropdown-menu {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin-top: 14px;
}

.mobile-nav-dropdown.open .mobile-nav-dropdown-menu {
  display: flex;
}

.mobile-nav-dropdown-menu a {
  font-size: 1.4rem !important;
  text-transform: none !important;
  color: var(--color-muted);
}

.mobile-nav-dropdown-menu a:hover {
  color: var(--color-lime);
}

.mobile-nav-overlay a.active,
.mobile-nav-dropdown-toggle.active {
  color: var(--color-lime);
}

/* ===== FILTER PILLS ===== */
.filter-pills {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.filter-pill {
  padding: 10px 20px;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: transparent;
  color: var(--color-muted);
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: all 180ms ease;
}

.filter-pill:hover {
  border-color: var(--color-lime);
  color: var(--color-lime);
}

.filter-pill.active {
  background: var(--color-lime);
  border-color: var(--color-lime);
  color: var(--color-black);
}

/* ===== RESPONSIVE ===== */
/* ===== FLOATING TEXT US ===== */
.text-us-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 90;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 22px;
  background: var(--color-lime);
  color: var(--color-black);
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  box-shadow: 0 6px 28px rgba(215, 255, 53, 0.3);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
  text-decoration: none;
}

.text-us-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 40px rgba(215, 255, 53, 0.4);
}

.text-us-float svg {
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .text-us-float {
    bottom: 18px;
    right: 18px;
    padding: 12px 18px;
  }
}

@media (max-width: 1100px) {
  .path-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .benefit-strip .cred-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: clamp(3.6rem, 16vw, 5.2rem);
  }
  h2 {
    font-size: clamp(2.8rem, 12vw, 4.4rem);
  }

  .container,
  .container-narrow {
    width: min(100% - 28px, 100%);
  }

  .section {
    padding: 72px 0;
  }
  .section-tight {
    padding: 52px 0;
  }

  /* Header */
  .main-nav {
    display: none;
  }
  .hamburger {
    display: flex;
  }

  /* Interior Hero */
  .interior-hero {
    padding: 40px 0 56px;
  }

  .interior-hero h1 {
    font-size: clamp(3rem, 14vw, 4.8rem);
  }

  .interior-hero .hero-ctas {
    flex-direction: column;
  }

  .interior-hero .hero-ctas .btn {
    width: 100%;
  }

  /* Credibility */
  .cred-grid,
  .benefit-strip .cred-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  /* Paths */
  .path-grid {
    grid-template-columns: 1fr;
  }

  /* Portfolio */
  .portfolio-grid {
    grid-template-columns: 1fr;
  }

  /* Service Areas */
  .location-hero {
    min-height: 680px;
  }

  .location-hero-media::after {
    background:
      linear-gradient(90deg, rgba(5, 5, 5, 0.92) 0%, rgba(5, 5, 5, 0.72) 100%),
      linear-gradient(0deg, rgba(5, 5, 5, 0.92) 0%, rgba(5, 5, 5, 0) 42%);
  }

  .location-hero-content {
    padding: 64px 0 84px;
  }

  .location-content-grid,
  .location-nearby,
  .location-service-grid,
  .location-links,
  .location-cards-grid,
  .service-area-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .location-service-grid .card {
    min-height: auto;
  }

  .service-area-card {
    min-height: auto;
  }

  /* Blog */
  .blog-grid {
    grid-template-columns: 1fr;
  }

  /* CTA Band */
  .cta-band {
    padding: 36px 24px;
  }

  .cta-band-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .cta-band-ctas {
    width: 100%;
  }

  .cta-band-ctas .btn {
    width: 100%;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  /* Buttons */
  .header-ctas .btn-utility {
    display: none;
  }

  /* Table */
  .compare-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  /* Filter pills */
  .filter-pills {
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 8px;
  }

  .filter-pill {
    flex-shrink: 0;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: clamp(3rem, 14vw, 4rem);
  }
  .cred-grid,
  .benefit-strip .cred-grid {
    grid-template-columns: 1fr;
  }
}
