/* ================================================
   BHOOMI GLOBAL — Luxury Industrial Redesign
   Aesthetic: Dark editorial, brass/gold accents,
   Playfair serif headlines, cinematic layout
   ================================================ */

:root {
  /* Core palette */
  --ink:       #0e0e0c;
  --ink-2:     #1c1c18;
  --ink-3:     #2a2a24;
  --paper:     #f5f0e8;
  --paper-2:   #ede7d9;
  --paper-3:   #e3dccf;

  /* Accent — warm brass / gold */
  --gold:      #c9a84c;
  --gold-lt:   #e0c06a;
  --gold-dk:   #a07830;
  --gold-muted:#c9a84c33;

  /* Text tones */
  --text-dark:  #0e0e0c;
  --text-mid:   #4a473e;
  --text-light: #7a7568;
  --text-inv:   #f5f0e8;
  --text-inv-2: #bdb8ac;

  /* UI */
  --line:      rgba(14,14,12,.10);
  --line-inv:  rgba(245,240,232,.12);
  --shadow-sm: 0 4px 20px rgba(14,14,12,.08);
  --shadow-md: 0 12px 48px rgba(14,14,12,.14);
  --shadow-lg: 0 32px 80px rgba(14,14,12,.22);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;

  /* Typography */
  --font-head: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --font-mono: 'DM Mono', monospace;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--paper);
  color: var(--text-dark);
  line-height: 1.65;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
p { margin-top: 0; }

/* Noise texture overlay on entire page */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1000;
  opacity: 0.6;
}

/* ===== EYEBROW ===== */
.eyebrow {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .20em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.eyebrow.light { color: var(--gold-lt); }

/* ===== HEADER ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 5vw, 80px);
  background: rgba(14,14,12,.88);
  backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid var(--line-inv);
}

.brand img {
  height: 52px;
  width: auto;
  object-fit: contain;
  border-radius: 8px;
  filter: brightness(1.05);
}

.nav {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav a {
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-inv-2);
  letter-spacing: .01em;
  transition: color .2s ease, background .2s ease;
}
.nav a:hover { color: var(--text-inv); background: rgba(245,240,232,.08); }
.nav-cta {
  background: var(--gold) !important;
  color: var(--ink) !important;
  font-weight: 700;
  letter-spacing: .02em;
}
.nav-cta:hover { background: var(--gold-lt) !important; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid var(--line-inv);
  border-radius: var(--radius-sm);
  background: transparent;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 1.5px;
  background: var(--text-inv);
  border-radius: 2px;
  transition: transform .3s ease, opacity .3s ease;
}
.nav-toggle.active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transform: scale(1.04);
  transition: transform 8s ease-out;
}
.hero-bg-img.loaded { transform: scale(1); }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(14,14,12,.3) 0%,
    rgba(14,14,12,.4) 40%,
    rgba(14,14,12,.82) 75%,
    rgba(14,14,12,.96) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 clamp(20px, 6vw, 100px) clamp(60px, 8vh, 100px);
  max-width: 900px;
  animation: heroFadeUp .9s ease both;
}

@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold-lt);
  margin-bottom: 28px;
  padding: 9px 16px;
  border: 1px solid rgba(201,168,76,.3);
  border-radius: 999px;
  background: rgba(201,168,76,.08);
}
.dot {
  width: 7px;
  height: 7px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(201,168,76,.25);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(201,168,76,.25); }
  50%       { box-shadow: 0 0 0 6px rgba(201,168,76,.1); }
}

.hero-content h1 {
  font-family: var(--font-head);
  font-size: clamp(56px, 9vw, 120px);
  font-weight: 900;
  line-height: .92;
  letter-spacing: -.03em;
  color: var(--text-inv);
  margin-bottom: 28px;
}
.hero-content h1 em {
  font-style: italic;
  color: var(--text-inv-2);
}
.text-gold { color: var(--gold); }

.hero-lead {
  font-size: clamp(17px, 2vw, 21px);
  color: rgba(245,240,232,.72);
  max-width: 560px;
  margin-bottom: 36px;
  line-height: 1.6;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 52px;
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 28px;
  background: var(--gold);
  color: var(--ink);
  font-weight: 700;
  font-size: 15px;
  border-radius: 999px;
  letter-spacing: .01em;
  transition: background .2s ease, transform .2s ease, box-shadow .2s ease;
  box-shadow: 0 8px 32px rgba(201,168,76,.35);
  border: none;
  cursor: pointer;
}
.btn-primary:hover {
  background: var(--gold-lt);
  transform: translateY(-2px);
  box-shadow: 0 14px 42px rgba(201,168,76,.45);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 28px;
  border: 1px solid rgba(245,240,232,.25);
  color: var(--text-inv);
  font-size: 15px;
  font-weight: 500;
  border-radius: 999px;
  transition: background .2s ease, border-color .2s ease;
}
.btn-ghost:hover { background: rgba(245,240,232,.08); border-color: rgba(245,240,232,.4); }

/* Hero trust stats */
.hero-trust {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.trust-item { display: flex; flex-direction: column; gap: 3px; }
.trust-num {
  font-family: var(--font-head);
  font-size: 26px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.trust-label {
  font-size: 12px;
  color: var(--text-inv-2);
  font-weight: 400;
  letter-spacing: .02em;
}
.trust-divider {
  width: 1px;
  height: 36px;
  background: rgba(245,240,232,.2);
}

/* Hero scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 40px;
  right: clamp(20px, 5vw, 80px);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  opacity: .6;
}
.hero-scroll span {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--text-inv);
  writing-mode: vertical-rl;
}
.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollLine 2s ease-in-out 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; }
}

/* ===== INTRO BAND ===== */
.intro-band {
  background: var(--ink-2);
  padding: clamp(60px, 8vw, 100px) clamp(20px, 6vw, 100px);
  border-top: 1px solid var(--line-inv);
  border-bottom: 1px solid var(--line-inv);
}
.intro-band-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  max-width: 1280px;
  margin: 0 auto;
}
.intro-text h2 {
  font-family: var(--font-head);
  font-size: clamp(28px, 4vw, 48px);
  color: var(--text-inv);
  line-height: 1.15;
  letter-spacing: -.03em;
  font-weight: 700;
  margin-bottom: 0;
}
.intro-text h2 em { font-style: italic; color: var(--text-inv-2); }
.intro-body p {
  color: var(--text-inv-2);
  font-size: 17px;
  line-height: 1.75;
  font-weight: 300;
  margin-bottom: 28px;
}
.intro-sectors {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.intro-sectors span {
  padding: 7px 14px;
  border: 1px solid var(--line-inv);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-inv-2);
  font-family: var(--font-mono);
  letter-spacing: .04em;
  transition: border-color .2s, color .2s;
}
.intro-sectors span:hover { border-color: var(--gold); color: var(--gold); }

/* ===== SECTION COMMON ===== */
.section {
  padding: clamp(70px, 9vw, 120px) clamp(20px, 6vw, 100px);
}
.section-header {
  margin-bottom: 60px;
  max-width: 720px;
}
.section-header h2 {
  font-family: var(--font-head);
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.1;
  letter-spacing: -.04em;
  font-weight: 700;
  margin-bottom: 18px;
}
.section-header h2 em { font-style: italic; color: var(--text-light); }
.section-sub {
  font-size: 18px;
  color: var(--text-mid);
  line-height: 1.65;
  font-weight: 300;
}

/* ===== SOLUTIONS ===== */
.solutions-section { background: var(--paper); }

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  gap: 18px;
}

.sol-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease;
  display: flex;
  flex-direction: column;
}
.sol-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.sol-featured {
  grid-column: span 2;
  grid-row: span 2;
  flex-direction: column;
}
.sol-featured .sol-img-wrap { flex: 1; min-height: 0; }
.sol-featured .sol-img-wrap img { height: 100%; min-height: 320px; width: 100%; object-fit: cover; }

.sol-img-wrap {
  overflow: hidden;
  background: var(--paper-3);
}
.sol-img-wrap img {
  height: 200px;
  width: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.sol-card:hover .sol-img-wrap img { transform: scale(1.05); }

.sol-body {
  padding: 28px 28px 24px;
  display: flex;
  flex-direction: column;
  flex: 0 0 auto;
}
.sol-num {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--gold);
  letter-spacing: .16em;
  margin-bottom: 12px;
  display: block;
}
.sol-body h3 {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 10px;
  letter-spacing: -.02em;
}
.sol-featured .sol-body h3 { font-size: 28px; }
.sol-body p {
  color: var(--text-mid);
  font-size: 14px;
  line-height: 1.65;
  margin-bottom: 18px;
  flex: 1;
}
.sol-featured .sol-body p { font-size: 16px; }
.sol-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--gold-dk);
  letter-spacing: .04em;
  transition: gap .2s ease, color .2s ease;
}
.sol-link:hover { gap: 10px; color: var(--gold); }

/* ===== CAPABILITIES ===== */
.capabilities-section {
  background: var(--ink);
  border-radius: 48px;
  margin: 0 clamp(12px, 3vw, 40px);
}
.cap-inner {
  display: grid;
  grid-template-columns: .8fr 2fr;
  gap: 72px;
  align-items: start;
}
.cap-header h2 {
  font-family: var(--font-head);
  font-size: clamp(32px, 4.5vw, 54px);
  font-weight: 700;
  color: var(--text-inv);
  line-height: 1.1;
  letter-spacing: -.04em;
  margin-bottom: 0;
}
.cap-header h2 em { font-style: italic; color: var(--text-inv-2); }

.cap-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.cap-item {
  padding: 32px;
  border: 1px solid var(--line-inv);
  border-radius: var(--radius-md);
  background: rgba(245,240,232,.04);
  transition: background .3s ease, border-color .3s ease;
  position: relative;
  overflow: hidden;
}
.cap-item::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  opacity: 0;
  transition: opacity .3s ease;
}
.cap-item:hover {
  background: rgba(245,240,232,.07);
  border-color: rgba(201,168,76,.3);
}
.cap-item:hover::before { opacity: 1; }

.cap-icon {
  width: 44px;
  height: 44px;
  background: var(--gold-muted);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-bottom: 20px;
}
.cap-num {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--gold);
  letter-spacing: .16em;
  margin-bottom: 14px;
  display: block;
}
.cap-item h3 {
  font-family: var(--font-head);
  font-size: 19px;
  font-weight: 700;
  color: var(--text-inv);
  margin-bottom: 12px;
  letter-spacing: -.02em;
}
.cap-item p {
  color: var(--text-inv-2);
  font-size: 14px;
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 0;
}

/* ===== WHY US ===== */
.why-section { background: var(--paper-2); }
.why-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}
.why-copy h2 {
  font-family: var(--font-head);
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.1;
  letter-spacing: -.04em;
  font-weight: 700;
  margin-bottom: 22px;
}
.why-copy h2 em { font-style: italic; color: var(--text-light); }
.why-copy > p {
  color: var(--text-mid);
  font-size: 17px;
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 36px;
}

.why-metrics {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.metric-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 24px 28px;
  position: relative;
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease;
}
.metric-card:hover {
  transform: translateX(6px);
  box-shadow: var(--shadow-sm);
}
.metric-value {
  font-family: var(--font-head);
  font-size: 32px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 4px;
}
.metric-label {
  font-size: 13px;
  color: var(--text-light);
  font-weight: 500;
  margin-bottom: 16px;
  letter-spacing: .01em;
}
.metric-bar {
  height: 3px;
  background: var(--paper-3);
  border-radius: 2px;
  overflow: hidden;
}
.metric-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold-lt));
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .8s cubic-bezier(.22,1,.36,1) .2s;
}
.metric-fill.visible { transform: scaleX(1); }

/* ===== CONTACT ===== */
.contact-section {
  background: var(--ink-2);
}
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 72px;
  align-items: start;
}
.contact-copy h2 {
  font-family: var(--font-head);
  font-size: clamp(30px, 4vw, 50px);
  line-height: 1.12;
  letter-spacing: -.04em;
  font-weight: 700;
  color: var(--text-inv);
  margin-bottom: 22px;
}
.contact-copy h2 em { font-style: italic; color: var(--text-inv-2); }
.contact-copy > p {
  color: var(--text-inv-2);
  font-size: 16px;
  line-height: 1.75;
  font-weight: 300;
  margin-bottom: 36px;
}
.contact-detail { margin-top: 36px; }
.contact-info-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-inv-2);
  font-size: 15px;
}
.contact-info-item svg { color: var(--gold); flex-shrink: 0; }
.contact-info-item a:hover { color: var(--gold); }

/* Contact form */
.contact-form {
  background: rgba(245,240,232,.05);
  border: 1px solid var(--line-inv);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 44px);
  backdrop-filter: blur(8px);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}
.form-field span {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-inv-2);
  letter-spacing: .08em;
  text-transform: uppercase;
  font-family: var(--font-mono);
}
.form-field input,
.form-field textarea {
  background: rgba(245,240,232,.07);
  border: 1px solid var(--line-inv);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  font: inherit;
  font-size: 15px;
  color: var(--text-inv);
  outline: none;
  transition: border-color .2s ease, background .2s ease;
  resize: none;
}
.form-field input::placeholder,
.form-field textarea::placeholder { color: rgba(245,240,232,.3); }
.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--gold);
  background: rgba(201,168,76,.06);
}
.form-submit { width: 100%; justify-content: center; margin-top: 8px; font-size: 16px; }
.form-note {
  font-size: 12px !important;
  color: rgba(245,240,232,.4) !important;
  text-align: center;
  margin-top: 14px !important;
  font-family: var(--font-mono);
  letter-spacing: .02em;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--ink);
  border-top: 1px solid var(--line-inv);
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding: clamp(48px, 6vw, 80px) clamp(20px, 6vw, 100px) clamp(40px, 5vw, 64px);
}
.footer-brand img {
  height: 48px;
  width: auto;
  border-radius: 8px;
  margin-bottom: 18px;
  filter: brightness(.95);
}
.footer-brand p {
  color: var(--text-inv-2);
  font-size: 14px;
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 12px;
  max-width: 280px;
}
.footer-tagline {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--gold);
  letter-spacing: .14em;
  text-transform: uppercase;
}
.footer-nav, .footer-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-nav h4, .footer-contact h4 {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--gold);
  letter-spacing: .16em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.footer-nav a, .footer-contact a {
  color: var(--text-inv-2);
  font-size: 14px;
  font-weight: 400;
  transition: color .2s ease;
}
.footer-nav a:hover, .footer-contact a:hover { color: var(--text-inv); }
.footer-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--gold) !important;
  font-weight: 600 !important;
  font-size: 14px;
  margin-top: 8px;
  transition: gap .2s ease !important;
}
.footer-cta:hover { gap: 10px !important; }

.footer-bottom {
  border-top: 1px solid var(--line-inv);
  padding: 20px clamp(20px, 6vw, 100px);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom span {
  font-family: var(--font-mono);
  font-size: 12px;
  color: rgba(245,240,232,.3);
  letter-spacing: .04em;
}

/* ===== ANIMATIONS — REVEAL ON SCROLL ===== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .solutions-grid { grid-template-columns: repeat(2, 1fr); }
  .sol-featured { grid-column: span 2; grid-row: auto; }
  .sol-featured .sol-img-wrap img { min-height: 280px; }
  .cap-inner { grid-template-columns: 1fr; gap: 44px; }
  .cap-header h2 { font-size: 38px; }
}

@media (max-width: 860px) {
  .intro-band-inner { grid-template-columns: 1fr; gap: 36px; }
  .why-inner { grid-template-columns: 1fr; gap: 48px; }
  .contact-inner { grid-template-columns: 1fr; gap: 48px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
  .cap-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .site-header { padding: 14px 18px; }
  .nav { display: none; position: absolute; left: 0; right: 0; top: 80px;
    flex-direction: column; padding: 16px; background: var(--ink);
    border-bottom: 1px solid var(--line-inv); gap: 4px; }
  .nav.open { display: flex; }
  .nav a { padding: 14px 18px; border-radius: var(--radius-sm); text-align: left; width: 100%; color: var(--text-inv-2); }
  .nav-cta { background: var(--gold) !important; color: var(--ink) !important; }
  .nav-toggle { display: flex; }
  .hero-content { padding-bottom: 60px; }
  .hero-scroll { display: none; }
  .solutions-grid { grid-template-columns: 1fr; }
  .sol-featured { grid-column: auto; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .capabilities-section { border-radius: 24px; margin: 0 12px; }
}
