/* ============================================================
   ZENTRALIS MARKETING GROUP — Global Stylesheet
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,400;0,9..144,600;0,9..144,700;1,9..144,300;1,9..144,400&family=Inter:wght@300;400;500;600&display=swap');

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

:root {
  --ink:       #1a2332;
  --ink-2:     #243044;
  --paper:     #f3f5f7;
  --white:     #ffffff;
  --gold:      #c0634a;
  --gold-lt:   #d07460;
  --muted:     #6b7a8d;
  --border:    #dce1e8;
  --serif:     'Fraunces', Georgia, serif;
  --sans:      'Inter', system-ui, sans-serif;
  --ease:      cubic-bezier(0.22, 1, 0.36, 1);
  --nav-h:     72px;
}

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

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { border: none; background: none; cursor: pointer; font: inherit; }

/* ── Typography ───────────────────────────────────────────── */
.display-xl {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -0.02em;
}
.display-lg {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4.5vw, 4rem);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.display-md {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.015em;
}
.label {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.body-lg { font-size: 1.0625rem; line-height: 1.75; }
.body-sm { font-size: 0.875rem; line-height: 1.65; }

/* ── Navigation ───────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  padding: 0 clamp(1.5rem, 5vw, 4rem);
  transition: background 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.nav.scrolled {
  background: rgba(15, 17, 23, 0.97);
  box-shadow: 0 1px 0 rgba(255,255,255,0.06);
  backdrop-filter: blur(12px);
}
.nav.light { color: var(--ink); }
.nav.light.scrolled { background: rgba(248,247,244,0.97); box-shadow: 0 1px 0 var(--border); }

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--white);
}
.nav.light .nav__logo { color: var(--ink); }

.nav__logo-mark {
  width: 38px; height: 38px;
  background: transparent;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}
.nav__logo-text {
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.2;
}
.nav__logo-sub {
  font-family: var(--sans);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.65;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: clamp(1.2rem, 2.5vw, 2rem);
}
.nav__link {
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.75);
  transition: color 0.2s;
  position: relative;
}
.nav.light .nav__link { color: rgba(15,17,23,0.65); }
.nav__link:hover, .nav__link.active { color: var(--white); }
.nav.light .nav__link:hover, .nav.light .nav__link.active { color: var(--ink); }
.nav__link.active::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 1.5px;
  background: var(--gold);
}

.nav__x {
  display: flex;
  align-items: center;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}
.nav.light .nav__x { color: rgba(15,17,23,0.5); }
.nav__x:hover { color: var(--white); }
.nav.light .nav__x:hover { color: var(--ink); }
.nav__x svg { width: 16px; height: 16px; }

.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 1.25rem;
  background: var(--gold);
  color: var(--white);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  border-radius: 3px;
  transition: background 0.2s, transform 0.2s;
}
.btn-cta:hover { background: var(--gold-lt); transform: translateY(-1px); }

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 24px;
  cursor: pointer;
  padding: 4px 0;
}
.nav__burger span {
  display: block;
  height: 1.5px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.3s, width 0.3s;
}
.nav.light .nav__burger span { background: var(--ink); }
.nav__burger span:nth-child(2) { width: 18px; }
.nav__burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; transform: translateX(8px); }
.nav__burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); width: 24px; }

.nav__mobile {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--ink);
  z-index: 99;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 2rem clamp(1.5rem, 6vw, 4rem);
  gap: 0.25rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s var(--ease);
}
.nav__mobile.open { opacity: 1; pointer-events: all; }
.nav__mobile-link {
  font-family: var(--serif);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 300;
  color: rgba(255,255,255,0.8);
  line-height: 1.3;
  transition: color 0.2s;
}
.nav__mobile-link:hover, .nav__mobile-link.active { color: var(--gold); }
.nav__mobile-footer {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  width: 100%;
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav__mobile-contact {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.5);
}

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  font-family: var(--sans);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  border-radius: 3px;
  transition: all 0.2s var(--ease);
  cursor: pointer;
}
.btn-primary {
  background: var(--gold);
  color: var(--white);
  border: 1.5px solid var(--gold);
}
.btn-primary:hover { background: var(--gold-lt); border-color: var(--gold-lt); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(196,151,58,0.3); }

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.35);
}
.btn-outline-white:hover { border-color: var(--white); background: rgba(255,255,255,0.07); transform: translateY(-2px); }

.btn-outline-dark {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid rgba(15,17,23,0.25);
}
.btn-outline-dark:hover { border-color: var(--ink); background: rgba(15,17,23,0.04); transform: translateY(-2px); }

.btn-arrow::after { content: '→'; font-size: 1em; transition: transform 0.2s; }
.btn-arrow:hover::after { transform: translateX(3px); }

/* ── Layout ───────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 4rem);
}
.container--wide { max-width: 1440px; }
.container--narrow { max-width: 760px; }

.section { padding: clamp(4rem, 8vw, 8rem) 0; }
.section-sm { padding: clamp(3rem, 5vw, 5rem) 0; }

/* ── Hero ─────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  background: var(--ink);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: clamp(4rem, 8vw, 7rem);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 70% at 60% 30%, rgba(196,151,58,0.08) 0%, transparent 65%),
              linear-gradient(160deg, rgba(30,34,48,0.6) 0%, transparent 60%);
  pointer-events: none;
}
.hero__grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
}
.hero__eyebrow {
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.hero__headline {
  color: var(--white);
  max-width: 14ch;
}
.hero__headline em {
  font-style: italic;
  color: var(--gold);
}
.hero__sub {
  color: rgba(255,255,255,0.55);
  max-width: 480px;
  margin-top: 1.75rem;
  font-size: 1rem;
  line-height: 1.75;
}
.hero__actions {
  margin-top: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}
.hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  right: clamp(1.5rem, 5vw, 4rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.35);
}
.hero__scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.3), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50% { opacity: 0.7; transform: scaleY(1.2); }
}

/* ── Stats Bar ────────────────────────────────────────────── */
.stats-bar {
  background: var(--gold);
  padding: clamp(2.5rem, 4vw, 3.5rem) 0;
}
.stats-bar__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 2rem 3rem;
}
.stat__number {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1;
}
.stat__label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  margin-top: 0.4rem;
}

/* ── Intro Section ────────────────────────────────────────── */
.intro {
  background: var(--white);
}
.intro__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.intro__tag { color: var(--gold); margin-bottom: 1rem; }
.intro__body { color: var(--muted); margin-top: 1.5rem; }
.intro__list { margin-top: 2rem; display: flex; flex-direction: column; gap: 0.75rem; }
.intro__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9375rem;
  color: var(--ink);
}
.intro__list li::before {
  content: '';
  width: 20px;
  height: 1.5px;
  background: var(--gold);
  margin-top: 0.6em;
  flex-shrink: 0;
}
.intro__visual {
  position: relative;
  aspect-ratio: 4/5;
  background: var(--paper);
  border-radius: 2px;
  overflow: hidden;
}
.intro__visual-inner {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--ink-2) 0%, var(--ink) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.intro__visual-quote {
  max-width: 280px;
  text-align: center;
  color: var(--white);
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.25rem;
  line-height: 1.5;
  font-weight: 300;
  padding: 2rem;
}
.intro__visual-quote cite {
  display: block;
  margin-top: 1rem;
  font-family: var(--sans);
  font-style: normal;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}
.intro__accent-bar {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 4px;
  background: var(--gold);
}

/* ── Services Grid ────────────────────────────────────────── */
.services-preview {
  background: var(--paper);
}
.services-preview__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 4rem;
}
.services-preview__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5px;
  background: var(--border);
  border: 1.5px solid var(--border);
}
.service-card {
  background: var(--white);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: background 0.3s var(--ease);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width 0.4s var(--ease);
}
.service-card:hover { background: var(--ink); }
.service-card:hover .service-card__icon { color: var(--gold); }
.service-card:hover .service-card__title { color: var(--white); }
.service-card:hover .service-card__body { color: rgba(255,255,255,0.55); }
.service-card:hover::before { width: 100%; }

.service-card__num {
  font-family: var(--serif);
  font-size: 0.8rem;
  color: var(--gold);
  font-weight: 400;
}
.service-card__icon { color: var(--muted); transition: color 0.3s; font-size: 1.25rem; }
.service-card__title {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--ink);
  line-height: 1.3;
  transition: color 0.3s;
}
.service-card__body {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.65;
  transition: color 0.3s;
}

/* ── Clients Preview ──────────────────────────────────────── */
.clients-preview {
  background: var(--ink);
  color: var(--white);
}
.clients-preview__tag { color: var(--gold); margin-bottom: 1.5rem; }
.clients-preview__headline { color: var(--white); }
.clients-preview__sectors {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.08);
  margin-top: 4rem;
  border: 1px solid rgba(255,255,255,0.08);
}
.sector {
  background: var(--ink);
  padding: 2.5rem 2rem;
  border-bottom: 2px solid transparent;
  transition: border-color 0.3s, background 0.3s;
}
.sector:hover { background: var(--ink-2); border-color: var(--gold); }
.sector__icon {
  width: 40px; height: 40px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 2px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  margin-bottom: 1.25rem;
  color: var(--gold);
}
.sector__title {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.sector__body { font-size: 0.875rem; color: rgba(255,255,255,0.5); line-height: 1.65; }

/* ── Quote Section ────────────────────────────────────────── */
.quote-section {
  background: var(--paper);
  text-align: center;
}
.quote-section__mark {
  font-family: var(--serif);
  font-size: 5rem;
  line-height: 0.8;
  color: var(--gold);
  opacity: 0.4;
  margin-bottom: 1rem;
}
.quote-section__text {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 3vw, 2.25rem);
  font-weight: 300;
  font-style: italic;
  color: var(--ink);
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.4;
}
.quote-section__attr {
  margin-top: 2rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ── CTA Strip ────────────────────────────────────────────── */
.cta-strip {
  background: var(--ink);
  display: flex;
  align-items: center;
  padding: clamp(3rem, 6vw, 6rem) 0;
}
.cta-strip__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap;
}
.cta-strip__text { color: var(--white); }
.cta-strip__sub { color: rgba(255,255,255,0.5); font-size: 0.9375rem; margin-top: 0.5rem; }

/* ── Footer ───────────────────────────────────────────────── */
.footer {
  background: #080b10;
  color: var(--white);
  padding: clamp(3rem, 6vw, 5rem) 0 2rem;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer__logo { margin-bottom: 1.25rem; }
.footer__desc {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
  max-width: 340px;
}
.footer__nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.4rem 3rem;
  margin-top: 2rem;
}
.footer__nav-link {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.45);
  transition: color 0.2s;
  padding: 0.2rem 0;
}
.footer__nav-link:hover { color: var(--white); }

.footer__contacts-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.footer__contact-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-bottom: 1.25rem;
}
.footer__contact-type {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
}
.footer__contact-val {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.8);
  transition: color 0.2s;
}
.footer__contact-val:hover { color: var(--gold); }
.footer__social {
  margin-top: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.footer__social-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
}
.footer__social-link:hover { color: var(--white); }
.footer__social-link svg { width: 15px; height: 15px; }

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding-top: 1.75rem;
}
.footer__copy {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.25);
}
.footer__legal {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.footer__legal-link {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.25);
  transition: color 0.2s;
}
.footer__legal-link:hover { color: rgba(255,255,255,0.6); }

/* ── Page Hero (inner pages) ──────────────────────────────── */
.page-hero {
  background: var(--ink);
  padding-top: calc(var(--nav-h) + clamp(4rem, 7vw, 7rem));
  padding-bottom: clamp(4rem, 7vw, 7rem);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(196,151,58,0.06) 0%, transparent 60%);
  pointer-events: none;
}
.page-hero__tag { color: var(--gold); margin-bottom: 1.25rem; }
.page-hero__headline { color: var(--white); }
.page-hero__sub {
  color: rgba(255,255,255,0.5);
  max-width: 520px;
  margin-top: 1.5rem;
  font-size: 1rem;
}

/* ── About Page ───────────────────────────────────────────── */
.mission-section {
  background: var(--white);
}
.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
}
.mission-body { color: var(--muted); margin-top: 1.5rem; font-size: 1.0625rem; line-height: 1.8; }
.mission-pillars { display: flex; flex-direction: column; gap: 2rem; margin-top: 2.5rem; }
.pillar { border-left: 2px solid var(--gold); padding-left: 1.5rem; }
.pillar__title {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 0.4rem;
}
.pillar__body { font-size: 0.875rem; color: var(--muted); line-height: 1.65; }
.leadership-section { background: var(--paper); }
.leadership-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
.leader-card {
  background: var(--white);
  border-radius: 2px;
  overflow: hidden;
}
.leader-card__img {
  aspect-ratio: 1;
  background: var(--ink-2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--gold);
}
.leader-card__body { padding: 1.25rem 1.5rem; }
.leader-card__name { font-family: var(--serif); font-size: 1.05rem; font-weight: 400; color: var(--ink); }
.leader-card__role { font-size: 0.78rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gold); margin-top: 0.25rem; }
.values-section { background: var(--ink); color: var(--white); }
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
.value-item { padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.1); }
.value-item__num { font-family: var(--serif); font-size: 2rem; color: var(--gold); font-weight: 300; margin-bottom: 0.75rem; }
.value-item__title { font-family: var(--serif); font-size: 1.1rem; font-weight: 400; color: var(--white); margin-bottom: 0.5rem; }
.value-item__body { font-size: 0.875rem; color: rgba(255,255,255,0.5); line-height: 1.65; }

/* ── Services Page ────────────────────────────────────────── */
.services-intro { background: var(--white); }
.service-detail {
  padding: clamp(4rem, 7vw, 7rem) 0;
  border-top: 1px solid var(--border);
}
.service-detail:nth-child(even) { background: var(--paper); }
.service-detail__inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 5rem;
  align-items: start;
}
.service-detail__num {
  font-family: var(--serif);
  font-size: 4rem;
  font-weight: 300;
  color: var(--gold);
  opacity: 0.4;
  line-height: 1;
}
.service-detail__title {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 400;
  color: var(--ink);
  margin-top: 0.5rem;
}
.service-detail__body { color: var(--muted); font-size: 1rem; line-height: 1.8; }
.service-detail__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  margin-top: 2rem;
}
.service-detail__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.875rem;
  color: var(--ink);
}
.service-detail__list li::before {
  content: '·';
  color: var(--gold);
  font-size: 1.25rem;
  line-height: 1.2;
  flex-shrink: 0;
}

/* ── Clients Page ─────────────────────────────────────────── */
.clients-intro { background: var(--white); }
.clients-sectors {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5px;
  background: var(--border);
  border: 1.5px solid var(--border);
  margin-top: 4rem;
}
.client-sector-card {
  background: var(--white);
  padding: 2.5rem 2rem;
  transition: background 0.3s;
}
.client-sector-card:hover { background: var(--paper); }
.client-sector-card__icon { font-size: 2rem; margin-bottom: 1rem; }
.client-sector-card__title { font-family: var(--serif); font-size: 1.15rem; font-weight: 400; color: var(--ink); margin-bottom: 0.5rem; }
.client-sector-card__body { font-size: 0.875rem; color: var(--muted); line-height: 1.65; }
.approach-section { background: var(--ink); color: var(--white); }
.approach-steps {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
.approach-step { position: relative; padding-top: 1.5rem; }
.approach-step::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 1px;
  background: rgba(255,255,255,0.1);
}
.approach-step__n { font-family: var(--serif); font-size: 2.5rem; font-weight: 300; color: var(--gold); margin-bottom: 1rem; }
.approach-step__title { font-family: var(--serif); font-size: 1.1rem; font-weight: 400; color: var(--white); margin-bottom: 0.5rem; }
.approach-step__body { font-size: 0.875rem; color: rgba(255,255,255,0.5); line-height: 1.65; }

/* ── Contact Page ─────────────────────────────────────────── */
.contact-section { background: var(--white); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 6rem;
  align-items: start;
}
.contact-info__tag { color: var(--gold); margin-bottom: 1rem; }
.contact-detail { margin-top: 2.5rem; display: flex; flex-direction: column; gap: 1.5rem; }
.contact-item__type {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.25rem;
}
.contact-item__val { font-size: 1rem; color: var(--ink); }
.contact-item__val a { color: var(--ink); transition: color 0.2s; }
.contact-item__val a:hover { color: var(--gold); }
.contact-social { margin-top: 2rem; display: flex; align-items: center; gap: 0.75rem; }
.contact-social__link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--muted);
  padding: 0.5rem 1rem;
  border: 1px solid var(--border);
  border-radius: 3px;
  transition: all 0.2s;
}
.contact-social__link:hover { border-color: var(--ink); color: var(--ink); }

/* ── Form ─────────────────────────────────────────────────── */
.form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.field { display: flex; flex-direction: column; gap: 0.4rem; }
.field__label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
}
.field__label span { color: var(--gold); }
.field__input,
.field__select,
.field__textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: 3px;
  font-family: var(--sans);
  font-size: 0.9375rem;
  color: var(--ink);
  background: var(--white);
  transition: border-color 0.2s;
  outline: none;
}
.field__input:focus,
.field__select:focus,
.field__textarea:focus { border-color: var(--gold); }
.field__input.error,
.field__textarea.error { border-color: #dc2626; }
.field__error { font-size: 0.78rem; color: #dc2626; margin-top: 0.25rem; display: none; }
.field__error.show { display: block; }
.field__textarea { resize: vertical; min-height: 120px; }
.form__submit { margin-top: 0.5rem; }
#form-success {
  display: none;
  text-align: center;
  padding: 3rem 2rem;
  background: var(--paper);
  border-radius: 3px;
  border: 1.5px solid var(--border);
}
#form-success.show { display: flex; flex-direction: column; align-items: center; gap: 1rem; }
.form-success__icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: rgba(196,151,58,0.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
}
.form-success__title { font-family: var(--serif); font-size: 1.4rem; font-weight: 400; color: var(--ink); }
.form-success__body { font-size: 0.9375rem; color: var(--muted); }

/* ── Legal Pages ──────────────────────────────────────────── */
.legal-section { background: var(--white); }
.legal-content { max-width: 760px; }
.legal-content h2 {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--ink);
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
}
.legal-content h3 {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--ink);
  margin-top: 1.75rem;
  margin-bottom: 0.5rem;
}
.legal-content p {
  font-size: 0.9375rem;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 1rem;
}
.legal-content ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}
.legal-content ul li {
  font-size: 0.9375rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 0.4rem;
}
.legal-content a { color: var(--gold); }
.legal-content a:hover { text-decoration: underline; }
.legal-date { font-size: 0.8rem; color: var(--gold); font-weight: 500; letter-spacing: 0.06em; margin-bottom: 2rem; }

/* ── Animations ───────────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-up.delay-1 { transition-delay: 0.1s; }
.fade-up.delay-2 { transition-delay: 0.2s; }
.fade-up.delay-3 { transition-delay: 0.3s; }
.fade-up.delay-4 { transition-delay: 0.4s; }
.fade-up.delay-5 { transition-delay: 0.5s; }

/* ── Section Headers ──────────────────────────────────────── */
.section-tag { color: var(--gold); margin-bottom: 1rem; }
.section-header { margin-bottom: 3rem; }
.section-header p { color: var(--muted); max-width: 520px; margin-top: 1rem; font-size: 0.9375rem; }

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 900px) {
  .nav__links, .nav__x, .btn-cta { display: none; }
  .nav__burger { display: flex; }
  .nav__mobile { display: flex; }
  .intro__grid, .mission-grid, .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .intro__visual { aspect-ratio: 4/3; }
  .service-detail__inner { grid-template-columns: 1fr; gap: 1.5rem; }
  .clients-preview__sectors { grid-template-columns: 1fr 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 3rem; }
  .services-preview__header { flex-direction: column; align-items: flex-start; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .clients-preview__sectors { grid-template-columns: 1fr; }
  .stats-bar__grid { grid-template-columns: 1fr 1fr; }
  .hero__actions { flex-direction: column; align-items: flex-start; }
  .cta-strip__inner { flex-direction: column; align-items: flex-start; gap: 2rem; }
  .footer__nav { grid-template-columns: 1fr; }
  .service-detail__list { grid-template-columns: 1fr; }
  .leadership-grid { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
}
