/* =========================================================
   Precision Components — advisory content in the ORIGINAL
   site theme. Espresso / cream / olive · Bebas Neue +
   Roboto Mono · hard-shadow pill buttons · cream/dark rhythm.
   (Styles the semantic classes used by the new pages.)
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Roboto+Mono:ital,wght@0,400;0,500;0,700;1,400;1,500&display=swap');

:root {
  /* STRICT 3-color brand palette — only green, brown, white (+ their transparencies) */
  --espresso: #352F25;                 /* Steadfast Brown */
  --espresso-2: #352F25;               /* flattened to brown */
  --ink: #352F25;                      /* hard shadow = brown */
  --cream: #F9F5F4;                    /* Clarity White */
  --cream-2: rgba(53, 47, 37, 0.05);   /* brown @5% on white — subtle alt band */
  --cream-3: rgba(53, 47, 37, 0.07);   /* brown @7% — placeholder surfaces */
  --olive: #588749;                    /* Growth Green */
  --olive-d: #588749;                  /* flattened to green */
  --olive-l: #A4BC99;                  /* Growth Green tinted 55% toward cream — dark-band text only (AA on espresso) */
  --muted: rgba(53, 47, 37, 0.70);     /* brown @70% — body copy on white */
  --line: rgba(53, 47, 37, 0.16);
  --line-strong: rgba(53, 47, 37, 0.40);
  --line-light: rgba(249, 245, 244, 0.40);

  --display: 'Bebas Neue', 'Arial Narrow', sans-serif;
  --sans: 'Roboto Mono', ui-monospace, 'SFMono-Regular', monospace;
  --mono: 'Roboto Mono', ui-monospace, monospace;

  --maxw: 1180px;
  --pad: clamp(20px, 5vw, 56px);
}

* { box-sizing: border-box; }
html, body { scroll-behavior: smooth; overflow-x: clip; }
body { margin: 0; font-family: var(--sans); font-size: 16px; line-height: 1.55; color: var(--espresso); background: var(--cream); -webkit-font-smoothing: antialiased; animation: pageFadeIn 1s ease both; }
@keyframes pageFadeIn { from { opacity: 0; } to { opacity: 1; } }
@media (prefers-reduced-motion: reduce) { body { animation: none; } }
/* homepage landing: slow cinematic fade from black */
body.home { animation: none; }
body.home::before { content: ""; position: fixed; inset: 0; background: #000; z-index: 9999; pointer-events: none; animation: fadeFromBlack 2.6s ease forwards; }
@keyframes fadeFromBlack { from { opacity: 1; } to { opacity: 0; } }
@media (prefers-reduced-motion: reduce) { body.home::before { animation: none; opacity: 0; } }
/* homepage: center all section text */
.home main section { text-align: center; }
.home main .section__head,
.home main .prose { margin-left: auto; margin-right: auto; }
.home main .hero__cta { justify-content: center; }
/* scroll reveal — content animates in as it enters the viewport */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .75s cubic-bezier(.22, .61, .36, 1); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal, .reveal.in { opacity: 1; transform: none; transition: none; } }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3 { font-family: var(--display); font-weight: 400; text-transform: uppercase; letter-spacing: normal; line-height: .92; margin: 0; }
p { margin: 0 0 1.1em; } p:last-child { margin-bottom: 0; }
em { font-style: italic; }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--pad); }
.eyebrow { font-family: var(--mono); font-weight: 500; font-size: 13.5px; letter-spacing: .2em; text-transform: uppercase; color: var(--olive); margin: 0 0 20px; }
.muted { color: var(--muted); }
.accent { color: var(--olive); }

/* sections + rhythm: default cream, --alt cream-2, --deep espresso(dark) */
.section { padding: clamp(56px, 8vw, 104px) 0; position: relative; }
.section--alt { background: var(--cream-2); }
.section--deep { background: var(--espresso); color: var(--cream); }
.section--deep .muted { color: rgba(250, 246, 245, .68); }
.section--deep .eyebrow { color: var(--olive-l); }
.section--deep .prose { color: rgba(250, 246, 245, .78); }
.section--deep .prose strong { color: var(--cream); }
.section__head { max-width: 820px; }
/* one spacing token between section head and its support copy — never inline styles */
.section__head .prose, .section__head + .prose, .section-title + .prose { margin-top: 24px; }
.section-title { font-size: clamp(32px, 5.4vw, 54px); line-height: .94; }
.lead { font-family: var(--display); font-size: clamp(26px, 3.4vw, 44px); line-height: .98; }
.prose { max-width: 680px; font-size: 16px; line-height: 1.62; color: var(--muted); }
.prose strong, .prose b { color: var(--espresso); font-weight: 500; }

/* structural meta row */
.meta-row { display: flex; justify-content: space-between; align-items: center; gap: 16px; font-family: var(--mono); font-size: 13px; letter-spacing: .14em; text-transform: uppercase; padding-bottom: 18px; margin-bottom: 38px; border-bottom: 1px solid var(--line); }
.meta-row .l { color: var(--olive); }
.meta-row .r { color: var(--muted); opacity: .8; }
.section--deep .meta-row { border-color: var(--line-light); }
.section--deep .meta-row .l { color: var(--olive-l); }
.section--deep .meta-row .r { color: rgba(250,246,245,.7); }
@media (max-width: 600px) { .meta-row { flex-direction: column; align-items: flex-start; gap: 4px; } .meta-row .r { display: none; } }

/* buttons — original pill + hard shadow */
.btn { display: inline-flex; align-items: center; gap: 10px; font-family: var(--mono); font-size: 16px; letter-spacing: .02em; padding: 13px 34px; border-radius: 300px; border: 2px solid var(--espresso); cursor: pointer; transition: transform .15s ease, box-shadow .15s ease, background .25s, color .25s, border-color .25s; background: none; color: var(--espresso); box-shadow: 5px 6px 0 var(--ink); }
.btn:hover { transform: translate(2px, 3px); box-shadow: 2px 2px 0 var(--ink); }
.btn--solid { background: var(--espresso); color: var(--cream); }
.btn--solid:hover { background: var(--olive); border-color: var(--olive); color: var(--cream); }
.btn--outline { background: transparent; color: var(--espresso); }
.btn--outline:hover { background: var(--olive); border-color: var(--olive); color: var(--cream); }
.btn--link { padding: 6px 0; border: 0; border-bottom: 1px solid var(--espresso); border-radius: 0; box-shadow: none; }
.btn--link:hover { transform: none; box-shadow: none; color: var(--olive-d); border-color: var(--olive-d); }
.section--deep .btn { border-color: var(--cream); color: var(--cream); box-shadow: 5px 6px 0 #000; }
.section--deep .btn--solid { background: var(--cream); color: var(--espresso); }
.section--deep .btn--solid:hover { background: var(--olive); color: var(--cream); border-color: var(--olive); }
.section--deep .btn--outline:hover { background: var(--olive); border-color: var(--olive); color: var(--cream); }
/* hero CTAs on the dark video: light by default, green on hover */
.hero .btn { border-color: var(--cream); color: var(--cream); box-shadow: 5px 6px 0 rgba(0,0,0,.45); }
.hero .btn--solid { background: var(--olive); border-color: var(--olive); color: var(--cream); }
.hero .btn--outline { background: transparent; color: var(--cream); }
.hero .btn:hover { background: var(--olive); border-color: var(--olive); color: var(--cream); }
/* main CTA: green by default, white on hover */
.hero .btn--solid:hover { background: var(--cream); border-color: var(--olive); color: var(--olive); }
/* secondary CTA: light outline, white fill on hover */
.hero .btn--outline:hover { background: var(--cream); border-color: var(--cream); color: var(--olive); }
.section--deep .btn--link { border-color: var(--cream); box-shadow: none; }

/* =================== homepage hero logo (centered, fades in once) =================== */
.hero.hero--centered { min-height: 100vh; align-items: center; }
.hero--centered .hero__in { text-align: center; max-width: 880px; }
.hero__logo { display: block; height: auto; opacity: 0; animation: heroLogoIn 1.3s ease .25s forwards; }
.hero--centered .hero__logo { width: clamp(320px, 46vw, 620px); margin: 0 auto 34px; }
.hero--centered h1 { margin-left: auto; margin-right: auto; }
.hero--centered .hero__sub { margin-left: auto; margin-right: auto; }
.hero--centered .hero__cta { justify-content: center; }
/* small descriptive tagline under the logo; CTAs are the focal point */
.hero h1.hero__tagline { font-family: var(--sans); font-weight: 400; text-transform: none; white-space: nowrap; font-size: min(16px, 2.25vw); line-height: 1.65; letter-spacing: .01em; max-width: none; margin: 0 auto clamp(30px, 4.5vh, 46px); color: rgba(249, 245, 244, .82); }
.hero--centered .hero__cta .btn { padding: 16px 42px; font-size: 15px; }
#approach { scroll-margin-top: 92px; padding: clamp(82px, 10vh, 110px) 0 clamp(22px, 3vh, 38px); }
#approach .container { width: 100%; }
@keyframes heroLogoIn { from { opacity: 0; } to { opacity: 1; } }
/* subtext + CTAs rise in after the logo finishes fading (logo done at ~1.55s) */
.hero--centered .hero__tagline { animation: heroRise .7s ease 1.55s both; }
.hero--centered .hero__cta { animation: heroRise .7s ease 1.85s both; }
@keyframes heroRise { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: translateY(0); } }
@media (prefers-reduced-motion: reduce) { .hero__logo, .hero--centered .hero__tagline, .hero--centered .hero__cta { animation: none; opacity: 1; transform: none; } }

/* =================== header (cream, centered logo) =================== */
.site-header { position: sticky; top: 0; z-index: 60; background: rgba(250, 246, 245, .92); backdrop-filter: blur(10px); border-bottom: 1px solid var(--line); transition: transform .45s ease, opacity .45s ease; }
.site-header.nav-hidden { transform: translateY(-100%); opacity: 0; pointer-events: none; }
/* keep the header (and hamburger) reachable on hamburger-mode screens — don't hide it over the hero on mobile */
@media (max-width: 1200px) { .site-header.nav-hidden { transform: none; opacity: 1; pointer-events: auto; } }
/* homepage: header overlays the hero (no reserved space → no gap above the hero) */
.home .site-header { position: fixed; left: 0; right: 0; }
.site-header__in { position: relative; display: flex; align-items: center; justify-content: space-between; height: 76px; }
.site-header .container { max-width: 1320px; }
.brand { display: flex; align-items: center; }
.brand img { height: 54px; width: auto; }
.site-nav { display: flex; align-items: center; gap: clamp(22px, 2.6vw, 38px); }
.site-nav a { font-family: var(--mono); font-weight: 500; font-size: 14.5px; letter-spacing: .13em; text-transform: uppercase; color: var(--muted); white-space: nowrap; }
.site-nav a:hover, .site-nav a.active { color: var(--espresso); }
.site-nav .btn { margin-left: 4px; padding: 12px 24px; font-size: 14px; letter-spacing: .08em; text-transform: uppercase; box-shadow: 3px 4px 0 var(--ink); color: var(--cream); white-space: nowrap; }
.site-nav .btn:hover { color: var(--cream); }
.nav-toggle { display: none; flex-direction: column; justify-content: center; gap: 6px; width: 44px; height: 40px; padding: 9px 10px; background: none; border: 0; cursor: pointer; }
.nav-toggle span { display: block; width: 24px; height: 2px; border-radius: 2px; background: var(--espresso); transition: transform .25s ease, opacity .2s ease; }
.site-nav.open ~ .nav-toggle span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.site-nav.open ~ .nav-toggle span:nth-child(2) { opacity: 0; }
.site-nav.open ~ .nav-toggle span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
/* nav dropdowns */
.nav-item.has-dropdown { position: relative; display: inline-flex; align-items: center; }
.nav-sub { font-family: var(--mono); font-weight: 500; font-size: 14.5px; letter-spacing: .13em; text-transform: uppercase; color: var(--muted); background: none; border: 0; padding: 0; cursor: pointer; display: inline-flex; align-items: center; gap: 7px; white-space: nowrap; }
.nav-sub::after { content: "▾"; font-size: 10px; opacity: .5; transition: transform .2s; }
.nav-sub:hover, .nav-sub.is-active, .nav-item.open .nav-sub { color: var(--espresso); }
.nav-item.open .nav-sub::after { transform: rotate(180deg); }
.dropdown { position: absolute; top: calc(100% + 22px); left: 50%; transform: translateX(-50%) translateY(-6px); min-width: 244px; background: var(--cream); border: 1px solid var(--line-strong); border-radius: 10px; padding: 8px; box-shadow: 0 22px 44px -22px rgba(53, 47, 37, .45); display: flex; flex-direction: column; gap: 2px; opacity: 0; visibility: hidden; transition: opacity .16s ease, transform .16s ease; z-index: 90; }
.nav-item.open .dropdown { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.dropdown a { font-family: var(--mono); font-size: 13.5px; letter-spacing: .1em; color: var(--muted); padding: 11px 14px; border-radius: 7px; white-space: nowrap; }
.dropdown a:hover { background: rgba(88, 135, 73, .08); color: var(--espresso); }
.num-item[id] { scroll-margin-top: 100px; }

/* =================== homepage video hero =================== */
.hero { position: relative; min-height: 88vh; display: flex; align-items: center; overflow: hidden; isolation: isolate; padding: clamp(70px,12vh,120px) 0 clamp(56px,9vh,96px); }
.hero__video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; }
.hero::after { content: ""; position: absolute; inset: 0; z-index: -1; background: radial-gradient(70% 70% at 30% 45%, rgba(20,18,16,.5), transparent 72%), linear-gradient(180deg, rgba(33,32,31,.55), rgba(53,47,37,.5) 72%); }
.hero__in { max-width: var(--maxw); width: 100%; margin: 0 auto; padding: 0 var(--pad); color: var(--cream); }
.hero .eyebrow { color: var(--olive-l); }
.hero h1 { font-size: clamp(26px, 3.3vw, 40px); line-height: .96; max-width: none; margin-bottom: 22px; color: var(--cream); }
.hero h1 .accent { color: var(--olive-l); }
.hero__sub { border: 1px solid var(--line-light); border-radius: 8px; padding: 20px 26px; max-width: 600px; font-size: 15px; line-height: 1.5; color: rgba(250,246,245,.9); margin-bottom: 34px; }
.hero__sub strong { color: #fff; font-weight: 500; }
.hero__cta { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }

/* =================== interior page hero (cream) =================== */
.page-hero { padding: clamp(60px, 9vw, 120px) 0 clamp(44px, 6vw, 80px); border-bottom: 1px solid var(--line); }
.page-hero h1 { font-size: clamp(40px, 6.4vw, 78px); line-height: .96; max-width: none; margin-bottom: 24px; }
/* dark line, then green line */
.page-hero h1 .accent { display: block; }
.page-hero h1 .accent { color: var(--olive); }
.page-hero__sub { font-size: clamp(15px, 1.5vw, 18px); line-height: 1.5; color: var(--muted); max-width: 660px; margin-bottom: 30px; }
.page-hero__sub strong { color: var(--espresso); font-weight: 500; }

/* =================== numbered grid =================== */
.num-grid { display: grid; gap: clamp(24px, 3.5vw, 44px); grid-template-columns: repeat(3, 1fr); margin-top: 52px; }
.num-item { border-top: 1px solid var(--line-strong); padding-top: 20px; }
.section--deep .num-item { border-color: var(--line-light); }
.num-item .num { font-family: var(--mono); font-size: 14.5px; letter-spacing: .1em; color: var(--olive); }
.section--deep .num-item .num { color: var(--olive-l); }
.num-item h3 { font-size: 28px; margin: 14px 0 12px; }
.num-item p { font-size: 14.5px; line-height: 1.55; color: var(--muted); margin: 0; }
.section--deep .num-item p { color: rgba(250,246,245,.72); }
@media (max-width: 820px) { .num-grid { grid-template-columns: 1fr; } }

/* =================== phase list =================== */
.phases { margin-top: 48px; border-top: 1px solid var(--line-strong); }
.phase { display: grid; grid-template-columns: 140px 1fr; gap: clamp(16px,3vw,48px); padding: clamp(26px,3vw,42px) 0; border-bottom: 1px solid var(--line); }
.section--deep .phases, .section--deep .phase { border-color: var(--line-light); }
.phase__num { font-family: var(--mono); font-size: 13.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--olive); }
.section--deep .phase__num { color: var(--olive-l); }
.phase__num b { display: block; font-family: var(--display); font-weight: 400; font-size: 52px; color: inherit; margin-top: 4px; }
.phase__num b { color: var(--espresso); }
.section--deep .phase__num b { color: var(--cream); }
.phase__body h3 { font-size: 30px; margin: 0 0 12px; }
.phase__body p { color: var(--muted); margin: 0 0 14px; max-width: 64ch; }
.section--deep .phase__body p { color: rgba(250,246,245,.74); }
.phase__note { font-family: var(--mono); font-size: 14.5px; line-height: 1.5; color: var(--olive-d); border-left: 2px solid var(--olive); padding-left: 14px; }
.section--deep .phase__note { color: var(--olive-l); }
@media (max-width: 700px) { .phase { grid-template-columns: 1fr; } .phase__num b { font-size: 40px; } }

/* =================== two-col labeled lists =================== */
.col-lists { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px,4vw,60px); margin-top: 44px; }
.col-list h4 { font-family: var(--mono); font-size: 13.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--olive); margin: 0 0 14px; padding-bottom: 10px; border-bottom: 1px solid var(--line-strong); }
.section--deep .col-list h4 { color: var(--olive-l); border-color: var(--line-light); }
.col-list ul { list-style: none; margin: 0; padding: 0; }
.col-list li { padding: 11px 0; border-bottom: 1px solid var(--line); font-size: 15px; }
.section--deep .col-list li { border-color: var(--line-light); }
@media (max-width: 700px) { .col-lists { grid-template-columns: 1fr; } }

/* =================== FAQ =================== */
.faq { margin-top: 44px; border-top: 1px solid var(--line-strong); }
.section--deep .faq { border-color: var(--line-light); }
.faq__item { border-bottom: 1px solid var(--line); }
.section--deep .faq__item { border-color: var(--line-light); }
.faq__q { width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 22px 2px; background: none; border: 0; cursor: pointer; color: inherit; text-align: left; font-family: var(--display); font-size: 26px; }
.faq__sign { font-family: var(--mono); font-size: 20px; color: var(--olive); transition: transform .3s ease; }
.faq__item.open .faq__sign { transform: rotate(45deg); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq__a p { padding: 0 2px 24px; max-width: 72ch; color: var(--muted); margin: 0; font-size: 15px; }
.section--deep .faq__a p { color: rgba(250,246,245,.74); }
.faq__item.open .faq__a { max-height: 360px; }

/* =================== two-up cards (paths, case, cta) =================== */
.paths, .cards-2, .dual-cta { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 48px; }
.path-card, .case-card, .cta-card { border: 1px solid var(--line-strong); border-radius: 8px; padding: clamp(26px,3vw,40px); background: rgba(53,47,37,.02); transition: border-color .2s, background .2s; }
.section--deep .path-card, .section--deep .case-card, .section--deep .cta-card { border-color: var(--line-light); background: rgba(250,246,245,.03); }
.path-card:hover { border-color: var(--olive); }
.path-card h3, .cta-card h3 { font-size: 28px; margin: 0 0 12px; }
.case-card h3 { font-size: 23px; margin: 0 0 12px; line-height: 1.05; }
.path-card p, .case-card p, .cta-card p { font-size: 14.5px; color: var(--muted); margin: 0; }
.section--deep .path-card p, .section--deep .case-card p, .section--deep .cta-card p { color: rgba(250,246,245,.72); }
.kicker { font-family: var(--mono); font-size: 12.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--olive); margin-bottom: 14px; }
.section--deep .kicker { color: var(--olive-l); }
.case-card .ph, .cta-card .by { font-family: var(--mono); font-size: 13px; color: var(--muted); opacity: .8; margin-top: 14px; }
.cta-card p { margin-bottom: 20px; }
.cta-card .by { margin: 0 0 20px; }
/* equal-height cta cards share a bottom button baseline */
.cta-card { display: flex; flex-direction: column; }
.cta-card .btn { margin-top: auto; align-self: flex-start; }
.section--deep .case-card .ph, .section--deep .cta-card .by { color: rgba(250,246,245,.7); opacity: 1; }
@media (max-width: 760px) { .paths, .cards-2, .dual-cta { grid-template-columns: 1fr; } }
/* brief What/Who/How trio */
.trio { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: clamp(40px, 5vh, 64px); }
.trio-card { display: flex; flex-direction: column; justify-content: center; gap: 20px; min-height: clamp(340px, 44vh, 520px); border: 1px solid var(--line-strong); border-radius: 10px; padding: clamp(32px, 3.4vw, 52px); background: rgba(53, 47, 37, .02); transition: border-color .2s; }
.trio-card:hover { border-color: var(--olive); }
.trio-card .eyebrow { margin: 0; font-size: 14.5px; }
.trio-card h3 { font-size: clamp(28px, 3vw, 40px); line-height: .98; margin: 0 0 18px; }
.trio-card .lead { font-size: clamp(16px, 1.25vw, 19px); line-height: 1.6; color: var(--espresso); margin: 0; }
@media (max-width: 860px) { .trio { grid-template-columns: 1fr; } .trio-card { min-height: 0; gap: 22px; } }
/* two offering suites variant */
.trio--two { grid-template-columns: repeat(2, 1fr); margin-top: clamp(26px, 3.5vh, 44px); }
.trio--two .trio-card { min-height: 0; padding: clamp(26px, 2.6vw, 40px); text-decoration: none; color: var(--espresso); }
#approach .meta-row { margin-bottom: clamp(18px, 2.6vh, 28px); }
.trio-card__more { display: inline-block; margin-top: 20px; font-family: var(--mono); font-size: 14.5px; letter-spacing: .03em; color: var(--olive); }
.trio-card:hover .trio-card__more { text-decoration: underline; }
@media (max-width: 860px) {
  .trio--two { grid-template-columns: 1fr; margin-top: 16px; gap: 12px; }
  #approach { padding: clamp(66px, 9vh, 78px) 0 6px; }
  #approach .meta-row { display: none; }
  #approach .section-title { font-size: clamp(20px, 5.2vw, 26px); }
  .trio--two .trio-card { padding: 16px 20px; gap: 10px; }
  .trio-card h3 { margin-bottom: 6px; }
  .trio--two .trio-card .lead { display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
  .trio-card__more { margin-top: 10px; }
  .trio-cta { margin-top: 16px; }
  .trio-cta p { margin-bottom: 10px; }
  .logo-banner { padding: 9px 0; }
  .marquee-label { margin-bottom: 9px; }
  .logo-track img { height: 40px; margin-right: 40px; }
}
/* "not sure?" CTA under the trio */
.trio-cta { text-align: center; margin-top: clamp(24px, 3.5vh, 40px); }
.trio-cta .btn--solid, .trio-cta .btn--solid:hover { background: var(--olive); border-color: var(--olive); color: var(--cream); }
/* service offering cards (field / command) */
.svc-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(20px, 2.4vw, 30px); margin-top: clamp(26px, 3.5vh, 44px); text-align: left; }
.svc-card { position: relative; overflow: hidden; display: flex; flex-direction: column; min-height: clamp(300px, 35vh, 380px); border: 1px solid var(--line-strong); border-radius: 12px; background: var(--cream); text-decoration: none; color: var(--espresso); transition: border-color .2s; }
.svc-card:hover { border-color: var(--olive); }
.svc-card__art { position: absolute; inset: 0; background-size: cover; background-position: center; background-repeat: no-repeat; pointer-events: none; }
.svc-card__top { position: relative; z-index: 1; flex: 1; padding: clamp(20px, 2.2vw, 30px); }
.svc-badge { display: inline-block; font-family: var(--mono); font-size: 12.5px; letter-spacing: .16em; text-transform: uppercase; color: var(--olive); border: 1px solid var(--olive); border-radius: 300px; padding: 6px 14px; }
.svc-title { font-family: var(--display); font-weight: 400; font-size: clamp(28px, 3vw, 40px); line-height: .98; margin: clamp(13px, 1.6vw, 20px) 0 0; }
.svc-rule { display: block; width: 38px; height: 2px; background: var(--espresso); opacity: .45; margin: 12px 0 0; }
.svc-lines { font-family: var(--mono); font-size: 15px; line-height: 1.5; color: var(--muted); margin-top: clamp(13px, 1.6vw, 20px); }
.svc-lines p { margin: 0; }
.svc-explore { display: inline-block; font-family: var(--mono); font-size: 15.5px; letter-spacing: .03em; color: var(--olive); margin-top: clamp(14px, 1.6vw, 20px); }
.svc-card:hover .svc-explore { text-decoration: underline; }
.svc-card__meta { position: relative; z-index: 1; display: flex; align-items: stretch; border-top: 1px solid var(--line-strong); font-family: var(--mono); font-size: 13px; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }
.svc-meta-ic { display: flex; align-items: center; justify-content: center; width: 48px; border-right: 1px solid var(--line-strong); color: var(--olive); flex: none; }
.svc-meta-txt { display: flex; align-items: center; padding: 13px 16px; }
/* closing About section — dark, with a smoke-texture background to segment it */
.about-cta { background: linear-gradient(rgba(28, 25, 20, .80), rgba(28, 25, 20, .90)), url('../media/about-smoke-poster.jpg') center / cover no-repeat; }
.about-cta .btn--solid, .about-cta .btn--solid:hover { background: var(--olive); border-color: var(--olive); color: var(--cream); }
@media (max-width: 860px) {
  .svc-grid { grid-template-columns: 1fr; margin-top: 14px; gap: 10px; }
  .svc-card { min-height: 0; }
  .svc-card__top { padding: 15px 18px; }
  .svc-card__meta { display: none; }
  .svc-title { font-size: clamp(23px, 6vw, 29px); margin-top: 10px; }
  .svc-rule { margin-top: 9px; }
  .svc-lines { font-size: 14px; line-height: 1.45; margin-top: 10px; }
  .svc-explore { margin-top: 10px; }
}
.trio-cta p { font-family: var(--mono); font-size: 16px; color: var(--muted); margin: 0 0 16px; }
/* scrolling client logo banner — full-width dark section */
.logo-banner { background: var(--espresso); padding: clamp(18px, 2.2vw, 30px) 0; overflow: hidden; }
.marquee-label { font-family: var(--mono); font-size: 13px; letter-spacing: .16em; text-transform: uppercase; color: rgba(250, 246, 245, .55); text-align: center; margin: 0 0 clamp(12px, 1.8vh, 20px); }
.logo-marquee { position: relative; overflow: hidden; max-width: 100vw; }
.logo-marquee::before, .logo-marquee::after { content: ""; position: absolute; top: 0; bottom: 0; width: clamp(40px, 9vw, 140px); z-index: 2; pointer-events: none; }
.logo-marquee::before { left: 0; background: linear-gradient(90deg, var(--espresso), transparent); }
.logo-marquee::after { right: 0; background: linear-gradient(270deg, var(--espresso), transparent); }
.logo-track { display: flex; align-items: center; width: max-content; animation: logoScroll 26s linear infinite; }
.logo-track img { height: clamp(56px, 5.5vw, 84px); width: auto; flex: none; margin-right: clamp(44px, 5vw, 78px); opacity: .8; filter: brightness(0) invert(1); display: block; }
@keyframes logoScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .logo-track { animation: none; flex-wrap: wrap; justify-content: center; row-gap: 24px; } }

/* find-your-path assessment — full-viewport stage */
.quiz-stage { min-height: calc(100vh - 76px); display: flex; align-items: flex-start; padding: clamp(48px, 11vh, 120px) 0 clamp(40px, 6vh, 72px); }
.quiz-stage .container { width: 100%; }
.quiz-panel { max-width: 1080px; margin: 0 auto; }
.quiz-title { font-size: clamp(40px, 6.4vw, 78px); line-height: .9; margin: 14px 0 22px; }
.quiz-sub { font-size: clamp(15px, 1.5vw, 18px); line-height: 1.55; color: var(--muted); max-width: 600px; margin: 0 0 34px; }
.quiz-wrap { max-width: 1080px; margin: 0 auto; }
.quiz__progress { font-family: var(--mono); font-size: 13.5px; letter-spacing: .16em; text-transform: uppercase; color: var(--olive); margin: 0 0 18px; }
.quiz__q { font-family: var(--display); font-weight: 400; font-size: clamp(36px, 5.6vw, 76px); line-height: .96; margin: 0 0 clamp(34px, 6vh, 60px); color: var(--espresso); text-align: center; }
.quiz__options { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(16px, 1.8vw, 26px); }
@media (max-width: 860px) { .quiz__options { grid-template-columns: 1fr; } }
.quiz__opt { display: flex; align-items: center; justify-content: center; width: 100%; text-align: center; font-family: var(--mono); font-size: clamp(16px, 1.3vw, 19px); line-height: 1.55; color: var(--espresso); background: rgba(53, 47, 37, .02); border: 1px solid var(--line-strong); border-radius: 14px; padding: clamp(26px, 4vh, 48px) clamp(24px, 2.4vw, 44px); min-height: clamp(120px, 24vh, 210px); cursor: pointer; transition: border-color .18s, background .18s, transform .12s; }
.quiz__opt:hover { border-color: var(--olive); background: rgba(88, 135, 73, .07); }
.quiz__opt:active { transform: translateY(1px); }
.result-card h2 { font-size: clamp(36px, 5.6vw, 76px); line-height: .96; margin: 0 0 clamp(20px, 3vh, 30px); }
#quizResult { text-align: center; }
#quizResult .result-card p { max-width: 62ch; margin-left: auto; margin-right: auto; font-size: clamp(15px, 1.1vw, 18px); }
#quizResult .btn-row { justify-content: center; margin-top: clamp(24px, 4vh, 38px); }
.result-card p { font-size: 17px; line-height: 1.62; color: var(--muted); max-width: 620px; margin: 0 0 28px; }
.btn-row { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.result-note { font-family: var(--mono); font-size: 14.5px; line-height: 1.6; color: var(--muted); margin: 30px 0 18px; }
.result-note a { color: var(--olive); border-bottom: 1px solid var(--olive); }

/* speaker 3D card carousel (homepage roster) */
#speakers { background: #faf5f2; padding: clamp(28px, 3vw, 46px) 0; }  /* matches the photo backdrops so figures blend seamlessly */
#speakers .meta-row { margin-bottom: clamp(16px, 2.4vh, 24px); }
#speakers .section__head .prose { margin-top: 14px; }
.carousel { position: relative; perspective: 1900px; height: clamp(320px, 44vh, 460px); margin-top: clamp(12px, 1.6vh, 22px); }
@media (max-width: 700px) { .carousel { overflow: hidden; } }
.cc-stage { position: relative; width: 100%; height: 100%; transform-style: preserve-3d; }
.cc-card { position: absolute; top: 50%; left: 50%; width: clamp(280px, 29vw, 410px); height: clamp(300px, 41vh, 440px); transform-origin: center center; text-decoration: none; cursor: pointer; transition: transform .55s cubic-bezier(.22, .61, .36, 1), opacity .45s ease; will-change: transform, opacity; transform: translate(-50%, -50%); }
.cc-card__fig { display: block; width: 100%; height: 100%; }
.cc-card__fig img { width: 100%; height: 100%; object-fit: contain; object-position: center bottom; }
.cc-nav { position: absolute; top: 50%; transform: translateY(-50%); z-index: 200; width: 50px; height: 50px; border-radius: 50%; border: 1px solid var(--line-strong); background: var(--cream); color: var(--espresso); font-family: var(--sans); font-size: 22px; line-height: 1; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background .2s, color .2s, border-color .2s; }
.cc-nav:hover { background: var(--olive); color: var(--cream); border-color: var(--olive); }
.cc-nav--prev { left: clamp(2px, 2vw, 28px); }
.cc-nav--next { right: clamp(2px, 2vw, 28px); }
.cc-detail { text-align: center; max-width: 560px; margin: clamp(14px, 2vh, 26px) auto 0; }
.cc-detail #ccRole, .cc-detail .eyebrow { margin: 0; }
.cc-detail__name { font-family: var(--display); font-weight: 400; font-size: clamp(34px, 4.4vw, 56px); line-height: .92; margin: 8px 0 14px; }
.cc-detail__bio { font-size: 15.5px; line-height: 1.62; color: var(--muted); margin: 0 0 24px; }
@media (max-width: 600px) { .cc-nav { width: 42px; height: 42px; font-size: 19px; } }

/* =================== pull quote =================== */
.pullquote { border-left: 2px solid var(--olive); padding-left: clamp(20px,3vw,34px); max-width: 880px; margin-top: 10px; }
.pullquote p { font-style: italic; font-size: clamp(19px,2.3vw,27px); line-height: 1.4; margin: 0 0 16px; }
.pullquote cite { font-family: var(--display); font-style: normal; font-size: 18px; letter-spacing: .02em; color: var(--olive); }
.section--deep .pullquote cite { color: var(--olive-l); }

/* =================== insight feed =================== */
.insights { margin-top: 38px; border-top: 1px solid var(--line-strong); }
.insight { display: grid; grid-template-columns: 1fr auto; gap: 22px; align-items: baseline; padding: 26px 2px; border-bottom: 1px solid var(--line); transition: background .2s; }
.insight:has(a):hover { background: rgba(53,47,37,.03); }
.insight h3 { font-size: 28px; margin: 0 0 8px; }
.insight p { font-size: 14.5px; color: var(--muted); margin: 0; max-width: 70ch; }
.insight .meta { font-family: var(--mono); font-size: 13px; color: var(--olive); white-space: nowrap; }
@media (max-width: 640px) { .insight { grid-template-columns: 1fr; } }

/* =================== clients =================== */
.logos { display: grid; grid-template-columns: repeat(6, 1fr); gap: 34px 44px; align-items: center; justify-items: center; margin-top: 42px; }
.logos img { height: clamp(38px, 3.4vw, 50px); width: auto; max-width: 100%; filter: brightness(0); opacity: .7; transition: opacity .2s; }
@media (max-width: 760px) { .logos { grid-template-columns: repeat(3, 1fr); gap: 24px 20px; } .logos img { height: 32px; } }
.section--deep .logos img { filter: brightness(0) invert(1); opacity: .8; }
.logos img:hover { opacity: 1; }
.client-names { font-family: var(--mono); font-size: 14px; line-height: 2; color: var(--muted); margin-top: 30px; max-width: 860px; }
.section--deep .client-names { color: rgba(250,246,245,.6); }

/* =================== split =================== */
.split { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(28px,5vw,64px); align-items: center; }
.split__media { position: relative; }
.split__media img { width: 100%; filter: grayscale(1) contrast(1.04); border-radius: 4px; }
.split__media .tag { position: absolute; left: 14px; bottom: 14px; font-family: var(--mono); font-size: 11.5px; letter-spacing: .14em; text-transform: uppercase; color: rgba(250,246,245,.8); }
.split__body h2 { font-size: clamp(30px,3.8vw,46px); margin-bottom: 20px; }
@media (max-width: 820px) { .split { grid-template-columns: 1fr; } .split__media { max-width: 400px; } }

/* =================== team =================== */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px,3vw,36px); margin-top: 44px; }
.field-grid { grid-template-columns: repeat(4, 1fr); }
.team-card .photo { aspect-ratio: 4/5; background: var(--cream-3); border: 1px solid var(--line); border-radius: 4px; display: grid; place-items: center; font-family: var(--mono); font-size: 12.5px; letter-spacing: .1em; color: var(--muted); margin-bottom: 14px; overflow: hidden; }
.section--deep .team-card .photo { background: var(--espresso-2); border-color: var(--line-light); color: rgba(250,246,245,.5); }
.team-card .photo img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(1) contrast(1.05); }
.team-card h3 { font-size: 24px; margin: 0 0 2px; }
.team-card .role { font-family: var(--mono); font-size: 13.5px; color: var(--olive); margin-bottom: 10px; }
.section--deep .team-card .role { color: var(--olive-l); }
.team-card p { font-size: 16px; color: var(--muted); margin: 0; }
.section--deep .team-card p { color: rgba(250,246,245,.7); }
@media (max-width: 900px) { .field-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 820px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .team-grid { grid-template-columns: 1fr; } .field-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; } }

/* =================== cta banner =================== */
.cta-banner h2 { font-size: clamp(32px,5vw,58px); line-height: .94; max-width: 18ch; margin-bottom: 30px; }

/* =================== contact form =================== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 8px; max-width: 760px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field.full { grid-column: 1 / -1; }
.field label { font-family: var(--mono); font-size: 13.5px; letter-spacing: .04em; color: var(--muted); }
.field input, .field textarea, .field select { background: var(--cream); border: 1px solid var(--line-strong); border-radius: 4px; padding: 13px 14px; color: var(--espresso); font-family: var(--mono); font-size: 16px; }
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--olive); }
.field textarea { resize: vertical; min-height: 120px; }
.form-actions { margin-top: 24px; }
.form-note { font-family: var(--mono); font-size: 13.5px; color: var(--muted); margin-top: 16px; }
.confirm { display: none; max-width: 640px; }
.confirm.show { display: block; }
.confirm h2 { font-size: clamp(34px,4vw,52px); margin-bottom: 14px; }
@media (max-width: 640px) { .contact-grid { grid-template-columns: 1fr; } }

/* =================== footer (dark) =================== */
.site-footer { background: var(--espresso); color: var(--cream); padding: clamp(54px,7vw,86px) 0 36px; }
.footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: clamp(28px,4vw,56px); padding-bottom: 44px; border-bottom: 1px solid var(--line-light); }
.footer-brand .brand img { height: 46px; }
.footer-brand p { color: rgba(250,246,245,.6); font-size: 16px; max-width: 320px; margin-top: 16px; }
.footer-col h4 { font-family: var(--mono); font-weight: 500; font-size: 13.5px; letter-spacing: .14em; text-transform: uppercase; color: rgba(250,246,245,.55); margin: 0 0 16px; }
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col li { margin-bottom: 11px; }
.footer-col a { font-size: 16px; color: rgba(250,246,245,.85); }
.footer-col a:hover { color: var(--cream); }
.footer-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; padding-top: 26px; font-family: var(--mono); font-size: 13px; color: rgba(250,246,245,.5); }
@media (max-width: 760px) { .footer-top { grid-template-columns: 1fr 1fr; } .footer-brand { grid-column: 1 / -1; } }

/* =================== mobile nav =================== */
@media (max-width: 1200px) {
  .nav-toggle { display: flex; }
  .site-nav { position: fixed; inset: 76px 0 auto 0; flex-direction: column; align-items: flex-start; gap: 2px; background: var(--cream); border-bottom: 1px solid var(--line); padding: 14px var(--pad) 22px; transform: translateY(-130%); transition: transform .3s ease; }
  .site-nav.open { transform: translateY(0); }
  .site-nav a { padding: 12px 0; font-size: 15px; }
  .site-nav .btn { margin: 8px 0 0; }
  .nav-item.has-dropdown { display: block; width: 100%; }
  .nav-sub { width: 100%; justify-content: flex-start; padding: 12px 0; font-size: 15px; }
  .dropdown { position: static; transform: none; opacity: 1; visibility: hidden; height: 0; overflow: hidden; min-width: 0; border: 0; box-shadow: none; background: none; padding: 0 0 2px 14px; transition: none; }
  .nav-item.open .dropdown { visibility: visible; height: auto; transform: none; }
  .dropdown a { font-size: 15px; padding: 10px 0; }
}

/* =================== specialist bio pages =================== */
.bio-hero { border-bottom: 1px solid var(--line); }
.bio-hero__grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(28px, 5vw, 72px); align-items: end; }
.bio-hero__fig { margin: 0; align-self: end; padding-top: clamp(36px, 5vw, 64px); }
.bio-hero__fig img { display: block; width: 100%; max-width: 400px; margin: 0 auto; filter: grayscale(1) contrast(1.06); }
.bio-hero__body { padding: clamp(48px, 7vw, 96px) 0 clamp(44px, 6vw, 84px); }
.bio-hero h1 { font-size: clamp(52px, 7vw, 94px); line-height: .88; margin: 12px 0 16px; }
.bio-role { font-family: var(--mono); font-size: 14px; letter-spacing: .16em; text-transform: uppercase; color: var(--olive); margin: 0 0 24px; }
.bio-lead { font-size: clamp(15px, 1.4vw, 17.5px); line-height: 1.6; color: var(--muted); max-width: 58ch; }
.bio-crumb { font-family: var(--mono); font-size: 13px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }
.bio-crumb a:hover { color: var(--olive); }
@media (max-width: 820px) {
  .bio-hero__grid { grid-template-columns: 1fr; gap: 0; }
  .bio-hero__fig { order: 2; padding-top: 0; }
  .bio-hero__fig img { max-width: 290px; }
  .bio-hero__body { padding-bottom: 28px; }
}

/* attributed pull quotes (real testimonials only) */
.pullquote { border-left: 2px solid var(--olive); padding: 6px 0 6px clamp(20px, 3vw, 34px); max-width: 760px; margin: 44px 0 0; }
.pullquote + .pullquote { margin-top: 34px; }
.pullquote p { font-size: clamp(16px, 1.6vw, 19px); line-height: 1.6; font-style: italic; color: var(--espresso); margin: 0 0 14px; }
.section--deep .pullquote { border-color: var(--olive-l); }
.section--deep .pullquote p { color: var(--cream); }
.pullquote cite { font-family: var(--mono); font-style: normal; font-size: 13px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }
.section--deep .pullquote cite { color: rgba(250,246,245,.65); }

/* prev / next specialist rail */
.bio-next { display: flex; justify-content: space-between; align-items: center; gap: 18px; }
.bio-next a { font-family: var(--display); text-transform: uppercase; font-size: clamp(24px, 3vw, 38px); line-height: 1; color: var(--espresso); }
.bio-next a:hover { color: var(--olive); }
.bio-next .lbl { display: block; font-family: var(--mono); font-size: 12.5px; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); margin-bottom: 8px; }
.bio-next .next { text-align: right; }
@media (max-width: 600px) { .bio-next a { font-size: 22px; } }

/* closer CTA row breathing room (bio + interior closers; homepage hero unaffected) */
.section .hero__cta { margin-top: 30px; }
/* insights mobile: format tag reads as a kicker above the title */
@media (max-width: 640px) { .insight .meta { order: -1; } }
/* about field-team cards are links to full bios */
a.team-card { display: block; }
a.team-card:hover h3 { color: var(--olive-l); }
a.team-card:hover .photo img { filter: grayscale(0) contrast(1.02); }
/* accent text on dark bands uses the readable tint */
.section--deep .accent { color: var(--olive-l); }

/* =================== mobile: center-align all content =================== */
@media (max-width: 700px) {
  main section, .page-hero, .bio-hero__body { text-align: center; }
  .section__head, .prose, .page-hero__sub, .bio-lead, .quiz-sub, .client-names { margin-left: auto; margin-right: auto; }
  .meta-row { align-items: center; }
  .hero__cta, .btn-row, .form-actions, .quiz__options { justify-content: center; }
  .quiz__opt { text-align: center; }
  .cta-card .btn { align-self: center; }
  .bio-crumb { text-align: center; }
  .bio-hero__fig img { margin: 0 auto; }
  .split__media { margin: 0 auto; }
  .pullquote { border-left: 0; border-top: 2px solid var(--olive); padding: 22px 0 0; margin-left: auto; margin-right: auto; }
  .section--deep .pullquote { border-color: var(--olive-l); }
  .bio-next { flex-direction: column; align-items: center; gap: 26px; }
  .bio-next .next { text-align: center; }
  .footer-top, .footer-bottom { text-align: center; }
  .footer-brand .brand { justify-content: center; }
  .footer-bottom { flex-direction: column; gap: 6px; align-items: center; }
}

/* hero logo discipline line */
.hero__disciplines { font-family: var(--mono); font-weight: 500; font-size: clamp(12.5px, 1.1vw, 15.5px); letter-spacing: .34em; text-transform: uppercase; color: rgba(249,245,244,.85); margin: -18px 0 clamp(26px, 4vh, 40px); opacity: 0; animation: heroLogoIn 1.3s ease .55s forwards; }
@media (prefers-reduced-motion: reduce) { .hero__disciplines { animation: none; opacity: 1; } }

/* =================== mobile polish pass =================== */
@media (max-width: 600px) {
  /* footer: single centered column instead of cramped two-up */
  .footer-top { grid-template-columns: 1fr; gap: 30px; text-align: center; }
  .footer-brand p { margin-left: auto; margin-right: auto; }
  .footer-col ul { padding: 0; }
  .footer-brand .brand { justify-content: center; }
  /* hero discipline line: clear the logo and tagline */
  .hero__disciplines { margin: -4px 0 22px; font-size: 11.5px; letter-spacing: .26em; }
  /* hero tagline: readable and wrapped on small screens (single line stays desktop-only) */
  .hero h1.hero__tagline { white-space: normal; font-size: 15px; line-height: 1.65; max-width: none; margin-left: auto; margin-right: auto; }
  /* quiz CTA: compact single-line pill on phones */
  .trio-cta .btn { font-size: 12.5px; padding: 12px 15px; white-space: nowrap; }
}
@media (max-width: 760px) {
  /* offering-card art: keep it a whisper behind centered text */
  .svc-card__art { opacity: .3; }
}

/* quiz back link below options */
.quiz-back-row { margin-top: clamp(20px, 3.5vh, 34px); text-align: center; }
.quiz__back { background: none; border: 0; cursor: pointer; font-family: var(--mono); font-size: 13.5px; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); padding: 0 0 2px; border-bottom: 1px solid var(--line-strong); }
.quiz__back:hover { color: var(--olive); border-color: var(--olive); }

@media (max-width: 350px) {
  .hero h1.hero__tagline { font-size: 13.5px; }
}

@media (max-width: 700px) {
  /* breathing room between the assessment CTA and the client banner */
  #approach { padding-bottom: 48px; }
}

@media (max-width: 700px) {
  /* centered paragraphs wrap in balanced lines instead of ragged ones */
  .prose, .footer-brand p, .page-hero__sub, .bio-lead, .readout, .svc-lines p, .trio-cta p, .hero h1.hero__tagline { text-wrap: balance; }
}

/* footer legal links */
.footer-bottom a:hover { color: var(--olive-l); }
