/* =============================================================
   CLARION ADVISORY  —  Global Stylesheet
   Design: Refined luxury-minimalism. Warm ivory ground,
   deep navy ink, antique gold accent.
   Typography: Playfair Display (headings) + Jost (body)
   ============================================================= */

/* ── Custom Properties ── */
:root {
  --navy:      #0f1f2e;
  --navy-mid:  #1e3347;
  --navy-soft: #2d4a63;
  --gold:      #c49a3c;
  --gold-lt:   #d4ae5a;
  --ivory:     #faf8f3;
  --parchment: #f2ede2;
  --linen:     #e8e1d0;
  --stone:     #9a9080;
  --ink:       #1a1510;
  --white:     #ffffff;

  --display:   'Playfair Display', Georgia, serif;
  --body:      'Jost', system-ui, sans-serif;

  --nav-h:     84px;
  --max-w:     1160px;
  --ease:      cubic-bezier(0.4, 0, 0.2, 1);
  --t:         0.3s;
  --t-slow:    0.6s;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--body);
  font-weight: 300;
  color: var(--ink);
  background: var(--ivory);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: inherit; }

/* ── Typography Scale ── */
h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 700;
  line-height: 1.08;
  color: var(--navy);
}
h1 { font-size: clamp(2.2rem, 4.5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 400; }
h3 { font-size: clamp(1.25rem, 2vw, 1.6rem); font-weight: 600; }
h4 { font-size: 1.05rem; font-weight: 600; }

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

.lead {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  line-height: 1.75;
  color: var(--navy-soft);
  font-weight: 300;
}

p { font-size: 1rem; line-height: 1.85; color: var(--stone); font-weight: 300; }

/* ── Layout ── */
.wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 52px;
}
@media (max-width: 768px) { .wrap { padding: 0 24px; } }

.section { padding: 110px 0; }
.section--sm { padding: 72px 0; }
.bg-parchment { background: var(--parchment); }
.bg-navy { background: var(--navy); }

/* ── Utility classes ── */
.gold-bar {
  display: block;
  width: 44px; height: 2px;
  background: var(--gold);
  margin: 20px 0;
}

.btn {
  display: inline-block;
  font-family: var(--body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 15px 40px;
  border: 1.5px solid transparent;
  transition: background var(--t) var(--ease), color var(--t) var(--ease), border-color var(--t) var(--ease), transform var(--t) var(--ease);
}
.btn:hover { transform: translateY(-1px); }

.btn-dark {
  background: var(--navy);
  color: var(--ivory);
  border-color: var(--navy);
}
.btn-dark:hover { background: var(--navy-mid); border-color: var(--navy-mid); }

.btn-outline {
  background: transparent;
  color: var(--ivory);
  border-color: rgba(250,248,243,0.45);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

.btn-outline-dark {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline-dark:hover { background: var(--navy); color: var(--ivory); }

.btn-gold {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.btn-gold:hover { background: var(--gold-lt); border-color: var(--gold-lt); }

/* ── Scroll animations ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}
.reveal.in { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }
.reveal-d4 { transition-delay: 0.4s; }

/* =============================================================
   NAVIGATION
   ============================================================= */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 200;
  height: var(--nav-h);
  transition: background var(--t) var(--ease), box-shadow var(--t) var(--ease), border-color var(--t) var(--ease);
  background: transparent;
}
.nav.is-solid {
  background: rgba(250,248,243,0.97);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 var(--linen);
}
.nav__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 52px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
@media (max-width: 768px) { .nav__inner { padding: 0 24px; } }

.nav__logo { display: flex; align-items: center; }
.nav__logo-img {
  height: 48px;
  width: auto;
  display: block;
  transition: filter var(--t), opacity var(--t);
}
.nav.is-hero .nav__logo-img {
  filter: brightness(0) invert(1);
}
/* Fallback text elements kept for footer use */
.nav__logo-mark {
  font-family: var(--display);
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.01em;
  transition: color var(--t);
}
.nav__logo-tag {
  font-family: var(--body);
  font-size: 0.62rem;
  font-weight: 400;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 38px;
}
.nav__link {
  font-size: 0.76rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
  position: relative;
  transition: color var(--t);
}
.nav.is-hero .nav__link { color: rgba(250,248,243,0.8); }
.nav.is-hero .nav__link:hover { color: var(--ivory); }
.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width var(--t) var(--ease);
}
.nav__link:hover::after, .nav__link.active::after { width: 100%; }
.nav__link:hover, .nav__link.active { color: var(--navy); }
.nav.is-hero .nav__link.active { color: var(--ivory); }

.nav__cta {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 10px 26px;
  background: var(--gold);
  color: var(--navy);
  transition: background var(--t), color var(--t);
}
.nav__cta:hover { background: var(--gold-lt); }
.nav.is-hero .nav__cta { background: var(--gold); }

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px;
}
.nav__burger span {
  display: block; width: 22px; height: 1.5px;
  background: var(--navy);
  transition: var(--t);
}
.nav.is-hero .nav__burger span { background: var(--ivory); }

@media (max-width: 860px) {
  .nav__burger { display: flex; }
  .nav__links {
    position: fixed;
    inset: var(--nav-h) 0 0 0;
    background: var(--ivory);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 36px;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--t) var(--ease);
  }
  .nav__links.open { opacity: 1; pointer-events: all; }
  .nav__link { font-size: 1.1rem; }
  .nav__cta { padding: 14px 40px; }
  .nav__link::after { display: none; }
}

/* =============================================================
   HERO
   ============================================================= */
.hero {
  min-height: 100vh;
  background: var(--navy);
  display: grid;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: var(--nav-h);
}

/* Geometric background pattern */
.hero__bg {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 70% 30%, rgba(196,154,60,0.12) 0%, transparent 50%),
    radial-gradient(circle at 20% 80%, rgba(30,51,71,0.8) 0%, transparent 40%);
}
.hero__grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(196,154,60,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(196,154,60,0.06) 1px, transparent 1px);
  background-size: 72px 72px;
}
/* Diagonal accent bar */
.hero__accent {
  position: absolute;
  top: 0; right: 15%;
  width: 1px; height: 100%;
  background: linear-gradient(to bottom, transparent, rgba(196,154,60,0.25), transparent);
}

.hero__content {
  position: relative; z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 80px 52px 120px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 900px) {
  .hero__content { grid-template-columns: 1fr; gap: 48px; padding: 60px 24px 80px; }
}

.hero__text .eyebrow {
  opacity: 0;
  animation: slideUp 0.7s var(--ease) 0.2s forwards;
}
.hero__text h1 {
  color: var(--ivory);
  margin: 18px 0 28px;
  opacity: 0;
  animation: slideUp 0.7s var(--ease) 0.4s forwards;
}
.hero__text h1 em {
  font-style: italic;
  color: var(--gold-lt);
  display: block;
}
.hero__text .lead {
  color: rgba(250,248,243,0.65);
  max-width: 480px;
  opacity: 0;
  animation: slideUp 0.7s var(--ease) 0.6s forwards;
}
.hero__actions {
  margin-top: 44px;
  display: flex; gap: 16px; flex-wrap: wrap;
  opacity: 0;
  animation: slideUp 0.7s var(--ease) 0.8s forwards;
}

.hero__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  opacity: 0;
  animation: slideUp 0.7s var(--ease) 0.9s forwards;
}
.stat-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(196,154,60,0.18);
  padding: 32px 28px;
  backdrop-filter: blur(4px);
}
.stat-card__num {
  font-family: var(--display);
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--gold-lt);
  line-height: 1;
  display: block;
}
.stat-card__num sup { font-size: 1.2rem; }
.stat-card__label {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(250,248,243,0.5);
  margin-top: 8px;
  display: block;
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: 36px; left: 52px;
  display: flex; align-items: center; gap: 14px;
  opacity: 0;
  animation: fadeIn 1s var(--ease) 1.2s forwards;
}
.hero__scroll span {
  font-size: 0.63rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(250,248,243,0.35);
}
.scroll-line {
  width: 48px; height: 1px;
  background: linear-gradient(to right, rgba(196,154,60,0.6), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { transform: scaleX(1); opacity: 0.6; }
  50%       { transform: scaleX(0.5); opacity: 1; }
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

/* =============================================================
   PAGE HERO (inner pages)
   ============================================================= */
.page-hero {
  background: var(--navy);
  padding: calc(var(--nav-h) + 72px) 0 80px;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, var(--gold), transparent 55%);
  opacity: 0.35;
}
.page-hero__bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(196,154,60,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(196,154,60,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}
.page-hero__inner { position: relative; z-index: 1; }
.page-hero h1 {
  color: var(--ivory);
  margin: 14px 0 0;
  font-size: clamp(1.7rem, 3.2vw, 2.8rem);
  font-weight: 400;
  letter-spacing: 0.01em;
}
.page-hero h1 em { font-style: italic; color: var(--gold-lt); }
.page-hero .lead {
  color: rgba(250,248,243,0.6);
  max-width: 600px;
  margin-top: 22px;
}

/* =============================================================
   INTRO / MISSION STRIP
   ============================================================= */
.mission {
  background: var(--navy-mid);
  padding: 60px 0;
}
.mission__inner {
  display: flex;
  align-items: center;
  gap: 80px;
}
.mission__quote {
  font-family: var(--display);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-style: italic;
  color: var(--ivory);
  font-weight: 400;
  line-height: 1.4;
  flex: 1;
  border-left: 3px solid var(--gold);
  padding-left: 36px;
}
.mission__cta { flex-shrink: 0; }
@media (max-width: 700px) {
  .mission__inner { flex-direction: column; gap: 28px; align-items: flex-start; }
}

/* =============================================================
   ABOUT SECTION (homepage)
   ============================================================= */
.about-home {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 100px;
  align-items: start;
}
@media (max-width: 860px) { .about-home { grid-template-columns: 1fr; gap: 48px; } }

.about-illustration {
  width: 100%;
  border: 1px solid var(--linen);
  overflow: hidden;
}
.about-illustration svg {
  width: 100%;
  height: auto;
  display: block;
}
.portrait-block {
  aspect-ratio: 4 / 5;
  background: var(--parchment);
  overflow: hidden;
  position: relative;
}
.portrait-placeholder {
  width: 100%; height: 100%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  background: linear-gradient(150deg, #1a2f42 0%, #0f1f2e 100%);
  gap: 6px;
}
.portrait-placeholder span {
  font-family: var(--display);
  color: rgba(250,248,243,0.25);
  letter-spacing: 0.08em;
}
.portrait-placeholder span:first-child { font-size: 2.8rem; font-weight: 700; color: rgba(250,248,243,0.4); }
.portrait-placeholder span:last-child  { font-size: 1.1rem; font-weight: 300; }
/* Gold corner accent */
.portrait-block::before {
  content: '';
  position: absolute;
  bottom: 0; right: 0;
  width: 60px; height: 60px;
  background: var(--gold);
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
}

.credentials {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-top: 2px;
}
.cred-pill {
  background: var(--parchment);
  padding: 18px 20px;
  border-left: 3px solid var(--gold);
}
.cred-pill__label {
  font-size: 0.63rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 4px;
}
.cred-pill__value {
  font-family: var(--display);
  font-size: 1rem;
  color: var(--navy);
}

.about-home__text h2 { margin: 8px 0 24px; }
.about-home__text .lead { margin-bottom: 24px; }
.about-home__text p { margin-bottom: 18px; }

/* =============================================================
   SERVICES GRID
   ============================================================= */
.section__header { margin-bottom: 64px; }
.section__header h2 { margin: 8px 0 0; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--linen);
  border: 2px solid var(--linen);
}
@media (max-width: 860px) { .services-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .services-grid { grid-template-columns: 1fr; } }

.svc-card {
  background: var(--ivory);
  padding: 44px 36px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: background var(--t) var(--ease);
  position: relative;
  overflow: hidden;
}
.svc-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 3px;
  background: var(--gold);
  transition: width var(--t-slow) var(--ease);
}
.svc-card:hover { background: var(--navy); }
.svc-card:hover::after { width: 100%; }

.svc-card__num {
  font-family: var(--display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--linen);
  line-height: 1;
  transition: color var(--t);
}
.svc-card:hover .svc-card__num { color: rgba(196,154,60,0.3); }

.svc-card h3 {
  font-size: 1.1rem;
  transition: color var(--t);
}
.svc-card:hover h3 { color: var(--ivory); }

.svc-card p {
  font-size: 0.88rem;
  line-height: 1.7;
  transition: color var(--t);
}
.svc-card:hover p { color: rgba(250,248,243,0.6); }

.svc-card__link {
  margin-top: auto;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex; align-items: center; gap: 8px;
  transition: color var(--t), gap var(--t);
}
.svc-card:hover .svc-card__link { color: var(--gold-lt); }
.svc-card__link:hover { gap: 14px; }

/* =============================================================
   APPROACH STRIP
   ============================================================= */
.approach-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--linen);
}
@media (max-width: 860px) { .approach-strip { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .approach-strip { grid-template-columns: 1fr; } }

.approach-step {
  padding: 44px 32px;
  border-right: 1px solid var(--linen);
  position: relative;
}
.approach-step:last-child { border-right: none; }
@media (max-width: 860px) {
  .approach-step:nth-child(even) { border-right: none; }
  .approach-step { border-bottom: 1px solid var(--linen); }
}

.approach-step__n {
  font-family: var(--display);
  font-size: 4rem;
  font-weight: 700;
  color: var(--linen);
  line-height: 1;
  margin-bottom: 20px;
}
.approach-step h3 { font-size: 1.1rem; margin-bottom: 12px; }
.approach-step p { font-size: 0.88rem; line-height: 1.75; }

/* =============================================================
   WHY CLARION
   ============================================================= */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px 80px;
}
@media (max-width: 700px) { .why-grid { grid-template-columns: 1fr; gap: 44px; } }

.why-item__bar {
  width: 32px; height: 3px;
  background: var(--gold);
  margin-bottom: 20px;
}
.why-item h3 { margin-bottom: 12px; font-size: 1.15rem; }
.why-item p { font-size: 0.9375rem; }

/* =============================================================
   CTA BAND
   ============================================================= */
.cta-band {
  background: var(--navy);
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 40%; height: 100%;
  background: radial-gradient(ellipse at right, rgba(196,154,60,0.1) 0%, transparent 65%);
  pointer-events: none;
}
.cta-band__inner {
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}
.cta-band__inner h2 {
  color: var(--ivory);
  font-weight: 400;
  margin: 12px 0 20px;
}
.cta-band__inner .lead {
  color: rgba(250,248,243,0.58);
  margin-bottom: 40px;
}

/* =============================================================
   ABOUT PAGE — FOUNDER DETAIL
   ============================================================= */
.founder-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 72px;
  align-items: start;
}
@media (max-width: 860px) { .founder-layout { grid-template-columns: 1fr; } }

.founder-sidebar {
  position: sticky;
  top: calc(var(--nav-h) + 30px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

/* Small circular/square portrait */
.portrait-lg {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: var(--parchment);
  overflow: hidden;
  position: relative;
  border: 3px solid var(--linen);
  box-shadow: 0 8px 32px rgba(15,31,46,0.1);
}
@media (max-width: 860px) { .portrait-lg { width: 160px; height: 160px; } }

.portrait-lg .portrait-placeholder {
  background: linear-gradient(150deg, #1a2f42 0%, #0f1f2e 100%);
}
.portrait-lg .portrait-placeholder span:first-child { font-size: 2.2rem; }

/* Illustrated SVG graphic replacing the credential matrix */
.founder-graphic {
  width: 100%;
  text-align: center;
}
.founder-graphic svg { margin: 0 auto; }

/* Simple credential strip (text only, no dark box) */
.founder-creds {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--linen);
}
.founder-cred-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 10px 0;
  border-bottom: 1px solid var(--linen);
}
.founder-cred-row .label {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--stone);
}
.founder-cred-row .value {
  font-family: var(--display);
  font-size: 0.92rem;
  color: var(--navy);
  font-weight: 600;
}

.founder-text h2 { font-size: clamp(1.6rem, 2.5vw, 2.2rem); margin: 0 0 6px; font-weight: 400; }
.founder-text .founder-title {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 28px;
}
.founder-text p { margin-bottom: 20px; }

.pull-quote {
  margin: 40px 0;
  padding: 30px 36px;
  border-left: 4px solid var(--gold);
  background: var(--parchment);
}
.pull-quote blockquote {
  font-family: var(--display);
  font-size: 1.3rem;
  font-style: italic;
  line-height: 1.6;
  color: var(--navy);
  font-weight: 400;
}
.pull-quote cite {
  display: block;
  margin-top: 14px;
  font-size: 0.8rem;
  font-style: normal;
  letter-spacing: 0.08em;
  color: var(--stone);
}

/* Beliefs grid */
.beliefs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px 72px;
  margin-top: 8px;
}
@media (max-width: 680px) { .beliefs-grid { grid-template-columns: 1fr; } }

.belief {
  display: flex;
  gap: 24px;
}
.belief__num {
  font-family: var(--display);
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--linen);
  line-height: 1;
  flex-shrink: 0;
  width: 44px;
}
.belief p { padding-top: 6px; font-size: 0.9375rem; }

/* =============================================================
   SERVICES PAGE — DETAIL SECTIONS
   ============================================================= */
.svc-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: start;
}
.svc-detail.reverse { direction: rtl; }
.svc-detail.reverse > * { direction: ltr; }
@media (max-width: 860px) {
  .svc-detail, .svc-detail.reverse { grid-template-columns: 1fr; direction: ltr; }
}

.svc-detail__n {
  font-family: var(--display);
  font-size: 6rem;
  font-weight: 700;
  color: var(--linen);
  line-height: 0.9;
  margin-bottom: 4px;
}
.svc-detail h2 { font-size: clamp(1.8rem, 2.5vw, 2.4rem); margin-bottom: 24px; }
.svc-detail p { margin-bottom: 18px; }

.outcome-list {
  margin-top: 24px;
  display: flex; flex-direction: column; gap: 11px;
}
.outcome-list li {
  font-size: 0.9rem;
  color: var(--navy-soft);
  padding-left: 22px;
  position: relative;
  line-height: 1.65;
}
.outcome-list li::before {
  content: '—';
  position: absolute; left: 0;
  color: var(--gold);
  font-size: 0.8rem;
  top: 1px;
}

.challenge-box {
  background: var(--navy);
  padding: 44px;
  border-left: 4px solid var(--gold);
  align-self: center;
}
.challenge-box__label {
  font-size: 0.63rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: block;
}
.challenge-box blockquote {
  font-family: var(--display);
  font-size: 1.2rem;
  font-style: italic;
  color: rgba(250,248,243,0.85);
  line-height: 1.6;
  font-weight: 400;
}

/* =============================================================
   APPROACH PAGE — STEP DETAIL
   ============================================================= */
.approach-steps { display: flex; flex-direction: column; }

.step-row {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 52px;
  padding: 64px 0;
  border-bottom: 1px solid var(--linen);
}
.step-row:first-child { border-top: 1px solid var(--linen); }
@media (max-width: 640px) { .step-row { grid-template-columns: 1fr; gap: 16px; } }

.step-row__n {
  font-family: var(--display);
  font-size: 4rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  padding-top: 6px;
}
.step-row h2 { font-size: clamp(1.5rem, 2.5vw, 2.2rem); margin-bottom: 20px; }
.step-row p { margin-bottom: 18px; }

.callout-box {
  margin-top: 24px;
  padding: 22px 28px;
  border-left: 3px solid var(--gold);
  background: var(--parchment);
  font-family: var(--display);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--navy-mid);
  line-height: 1.65;
  font-weight: 400;
}

/* Engagement model cards */
.engagement-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--linen);
  border: 2px solid var(--linen);
}
@media (max-width: 860px) { .engagement-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .engagement-grid { grid-template-columns: 1fr; } }

.eng-card {
  background: var(--ivory);
  padding: 36px 28px;
  border-top: 3px solid transparent;
  transition: border-top-color var(--t);
}
.eng-card:hover { border-top-color: var(--gold); }
.eng-card h3 { font-size: 1.05rem; margin-bottom: 6px; }
.eng-card__dur {
  font-size: 0.67rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 16px;
}
.eng-card p { font-size: 0.875rem; line-height: 1.72; }
.eng-card .ideal {
  font-size: 0.8rem;
  font-style: italic;
  color: var(--navy-soft);
  border-top: 1px solid var(--linen);
  padding-top: 14px;
  margin-top: 14px;
  margin-bottom: 0;
}

/* =============================================================
   INSIGHTS PAGE
   ============================================================= */
.featured-article {
  background: var(--white);
  border: 1px solid var(--linen);
  padding: 60px;
}
@media (max-width: 700px) { .featured-article { padding: 32px; } }

.featured-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 60px;
  align-items: start;
}
@media (max-width: 860px) { .featured-grid { grid-template-columns: 1fr; } }

.featured-grid h2 { font-size: clamp(1.5rem, 2.5vw, 2.2rem); margin: 14px 0 28px; }
.featured-grid .lead { margin-bottom: 22px; }
.featured-grid p { margin-bottom: 16px; }

.sig {
  display: flex; flex-direction: column; gap: 4px;
  margin-top: 32px; padding-top: 28px;
  border-top: 1px solid var(--linen);
}
.sig__name { font-family: var(--display); font-size: 1.05rem; color: var(--navy); }
.sig__title { font-size: 0.78rem; color: var(--gold); letter-spacing: 0.08em; }

.aside-cards {
  display: flex; flex-direction: column; gap: 20px;
}
.aside-card {
  background: var(--parchment);
  padding: 28px;
  border-left: 3px solid var(--gold);
}
.aside-card h4 {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.aside-list {
  list-style: decimal;
  padding-left: 18px;
  display: flex; flex-direction: column; gap: 10px;
}
.aside-list li { font-size: 0.875rem; line-height: 1.65; color: var(--navy-mid); }

.articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--linen);
  border: 2px solid var(--linen);
}
@media (max-width: 860px) { .articles-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .articles-grid { grid-template-columns: 1fr; } }

.article-card {
  background: var(--ivory);
  padding: 38px 32px;
  transition: background var(--t);
}
.article-card:hover { background: var(--parchment); }
.article-topic {
  font-size: 0.63rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.article-card h3 { font-size: 1.05rem; line-height: 1.4; margin-bottom: 14px; }
.article-card p { font-size: 0.875rem; line-height: 1.72; }

/* Newsletter */
.newsletter {
  background: var(--navy-mid);
  padding: 80px 0;
}
.newsletter__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 700px) { .newsletter__inner { grid-template-columns: 1fr; } }
.newsletter h2 { color: var(--ivory); font-weight: 400; margin: 8px 0 16px; }
.newsletter .lead { color: rgba(250,248,243,0.6); }
.nl-form { display: flex; gap: 12px; flex-wrap: wrap; }
.nl-form input {
  flex: 1; min-width: 200px;
  padding: 14px 18px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(196,154,60,0.3);
  color: var(--ivory);
  font-family: var(--body);
  font-size: 0.9rem;
  outline: none;
  transition: border-color var(--t);
}
.nl-form input::placeholder { color: rgba(250,248,243,0.3); }
.nl-form input:focus { border-color: var(--gold); }
.nl-note { font-size: 0.73rem; color: rgba(250,248,243,0.3); margin-top: 14px; letter-spacing: 0.06em; }

/* =============================================================
   CONTACT PAGE
   ============================================================= */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 100px;
  align-items: start;
}
@media (max-width: 860px) { .contact-layout { grid-template-columns: 1fr; gap: 52px; } }

.contact-info .lead { margin-bottom: 44px; }

.contact-methods {
  border-top: 1px solid var(--linen);
}
.contact-method {
  padding: 22px 0;
  border-bottom: 1px solid var(--linen);
  display: flex; flex-direction: column; gap: 5px;
}
.contact-method__label {
  font-size: 0.63rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}
.contact-method a, .contact-method span {
  font-size: 1rem;
  color: var(--navy);
  transition: color var(--t);
}
.contact-method a:hover { color: var(--gold); }

.contact-note {
  margin-top: 28px;
  font-size: 0.82rem;
  font-style: italic;
  color: var(--stone);
}

/* Form */
.form-panel {
  background: var(--white);
  padding: 52px;
  border: 1px solid var(--linen);
}
@media (max-width: 600px) { .form-panel { padding: 28px; } }

.form-grid {
  display: flex; flex-direction: column; gap: 22px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 500px) { .form-row { grid-template-columns: 1fr; } }

.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-label {
  font-size: 0.67rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--navy-soft);
}
.form-input, .form-select, .form-textarea {
  padding: 13px 16px;
  border: 1px solid var(--linen);
  background: var(--ivory);
  font-family: var(--body);
  font-size: 0.9rem;
  color: var(--ink);
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  transition: border-color var(--t);
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--gold);
}
.form-textarea { resize: vertical; min-height: 130px; }
.form-file { font-size: 0.82rem; }
.file-hint { font-size: 0.73rem; color: var(--stone); margin-top: 4px; }

.form-success {
  padding: 20px 24px;
  background: #edf7ed;
  border: 1px solid #b8ddb8;
  color: #2a6b2a;
  font-size: 0.9rem;
  display: none;
}
.form-success.show { display: block; }

/* =============================================================
   FOOTER
   ============================================================= */
.footer {
  background: var(--navy);
  padding: 80px 0 0;
}
.footer-logo-img {
  height: 40px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.85;
  margin-bottom: 18px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
@media (max-width: 900px) { .footer__grid { grid-template-columns: 1fr 1fr; gap: 40px; } }
@media (max-width: 500px) { .footer__grid { grid-template-columns: 1fr; } }

.footer__brand .footer-logo { display: flex; align-items: baseline; gap: 7px; margin-bottom: 18px; }
.footer .nav__logo-mark { color: var(--ivory); }
.footer__brand p {
  font-size: 0.875rem;
  line-height: 1.75;
  color: rgba(250,248,243,0.45);
  max-width: 260px;
  margin-bottom: 26px;
}
.footer__contact a, .footer__contact span {
  display: block;
  font-size: 0.875rem;
  color: rgba(250,248,243,0.45);
  margin-bottom: 8px;
  transition: color var(--t);
}
.footer__contact a:hover { color: var(--gold); }

.footer__col h4 {
  font-family: var(--body);
  font-size: 0.63rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
}
.footer__col ul { display: flex; flex-direction: column; gap: 11px; }
.footer__col a {
  font-size: 0.875rem;
  color: rgba(250,248,243,0.45);
  transition: color var(--t);
}
.footer__col a:hover { color: var(--ivory); }

.footer__bottom {
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.footer__bottom p {
  font-size: 0.73rem;
  letter-spacing: 0.06em;
  color: rgba(250,248,243,0.28);
  margin: 0;
}

/* LinkedIn link */
.li-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  color: rgba(250,248,243,0.45);
  margin-top: 14px;
  transition: color var(--t);
  border-bottom: 1px solid rgba(196,154,60,0.3);
  padding-bottom: 2px;
}
.li-link:hover { color: var(--gold); border-bottom-color: var(--gold); }
