/* =========================================================
   SEAGOT11 — editorial, typographic, minimal charter
   Palette : cream / ink / black / deep petrol blue
   Display : Cormorant Garamond  ·  Text : Inter
   ========================================================= */

:root {
  --bg:           #F6F2EC;
  --bg-alt:       #EFE9DF;
  --ink:          #1A1A1A;
  --ink-soft:     #3A3733;
  --mute:         #8A8278;
  --line:         #D9D1C4;
  --accent:       #12414F;   /* deep petrol blue (bleu canard) */
  --accent-soft:  #6E9199;   /* muted petrol */
  --dark:         #1C1917;
  --dark-ink:     #EFE9DF;

  --serif: "Cormorant Garamond", "Times New Roman", serif;
  --sans:  "Inter", system-ui, -apple-system, Segoe UI, sans-serif;

  --maxw: 1180px;
  --pad:  clamp(20px, 4vw, 56px);
  --t-ease: cubic-bezier(.2,.7,.2,1);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

/* ---------- Typography ---------- */

.eyebrow {
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--mute);
  margin: 0 0 18px;
  font-weight: 500;
}

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0;
}

h1 em, h2 em, .cta__title em, .hero__title em {
  font-style: italic;
  color: var(--accent);
}

.section__title {
  font-size: clamp(30px, 4.2vw, 54px);
  line-height: 1.1;
  max-width: 22ch;
}
.section__head--center { text-align: center; }
.section__head--center .section__title { margin-inline: auto; max-width: 20ch; }

.section__sub {
  max-width: 56ch;
  color: var(--ink-soft);
  margin-top: 18px;
  font-size: 17px;
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: .04em;
  border: 1px solid var(--ink);
  border-radius: 0;
  color: var(--ink);
  background: transparent;
  cursor: pointer;
  transition: all .35s var(--t-ease);
}
.btn:hover { background: var(--ink); color: var(--bg); }

.btn--primary { background: var(--ink); color: var(--bg); }
.btn--primary:hover { background: var(--accent); border-color: var(--accent); }

.btn--ghost { border-color: var(--line); color: var(--ink-soft); }
.btn--ghost:hover { border-color: var(--ink); background: transparent; color: var(--ink); }

.btn--lg  { padding: 18px 30px; }
.btn--nav { padding: 10px 16px; font-size: 13px; }

.link {
  display: inline-block;
  margin-top: 18px;
  font-size: 14px;
  letter-spacing: .05em;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 2px;
  transition: color .25s var(--t-ease), border-color .25s var(--t-ease);
}
.link:hover { color: var(--accent); border-color: var(--accent); }

/* ---------- NAV ---------- */

.nav {
  position: sticky; top: 0; z-index: 40;
  background: rgba(15,15,15,.92);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid rgba(255,255,255,.08);
  color: #EDE5D6;
}
.nav a { color: inherit; }
.nav__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 18px var(--pad);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
}
.nav__brand { display: inline-flex; align-items: center; gap: 12px; }
.nav__brand-mark {
  width: 46px; height: 46px;
  display: grid; place-items: center;
  border: 1px solid #EDE5D6;
  font-family: var(--serif);
  font-size: 15px;
  color: #EDE5D6;
}
.nav__brand-mark .capricorn-icon { width: 26px; height: 26px; }
.nav__brand-name { font-family: var(--serif); font-size: 28px; font-weight: 600; letter-spacing: 0.01em; }

/* Capricorn glyph — line-art, inherits color, matches editorial palette */
.capricorn-icon {
  width: 18px;
  height: 18px;
  display: inline-block;
  color: currentColor;
}
.capricorn-icon--inline {
  width: 0.85em;
  height: 0.85em;
  vertical-align: -0.08em;
  margin-right: 0.18em;
  opacity: 0.85;
}
.footer__brand .capricorn-icon--inline { opacity: 0.9; }
.nav__menu { display: flex; justify-content: center; gap: 32px; font-size: 14px; color: rgba(237,229,214,.7); }
.nav__menu a { position: relative; padding: 6px 0; }
.nav__menu a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0;
  height: 1px; background: #EDE5D6;
  transform: scaleX(0); transform-origin: left;
  transition: transform .35s var(--t-ease);
}
.nav__menu a:hover { color: #fff; }
.nav__menu a:hover::after { transform: scaleX(1); }
.nav__end { display: inline-flex; align-items: center; gap: 16px; }
.nav__lang {
  font-size: 13px; letter-spacing: .1em; text-transform: uppercase;
  color: rgba(237,229,214,.7);
  transition: color .25s var(--t-ease);
}
.nav__lang:hover { color: #fff; }
.nav .btn--nav {
  background: var(--accent);
  color: #F6F2EC;
  border-color: var(--accent);
}
.nav .btn--nav:hover {
  background: #1A5566;
  color: #fff;
  border-color: #1A5566;
}
@media (max-width: 820px) {
  .nav__inner { grid-template-columns: auto auto; }
  .nav__menu { display: none; }
}

/* ---------- HERO ---------- */

.hero {
  position: relative;
  padding: clamp(80px, 14vh, 160px) var(--pad) clamp(60px, 10vh, 120px);
  max-width: var(--maxw);
  margin: 0 auto;
  overflow: hidden;
  opacity: 0; transform: translateY(12px);
  transition: opacity 1s var(--t-ease), transform 1s var(--t-ease);
}
.hero.in { opacity: 1; transform: none; }
.hero__inner { position: relative; z-index: 1; }

/* Capricorn watermark — large, subtle, sits behind the hero copy */
.hero__bg {
  position: absolute;
  top: 50%;
  right: -6%;
  transform: translateY(-50%);
  width: min(62vw, 720px);
  height: auto;
  color: var(--ink);
  opacity: 0.07;
  pointer-events: none;
  z-index: 0;
}
@media (max-width: 720px) {
  .hero__bg { right: -18%; width: 110vw; opacity: 0.05; }
}
.hero__title {
  font-size: clamp(38px, 6.4vw, 84px);
  line-height: 1.02;
  letter-spacing: -0.015em;
  max-width: 18ch;
  margin-top: 12px;
}
.hero__tagline { max-width: 60ch; margin-top: 22px; font-size: 20px; line-height: 1.4; color: var(--ink); }
.hero__lede { max-width: 58ch; margin-top: 18px; font-size: 13.5px; color: var(--ink-soft); }
.hero__cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 36px; }
.hero__cta .btn--primary { background: var(--accent); color: #F6F2EC; border-color: var(--accent); }
.hero__cta .btn--primary:hover { background: #1A5566; border-color: #1A5566; color: #fff; }
.hero__meta {
  display: grid; grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 28px; margin-top: 64px; padding-top: 28px; border-top: 1px solid var(--line);
}
.hero__meta > div { display: flex; flex-direction: column; gap: 6px; }
.hero__meta-n { font-family: var(--serif); font-size: 28px; color: var(--accent); }
.hero__meta span:last-child {
  font-size: 13px; letter-spacing: .06em;
  text-transform: uppercase; color: var(--mute);
}
@media (max-width: 720px) { .hero__meta { grid-template-columns: 1fr; } }

/* ---------- SECTIONS ---------- */

.section {
  max-width: var(--maxw); margin: 0 auto;
  padding: clamp(70px, 10vh, 130px) var(--pad);
  opacity: 0; transform: translateY(14px);
  transition: opacity .9s var(--t-ease), transform .9s var(--t-ease);
}
.section.in { opacity: 1; transform: none; }
.section__head { margin-bottom: clamp(40px, 6vh, 80px); }
/* Make section labels (01–06) stand out: blue + a touch bolder */
.section .section__head .eyebrow { color: var(--accent); font-weight: 600; }
.section--dark .section__head .eyebrow { color: #9DBAC4; }

.section--dark {
  max-width: none;
  background: var(--dark);
  color: var(--dark-ink);
  padding-left: var(--pad); padding-right: var(--pad);
}
.section--dark .section__title,
.section--dark h3,
.section--dark h4 { color: var(--dark-ink); }
.section--dark .eyebrow { color: #A8A29A; }
.section--dark .section__sub { color: #C8C0B3; }
.section--dark .section__head,
.section--dark .steps,
.section--dark .bio { max-width: var(--maxw); margin-inline: auto; }

.section--accent {
  max-width: none;
  background: var(--bg-alt);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.section--accent .section__head,
.section--accent .benefits { max-width: var(--maxw); margin-inline: auto; }

/* two col */
.two-col {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(30px, 6vw, 80px);
  align-items: start;
}
.prose p { font-size: 17px; color: var(--ink-soft); margin: 0 0 18px; max-width: 48ch; }
.pillars { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--line); }
.pillars li {
  display: grid; grid-template-columns: 24px 1fr; gap: 14px;
  padding: 22px 0; border-bottom: 1px solid var(--line);
}
.pillars span { color: var(--accent); font-size: 22px; line-height: 1; }
.pillars p { margin: 0; color: var(--ink-soft); font-size: 16px; }
.pillars strong { color: var(--ink); font-weight: 500; }
@media (max-width: 820px) { .two-col { grid-template-columns: 1fr; } }

/* ---------- STEPS ---------- */

.steps {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: #2A2522; border: 1px solid #2A2522;
}
.step {
  background: var(--dark);
  padding: clamp(28px, 3vw, 42px);
  opacity: 0; transform: translateY(10px);
  transition: opacity .8s var(--t-ease), transform .8s var(--t-ease);
}
.step.in { opacity: 1; transform: none; }
.step__n {
  font-size: 12px; letter-spacing: .2em;
  text-transform: uppercase; color: var(--accent-soft);
}
.step__title { font-size: clamp(28px, 3vw, 40px); margin: 16px 0 10px; }
.step__lede { font-family: var(--serif); font-style: italic; font-size: 20px; color: #D9D1C4; margin: 0 0 22px; }
.step__list { list-style: none; padding: 0; margin: 0 0 22px; }
.step__list li { padding: 12px 0; border-top: 1px solid #2D2824; font-size: 15px; color: #C8C0B3; }
.step__list li:last-child { border-bottom: 1px solid #2D2824; }
.step__out { font-size: 14px; color: #EDE5D6; margin: 0; }
.step__out strong { color: #fff; font-weight: 500; }
@media (max-width: 980px) { .steps { grid-template-columns: 1fr; } }

/* ---------- SECTORS ---------- */

.sectors { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 2.4vw, 32px); }
.sector {
  border: 1px solid var(--line); padding: clamp(28px, 3vw, 40px);
  background: #FBF8F3;
  transition: border-color .4s var(--t-ease);
  opacity: 0; transform: translateY(10px);
}
.sector.in { opacity: 1; transform: none; transition: opacity .8s var(--t-ease), transform .8s var(--t-ease), border-color .4s var(--t-ease); }
.sector:hover { border-color: var(--accent); }
.sector h3 { font-size: clamp(26px, 2.6vw, 34px); margin-bottom: 6px; }
.sector__tag { margin: 0; font-size: 14px; color: var(--mute); font-style: italic; font-family: var(--serif); }
.sector ul { list-style: none; padding: 0; margin: 0; }
.sector li { padding: 14px 0; border-top: 1px solid var(--line); font-size: 15px; color: var(--ink-soft); }
.sector li:last-child { border-bottom: 1px solid var(--line); }
@media (max-width: 980px) { .sectors { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .sectors { grid-template-columns: 1fr; } }

/* ---------- MARKETS & PARTNERS ---------- */

.reach {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(30px, 5vw, 72px);
  align-items: start;
  border-top: 1px solid var(--line); padding-top: clamp(30px, 4vh, 48px);
}
.reach__block h3 {
  font-family: var(--sans); font-size: 13px; font-weight: 600;
  letter-spacing: .16em; text-transform: uppercase; color: var(--accent);
  margin: 0 0 18px;
}
.reach__lead { margin: 0 0 20px; color: var(--ink-soft); font-size: 15px; line-height: 1.6; max-width: 42ch; }
.reach__tags { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 10px; }
.reach__tags li {
  border: 1px solid var(--line); padding: 9px 16px;
  font-size: 14px; letter-spacing: .03em; color: var(--ink);
  transition: border-color .3s var(--t-ease), color .3s var(--t-ease);
}
.reach__tags li:hover { border-color: var(--accent); color: var(--accent); }
.reach__geo { margin: 0; color: var(--ink-soft); font-size: 17px; line-height: 1.7; max-width: 44ch; }
@media (max-width: 820px) { .reach { grid-template-columns: 1fr; } }

/* ---------- CASE STUDY ---------- */

.case__title {
  font-family: var(--serif); font-size: clamp(26px, 3.4vw, 40px);
  line-height: 1.1; color: var(--ink); margin: 0 0 clamp(28px, 4vh, 44px);
}
.case--second {
  margin-top: clamp(56px, 9vh, 110px);
  padding-top: clamp(44px, 6vh, 72px); border-top: 1px solid var(--line);
}

.case__intro {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(24px, 4vh, 40px);
}
.case__intro .prose p { max-width: 68ch; margin: 0; }
.case__facts { max-width: 560px; width: 100%; }
.case__facts {
  background: #FBF8F3;
  border: 1px solid var(--line);
  padding: clamp(22px, 2.4vw, 32px);
}
.case__facts dl { margin: 0; }
.case__facts dl > div {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}
.case__facts dl > div:last-child { border-bottom: 0; padding-bottom: 0; }
.case__facts dl > div:first-child { padding-top: 0; }
.case__facts dt {
  font-size: 11px; letter-spacing: .18em; text-transform: uppercase;
  color: var(--mute); margin-bottom: 4px;
}
.case__facts dd { margin: 0; font-size: 15px; color: var(--ink); }

.case__metrics {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: var(--line); border: 1px solid var(--line);
  margin: clamp(36px, 5vh, 60px) 0;
}
.case__metrics--three { grid-template-columns: repeat(3, 1fr); }
.case__metric {
  background: var(--bg); padding: clamp(24px, 2.4vw, 34px);
  display: flex; flex-direction: column; gap: 8px;
}
.case__metric-n { font-family: var(--serif); font-size: clamp(48px, 6vw, 66px); color: var(--accent); line-height: 1; }
.case__metric-l { font-size: 13px; letter-spacing: .04em; color: var(--ink-soft); }
@media (max-width: 820px) { .case__metrics { grid-template-columns: 1fr 1fr; } }

.case__story {
  display: grid; grid-template-columns: 1fr;
  gap: clamp(28px, 3vw, 52px);
  max-width: 640px;
}
.case__block h3 {
  font-size: 22px; margin: 0 0 14px;
  padding-bottom: 14px; border-bottom: 1px solid var(--line);
}
.case__block p { margin: 0; font-size: 15px; color: var(--ink-soft); }
.case__block ul { list-style: none; padding: 0; margin: 0; }
.case__block li {
  padding: 11px 0 11px 18px; position: relative;
  font-size: 15px; color: var(--ink-soft);
}
.case__block li::before {
  content: "—"; position: absolute; left: 0; color: var(--accent);
}
@media (max-width: 820px) { .case__story { grid-template-columns: 1fr; } .case__intro { grid-template-columns: 1fr; } }

.case__quote {
  margin: clamp(40px, 6vh, 64px) 0 0;
  padding: clamp(28px, 3vw, 40px) 0 0;
  border-top: 1px solid var(--ink);
  max-width: 60ch;
}
.case__quote p {
  font-family: var(--serif); font-size: clamp(22px, 2.6vw, 30px);
  line-height: 1.3; color: var(--ink); margin: 0 0 18px;
}
.case__quote em { font-style: italic; color: var(--accent); }
.case__partner { margin-top: clamp(44px, 7vh, 80px); }
.case__partner-lead {
  max-width: 60ch; margin: clamp(18px, 3vh, 28px) 0 0;
  text-align: left; font-size: 17px; line-height: 1.6; color: var(--ink-soft);
}
.case__partner-lead strong { color: var(--ink); font-weight: 600; }
.case__partner-fig { margin: 0; }
.case__partner-fig img {
  width: 100%; aspect-ratio: 3 / 2; object-fit: cover;
  display: block; border: 1px solid var(--line);
}
.case__partner-fig figcaption {
  margin-top: 10px; font-size: 12px; letter-spacing: .04em; color: var(--mute); text-align: left;
}

.case__quote cite {
  font-style: normal; font-size: 12px; letter-spacing: .16em;
  text-transform: uppercase; color: var(--mute);
}

/* ---------- CASE STUDY — VISUALS ---------- */

.case__gallery {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: clamp(16px, 2vw, 28px);
  margin: clamp(36px, 5vh, 60px) 0;
}
.case__gallery--single { display: flex; justify-content: flex-start; }
.case__gallery--single .case__fig {
  max-width: 420px; width: 100%;
  background: #FBF8F3; border: 1px solid var(--line);
  padding: clamp(14px, 1.6vw, 22px);
}
.case__gallery--single .case__fig img { aspect-ratio: 3 / 4; border: none; }
.case__gallery--single .case__fig figcaption { text-align: left; margin-top: 14px; }
.case__fig { margin: 0; }
.case__fig img {
  width: 100%; aspect-ratio: 3 / 4; object-fit: cover;
  display: block; border: 1px solid var(--line);
}
.case__fig figcaption {
  margin-top: 10px; font-size: 12px; letter-spacing: .04em; color: var(--mute);
}
/* placeholder shown until the real photo is dropped in */
.case__ph {
  aspect-ratio: 4 / 3; border: 1px dashed var(--mute);
  background: #FBF8F3;
  display: grid; place-items: center; text-align: center; padding: 20px;
}
.case__ph span {
  font-size: 12px; letter-spacing: .06em; color: var(--mute);
  max-width: 24ch; line-height: 1.5;
}
@media (max-width: 820px) { .case__gallery { grid-template-columns: 1fr; } }

/* founder portrait in the About section */
.founder { display: flex; justify-content: center; margin-bottom: clamp(28px, 4vh, 44px); }
.founder__photo, .founder__ph {
  width: 168px; height: 168px; border-radius: 50%; overflow: hidden;
  display: grid; place-items: center; text-align: center;
}
.founder__photo img { width: 100%; height: 100%; object-fit: cover; }
.founder__ph {
  border: 1px dashed #6B675F; background: #26221F; padding: 14px;
}
.founder__ph span {
  font-size: 11px; letter-spacing: .08em; text-transform: uppercase; color: #A8A29A;
}

/* founder portrait — top-left of About */
.founder-portrait { margin: 0 0 clamp(28px, 4vh, 44px); text-align: left; }
.founder-portrait__photo {
  width: 168px; height: 168px; border-radius: 50%; overflow: hidden;
}
.founder-portrait__photo img { width: 100%; height: 100%; object-fit: cover; }
.founder-portrait__name {
  font-family: var(--serif); font-size: 24px; color: var(--ink); margin: 16px 0 0;
}
.founder-portrait__role {
  font-family: var(--sans); font-size: 13px; letter-spacing: .06em;
  text-transform: uppercase; color: var(--accent); margin: 6px 0 0;
}
.founder-portrait__tags { justify-content: flex-start; max-width: 360px; margin-top: 16px; }

/* team members in the About section */
.team {
  display: flex; flex-wrap: wrap; gap: clamp(28px, 4vw, 56px);
  margin: 0 0 clamp(40px, 6vh, 72px);
}
.team__member { margin: 0; text-align: center; width: 200px; }
.team__photo, .team__ph {
  width: 168px; height: 168px; border-radius: 50%; overflow: hidden;
  display: grid; place-items: center; margin: 0 auto 16px;
}
.team__photo img { width: 100%; height: 100%; object-fit: cover; }
.team__ph { border: 1px dashed var(--line); background: var(--bg-alt); }
.team__ph span {
  font-size: 11px; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-soft);
}
.team__name {
  font-family: var(--serif); font-size: 20px; color: var(--ink); margin: 0 0 4px;
}
.team__role {
  font-family: var(--sans); font-size: 12.5px; letter-spacing: .04em;
  color: var(--accent); margin: 0;
}
.team__tags {
  list-style: none; margin: 10px 0 0; padding: 0;
  display: flex; flex-wrap: wrap; gap: 6px; justify-content: center;
}
.team__tags li {
  font-family: var(--sans); font-size: 10.5px; letter-spacing: .03em;
  color: var(--ink-soft); border: 1px solid var(--line);
  border-radius: 100px; padding: 3px 10px; white-space: nowrap;
}
.team__member--empty .team__name,
.team__member--empty .team__role { color: var(--ink-soft); opacity: .55; }
.team__more {
  width: 100%; margin-top: 4px;
  font-family: var(--sans); font-size: 13px; letter-spacing: .08em;
  text-transform: uppercase; color: var(--accent); text-decoration: none;
  align-self: center;
}
.team__more:hover { text-decoration: underline; }

/* ---------- LEVERS ---------- */

.levers { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(20px, 2.5vw, 36px); }
.lever {
  padding: 28px 0; border-top: 1px solid var(--ink);
  opacity: 0; transform: translateY(10px);
  transition: opacity .8s var(--t-ease), transform .8s var(--t-ease);
}
.lever.in { opacity: 1; transform: none; }
.lever__n { font-family: var(--serif); font-size: 22px; color: var(--accent); margin-bottom: 20px; }
.lever h3 { font-size: 22px; margin: 0 0 12px; line-height: 1.25; }
.lever p { margin: 0; color: var(--ink-soft); font-size: 15px; }
@media (max-width: 980px) { .levers { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px)  { .levers { grid-template-columns: 1fr; } }

/* ---------- BENEFITS ---------- */

.benefits {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--line); border: 1px solid var(--line);
}
.benefit {
  background: var(--bg-alt); padding: clamp(26px, 2.4vw, 36px);
  opacity: 0; transform: translateY(10px);
  transition: opacity .8s var(--t-ease), transform .8s var(--t-ease);
}
.benefit.in { opacity: 1; transform: none; }
.benefit h4 { font-family: var(--serif); font-size: 22px; margin: 0 0 10px; }
.benefit p { margin: 0; font-size: 15px; color: var(--ink-soft); }
@media (max-width: 980px) { .benefits { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px)  { .benefits { grid-template-columns: 1fr; } }

/* ---------- FOUNDER LEDE ---------- */

.founder-lede { max-width: 68ch; margin: 0 0 clamp(40px, 6vh, 72px); text-align: left; }
.founder-lede p {
  font-family: var(--serif);
  font-size: clamp(19px, 1.6vw, 22px);
  line-height: 1.55; color: var(--ink-soft); margin: 0 0 16px;
}
.founder-lede p:last-child { color: var(--ink); font-style: italic; }
.name-note {
  max-width: 64ch; margin: 0 0 clamp(44px, 7vh, 80px);
  padding-top: clamp(24px, 3.5vh, 36px); border-top: 1px solid var(--line);
  text-align: left; font-size: 13.5px; line-height: 1.7; color: var(--ink-soft);
}
.name-note strong { color: var(--ink); font-weight: 600; letter-spacing: .03em; }
.name-note .capricorn-icon--inline { width: 1.1em; height: 1.1em; opacity: .8; margin-right: .3em; color: var(--accent); }
.formats-title {
  text-align: left; font-family: var(--serif);
  font-size: clamp(28px, 3.6vw, 42px); font-weight: 600; color: var(--accent);
  margin: clamp(56px, 9vh, 104px) 0 clamp(28px, 4vh, 44px);
  padding-top: clamp(40px, 6vh, 72px); border-top: 1px solid var(--line);
}

/* ---------- FORMATS ---------- */

.formats { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 2vw, 28px); }
.format {
  position: relative; padding: clamp(28px, 3vw, 40px);
  background: #FBF8F3; border: 1px solid var(--line);
  opacity: 0; transform: translateY(10px);
  transition: opacity .8s var(--t-ease), transform .8s var(--t-ease), border-color .3s var(--t-ease);
}
.format.in { opacity: 1; transform: none; }
.format:hover { border-color: var(--ink); }
.format h3 { font-size: 26px; margin: 0 0 6px; }
.format__time { font-size: 12px; letter-spacing: .18em; text-transform: uppercase; color: var(--mute); margin: 0 0 18px; }
.format p { margin: 0; color: var(--ink-soft); font-size: 15px; }
.format--featured { background: var(--accent); color: var(--bg); border-color: var(--accent); }
.format--featured .format__badge { background: #F6F2EC; color: var(--accent); }
.format--featured h3, .format--featured .format__time { color: var(--bg); }
.format--featured p { color: #CFC6B6; }
.format--featured .link { color: var(--bg); border-color: var(--bg); }
.format--featured .link:hover { color: var(--accent-soft); border-color: var(--accent-soft); }
.format__badge {
  position: absolute; top: -12px; left: clamp(24px, 2vw, 40px);
  background: var(--accent); color: #fff;
  padding: 6px 12px; font-size: 11px;
  letter-spacing: .18em; text-transform: uppercase;
}
@media (max-width: 900px) { .formats { grid-template-columns: 1fr; } }

/* ---------- BIO ---------- */

.bio { max-width: 64ch; margin: 0 auto; text-align: center; }
.bio p {
  font-family: var(--serif);
  font-size: clamp(19px, 1.6vw, 22px);
  line-height: 1.55; color: #D9D1C4; margin: 0 0 18px;
}
.bio p:last-child { color: #EDE5D6; font-style: italic; }

/* ---------- CTA — DEEP PETROL BLUE (bleu canard) ---------- */

.cta {
  background: var(--accent);
  color: #F6F2EC;
  padding: clamp(80px, 12vh, 140px) var(--pad);
  opacity: 0; transform: translateY(10px);
  transition: opacity 1s var(--t-ease), transform 1s var(--t-ease);
  position: relative;
  overflow: hidden;
}
.cta.in { opacity: 1; transform: none; }
.cta__inner { position: relative; max-width: 900px; margin: 0 auto; text-align: center; }
.cta .eyebrow { color: #9DBAC4; }
.cta__title {
  font-family: var(--serif);
  font-size: clamp(32px, 4.6vw, 60px);
  line-height: 1.1; letter-spacing: -0.01em;
  margin: 0 auto; max-width: 22ch;
  color: #F6F2EC;
}
.cta__title em { color: #F6F2EC; font-style: italic; }
.cta__sub { margin: 22px auto 34px; max-width: 52ch; color: #CBD8DD; font-size: 17px; }
.cta__actions { display: inline-flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
.cta .btn--primary { background: #F6F2EC; color: var(--accent); border-color: #F6F2EC; }
.cta .btn--primary:hover { background: #fff; color: var(--accent); border-color: #fff; }
.cta .btn--ghost { color: #F6F2EC; border-color: rgba(246,242,236,.45); }
.cta .btn--ghost:hover { border-color: #F6F2EC; background: #F6F2EC; color: var(--accent); }

/* ---------- FOOTER ---------- */

.footer { background: var(--dark); color: #C8C0B3; padding: 24px var(--pad); }
.footer__inner {
  max-width: var(--maxw); margin: 0 auto;
  display: flex; flex-direction: column; align-items: center; text-align: center;
  gap: 8px; font-size: 12px;
}
.footer__brand { font-family: var(--serif); font-size: 17px; color: #EDE5D6; margin: 0; }
.footer__tag { margin: 2px 0 0; color: #A8A29A; }
.footer__meta { text-align: center; }
.footer__meta p { margin: 2px 0; }

/* ---------- WORLD MAP ---------- */

.worldmap { margin-top: clamp(32px, 5vh, 60px); }
.worldmap svg { width: 100%; height: auto; display: block; }
.worldmap .wm-land { fill: var(--line); }
.worldmap .wm-halo { fill: none; stroke: var(--accent); stroke-width: 1.2; opacity: .35; }
.worldmap .wm-mark { fill: var(--accent); }
.worldmap__legend {
  margin-top: 18px; display: flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--sans); font-size: 12px; letter-spacing: .04em; color: var(--ink-soft);
}
.worldmap__legend .dot {
  width: 9px; height: 9px; border-radius: 50%; background: var(--accent); display: inline-block;
}

/* ---------- RECOMMENDATIONS (rotating) ---------- */

.recos__viewport {
  position: relative; max-width: 74ch; margin: clamp(24px, 4vh, 40px) auto 0;
  min-height: 220px;
}
.reco {
  margin: 0; position: absolute; inset: 0;
  display: flex; flex-direction: column; justify-content: center;
  opacity: 0; visibility: hidden; transition: opacity .6s var(--t-ease);
  text-align: center;
}
.reco.is-active { opacity: 1; visibility: visible; position: relative; }
.reco__logo { margin: 0 0 20px; display: flex; justify-content: center; align-items: center; min-height: 34px; }
.reco__logo img { height: 34px; width: auto; object-fit: contain; }
.reco__logo-mark {
  font-family: var(--serif); font-size: 17px; letter-spacing: .06em;
  color: var(--accent); text-transform: uppercase;
}
.reco__text {
  font-family: var(--serif); font-size: clamp(20px, 2.2vw, 27px);
  line-height: 1.5; color: var(--ink); font-style: italic; margin: 0 0 22px;
}
.reco__text::before { content: "\201C"; }
.reco__text::after  { content: "\201D"; }
.reco__by { display: flex; flex-direction: column; gap: 2px; }
.reco__name {
  font-family: var(--sans); font-size: 14px; font-weight: 600;
  letter-spacing: .04em; color: var(--accent);
}
.reco__role {
  font-family: var(--sans); font-size: 12.5px; color: var(--ink-soft);
}
.recos__dots {
  display: flex; justify-content: center; gap: 10px; margin-top: clamp(24px, 3.5vh, 36px);
}
.recos__dot {
  width: 8px; height: 8px; border-radius: 50%; padding: 0;
  border: 1px solid var(--accent); background: transparent; cursor: pointer;
  transition: background .3s var(--t-ease);
}
.recos__dot[aria-selected="true"] { background: var(--accent); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; animation: none !important; }
  .hero, .section, .cta, .step, .sector, .lever, .benefit, .format { opacity: 1 !important; transform: none !important; }
}
