/* ═══════════════════════════════════════════════════════════════
   RACHAPARTNERS.COM — MAIN STYLESHEET
   Aesthetic: Editorial luxury · Dark authority · Typographic precision
   Palette: Near-black / warm ivory / deep gold accent
   ═══════════════════════════════════════════════════════════════ */

/* ─── CSS Custom Properties ─── */
:root {
  --ink:        #0f0e0d;
  --ink-soft:   #1e1c1a;
  --ink-mid:    #3a3632;
  --ivory:      #f5f1ea;
  --ivory-warm: #ede8df;
  --ivory-dim:  #d4cfc6;
  --gold:       #b8922a;
  --gold-light: #d4a93c;
  --gold-pale:  #f0e4c0;
  --slate:      #2a2724;
  --slate-mid:  #3d3a35;
  --white:      #ffffff;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;
  --font-mono:    'DM Mono', 'Courier New', monospace;

  --max-w: 1200px;
  --gap:   clamp(1.5rem, 4vw, 3rem);
  --section-pad: clamp(4rem, 8vw, 8rem);

  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out:   cubic-bezier(0.65, 0, 0.35, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

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

/* ─── Scrollbar ─── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--ivory); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

/* ─── Container ─── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 5vw, 3rem);
}

/* ─── Section Headers ─── */
.section-header {
  max-width: 680px;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}
.section-header--light .section-title,
.section-header--light .section-intro { color: var(--ivory); }
.section-header--light .section-eyebrow { color: var(--gold-light); }

.section-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 1.25rem;
}

.section-intro {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--ink-mid);
  max-width: 580px;
}

/* ─── Reveal Animations ─── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}
.reveal.is-visible { opacity: 1; transform: none; }
.reveal--delay-1 { transition-delay: 0.12s; }
.reveal--delay-2 { transition-delay: 0.24s; }
.reveal--delay-3 { transition-delay: 0.36s; }
.reveal--delay-4 { transition-delay: 0.48s; }

.reveal-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s var(--ease-out-expo), transform 0.7s var(--ease-out-expo);
}
.reveal-up.is-visible { opacity: 1; transform: none; }
.reveal-up--delay-1 { transition-delay: 0.1s; }
.reveal-up--delay-2 { transition-delay: 0.2s; }
.reveal-up--delay-3 { transition-delay: 0.3s; }

/* ══════════════════════════════════════════════════════════════
   NAV
══════════════════════════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem clamp(1.25rem, 5vw, 3rem);
  background: transparent;
  transition: background 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease;
}

.nav.scrolled {
  background: rgba(15, 14, 13, 0.96);
  backdrop-filter: blur(12px);
  padding-top: 0.9rem;
  padding-bottom: 0.9rem;
  box-shadow: 0 1px 0 rgba(184, 146, 42, 0.15);
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav__logo {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--ivory);
  letter-spacing: 0.02em;
}

.nav__divider {
  color: var(--gold);
  font-size: 1.1rem;
}

.nav__tagline {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  color: rgba(245, 241, 234, 0.45);
  text-transform: uppercase;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2.25rem;
}

.nav__links a {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245, 241, 234, 0.6);
  transition: color 0.2s ease;
}
.nav__links a:hover { color: var(--ivory); }

.nav__cta {
  color: var(--gold) !important;
  border: 1px solid rgba(184, 146, 42, 0.4);
  padding: 0.45rem 1rem;
  border-radius: 2px;
  transition: background 0.2s ease, color 0.2s ease !important;
}
.nav__cta:hover {
  background: var(--gold) !important;
  color: var(--ink) !important;
}

.nav__pdf {
  display: flex !important;
  align-items: center;
  gap: 0.4rem;
  color: rgba(245, 241, 234, 0.45) !important;
  font-size: 0.65rem !important;
  letter-spacing: 0.12em;
  transition: color 0.2s ease !important;
  padding: 0.45rem 0.5rem !important;
}
.nav__pdf:hover { color: var(--gold-light) !important; }

.mobile-link--pdf {
  font-family: var(--font-mono) !important;
  font-size: 0.8rem !important;
  letter-spacing: 0.12em;
  color: var(--gold) !important;
  text-transform: uppercase;
  margin-top: 1rem;
}

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav__hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--ivory);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav__mobile {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 99;
  background: var(--ink);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
.nav__mobile.open { display: flex; }
.nav__mobile ul { display: flex; flex-direction: column; align-items: center; gap: 2rem; }
.nav__mobile a {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 300;
  color: var(--ivory);
  letter-spacing: 0.05em;
}
.nav__mobile a:hover { color: var(--gold-light); }

/* ══════════════════════════════════════════════════════════════
   HERO
══════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--ink);
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

/* Subtle grid lines */
.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(184, 146, 42, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(184, 146, 42, 0.04) 1px, transparent 1px);
  background-size: 80px 80px;
}

/* Grain texture overlay */
.hero__grain {
  position: absolute;
  inset: 0;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 200px 200px;
}

/* Radial gradient spotlight */
.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  left: -10%;
  width: 70%;
  height: 120%;
  background: radial-gradient(ellipse at 30% 40%, rgba(184, 146, 42, 0.06) 0%, transparent 65%);
  z-index: 0;
}

/* Gold accent line */
.hero::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, transparent, var(--gold) 30%, var(--gold) 70%, transparent);
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 8rem clamp(1.25rem, 5vw, 3rem) 6rem;
  width: 100%;
}

.hero__eyebrow {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2rem;
}

.hero__headline {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 6.5rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ivory);
  margin-bottom: 2rem;
  max-width: 800px;
}

.hero__headline em {
  font-style: italic;
  color: var(--gold-light);
}

.hero__sub {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  line-height: 1.85;
  color: rgba(245, 241, 234, 0.6);
  max-width: 560px;
  margin-bottom: 3.5rem;
}

.hero__metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0;
  border: 1px solid rgba(184, 146, 42, 0.2);
  margin-bottom: 3rem;
  max-width: 860px;
}

.metric {
  padding: 1.5rem 1.75rem;
  border-right: 1px solid rgba(184, 146, 42, 0.15);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  position: relative;
  transition: background 0.3s ease;
}
.metric:last-child { border-right: none; }
.metric:hover { background: rgba(184, 146, 42, 0.05); }

.metric__number {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 300;
  color: var(--ivory);
  line-height: 1;
  letter-spacing: -0.02em;
}

.metric__plus {
  font-size: 0.7em;
  color: var(--gold);
}

.metric__label {
  font-size: 0.72rem;
  line-height: 1.5;
  color: rgba(245, 241, 234, 0.45);
  font-family: var(--font-mono);
}

.hero__cta {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: var(--gold-light);
  text-transform: uppercase;
  padding-bottom: 0.25rem;
  border-bottom: 1px solid rgba(212, 169, 60, 0.3);
  transition: color 0.2s ease, border-color 0.2s ease;
}
.hero__cta:hover {
  color: var(--ivory);
  border-color: rgba(245, 241, 234, 0.4);
}

.hero__scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.hero__scroll-indicator span {
  display: block;
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  50.01% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ══════════════════════════════════════════════════════════════
   APPROACH
══════════════════════════════════════════════════════════════ */
.approach {
  padding: var(--section-pad) 0;
  background: var(--ivory);
}

.approach__pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 0;
  border: 1px solid var(--ivory-dim);
}

.pillar {
  padding: 2.5rem 2rem;
  border-right: 1px solid var(--ivory-dim);
  border-bottom: 1px solid var(--ivory-dim);
  position: relative;
  transition: background 0.3s ease;
}

.pillar:nth-child(even) { background: var(--ivory-warm); }
.pillar:last-child { border-right: none; }
.pillar:hover { background: var(--gold-pale); }

/* Gold top accent on hover */
.pillar::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-out-expo);
}
.pillar:hover::before { transform: scaleX(1); }

.pillar__number {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 1rem;
}

.pillar__title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1.25;
  color: var(--ink);
  margin-bottom: 1rem;
}

.pillar__body {
  font-size: 0.88rem;
  line-height: 1.8;
  color: var(--ink-mid);
  margin-bottom: 1.5rem;
}

.pillar__proof {
  border-top: 1px solid var(--ivory-dim);
  padding-top: 1rem;
}

.proof-tag {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  line-height: 1.6;
  color: var(--gold);
  display: block;
}

/* ══════════════════════════════════════════════════════════════
   EVIDENCE / CASE STUDIES
══════════════════════════════════════════════════════════════ */
.evidence {
  padding: var(--section-pad) 0;
  background: var(--ink);
}

.evidence .section-title { color: var(--ivory); }
.evidence .section-intro { color: rgba(245, 241, 234, 0.55); }

.case {
  border: 1px solid rgba(184, 146, 42, 0.18);
  margin-bottom: 2px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s ease;
}
.case:hover { border-color: rgba(184, 146, 42, 0.4); }

.case--alt { border-color: rgba(245, 241, 234, 0.07); }
.case--alt:hover { border-color: rgba(184, 146, 42, 0.35); }

.case__label {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.25rem 2rem;
  background: rgba(184, 146, 42, 0.07);
  border-bottom: 1px solid rgba(184, 146, 42, 0.15);
  flex-wrap: wrap;
  gap: 0.75rem;
}

.case__domain {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ivory);
  letter-spacing: 0.02em;
}

.case__type {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(184, 146, 42, 0.3);
  padding: 0.2rem 0.6rem;
  border-radius: 2px;
}

.case__body {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 0;
}

@media (max-width: 900px) {
  .case__body { grid-template-columns: 1fr; }
}

.case__narrative {
  padding: 2.5rem 2rem;
  border-right: 1px solid rgba(184, 146, 42, 0.1);
}

.case__title {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-weight: 300;
  font-style: italic;
  color: var(--ivory);
  margin-bottom: 2rem;
  line-height: 1.3;
}

.case__criterion {
  margin-bottom: 1.75rem;
  padding-bottom: 1.75rem;
  border-bottom: 1px solid rgba(245, 241, 234, 0.06);
}
.case__criterion:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.criterion-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.2rem 0.65rem;
  border-radius: 2px;
  margin-bottom: 0.85rem;
}

.criterion-tag--miss     { background: rgba(184, 146, 42, 0.15); color: var(--gold-light); }
.criterion-tag--upstream { background: rgba(245, 241, 234, 0.08); color: var(--ivory-dim); }
.criterion-tag--owned    { background: rgba(184, 146, 42, 0.25); color: var(--gold); }
.criterion-tag--challenge { background: rgba(220, 80, 60, 0.12); color: #e0806a; }
.criterion-tag--method   { background: rgba(100, 160, 200, 0.12); color: #7ab8d8; }

/* Framework Legend */
.framework-legend {
  border: 1px solid rgba(184, 146, 42, 0.18);
  padding: 1.25rem 1.75rem;
  margin-bottom: 2px;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  background: rgba(184, 146, 42, 0.03);
}

.framework-legend__label {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  white-space: nowrap;
  flex-shrink: 0;
}

.framework-legend__steps {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.fstep {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.fstep__num {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(184, 146, 42, 0.2);
  border: 1px solid rgba(184, 146, 42, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 0.55rem;
  color: var(--gold);
  flex-shrink: 0;
}

.fstep__name {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.08em;
  color: rgba(245, 241, 234, 0.4);
  white-space: nowrap;
}

.fstep--outcome .fstep__name { color: var(--gold); }
.fstep--outcome .fstep__num  { background: rgba(184, 146, 42, 0.35); color: var(--gold-light); }

.fstep__arrow {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: rgba(184, 146, 42, 0.25);
}

/* Method pill on case label */
.case__method-pill {
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.1em;
  color: rgba(100, 160, 200, 0.7);
  border: 1px solid rgba(100, 160, 200, 0.2);
  padding: 0.18rem 0.55rem;
  border-radius: 2px;
}

/* Case step structure (replaces case__criterion) */
.case__step {
  margin-bottom: 0;
  padding: 1.4rem 0 1.4rem 1rem;
  border-left: 2px solid rgba(184, 146, 42, 0.1);
  margin-left: 0;
  transition: border-color 0.2s ease;
  margin-bottom: 0.25rem;
}
.case__step:hover { border-left-color: rgba(184, 146, 42, 0.35); }

.case__step--outcome {
  border-left-color: rgba(184, 146, 42, 0.35);
  background: rgba(184, 146, 42, 0.04);
  padding: 1.4rem 1rem;
  margin-left: 0;
}

.case__step-header {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 0.85rem;
  flex-wrap: wrap;
}

.step-num {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(184, 146, 42, 0.15);
  border: 1px solid rgba(184, 146, 42, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 0.58rem;
  color: var(--gold);
  flex-shrink: 0;
}

.step-label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(245, 241, 234, 0.5);
  font-weight: 400;
}

.case__step p {
  font-size: 0.875rem;
  line-height: 1.8;
  color: rgba(245, 241, 234, 0.6);
  margin-bottom: 0.65rem;
}
.case__step p:last-child { margin-bottom: 0; }
.case__step p em { color: var(--ivory); font-style: italic; }

/* Updated impact panel extras */
.impact-divider {
  height: 1px;
  background: rgba(184, 146, 42, 0.15);
  margin: 0.25rem 0;
}

.impact-method-block {
  margin-top: auto;
  padding-top: 0.5rem;
}

.impact-method-label {
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(100, 160, 200, 0.6);
  margin-bottom: 0.65rem;
}

.impact-method-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.impact-method-list li {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  line-height: 1.5;
  color: rgba(245, 241, 234, 0.3);
  padding-left: 0.75rem;
  position: relative;
}
.impact-method-list li::before {
  content: '·';
  position: absolute;
  left: 0;
  color: rgba(100, 160, 200, 0.4);
}

.case__criterion p {
  font-size: 0.88rem;
  line-height: 1.8;
  color: rgba(245, 241, 234, 0.6);
  margin-bottom: 0.75rem;
}
.case__criterion p:last-child { margin-bottom: 0; }

/* Impact panel */
.case__impact-panel {
  padding: 2.5rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  background: rgba(184, 146, 42, 0.04);
}

.impact-stat {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(184, 146, 42, 0.12);
}
.impact-stat:last-of-type { border-bottom: none; }

.impact-stat__value {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--gold-light);
  line-height: 1;
  letter-spacing: -0.02em;
}

.impact-stat__desc {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  line-height: 1.5;
  color: rgba(245, 241, 234, 0.4);
  letter-spacing: 0.05em;
}

.impact-note {
  font-size: 0.75rem;
  line-height: 1.6;
  color: rgba(184, 146, 42, 0.55);
  font-style: italic;
  border-top: 1px solid rgba(184, 146, 42, 0.15);
  padding-top: 1rem;
  margin-top: auto;
}

/* ══════════════════════════════════════════════════════════════
   INDUSTRIES
══════════════════════════════════════════════════════════════ */
.industries {
  padding: var(--section-pad) 0;
  background: var(--ivory-warm);
}

.industries__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5px;
  background: var(--ivory-dim);
  border: 1px solid var(--ivory-dim);
}

.industry-card {
  background: var(--ivory-warm);
  padding: 2.25rem 1.75rem;
  position: relative;
  transition: background 0.3s ease;
}
.industry-card:hover { background: var(--ivory); }

.industry-card__icon {
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.industry-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 0.75rem;
  line-height: 1.25;
}

.industry-card p {
  font-size: 0.85rem;
  line-height: 1.75;
  color: var(--ink-mid);
}

/* ══════════════════════════════════════════════════════════════
   ABOUT
══════════════════════════════════════════════════════════════ */
.about {
  padding: var(--section-pad) 0;
  background: var(--ivory);
}

.about__inner {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: clamp(3rem, 6vw, 5rem);
  align-items: start;
}

@media (max-width: 900px) {
  .about__inner { grid-template-columns: 1fr; }
}

.about__title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 300;
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: 1.5rem;
}

.about__text p {
  font-size: 0.92rem;
  line-height: 1.85;
  color: var(--ink-mid);
  margin-bottom: 1.25rem;
}

.about__credentials {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--ivory-dim);
}

@media (max-width: 640px) {
  .about__credentials { grid-template-columns: 1fr; }
}

.credential-group__label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.credential-group li {
  font-size: 0.8rem;
  line-height: 1.8;
  color: var(--ink-mid);
}

/* About sidebar */
.about__stat-block {
  background: var(--ink);
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.about__stat {
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(184, 146, 42, 0.12);
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.about__stat:first-child { padding-top: 0; }
.about__stat:last-child { border-bottom: none; padding-bottom: 0; }

.about__stat-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--gold-light);
  line-height: 1;
  letter-spacing: -0.02em;
}

.about__stat-label {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  line-height: 1.5;
  color: rgba(245, 241, 234, 0.4);
  letter-spacing: 0.05em;
}

.about__linkedin {
  margin-top: 1.5px;
}

.linkedin-link {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 1rem 1.75rem;
  background: rgba(10, 102, 194, 0.1);
  border: 1px solid rgba(10, 102, 194, 0.25);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(10, 102, 194, 0.9);
  transition: background 0.2s ease, color 0.2s ease;
}
.linkedin-link:hover {
  background: rgba(10, 102, 194, 0.18);
  color: rgb(10, 102, 194);
}

/* ══════════════════════════════════════════════════════════════
   CONTACT
══════════════════════════════════════════════════════════════ */
.contact {
  padding: var(--section-pad) 0;
  background: var(--slate);
}

.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 5rem);
  align-items: center;
}

@media (max-width: 800px) {
  .contact__inner { grid-template-columns: 1fr; }
}

.section-eyebrow--light { color: var(--gold); }

.contact__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--ivory);
  margin-bottom: 1.25rem;
  letter-spacing: -0.01em;
}

.contact__body {
  font-size: 0.9rem;
  line-height: 1.85;
  color: rgba(245, 241, 234, 0.5);
}

.contact__details {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid rgba(184, 146, 42, 0.2);
}

.contact-item {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid rgba(184, 146, 42, 0.1);
  transition: background 0.2s ease;
}
.contact-item:last-of-type { border-bottom: none; }
a.contact-item:hover { background: rgba(184, 146, 42, 0.06); }

.contact-item__label {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.contact-item__value {
  font-size: 0.95rem;
  color: var(--ivory);
  font-weight: 300;
}

.contact__btn {
  display: block;
  text-align: center;
  background: var(--gold);
  color: var(--ink);
  padding: 1.1rem 1.5rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 400;
  transition: background 0.2s ease;
  margin-top: 1.5px;
}
.contact__btn:hover { background: var(--gold-light); }

.contact__pdf-download {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.5rem;
  border: 1px solid rgba(184, 146, 42, 0.25);
  border-top: none;
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(184, 146, 42, 0.65);
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
  text-align: center;
}
.contact__pdf-download:hover {
  color: var(--gold-light);
  border-color: rgba(184, 146, 42, 0.5);
  background: rgba(184, 146, 42, 0.05);
}

/* ══════════════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════════════ */
.footer {
  padding: 2rem 0;
  background: var(--ink);
  border-top: 1px solid rgba(184, 146, 42, 0.15);
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.footer__brand {
  font-family: var(--font-display);
  font-size: 0.9rem;
  color: var(--ivory-dim);
}

.footer__loc {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
}

.footer__copy {
  font-size: 0.75rem;
  color: rgba(245, 241, 234, 0.3);
}

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  .nav__links { display: none; }
  .nav__hamburger { display: flex; }
  .nav__tagline { display: none; }

  .hero__metrics {
    grid-template-columns: repeat(2, 1fr);
  }

  .metric { border-bottom: 1px solid rgba(184, 146, 42, 0.15); }
  .metric:nth-child(odd) { border-right: 1px solid rgba(184, 146, 42, 0.15); }
  .metric:nth-child(even) { border-right: none; }
  .metric:last-child, .metric:nth-last-child(2) { border-bottom: none; }

  .approach__pillars {
    grid-template-columns: 1fr;
  }
  .pillar { border-right: none; }

  .industries__grid { grid-template-columns: 1fr 1fr; }

  .footer__inner { flex-direction: column; align-items: flex-start; gap: 0.5rem; }
}

@media (max-width: 480px) {
  .hero__metrics { grid-template-columns: 1fr; }
  .metric { border-right: none !important; }
  .industries__grid { grid-template-columns: 1fr; }
}
