@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Barlow:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300&family=Barlow+Condensed:wght@400;500;600;700&display=swap');

/* ═══════════════════════════════════════════
   DESIGN TOKENS
═══════════════════════════════════════════ */
:root {
  --black:    #07080a;
  --black2:   #0b0d10;
  --black3:   #0f1318;
  --panel:    #111518;
  --panel2:   #161c22;
  --ink:      #f0f2f4;
  --muted:    #99a3ad;
  --soft:     #5e6872;
  --gold:     #c8912f;
  --gold2:    #e8b84b;
  --gold3:    #f5d07a;
  --silver:   #c8cdd4;
  --silver2:  #e4e8ed;
  --line:     rgba(200,145,47,.28);
  --line2:    rgba(255,255,255,.09);
  --line3:    rgba(200,145,47,.12);
  --max:      1200px;
  --r:        14px;
  --font:     'Barlow', system-ui, sans-serif;
  --font-cond:'Barlow Condensed', system-ui, sans-serif;
  --font-disp:'Cormorant Garamond', Georgia, serif;
  --grad-gold: linear-gradient(135deg, #c8912f 0%, #e8b84b 40%, #f5d07a 65%, #c8912f 100%);
  --grad-panel: linear-gradient(180deg, rgba(17,21,24,.95) 0%, rgba(10,13,16,.98) 100%);
}

/* ═══════════════════════════════════════════
   BASE
═══════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font);
  background: var(--black);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
}

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

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { cursor: pointer; font-family: inherit; }
.container { max-width: var(--max); margin: 0 auto; padding: 0 32px; }
.skip { position: absolute; left: -9999px; }
.skip:focus { left: 16px; top: 16px; z-index: 9999; background: #fff; color: #000; padding: 10px 16px; border-radius: 8px; }

/* ═══════════════════════════════════════════
   TYPOGRAPHY SYSTEM
═══════════════════════════════════════════ */
.eyebrow {
  font-family: var(--font-cond);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold2);
  display: block;
  margin-bottom: 14px;
}
h1 {
  font-family: var(--font-disp);
  font-size: clamp(42px, 6vw, 82px);
  line-height: 1.0;
  font-weight: 300;
  letter-spacing: -.02em;
}
h1 em { font-style: italic; color: var(--gold3); }
h2 {
  font-family: var(--font-disp);
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.06;
  font-weight: 300;
  letter-spacing: -.015em;
}
h2 em { font-style: italic; }
h3 {
  font-family: var(--font-cond);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.lead {
  font-size: 18px;
  font-weight: 300;
  line-height: 1.75;
  color: #cdd3da;
  max-width: 640px;
}
.body-text {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--muted);
}

/* ═══════════════════════════════════════════
   GOLD RULE DIVIDER
═══════════════════════════════════════════ */
.gold-rule {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 14px;
}
.gold-rule::before, .gold-rule::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.gold-rule span {
  font-family: var(--font-cond);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .28em;
  color: var(--gold2);
  text-transform: uppercase;
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════
   BUTTONS / CTAs
═══════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-cond);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 0 26px;
  height: 48px;
  border-radius: 4px;
  border: none;
  transition: all .22s ease;
  position: relative;
  overflow: hidden;
}
.btn-primary {
  background: var(--grad-gold);
  color: #0a0a0a;
  box-shadow: 0 8px 28px rgba(200,145,47,.22), 0 2px 8px rgba(0,0,0,.4);
}
.btn-primary::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(255,255,255,0);
  transition: background .2s;
}
.btn-primary:hover::after { background: rgba(255,255,255,.12); }
.btn-primary:hover { box-shadow: 0 12px 38px rgba(200,145,47,.35), 0 4px 12px rgba(0,0,0,.5); transform: translateY(-1px); }
.btn-ghost {
  background: transparent;
  color: var(--silver2);
  border: 1px solid rgba(200,145,47,.45);
}
.btn-ghost:hover {
  background: rgba(200,145,47,.08);
  border-color: rgba(200,145,47,.8);
  color: var(--gold3);
}
.btn-text {
  background: transparent;
  color: var(--gold2);
  padding: 0;
  height: auto;
  font-size: 12px;
  letter-spacing: .18em;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap .2s, color .2s;
}
.btn-text:hover { gap: 14px; color: var(--gold3); }
.btn-text .arr { transition: transform .2s; }
.btn-text:hover .arr { transform: translateX(4px); }

/* ═══════════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════════ */
.site-header {
  position: sticky; top: 0; z-index: 200;
  background: rgba(7,8,10,.92);
  backdrop-filter: blur(20px) saturate(1.4);
  border-bottom: 1px solid var(--line);
}
/* Gold shimmer line at very top */
.site-header::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--grad-gold);
  opacity: .7;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}
.nav-logo {
  flex-shrink: 0;
}
.nav-logo img {
  height: 56px;
  width: auto;
  object-fit: contain;
  object-position: left center;
  /* show the horizontal banner logo cleanly */
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  padding: 0;
}
.nav-links a {
  font-family: var(--font-cond);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #b0b8c2;
  transition: color .18s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute; left: 0; bottom: -4px; width: 0; height: 1px;
  background: var(--gold2);
  transition: width .22s ease;
}
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--gold3); }
.nav-links a:hover::after, .nav-links a[aria-current="page"]::after { width: 100%; }
.nav-cta { margin-left: 8px; }
.menu-btn {
  display: none;
  background: transparent;
  border: 1px solid var(--line);
  color: var(--silver);
  width: 44px; height: 44px;
  border-radius: 6px;
  font-size: 20px;
  align-items: center;
  justify-content: center;
}

/* Mobile drawer */
.mobile-nav {
  display: none;
  position: fixed; inset: 0; z-index: 199;
  background: rgba(7,8,10,.97);
  backdrop-filter: blur(24px);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 32px;
  padding: 80px 32px 40px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-family: var(--font-cond);
  font-size: 28px;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--silver2);
  transition: color .18s;
}
.mobile-nav a:hover, .mobile-nav a[aria-current="page"] { color: var(--gold3); }
.mobile-nav .btn { margin-top: 8px; }
.mobile-close {
  position: absolute; top: 24px; right: 24px;
  background: transparent; border: 1px solid var(--line);
  color: var(--silver); width: 44px; height: 44px;
  border-radius: 6px; font-size: 22px;
  display: flex; align-items: center; justify-content: center;
}

/* ═══════════════════════════════════════════
   HERO
═══════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
/* Background: utility-icons brand image + deep overlay */
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('assets/logo-banner-icons.jpg');
  background-size: cover;
  background-position: center 40%;
  filter: brightness(.22) saturate(.7);
}
/* Gradient vignettes over the bg */
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(7,8,10,.96) 0%, rgba(7,8,10,.7) 55%, rgba(7,8,10,.92) 100%),
    linear-gradient(0deg, rgba(7,8,10,.85) 0%, transparent 40%);
}
/* Animated gold orb */
.hero-orb {
  position: absolute;
  top: -120px; right: -80px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,145,47,.12) 0%, transparent 70%);
  animation: orbPulse 6s ease-in-out infinite;
  pointer-events: none;
}
@keyframes orbPulse {
  0%, 100% { transform: scale(1); opacity: .7; }
  50%       { transform: scale(1.15); opacity: 1; }
}

.hero-inner {
  position: relative; z-index: 1;
  width: 100%;
  padding: 100px 0 90px;
}
.hero-content {
  max-width: 780px;
}
.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
  animation: fadeUp .7s ease .05s both;
}
.hero-kicker-line {
  width: 32px; height: 1px;
  background: var(--grad-gold);
}
.hero-kicker-text {
  font-family: var(--font-cond);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold2);
}
.hero h1 { animation: fadeUp .7s ease .15s both; }
.hero .lead { margin-top: 24px; animation: fadeUp .7s ease .25s both; }
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 36px;
  animation: fadeUp .7s ease .35s both;
}
.hero-stats {
  display: flex;
  gap: 0;
  margin-top: 60px;
  border-top: 1px solid var(--line2);
  padding-top: 36px;
  animation: fadeUp .7s ease .48s both;
}
.stat {
  padding: 0 36px 0 0;
  border-right: 1px solid var(--line2);
  margin-right: 36px;
}
.stat:last-child { border-right: none; margin-right: 0; }
.stat-num {
  font-family: var(--font-disp);
  font-size: 38px;
  font-weight: 300;
  color: var(--gold3);
  line-height: 1;
  letter-spacing: -.02em;
}
.stat-label {
  font-family: var(--font-cond);
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 5px;
}

/* Floating audit card */
.hero-card {
  position: absolute;
  right: 0; top: 50%;
  transform: translateY(-50%);
  width: 340px;
  background: var(--grad-panel);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 28px;
  box-shadow: 0 40px 100px rgba(0,0,0,.6), 0 0 0 1px rgba(200,145,47,.15);
  animation: fadeUp .8s ease .4s both;
  z-index: 1;
}
.hero-card-title {
  font-family: var(--font-cond);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold2);
  margin-bottom: 16px;
}
.audit-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 12px 0;
  border-top: 1px solid rgba(255,255,255,.07);
  gap: 12px;
}
.audit-row:first-of-type { border-top: none; }
.audit-row-label {
  font-size: 12px;
  color: var(--muted);
  font-weight: 400;
  letter-spacing: .03em;
  flex-shrink: 0;
}
.audit-row-value {
  font-size: 13px;
  font-weight: 600;
  color: var(--silver2);
  text-align: right;
  line-height: 1.35;
}
.audit-price { color: var(--gold3); font-size: 16px; }

/* ═══════════════════════════════════════════
   SECTIONS
═══════════════════════════════════════════ */
.section {
  padding: 96px 0;
  border-bottom: 1px solid var(--line3);
  position: relative;
}
.section.tight { padding: 56px 0; }
.section.dark {
  background: rgba(0,0,0,.25);
}
.section-head { margin-bottom: 52px; }
.section-head h2 { margin-top: 12px; }
.section-head .body-text { margin-top: 18px; max-width: 620px; }

/* ═══════════════════════════════════════════
   CATEGORY PILLARS (4-col band)
═══════════════════════════════════════════ */
.pillar-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
}
.pillar {
  padding: 32px 24px;
  border-right: 1px solid var(--line);
  transition: background .25s;
  position: relative;
}
.pillar:last-child { border-right: none; }
.pillar:hover { background: rgba(200,145,47,.05); }
.pillar::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--grad-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
}
.pillar:hover::before { transform: scaleX(1); }
.pillar-num {
  font-family: var(--font-disp);
  font-size: 11px;
  letter-spacing: .2em;
  color: var(--gold);
  margin-bottom: 16px;
}
.pillar h3 { font-size: 15px; color: var(--gold2); margin-bottom: 6px; }
.pillar-sub { font-family: var(--font-disp); font-size: 20px; font-weight: 300; font-style: italic; color: var(--silver2); margin-bottom: 10px; }
.pillar p { font-size: 13px; color: var(--muted); line-height: 1.65; }

/* ═══════════════════════════════════════════
   SERVICE CARDS
═══════════════════════════════════════════ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
}
.svc-card {
  background: var(--panel);
  padding: 32px 28px;
  transition: background .25s;
  position: relative;
  overflow: hidden;
}
.svc-card::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
  background: var(--grad-gold);
  transform: scaleX(0);
  transition: transform .3s;
}
.svc-card:hover { background: var(--panel2); }
.svc-card:hover::after { transform: scaleX(1); }
.svc-card.featured {
  border: 1px solid rgba(200,145,47,.45);
  background: linear-gradient(160deg, rgba(200,145,47,.06) 0%, var(--panel) 60%);
  border-radius: 0;
}
.svc-icon {
  width: 44px; height: 44px;
  border: 1px solid var(--line);
  border-radius: 10px;
  display: grid; place-items: center;
  font-size: 20px;
  color: var(--gold2);
  margin-bottom: 20px;
  background: rgba(200,145,47,.06);
}
.svc-badge {
  font-family: var(--font-cond);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
  display: block;
}
.svc-card h3 {
  font-size: 17px;
  color: var(--silver2);
  margin-bottom: 10px;
  letter-spacing: .03em;
}
.svc-card p { font-size: 14px; color: var(--muted); line-height: 1.65; margin-bottom: 20px; }
.svc-card ul {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 7px;
  margin-bottom: 22px;
}
.svc-card ul li {
  font-size: 13px;
  color: #8a9aa8;
  display: flex;
  gap: 9px;
  align-items: flex-start;
}
.svc-card ul li::before { content: '—'; color: var(--gold); flex-shrink: 0; }
.svc-price {
  font-family: var(--font-cond);
  font-size: 15px;
  font-weight: 600;
  color: var(--gold3);
  letter-spacing: .04em;
}

/* ═══════════════════════════════════════════
   AUDIT PAGE SPECIFIC
═══════════════════════════════════════════ */
.audit-areas {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.area-card {
  border: 1px solid var(--line2);
  border-radius: var(--r);
  padding: 24px;
  background: var(--grad-panel);
  transition: border-color .2s, background .2s;
}
.area-card:hover {
  border-color: var(--line);
  background: linear-gradient(160deg, rgba(200,145,47,.05), var(--panel));
}
.area-icon { font-size: 26px; margin-bottom: 14px; }
.area-card h3 { font-size: 14px; color: var(--gold2); margin-bottom: 8px; }
.area-card p { font-size: 13px; color: var(--muted); line-height: 1.6; }

/* Score visual */
.scorecard-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 24px;
  background: var(--grad-panel);
}
.score-cell {
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 10px;
  padding: 16px;
  background: rgba(0,0,0,.2);
}
.score-cell-label {
  font-family: var(--font-cond);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--soft);
  margin-bottom: 6px;
}
.score-cell-value {
  font-family: var(--font-disp);
  font-size: 26px;
  font-weight: 300;
  line-height: 1;
}
.score-green { color: #6ee7a0; }
.score-yellow { color: var(--gold3); }
.score-red { color: #f87171; }

/* ═══════════════════════════════════════════
   FAQ
═══════════════════════════════════════════ */
.faq-list { display: grid; gap: 1px; border: 1px solid var(--line2); border-radius: var(--r); overflow: hidden; }
.faq-item {
  background: var(--panel);
  padding: 22px 24px;
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: background .2s;
}
.faq-item:last-child { border-bottom: none; }
.faq-item:hover { background: var(--panel2); }
.faq-item h3 { font-size: 15px; color: var(--silver2); margin-bottom: 8px; letter-spacing: .03em; }
.faq-item p { font-size: 14px; color: var(--muted); line-height: 1.65; }

/* ═══════════════════════════════════════════
   PROCESS STEPS
═══════════════════════════════════════════ */
.process-track {
  display: grid;
  gap: 0;
}
.pstep {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 20px;
  padding-bottom: 32px;
  position: relative;
}
.pstep:last-child { padding-bottom: 0; }
.pstep-left { display: flex; flex-direction: column; align-items: center; }
.pstep-num {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(200,145,47,.55);
  background: rgba(200,145,47,.07);
  display: grid; place-items: center;
  font-family: var(--font-cond);
  font-size: 14px;
  font-weight: 700;
  color: var(--gold2);
  position: relative; z-index: 1;
  flex-shrink: 0;
}
.pstep-line {
  flex: 1;
  width: 1px;
  background: linear-gradient(to bottom, rgba(200,145,47,.4), rgba(200,145,47,.08));
  margin-top: 8px;
}
.pstep:last-child .pstep-line { display: none; }
.pstep-content { padding-top: 6px; }
.pstep-content h3 { font-size: 15px; color: var(--silver2); margin-bottom: 6px; letter-spacing: .04em; }
.pstep-content p { font-size: 14px; color: var(--muted); line-height: 1.65; }

/* ═══════════════════════════════════════════
   PRICE TABLE
═══════════════════════════════════════════ */
.price-table { display: grid; gap: 1px; border: 1px solid var(--line2); border-radius: var(--r); overflow: hidden; }
.price-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 20px 24px;
  background: var(--panel);
  border-bottom: 1px solid rgba(255,255,255,.05);
  transition: background .2s, border-color .2s;
}
.price-row:last-child { border-bottom: none; }
.price-row:hover { background: var(--panel2); border-color: rgba(200,145,47,.2); }
.price-row-name { font-family: var(--font-cond); font-size: 15px; font-weight: 600; letter-spacing: .04em; color: var(--silver2); }
.price-row-desc { font-size: 13px; color: var(--muted); margin-top: 3px; }
.price-row-price { font-family: var(--font-disp); font-size: 20px; color: var(--gold3); white-space: nowrap; font-weight: 300; }

/* ═══════════════════════════════════════════
   CONTACT FORM
═══════════════════════════════════════════ */
.form-wrap {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 48px;
  align-items: start;
}
.contact-info h2 { margin-bottom: 18px; }
.contact-info .body-text { margin-bottom: 28px; }
.contact-detail {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px solid var(--line2);
}
.contact-detail:last-child { border-bottom: none; }
.contact-detail-icon {
  width: 36px; height: 36px;
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid; place-items: center;
  color: var(--gold2);
  font-size: 16px;
  flex-shrink: 0;
}
.contact-detail-title { font-family: var(--font-cond); font-size: 11px; letter-spacing: .18em; text-transform: uppercase; color: var(--soft); }
.contact-detail-value { font-size: 14px; color: var(--silver2); margin-top: 2px; }
.contact-detail-value a:hover { color: var(--gold3); }

.form-card {
  background: var(--grad-panel);
  border: 1px solid var(--line2);
  border-radius: var(--r);
  padding: 36px;
  box-shadow: 0 24px 64px rgba(0,0,0,.35);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-grid .full { grid-column: 1 / -1; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field label {
  font-family: var(--font-cond);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
}
.field input, .field select, .field textarea {
  background: rgba(255,255,255,.045);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 8px;
  color: var(--ink);
  font-family: var(--font);
  font-size: 15px;
  font-weight: 300;
  padding: 13px 16px;
  outline: none;
  transition: border-color .2s, background .2s;
  min-height: 48px;
}
.field select option { background: #111; color: #fff; }
.field textarea { min-height: 120px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: rgba(200,145,47,.65);
  background: rgba(255,255,255,.065);
}
.field input::placeholder, .field textarea::placeholder { color: var(--soft); }
.form-privacy {
  font-size: 12px;
  color: var(--soft);
  margin-top: 12px;
  line-height: 1.6;
}

/* ═══════════════════════════════════════════
   ABOUT PAGE
═══════════════════════════════════════════ */
.about-pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 0; }
.about-pillar {
  border: 1px solid var(--line2);
  border-radius: var(--r);
  padding: 28px;
  background: var(--grad-panel);
  position: relative;
  overflow: hidden;
  transition: border-color .25s;
}
.about-pillar:hover { border-color: var(--line); }
.about-pillar::before {
  content: attr(data-n);
  position: absolute; top: -8px; right: 16px;
  font-family: var(--font-disp);
  font-size: 80px;
  font-weight: 300;
  color: rgba(200,145,47,.07);
  line-height: 1;
  pointer-events: none;
}
.about-pillar h3 { font-size: 14px; color: var(--gold2); margin-bottom: 10px; }
.about-pillar p { font-size: 14px; color: var(--muted); line-height: 1.7; }

.territory-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.territory-card {
  border: 1px solid var(--line2);
  border-radius: var(--r);
  padding: 22px;
  background: var(--grad-panel);
  transition: border-color .2s;
}
.territory-card:hover { border-color: var(--line); }
.territory-card h3 { font-size: 14px; color: var(--silver2); margin-bottom: 8px; }
.territory-card p { font-size: 13px; color: var(--muted); line-height: 1.6; }

/* ═══════════════════════════════════════════
   LEGAL
═══════════════════════════════════════════ */
.legal-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.legal-card {
  border: 1px solid var(--line2);
  border-radius: var(--r);
  padding: 24px;
  background: var(--grad-panel);
}
.legal-card h3 { font-size: 14px; color: var(--silver2); margin-bottom: 8px; }
.legal-card p { font-size: 14px; color: var(--muted); line-height: 1.65; }

/* ═══════════════════════════════════════════
   PAGE HERO (inner pages)
═══════════════════════════════════════════ */
.page-hero {
  padding: 88px 0 64px;
  border-bottom: 1px solid var(--line3);
  background: linear-gradient(135deg, rgba(200,145,47,.07) 0%, transparent 40%);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg stroke='%23c8912f' stroke-width='0.3' opacity='0.12'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none; opacity: .5;
}
.page-hero h1 { margin-top: 14px; }
.page-hero .lead { margin-top: 20px; }
.page-hero .btn-group { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }

/* ═══════════════════════════════════════════
   CTA BAND
═══════════════════════════════════════════ */
.cta-band {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
}
.cta-band h2 { margin-bottom: 10px; }
.cta-band .body-text { max-width: 560px; }
.cta-band-actions { display: flex; gap: 12px; flex-shrink: 0; }

/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
.footer {
  background: rgba(4,5,7,1);
  border-top: 1px solid var(--line3);
  padding: 56px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--line2);
}
.footer-brand .footer-logo {
  height: 52px;
  width: auto;
  object-fit: contain;
  object-position: left;
  margin-bottom: 18px;
}
.footer-brand p { font-size: 14px; color: var(--muted); line-height: 1.7; max-width: 320px; }
.footer-brand .footer-email { color: var(--gold2); font-size: 14px; margin-top: 14px; display: block; }
.footer-brand .footer-email:hover { color: var(--gold3); }
.footer-col h4 {
  font-family: var(--font-cond);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--silver);
  margin-bottom: 18px;
}
.footer-col ul { list-style: none; padding: 0; display: grid; gap: 10px; }
.footer-col ul li a {
  font-size: 14px;
  color: var(--muted);
  transition: color .18s;
}
.footer-col ul li a:hover { color: var(--gold2); }
.footer-bottom {
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
}
.footer-disclaimer {
  font-size: 12px;
  color: var(--soft);
  line-height: 1.6;
  max-width: 800px;
}
.footer-copy { font-size: 12px; color: var(--soft); flex-shrink: 0; }

/* ═══════════════════════════════════════════
   ANIMATIONS
═══════════════════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }

/* ═══════════════════════════════════════════
   404
═══════════════════════════════════════════ */
.not-found {
  min-height: 70vh;
  display: flex;
  align-items: center;
}
.not-found-inner { text-align: center; max-width: 560px; margin: 0 auto; }
.not-found-num {
  font-family: var(--font-disp);
  font-size: 120px;
  font-weight: 300;
  color: rgba(200,145,47,.25);
  line-height: 1;
  letter-spacing: -.04em;
}

/* ═══════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════ */
@media (max-width: 1100px) {
  .hero-card { display: none; }
  .hero-content { max-width: 100%; }
  .pillar-band { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .audit-areas { grid-template-columns: repeat(2, 1fr); }
  .territory-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 820px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .menu-btn { display: flex; }
  .form-wrap { grid-template-columns: 1fr; }
  .cta-band { grid-template-columns: 1fr; }
  .cta-band-actions { flex-wrap: wrap; }
  .about-pillars { grid-template-columns: 1fr; }
  .legal-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; }
}
@media (max-width: 640px) {
  .container { padding: 0 20px; }
  .hero { min-height: auto; }
  .hero-inner { padding: 72px 0 60px; }
  h1 { font-size: 40px; }
  h2 { font-size: 30px; }
  .hero-stats { flex-direction: column; gap: 24px; }
  .stat { border-right: none; margin-right: 0; padding: 0; }
  .services-grid { grid-template-columns: 1fr; }
  .pillar-band { grid-template-columns: 1fr; }
  .audit-areas { grid-template-columns: 1fr; }
  .territory-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .price-row { grid-template-columns: 1fr; gap: 6px; }
  .section { padding: 64px 0; }
  .page-hero { padding: 60px 0 44px; }
}

/* Audit two-col responsive */
@media (max-width: 820px) {
  .two-col-audit { grid-template-columns: 1fr !important; }
  .audit-areas { grid-template-columns: repeat(2, 1fr) !important; }
}
@media (max-width: 540px) {
  .audit-areas { grid-template-columns: 1fr !important; }
}
