/* ============================================================
   EWK Strategic Solutions — Main Stylesheet
   Brand: Navy #1B2A4A | Gold #C9A84C
   Fonts: Cormorant Garamond (headings) | Inter (body)
   ============================================================ */

/* ─── RESET & BASE ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  color: #4B5563;
  line-height: 1.7;
  background: #fff;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ─── VARIABLES ─────────────────────────────────────────────── */
:root {
  --navy:        #1B2A4A;
  --navy-deep:   #111D33;
  --navy-hover:  #243557;
  --gold:        #C9A84C;
  --gold-hover:  #D4B660;
  --gold-pale:   #F5EDD6;
  --white:       #FFFFFF;
  --off-white:   #F8F6F2;
  --gray-100:    #F3F4F6;
  --gray-200:    #E5E7EB;
  --gray-400:    #9CA3AF;
  --gray-500:    #6B7280;
  --text:        #1B2A4A;
  --text-body:   #4B5563;
  --text-light:  #6B7280;
  --ff-head:     'Cormorant Garamond', Georgia, serif;
  --ff-body:     'Inter', system-ui, sans-serif;
  --mw:          1200px;
  --pad-section: 6rem 2rem;
  --radius:      4px;
  --ease:        0.3s ease;
  --shadow-sm:   0 1px 3px rgba(0,0,0,.07);
  --shadow-md:   0 4px 20px rgba(0,0,0,.10);
  --shadow-lg:   0 10px 40px rgba(0,0,0,.14);
}

/* ─── TYPOGRAPHY ────────────────────────────────────────────── */
h1,h2,h3,h4,h5,h6 {
  font-family: var(--ff-head);
  color: var(--navy);
  line-height: 1.2;
  font-weight: 600;
}
h1 { font-size: clamp(2.8rem, 5.5vw, 4.5rem); }
h2 { font-size: clamp(2rem,   3.5vw, 3rem);   }
h3 { font-size: clamp(1.4rem, 2.2vw, 1.9rem); }
h4 { font-size: 1.25rem; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ─── LAYOUT ────────────────────────────────────────────────── */
.container { max-width: var(--mw); margin: 0 auto; padding: 0 2rem; }

.section         { padding: var(--pad-section); }
.section--light  { background: var(--off-white); }
.section--navy   { background: var(--navy); }
.section--deep   { background: var(--navy-deep); }
.section--gold   { background: var(--gold); }

.section--navy h2, .section--navy h3, .section--navy h4 { color: #fff; }
.section--navy p,  .section--navy li                    { color: rgba(255,255,255,.8); }
.section--deep h2, .section--deep h3                    { color: #fff; }
.section--deep p                                         { color: rgba(255,255,255,.75); }
.section--gold h2  { color: var(--navy); }
.section--gold p   { color: var(--navy-deep); opacity: .85; }

.section-header { text-align: center; max-width: 680px; margin: 0 auto 3.5rem; }
.section-header h2 { margin-bottom: 1rem; }
.section-header p  { font-size: 1.05rem; color: var(--text-light); }

.eyebrow {
  display: block;
  font-family: var(--ff-body);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .9rem;
}

/* ─── BUTTONS ───────────────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: .9rem 2rem;
  font-family: var(--ff-body);
  font-size: .875rem;
  font-weight: 500;
  letter-spacing: .04em;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--ease);
  text-align: center;
  white-space: nowrap;
}
.btn--gold {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.btn--gold:hover {
  background: var(--gold-hover);
  border-color: var(--gold-hover);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn--outline-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.55);
}
.btn--outline-white:hover {
  border-color: #fff;
  background: rgba(255,255,255,.1);
}
.btn--outline-navy {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn--outline-navy:hover {
  background: var(--navy);
  color: #fff;
}
.btn--navy {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}
.btn--navy:hover {
  background: var(--navy-hover);
  border-color: var(--navy-hover);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

/* ─── SITE HEADER ───────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 999;
  background: rgba(255,255,255,.97);
  border-bottom: 1px solid var(--gray-200);
  transition: box-shadow var(--ease);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.site-header.scrolled { box-shadow: var(--shadow-md); }
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
}

/* Logo */
.logo { display: flex; flex-direction: column; line-height: 1; }
.logo__mark {
  font-family: var(--ff-head);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: .06em;
  line-height: 1;
}
.logo__sub {
  font-family: var(--ff-body);
  font-size: .6rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--navy);
  margin-top: 3px;
}

/* Desktop nav */
.site-nav {
  display: flex;
  align-items: center;
  gap: .15rem;
}
.nav-link {
  font-size: .85rem;
  font-weight: 500;
  color: var(--navy);
  padding: .5rem .85rem;
  border-radius: 3px;
  transition: color var(--ease), background var(--ease);
  position: relative;
}
.nav-link:hover, .nav-link.active { color: var(--gold); }
.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0; left: .85rem; right: .85rem;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}
.nav-cta { margin-left: .6rem; }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: .5rem;
  background: none;
  border: none;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all var(--ease);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-nav {
  display: none;
  flex-direction: column;
  background: #fff;
  border-top: 1px solid var(--gray-200);
  padding: 1rem 2rem 1.5rem;
  gap: .1rem;
  box-shadow: var(--shadow-md);
}
.mobile-nav.open { display: flex; }
.mobile-nav .nav-link {
  padding: .8rem 0;
  border-bottom: 1px solid var(--gray-100);
  border-radius: 0;
}
.mobile-nav .nav-link:last-of-type { border-bottom: none; }
.mobile-nav .btn { margin-top: 1rem; display: block; text-align: center; }

/* ─── HERO (HOMEPAGE) ───────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--navy);
  padding-top: 78px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,.05) 1px, transparent 1px);
  background-size: 64px 64px;
}
.hero-bg-fade {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(27,42,74,.1) 0%, rgba(17,29,51,.9) 70%);
}
.hero-gold-bar {
  position: absolute;
  top: 0; left: 0;
  width: 4px;
  height: 100%;
  background: var(--gold);
  opacity: .5;
}
.hero .container {
  position: relative;
  z-index: 2;
  padding-top: 5rem;
  padding-bottom: 5rem;
}
.hero__eyebrow {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.hero__title {
  font-family: var(--ff-head);
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 600;
  color: #fff;
  line-height: 1.08;
  max-width: 820px;
  margin-bottom: 1.5rem;
}
.hero__title .period { color: var(--gold); }
.hero__sub {
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  font-weight: 300;
  color: rgba(255,255,255,.78);
  max-width: 620px;
  line-height: 1.75;
  margin-bottom: 2.5rem;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 4rem;
}
.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,.1);
}
.hero__badge {
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .07em;
  color: rgba(255,255,255,.55);
  display: flex;
  align-items: center;
  gap: .5rem;
}
.hero__badge::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--gold);
  opacity: .8;
  flex-shrink: 0;
}

/* ─── PAGE HERO (INNER PAGES) ───────────────────────────────── */
.page-hero {
  background: var(--navy);
  padding: 9rem 2rem 5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,.04) 1px, transparent 1px);
  background-size: 60px 60px;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero .eyebrow { margin-bottom: 1rem; }
.page-hero h1 {
  font-family: var(--ff-head);
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  color: #fff;
  max-width: 700px;
  margin: 0 auto 1.25rem;
}
.page-hero p {
  font-size: 1.1rem;
  color: rgba(255,255,255,.72);
  max-width: 560px;
  margin: 0 auto;
}

/* ─── SERVICE TILES (HOMEPAGE) ──────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.service-card {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-top: 3px solid var(--gold);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  transition: box-shadow var(--ease), transform var(--ease);
}
.service-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}
.service-card h3 {
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: .75rem;
}
.service-card p {
  font-size: .9rem;
  color: var(--text-light);
  line-height: 1.65;
  margin: 0;
}
.services-grid-cta {
  text-align: center;
  margin-top: 2.5rem;
}

/* ─── SPLIT SECTION ─────────────────────────────────────────── */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.split--flip { direction: rtl; }
.split--flip > * { direction: ltr; }
.split__content .eyebrow { margin-bottom: .75rem; }
.split__content h2 { margin-bottom: 1.25rem; }
.split__content p { color: var(--text-body); line-height: 1.75; }
.split__content .btn { margin-top: 2rem; }
.split__visual {
  aspect-ratio: 4/5;
  background: var(--off-white);
  border: 1px solid var(--gray-200);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.split__visual::after {
  content: '';
  position: absolute;
  top: 1.5rem; left: 1.5rem; right: -1.5rem; bottom: -1.5rem;
  border: 2px solid var(--gold);
  opacity: .25;
  border-radius: 2px;
  pointer-events: none;
}
.split__monogram {
  font-family: var(--ff-head);
  font-size: 9rem;
  font-weight: 700;
  color: var(--navy);
  opacity: .06;
  user-select: none;
  line-height: 1;
}

/* ─── FEATURE CARDS (WHY EWK PREVIEW) ──────────────────────── */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.5rem; }
.feature {
  padding: 2rem;
  border-left: 3px solid var(--gold);
  background: rgba(255,255,255,.04);
}
.feature h3 { font-size: 1.4rem; color: #fff; margin-bottom: .7rem; }
.feature p  { font-size: .92rem; color: rgba(255,255,255,.72); line-height: 1.7; margin: 0; }
.feature__num {
  font-family: var(--ff-head);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
  opacity: .35;
  line-height: 1;
  margin-bottom: .3rem;
}

/* ─── INDUSTRIES PREVIEW (HOMEPAGE) ────────────────────────── */
.industries-preview { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.25rem; }
.industry-preview-card {
  padding: 1.75rem 2rem;
  border: 1px solid rgba(255,255,255,.1);
  border-left: 3px solid var(--gold);
  transition: background var(--ease);
}
.industry-preview-card:hover { background: rgba(255,255,255,.04); }
.industry-preview-card h3 { font-size: 1.25rem; color: #fff; margin-bottom: .4rem; }
.industry-preview-card p  { font-size: .88rem; color: rgba(255,255,255,.65); margin: 0; }

/* ─── CTA BANNER ────────────────────────────────────────────── */
.cta-banner { padding: 6rem 2rem; text-align: center; }
.section--gold .cta-banner h2 { font-size: clamp(2rem,3.5vw,3rem); }
.cta-banner p  { font-size: 1.1rem; max-width: 540px; margin: 0 auto 2rem; }
.cta-banner .btn-group { display: flex; justify-content: center; flex-wrap: wrap; gap: 1rem; }

/* ─── SERVICES PAGE ─────────────────────────────────────────── */
.services-list { display: grid; gap: 0; }
.service-item {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 3rem;
  align-items: start;
  padding: 2.75rem 0;
  border-bottom: 1px solid var(--gray-200);
}
.service-item:last-child { border-bottom: none; }
.service-item__label {
  font-family: var(--ff-head);
  font-size: 1.9rem;
  color: var(--navy);
  line-height: 1.2;
}
.service-item__label::after {
  content: '';
  display: block;
  width: 36px; height: 3px;
  background: var(--gold);
  margin-top: .85rem;
}
.service-item__body p {
  font-size: 1rem;
  color: var(--text-body);
  line-height: 1.8;
  margin: 0;
}
.service-link {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  color: var(--gold);
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .05em;
  margin-top: .75rem;
  transition: gap var(--ease);
}
.service-link:hover { gap: .7rem; }

/* ─── INDUSTRIES PAGE ───────────────────────────────────────── */
.industry-block {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 3rem;
  align-items: start;
  padding: 3rem 0;
  border-bottom: 1px solid var(--gray-200);
}
.industry-block:first-child { padding-top: 0; }
.industry-block:last-child  { border-bottom: none; }
.industry-block__tag {
  font-family: var(--ff-head);
  font-size: 1.8rem;
  color: var(--navy);
  line-height: 1.25;
}
.industry-block__tag::after {
  content: '';
  display: block;
  width: 32px; height: 3px;
  background: var(--gold);
  margin-top: .75rem;
}
.industry-block__body h3 { font-size: 1.3rem; margin-bottom: .75rem; }
.industry-block__body p  { color: var(--text-body); line-height: 1.78; }

/* ─── WHY EWK PAGE ──────────────────────────────────────────── */
.why-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.75rem; }
.why-card {
  padding: 2.5rem;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  transition: border-color var(--ease), box-shadow var(--ease);
}
.why-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
}
.why-card__icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(201,168,76,.1);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
}
.why-card__icon svg {
  width: 20px; height: 20px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.why-card h3 { font-size: 1.5rem; margin-bottom: .7rem; }
.why-card p  { font-size: .95rem; color: var(--text-body); line-height: 1.75; margin: 0; }

/* ─── GOVERNMENT CONTRACTING PAGE ───────────────────────────── */
.naics-grid { display: grid; gap: 1rem; margin: 1.5rem 0 2.5rem; }
.naics-item {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 1.5rem;
  align-items: start;
  padding: 1.25rem 1.5rem;
  background: var(--off-white);
  border-left: 3px solid var(--gold);
}
.naics-item__code { font-weight: 700; color: var(--navy); font-size: .95rem; }
.naics-item__desc { font-size: .95rem; color: var(--text-body); }

.reg-table { width: 100%; border-collapse: collapse; margin: 1.5rem 0; }
.reg-table th, .reg-table td {
  text-align: left;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--gray-200);
  font-size: .95rem;
}
.reg-table th {
  width: 38%;
  background: var(--off-white);
  font-family: var(--ff-body);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--navy);
}
.reg-table td { color: var(--text-body); }
.reg-table tr:last-child th, .reg-table tr:last-child td { border-bottom: none; }

.download-box {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 2rem 2.5rem;
  background: var(--off-white);
  border: 1px solid var(--gray-200);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius);
  margin-top: 2rem;
}
.download-box p { font-size: .95rem; color: var(--text-body); margin: 0; flex: 1; }

/* ─── CONTACT PAGE ──────────────────────────────────────────── */
.contact-wrap { display: grid; grid-template-columns: 1fr 1.65fr; gap: 5rem; align-items: start; }
.contact-info > p { font-size: 1rem; color: var(--text-body); line-height: 1.75; margin-bottom: 2.5rem; }
.contact-meta { display: flex; flex-direction: column; gap: 1.75rem; margin-bottom: 2.5rem; }
.contact-meta-item { display: flex; gap: 1rem; align-items: flex-start; }
.contact-meta-icon {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(201,168,76,.1);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 2px;
}
.contact-meta-icon svg {
  width: 16px; height: 16px;
  stroke: var(--gold); fill: none;
  stroke-width: 1.75; stroke-linecap: round; stroke-linejoin: round;
}
.contact-meta-label {
  font-size: .7rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .12em;
  color: var(--gold); display: block; margin-bottom: .25rem;
}
.contact-meta-value { font-size: .95rem; color: var(--text-body); line-height: 1.6; }
.contact-note {
  display: inline-flex; align-items: center; gap: .6rem;
  background: rgba(201,168,76,.08);
  border: 1px solid rgba(201,168,76,.25);
  border-radius: 3px;
  padding: .75rem 1rem;
  font-size: .83rem;
  color: var(--navy);
}
.contact-note::before {
  content: '';
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

.contact-form {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: 6px;
  padding: 2.75rem;
  box-shadow: var(--shadow-sm);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: .4rem; margin-bottom: 1.25rem; }
.form-group:last-child { margin-bottom: 0; }
.form-label {
  font-size: .73rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .1em;
  color: var(--navy);
}
.form-control {
  padding: .875rem 1rem;
  border: 1px solid var(--gray-200);
  border-radius: 3px;
  font-family: var(--ff-body);
  font-size: .95rem;
  color: var(--text);
  transition: border-color var(--ease), box-shadow var(--ease);
  background: #fff;
  -webkit-appearance: none; appearance: none;
}
.form-control:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,.15);
}
.form-control::placeholder { color: var(--gray-400); }
select.form-control {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' viewBox='0 0 12 7'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236B7280' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}
textarea.form-control { resize: vertical; min-height: 140px; }
.form-submit { margin-top: 1.5rem; }
.form-submit .btn { width: 100%; padding: 1rem; font-size: .95rem; }

/* ─── ABOUT PAGE ────────────────────────────────────────────── */
.brand-story {
  max-width: 760px;
  margin: 0 auto;
  padding: 3rem 0;
  text-align: center;
}
.brand-story blockquote {
  font-family: var(--ff-head);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-style: italic;
  color: var(--navy);
  line-height: 1.4;
  margin: 1.5rem 0;
  padding: 2rem;
  border-top: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
}

.values-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.25rem; margin-top: 1.5rem; }
.value-card {
  padding: 1.75rem;
  border-left: 3px solid var(--gold);
  border: 1px solid var(--gray-200);
  border-left: 3px solid var(--gold);
  border-radius: 2px;
}
.value-card h4 { font-size: 1.2rem; margin-bottom: .4rem; }
.value-card p  { font-size: .9rem; color: var(--text-light); margin: 0; }

.cred-badges { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 1.75rem; }
.cred-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .6rem 1.1rem;
  background: var(--off-white);
  border: 1px solid var(--gray-200);
  border-radius: 3px;
  font-size: .83rem; font-weight: 500;
  color: var(--navy);
}
.cred-badge::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

/* ─── INTRO CALLOUT ─────────────────────────────────────────── */
.intro-callout {
  max-width: 800px;
  margin: 0 auto 4rem;
  padding: 2rem 2.5rem;
  border-left: 4px solid var(--gold);
  background: var(--off-white);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.intro-callout p { font-size: 1.05rem; color: var(--text-body); line-height: 1.8; margin: 0; }

/* ─── STAT ROW ──────────────────────────────────────────────── */
.stat-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; }
.stat-item { text-align: center; padding: 2rem; }
.stat-item__num {
  font-family: var(--ff-head);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: .5rem;
}
.stat-item__label {
  font-size: .85rem;
  font-weight: 500;
  color: rgba(255,255,255,.7);
  letter-spacing: .06em;
}

/* ─── DIVIDER ───────────────────────────────────────────────── */
.gold-rule {
  border: none;
  height: 2px;
  background: linear-gradient(90deg, var(--gold) 0%, transparent 100%);
  margin: 4rem 0;
  opacity: .35;
}

/* ─── FADE-IN ANIMATION ─────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .65s ease, transform .65s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ─── THANK YOU PAGE ────────────────────────────────────────── */
.thankyou-wrap {
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 5rem 2rem;
}
.thankyou-icon {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: rgba(201,168,76,.12);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 2rem;
}
.thankyou-icon svg {
  width: 32px; height: 32px;
  stroke: var(--gold); fill: none;
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
}
.thankyou-wrap h1 { font-size: clamp(2rem,4vw,3rem); margin-bottom: 1rem; }
.thankyou-wrap p  { font-size: 1.1rem; color: var(--text-body); max-width: 480px; margin: 0 auto 2.5rem; }

/* ─── FOOTER ────────────────────────────────────────────────── */
.site-footer {
  background: var(--navy-deep);
  color: rgba(255,255,255,.65);
  padding: 5rem 2rem 2.5rem;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 4rem;
  padding-bottom: 3.5rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
  margin-bottom: 2rem;
}
.footer-brand .logo__mark { color: var(--gold); }
.footer-brand .logo__sub  { color: rgba(255,255,255,.45); }
.footer-tagline {
  font-style: italic;
  font-size: .88rem;
  color: rgba(255,255,255,.4);
  margin-top: 1rem;
  line-height: 1.65;
}
.footer-col-title {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.footer-links { display: flex; flex-direction: column; gap: .6rem; }
.footer-links a {
  font-size: .88rem;
  color: rgba(255,255,255,.6);
  transition: color var(--ease);
}
.footer-links a:hover { color: var(--gold); }
.footer-contact-item { margin-bottom: 1rem; }
.footer-contact-label {
  display: block;
  font-size: .65rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: rgba(255,255,255,.3);
  margin-bottom: .2rem;
}
.footer-contact-value { font-size: .88rem; color: rgba(255,255,255,.6); line-height: 1.55; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-copy { font-size: .78rem; color: rgba(255,255,255,.3); }
.footer-creds { display: flex; flex-wrap: wrap; gap: 1.5rem; }
.footer-cred {
  font-size: .72rem;
  color: rgba(255,255,255,.35);
  display: flex; align-items: center; gap: .4rem;
}
.footer-cred::before {
  content: '';
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--gold);
  opacity: .55;
}

/* ─── RESPONSIVE ────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .services-grid    { grid-template-columns: repeat(2,1fr); }
  .features-grid    { grid-template-columns: repeat(2,1fr); }
  .split            { grid-template-columns: 1fr; gap: 3rem; }
  .split--flip      { direction: ltr; }
  .split__visual    { aspect-ratio: 16/9; max-height: 360px; }
  .footer-top       { grid-template-columns: 1fr 1fr; gap: 3rem; }
  .footer-brand     { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  :root { --pad-section: 4rem 1.5rem; }
  .site-nav  { display: none; }
  .nav-toggle { display: flex; }
  .services-grid        { grid-template-columns: 1fr; }
  .features-grid        { grid-template-columns: 1fr; }
  .industries-preview   { grid-template-columns: 1fr; }
  .why-grid             { grid-template-columns: 1fr; }
  .contact-wrap         { grid-template-columns: 1fr; gap: 3rem; }
  .form-row             { grid-template-columns: 1fr; }
  .footer-top           { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom        { flex-direction: column; align-items: flex-start; }
  .service-item         { grid-template-columns: 1fr; gap: 1rem; }
  .industry-block       { grid-template-columns: 1fr; gap: 1rem; }
  .values-grid          { grid-template-columns: 1fr; }
  .stat-row             { grid-template-columns: 1fr; }
  .hero__title          { font-size: clamp(2.5rem, 9vw, 3.5rem); }
  .naics-item           { grid-template-columns: 80px 1fr; gap: 1rem; }
  .download-box         { flex-direction: column; gap: 1.25rem; }
}

@media (max-width: 480px) {
  .container { padding: 0 1.25rem; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { text-align: center; }
  .hero__badges { gap: 1.25rem; }
  .contact-form { padding: 1.75rem; }
}
