/* ═══════════════════════════════════════
   STATEWIDE FACILITY — LIGHT CLEAN THEME
═══════════════════════════════════════ */
:root {
  /* Brand — champagne gold */
  --gold-600: #9a7c35;
  --gold-500: #b8924a;
  --gold-400: #d4aa65;
  --gold-300: #e8cfa0;
  --gold-100: #fdf8ed;

  /* Dark surfaces — warm espresso, not cold navy */
  --dark-950: #141110;
  --dark-900: #1e1a16;
  --dark-800: #2d2820;

  /* Light surfaces — warm ivory/cream */
  --body-bg: #faf8f5;
  --surface: #ffffff;
  --surface-alt: #f4f0ea;

  /* Text — warm charcoal */
  --text-900: #1e1a16;
  --text-700: #5c5248;
  --text-500: #978880;

  /* Borders — warm */
  --border: #e8dfd5;

  /* Shadows — warm tones */
  --shadow-sm: 0 4px 18px rgba(30, 20, 8, 0.06);
  --shadow-md: 0 10px 32px rgba(30, 20, 8, 0.1);
  --shadow-lg: 0 20px 55px rgba(30, 20, 8, 0.14);

  /* Shape */
  --radius-lg: 20px;
  --radius-md: 12px;
  --radius-sm: 8px;
}

/* ═══════════════════════════════════════
   RESET & BASE
═══════════════════════════════════════ */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--text-700);
  background: var(--body-bg);
  line-height: 1.65;
}

h1,
h2 {
  font-family: "Playfair Display", Georgia, serif;
  letter-spacing: 0.01em;
}

h3,
h4,
.nav-links a,
.button,
.kicker,
.kicker-hero,
.kicker-light {
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  letter-spacing: 0.02em;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul {
  margin: 0;
  padding-left: 1.15rem;
}

p {
  margin: 0 0 0.9rem;
}

/* ═══════════════════════════════════════
   LAYOUT UTILS
═══════════════════════════════════════ */
.container {
  width: min(1140px, 92vw);
  margin: 0 auto;
}

.sec-pad {
  padding: 4.5rem 0;
}

.sec-alt {
  background: var(--surface-alt);
}

.section-head {
  margin-bottom: 2.5rem;
}

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

h2 {
  font-size: clamp(1.9rem, 4.5vw, 2.95rem);
  color: var(--text-900);
  line-height: 1.15;
  margin: 0.3rem 0 1rem;
  font-weight: 600;
}

h3 {
  font-size: clamp(1.15rem, 2.5vw, 1.45rem);
  color: var(--text-900);
  margin: 0 0 0.5rem;
}

/* ═══════════════════════════════════════
   KICKER
═══════════════════════════════════════ */
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  text-transform: uppercase;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--gold-500);
  margin: 0;
}

.kicker::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 2px;
  background: var(--gold-500);
  border-radius: 2px;
  flex-shrink: 0;
}

.kicker-hero {
  display: block;
  text-transform: uppercase;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--gold-400);
  margin: 0 0 0.75rem;
}

.kicker-light {
  display: block;
  text-transform: uppercase;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--gold-400);
  margin: 0 0 0.5rem;
}

/* ═══════════════════════════════════════
   BUTTONS
═══════════════════════════════════════ */
.button {
  display: inline-block;
  border: none;
  border-radius: 999px;
  padding: 0.78rem 1.55rem;
  text-transform: uppercase;
  font-size: 0.97rem;
  font-weight: 700;
  cursor: pointer;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  white-space: nowrap;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(11, 23, 53, 0.22);
}

.button.primary {
  background: linear-gradient(145deg, var(--gold-400), var(--gold-500));
  color: var(--dark-950);
}

.button.ghost {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.45);
}

.button.ghost:hover {
  background: rgba(255, 255, 255, 0.08);
}

.button.btn-full {
  width: 100%;
  text-align: center;
}

.button.btn-lg {
  padding: 0.9rem 2.2rem;
  font-size: 1.1rem;
}

.button-row {
  margin-top: 1.6rem;
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  align-items: center;
}

/* ═══════════════════════════════════════
   HEADER & TOP STRIP
═══════════════════════════════════════ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--body-bg);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.top-strip {
  background: var(--dark-900);
  border-bottom: 1px solid rgba(228, 195, 112, 0.18);
}

.top-strip-inner {
  min-height: 28px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1.1rem;
}

.top-link {
  font-size: 0.75rem;
  color: rgba(200, 218, 255, 0.7);
  letter-spacing: 0.03em;
  transition: color 0.2s;
}

.top-link:hover {
  color: var(--gold-400);
}

.top-cta {
  font-family: "Barlow Condensed", sans-serif;
  text-transform: uppercase;
  font-size: 0.86rem;
  letter-spacing: 0.06em;
  padding: 0.26rem 0.75rem;
  border-radius: 999px;
  background: linear-gradient(145deg, var(--gold-400), var(--gold-500));
  color: var(--dark-950);
  font-weight: 700;
  transition: opacity 0.2s;
}

.top-cta:hover {
  opacity: 0.88;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 52px;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand-logo {
  width: min(110px, 26vw);
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-links a {
  color: var(--text-900);
  text-transform: uppercase;
  font-size: 0.96rem;
  font-weight: 600;
  padding-bottom: 3px;
  border-bottom: 2px solid transparent;
  transition:
    color 0.2s,
    border-color 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold-600);
  border-color: var(--gold-500);
}

/* ═══════════════════════════════════════
   HOMEPAGE HEADER + HERO REFRESH
═══════════════════════════════════════ */
.home-page .site-header.hero-header {
  position: sticky;
  top: 14px;
  left: 0;
  right: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  z-index: 120;
}

.home-page .header-shell {
  margin-top: 14px;
  margin-inline: clamp(14px, 3.6vw, 56px);
  min-height: 72px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: stretch;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(200, 185, 165, 0.2);
  box-shadow: 0 14px 34px rgba(20, 12, 4, 0.1);
}

.home-page .brand-block {
  min-width: 0;
  background: transparent;
  color: var(--gold-100);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.35rem 0.85rem 0.35rem 0.7rem;
}

.brand-name-text {
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  line-height: 1.25;
  white-space: nowrap;
}

.brand-name-top {
  color: #1e3260;
}

.brand-name-bottom {
  color: var(--gold-400);
}

.home-page .brand-logo-home {
  width: 100%;
  max-width: 156px;
  height: 42px;
  object-fit: contain;
  filter: drop-shadow(0 4px 12px rgba(10, 18, 36, 0.28));
}

.home-page .nav-links {
  justify-content: center;
  gap: 1.35rem;
  padding: 0 1rem;
}

.home-page .nav-links a {
  color: var(--dark-900);
  border-bottom-color: transparent;
}

.home-page .nav-links a:hover,
.home-page .nav-links a.active {
  color: var(--gold-400);
  border-bottom-color: var(--gold-400);
}

.home-page .header-actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.7rem;
}

.home-page .header-mini-pill {
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  text-transform: uppercase;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--dark-900);
  border: 1px solid rgba(31, 47, 80, 0.24);
  padding: 0.58rem 0.84rem;
}

.home-page .quote-btn {
  border-radius: 0;
  padding: 0.72rem 1.1rem;
  letter-spacing: 0.05em;
}

.home-page .menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  width: 40px;
  height: 40px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  flex-shrink: 0;
}

.home-page .menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--dark-900);
  border-radius: 2px;
  transition:
    transform 0.3s,
    opacity 0.3s;
}

/* Inner pages that share the homepage shell-style navigation */
.inner-shell .site-header.hero-header {
  position: sticky;
  top: 14px;
  left: 0;
  right: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  z-index: 120;
}

.inner-shell .header-shell {
  margin-top: 0.65rem;
  margin-inline: clamp(14px, 3.6vw, 56px);
  min-height: 72px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: stretch;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(200, 185, 165, 0.2);
  box-shadow: 0 14px 34px rgba(20, 12, 4, 0.1);
}

.inner-hero {
  position: relative;
  min-height: 50vh;
  margin-top: -87px;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
}

.inner-hero-about {
  background-image: url("https://images.unsplash.com/photo-1497366216548-37526070297c?auto=format&fit=crop&w=2000&q=80");
}

.inner-hero-services {
  background-image: url("https://images.unsplash.com/photo-1562259949-e8e7689d7828?auto=format&fit=crop&w=2000&q=80");
}

.inner-hero-careers {
  background-image: url("https://images.unsplash.com/photo-1521737604893-d14cc237f11d?auto=format&fit=crop&w=2000&q=80");
}

.inner-hero-contact {
  background-image: url("https://images.unsplash.com/photo-1551836022-d5d88e9218df?auto=format&fit=crop&w=2000&q=80");
}

.inner-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(10, 7, 3, 0.65) 0%,
    rgba(10, 7, 3, 0.38) 50%,
    rgba(10, 7, 3, 0.14) 100%
  );
  display: flex;
  align-items: center;
  width: 100%;
}

.inner-hero-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  align-items: center;
  padding: 8.2rem 0 2.1rem;
}

.inner-hero .hero-sub {
  max-width: 48ch;
}

.inner-shell .brand-block {
  min-width: 0;
  background: transparent;
  color: var(--gold-100);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.35rem 0.85rem 0.35rem 0.7rem;
}

.inner-shell .brand-logo-home {
  width: 100%;
  max-width: 156px;
  height: 42px;
  object-fit: contain;
  filter: drop-shadow(0 4px 12px rgba(10, 18, 36, 0.28));
}

.inner-shell .nav-links {
  justify-content: center;
  gap: 1.35rem;
  padding: 0 1rem;
}

.inner-shell .nav-links a {
  color: var(--dark-900);
  border-bottom-color: transparent;
}

.inner-shell .nav-links a:hover,
.inner-shell .nav-links a.active {
  color: var(--gold-400);
  border-bottom-color: var(--gold-400);
}

.inner-shell .header-actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.7rem;
}

.inner-shell .header-mini-pill {
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  text-transform: uppercase;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--dark-900);
  border: 1px solid rgba(31, 47, 80, 0.24);
  padding: 0.58rem 0.84rem;
}

.inner-shell .quote-btn {
  border-radius: 0;
  padding: 0.72rem 1.1rem;
  letter-spacing: 0.05em;
}

.inner-shell .menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  width: 40px;
  height: 40px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  flex-shrink: 0;
}

.inner-shell .menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--dark-900);
  border-radius: 2px;
  transition:
    transform 0.3s,
    opacity 0.3s;
}

/* ═══════════════════════════════════════
   HERO — full-bleed
═══════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 72vh;
  display: flex;
  align-items: center;
  background: url("https://picsum.photos/seed/sf-tower/1400/900") center/cover
    no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(10, 7, 4, 0.78) 0%,
    rgba(15, 10, 4, 0.54) 55%,
    rgba(15, 10, 4, 0.24) 100%
  );
  display: flex;
  align-items: center;
  width: 100%;
}

.home-page .hero-modern {
  min-height: calc(100vh - 46px);
  margin-top: -87px;
  background: #122541;
  overflow: hidden;
}

.home-page .hero-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.home-page .hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.04);
  transition:
    opacity 1s ease,
    transform 7s ease;
}

.home-page .hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.home-page .hero-modern .hero-overlay {
  z-index: 1;
  background: linear-gradient(
    105deg,
    rgba(10, 7, 3, 0.62) 0%,
    rgba(10, 7, 3, 0.36) 50%,
    rgba(10, 7, 3, 0.1) 100%
  );
}

.home-page .hero-modern .hero-inner {
  padding-top: 8rem;
  padding-bottom: 5.5rem;
}

/* .home-page .hero-modern .hero-text h1 {
  max-width: 9ch;
} */

.home-page .hero-copy {
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 0.65s ease,
    transform 0.65s ease;
}

.home-page .hero-copy.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.home-page .hero-modern .hero-cta-card {
  border-radius: 0;
  border-left: 5px solid var(--gold-500);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.25fr 0.85fr;
  gap: 3rem;
  align-items: center;
  padding: 4rem 0;
}

h1 {
  font-size: clamp(2.5rem, 7vw, 4.8rem);
  line-height: 1.04;
  color: #fff;
  margin: 0.4rem 0 1rem;
  text-transform: uppercase;
  font-weight: 700;
}

.hero-text {
  color: #fff;
}

.hero-sub {
  color: rgba(255, 248, 235, 0.92);
  font-size: 1.05rem;
  max-width: 46ch;
  line-height: 1.65;
  margin-bottom: 0;
  font-weight: 500;
}

/* Floating CTA card in hero */
.hero-cta-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2rem 1.8rem 1.8rem;
  box-shadow: var(--shadow-lg);
}

.cta-card-kicker {
  font-family: "Barlow Condensed", sans-serif;
  text-transform: uppercase;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--gold-500);
  margin: 0 0 0.5rem;
}

.hero-cta-card h3 {
  font-size: 1.55rem;
  color: var(--text-900);
  margin: 0 0 0.7rem;
}

.hero-cta-card p {
  font-size: 0.93rem;
  color: var(--text-700);
  margin-bottom: 1.3rem;
}

/* ═══════════════════════════════════════
   TICKER
═══════════════════════════════════════ */
.ticker {
  background: var(--dark-900);
  border-top: 3px solid var(--gold-500);
  border-bottom: 1px solid rgba(228, 195, 112, 0.18);
  overflow: hidden;
}

.ticker-track {
  white-space: nowrap;
  color: var(--gold-400);
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 1.02rem;
  padding: 0.62rem 0;
  display: inline-block;
  min-width: 100%;
  animation: tickerMove 30s linear infinite;
}

@keyframes tickerMove {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ═══════════════════════════════════════
   ABOUT SECTION
═══════════════════════════════════════ */
.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: visible;
}

.about-img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
  box-shadow: var(--shadow-md);
}

.years-badge {
  position: absolute;
  right: -1.5rem;
  bottom: 2.5rem;
  background: var(--gold-500);
  color: var(--dark-950);
  border-radius: var(--radius-md);
  padding: 1rem 1.2rem;
  text-align: center;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
}

.badge-num {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 2.6rem;
  font-weight: 800;
  line-height: 1;
  display: block;
}

.badge-num sup {
  font-size: 1.2rem;
  vertical-align: super;
}

.badge-label {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.25;
  display: block;
}

.about-content h2 {
  max-width: 26ch;
}

.about-content > p {
  color: var(--text-700);
}

.about-checks {
  margin: 1.5rem 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
}

.check-item {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.93rem;
  font-weight: 600;
  color: var(--text-900);
}

.check-item::before {
  content: "✓";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background: var(--gold-500);
  color: #fff;
  border-radius: 50%;
  font-size: 0.7rem;
  font-weight: 800;
  flex-shrink: 0;
}

/* ═══════════════════════════════════════
   SERVICES SECTION
═══════════════════════════════════════ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}

.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.8rem 1.5rem;
  box-shadow: var(--shadow-sm);
  transition:
    transform 0.22s,
    box-shadow 0.22s,
    border-color 0.22s;
}

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

.svc-icon {
  font-size: 2rem;
  margin-bottom: 0.9rem;
  line-height: 1;
}

.service-card h3 {
  font-size: 1.25rem;
  text-transform: uppercase;
  color: var(--text-900);
  margin: 0 0 0.5rem;
}

.service-card p {
  font-size: 0.9rem;
  color: var(--text-700);
  margin: 0 0 1rem;
}

.card-link {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gold-500);
  transition: color 0.2s;
}

.card-link:hover {
  color: var(--gold-600);
}

/* ═══════════════════════════════════════
   SERVICES PAGE SHOWCASE
═══════════════════════════════════════ */
.svc-intro-inner {
  max-width: 680px;
}

.svc-intro-sub {
  font-size: 1.05rem;
  color: var(--text-700);
  margin: 0;
  line-height: 1.65;
}

.svc-showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.svc-showcase-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  transition: transform 0.22s, box-shadow 0.22s, border-color 0.22s;
}

.svc-showcase-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold-500);
}

.svc-showcase-img {
  height: 190px;
  background-size: cover;
  background-position: center;
}

.svc-showcase-body {
  padding: 1.4rem 1.5rem 1.7rem;
}

.svc-showcase-icon {
  font-size: 1.9rem;
  margin-bottom: 0.6rem;
  line-height: 1;
}

.svc-showcase-card h3 {
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-900);
  margin: 0 0 0.45rem;
}

.svc-showcase-card p {
  font-size: 0.88rem;
  color: var(--text-700);
  margin: 0 0 1rem;
  line-height: 1.55;
}

/* ═══════════════════════════════════════
   FEATURE SPLIT
═══════════════════════════════════════ */
.feature-grid {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 4rem;
  align-items: center;
}

.feature-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
}

.feature-img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
  box-shadow: var(--shadow-md);
}

.feature-badge {
  position: absolute;
  left: -1.5rem;
  bottom: 2.5rem;
  background: var(--dark-900);
  color: #fff;
  border-radius: var(--radius-md);
  padding: 1rem 1.2rem;
  text-align: center;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
  border-left: 4px solid var(--gold-500);
}

.feature-content h2 {
  max-width: 26ch;
}

.feature-content > p {
  color: var(--text-700);
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 1.3rem 0 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.95rem;
  color: var(--text-700);
}

.feature-list li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold-500);
  flex-shrink: 0;
}

/* ═══════════════════════════════════════
   STATS BAR
═══════════════════════════════════════ */
.stats-bar {
  background: linear-gradient(135deg, var(--dark-900) 0%, var(--dark-800) 100%);
  padding: 3rem 0;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  text-align: center;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
}

.stat-big {
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
  display: block;
}

.stat-big sup {
  font-size: 0.55em;
  vertical-align: super;
}

.stat-label {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--gold-400);
  display: block;
}

/* ═══════════════════════════════════════
   PORTFOLIO GRID
═══════════════════════════════════════ */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

.portfolio-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.portfolio-card img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

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

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(4, 8, 15, 0.75) 0%, transparent 55%);
  padding: 1.2rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.port-cat {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold-400);
  margin-bottom: 0.35rem;
  display: block;
}

.portfolio-overlay h4 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
  margin: 0;
}

/* ═══════════════════════════════════════
   CTA BAND
═══════════════════════════════════════ */
.cta-band {
  background: var(--dark-900);
  border-top: 4px solid var(--gold-500);
  padding: 3.5rem 0;
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.cta-inner h2 {
  color: #fff;
  font-size: clamp(1.8rem, 4vw, 2.75rem);
  margin: 0;
}

/* ═══════════════════════════════════════
   FOOTER — FULL DARK
═══════════════════════════════════════ */
.site-footer-full {
  background: #fff;
  border-top: 1px solid var(--border);
  color: var(--text-500);
  padding: 0.5rem 0;
}

.footer-mini {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.35rem 0.95rem;
  flex-wrap: wrap;
  min-height: 48px;
}

.footer-logo-mini {
  width: min(44px, 18vw);
  height: auto;
  filter: none;
}

.footer-mini-meta {
  margin: 0;
  font-size: 0.78rem;
  color: var(--text-500);
}

/* ═══════════════════════════════════════
   THANK YOU PAGE
═══════════════════════════════════════ */
.thankyou-section {
  min-height: calc(100vh - 220px);
  display: flex;
  align-items: center;
}

.thankyou-inner {
  max-width: 560px;
  text-align: center;
}

.thankyou-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 1.5rem;
  color: var(--gold-500);
}

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

.thankyou-sub {
  font-size: 1.05rem;
  color: var(--text-700);
  line-height: 1.65;
  margin: 0 0 2rem;
}

.thankyou-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.button.secondary {
  background: transparent;
  color: var(--text-900);
  border: 2px solid var(--border);
  transition: border-color 0.2s, color 0.2s;
}

.button.secondary:hover {
  border-color: var(--gold-500);
  color: var(--gold-500);
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  color: var(--text-500);
  border: 1.5px solid var(--border);
  transition: color 0.2s, border-color 0.2s;
  text-decoration: none;
}

.footer-social-link:hover {
  color: var(--gold-500);
  border-color: var(--gold-500);
}

.footer-social-link svg {
  width: 15px;
  height: 15px;
}

/* ═══════════════════════════════════════
   INNER PAGE STYLES (about / contact / careers)
═══════════════════════════════════════ */
main.container {
  padding: 2.5rem 0 3.5rem;
}

.page-hero {
  position: relative;
  background: linear-gradient(120deg, var(--dark-800) 0%, var(--dark-900) 100%);
  border-left: 5px solid var(--gold-500);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-lg);
  color: #fff;
  margin-bottom: 2rem;
}

.page-hero .kicker {
  color: var(--gold-400);
}

.page-hero .kicker::before {
  background: var(--gold-400);
}

.page-hero h1 {
  font-size: clamp(2rem, 5.5vw, 3.4rem);
  color: #fff;
}

.page-hero p {
  color: rgba(240, 225, 200, 0.85);
}

.page-hero-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 1.5rem;
  align-items: center;
}

.page-hero-media {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  border-radius: var(--radius-md);
  border: 1px solid rgba(228, 195, 112, 0.22);
}

.section {
  margin-top: 2rem;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

/* Card used on inner pages */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.4rem;
  box-shadow: var(--shadow-sm);
}

.card h3 {
  color: var(--text-900);
  text-transform: uppercase;
  margin: 0 0 0.5rem;
}

.card h3.gold {
  color: var(--gold-500);
}

.card p,
.card li {
  color: var(--text-700);
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.image-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.image-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.image-card p {
  margin: 0;
  padding: 0.8rem 0.95rem;
  color: var(--text-700);
  font-size: 0.93rem;
}

.image-card.tall {
  min-height: 100%;
}

.lazy-media {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  display: block;
}

.image-card.tall .lazy-media {
  aspect-ratio: 5/4;
}

/* Contact form */
.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-list li {
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--border);
  color: var(--text-700);
}

.form-shell {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.4rem;
  box-shadow: var(--shadow-sm);
}

label {
  display: block;
  margin-top: 0.85rem;
  font-weight: 600;
  color: var(--text-700);
  font-size: 0.9rem;
}

input,
textarea,
select {
  width: 100%;
  margin-top: 0.35rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.65rem 0.75rem;
  font: inherit;
  background: var(--body-bg);
  color: var(--text-900);
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: var(--gold-500);
  box-shadow: 0 0 0 3px rgba(196, 154, 58, 0.15);
}

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

/* Shared legacy footer used on inner pages */
.site-footer {
  margin-top: 2.2rem;
  border-top: 1px solid var(--border);
  padding: 1.4rem 0 2rem;
  color: var(--text-500);
  text-align: center;
}

/* ═══════════════════════════════════════
   MOBILE NAV OVERLAY
═══════════════════════════════════════ */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--dark-900);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-12px);
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
}

.mobile-nav.is-open {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}

.mobile-nav-close {
  position: absolute;
  top: 1.4rem;
  right: 1.6rem;
  background: transparent;
  border: 0;
  color: rgba(200, 220, 255, 0.7);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  padding: 0.3rem 0.5rem;
  transition: color 0.2s;
}

.mobile-nav-close:hover {
  color: #fff;
}

.mobile-nav nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  width: 100%;
}

.mobile-nav nav a {
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(2rem, 8vw, 3.2rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(220, 235, 255, 0.85);
  padding: 0.45rem 2rem;
  width: 100%;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition:
    color 0.2s,
    background 0.2s;
}

.mobile-nav nav a:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.mobile-nav nav a:hover,
.mobile-nav nav a.active {
  color: var(--gold-400);
  background: rgba(255, 255, 255, 0.04);
}

.mobile-nav-quote {
  margin-top: 2.2rem;
  padding: 0.9rem 2.4rem !important;
  font-size: 1.1rem !important;
  border-radius: 999px !important;
}

/* ═══════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════ */
@media (max-width: 900px) {
  /* Sticky full-width header on mobile/tablet — override absolute desktop rule */
  body.home-page .site-header.hero-header,
  body.inner-shell .site-header.hero-header {
    position: sticky !important;
    top: 0 !important;
    left: auto !important;
    right: auto !important;
    background: rgba(255, 255, 255, 0.98) !important;
    border-bottom: 1px solid rgba(31, 47, 80, 0.1) !important;
    box-shadow: 0 4px 18px rgba(10, 18, 36, 0.12) !important;
    z-index: 200 !important;
  }

  .home-page .header-shell,
  .inner-shell .header-shell {
    margin: 0;
    grid-template-columns: auto auto;
    align-items: center;
    justify-content: space-between;
    border: 0;
    box-shadow: none;
  }

  .home-page .brand-block,
  .inner-shell .brand-block {
    min-width: 0;
    width: auto;
  }

  /* Hide desktop nav and Call Us pill */
  .home-page .nav-links,
  .inner-shell .nav-links {
    display: none;
  }

  .home-page .header-mini-pill,
  .inner-shell .header-mini-pill {
    display: none;
  }

  /* Show hamburger */
  .home-page .menu-toggle,
  .inner-shell .menu-toggle {
    display: inline-flex;
  }

  .home-page .header-actions,
  .inner-shell .header-actions {
    justify-content: flex-end;
    gap: 0.5rem;
  }

  .inner-hero {
    min-height: 40vh;
  }

  .inner-hero-content {
    padding: 3rem 0 2rem;
  }

  .home-page .hero-modern {
    min-height: 88vh;
    padding-top: 2rem;
  }

  .home-page .hero-modern .hero-inner {
    padding-top: 2rem;
    padding-bottom: 3rem;
  }

  .hero-inner,
  .about-grid,
  .feature-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero-cta-card {
    display: none;
  }

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

  .svc-showcase-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

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

  .footer-mini {
    justify-content: center;
    text-align: center;
  }

  .page-hero-grid,
  .split {
    grid-template-columns: 1fr;
  }

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

  .image-grid {
    grid-template-columns: 1fr 1fr;
  }

  .years-badge,
  .feature-badge {
    right: 0.5rem;
    left: auto;
    bottom: 1rem;
  }

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

@media (max-width: 640px) {
  .home-page .header-shell {
    margin-top: 0;
    margin-left: 10px;
  }

  .inner-shell .header-shell {
    margin-top: 0;
    margin-left: 10px;
  }

  .home-page .nav-links {
    justify-content: space-between;
  }

  .inner-shell .nav-links {
    justify-content: space-between;
  }

  .home-page .nav-links a {
    font-size: 0.8rem;
  }

  .inner-shell .nav-links a {
    font-size: 0.8rem;
  }

  .home-page .header-mini-pill {
    font-size: 0.76rem;
    padding: 0.52rem 0.65rem;
  }

  .inner-shell .header-mini-pill {
    font-size: 0.76rem;
    padding: 0.52rem 0.65rem;
  }

  .home-page .quote-btn {
    font-size: 0.78rem;
    padding: 0.66rem 0.8rem;
  }

  .inner-shell .quote-btn {
    font-size: 0.78rem;
    padding: 0.66rem 0.8rem;
  }

  .inner-hero-content {
    padding-top: 2.5rem;
  }

  .home-page .hero-modern .hero-inner {
    padding-top: 3rem;
  }

  .top-strip-inner {
    justify-content: space-between;
    gap: 0.5rem;
    flex-wrap: wrap;
    padding: 0.3rem 0;
  }

  .top-link {
    font-size: 0.72rem;
  }

  .header-inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 0.5rem 0 0.6rem;
    gap: 0.5rem;
    min-height: auto;
  }

  .brand-logo {
    width: min(100px, 30vw);
  }

  .nav-links {
    width: 100%;
    justify-content: space-between;
    gap: 0.5rem;
  }

  .nav-links a {
    font-size: 0.88rem;
  }

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

  .sec-pad {
    padding: 2.8rem 0;
  }

  .services-grid,
  .svc-showcase-grid,
  .portfolio-grid,
  .grid,
  .image-grid {
    grid-template-columns: 1fr;
  }

  .stats-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .footer-mini {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.35rem;
  }

  .about-checks {
    grid-template-columns: 1fr;
  }

  .years-badge,
  .feature-badge {
    position: static;
    margin-top: 1rem;
    align-self: flex-start;
  }
}
