/* Pink Petals Facility Solutions — Design System v3
   White-first · Emerald · Pink accent
   Apple / Four Seasons / Tesla quality baseline
   ================================================================= */

/* ── TOKENS ──────────────────────────────────────────────────────── */
:root {
  /* luxury section spacing — generous white space */
  --c-white:           #ffffff;
  --c-bg:              #ffffff;
  --c-bg-subtle:       #fafafa;
  --c-bg-alt:          #f5f5f7;
  --c-emerald:         #0E5032;
  --c-emerald-hover:   #093D25;
  --c-emerald-subtle:  #edfaf3;
  --c-emerald-border:  rgba(14,80,50,0.14);
  --c-pink:            #E8387A;
  --c-pink-hover:      #D12A6A;
  --c-text:            #111116;
  --c-text-2:          #3A3A42;
  --c-text-3:          #76767E;
  --c-text-4:          #A0A0AA;
  --c-border:          #E2E2E8;
  --c-border-soft:     #ECECEF;

  --f-display: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --f-sans:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --f-mono:    'SF Mono', 'Fira Code', 'Roboto Mono', monospace;

  --fw-light:    300;
  --fw-regular:  400;
  --fw-medium:   500;
  --fw-semibold: 600;
  --fw-bold:     700;

  --section-py: clamp(96px, 11vw, 144px);
  --max-w:      1200px;
  --nav-h:      96px;

  --radius-sm:   6px;
  --radius-md:   10px;
  --radius-lg:   16px;
  --radius-xl:   24px;
  --radius-2xl:  32px;
  --radius-full: 9999px;

  --shadow-sm: 0 1px 3px rgba(0,0,0,0.05), 0 4px 14px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.07), 0 14px 40px rgba(0,0,0,0.06);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.09), 0 24px 64px rgba(0,0,0,0.07);

  --ease-spring: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out:    cubic-bezier(0.0, 0, 0.2, 1);
}

/* ── RESET ───────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--f-sans);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--c-text);
  background: var(--c-bg);
  overflow-x: hidden;
}
img  { display: block; max-width: 100%; }
a    { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
ul, ol { list-style: none; }

/* ── UTILITIES ───────────────────────────────────────────────────── */
.wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
}
.eyebrow {
  font-size: 0.6875rem;
  font-weight: var(--fw-semibold);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-pink);
}

/* ── NAVIGATION ──────────────────────────────────────────────────── */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--nav-h);
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(20px) saturate(1.6);
  -webkit-backdrop-filter: blur(20px) saturate(1.6);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  animation: nav-enter 0.70s var(--ease-spring) both;
}
.nav.scrolled {
  border-bottom-color: var(--c-border-soft);
  box-shadow: 0 1px 20px rgba(0,0,0,0.06);
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
  height: 100%;
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-right: auto;
  text-decoration: none;
}
.nav-logo-img {
  height: 90px;
  width: auto;
  object-fit: contain;
  display: block;
  animation: logo-bloom 1.0s var(--ease-spring) 0.06s both;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  animation: enter-up 0.80s var(--ease-spring) 0.28s both;
}
.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.75rem;
  font-weight: var(--fw-semibold);
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--c-text-2);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}
.nav-link:hover { color: var(--c-text); background: var(--c-bg-alt); }
.nav-link-chevron { opacity: 0.45; flex-shrink: 0; transition: transform 0.2s ease, opacity 0.2s; }
.nav-link:hover .nav-link-chevron { opacity: 0.85; transform: translateX(2px); }
.nav-cta {
  font-size: 0.75rem;
  font-weight: var(--fw-bold);
  color: var(--c-white);
  background: var(--c-pink);
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  transition: background 0.2s, transform 0.18s, box-shadow 0.2s;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  animation: enter-up 0.80s var(--ease-spring) 0.36s both;
}
.nav-cta:hover { background: var(--c-pink-hover); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(232,56,122,0.30); }
.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 8px;
  border-radius: var(--radius-sm);
}
.nav-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--c-text);
  border-radius: 2px;
  transition: transform 0.28s ease, opacity 0.28s ease;
}

/* ── MOBILE DRAWER ───────────────────────────────────────────────── */
.drawer {
  position: fixed;
  inset: 0 0 0 auto;
  width: min(320px, 88vw);
  background: var(--c-white);
  z-index: 200;
  transform: translateX(100%);
  transition: transform 0.38s var(--ease-spring);
  display: flex;
  flex-direction: column;
  padding: 20px 24px 32px;
  box-shadow: -8px 0 48px rgba(0,0,0,0.12);
}
.drawer.open { transform: translateX(0); }
.drawer-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 28px; }
.drawer-logo { height: 100px; width: auto; object-fit: contain; }
.drawer-x { font-size: 1.1rem; color: var(--c-text-3); padding: 8px; border-radius: var(--radius-sm); transition: color 0.2s, background 0.2s; }
.drawer-x:hover { color: var(--c-text); background: var(--c-bg-alt); }
.drawer-nav { display: flex; flex-direction: column; gap: 2px; }
.drawer-link { font-size: 1rem; font-weight: var(--fw-medium); color: var(--c-text-2); padding: 11px 14px; border-radius: var(--radius-md); transition: color 0.2s, background 0.2s; }
.drawer-link:hover { color: var(--c-text); background: var(--c-bg-alt); }
.drawer-foot { margin-top: auto; display: flex; flex-direction: column; gap: 10px; }
.drawer-btn { display: block; text-align: center; padding: 13px 24px; background: var(--c-emerald); color: var(--c-white); font-size: 0.9375rem; font-weight: var(--fw-semibold); border-radius: var(--radius-md); transition: background 0.2s; }
.drawer-btn:hover { background: var(--c-emerald-hover); }
.drawer-tel { display: block; text-align: center; font-size: 0.875rem; color: var(--c-text-3); padding: 6px; transition: color 0.2s; }
.drawer-tel:hover { color: var(--c-text); }
.drawer-scrim {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.38);
  z-index: 150;
  opacity: 0; pointer-events: none;
  transition: opacity 0.35s ease;
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}
.drawer-scrim.open { opacity: 1; pointer-events: all; }

/* ── INTRO OVERLAY ──────────────────────────────────────────────── */
/*
 * Full-screen brand splash — plays once per session.
 * Logo blooms via CSS keyframe; overlay fades via JS-triggered class.
 * Skipped when prefers-reduced-motion is set or session flag is found.
 */
/* Cinematic petal-explosion intro — canvas-driven, JS-controlled */
#intro-overlay {
  position: fixed; inset: 0; z-index: 9998;
  background: #FAF9F7;
  pointer-events: none;
}
#intro-overlay.io-gone { display: none; }

@media (prefers-reduced-motion: reduce) {
  #intro-overlay { display: none !important; }
}

/* ── HERO ────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: stretch;
  padding-top: var(--nav-h);
  overflow: hidden;
  background: var(--c-white);
}
.hero-bg { display: none; }
.hero-layout {
  position: relative; z-index: 1;
  max-width: var(--max-w);
  margin: 0 auto;
  /* right: 0 so photo column bleeds flush to container edge */
  padding: clamp(40px, 6vw, 72px) 0 clamp(40px, 6vw, 72px) clamp(20px, 4vw, 48px);
  display: grid;
  grid-template-columns: 42% 1fr;
  gap: clamp(0px, 1vw, 8px);
  align-items: center;
  width: 100%;
}
.hero-text { display: flex; flex-direction: column; justify-content: center; }
.hero-eyebrow {
  margin-bottom: 20px;
  animation: enter-up 0.75s var(--ease-spring) 0.20s both;
}
.hero-eyebrow-label {
  font-size: 0.6875rem;
  font-weight: var(--fw-bold);
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--c-pink);
}
.hero-h1 {
  display: flex; flex-direction: column;
  font-family: var(--f-display);
  font-size: clamp(3rem, 5.6vw, 5.25rem);
  line-height: 1.0;
  letter-spacing: -0.015em;
  margin-bottom: 24px;
}
.hh-intro   { font-weight: var(--fw-light); color: var(--c-text-3); animation: enter-up 0.85s var(--ease-spring) 0.28s both; }
.hh-strong  { font-weight: var(--fw-bold); color: var(--c-text); animation: enter-up 0.85s var(--ease-spring) 0.38s both; }
.hh-accent  { font-weight: var(--fw-bold); color: var(--c-text); animation: enter-up 0.85s var(--ease-spring) 0.48s both; }
.hh-strong2 { font-weight: var(--fw-regular); font-style: italic; color: var(--c-pink); animation: enter-up 0.85s var(--ease-spring) 0.58s both; }

.hero-sub {
  font-size: clamp(0.875rem, 1.1vw, 1rem);
  line-height: 1.7;
  color: var(--c-text-3);
  max-width: 440px;
  margin-bottom: 32px;
  animation: enter-up 0.85s var(--ease-spring) 0.68s both;
}
.hero-actions {
  display: flex; flex-wrap: wrap; gap: 12px;
  animation: enter-up 0.85s var(--ease-spring) 0.78s both;
}
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px;
  background: var(--c-pink); color: var(--c-white);
  font-size: 0.75rem; font-weight: var(--fw-bold);
  text-transform: uppercase; letter-spacing: 0.10em;
  border-radius: var(--radius-sm);
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}
.btn-primary:hover { background: var(--c-pink-hover); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(232,56,122,0.32); }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px;
  color: var(--c-text-2); font-size: 0.75rem; font-weight: var(--fw-semibold);
  text-transform: uppercase; letter-spacing: 0.10em;
  border: 1.5px solid var(--c-border); border-radius: var(--radius-sm);
  transition: border-color 0.2s, color 0.2s, background 0.2s, transform 0.2s;
}
.btn-ghost:hover { border-color: var(--c-text-2); color: var(--c-text); background: var(--c-bg-alt); transform: translateY(-1px); }
.hero-photo-col {
  position: relative;
  align-self: stretch;
  display: flex;
  align-items: center;
  /* bleed to right edge of the container's right padding */
  margin-right: calc(-1 * clamp(20px, 4vw, 48px));
  animation: enter-right 1.1s var(--ease-spring) 0.16s both;
}
.hero-photo-wrap {
  position: relative;
  border-radius: 0;
  overflow: hidden;
  width: 100%;
  height: calc(100svh - var(--nav-h) - clamp(40px, 6vw, 72px));
  min-height: 420px;
  max-height: 820px;
  background: var(--c-bg-alt);
  will-change: transform;
}
.hero-photo {
  width: 100%; height: 100%; object-fit: cover; object-position: center 28%; display: block;
  /* Mask dissolves only the outer left edge (0→5%) — center fully untouched */
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 5%, black 100%);
  mask-image:         linear-gradient(to right, transparent 0%, black 5%, black 100%);
}
/* Ghost bottom fade — only the very last strip, not a visible overlay */
.hero-photo-fade {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 84%, rgba(250,249,247,0.18) 100%);
  pointer-events: none;
}

/* ── HERO KEYFRAMES ──────────────────────────────────────────────── */
@keyframes nav-enter    { from { opacity:0; transform:translateY(-16px); } to { opacity:1; transform:none; } }
@keyframes logo-bloom   { from { opacity:0; transform:scale(0.78); filter:blur(8px); } to { opacity:1; transform:scale(1); filter:blur(0); } }
@keyframes enter-up     { from { opacity:0; transform:translateY(24px); } to { opacity:1; transform:none; } }
@keyframes enter-right  { from { opacity:0; transform:translateX(64px); } to { opacity:1; transform:none; } }
@keyframes trust-in     { from { opacity:0; transform:translateY(8px); } to { opacity:1; transform:none; } }

@media (prefers-reduced-motion: reduce) {
  .nav, .nav-logo-img, .nav-links, .nav-cta,
  .hero-eyebrow, .hh-intro, .hh-strong, .hh-accent, .hh-strong2,
  .hero-sub, .hero-actions, .hero-photo-col {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }
}

/* ── HERO INTRO ANIMATION OFFSETS ───────────────────────────────── */
/*
 * When --intro-off is set (first-visit, set by head script), hero
 * elements defer their animations until the intro overlay clears.
 * Defaults to 0s — return visits use the original timing unchanged.
 */
.hero-photo-col { animation-delay: calc(var(--intro-off, 0s) + 0.16s); }
.hero-eyebrow   { animation-delay: calc(var(--intro-off, 0s) + 0.20s); }
.hh-intro       { animation-delay: calc(var(--intro-off, 0s) + 0.28s); }
.hh-strong      { animation-delay: calc(var(--intro-off, 0s) + 0.38s); }
.hh-accent      { animation-delay: calc(var(--intro-off, 0s) + 0.48s); }
.hh-strong2     { animation-delay: calc(var(--intro-off, 0s) + 0.58s); }
.hero-sub       { animation-delay: calc(var(--intro-off, 0s) + 0.68s); }
.hero-actions   { animation-delay: calc(var(--intro-off, 0s) + 0.78s); }

/* ── PETAL TRANSITION SYSTEM ─────────────────────────────────────── */
/*
 * Three petal variants, refined to more closely echo the Pink Petals
 * logo — elongated shoulders, tapered tips, richer gradient.
 *   v1 — classic elongated petal (primary)
 *   v2 — fuller inner petal (softer)
 *   v3 — slim pointed accent (lightest)
 */
.petal-fx {
  position: fixed;
  pointer-events: none;
  z-index: 50;
  will-change: transform, opacity;
  /* v1: rounded shoulders → tapered tip, closely mirrors logo petal silhouette */
  border-radius: 48% 48% 28% 28% / 64% 64% 36% 36%;
  background: linear-gradient(
    163deg,
    rgba(232, 56, 122, var(--peak, 0.65)) 0%,
    rgba(220, 48, 110, 0.22)              48%,
    rgba(232, 56, 122, 0.03)              100%
  );
  animation: petal-fx-float var(--dur, 2s) var(--delay, 0s)
             cubic-bezier(0.20, 0.62, 0.36, 1) both;
}
/* v2 — fuller inner petal, wider and rounder */
.petal-fx[data-v="2"] {
  border-radius: 50% 50% 42% 42% / 44% 44% 56% 56%;
  background: linear-gradient(
    163deg,
    rgba(218, 44, 108, var(--peak, 0.60)) 0%,
    rgba(236, 88, 150, 0.18)              52%,
    rgba(255, 140, 190, 0.03)             100%
  );
}
/* v3 — slim pointed accent petal */
.petal-fx[data-v="3"] {
  border-radius: 42% 42% 16% 16% / 74% 74% 26% 26%;
  background: linear-gradient(
    163deg,
    rgba(232, 56, 122, var(--peak, 0.62)) 0%,
    rgba(232, 56, 122, 0.16)              52%,
    rgba(232, 56, 122, 0.02)              100%
  );
}

@keyframes petal-fx-float {
  0%   {
    opacity: 0;
    transform: translate(0, 0) rotate(var(--r0, 0deg)) scale(0.50);
  }
  10%  { opacity: 1; }
  62%  { opacity: 0.82; }
  100% {
    opacity: 0;
    transform: translate(var(--dx, 40px), var(--dy, -72px))
               rotate(var(--r1, 160deg))
               scale(0.96);
  }
}

@media (prefers-reduced-motion: reduce) {
  .petal-fx { display: none !important; }
}

/* ── TRUST BAR ───────────────────────────────────────────────────── */
.trust-strip {
  position: relative; overflow: hidden;
  height: 52px; display: flex; align-items: center;
  background: #0A2218;
  animation: trust-in 0.55s var(--ease-out) 1.40s both;
}
.trust-strip::before, .trust-strip::after {
  content: ''; position: absolute; inset: 0 auto 0 0;
  width: 100px; z-index: 2; pointer-events: none;
}
.trust-strip::before { background: linear-gradient(to right, #0A2218 40%, transparent); }
.trust-strip::after  { left: auto; right: 0; background: linear-gradient(to left, #0A2218 40%, transparent); }
.trust-track {
  display: inline-flex; align-items: center; white-space: nowrap;
  will-change: transform;
  animation: trust-scroll 40s 1.80s linear infinite;
}
.trust-strip:hover .trust-track { animation-play-state: paused; }
@keyframes trust-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.ti { display: inline-flex; align-items: center; gap: 8px; padding: 0 24px; font-size: 0.6875rem; font-weight: var(--fw-semibold); letter-spacing: 0.09em; text-transform: uppercase; color: rgba(255,255,255,0.90); white-space: nowrap; }
.ti-icon { color: rgba(255,255,255,0.60); flex-shrink: 0; }
.ti-sep  { display: inline-flex; align-items: center; color: rgba(255,255,255,0.25); flex-shrink: 0; }
@media (prefers-reduced-motion: reduce) { .trust-track { animation: none !important; } .trust-strip { animation: none; opacity: 1; } }

/* ── SCROLL REVEAL ───────────────────────────────────────────────── */
[data-reveal] {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.65s var(--ease-spring), transform 0.65s var(--ease-spring);
}
[data-reveal].revealed { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { [data-reveal] { opacity: 1; transform: none; transition: none; } }

/* ── SECTION HEADERS ─────────────────────────────────────────────── */
.section-head { text-align: center; max-width: 600px; margin: 0 auto clamp(48px, 6vw, 72px); }
.section-eyebrow { margin-bottom: 14px; }
.section-h2 {
  font-family: var(--f-display);
  font-size: clamp(2.25rem, 3.5vw, 3.25rem);
  font-weight: var(--fw-semibold);
  line-height: 1.08; letter-spacing: -0.025em; color: var(--c-text);
}
.section-h2 em { font-style: italic; font-weight: var(--fw-regular); color: var(--c-text-3); }
.section-sub { font-size: 1rem; color: var(--c-text-3); line-height: 1.65; margin-top: 14px; }

/* ── SERVICES — photo cards with gradient backgrounds ────────────── */
.services {
  padding: var(--section-py) 0;
  background: var(--c-white);
}
.svc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(10px, 1.4vw, 16px);
}
.svc-photo-card {
  position: relative; overflow: hidden;
  border-radius: var(--radius-lg);
  aspect-ratio: 4/3;
  display: block;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.4s var(--ease-spring), transform 0.4s var(--ease-spring);
}
.svc-photo-card:hover { box-shadow: 0 20px 56px rgba(0,0,0,0.22), 0 6px 18px rgba(0,0,0,0.12); transform: translateY(-6px); }
.svc-photo-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.75s var(--ease-spring);
  will-change: transform;
}
.svc-photo-card:hover .svc-photo-bg { transform: scale(1.08); }
/* Subtle cross-hatch texture overlay */
.svc-photo-bg::after {
  content: '';
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(45deg, rgba(255,255,255,0.025) 0px, rgba(255,255,255,0.025) 1px, transparent 1px, transparent 8px);
  pointer-events: none;
}
.svc-photo-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.80) 0%, rgba(0,0,0,0.40) 42%, rgba(0,0,0,0.06) 100%);
}
.svc-photo-content {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: clamp(18px, 2.5vw, 26px);
}
.svc-photo-title {
  font-family: var(--f-display);
  font-size: clamp(1.0625rem, 1.35vw, 1.3rem);
  font-weight: var(--fw-semibold);
  color: #fff;
  line-height: 1.2;
  margin-bottom: 6px;
  display: inline-block;
  position: relative;
}
.svc-photo-title::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; width: 100%; height: 2px;
  background: var(--c-pink);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.35s var(--ease-spring);
}
.svc-photo-card:hover .svc-photo-title::after { transform: scaleX(1); }
.svc-photo-desc { font-size: 0.8125rem; color: rgba(255,255,255,0.65); line-height: 1.5; margin-bottom: 8px; }
.svc-photo-cta {
  font-size: 0.6875rem; font-weight: var(--fw-bold);
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--c-pink);
  display: block;
  margin-top: 10px;
}

/* Service card photo backgrounds */
.svc-bg-1 { background: #0a2e1a url('https://images.unsplash.com/photo-1581578731548-c64695cc6952?w=1200&auto=format&fit=crop&q=80') center/cover no-repeat; } /* Commercial Janitorial */
.svc-bg-2 { background: #062020 url('https://images.unsplash.com/photo-1519494026892-80bbd2d6fd0d?w=1200&auto=format&fit=crop&q=80') center/cover no-repeat; } /* Healthcare */
.svc-bg-3 { background: #141520 url('https://images.unsplash.com/photo-1504917595217-d4dc5ebe6122?w=1200&auto=format&fit=crop&q=80') center/cover no-repeat; } /* Industrial */
.svc-bg-4 { background: #1a120a url('https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=1200&auto=format&fit=crop&q=80') center/cover no-repeat; } /* Floor Care */
.svc-bg-5 { background: #101218 url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?w=1200&auto=format&fit=crop&q=80') center/cover no-repeat; } /* Post-Construction */
.svc-bg-6 { background: #06111e url('https://images.unsplash.com/photo-1497366216548-37526070297c?w=1200&auto=format&fit=crop&q=80') center/cover no-repeat; } /* Day Porter */
.svc-bg-7 { background: #071808 url('https://images.unsplash.com/photo-1560440021-33f9b867899d?w=1200&auto=format&fit=crop&q=80') center/cover no-repeat; } /* Move-In/Out */
.svc-bg-8 { background: #1a0608 url('https://images.unsplash.com/photo-1563453392212-326f5e854473?w=1200&auto=format&fit=crop&q=80') center/cover no-repeat; } /* Emergency */

/* ── INDUSTRIES — photo cards with gradient backgrounds ──────────── */
.industries {
  padding: var(--section-py) 0;
  background: var(--c-bg-subtle);
}
.ind-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(10px, 1.4vw, 16px);
}
.ind-photo-card {
  position: relative; overflow: hidden;
  border-radius: var(--radius-lg);
  aspect-ratio: 4/3;
  display: block;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.4s var(--ease-spring), transform 0.4s var(--ease-spring);
}
.ind-photo-card:hover { box-shadow: 0 20px 56px rgba(0,0,0,0.22); transform: translateY(-4px); }
.ind-photo-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.75s var(--ease-spring);
  will-change: transform;
}
.ind-photo-card:hover .ind-photo-bg { transform: scale(1.07); }
.ind-photo-bg::after {
  content: ''; position: absolute; inset: 0;
  background-image: repeating-linear-gradient(45deg, rgba(255,255,255,0.025) 0px, rgba(255,255,255,0.025) 1px, transparent 1px, transparent 8px);
  pointer-events: none;
}
.ind-photo-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.32) 50%, rgba(0,0,0,0.06) 100%);
  transition: background 0.4s ease;
}
.ind-photo-card:hover .ind-photo-overlay { background: linear-gradient(to top, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.44) 55%, rgba(0,0,0,0.12) 100%); }
.ind-photo-content { position: absolute; bottom: 0; left: 0; right: 0; padding: clamp(16px, 2vw, 22px); }
.ind-photo-title {
  font-family: var(--f-display);
  font-size: clamp(1.0rem, 1.25vw, 1.25rem);
  font-weight: var(--fw-semibold);
  color: #fff; line-height: 1.2;
  margin-bottom: 4px;
}
.ind-photo-learn {
  font-size: 0.6875rem; font-weight: var(--fw-bold);
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--c-pink);
  opacity: 0; transform: translateY(4px);
  display: block;
  transition: opacity 0.28s ease, transform 0.28s ease;
}
.ind-photo-card:hover .ind-photo-learn { opacity: 1; transform: none; }

/* Industry card photo backgrounds */
.ind-bg-1 { background-image: url('https://images.unsplash.com/photo-1554469384-e58fac16e23a?w=1200&auto=format&fit=crop&q=80'); } /* Federal Government */
.ind-bg-2 { background-image: url('https://images.unsplash.com/photo-1519494026892-80bbd2d6fd0d?w=1200&auto=format&fit=crop&q=80'); } /* Healthcare */
.ind-bg-3 { background-image: url('https://images.unsplash.com/photo-1580582932707-520aed937b7b?w=1200&auto=format&fit=crop&q=80'); } /* Education */
.ind-bg-4 { background-image: url('https://images.unsplash.com/photo-1497366216548-37526070297c?w=1200&auto=format&fit=crop&q=80'); } /* Corporate */
.ind-bg-5 { background-image: url('https://images.unsplash.com/photo-1504917595217-d4dc5ebe6122?w=1200&auto=format&fit=crop&q=80'); } /* Industrial */
.ind-bg-6 { background-image: url('https://images.unsplash.com/photo-1441986300917-64674bd600d8?w=1200&auto=format&fit=crop&q=80'); } /* Retail & Shopping */
.ind-bg-7 { background-image: url('https://images.unsplash.com/photo-1545324418-cc1a3fa10c00?w=1200&auto=format&fit=crop&q=80'); } /* Property Mgmt */
.ind-bg-8 { background-image: url('https://images.unsplash.com/photo-1566073771259-6a8506099945?w=1200&auto=format&fit=crop&q=80'); } /* Hospitality */

/* ── GOVERNMENT CONTRACTING PAGE ────────────────────────────────── */
.government {
  padding: var(--section-py) 0;
  background: var(--c-emerald);
  position: relative; overflow: hidden;
}
.government::before {
  content: ''; position: absolute; inset: 0;
  background-image: repeating-linear-gradient(0deg, rgba(255,255,255,0.022) 0px, rgba(255,255,255,0.022) 1px, transparent 1px, transparent 64px);
  pointer-events: none;
}
.gov-top {
  display: grid; grid-template-columns: 1fr auto;
  gap: clamp(40px, 6vw, 80px); align-items: start;
  margin-bottom: clamp(36px, 4vw, 56px);
}
.gov-eyebrow { font-size: 0.6875rem; font-weight: var(--fw-semibold); letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.38); margin-bottom: 18px; }
.gov-h2 {
  font-family: var(--f-display);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: var(--fw-semibold);
  line-height: 1.0; letter-spacing: -0.03em; margin-bottom: 20px;
}
.gov-h2 .l1 { display: block; color: var(--c-white); }
.gov-h2 .l2 { display: block; color: rgba(255,255,255,0.35); }
.gov-lead { font-size: 1rem; color: rgba(255,255,255,0.55); line-height: 1.65; max-width: 460px; }
.gov-cert-list { border: 1px solid rgba(255,255,255,0.10); border-radius: var(--radius-lg); overflow: hidden; background: rgba(255,255,255,0.04); min-width: 264px; }
.gov-cert { display: flex; align-items: center; gap: 14px; padding: 13px 18px; border-bottom: 1px solid rgba(255,255,255,0.07); }
.gov-cert:last-child { border-bottom: none; }
.gc-badge { font-family: var(--f-mono); font-size: 0.6875rem; font-weight: var(--fw-bold); color: var(--c-emerald); background: rgba(255,255,255,0.92); padding: 3px 8px; border-radius: 4px; letter-spacing: 0.08em; flex-shrink: 0; }
.gc-name  { font-size: 0.875rem; color: rgba(255,255,255,0.68); }
.gov-rule { height: 1px; background: rgba(255,255,255,0.08); margin-bottom: clamp(32px, 4vw, 52px); }
.gov-creds {
  display: grid; grid-template-columns: repeat(3, 1fr);
  border: 1px solid rgba(255,255,255,0.08); border-radius: var(--radius-lg); overflow: hidden;
  margin-bottom: clamp(32px, 4vw, 52px);
}
.gov-cred { padding: 22px 26px; background: rgba(255,255,255,0.03); border-right: 1px solid rgba(255,255,255,0.07); display: flex; flex-direction: column; gap: 7px; }
.gov-cred:last-child { border-right: none; }
.gcr-label { font-size: 0.6875rem; font-weight: var(--fw-semibold); letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.32); }
.gcr-value { font-family: var(--f-mono); font-size: 0.9375rem; color: rgba(255,255,255,0.88); letter-spacing: 0.04em; }
.gcr-sub { font-size: 0.8125rem; color: rgba(255,255,255,0.45); }
.gov-tables { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(24px, 3.5vw, 48px); margin-bottom: clamp(40px, 5vw, 64px); }
.gov-table-block { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08); border-radius: var(--radius-lg); padding: clamp(20px, 2.5vw, 32px); }
.gtb-label { font-size: 0.6875rem; font-weight: var(--fw-semibold); letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.32); margin-bottom: 14px; }
.gtb-row { display: grid; grid-template-columns: 70px 1fr; gap: 12px; padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,0.06); align-items: start; }
.gtb-row:last-child { border-bottom: none; }
.gtb-code { font-family: var(--f-mono); font-size: 0.8125rem; color: rgba(255,255,255,0.82); font-weight: var(--fw-semibold); }
.gtb-desc { font-size: 0.875rem; color: rgba(255,255,255,0.50); line-height: 1.4; }
.gov-doc-text { font-size: 0.9375rem; color: rgba(255,255,255,0.50); line-height: 1.65; margin-bottom: 22px; }
.gov-doc-actions { display: flex; flex-direction: column; gap: 10px; }
.gov-dl-btn { display: inline-flex; align-items: center; gap: 9px; padding: 13px 20px; background: var(--c-white); color: var(--c-emerald); font-size: 0.9rem; font-weight: var(--fw-semibold); border-radius: var(--radius-sm); transition: transform 0.2s, box-shadow 0.2s; }
.gov-dl-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,0,0,0.22); }
.gov-view-link { font-size: 0.8125rem; color: rgba(255,255,255,0.35); transition: color 0.2s; }
.gov-view-link:hover { color: rgba(255,255,255,0.68); }
.gov-why { padding: var(--section-py) 0; background: var(--c-bg-subtle); }
.gov-why-head {
  font-family: var(--f-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: var(--fw-semibold);
  color: var(--c-text);
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.gov-why-head em { font-style: italic; font-weight: var(--fw-regular); color: var(--c-text-3); }
.gov-why-sub { font-size: 1rem; color: var(--c-text-3); line-height: 1.65; max-width: 540px; margin-bottom: clamp(40px, 5vw, 56px); }
.gov-why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(12px, 1.8vw, 20px);
}
.gov-why-card {
  padding: clamp(22px, 2.8vw, 32px);
  background: var(--c-white);
  border: 1px solid var(--c-border-soft);
  border-radius: var(--radius-lg);
  transition: transform 0.30s var(--ease-spring), box-shadow 0.30s var(--ease-spring);
}
.gov-why-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.gwc-icon { width: 36px; height: 36px; background: var(--c-emerald-subtle); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; color: var(--c-emerald); margin-bottom: 14px; }
.gwc-title { font-size: 0.9375rem; font-weight: var(--fw-semibold); color: var(--c-text); margin-bottom: 6px; }
.gwc-desc { font-size: 0.875rem; color: var(--c-text-3); line-height: 1.55; }
.gov-cta { padding: var(--section-py) 0; background: var(--c-emerald); text-align: center; }
.gov-cta-h2 { font-family: var(--f-display); font-size: clamp(2rem, 3.5vw, 3rem); font-weight: var(--fw-semibold); color: var(--c-white); margin-bottom: 12px; letter-spacing: -0.02em; }
.gov-cta-sub { font-size: 1rem; color: rgba(255,255,255,0.55); margin-bottom: 32px; }
.gov-cta-btn { display: inline-flex; align-items: center; gap: 8px; padding: 15px 32px; background: var(--c-pink); color: var(--c-white); font-size: 1rem; font-weight: var(--fw-semibold); border-radius: var(--radius-sm); transition: background 0.2s, transform 0.2s; }
.gov-cta-btn:hover { background: var(--c-pink-hover); transform: translateY(-2px); }

/* ── CAPABILITY STATEMENT ────────────────────────────────────────── */
.capability {
  padding: var(--section-py) 0 calc(var(--section-py) * 1.15);
  background: var(--c-bg-alt);
}
.cap-head { text-align: center; max-width: 560px; margin: 0 auto clamp(40px, 5vw, 60px); }
.cap-eyebrow { margin-bottom: 12px; }
.cap-h2 { font-family: var(--f-display); font-size: clamp(2rem, 3.2vw, 3rem); font-weight: var(--fw-semibold); letter-spacing: -0.025em; color: var(--c-text); margin-bottom: 14px; }
.cap-desc { font-size: 0.9375rem; color: var(--c-text-3); line-height: 1.65; }
.cap-paper-wrap { max-width: 560px; margin: 0 auto clamp(32px, 4vw, 48px); position: relative; }
.cap-paper-wrap::after { content: ''; position: absolute; bottom: -24px; left: 8%; right: 8%; height: 40px; background: rgba(0,0,0,0.14); border-radius: 50%; filter: blur(22px); z-index: 0; pointer-events: none; transition: opacity 0.35s ease, transform 0.35s ease; }
.cap-paper-wrap:hover::after { opacity: 0.55; transform: scaleX(0.82) translateY(6px); }
.cap-paper { position: relative; z-index: 1; border-radius: 8px; background: var(--c-white); box-shadow: 0 1px 3px rgba(0,0,0,0.04), 0 6px 18px rgba(0,0,0,0.06), 0 20px 50px rgba(0,0,0,0.09), 0 50px 100px rgba(0,0,0,0.07); transition: transform 0.45s var(--ease-spring), box-shadow 0.45s var(--ease-spring); }
.cap-paper-wrap:hover .cap-paper { transform: translateY(-10px) scale(1.003); }
.cap-paper-inner { border-radius: 8px; overflow: hidden; border: 1px solid rgba(0,0,0,0.06); }
.cap-paper-link { display: block; position: relative; }
.cap-paper-img { width: 100%; display: block; }
.cap-paper-hover { position: absolute; inset: 0; background: rgba(14,80,50,0.52); backdrop-filter: blur(4px); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px; color: var(--c-white); font-size: 0.9375rem; font-weight: var(--fw-medium); opacity: 0; transition: opacity 0.28s ease; }
.cap-paper-link:hover .cap-paper-hover { opacity: 1; }
.cap-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-bottom: 18px; }
.cap-btn { display: inline-flex; align-items: center; gap: 8px; padding: 12px 22px; font-size: 0.9375rem; font-weight: var(--fw-medium); border-radius: var(--radius-sm); transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.2s; }
.cap-btn-ghost { border: 1.5px solid var(--c-border); color: var(--c-text-2); }
.cap-btn-ghost:hover { border-color: var(--c-text-3); background: var(--c-white); }
.cap-btn-primary { background: var(--c-pink); color: var(--c-white); border: 1.5px solid var(--c-pink); }
.cap-btn-primary:hover { background: var(--c-pink-hover); border-color: var(--c-pink-hover); transform: translateY(-1px); }
.cap-note { text-align: center; font-size: 0.875rem; color: var(--c-text-4); margin-bottom: 0; }
.cap-note a { color: var(--c-text-3); border-bottom: 1px solid var(--c-border); transition: color 0.2s; }
.cap-note a:hover { color: var(--c-text); }
.cap-support-text { text-align: center; max-width: 480px; margin: 28px auto 0; font-size: 0.9375rem; color: var(--c-text-3); line-height: 1.65; font-style: italic; }

/* ── ABOUT ───────────────────────────────────────────────────────── */
.about {
  padding: var(--section-py) 0;
  background: var(--c-white);
}
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(48px, 7vw, 96px); align-items: start; }
.about-eyebrow { margin-bottom: 16px; }
.about-h2 { font-family: var(--f-display); font-size: clamp(2.25rem, 3.5vw, 3.25rem); font-weight: var(--fw-semibold); line-height: 1.08; letter-spacing: -0.025em; color: var(--c-text); margin-bottom: 20px; }
.about-h2 em { font-style: italic; font-weight: var(--fw-regular); color: var(--c-text-3); }
.about-body { font-size: 1.0625rem; color: var(--c-text-3); line-height: 1.7; margin-bottom: 32px; }
.about-cta { display: inline-flex; align-items: center; gap: 8px; font-size: 0.9375rem; font-weight: var(--fw-semibold); color: var(--c-emerald); border-bottom: 1.5px solid var(--c-emerald-border); padding-bottom: 2px; transition: border-color 0.2s, opacity 0.2s; }
.about-cta:hover { opacity: 0.75; border-color: var(--c-emerald); }

/* Feature cards (right column) */
.about-feature-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.about-feat {
  padding: 20px 22px;
  border: 1px solid var(--c-border-soft);
  border-radius: var(--radius-lg);
  background: var(--c-bg-subtle);
  transition: transform 0.30s var(--ease-spring), box-shadow 0.30s var(--ease-spring), border-color 0.2s;
}
.about-feat:hover { transform: translateY(-3px); box-shadow: var(--shadow-sm); border-color: var(--c-emerald-border); }
.af-icon { width: 34px; height: 34px; border-radius: var(--radius-sm); background: var(--c-emerald-subtle); display: flex; align-items: center; justify-content: center; color: var(--c-emerald); margin-bottom: 12px; }
.af-title { font-size: 0.9375rem; font-weight: var(--fw-semibold); color: var(--c-text); margin-bottom: 4px; line-height: 1.3; }
.af-desc { font-size: 0.8125rem; color: var(--c-text-3); line-height: 1.5; }

/* ── WHY PINK PETALS ─────────────────────────────────────────────── */
.why { padding: var(--section-py) 0; background: var(--c-bg-subtle); }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(12px, 1.8vw, 22px); }
.why-card { padding: clamp(24px, 3vw, 36px); background: var(--c-white); border: 1px solid var(--c-border-soft); border-radius: var(--radius-lg); transition: transform 0.30s var(--ease-spring), box-shadow 0.30s var(--ease-spring); }
.why-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.why-n { font-family: var(--f-display); font-size: 2.75rem; font-weight: var(--fw-semibold); line-height: 1; color: var(--c-border); margin-bottom: 16px; }
.why-title { font-size: 1.0625rem; font-weight: var(--fw-semibold); color: var(--c-text); margin-bottom: 10px; }
.why-body { font-size: 0.9375rem; color: var(--c-text-3); line-height: 1.6; }

/* ── SERVICE AREA ────────────────────────────────────────────────── */
.area { padding: var(--section-py) 0; background: var(--c-emerald-subtle); }
.area-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(48px, 7vw, 96px); align-items: center; }
.area-eyebrow { margin-bottom: 16px; }
.area-h2 { font-family: var(--f-display); font-size: clamp(2.25rem, 3.5vw, 3.25rem); font-weight: var(--fw-semibold); line-height: 1.08; letter-spacing: -0.025em; color: var(--c-text); margin-bottom: 16px; }
.area-h2 em { font-style: italic; font-weight: var(--fw-regular); color: var(--c-text-3); }
.area-body { font-size: 1rem; color: var(--c-text-3); line-height: 1.65; margin-bottom: 28px; }
.city-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4px 24px; }
.city-item { display: flex; align-items: center; gap: 8px; font-size: 0.9375rem; color: var(--c-text-2); padding: 7px 0; border-bottom: 1px solid rgba(14,80,50,0.07); }
.city-item::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--c-pink); flex-shrink: 0; }
.area-visual { display: flex; flex-direction: column; align-items: center; justify-content: center; padding: clamp(32px, 5vw, 56px); }
.area-pin { position: relative; display: flex; align-items: center; justify-content: center; width: 260px; height: 260px; }
.area-ring { position: absolute; border-radius: 50%; border: 1px solid rgba(14,80,50,0.14); animation: ring-pulse 3s ease-in-out infinite; }
.area-ring--lg { width: 100%; height: 100%; animation-delay: 0s; }
.area-ring--md { width: 68%; height: 68%; animation-delay: 0.7s; }
.area-ring--sm { width: 38%; height: 38%; animation-delay: 1.4s; }
@keyframes ring-pulse { 0%,100% { opacity:0.35; transform:scale(1); } 50% { opacity:0.75; transform:scale(1.035); } }
.area-center { position: relative; z-index: 1; width: 56px; height: 56px; background: var(--c-emerald); border-radius: 50%; display: flex; flex-direction: column; align-items: center; justify-content: center; color: var(--c-white); box-shadow: 0 4px 20px rgba(14,80,50,0.30); }
.area-center-label { font-size: 0.5rem; font-weight: var(--fw-semibold); margin-top: 2px; text-align: center; line-height: 1.1; letter-spacing: 0.02em; }
.area-caption { font-size: 0.8125rem; color: var(--c-text-3); margin-top: 20px; font-style: italic; }
@media (prefers-reduced-motion: reduce) { .area-ring { animation: none; opacity: 0.35; } }

/* ── PAYMENT MARQUEE ─────────────────────────────────────────────── */
.pay-section { padding: clamp(28px, 4vw, 44px) 0; background: var(--c-white); border-top: 1px solid var(--c-border-soft); border-bottom: 1px solid var(--c-border-soft); }
.pay-label-row { display: flex; align-items: center; gap: 18px; max-width: var(--max-w); margin: 0 auto clamp(12px, 2vw, 20px); padding: 0 clamp(20px, 4vw, 48px); }
.pay-label-row::before, .pay-label-row::after { content: ''; flex: 1; height: 1px; background: rgba(0,0,0,0.07); }
.pay-label { font-size: 0.6875rem; font-weight: var(--fw-semibold); letter-spacing: 0.18em; text-transform: uppercase; color: var(--c-text-4); white-space: nowrap; }
.pay-strip { position: relative; overflow: hidden; height: 46px; display: flex; align-items: center; }
.pay-strip::before, .pay-strip::after { content: ''; position: absolute; inset: 0 auto 0 0; width: 80px; z-index: 2; pointer-events: none; }
.pay-strip::before { background: linear-gradient(to right, var(--c-white), transparent); }
.pay-strip::after  { left: auto; right: 0; background: linear-gradient(to left, var(--c-white), transparent); }
.pay-track { display: inline-flex; align-items: center; white-space: nowrap; animation: pay-scroll 50s linear infinite; will-change: transform; }
.pay-strip:hover .pay-track { animation-play-state: paused; }
@keyframes pay-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.pm-item { display: inline-flex; align-items: center; gap: 8px; padding: 0 clamp(14px, 2vw, 24px); font-size: 0.8125rem; font-weight: var(--fw-medium); letter-spacing: 0.04em; color: rgba(0,0,0,0.42); }
.pm-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--c-pink); opacity: 0.6; flex-shrink: 0; }
.pm-sep { display: inline-block; width: 1px; height: 12px; background: rgba(0,0,0,0.09); }
@media (prefers-reduced-motion: reduce) { .pay-track { animation: none; } }

/* ── CONTACT ─────────────────────────────────────────────────────── */
.contact { padding: var(--section-py) 0; background: var(--c-bg-subtle); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.25fr; gap: clamp(40px, 6vw, 80px); align-items: start; }
.contact-eyebrow { margin-bottom: 14px; }
.contact-h2 { font-family: var(--f-display); font-size: clamp(2.25rem, 3.5vw, 3.25rem); font-weight: var(--fw-semibold); line-height: 1.08; letter-spacing: -0.025em; color: var(--c-text); margin-bottom: 16px; }
.contact-h2 em { font-style: italic; font-weight: var(--fw-regular); color: var(--c-text-3); }
.contact-body { font-size: 1rem; color: var(--c-text-3); line-height: 1.65; margin-bottom: 32px; }
.contact-details { display: flex; flex-direction: column; gap: 18px; margin-bottom: 28px; }
.cd { display: flex; flex-direction: column; gap: 3px; }
.cd-lbl { font-size: 0.6875rem; font-weight: var(--fw-semibold); letter-spacing: 0.12em; text-transform: uppercase; color: var(--c-text-4); }
.cd-val { font-size: 0.9375rem; color: var(--c-text-2); transition: color 0.2s; }
a.cd-val:hover { color: var(--c-emerald); }
.cert-row { display: flex; gap: 8px; flex-wrap: wrap; }
.cert-tag { font-size: 0.6875rem; font-weight: var(--fw-semibold); letter-spacing: 0.07em; padding: 5px 12px; border-radius: var(--radius-full); border: 1px solid var(--c-emerald-border); color: var(--c-emerald); }
.contact-form-box { background: var(--c-white); border: 1px solid var(--c-border-soft); border-radius: var(--radius-xl); padding: clamp(28px, 4vw, 44px); box-shadow: var(--shadow-sm); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.form-field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.form-row .form-field { margin-bottom: 0; }
.form-label { font-size: 0.8125rem; font-weight: var(--fw-medium); color: var(--c-text-2); }
.form-req { color: var(--c-pink); }
.form-input { width: 100%; padding: 11px 14px; font-family: var(--f-sans); font-size: 0.9375rem; color: var(--c-text); background: var(--c-bg-subtle); border: 1.5px solid var(--c-border); border-radius: var(--radius-md); outline: none; transition: border-color 0.2s, box-shadow 0.2s, background 0.2s; -webkit-appearance: none; }
.form-input::placeholder { color: var(--c-text-4); }
.form-input:focus { border-color: var(--c-emerald); box-shadow: 0 0 0 3px rgba(14,80,50,0.09); background: var(--c-white); }
textarea.form-input { resize: vertical; min-height: 96px; }
.form-submit { width: 100%; display: flex; align-items: center; justify-content: center; gap: 9px; padding: 14px 24px; background: var(--c-emerald); color: var(--c-white); font-family: var(--f-sans); font-size: 1rem; font-weight: var(--fw-semibold); border-radius: var(--radius-md); border: none; cursor: pointer; transition: background 0.2s, transform 0.2s, box-shadow 0.2s; margin-top: 4px; }
.form-submit:hover { background: var(--c-emerald-hover); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(14,80,50,0.18); }
.form-submit:disabled { opacity: 0.65; cursor: not-allowed; transform: none; }

/* ── FOOTER ──────────────────────────────────────────────────────── */
.footer { background: var(--c-emerald); overflow: hidden; }
.ft-cta { text-align: center; padding: clamp(64px, 10vw, 112px) 0; border-bottom: 1px solid rgba(255,255,255,0.08); }
.ft-cta-h2 { font-family: var(--f-display); font-size: clamp(2.5rem, 5.5vw, 4.5rem); font-weight: var(--fw-semibold); line-height: 1; letter-spacing: -0.03em; margin-bottom: 32px; }
.ft-cta-h2 .l1 { display: block; color: var(--c-white); }
.ft-cta-h2 .l2 { display: block; font-style: italic; font-weight: var(--fw-light); color: rgba(255,255,255,0.40); }
.ft-cta-btn { display: inline-flex; align-items: center; gap: 8px; padding: 15px 32px; background: var(--c-pink); color: var(--c-white); font-size: 1rem; font-weight: var(--fw-semibold); border-radius: var(--radius-sm); transition: background 0.2s, transform 0.2s, box-shadow 0.2s; }
.ft-cta-btn:hover { background: var(--c-pink-hover); transform: translateY(-2px); box-shadow: 0 10px 32px rgba(232,56,122,0.28); }
.ft-body { padding: clamp(48px, 7vw, 80px) 0; border-bottom: 1px solid rgba(255,255,255,0.08); }
.ft-grid { display: grid; grid-template-columns: 1.8fr 1fr 1.1fr 1.2fr; gap: clamp(28px, 4vw, 52px); }
.ft-logo { margin-bottom: 24px; }
.ft-logo-img { display: block; height: 110px; width: auto; object-fit: contain; }
.ft-desc { font-size: 0.875rem; color: rgba(255,255,255,0.46); line-height: 1.65; margin-bottom: 20px; }
.ft-certs { display: flex; gap: 7px; flex-wrap: wrap; margin-bottom: 20px; }
.ft-cert { font-size: 0.6875rem; font-weight: var(--fw-semibold); letter-spacing: 0.07em; padding: 5px 12px; border: 1px solid rgba(255,255,255,0.24); border-radius: var(--radius-full); color: rgba(255,255,255,0.72); }
.ft-social { display: flex; gap: 8px; }
.ft-soc { display: flex; align-items: center; justify-content: center; width: 34px; height: 34px; border: 1px solid rgba(255,255,255,0.13); border-radius: var(--radius-sm); color: rgba(255,255,255,0.36); transition: border-color 0.2s, color 0.2s, background 0.2s; }
.ft-soc:hover { border-color: rgba(255,255,255,0.40); color: var(--c-white); background: rgba(255,255,255,0.07); }
.ft-col-head { font-size: 0.71875rem; font-weight: var(--fw-semibold); letter-spacing: 0.13em; text-transform: uppercase; color: rgba(255,255,255,0.30); margin-bottom: 16px; }
.ft-links { display: flex; flex-direction: column; gap: 2px; }
.ft-links a { font-size: 0.9375rem; color: rgba(255,255,255,0.56); padding: 5px 0; transition: color 0.2s; }
.ft-links a:hover { color: var(--c-white); }
.ft-gov-ids { margin-top: 16px; padding: 12px 16px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.10); border-radius: var(--radius-md); display: flex; flex-direction: column; gap: 6px; }
.ft-id-row { display: flex; justify-content: space-between; gap: 10px; }
.ft-id-label { font-family: var(--f-mono); font-size: 0.6875rem; color: rgba(255,255,255,0.45); letter-spacing: 0.08em; text-transform: uppercase; }
.ft-id-val   { font-family: var(--f-mono); font-size: 0.875rem; color: rgba(255,255,255,0.82); letter-spacing: 0.06em; font-weight: var(--fw-medium); }
.ft-contact-list { display: flex; flex-direction: column; }
.ft-contact-item { display: flex; align-items: flex-start; gap: 10px; font-size: 0.875rem; color: rgba(255,255,255,0.52); padding: 7px 0; border-bottom: 1px solid rgba(255,255,255,0.05); line-height: 1.45; transition: color 0.2s; }
.ft-contact-item:last-child { border-bottom: none; }
a.ft-contact-item:hover { color: var(--c-white); }
.ft-contact-item svg { flex-shrink: 0; margin-top: 2px; }
.ft-bar { padding: 24px 0; border-top: 1px solid rgba(255,255,255,0.08); }
.ft-bar-inner { max-width: var(--max-w); margin: 0 auto; padding: 0 clamp(20px, 4vw, 48px); display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.ft-bar-copy    { font-size: 0.8125rem; color: rgba(255,255,255,0.32); }
.ft-bar-sectors { font-size: 0.75rem;   color: rgba(255,255,255,0.20); letter-spacing: 0.04em; }

/* ── RESPONSIVE ──────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .svc-grid  { grid-template-columns: repeat(2, 1fr); }
  .ind-grid  { grid-template-columns: repeat(2, 1fr); }
  .ft-grid    { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  .nav-links { display: none; }
  .nav-cta   { display: none; }
  .nav-burger { display: flex; }
  .nav-logo-img { height: 80px; }

  /* ── MOBILE HERO: photo on top, text below ── */
  .hero {
    align-items: stretch;
    padding-top: var(--nav-h);
    min-height: 100svh;
  }

  /* Switch from grid to flex column, remove all padding */
  .hero-layout {
    display: flex;
    flex-direction: column;
    padding: 0;
    max-width: 100%;
    gap: 0;
    align-items: stretch;
    width: 100%;
  }

  /* Photo column: show, full-bleed, comes FIRST via order */
  .hero-photo-col {
    display: flex !important;
    order: 1;
    width: 100%;
    height: clamp(340px, 62svh, 520px);
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }

  .hero-photo-wrap {
    border-radius: 0 !important;
    box-shadow: none !important;
    height: 100% !important;
    min-height: unset !important;
    max-height: unset !important;
    width: 100%;
  }

  /* Top-biased — full hair visible, breathing room above head */
  .hero-photo {
    object-position: 50% 5%;
    /* Override desktop left-edge mask with bottom-only fade */
    -webkit-mask-image: linear-gradient(to bottom, black 74%, transparent 100%);
    mask-image:         linear-gradient(to bottom, black 74%, transparent 100%);
  }

  /* Mask handles the bottom dissolve — overlay not needed */
  .hero-photo-fade { display: none !important; }

  /* Text section: comes SECOND, gets padding */
  .hero-text {
    order: 2;
    padding: 32px clamp(20px, 6vw, 32px) 52px;
  }

  .hero-eyebrow { margin-bottom: 16px; }

  .hero-sub {
    max-width: 100%;
    margin-bottom: 28px;
  }

  .hero-actions {
    flex-direction: column;
    gap: 10px;
    margin-bottom: 0;
  }

  .btn-primary,
  .btn-ghost {
    width: 100%;
    justify-content: center;
    padding: 17px 24px;
    font-size: 0.8125rem;
  }

  .about-grid { grid-template-columns: 1fr; }
  .area-grid  { grid-template-columns: 1fr; }
  .area-visual { display: none; }
  .why-grid   { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .ft-grid    { grid-template-columns: 1fr 1fr; }
  .ft-grid > .ft-brand { grid-column: span 2; }
}

@media (max-width: 640px) {
  .svc-grid  { grid-template-columns: 1fr 1fr; }
  .ind-grid  { grid-template-columns: 1fr 1fr; }
  .why-grid  { grid-template-columns: 1fr; }
  .form-row  { grid-template-columns: 1fr; }
  .about-feature-grid { grid-template-columns: 1fr; }
  .ft-grid   { grid-template-columns: 1fr; }
  .ft-grid > .ft-brand { grid-column: span 1; }
  .ft-bar-inner { flex-direction: column; text-align: center; gap: 8px; }
}

@media (max-width: 420px) {
  .svc-grid { grid-template-columns: 1fr; }
  .ind-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════════════════
   LUXURY HOMEPAGE — simplified sections
   ═══════════════════════════════════════════════════════════════════ */

/* ── Section footer link (below service/industry grids) ─────────── */
.section-foot {
  text-align: center;
  margin-top: clamp(36px, 5vw, 56px);
}
.section-foot-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.875rem; font-weight: var(--fw-semibold);
  color: var(--c-emerald);
  border-bottom: 1.5px solid var(--c-emerald-border);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}
.section-foot-link:hover { color: var(--c-emerald-hover); border-color: var(--c-emerald); }

/* ── 3-column grid modifiers ─────────────────────────────────────── */
.svc-grid--3 { grid-template-columns: repeat(3, 1fr); }
.svc-grid--4 { grid-template-columns: repeat(4, 1fr); }
.svc-grid--3 .svc-photo-content { padding: clamp(14px, 1.8vw, 20px); }
.ind-grid--3 {
  grid-template-columns: repeat(3, 1fr);
  /* wider cards look better at 4/3 in landscape */
}
.ind-grid--3 .ind-photo-card { aspect-ratio: 4/3; }

/* ── TRUST CARDS (Why Choose — 4-card row) ─────────────────────── */
.trust-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(14px, 2vw, 24px);
}
.tc {
  padding: clamp(26px, 3vw, 38px) clamp(20px, 2.5vw, 28px);
  background: var(--c-white);
  border: 1px solid var(--c-border-soft);
  border-radius: var(--radius-lg);
  display: flex; flex-direction: column;
  transition: transform 0.30s var(--ease-spring), box-shadow 0.30s var(--ease-spring), border-color 0.2s;
}
.tc:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--c-emerald-border); }
.tc-icon {
  width: 44px; height: 44px;
  border-radius: var(--radius-md);
  background: var(--c-emerald-subtle);
  display: flex; align-items: center; justify-content: center;
  color: var(--c-emerald);
  margin-bottom: 18px;
  flex-shrink: 0;
}
.tc-title {
  font-size: 1rem; font-weight: var(--fw-semibold);
  color: var(--c-text);
  margin-bottom: 10px;
  line-height: 1.3;
}
.tc-body {
  font-size: 0.9375rem; color: var(--c-text-3);
  line-height: 1.6;
}


/* ── FOOTER CTA subtitle ─────────────────────────────────────────── */
.ft-cta-h2 { margin-bottom: 14px; }
.ft-cta-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.40);
  margin-bottom: 32px;
  line-height: 1.6;
}

/* ── Responsive: new homepage sections ─────────────────────────── */
@media (max-width: 1024px) {
  .svc-grid--3   { grid-template-columns: repeat(2, 1fr); }
  .svc-grid--4   { grid-template-columns: repeat(2, 1fr); }
  .ind-grid--3   { grid-template-columns: repeat(2, 1fr); }
  .trust-cards   { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 860px) {
  .svc-grid--4      { grid-template-columns: 1fr 1fr; }
  .ind-grid--3      { grid-template-columns: 1fr 1fr; }
  .trust-cards      { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .svc-grid--3      { grid-template-columns: 1fr; }
  .svc-grid--4      { grid-template-columns: 1fr; }
  .ind-grid--3      { grid-template-columns: 1fr; }
  .trust-cards      { grid-template-columns: 1fr; }
}

/* ════════════════════════════════════════════════════════════════════
   GOVERNMENT CONTRACTING PAGE
   ════════════════════════════════════════════════════════════════════ */

/* ── NAV ACTIVE STATE ─────────────────────────────────────────────── */
.nav-link[aria-current="page"] {
  color: var(--c-emerald);
  background: var(--c-emerald-subtle);
}
.drawer-link[aria-current="page"] {
  color: var(--c-emerald);
  background: var(--c-emerald-subtle);
}

/* ── HERO ─────────────────────────────────────────────────────────── */
.government {
  background: var(--c-emerald);
  padding: calc(var(--nav-h) + clamp(64px, 9vw, 112px)) 0 clamp(64px, 9vw, 112px);
  position: relative;
  overflow: hidden;
}
.government::before {
  content: '';
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(
    135deg,
    rgba(255,255,255,0.022) 0px,
    rgba(255,255,255,0.022) 1px,
    transparent 1px,
    transparent 14px
  );
  pointer-events: none;
}
.government::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 50% at 50% 0%, rgba(255,255,255,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.gov-top {
  position: relative; z-index: 1;
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}
.gov-eyebrow {
  display: block;
  font-size: 0.6875rem;
  font-weight: var(--fw-semibold);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.42);
  margin-bottom: 28px;
}
.gov-h2 {
  font-family: var(--f-display);
  font-size: clamp(2.75rem, 6vw, 5.25rem);
  font-weight: var(--fw-semibold);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--c-white);
  margin-bottom: 32px;
}
.gov-h2 em {
  font-style: italic;
  font-weight: var(--fw-light);
  color: rgba(255,255,255,0.55);
}
.gov-lead {
  font-size: clamp(0.9375rem, 1.3vw, 1.0625rem);
  color: rgba(255,255,255,0.52);
  line-height: 1.78;
  max-width: 620px;
  margin: 0 auto 48px;
}
.gov-hero-badges {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}
.gov-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 18px;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: var(--radius-full);
  font-size: 0.6875rem;
  font-weight: var(--fw-semibold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.78);
  background: rgba(255,255,255,0.06);
}
.gov-hero-badge svg { opacity: 0.55; flex-shrink: 0; }

/* ── REGISTRATION INFORMATION ─────────────────────────────────────── */
.gov-reg-section {
  padding: clamp(72px, 9vw, 112px) 0;
  background: var(--c-white);
}
.gov-reg-intro {
  text-align: center;
  max-width: 560px;
  margin: 0 auto clamp(40px, 5vw, 60px);
}
.gov-reg-eyebrow { margin-bottom: 14px; }
.gov-reg-h2 {
  font-family: var(--f-display);
  font-size: clamp(1.875rem, 3.5vw, 2.75rem);
  font-weight: var(--fw-semibold);
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--c-text);
  margin-bottom: 14px;
}
.gov-reg-sub {
  font-size: 0.9375rem;
  color: var(--c-text-3);
  line-height: 1.6;
}
.gov-reg-card {
  max-width: 680px;
  margin: 0 auto;
  border: 1px solid var(--c-border-soft);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.gov-reg-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 32px;
  border-bottom: 1px solid var(--c-border-soft);
  background: var(--c-white);
  transition: background 0.18s ease;
}
.gov-reg-row:hover { background: var(--c-bg-subtle); }
.gov-reg-row--last { border-bottom: none; }
.gov-reg-label {
  font-size: 0.8125rem;
  font-weight: var(--fw-medium);
  color: var(--c-text-3);
  white-space: nowrap;
}
.gov-reg-value {
  font-size: 0.9375rem;
  font-weight: var(--fw-semibold);
  color: var(--c-text);
  text-align: right;
}
.gov-reg-mono {
  font-family: var(--f-mono);
  font-size: 1rem;
  color: var(--c-emerald);
  letter-spacing: 0.06em;
}

/* ── NAICS / PSC CODES ────────────────────────────────────────────── */
.gov-codes-section {
  padding: clamp(72px, 9vw, 112px) 0;
  background: var(--c-bg-alt);
}
.gov-codes-head {
  text-align: center;
  max-width: 560px;
  margin: 0 auto clamp(40px, 5vw, 60px);
}
.gov-codes-eyebrow { margin-bottom: 14px; }
.gov-codes-h2 {
  font-family: var(--f-display);
  font-size: clamp(1.875rem, 3.5vw, 2.75rem);
  font-weight: var(--fw-semibold);
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--c-text);
  margin-bottom: 14px;
}
.gov-codes-sub {
  font-size: 0.9375rem;
  color: var(--c-text-3);
  line-height: 1.6;
}
.gov-codes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(16px, 3vw, 32px);
  align-items: start;
}
.gov-code-block {
  background: var(--c-white);
  border: 1px solid var(--c-border-soft);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.gov-code-label {
  display: block;
  font-size: 0.625rem;
  font-weight: var(--fw-bold);
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--c-pink);
  padding: 18px 28px 16px;
  border-bottom: 1px solid var(--c-border-soft);
}
.gov-code-row {
  display: flex;
  align-items: baseline;
  gap: 0;
  padding: 14px 28px;
  border-bottom: 1px solid var(--c-border-soft);
  transition: background 0.16s ease;
}
.gov-code-row:hover { background: var(--c-bg-subtle); }
.gov-code-row--last { border-bottom: none; }
.gov-code-num {
  font-family: var(--f-mono);
  font-size: 0.8125rem;
  font-weight: var(--fw-semibold);
  color: var(--c-emerald);
  white-space: nowrap;
  min-width: 58px;
  flex-shrink: 0;
}
.gov-code-sep {
  font-size: 0.875rem;
  color: var(--c-border);
  margin: 0 12px;
  flex-shrink: 0;
}
.gov-code-desc {
  font-size: 0.875rem;
  color: var(--c-text-2);
  line-height: 1.45;
  flex: 1;
  min-width: 0;
}
.gtb-primary {
  display: inline-block;
  font-size: 0.5rem;
  font-weight: var(--fw-bold);
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--c-pink);
  background: rgba(232,56,122,0.08);
  border: 1px solid rgba(232,56,122,0.18);
  border-radius: var(--radius-full);
  padding: 2px 7px;
  margin-left: 7px;
  vertical-align: middle;
  line-height: 1.8;
}

/* ── CAPABILITY STATEMENT ─────────────────────────────────────────── */
.gov-cap-section {
  padding: clamp(72px, 9vw, 112px) 0;
  background: var(--c-white);
  border-top: 1px solid var(--c-border-soft);
}
.gov-cap-card {
  max-width: 880px;
  margin: 0 auto;
  display: flex;
  gap: clamp(32px, 5vw, 64px);
  align-items: flex-start;
  background: var(--c-white);
  border: 1px solid var(--c-border-soft);
  border-radius: var(--radius-xl);
  padding: clamp(28px, 4vw, 48px);
}
.gov-cap-thumb {
  flex-shrink: 0;
  width: 160px;
  height: 212px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--c-border-soft);
  position: relative;
  background: var(--c-bg-alt);
}
.gov-cap-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}
.gov-cap-thumb-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 7px 10px;
  background: rgba(14,80,50,0.88);
  font-size: 0.625rem;
  font-weight: var(--fw-bold);
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.90);
}
.gov-cap-thumb--fallback {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--c-bg-alt);
}
.gov-cap-thumb--fallback::before {
  content: 'PDF';
  font-size: 0.6875rem;
  font-weight: var(--fw-bold);
  letter-spacing: 0.12em;
  color: var(--c-text-4);
}
.gov-cap-info {
  flex: 1;
  min-width: 0;
}
.gov-cap-eyebrow { margin-bottom: 12px; }
.gov-cap-h2 {
  font-family: var(--f-display);
  font-size: clamp(1.625rem, 3vw, 2.375rem);
  font-weight: var(--fw-semibold);
  letter-spacing: -0.02em;
  line-height: 1.12;
  color: var(--c-text);
  margin-bottom: 14px;
}
.gov-cap-desc {
  font-size: 0.9375rem;
  color: var(--c-text-3);
  line-height: 1.65;
  margin-bottom: 28px;
}
.gov-cap-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.gov-cap-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 20px;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-weight: var(--fw-semibold);
  cursor: pointer;
  transition: background 0.18s, color 0.18s, border-color 0.18s, transform 0.18s;
  white-space: nowrap;
  text-decoration: none;
}
.gov-cap-btn:active { transform: scale(0.98); }
.gov-cap-btn--primary {
  background: var(--c-emerald);
  color: #fff;
  border: 1.5px solid var(--c-emerald);
}
.gov-cap-btn--primary:hover { background: var(--c-emerald-hover); border-color: var(--c-emerald-hover); }
.gov-cap-btn--ghost {
  background: transparent;
  color: var(--c-text-2);
  border: 1.5px solid var(--c-border);
}
.gov-cap-btn--ghost:hover { border-color: var(--c-emerald); color: var(--c-emerald); }

/* ── QUALIFICATIONS ───────────────────────────────────────────────── */
.gov-qual-section {
  padding: clamp(72px, 9vw, 112px) 0;
  background: var(--c-bg-subtle);
}
.gov-qual-head {
  text-align: center;
  max-width: 520px;
  margin: 0 auto clamp(40px, 5vw, 60px);
}
.gov-qual-eyebrow { margin-bottom: 14px; }
.gov-qual-h2 {
  font-family: var(--f-display);
  font-size: clamp(1.875rem, 3.5vw, 2.75rem);
  font-weight: var(--fw-semibold);
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--c-text);
}
.gov-qual-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  max-width: 820px;
  margin: 0 auto;
  border: 1px solid var(--c-border-soft);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--c-white);
}
.gov-qual-item {
  display: flex;
  gap: 18px;
  padding: clamp(20px, 2.5vw, 28px) clamp(22px, 3vw, 32px);
  border-bottom: 1px solid var(--c-border-soft);
  border-right: 1px solid var(--c-border-soft);
  align-items: flex-start;
  transition: background 0.18s ease;
}
.gov-qual-item:hover { background: var(--c-bg-subtle); }
.gov-qual-item:nth-child(even) { border-right: none; }
.gov-qual-item:nth-last-child(-n+2) { border-bottom: none; }
.gov-qual-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--c-emerald-subtle);
  border-radius: 50%;
  color: var(--c-emerald);
  margin-top: 2px;
}
.gov-qual-body { flex: 1; min-width: 0; }
.gov-qual-title {
  display: block;
  font-size: 0.9375rem;
  font-weight: var(--fw-semibold);
  color: var(--c-text);
  margin-bottom: 5px;
  line-height: 1.3;
}
.gov-qual-desc {
  font-size: 0.875rem;
  color: var(--c-text-3);
  line-height: 1.58;
  margin: 0;
}

/* ── CTA SECTION ──────────────────────────────────────────────────── */
.gov-cta-section {
  padding: clamp(80px, 10vw, 120px) 0;
  background: var(--c-white);
  text-align: center;
  border-top: 1px solid var(--c-border-soft);
}
.gov-cta-inner { max-width: 540px; margin: 0 auto; }
.gov-cta-eyebrow { margin-bottom: 18px; }
.gov-cta-h2 {
  font-family: var(--f-display);
  font-size: clamp(2.125rem, 4vw, 3.25rem);
  font-weight: var(--fw-semibold);
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--c-text);
  margin-bottom: 16px;
}
.gov-cta-sub {
  font-size: 1rem;
  color: var(--c-text-3);
  margin-bottom: 36px;
  line-height: 1.65;
}

/* ── RESPONSIVE ───────────────────────────────────────────────────── */
@media (max-width: 860px) {
  .gov-codes-grid   { grid-template-columns: 1fr; }
  .gov-cap-card     { flex-direction: column; }
  .gov-cap-thumb    { width: 100%; height: 200px; }
  .gov-qual-list    { grid-template-columns: 1fr; }
  .gov-qual-item    { border-right: none; }
  .gov-qual-item:nth-last-child(-n+2) { border-bottom: 1px solid var(--c-border-soft); }
  .gov-qual-item:last-child { border-bottom: none; }
}
@media (max-width: 640px) {
  .gov-reg-row      { flex-direction: column; align-items: flex-start; gap: 4px; }
  .gov-reg-value    { text-align: left; }
  .gov-hero-badges  { gap: 8px; }
  .gov-hero-badge   { font-size: 0.625rem; padding: 7px 14px; }
  .gov-cap-actions  { flex-direction: column; }
  .gov-cap-btn      { justify-content: center; }
}
