/* ============================================================
   Hill Country Facility Services LLC
   Premium Commercial Facility Services
   ============================================================ */

:root {
  /* Brand palette — derived from logo */
  --navy-950: #0a1428;
  --navy-900: #0e1b33;
  --navy-800: #14254a;
  --navy-700: #1b3160;
  --navy-600: #294573;
  --navy-500: #3d5a8a;

  --olive-700: #545f3d;
  --olive-600: #6b7a4f;
  --olive-500: #818d63;
  --olive-300: #b8bf9d;
  --olive-100: #ecefe1;

  --gold-700: #8a6a26;
  --gold-600: #b08a3e;
  --gold-500: #c69b4a;
  --gold-400: #d4ae66;
  --gold-100: #f5ebd2;

  --white: #ffffff;
  --bone: #fafaf7;
  --gray-50: #f5f6f8;
  --gray-100: #eceff3;
  --gray-200: #dfe3e9;
  --gray-300: #c2c9d3;
  --gray-400: #8a94a3;
  --gray-500: #5e6878;
  --gray-600: #424b5a;
  --gray-700: #2a3140;

  /* Semantic */
  --bg: var(--white);
  --bg-alt: var(--bone);
  --bg-deep: var(--navy-900);
  --ink: var(--navy-900);
  --ink-soft: var(--gray-600);
  --ink-muted: var(--gray-500);
  --border: var(--gray-200);
  --border-soft: var(--gray-100);
  --accent: var(--gold-600);
  --accent-hover: var(--gold-500);
  --secondary: var(--olive-600);

  /* Type */
  --font-display: 'Fraunces', 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;

  /* Spacing scale */
  --s-1: 0.25rem;
  --s-2: 0.5rem;
  --s-3: 0.75rem;
  --s-4: 1rem;
  --s-5: 1.5rem;
  --s-6: 2rem;
  --s-7: 2.5rem;
  --s-8: 3rem;
  --s-10: 4rem;
  --s-12: 5rem;
  --s-16: 7rem;
  --s-20: 9rem;
  --s-24: 11rem;

  /* Container */
  --container: 1280px;
  --container-narrow: 1080px;

  /* Effects */
  --shadow-xs: 0 1px 2px rgba(14, 27, 51, 0.04);
  --shadow-sm: 0 2px 8px rgba(14, 27, 51, 0.06);
  --shadow-md: 0 8px 24px rgba(14, 27, 51, 0.08);
  --shadow-lg: 0 20px 50px rgba(14, 27, 51, 0.12);
  --shadow-xl: 0 30px 80px rgba(14, 27, 51, 0.18);

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 14px;
  --radius-xl: 22px;

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-quick: cubic-bezier(0.4, 0, 0.2, 1);

  --header-h: 104px;
}

/* ============================ Base ============================ */

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  font-feature-settings: 'cv02', 'cv03', 'cv11', 'ss01';
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

button { font-family: inherit; cursor: pointer; border: none; background: none; }

::selection { background: var(--gold-600); color: var(--white); }

/* ============================ Typography ============================ */

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-600);
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}
.eyebrow::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--gold-600);
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--ink);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 0 0 var(--s-4);
}

h1 {
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  font-weight: 400;
}
h2 {
  font-size: clamp(2rem, 3.6vw, 3rem);
  font-weight: 400;
}
h3 {
  font-size: clamp(1.25rem, 1.8vw, 1.5rem);
  font-weight: 500;
  letter-spacing: -0.01em;
}
h4 {
  font-size: 1.0625rem;
  font-weight: 600;
  font-family: var(--font-body);
  letter-spacing: -0.005em;
}

p {
  margin: 0 0 var(--s-4);
  color: var(--ink-soft);
  max-width: 64ch;
}

.lede {
  font-size: 1.125rem;
  line-height: 1.65;
  color: var(--ink-soft);
}

/* ============================ Layout ============================ */

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
}

.container--narrow { max-width: var(--container-narrow); }

section {
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.section-head {
  max-width: 720px;
  margin: 0 auto var(--s-10);
  text-align: center;
}
.section-head .eyebrow { margin-bottom: var(--s-4); }
.section-head p { margin: var(--s-4) auto 0; }

/* ============================ Header ============================ */

.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-h);
  z-index: 100;
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: saturate(180%) blur(18px);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  border-bottom: 1px solid rgba(14, 27, 51, 0.06);
  transition: background 0.4s var(--ease), height 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.header.scrolled {
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 1px 0 rgba(14,27,51,0.05), 0 8px 24px rgba(14,27,51,0.04);
  height: 88px;
}
.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}
.brand img {
  height: 88px;
  width: auto;
  transition: height 0.4s var(--ease);
}
.header.scrolled .brand img { height: 72px; }
.brand-text {
  /* Wordmark is built into the logo image; keep text for screen readers only */
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
.brand-text .b1 {
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--navy-900);
  font-size: 1.0625rem;
  letter-spacing: -0.005em;
}
.brand-text .b2 {
  font-size: 0.6875rem;
  letter-spacing: 0.18em;
  color: var(--olive-600);
  text-transform: uppercase;
  font-weight: 600;
}

.nav {
  display: flex;
  align-items: center;
  gap: 2.25rem;
}
.nav a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--ink);
  position: relative;
  padding: 0.5rem 0;
  transition: color 0.25s var(--ease);
}
.nav a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1px;
  background: var(--gold-600);
  transition: width 0.35s var(--ease);
}
.nav a:hover, .nav a.active { color: var(--navy-900); }
.nav a:hover::after, .nav a.active::after { width: 100%; }

.menu-btn {
  display: none;
  width: 44px; height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  color: var(--navy-900);
}
.menu-btn svg { width: 22px; height: 22px; }

/* ============================ Buttons ============================ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.95rem 1.65rem;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: 2px;
  transition: all 0.35s var(--ease);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  white-space: nowrap;
}
.btn svg { width: 16px; height: 16px; transition: transform 0.35s var(--ease); }
.btn:hover svg { transform: translateX(4px); }

.btn-primary {
  background: var(--gold-600);
  color: var(--white);
  box-shadow: 0 6px 18px rgba(176, 138, 62, 0.28);
}
.btn-primary:hover {
  background: var(--gold-500);
  box-shadow: 0 10px 26px rgba(176, 138, 62, 0.42);
  transform: translateY(-1px);
}

.btn-secondary {
  background: var(--navy-900);
  color: var(--white);
}
.btn-secondary:hover {
  background: var(--navy-800);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-ghost {
  background: transparent;
  color: var(--navy-900);
  border: 1px solid var(--gray-300);
}
.btn-ghost:hover {
  border-color: var(--navy-900);
  background: var(--navy-900);
  color: var(--white);
}

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.4);
}
.btn-outline-light:hover {
  background: var(--white);
  color: var(--navy-900);
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--navy-900);
  letter-spacing: 0.01em;
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  transition: all 0.3s var(--ease);
}
.link-arrow svg { transition: transform 0.35s var(--ease); }
.link-arrow:hover { color: var(--gold-600); border-bottom-color: var(--gold-600); }
.link-arrow:hover svg { transform: translateX(4px); }

/* ============================ Hero ============================ */

.hero {
  position: relative;
  min-height: 92vh;
  padding-top: calc(var(--header-h) + 4rem);
  padding-bottom: 5rem;
  background: var(--navy-900);
  color: var(--white);
  overflow: hidden;
  display: flex;
  align-items: center;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.45) saturate(1.1);
}
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(120deg, rgba(10,20,40,0.92) 0%, rgba(14,27,51,0.65) 55%, rgba(14,27,51,0.4) 100%),
    linear-gradient(180deg, rgba(10,20,40,0.4) 0%, transparent 30%, rgba(10,20,40,0.6) 100%);
}
.hero .container { position: relative; z-index: 2; width: 100%; }

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 0.9fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: end;
}

.hero h1 {
  color: var(--white);
  font-size: clamp(2.5rem, 5.6vw, 5rem);
  line-height: 1.04;
  font-weight: 300;
  margin-bottom: 1.5rem;
  letter-spacing: -0.022em;
}
.hero h1 .accent {
  font-style: italic;
  color: var(--gold-400);
  font-weight: 400;
}
.hero .lede {
  color: rgba(255,255,255,0.78);
  font-size: 1.1875rem;
  max-width: 620px;
  margin-bottom: 2.5rem;
  line-height: 1.6;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-meta {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 2rem;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 4px;
}
.hero-meta .meta-row {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.hero-meta .meta-row:last-child { padding-bottom: 0; border-bottom: 0; }
.hero-meta .meta-label {
  font-size: 0.6875rem;
  letter-spacing: 0.2em;
  color: var(--gold-400);
  text-transform: uppercase;
  font-weight: 600;
}
.hero-meta .meta-value {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--white);
  font-weight: 400;
}
.hero-meta .meta-sub {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.7);
}

.hero-scroll {
  position: absolute;
  bottom: 1.5rem;
  right: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.55);
  font-size: 0.625rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  z-index: 2;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}
.hero-scroll::after { writing-mode: horizontal-tb; transform: rotate(180deg); }
@media (max-width: 1024px) { .hero-scroll { display: none; } }
.hero-scroll::after {
  content: '';
  width: 1px; height: 36px;
  background: linear-gradient(180deg, rgba(255,255,255,0.5), transparent);
  animation: scrollLine 2.2s var(--ease) infinite;
}
@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

.hero-trust {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.12);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.hero-trust .item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.hero-trust .num {
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: var(--white);
  font-weight: 400;
}
.hero-trust .lbl {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
}

/* ============================ Intro ============================ */

.intro {
  background: var(--bg);
  position: relative;
}
.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: clamp(2rem, 6vw, 6rem);
  align-items: center;
}
.intro-text h2 {
  margin-bottom: 1.5rem;
}
.intro-text h2 .alt {
  color: var(--olive-600);
  font-style: italic;
}
.intro-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border);
}
.intro-meta .item h4 {
  color: var(--navy-900);
  margin-bottom: 0.25rem;
}
.intro-meta .item p {
  font-size: 0.9375rem;
  margin: 0;
}

.intro-visual {
  position: relative;
  aspect-ratio: 5/6;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.intro-visual img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 8s var(--ease);
}
.intro-visual:hover img { transform: scale(1.05); }
.intro-visual .badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  padding: 1.25rem 1.5rem;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px);
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.intro-visual .badge .dot {
  width: 10px; height: 10px;
  background: var(--olive-600);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(107,122,79,0.18);
  flex-shrink: 0;
}
.intro-visual .badge .txt {
  font-size: 0.875rem;
  color: var(--navy-900);
  font-weight: 500;
}

/* ============================ Services ============================ */

.services {
  background: var(--bg-alt);
  position: relative;
}
.services::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}

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

.service-card {
  position: relative;
  padding: 2rem 1.75rem;
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: 4px;
  transition: all 0.5s var(--ease);
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 0; height: 3px;
  background: var(--gold-600);
  transition: width 0.5s var(--ease);
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.service-card:hover::before { width: 100%; }

.service-icon {
  width: 52px; height: 52px;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--navy-900);
  color: var(--gold-500);
  margin-bottom: 1.5rem;
  transition: all 0.5s var(--ease);
}
.service-icon svg { width: 22px; height: 22px; }
.service-card:hover .service-icon {
  background: var(--gold-600);
  color: var(--white);
}
.service-card h3 {
  font-size: 1.125rem;
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--navy-900);
  margin-bottom: 0.75rem;
  letter-spacing: -0.005em;
}
.service-card p {
  font-size: 0.9375rem;
  line-height: 1.6;
  margin: 0;
  color: var(--ink-soft);
}
.service-card .num {
  position: absolute;
  top: 1.5rem; right: 1.75rem;
  font-family: var(--font-display);
  font-size: 0.875rem;
  color: var(--gray-300);
  letter-spacing: 0.05em;
}

/* ============================ Industries ============================ */

.industries {
  background: var(--navy-900);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.industries::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(176,138,62,0.08), transparent 65%);
  pointer-events: none;
}
.industries .section-head h2 { color: var(--white); }
.industries .section-head p { color: rgba(255,255,255,0.7); }

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

.industry-card {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
}
.industry-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease);
}
.industry-card::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(14,27,51,0.2) 0%, rgba(14,27,51,0.45) 50%, rgba(10,20,40,0.95) 100%);
  transition: opacity 0.5s var(--ease);
}
.industry-card .content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.5rem;
  z-index: 2;
  transform: translateY(0);
  transition: transform 0.5s var(--ease);
}
.industry-card .label {
  font-size: 0.6875rem;
  letter-spacing: 0.2em;
  color: var(--gold-400);
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.industry-card h3 {
  color: var(--white);
  font-size: 1.25rem;
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-weight: 500;
}
.industry-card .desc {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.8);
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease), opacity 0.4s var(--ease) 0.05s, margin 0.5s var(--ease);
  margin-top: 0;
  line-height: 1.5;
}
.industry-card:hover img { transform: scale(1.08); }
.industry-card:hover .desc {
  max-height: 80px;
  opacity: 1;
  margin-top: 0.5rem;
}

/* ============================ Why Us ============================ */

.whyus {
  background: var(--bg);
}
.whyus-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}
.whyus-text h2 .alt {
  color: var(--olive-600);
  font-style: italic;
}
.whyus-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 2rem;
}
.whyus-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.5rem;
  padding: 1.5rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  transition: all 0.4s var(--ease);
}
.whyus-item:hover {
  border-color: var(--gold-600);
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}
.whyus-item .ico {
  width: 44px; height: 44px;
  background: var(--olive-100);
  color: var(--olive-700);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s var(--ease);
}
.whyus-item:hover .ico {
  background: var(--gold-600);
  color: var(--white);
}
.whyus-item h4 {
  margin: 0 0 0.25rem;
  color: var(--navy-900);
  font-size: 1rem;
}
.whyus-item p {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.55;
}

.whyus-visual {
  position: relative;
}
.whyus-img {
  aspect-ratio: 4/5;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.whyus-img img {
  width: 100%; height: 100%; object-fit: cover;
}
.whyus-stat {
  position: absolute;
  bottom: -1.5rem;
  left: -1rem;
  background: var(--navy-900);
  color: var(--white);
  padding: 1.75rem 2rem;
  border-radius: 4px;
  box-shadow: var(--shadow-xl);
  border-top: 3px solid var(--gold-600);
}
.whyus-stat .num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 400;
  color: var(--gold-400);
  line-height: 1;
}
.whyus-stat .lbl {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  margin-top: 0.5rem;
}

/* ============================ Counters ============================ */

.counters {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 5rem 0;
}
.counters-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.counter {
  text-align: center;
  padding: 1rem;
}
.counter-num {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4.5vw, 3.75rem);
  font-weight: 400;
  color: var(--navy-900);
  line-height: 1;
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 0.1em;
}
.counter-num .suffix {
  color: var(--gold-600);
  font-size: 0.7em;
}
.counter-label {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  color: var(--ink-soft);
  text-transform: uppercase;
  font-weight: 500;
}
.counter-line {
  width: 28px;
  height: 1px;
  background: var(--gold-600);
  margin: 1rem auto 0;
}

/* ============================ CTA ============================ */

.cta {
  position: relative;
  padding: clamp(5rem, 10vw, 8rem) 0;
  background: var(--navy-900);
  color: var(--white);
  overflow: hidden;
}
.cta-bg {
  position: absolute; inset: 0;
  z-index: 0;
}
.cta-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.18;
}
.cta-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(120deg, var(--navy-900) 30%, rgba(14,27,51,0.6) 100%);
}
.cta .container { position: relative; z-index: 2; }

.cta-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 3rem;
  align-items: center;
}
.cta h2 {
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3.25rem);
  margin-bottom: 1rem;
  font-weight: 300;
}
.cta h2 .alt {
  color: var(--gold-400);
  font-style: italic;
}
.cta p {
  color: rgba(255,255,255,0.78);
  margin-bottom: 0;
  font-size: 1.0625rem;
}
.cta-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
}
.cta-actions .btn { align-self: stretch; justify-content: center; }
.cta-phone {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255,255,255,0.85);
  font-size: 0.9375rem;
  margin-top: 1rem;
}
.cta-phone svg { color: var(--gold-400); }
.cta-phone strong {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.25rem;
  color: var(--white);
}

/* ============================ Footer ============================ */

.footer {
  background: var(--navy-950);
  color: rgba(255,255,255,0.7);
  padding: 5rem 0 2rem;
  position: relative;
}
.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-600), transparent);
  opacity: 0.5;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 1.4fr 1.1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand img {
  height: 120px;
  width: auto;
  margin: 0 0 1.5rem 0;
  display: block;
  padding: 14px 18px;
  background: var(--white);
  border-radius: 6px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
  box-sizing: content-box;
  object-fit: contain;
}
.footer-brand p {
  color: rgba(255,255,255,0.65);
  font-size: 0.9375rem;
  margin-bottom: 1.5rem;
  max-width: 320px;
}
.footer-brand .badges {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.footer-brand .badge-pill {
  font-size: 0.6875rem;
  letter-spacing: 0.12em;
  padding: 0.35rem 0.75rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  font-weight: 500;
  border-radius: 2px;
}
.footer h4 {
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  color: var(--gold-400);
}
.footer-col ul {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.footer-col a {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.7);
  transition: color 0.3s var(--ease);
  display: inline-block;
}
.footer-col a:hover { color: var(--gold-400); }
.footer-contact .row {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  margin-bottom: 1rem;
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.5;
}
.footer-contact .row svg {
  color: var(--gold-400);
  flex-shrink: 0;
  margin-top: 3px;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.5);
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}
.footer-bottom-links a:hover { color: var(--gold-400); }

/* ============================ Page Header (interior) ============================ */

.page-hero {
  position: relative;
  padding: calc(var(--header-h) + 5rem) 0 5rem;
  background: var(--navy-900);
  color: var(--white);
  overflow: hidden;
}
.page-hero-bg {
  position: absolute; inset: 0; z-index: 0;
}
.page-hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.4);
}
.page-hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(120deg, rgba(10,20,40,0.92), rgba(14,27,51,0.6));
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 {
  color: var(--white);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300;
  margin-bottom: 1.25rem;
  max-width: 18ch;
}
.page-hero h1 .alt { color: var(--gold-400); font-style: italic; }
.page-hero p {
  color: rgba(255,255,255,0.8);
  max-width: 60ch;
  font-size: 1.0625rem;
}
.crumbs {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 1.5rem;
}
.crumbs a { color: var(--gold-400); }
.crumbs span.sep { opacity: 0.4; }

/* ============================ Forms ============================ */

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.form-row { display: flex; flex-direction: column; gap: 0.5rem; }
.form-row.full { grid-column: 1 / -1; }
.form-row label {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ink);
}
.form-row label .req { color: var(--gold-600); }
.form-row input,
.form-row select,
.form-row textarea {
  font-family: inherit;
  font-size: 0.9375rem;
  padding: 0.875rem 1rem;
  border: 1px solid var(--border);
  background: var(--white);
  border-radius: 2px;
  color: var(--ink);
  transition: all 0.3s var(--ease);
  width: 100%;
}
.form-row textarea { min-height: 140px; resize: vertical; }
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--gold-600);
  box-shadow: 0 0 0 3px rgba(176,138,62,0.12);
}

/* ============================ Reveal Animation ============================ */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal-stagger.in > * { opacity: 1; transform: translateY(0); }
.reveal-stagger.in > *:nth-child(1) { transition-delay: 0.05s; }
.reveal-stagger.in > *:nth-child(2) { transition-delay: 0.12s; }
.reveal-stagger.in > *:nth-child(3) { transition-delay: 0.19s; }
.reveal-stagger.in > *:nth-child(4) { transition-delay: 0.26s; }
.reveal-stagger.in > *:nth-child(5) { transition-delay: 0.33s; }
.reveal-stagger.in > *:nth-child(6) { transition-delay: 0.40s; }
.reveal-stagger.in > *:nth-child(7) { transition-delay: 0.47s; }
.reveal-stagger.in > *:nth-child(8) { transition-delay: 0.54s; }
.reveal-stagger.in > *:nth-child(9) { transition-delay: 0.60s; }
.reveal-stagger.in > *:nth-child(10) { transition-delay: 0.66s; }
.reveal-stagger.in > *:nth-child(11) { transition-delay: 0.72s; }
.reveal-stagger.in > *:nth-child(12) { transition-delay: 0.78s; }

/* ============================ Nav dropdown (Locations) ============================ */

.nav-drop {
  position: relative;
  display: inline-block;
}
.nav-drop > a {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  cursor: pointer;
}
.nav-drop > a svg {
  transition: transform 0.25s var(--ease);
  color: var(--gold-600);
}
.nav-drop:hover > a,
.nav-drop:focus-within > a {
  color: var(--navy-900);
}
.nav-drop:hover > a::after,
.nav-drop:focus-within > a::after {
  width: 100%;
}
.nav-drop:hover > a svg,
.nav-drop:focus-within > a svg {
  transform: rotate(180deg);
}
.nav-drop-menu {
  position: absolute;
  top: calc(100% + 14px);
  right: 0;
  min-width: 640px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem 2rem;
  padding: 1.75rem 2rem;
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-top: 3px solid var(--gold-600);
  border-radius: 4px;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease), visibility 0.25s var(--ease);
  z-index: 100;
}
.nav-drop:hover .nav-drop-menu,
.nav-drop:focus-within .nav-drop-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-drop-menu::before {
  content: '';
  position: absolute;
  top: -14px; left: 0; right: 0;
  height: 14px;
}
.nav-drop-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.nav-drop-label {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-700);
  margin-bottom: 0.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border-soft);
}
.nav-drop-group a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--ink-soft);
  padding: 0.15rem 0;
  transition: color 0.2s var(--ease), padding-left 0.2s var(--ease);
}
.nav-drop-group a::after { display: none; }
.nav-drop-group a:hover {
  color: var(--navy-900);
  padding-left: 0.35rem;
}
.nav-drop-all {
  grid-column: 1 / -1;
  font-size: 0.8125rem !important;
  font-weight: 600 !important;
  color: var(--gold-700) !important;
  padding-top: 0.75rem !important;
  border-top: 1px solid var(--border-soft);
  letter-spacing: 0.02em;
}
.nav-drop-all:hover { color: var(--navy-900) !important; padding-left: 0 !important; }

/* ============================ Footer Locations column ============================ */

.footer-locations h4 { margin-bottom: 1rem; }
.footer-loc-group {
  margin-bottom: 1rem;
}
.footer-loc-group:last-of-type { margin-bottom: 1.25rem; }
.footer-loc-label {
  display: block;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-400);
  margin-bottom: 0.4rem;
}
.footer-locations ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.25rem 0.75rem;
}
.footer-locations ul li { margin: 0; }
.footer-locations ul li a {
  font-size: 0.8125rem;
  display: inline-block;
  padding: 0.1rem 0;
}
.footer-loc-all {
  display: inline-block;
  margin-top: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--gold-400) !important;
  letter-spacing: 0.02em;
}
.footer-loc-all:hover { color: var(--white) !important; }

/* ============================ Locations index page ============================ */

.locations {
  padding: 6rem 0 5rem;
}
.loc-group { margin-bottom: 4.5rem; }
.loc-group:last-child { margin-bottom: 0; }
.loc-group-head {
  margin-bottom: 2rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border);
}
.loc-group-head h2 {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 300;
  color: var(--navy-900);
  letter-spacing: -0.01em;
  margin: 0.5rem 0 0;
}
.loc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.loc-card {
  position: relative;
  display: block;
  padding: 1.75rem;
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: 4px;
  transition: all 0.4s var(--ease);
  overflow: hidden;
  color: var(--ink);
}
.loc-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 0; height: 3px;
  background: var(--gold-600);
  transition: width 0.4s var(--ease);
}
.loc-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.loc-card:hover::before { width: 100%; }
.loc-card h3 {
  font-family: var(--font-display);
  font-size: 1.625rem;
  font-weight: 400;
  color: var(--navy-900);
  margin: 0 0 0.35rem;
  letter-spacing: -0.01em;
}
.loc-card p {
  font-size: 0.875rem;
  color: var(--ink-muted);
  margin: 0 0 1.25rem;
}
.loc-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--gold-700);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.loc-card:hover .loc-cta { color: var(--navy-900); }

/* ============================ City page service cards & meta ============================ */

.service-card .svc-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--gold-700);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  transition: color 0.2s var(--ease);
}
.service-card:hover .svc-cta { color: var(--navy-900); }

.intro-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}
.meta-card {
  padding: 2rem;
  background: var(--bg-alt);
  border: 1px solid var(--border-soft);
  border-top: 3px solid var(--gold-600);
  border-radius: 4px;
}
.meta-card .meta-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border-soft);
}
.meta-card .meta-row:first-child { padding-top: 0; }
.meta-card .meta-row:last-child { padding-bottom: 0; border-bottom: 0; }
.meta-card .meta-label {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-500);
  flex-shrink: 0;
}
.meta-card .meta-value {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 400;
  color: var(--navy-900);
  text-align: right;
}

/* ============================ Texas service-area map ============================ */

.map-section {
  padding: 5rem 0 4rem;
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
}
.map-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3rem;
}
.map-head .eyebrow { margin-bottom: var(--s-4); }
.map-head h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 300;
  color: var(--navy-900);
  margin: 0 0 1rem;
  letter-spacing: -0.015em;
}
.map-head p {
  color: var(--ink-muted);
  font-size: 1.0625rem;
  margin: 0;
}
.map-wrap {
  position: relative;
  max-width: 980px;
  margin: 0 auto;
}
.tx-map {
  width: 100%;
  height: auto;
  display: block;
}
.tx-map .pin-dot {
  fill: var(--gold-600);
  stroke: var(--white);
  stroke-width: 1.5;
  transition: r 0.25s var(--ease), fill 0.25s var(--ease), stroke 0.25s var(--ease);
}
.tx-map .pin-halo {
  fill: var(--gold-600);
  opacity: 0.18;
  transition: opacity 0.25s var(--ease);
}
.tx-map .pin-label {
  pointer-events: none;
  font-family: var(--font-body);
}
.tx-map .pin-label-primary {
  font-size: 14px;
  font-weight: 700;
  fill: var(--white);
  letter-spacing: 0.01em;
}
.tx-map .pin-label-primary.pin-label-halo {
  fill: none;
  stroke: var(--navy-900);
  stroke-width: 5;
  stroke-linejoin: round;
  paint-order: stroke;
}
.tx-map .pin-label-secondary {
  font-size: 11px;
  font-weight: 600;
  fill: var(--white);
  opacity: 0;
  transition: opacity 0.2s var(--ease);
  paint-order: stroke;
  stroke: var(--navy-900);
  stroke-width: 4;
  stroke-linejoin: round;
}
.tx-map a.map-pin { cursor: pointer; }
.tx-map a.map-pin:hover .pin-dot {
  r: 8;
  fill: var(--white);
  stroke: var(--gold-600);
  stroke-width: 2.5;
}
.tx-map a.map-pin:hover .pin-halo {
  opacity: 0.35;
}
.tx-map a.map-pin:hover .pin-label-secondary {
  opacity: 1;
}
.map-legend {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-soft);
}
.legend-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--ink-muted);
  letter-spacing: 0.02em;
}
.legend-dot {
  display: inline-block;
  border-radius: 50%;
  background: var(--gold-600);
}
.legend-dot-primary {
  width: 14px;
  height: 14px;
  border: 2px solid var(--white);
  box-shadow: 0 0 0 1px var(--gold-600);
}
.legend-dot-secondary {
  width: 9px;
  height: 9px;
  border: 1.5px solid var(--white);
  box-shadow: 0 0 0 1px var(--gold-600);
}
.legend-stat {
  font-family: var(--font-display);
  font-size: 0.9375rem;
  color: var(--navy-900);
  letter-spacing: 0.02em;
}
.legend-stat span {
  font-weight: 500;
  color: var(--gold-700);
  font-size: 1.25rem;
  margin-right: 0.35rem;
}

/* ============================ FAQ ============================ */

.faq-section {
  padding: 6rem 0;
  background: var(--light-gray);
}
.faq-section .section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3.5rem;
}
.faq-section .section-head h2 {
  font-size: 2.5rem;
  margin: 0.5rem 0 1rem;
  letter-spacing: -0.02em;
}
.faq-section .section-head .lede {
  color: var(--text-muted);
  font-size: 1.0625rem;
}
.faq-grid {
  max-width: 920px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.faq-item {
  background: var(--white);
  border: 1px solid rgba(11, 31, 58, 0.08);
  border-radius: 8px;
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.faq-item:hover {
  border-color: rgba(11, 31, 58, 0.2);
}
.faq-item[open] {
  border-color: var(--gold-600);
  box-shadow: 0 6px 24px rgba(11, 31, 58, 0.06);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.4rem 3.5rem 1.4rem 1.75rem;
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 500;
  color: var(--navy);
  position: relative;
  letter-spacing: -0.005em;
  line-height: 1.4;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "";
  position: absolute;
  right: 1.75rem;
  top: 50%;
  width: 14px;
  height: 14px;
  border-right: 2px solid var(--gold-700);
  border-bottom: 2px solid var(--gold-700);
  transform: translateY(-75%) rotate(45deg);
  transition: transform 0.25s ease;
}
.faq-item[open] summary::after {
  transform: translateY(-25%) rotate(-135deg);
}
.faq-body {
  padding: 0 1.75rem 1.5rem;
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.7;
}
.faq-body p { margin: 0; }
.faq-body a {
  color: var(--gold-700);
  text-decoration: none;
  border-bottom: 1px solid rgba(184, 134, 11, 0.3);
}
.faq-body a:hover {
  border-bottom-color: var(--gold-700);
}

/* ============================ Legal Pages ============================ */

.page-hero.page-hero-compact {
  padding: calc(var(--header-h) + 4rem) 0 3.5rem;
  background: var(--navy-900);
  color: var(--white);
}
.page-hero.page-hero-compact .crumbs {
  color: rgba(255,255,255,0.7);
}
.page-hero.page-hero-compact .crumbs a {
  color: rgba(255,255,255,0.85);
}
.page-hero.page-hero-compact .crumbs .sep {
  color: rgba(255,255,255,0.4);
}
.page-hero.page-hero-compact h1 {
  color: var(--white);
  font-size: clamp(2.25rem, 4vw, 3rem);
  margin: 0.75rem 0 1rem;
  letter-spacing: -0.02em;
  max-width: none;
  font-weight: 300;
}
.page-hero.page-hero-compact h1 .alt {
  font-style: italic;
  color: var(--gold-400);
  font-weight: 300;
}
.page-hero.page-hero-compact p {
  color: rgba(255,255,255,0.78);
  font-size: 1.0625rem;
  max-width: 640px;
  margin: 0 0 1.25rem;
}
.legal-effective {
  color: rgba(255,255,255,0.55);
  font-size: 0.875rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 500;
}
.legal-section {
  padding: 5rem 0 6rem;
  background: var(--white);
}
.legal-container {
  max-width: 820px;
}
.legal-container .legal-lede {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--navy);
  margin: 0 0 2rem;
  padding-bottom: 1.75rem;
  border-bottom: 1px solid rgba(11, 31, 58, 0.08);
}
.legal-container h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--navy);
  letter-spacing: -0.015em;
  margin: 2.25rem 0 0.875rem;
}
.legal-container h2:first-child {
  margin-top: 0;
}
.legal-container p,
.legal-container li {
  color: var(--text);
  font-size: 1rem;
  line-height: 1.75;
  margin: 0 0 1rem;
}
.legal-container ul {
  padding-left: 1.25rem;
  margin: 0 0 1.25rem;
}
.legal-container li { margin-bottom: 0.4rem; }
.legal-container a {
  color: var(--gold-700);
  text-decoration: none;
  border-bottom: 1px solid rgba(184, 134, 11, 0.3);
}
.legal-container a:hover { border-bottom-color: var(--gold-700); }

/* ============================ Responsive ============================ */

@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-meta { display: none; }
  .intro-grid { grid-template-columns: 1fr; gap: 3rem; }
  .whyus-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-inner { grid-template-columns: 1fr; text-align: left; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .loc-grid { grid-template-columns: repeat(2, 1fr); }
  .nav-drop-menu {
    right: auto;
    left: 50%;
    transform: translate(-50%, -6px);
    min-width: 560px;
  }
  .nav-drop:hover .nav-drop-menu,
  .nav-drop:focus-within .nav-drop-menu {
    transform: translate(-50%, 0);
  }
}

@media (max-width: 720px) {
  :root { --header-h: 84px; }
  .nav { display: none; }
  .menu-btn { display: inline-flex; }
  .nav.open {
    display: flex;
    position: fixed;
    top: var(--header-h);
    left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 1.5rem;
    gap: 1.25rem;
    box-shadow: var(--shadow-lg);
    align-items: flex-start;
    border-top: 1px solid var(--border);
    max-height: calc(100vh - var(--header-h));
    overflow-y: auto;
  }
  .nav.open .btn { width: 100%; justify-content: center; }
  .nav.open .nav-drop { width: 100%; }
  .nav.open .nav-drop-menu {
    position: static;
    display: block;
    min-width: 0;
    width: 100%;
    margin-top: 0.75rem;
    padding: 1rem 1rem 0.5rem;
    box-shadow: none;
    border: 1px solid var(--border-soft);
    border-top: 3px solid var(--gold-600);
    opacity: 1;
    visibility: visible;
    transform: none;
  }
  .nav.open .nav-drop-group { margin-bottom: 0.75rem; }
  .brand img { height: 64px; }
  .hero { min-height: auto; padding-top: calc(var(--header-h) + 3rem); padding-bottom: 4rem; }
  .hero-trust { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .industries-grid { grid-template-columns: 1fr; }
  .counters-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-locations ul { grid-template-columns: 1fr 1fr; }
  .whyus-stat { left: 1rem; bottom: -1.5rem; padding: 1.25rem 1.5rem; }
  .whyus-stat .num { font-size: 2rem; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero h1 { font-size: 2.5rem; }
  .hero .lede { font-size: 1.0625rem; }
  .loc-grid { grid-template-columns: 1fr; }
  .loc-group-head h2 { font-size: 1.75rem; }
  .meta-card .meta-row { flex-direction: column; align-items: flex-start; }
  .meta-card .meta-value { text-align: left; }
  .map-section { padding: 3.5rem 0 2.5rem; }
  .map-head { margin-bottom: 2rem; }
  .tx-map .pin-label-primary { font-size: 16px; }
  .tx-map .pin-label-secondary { font-size: 13px; }
  .map-legend { gap: 1rem 1.5rem; }
  .faq-section { padding: 4rem 0; }
  .faq-section .section-head h2 { font-size: 1.875rem; }
  .faq-item summary { padding: 1.15rem 3rem 1.15rem 1.25rem; font-size: 1rem; }
  .faq-item summary::after { right: 1.25rem; width: 12px; height: 12px; }
  .faq-body { padding: 0 1.25rem 1.25rem; font-size: 0.95rem; }
  .page-hero-compact { padding: calc(var(--header-h) + 2.5rem) 0 2.5rem; }
  .page-hero-compact h1 { font-size: 2.125rem; }
  .legal-section { padding: 3.5rem 0 4rem; }
  .legal-container h2 { font-size: 1.375rem; margin-top: 2rem; padding-top: 1.5rem; }
}

/* ============================ Capabilities PDF CTAs ============================ */
.pdf-cta {
  margin-top: 1.75rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}
.pdf-cta .btn-outline-dark,
.pdf-cta .pdf-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.15rem;
  border: 1.5px solid var(--navy-900);
  color: var(--navy-900);
  background: transparent;
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.01em;
  text-decoration: none;
  border-radius: 4px;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.pdf-cta .pdf-link:hover {
  background: var(--navy-900);
  color: #fff;
  transform: translateY(-1px);
}
.pdf-cta .pdf-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--gold-500);
  color: var(--navy-900);
  font-weight: 700;
  font-size: 0.9rem;
  line-height: 1;
}
.pdf-cta .pdf-meta {
  font-size: 0.82rem;
  color: var(--gray-500);
  letter-spacing: 0.01em;
}

/* Procurement / one-page band on Services page */
.pdf-band {
  padding: 3rem 0;
  background: linear-gradient(180deg, var(--bone) 0%, #fff 100%);
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
}
.pdf-band-inner {
  display: grid;
  grid-template-columns: 1.4fr auto;
  gap: 2rem;
  align-items: center;
  padding: 2rem 2.25rem;
  background: var(--navy-900);
  color: #fff;
  border-radius: 6px;
  position: relative;
  overflow: hidden;
}
.pdf-band-inner::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--gold-500);
}
.pdf-band-text .eyebrow {
  color: var(--gold-400);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  font-weight: 700;
  text-transform: uppercase;
}
.pdf-band-text h3 {
  color: #fff;
  font-size: 1.55rem;
  margin: 0.5rem 0 0.5rem;
  letter-spacing: -0.01em;
}
.pdf-band-text p {
  color: #c2c9d3;
  margin: 0;
  font-size: 0.98rem;
  max-width: 56ch;
}
.pdf-band-actions .btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}
.pdf-band-actions .pdf-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(255,255,255,0.18);
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  line-height: 1;
}
@media (max-width: 720px) {
  .pdf-band-inner {
    grid-template-columns: 1fr;
    padding: 1.75rem 1.5rem;
  }
}

/* Contact-form thank-you panel */
.form-thanks {
  margin-top: 1.75rem;
  padding: 1.5rem 1.5rem;
  background: var(--navy-900);
  color: #fff;
  border-radius: 4px;
  border-left: 4px solid var(--gold-500);
}
.form-thanks h4 {
  color: #fff;
  margin: 0 0 0.5rem;
  font-size: 1.15rem;
}
.form-thanks p {
  color: #c2c9d3;
  margin: 0 0 1rem;
  font-size: 0.93rem;
}
.form-thanks .btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* Footer-bottom-links: ensure new Capabilities link spaces consistently */
.footer-bottom-links a + a {
  margin-left: 0.85rem;
}
