/* ============================================================
   EAIC.UK — Site Stylesheet
   Palette: Oxford Blue · White · Gold
   ============================================================ */

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

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

:root {
  --oxford:    #0d2140;
  --oxford-mid:#162d54;
  --oxford-lt: #1e3d6e;
  --gold:      #c9922a;
  --gold-lt:   #e0aa42;
  --gold-pale: #f5edd8;
  --white:     #ffffff;
  --off-white: #f7f6f3;
  --stone:     #ede9e1;
  --ink:       #1a1a1a;
  --ink-mid:   #3d3d3d;
  --ink-muted: #6b6b6b;
  --ink-faint: #9a9a9a;
  --border:    rgba(13,33,64,.12);
  --border-mid:rgba(13,33,64,.2);

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;

  --max-w:  1200px;
  --gutter: clamp(1.25rem, 5vw, 3rem);
  --section-gap: clamp(3rem, 5.5vw, 5rem);
}

html { font-size: 16px; scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: var(--font-body); cursor: pointer; border: none; background: none; }

/* ── Typography Scale ───────────────────────────────────── */
.display {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.8rem, 6vw, 5.2rem);
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: var(--oxford);
}
.display em { font-style: italic; color: var(--gold); }

h1 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--oxford);
}
h1 em { font-style: italic; }

h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  line-height: 1.2;
  color: var(--oxford);
}

h3 {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 1.1rem;
  letter-spacing: 0.01em;
  color: var(--oxford);
}

p { line-height: 1.7; }

.eyebrow {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}

.lead {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  line-height: 1.75;
  color: var(--ink-mid);
  max-width: 52ch;
}

/* ── Layout ─────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.section { padding: var(--section-gap) 0; }
.section--sm { padding: clamp(2rem, 3.5vw, 3rem) 0; }
.section--flush-top { padding-top: 0; }

/* ── Navigation ─────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav__inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  height: 64px;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
  text-decoration: none;
}

.nav__logo-mark {
  width: 32px;
  height: 32px;
  background: var(--oxford);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: -0.03em;
  flex-shrink: 0;
}

.nav__logo-text {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 0.04em;
  color: var(--oxford);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 0.1rem;
  list-style: none;
  margin-left: 1rem;
}

.nav__links a {
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--ink-mid);
  padding: 0.4rem 0.8rem;
  border-radius: 4px;
  transition: color 0.15s, background 0.15s;
  white-space: nowrap;
}

.nav__links a:hover { color: var(--oxford); background: var(--off-white); }
.nav__links a.active { color: var(--oxford); font-weight: 500; }

.nav__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-left: auto;
  flex-shrink: 0;
}

.nav__mobile-toggle {
  display: none;
  padding: 0.5rem;
  color: var(--oxford);
}

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.65rem 1.4rem;
  border-radius: 5px;
  transition: all 0.18s;
  white-space: nowrap;
  cursor: pointer;
  text-decoration: none;
}

.btn--primary {
  background: var(--oxford);
  color: var(--white);
  border: 1.5px solid var(--oxford);
}
.btn--primary:hover {
  background: var(--oxford-lt);
  border-color: var(--oxford-lt);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(13,33,64,.22);
}

.btn--gold {
  background: var(--gold);
  color: var(--white);
  border: 1.5px solid var(--gold);
}
.btn--gold:hover {
  background: var(--gold-lt);
  border-color: var(--gold-lt);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(201,146,42,.3);
}

.btn--outline {
  background: transparent;
  color: var(--oxford);
  border: 1.5px solid var(--border-mid);
}
.btn--outline:hover {
  border-color: var(--oxford);
  background: var(--off-white);
}

.btn--ghost {
  background: transparent;
  color: var(--ink-mid);
  border: 1.5px solid transparent;
  padding-left: 0;
  font-size: 0.875rem;
}
.btn--ghost:hover { color: var(--oxford); }
.btn--ghost .arrow { transition: transform 0.15s; }
.btn--ghost:hover .arrow { transform: translateX(3px); }

.btn--lg {
  font-size: 0.95rem;
  padding: 0.8rem 1.8rem;
}

.btn--sm {
  font-size: 0.8rem;
  padding: 0.5rem 1rem;
}

/* ── Hero ─────────────────────────────────────────────────── */
.hero {
  background: var(--oxford);
  color: var(--white);
  padding: clamp(2.5rem, 5vw, 4.5rem) 0 clamp(2rem, 3.5vw, 3rem);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -20%;
  width: 70%;
  height: 140%;
  background: radial-gradient(ellipse at center, rgba(201,146,42,.07) 0%, transparent 65%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,146,42,.3), transparent);
}

.hero .container { position: relative; z-index: 1; }

.hero .eyebrow { color: var(--gold-lt); margin-bottom: 1rem; }

.hero h1 {
  color: var(--white);
  max-width: 15ch;
  margin-bottom: 1.25rem;
}

.hero h1 em { color: var(--gold-lt); font-style: italic; }

.hero .lead {
  color: rgba(255,255,255,.78);
  max-width: 54ch;
  margin-bottom: 2rem;
}

.hero__ctas {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3.5rem;
}

.hero__ctas .btn--ghost { color: rgba(255,255,255,.75); }
.hero__ctas .btn--ghost:hover { color: var(--white); }

/* hero__stats — defined in layout section below */

/* ── Problem statement ──────────────────────────────────── */
.problem {
  background: var(--off-white);
  border-top: 1px solid var(--stone);
  border-bottom: 1px solid var(--stone);
}

.problem__inner {
  max-width: 700px;
}

.problem h2 { margin-bottom: 1.5rem; }

.problem p { color: var(--ink-mid); margin-bottom: 1rem; }
.problem p:last-of-type { margin-bottom: 1.75rem; }

/* ── Three steps ────────────────────────────────────────── */
.steps__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  margin-top: 3rem;
}

.step {
  padding: 2.5rem 2rem;
  border-right: 1px solid var(--border);
  position: relative;
}
.step:last-child { border-right: none; }

.step__num {
  width: 36px;
  height: 36px;
  background: var(--oxford);
  color: var(--gold-lt);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 1.25rem;
}

.step h3 { margin-bottom: 0.75rem; font-size: 1.1rem; }

.step p { font-size: 0.9rem; color: var(--ink-muted); line-height: 1.65; }

/* Arrow connector between steps */
.step::after {
  content: '→';
  position: absolute;
  right: -14px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--white);
  color: var(--gold);
  font-size: 1.1rem;
  z-index: 2;
  padding: 2px;
}
.step:last-child::after { display: none; }

/* ── Products ────────────────────────────────────────────── */
.products__header {
  max-width: 600px;
  margin-bottom: 3rem;
}
.products__header .eyebrow { margin-bottom: 1rem; }
.products__header p { color: var(--ink-mid); }

.products__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.product-card {
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.product-card:hover {
  border-color: var(--border-mid);
  box-shadow: 0 4px 24px rgba(13,33,64,.07);
}

.product-card--sentinel { border-top: 3px solid var(--oxford); }
.product-card--citadel  { border-top: 3px solid var(--gold); }

.product-card__tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.7rem;
  border-radius: 3px;
  margin-bottom: 1.25rem;
}
.product-card--sentinel .product-card__tag { background: rgba(13,33,64,.08); color: var(--oxford); }
.product-card--citadel  .product-card__tag { background: var(--gold-pale); color: #7a5010; }

.product-card h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 500;
  margin-bottom: 0.4rem;
  color: var(--oxford);
}

.product-card__sub {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--ink-muted);
  margin-bottom: 1.25rem;
}

.product-card p {
  font-size: 0.9rem;
  color: var(--ink-mid);
  line-height: 1.7;
  flex-grow: 1;
  margin-bottom: 1.75rem;
}

.product-card__price {
  font-size: 0.8rem;
  color: var(--ink-muted);
  margin-bottom: 1.25rem;
  padding: 0.75rem;
  background: var(--off-white);
  border-radius: 5px;
  border: 1px solid var(--stone);
}

.product-card__price strong { color: var(--ink); }

.products__bridge {
  text-align: center;
  margin-top: 2rem;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--ink-muted);
}
.products__bridge strong { color: var(--oxford); font-style: normal; }

/* ── Platform screenshots ────────────────────────────────── */
.platform { background: var(--oxford); }

.platform .eyebrow { color: var(--gold-lt); margin-bottom: 1.25rem; }
.platform h2 { color: var(--white); margin-bottom: 1rem; }
.platform .lead { color: rgba(255,255,255,.7); margin-bottom: 3rem; }

.platform__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1.25rem;
  align-items: start;
}

.platform__card {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.1);
  transition: border-color 0.2s, transform 0.2s;
}
.platform__card:hover {
  border-color: rgba(201,146,42,.35);
  transform: translateY(-3px);
}

.platform__card:first-child {
  grid-column: span 2;
}

.platform__screenshot {
  width: 100%;
  display: block;
  aspect-ratio: 16/9;
  object-fit: cover;
  object-position: top left;
  background: var(--oxford-mid);
}

.platform__caption {
  padding: 1.25rem 1.25rem 1.5rem;
  background: rgba(255,255,255,.04);
  border-top: 1px solid rgba(255,255,255,.07);
}

.platform__caption h4 {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 0.4rem;
}

.platform__caption p {
  font-size: 0.8rem;
  color: rgba(255,255,255,.5);
  line-height: 1.55;
}

/* ── Case study pull-outs ────────────────────────────────── */
.cases__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 2.5rem;
  gap: 2rem;
  flex-wrap: wrap;
}
.cases__header .eyebrow { margin-bottom: 0.75rem; }

.cases__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.case-card {
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.case-card:hover {
  border-color: var(--border-mid);
  box-shadow: 0 4px 20px rgba(13,33,64,.08);
}

.case-card__sector {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.case-card__org {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--oxford);
  margin-bottom: 1.25rem;
}

.case-card__findings {
  list-style: none;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.case-card__findings li {
  font-size: 0.85rem;
  color: var(--ink-mid);
  padding: 0.4rem 0;
  padding-left: 1.25rem;
  position: relative;
  border-bottom: 1px solid var(--border);
  line-height: 1.5;
}
.case-card__findings li:first-child { border-top: 1px solid var(--border); }
.case-card__findings li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.75rem;
}

.case-card__outcome {
  font-size: 0.82rem;
  color: var(--ink-muted);
  padding: 0.85rem;
  background: var(--off-white);
  border-radius: 5px;
  line-height: 1.55;
  margin-bottom: 1rem;
}

.case-card__stat {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 500;
  color: var(--oxford);
}
.case-card__stat-label { font-size: 0.78rem; color: var(--ink-muted); }

/* ── Testimonial ─────────────────────────────────────────── */
.testimonial {
  background: var(--oxford);
  color: var(--white);
}

.testimonial__inner {
  max-width: 740px;
  margin: 0 auto;
  text-align: center;
}

.testimonial blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.5;
  color: rgba(255,255,255,.92);
  margin-bottom: 1.75rem;
}

.testimonial__attr {
  font-size: 0.82rem;
  color: rgba(255,255,255,.5);
  letter-spacing: 0.05em;
}
.testimonial__attr strong {
  display: block;
  color: rgba(255,255,255,.75);
  font-weight: 500;
  margin-bottom: 0.25rem;
  font-size: 0.875rem;
}

/* ── Final CTA ───────────────────────────────────────────── */
.cta-band {
  background: var(--off-white);
  border-top: 1px solid var(--stone);
  text-align: center;
}

.cta-band h2 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.5vw, 3rem);
  max-width: 18ch;
  margin: 0 auto 1.25rem;
}

.cta-band p {
  color: var(--ink-muted);
  max-width: 52ch;
  margin: 0 auto 2rem;
  font-size: 0.95rem;
}

.cta-band__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.cta-band__trust {
  font-size: 0.78rem;
  color: var(--ink-faint);
  letter-spacing: 0.03em;
}

/* ── Footer ──────────────────────────────────────────────── */
.footer {
  background: var(--oxford);
  color: rgba(255,255,255,.65);
  padding: 4rem 0 2.5rem;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
}

.footer__brand .nav__logo-text {
  color: var(--white);
  font-size: 1.1rem;
}

.footer__brand p {
  font-size: 0.82rem;
  line-height: 1.7;
  margin: 1rem 0;
  color: rgba(255,255,255,.5);
  max-width: 28ch;
}

.footer__address {
  font-size: 0.78rem;
  color: rgba(255,255,255,.38);
  line-height: 1.8;
  font-style: normal;
}

.footer__col h4 {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.38);
  margin-bottom: 1rem;
}

.footer__col ul { list-style: none; }

.footer__col li { margin-bottom: 0.6rem; }

.footer__col a {
  font-size: 0.875rem;
  color: rgba(255,255,255,.6);
  transition: color 0.15s;
}
.footer__col a:hover { color: var(--white); }

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,.1);
  font-size: 0.78rem;
  color: rgba(255,255,255,.3);
}

/* ── Utility ─────────────────────────────────────────────── */
.text-gold   { color: var(--gold); }
.text-oxford { color: var(--oxford); }
.text-muted  { color: var(--ink-muted); }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.gap-md { gap: 1rem; }
.flex { display: flex; }
.items-center { align-items: center; }
.flex-wrap { flex-wrap: wrap; }

/* ── Responsive ─────────────────────────────────────────── */
@media (max-width: 1024px) {
  .platform__grid { grid-template-columns: 1fr 1fr; }
  .platform__card:first-child { grid-column: span 2; }
}

@media (max-width: 860px) {
  .nav__links { display: none; }
  .nav__actions .btn--ghost { display: none; }
  .nav__mobile-toggle { display: block; }

  .products__grid { grid-template-columns: 1fr; }
  .cases__grid { grid-template-columns: 1fr; }
  .platform__grid { grid-template-columns: 1fr; }
  .platform__card:first-child { grid-column: span 1; }
  .steps__grid { grid-template-columns: 1fr; }
  .step::after { display: none; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .hero__stats { gap: 1.5rem; }
  .hero__stat { padding-right: 1.5rem; margin-right: 1.5rem; }
  .footer__grid { grid-template-columns: 1fr; gap: 2rem; }
  .cases__header { flex-direction: column; align-items: flex-start; }
}

/* ── Page-specific: inner pages ─────────────────────────── */
.page-hero {
  background: var(--oxford);
  color: var(--white);
  padding: clamp(2.5rem, 5vw, 4.5rem) 0 clamp(2rem, 3.5vw, 3rem);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -20%;
  width: 70%;
  height: 140%;
  background: radial-gradient(ellipse at center, rgba(201,146,42,.06) 0%, transparent 65%);
  pointer-events: none;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero .eyebrow { color: var(--gold-lt); margin-bottom: 1.25rem; }
.page-hero h1 { color: var(--white); margin-bottom: 1.25rem; }
.page-hero h1 em { color: var(--gold-lt); }
.page-hero .lead { color: rgba(255,255,255,.75); }
.page-hero__ctas { display: flex; align-items: center; flex-wrap: wrap; gap: 1rem; margin-top: 2rem; }
.page-hero__ctas .btn--ghost { color: rgba(255,255,255,.7); }
.page-hero__ctas .btn--ghost:hover { color: var(--white); }
/* page-hero also supports two-column layout */
.page-hero .hero__layout { align-items: start; }
.page-hero .hero__content { display: flex; flex-direction: column; }
.page-hero .hero__stats {
  border-top: 1px solid rgba(255,255,255,.12);
  padding-top: 2rem;
  margin-top: 2rem;
  width: 100%;
}


.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  color: rgba(255,255,255,.4);
  margin-bottom: 1.5rem;
}
.breadcrumb a { color: rgba(255,255,255,.45); transition: color 0.15s; }
.breadcrumb a:hover { color: rgba(255,255,255,.75); }
.breadcrumb span { color: rgba(255,255,255,.2); }

/* Mobile nav drawer */
.nav__drawer {
  display: none;
  position: fixed;
  inset: 64px 0 0 0;
  background: var(--white);
  z-index: 99;
  padding: 1.5rem var(--gutter);
  flex-direction: column;
  gap: 0.25rem;
  border-top: 1px solid var(--border);
  overflow-y: auto;
}
.nav__drawer.open { display: flex; }
.nav__drawer a {
  font-size: 1.05rem;
  color: var(--ink-mid);
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
  display: block;
}
.nav__drawer a:hover { color: var(--oxford); }
.nav__drawer__ctas {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

/* ── Real SVG logo ───────────────────────────────────────── */
.nav__logo { display: flex; align-items: center; text-decoration: none; flex-shrink: 0; }
.nav__logo-img { height: 36px; width: auto; display: block; }
.footer .nav__logo-img { height: 32px; opacity: .85; }
.footer .nav__logo-img:hover { opacity: 1; }

/* ── Animated mark + text logo ──────────────────────────── */
.nav__logo { display: flex; align-items: center; gap: 0.6rem; text-decoration: none; flex-shrink: 0; }
.nav__logo-mark-img { display: block; flex-shrink: 0; }
.nav__logo-wordmark {
  display: flex;
  flex-direction: column;
  gap: 0;
  line-height: 1;
}
.nav__logo-text {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.55rem;
  letter-spacing: 0.08em;
  color: var(--oxford);
  line-height: 1;
}
.nav__logo-sub {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.52rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  line-height: 1;
  margin-top: 0.2rem;
  white-space: nowrap;
}
.footer .nav__logo-text { color: var(--white); }
.footer .nav__logo-sub  { color: var(--gold-lt); opacity: 0.75; }
/* Remove old mark div if any still exist */
.nav__logo-mark { display: none; }

/* ── Hero two-column layout ─────────────────────────────── */
.hero__layout {
  display: grid;
  grid-template-columns: 55fr 45fr;
  gap: 2rem;
  align-items: start; /* top-align: SVG starts level with eyebrow */
}

.hero__content {
  display: flex;
  flex-direction: column;
}

.hero__graphic {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  opacity: 0.95;
  padding-top: 0;
}

.hero__graphic img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
}

/* Stats strip: full-width row below both columns */
.hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  border-top: 1px solid rgba(255,255,255,.12);
  padding-top: 2rem;
  margin-top: 2rem;
  width: 100%;
}

.hero__stat {
  padding: 0 2.5rem 0 0;
  margin-right: 2.5rem;
  border-right: 1px solid rgba(255,255,255,.12);
}
.hero__stat:last-child { border-right: none; padding-right: 0; margin-right: 0; }

.hero__stat-value {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 500;
  color: var(--gold-lt);
  line-height: 1;
  margin-bottom: 0.3rem;
}

.hero__stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,.55);
  font-weight: 400;
  letter-spacing: 0.02em;
}

@media (max-width: 960px) {
  .hero__layout { grid-template-columns: 1fr; }
  .hero__graphic { display: none; }
}

@media (min-width: 961px) and (max-width: 1100px) {
  .hero__layout {
    grid-template-columns: 58fr 42fr;
    gap: 1.5rem;
  }
}
