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

:root {
  --navy: #1B2A4A;
  --navy-mid: #243656;
  --navy-light: #2E456C;
  --gold: #C49A2A;
  --gold-light: #D4AF4A;
  --steel: #3D5A8A;
  --ice: #E8EDF5;
  --warm-white: #F5F4F0;
  --text: #1a1a1a;
  --text-mid: #444;
  --text-muted: #777;
  --white: #fff;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Barlow', sans-serif;
  --font-condensed: 'Barlow Condensed', sans-serif;
  --max-w: 1200px;
  --nav-h: 72px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
}

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

/* ─── Nav ─── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: rgba(27, 42, 74, 0.96);
  backdrop-filter: blur(8px);
  z-index: 100;
  border-bottom: 1px solid rgba(196,154,42,0.2);
  transition: background 0.3s;
}
.nav.scrolled { background: rgba(27,42,74,0.99); }
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo { display: flex; align-items: center; gap: 0.75rem; }
.logo-mark {
  width: 40px; height: 40px;
  border: 1.5px solid var(--gold);
  border-radius: 3px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.logo-mark.small { width: 32px; height: 32px; }
.logo-dw {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 1px;
}
.logo-mark.small .logo-dw { font-size: 11px; }
.logo-text { display: flex; flex-direction: column; }
.logo-name {
  font-family: var(--font-condensed);
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 2px;
  line-height: 1.2;
}
.logo-sub {
  font-family: var(--font-body);
  font-size: 10px;
  color: var(--gold);
  letter-spacing: 1px;
  line-height: 1;
}
.nav-links {
  display: flex;
  list-style: none;
  gap: 0.25rem;
  align-items: center;
}
.nav-link {
  font-family: var(--font-condensed);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  padding: 0.5rem 1rem;
  border-radius: 2px;
  transition: color 0.2s;
}
.nav-link:hover, .nav-link.active { color: var(--white); }
.nav-link.active { color: var(--gold); }
.nav-cta {
  background: var(--gold);
  color: var(--navy) !important;
  font-weight: 600;
  padding: 0.5rem 1.25rem;
  transition: background 0.2s;
}
.nav-cta:hover { background: var(--gold-light); }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  transition: 0.3s;
}

/* ─── Hero ─── */
.hero {
  min-height: 100vh;
  background: var(--navy);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: var(--nav-h);
}
.hero-terrain {
  position: absolute;
  inset: 0;
  opacity: 0.9;
  pointer-events: none;
}
.hero-terrain svg { width: 100%; height: 100%; }
.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 6rem 2rem 5rem;
  max-width: 760px;
  margin-left: max(2rem, calc((100vw - var(--max-w)) / 2 + 2rem));
}
.hero-eyebrow {
  font-family: var(--font-condensed);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.2s forwards;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 600;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.4s forwards;
}
.hero-title em {
  font-style: italic;
  color: var(--gold);
}
.hero-sub {
  font-size: 1.1rem;
  font-weight: 300;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  max-width: 560px;
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.6s forwards;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  margin-bottom: 4rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.8s forwards;
  flex-wrap: wrap;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 2rem;
  opacity: 0;
  animation: fadeUp 0.8s 1s forwards;
  flex-wrap: wrap;
}
.stat { display: flex; flex-direction: column; }
.stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.stat-label {
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.5px;
  margin-top: 4px;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(196,154,42,0.3);
}

/* ─── Buttons ─── */
.btn-primary {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  font-family: var(--font-condensed);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 0.875rem 2rem;
  border-radius: 2px;
  transition: background 0.2s, transform 0.15s;
  border: none;
  cursor: pointer;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); }
.btn-primary.large { font-size: 14px; padding: 1rem 2.5rem; }
.btn-primary.full-width { width: 100%; text-align: center; }
.btn-ghost {
  display: inline-block;
  background: transparent;
  color: var(--white);
  font-family: var(--font-condensed);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 0.875rem 2rem;
  border-radius: 2px;
  border: 1px solid rgba(255,255,255,0.3);
  transition: border-color 0.2s, background 0.2s;
}
.btn-ghost:hover { border-color: var(--white); background: rgba(255,255,255,0.05); }
.btn-outline-light {
  display: inline-block;
  background: transparent;
  color: var(--white);
  font-family: var(--font-condensed);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 0.875rem 2rem;
  border: 1px solid var(--gold);
  border-radius: 2px;
  transition: background 0.2s;
  margin-top: 1.5rem;
}
.btn-outline-light:hover { background: rgba(196,154,42,0.1); }

/* ─── Sectors strip ─── */
.sectors {
  background: var(--warm-white);
  border-top: 1px solid rgba(196,154,42,0.2);
  border-bottom: 1px solid rgba(196,154,42,0.2);
  padding: 1.25rem 0;
}
.sectors .container { max-width: var(--max-w); margin: 0 auto; padding: 0 2rem; }
.sectors-label {
  font-family: var(--font-condensed);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-muted);
  display: inline;
  margin-right: 1.5rem;
}
.sectors-list {
  display: inline;
  font-family: var(--font-condensed);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
  color: var(--steel);
}
.sectors-list .dot { margin: 0 0.75rem; color: var(--gold); }

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

/* ─── Section headers ─── */
.section-eyebrow {
  font-family: var(--font-condensed);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.section-eyebrow.light { color: var(--gold-light); }
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--navy);
}
.section-header { margin-bottom: 3.5rem; }

/* ─── Services overview ─── */
.services-overview { padding: 6rem 0; background: var(--white); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5px;
  background: var(--ice);
  border: 1.5px solid var(--ice);
}
.service-card {
  background: var(--white);
  padding: 2.5rem;
  display: block;
  transition: background 0.2s;
  position: relative;
}
.service-card:hover { background: var(--warm-white); }
.service-card:hover .service-arrow { transform: translateX(4px); color: var(--gold); }
.service-num {
  font-family: var(--font-condensed);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 1rem;
}
.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.75rem;
  line-height: 1.2;
}
.service-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 1.5rem;
}
.service-arrow {
  font-size: 1.2rem;
  color: var(--steel);
  transition: transform 0.2s, color 0.2s;
}

/* ─── About strip ─── */
.about-strip {
  background: var(--navy);
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}
.about-strip-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.about-strip-text h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 2.6rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1.5rem;
}
.about-strip-text p {
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 1rem;
}
.about-strip-credentials { padding-top: 2rem; }
.credential {
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.credential:first-child { border-top: 1px solid rgba(255,255,255,0.08); }
.credential-label {
  font-family: var(--font-condensed);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
}
.credential-value {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
}

/* ─── CTA section ─── */
.cta-section {
  background: var(--navy);
  padding: 6rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(196,154,42,0.15);
}
.cta-terrain {
  position: absolute;
  inset: 0;
  opacity: 0.4;
  pointer-events: none;
}
.cta-inner {
  position: relative;
  z-index: 2;
}
.cta-section h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1rem;
}
.cta-section p {
  color: rgba(255,255,255,0.65);
  font-size: 1rem;
  margin-bottom: 2.5rem;
}

/* ─── Footer ─── */
.footer {
  background: #0F1A2E;
  padding: 3rem 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  align-items: start;
}
.footer-brand { display: flex; align-items: center; gap: 0.75rem; }
.footer-name {
  font-family: var(--font-condensed);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--white);
}
.footer-tagline {
  font-size: 11px;
  color: var(--gold);
  margin-top: 2px;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer-links a {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold); }
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer-contact a, .footer-contact span {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
}
.footer-contact a:hover { color: var(--gold); }
.footer-base {
  padding: 1rem 0;
  font-size: 12px;
  color: rgba(255,255,255,0.25);
}

/* ─── Page hero (inner pages) ─── */
.page-hero {
  background: var(--navy);
  padding: calc(var(--nav-h) + 4rem) 0 4rem;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
  opacity: 0.4;
}
.page-hero .section-eyebrow { margin-bottom: 1rem; }
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.1;
}
.page-hero h1 em { color: var(--gold); font-style: italic; }

/* ─── About page ─── */
.about-main { padding: 5rem 0; }
.about-layout {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 4rem;
  align-items: start;
}
.profile-card {
  background: var(--warm-white);
  border: 1px solid var(--ice);
  border-top: 3px solid var(--gold);
  padding: 2rem;
  border-radius: 2px;
}
.profile-initials {
  width: 72px; height: 72px;
  background: var(--navy);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 1rem;
}
.profile-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--navy);
}
.profile-title {
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.5px;
  margin-top: 2px;
}
.profile-divider {
  height: 1px;
  background: var(--ice);
  margin: 1.25rem 0;
}
.profile-detail {
  font-size: 13px;
  color: var(--text-mid);
  padding: 0.3rem 0;
}
.quals-card {
  margin-top: 1.5rem;
  background: var(--white);
  border: 1px solid var(--ice);
  padding: 1.5rem;
}
.quals-title {
  font-family: var(--font-condensed);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.qual-item { margin-bottom: 1rem; }
.qual-degree {
  font-size: 13px;
  font-weight: 500;
  color: var(--navy);
}
.qual-school {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 2px;
}
.about-body h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--gold);
  display: inline-block;
}
.about-body p { color: var(--text-mid); line-height: 1.8; margin-bottom: 1rem; font-size: 0.95rem; }
.about-body .lead { font-size: 1.05rem; color: var(--text); font-weight: 400; }
.career-timeline { margin-top: 1.5rem; }
.career-item {
  padding: 1.75rem 0 1.75rem 1.5rem;
  border-left: 2px solid var(--ice);
  margin-bottom: 0.5rem;
  position: relative;
}
.career-item::before {
  content: '';
  position: absolute;
  left: -5px; top: 2rem;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold);
}
.career-meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 0.25rem;
  gap: 1rem;
}
.career-company {
  font-family: var(--font-condensed);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--navy);
}
.career-period {
  font-size: 12px;
  color: var(--gold);
  white-space: nowrap;
}
.career-role {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.career-item p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.65; }

/* ─── Services detail ─── */
.services-detail { padding: 5rem 0; }
.service-detail-item {
  padding: 4rem 0;
  border-bottom: 1px solid var(--ice);
}
.service-detail-item:last-child { border-bottom: none; }
.service-detail-header {
  display: flex;
  align-items: baseline;
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.service-detail-num {
  font-family: var(--font-condensed);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  color: var(--gold);
  flex-shrink: 0;
}
.service-detail-item h2 {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.1;
}
.service-detail-body .lead {
  font-size: 1.05rem;
  color: var(--text-mid);
  line-height: 1.75;
  max-width: 700px;
  margin-bottom: 2.5rem;
}
.service-detail-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}
.service-detail-cols h4 {
  font-family: var(--font-condensed);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.service-detail-cols ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.service-detail-cols ul li {
  font-size: 0.9rem;
  color: var(--text-mid);
  padding-left: 1rem;
  position: relative;
}
.service-detail-cols ul li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.8rem;
}
.track-record { display: flex; flex-direction: column; gap: 1rem; }
.track-item {
  background: var(--warm-white);
  border-left: 3px solid var(--gold);
  padding: 1rem 1.25rem;
}
.track-num {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}
.track-desc { font-size: 0.82rem; color: var(--text-muted); margin-top: 0.25rem; line-height: 1.5; }

/* ─── Contact page ─── */
.contact-main { padding: 5rem 0; }
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: start;
}
.contact-info h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 1.25rem;
}
.contact-info p { color: var(--text-mid); line-height: 1.8; font-size: 0.95rem; margin-bottom: 2rem; }
.contact-methods { display: flex; flex-direction: column; gap: 0; }
.contact-method {
  padding: 1rem 0;
  border-bottom: 1px solid var(--ice);
}
.contact-method:first-child { border-top: 1px solid var(--ice); }
.contact-method-label {
  font-family: var(--font-condensed);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.25rem;
}
.contact-method-value { font-size: 0.95rem; color: var(--navy); font-weight: 500; }
a.contact-method-value:hover { color: var(--gold); }
.response-note {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-top: 2rem;
  padding: 1.25rem;
  background: var(--warm-white);
  border-left: 3px solid var(--gold);
}
.response-note-icon { color: var(--gold); font-size: 1.2rem; flex-shrink: 0; margin-top: 2px; }
.response-note p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.6; margin: 0; }
.contact-form-wrap h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 2rem;
}
.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label {
  font-family: var(--font-condensed);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--navy);
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--ice);
  border-radius: 2px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text);
  background: var(--white);
  transition: border-color 0.2s;
  outline: none;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); }
.form-group textarea { resize: vertical; }
.form-note {
  font-size: 12px;
  color: var(--text-muted);
  text-align: center;
  margin-top: 0.5rem;
}
.form-success {
  text-align: center;
  padding: 3rem 2rem;
  background: var(--warm-white);
  border: 1px solid var(--ice);
  border-top: 3px solid var(--gold);
}
.success-icon {
  font-size: 2.5rem;
  color: var(--gold);
  margin-bottom: 1rem;
}
.form-success h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--navy);
  margin-bottom: 0.75rem;
}
.form-success p { color: var(--text-muted); font-size: 0.95rem; }

/* ─── Animations ─── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ─── Responsive ─── */
@media (max-width: 900px) {
  .about-strip-inner { grid-template-columns: 1fr; gap: 3rem; }
  .about-layout { grid-template-columns: 1fr; }
  .about-sidebar { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
  .contact-layout { grid-template-columns: 1fr; gap: 3rem; }
  .service-detail-cols { grid-template-columns: 1fr; gap: 2rem; }
  .footer-inner { grid-template-columns: 1fr; gap: 1.5rem; }
  .career-meta { flex-direction: column; gap: 0.1rem; }
}

@media (max-width: 680px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: var(--nav-h); left: 0; right: 0; background: var(--navy); padding: 1rem 0; border-bottom: 1px solid rgba(196,154,42,0.2); }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
  .nav-link { padding: 0.75rem 2rem; width: 100%; }
  .hero-content { padding: 4rem 1.5rem 3rem; margin-left: 0; }
  .hero-stats { gap: 1.25rem; }
  .stat-divider { display: none; }
  .about-sidebar { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .sectors-list .dot { margin: 0 0.4rem; }
  .service-detail-header { flex-direction: column; gap: 0.5rem; }
}

/* ─── Testimonials ─── */
.testimonials {
  padding: 6rem 0;
  background: var(--warm-white);
  border-top: 1px solid var(--ice);
  border-bottom: 1px solid var(--ice);
}
.testimonials .section-eyebrow {
  text-align: center;
  margin-bottom: 2.5rem;
}
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(480px, 1fr));
  gap: 2rem;
  max-width: 860px;
  margin: 0 auto;
}
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--ice);
  border-top: 3px solid var(--gold);
  padding: 2.5rem 3rem;
  position: relative;
  border-radius: 2px;
}
.testimonial-quote {
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--gold);
  line-height: 0.5;
  margin-bottom: 1.5rem;
  opacity: 0.6;
}
.testimonial-card p {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 1rem;
  font-style: italic;
}
.testimonial-author {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--ice);
}
.testimonial-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy);
}
.testimonial-title {
  font-size: 12px;
  color: var(--gold);
  font-family: var(--font-condensed);
  letter-spacing: 1px;
  margin-top: 3px;
}
