/* ==========================================================================
   InvMDLD — Strategic Advisory & Principal Investments
   Shared stylesheet for all language editions.
   ========================================================================== */

:root {
  /* Palette — gold is taken from the brand mark (#b4946c) */
  --ivory:      #F6F6F3;
  --ivory-warm: #EEEEE9;
  --paper:      #FCFCFB;
  --ink:        #14171A;
  --ink-deep:   #0D0F11;
  --muted:      #6A6E72;
  --muted-dark: #92959A;
  --gold:       #B4946C;
  --gold-soft:  #C8AC8B;
  --line:       #E2E2DD;
  --line-dark:  #262A2E;

  --serif: "Bodoni Moda", "Didot", "Times New Roman", serif;
  --sans:  "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --container: 1180px;
  --gutter: 32px;
  --section-y: 132px;
  --nav-h: 84px;
}

*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 1.0625rem;
  line-height: 1.75;
  font-weight: 400;
  color: var(--ink);
  background: var(--ivory);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: var(--serif); font-weight: 400; margin: 0; letter-spacing: -0.01em; }
p { margin: 0 0 1.15em; }
p:last-child { margin-bottom: 0; }
a { color: inherit; text-decoration: none; }
img, svg { max-width: 100%; height: auto; display: block; }
ul { margin: 0; padding: 0; list-style: none; }

:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 2px; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }
.section { padding: var(--section-y) 0; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* --- Shared type -------------------------------------------------------- */

.eyebrow {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 28px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.eyebrow::before {
  content: ""; width: 34px; height: 1px; background: var(--gold); flex: none;
}
.eyebrow--plain::before { display: none; }

.section-title { font-size: clamp(2rem, 3.6vw, 3rem); line-height: 1.12; }
.lede {
  font-size: clamp(1.0625rem, 1.35vw, 1.1875rem);
  line-height: 1.72;
  color: var(--muted);
  max-width: 58ch;
}

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

.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--sans); font-size: 0.875rem; font-weight: 500;
  letter-spacing: 0.04em;
  padding: 16px 30px;
  border: 1px solid transparent;
  border-radius: 2px;
  cursor: pointer;
  transition: background-color .25s ease, color .25s ease, border-color .25s ease, transform .25s ease;
}
.btn__arrow { transition: transform .25s ease; }
.btn:hover .btn__arrow { transform: translateX(4px); }

.btn--solid { background: var(--ink); color: var(--ivory); border-color: var(--ink); }
.btn--solid:hover { background: var(--gold); border-color: var(--gold); color: #fff; }

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

.btn--on-dark { background: transparent; color: var(--ivory); border-color: rgba(255,255,255,.28); }
.btn--on-dark:hover { border-color: var(--gold); color: var(--gold-soft); }

.btn--sm { padding: 11px 20px; font-size: 0.8125rem; }

/* Quiet text link with a rule that grows on hover */
.link-quiet {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 0.875rem; font-weight: 500; letter-spacing: 0.03em;
  color: var(--gold);
  padding-bottom: 3px;
  background-image: linear-gradient(var(--gold), var(--gold));
  background-repeat: no-repeat;
  background-size: 0% 1px;
  background-position: 0 100%;
  transition: background-size .3s ease;
}
.link-quiet:hover { background-size: 100% 1px; }

/* --- Navigation --------------------------------------------------------- */

.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  height: var(--nav-h);
  display: flex; align-items: center;
  background: rgba(246,246,243,.82);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: height .3s ease, border-color .3s ease, background-color .3s ease;
}
.nav.is-scrolled { height: 68px; border-bottom-color: var(--line); }
.nav .container { display: flex; align-items: center; justify-content: space-between; width: 100%; }

.brand { display: flex; align-items: center; gap: 14px; color: var(--gold); }
.brand__mark { width: 38px; flex: none; transition: width .3s ease; }
.nav.is-scrolled .brand__mark { width: 32px; }
.brand__name {
  font-family: var(--serif); font-size: 1.3125rem; letter-spacing: 0.02em;
  color: var(--ink); line-height: 1;
}

.nav__menu { display: flex; align-items: center; gap: 38px; }
.nav__link {
  font-size: 0.875rem; font-weight: 400; letter-spacing: 0.02em; color: var(--ink);
  position: relative; padding: 6px 0;
}
.nav__link::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 1px; width: 0;
  background: var(--gold); transition: width .28s ease;
}
.nav__link:hover::after, .nav__link.is-active::after { width: 100%; }

.nav__toggle {
  display: none; width: 44px; height: 44px; margin-right: -10px;
  background: none; border: 0; cursor: pointer; padding: 0;
  align-items: center; justify-content: center;
}
.nav__toggle span, .nav__toggle span::before, .nav__toggle span::after {
  display: block; width: 22px; height: 1px; background: var(--ink);
  transition: transform .3s ease, opacity .2s ease;
}
.nav__toggle span { position: relative; }
.nav__toggle span::before, .nav__toggle span::after { content: ""; position: absolute; left: 0; }
.nav__toggle span::before { top: -7px; }
.nav__toggle span::after  { top: 7px; }
.nav__toggle[aria-expanded="true"] span { background: transparent; }
.nav__toggle[aria-expanded="true"] span::before { transform: translateY(7px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span::after  { transform: translateY(-7px) rotate(-45deg); }

/* --- Hero --------------------------------------------------------------- */

.hero {
  padding: calc(var(--nav-h) + 116px) 0 108px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(170deg, var(--ivory) 0%, var(--ivory-warm) 100%);
}
/* An oversized, very faint brand mark anchoring the right edge */
.hero__ghost {
  position: absolute; right: -8%; top: 50%; transform: translateY(-50%);
  width: min(620px, 52vw); color: var(--gold); opacity: .055;
  pointer-events: none; user-select: none;
}
.hero .container { position: relative; z-index: 1; }
.hero__inner { max-width: 46rem; }

.hero__descriptor {
  font-size: 0.75rem; font-weight: 500; letter-spacing: 0.24em;
  text-transform: uppercase; color: var(--muted); margin: 0 0 34px;
}

.hero__title {
  font-size: clamp(2.75rem, 7vw, 5.25rem);
  line-height: 1.02;
  letter-spacing: -0.025em;
  margin: 0 0 40px;
}
.hero__title span { display: block; }
.hero__title span + span { color: var(--muted); }
.hero__title span + span + span { color: var(--gold); }

.hero__rule { width: 62px; height: 1px; background: var(--gold); margin: 0 0 36px; }

.hero__copy { max-width: 40rem; }
.hero__copy p:first-child { font-size: clamp(1.125rem, 1.5vw, 1.3125rem); line-height: 1.62; color: var(--ink); }
.hero__copy p + p { font-size: 1.0625rem; color: var(--muted); margin-top: 20px; }

.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 46px; }

/* --- Statement band ----------------------------------------------------- */

.statement {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
  padding: 92px 0;
}
.statement__text {
  font-family: var(--serif);
  font-size: clamp(1.375rem, 2.5vw, 2.0625rem);
  line-height: 1.42;
  letter-spacing: -0.015em;
  max-width: 34ch;
  margin: 0;
}
.statement__text em { font-style: italic; color: var(--gold); }
.statement__grid { display: grid; grid-template-columns: 1.15fr 1fr; gap: 72px; align-items: start; }
.statement__aside { color: var(--muted); font-size: 1rem; padding-top: 8px; }

/* --- Core areas (01–04) ------------------------------------------------- */

.areas { background: var(--ivory); }
.areas__head { max-width: 46rem; margin-bottom: 84px; }
.areas__head .section-title { margin-bottom: 22px; }

.area {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr) minmax(0, 1fr);
  gap: 48px;
  padding: 52px 0;
  border-top: 1px solid var(--line);
  align-items: start;
}
.area:last-child { border-bottom: 1px solid var(--line); }

/* Left column carries two true things: which part of the brand line the area
   belongs to, and whether it is client work or our own capital. */
.area__marker { display: flex; flex-direction: column; gap: 11px; padding-top: 9px; }
.area__marker::before {
  content: ""; display: block; width: 22px; height: 1px;
  background: var(--gold); margin-bottom: 3px;
}
.area__kind {
  font-size: 0.625rem; font-weight: 500; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--muted); line-height: 1.55;
}
/* Principal investments sit on the other side of the advisory line. */
.area__kind--own { color: var(--gold); }
.area__title { font-size: clamp(1.5rem, 2.2vw, 1.9375rem); line-height: 1.2; margin-bottom: 18px; }
.area__body { color: var(--muted); font-size: 1.0625rem; }
.area__body .link-quiet { margin-top: 20px; }
/* Strategic-level qualifier — kept visually subordinate to the main claim. */
.area__note {
  margin-top: 16px; padding-left: 16px; border-left: 1px solid var(--line);
  font-size: 0.9375rem; line-height: 1.65;
}

.area__topics { display: flex; flex-wrap: wrap; gap: 8px; padding-top: 8px; }
.area__topics li {
  font-size: 0.8125rem; letter-spacing: 0.015em; color: var(--muted);
  border: 1px solid var(--line); border-radius: 999px; padding: 6px 15px;
  background: var(--paper);
}

/* --- Investments (dark) ------------------------------------------------- */

.invest {
  background: var(--ink-deep);
  color: var(--ivory);
  padding: var(--section-y) 0;
  position: relative;
  overflow: hidden;
}
.invest__ghost {
  position: absolute; left: -10%; bottom: -22%;
  width: min(560px, 48vw); color: var(--gold); opacity: .06; pointer-events: none;
}
.invest .container { position: relative; z-index: 1; }
.invest .eyebrow { color: var(--gold-soft); }
.invest .eyebrow::before { background: var(--gold-soft); }
.invest__grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 80px; align-items: start; }
.invest__title { font-size: clamp(2rem, 3.6vw, 3rem); line-height: 1.12; margin-bottom: 30px; }
.invest__lede { font-size: clamp(1.0625rem, 1.35vw, 1.1875rem); line-height: 1.72; color: #C6C3BD; }
.invest__lede strong { color: var(--ivory); font-weight: 500; }

.invest__themes { border-top: 1px solid var(--line-dark); margin-top: 8px; }
.invest__themes li {
  padding: 19px 0; border-bottom: 1px solid var(--line-dark);
  display: flex; align-items: baseline; gap: 16px;
  font-size: 1rem; color: #C6C3BD;
}
.invest__themes li::before {
  content: ""; width: 5px; height: 5px; border-radius: 50%;
  background: var(--gold); flex: none; transform: translateY(-3px);
}

.note {
  margin-top: 44px; padding: 22px 26px;
  border-left: 2px solid var(--gold);
  background: rgba(255,255,255,.035);
  font-size: 0.9375rem; line-height: 1.68; color: var(--muted-dark);
}

/* --- Approach ----------------------------------------------------------- */

.approach { background: var(--paper); border-top: 1px solid var(--line); }
.approach__head { max-width: 44rem; margin-bottom: 76px; }
.approach__head .section-title { margin-bottom: 22px; }
.approach__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 56px; }
.approach__item { border-top: 1px solid var(--gold); padding-top: 26px; }
.approach__item h3 { font-size: 1.3125rem; line-height: 1.3; margin-bottom: 14px; }
.approach__item p { color: var(--muted); font-size: 1rem; }

/* --- About -------------------------------------------------------------- */

.about { background: var(--ivory); }
.about__grid { display: grid; grid-template-columns: 1fr 1.25fr; gap: 88px; align-items: start; }
.about__title { font-size: clamp(2rem, 3.6vw, 3rem); line-height: 1.12; }
.about__body p { color: var(--muted); font-size: 1.0625rem; }
.about__body p:first-child { color: var(--ink); font-size: clamp(1.0625rem, 1.35vw, 1.1875rem); }

.facts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; margin-top: 72px; padding-top: 44px; border-top: 1px solid var(--line); }
.facts__item dt { font-size: 0.6875rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); margin-bottom: 12px; }
.facts__item dd { margin: 0; font-family: var(--serif); font-size: 1.5rem; line-height: 1.25; }

/* --- Contact ------------------------------------------------------------ */

.contact { background: var(--paper); border-top: 1px solid var(--line); }
.contact__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 88px; align-items: start; }
.contact__title { font-size: clamp(2rem, 3.6vw, 3rem); line-height: 1.12; margin-bottom: 24px; }

.contact__list { border-top: 1px solid var(--line); }
.contact__row {
  display: grid; grid-template-columns: 128px 1fr; gap: 24px;
  padding: 22px 0; border-bottom: 1px solid var(--line); align-items: baseline;
}
.contact__row dt { font-size: 0.6875rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); }
.contact__row dd { margin: 0; font-size: 1.0625rem; }
.contact__row a:hover { color: var(--gold); }

.contact__actions {
  margin-top: 36px; display: flex; flex-wrap: wrap;
  align-items: center; gap: 16px 28px;
}
.contact__address {
  font-family: var(--serif); font-size: 1.1875rem; color: var(--ink);
  padding-bottom: 3px;
  background-image: linear-gradient(var(--gold), var(--gold));
  background-repeat: no-repeat; background-size: 0% 1px; background-position: 0 100%;
  transition: background-size .3s ease, color .25s ease;
}
.contact__address:hover { color: var(--gold); background-size: 100% 1px; }

/* --- Footer ------------------------------------------------------------- */

.footer { background: var(--ink-deep); color: var(--muted-dark); padding: 84px 0 40px; font-size: 0.9375rem; }
.footer__top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 56px; padding-bottom: 56px; border-bottom: 1px solid var(--line-dark); }
.footer .brand__name { color: var(--ivory); }
.footer__blurb { margin-top: 24px; max-width: 34ch; line-height: 1.7; }
.footer__col h4 { font-family: var(--sans); font-size: 0.6875rem; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ivory); margin-bottom: 20px; }
.footer__col li { margin-bottom: 12px; }
.footer__col a:hover, .footer__legal a:hover { color: var(--gold-soft); }

.footer__legal { padding-top: 34px; display: grid; grid-template-columns: 1fr auto; gap: 28px; align-items: end; font-size: 0.8125rem; line-height: 1.7; }
.footer__legal p { margin: 0 0 6px; }
.footer__legal .footer__entity { color: var(--ivory); }

/* --- Language switcher -------------------------------------------------- */

.lang { position: relative; }
.lang__btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: none; border: 1px solid var(--line); border-radius: 2px;
  padding: 9px 14px; font-family: var(--sans); font-size: 0.75rem;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink); cursor: pointer;
  transition: border-color .25s ease;
}
.lang__btn:hover { border-color: var(--ink); }
.lang__btn svg { width: 13px; transition: transform .25s ease; }
.lang__btn[aria-expanded="true"] svg { transform: rotate(180deg); }

.lang__menu {
  position: absolute; right: 0; top: calc(100% + 10px); min-width: 168px;
  background: var(--paper); border: 1px solid var(--line); border-radius: 2px;
  padding: 6px; box-shadow: 0 18px 40px rgba(20,23,26,.10);
  opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s;
  z-index: 20;
}
.lang__menu.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
.lang__menu a { display: block; padding: 9px 14px; font-size: 0.875rem; border-radius: 2px; }
.lang__menu a:hover { background: var(--ivory-warm); }
.lang__menu a[aria-current="true"] { color: var(--gold); }

.footer .lang__btn { color: var(--ivory); border-color: var(--line-dark); }
.footer .lang__btn:hover { border-color: var(--gold); }
.footer .lang__menu { bottom: calc(100% + 10px); top: auto; background: #14171A; border-color: var(--line-dark); }
.footer .lang__menu a { color: var(--muted-dark); }
.footer .lang__menu a:hover { background: rgba(255,255,255,.05); color: var(--ivory); }

/* --- Legal / privacy page ----------------------------------------------- */

.doc { padding: calc(var(--nav-h) + 84px) 0 108px; background: var(--paper); }
.doc__inner { max-width: 46rem; }
.doc h1 { font-size: clamp(2.25rem, 4.4vw, 3.25rem); line-height: 1.1; margin-bottom: 20px; }
.doc h2 { font-size: 1.5rem; margin: 56px 0 18px; }
.doc h3 { font-family: var(--sans); font-size: 1rem; font-weight: 500; margin: 30px 0 10px; }
.doc p, .doc li { color: var(--muted); }
.doc ul { list-style: none; margin: 0 0 1.15em; }
.doc ul li { position: relative; padding-left: 22px; margin-bottom: 9px; }
.doc ul li::before { content: ""; position: absolute; left: 0; top: .72em; width: 6px; height: 1px; background: var(--gold); }
.doc__meta { font-size: 0.875rem; color: var(--muted); padding-bottom: 34px; margin-bottom: 44px; border-bottom: 1px solid var(--line); }
.doc dl.contact__list { margin-top: 8px; }

/* --- Placeholders awaiting client-supplied detail ----------------------- */

.todo {
  color: #9A7A3E;
  background: rgba(180,148,108,.11);
  border-bottom: 1px dashed rgba(180,148,108,.6);
  padding: 1px 6px; border-radius: 2px;
  font-family: var(--sans); font-size: .9em; font-style: normal;
  white-space: nowrap;
}
.invest .todo, .footer .todo { color: var(--gold-soft); background: rgba(200,172,139,.14); }

/* --- Reveal on scroll --------------------------------------------------- */

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }

/* --- Responsive --------------------------------------------------------- */

@media (max-width: 1024px) {
  :root { --section-y: 96px; }
  .statement__grid, .invest__grid, .about__grid, .contact__grid { grid-template-columns: 1fr; gap: 44px; }
  .approach__grid { grid-template-columns: 1fr; gap: 40px; }
  .area { grid-template-columns: 160px 1fr; gap: 28px; }
  .area__topics { grid-column: 2; }
  .footer__top { grid-template-columns: 1fr 1fr; gap: 44px; }
}

@media (max-width: 860px) {
  :root { --gutter: 22px; --section-y: 78px; }

  .nav__toggle { display: flex; }
  .nav__menu {
    position: fixed; inset: var(--nav-h) 0 auto 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--ivory); border-bottom: 1px solid var(--line);
    padding: 10px var(--gutter) 26px;
    max-height: 0; overflow: hidden; visibility: hidden;
    transition: max-height .35s ease, visibility .35s, padding .35s ease;
  }
  .nav__menu.is-open { max-height: 78vh; visibility: visible; overflow-y: auto; }
  .nav__link { padding: 15px 0; border-bottom: 1px solid var(--line); font-size: 1rem; }
  .nav__link::after { display: none; }
  .nav__menu .btn { margin-top: 20px; justify-content: center; }
  .nav__menu .lang { margin-top: 16px; }
  .nav__menu .lang__menu { position: static; opacity: 1; visibility: visible; transform: none;
    display: none; box-shadow: none; margin-top: 8px; }
  .nav__menu .lang__menu.is-open { display: block; }

  .hero { padding: calc(var(--nav-h) + 66px) 0 76px; }
  .hero__ghost { right: -28%; opacity: .04; }
  .hero__actions .btn { flex: 1 1 auto; justify-content: center; }

  .statement { padding: 64px 0; }
  .areas__head, .approach__head { margin-bottom: 52px; }
  .area { grid-template-columns: 1fr; gap: 18px; padding: 38px 0; }
  .area__marker { padding-top: 0; flex-direction: row; align-items: baseline; gap: 14px; }
  .area__marker::before { display: none; }
  .area__topics { grid-column: 1; }
  .facts { grid-template-columns: 1fr; gap: 26px; }
  .footer__top { grid-template-columns: 1fr; }
  .footer__legal { grid-template-columns: 1fr; align-items: start; }
  .contact__row { grid-template-columns: 1fr; gap: 6px; }
}

/* --- Brand mark sizing (inline SVG sprite) ------------------------------ */
.brand__mark svg, .hero__ghost svg, .invest__ghost svg { width: 100%; height: auto; display: block; }

/* --- Skip link ---------------------------------------------------------- */

.skip {
  position: absolute; left: 50%; top: 0; transform: translate(-50%, -110%);
  z-index: 200; background: var(--ink); color: var(--ivory);
  padding: 12px 22px; font-size: 0.875rem; border-radius: 0 0 2px 2px;
  transition: transform .2s ease;
}
.skip:focus { transform: translate(-50%, 0); }

/* --- Investments: spacing for the stacked ledes -------------------------- */

.invest__lede + .invest__lede { margin-top: 18px; }
.invest__cta { margin-top: 40px; }

/* --- Current operating focus -------------------------------------------- */

.focus { background: var(--ivory); border-top: 1px solid var(--line); }
.focus__grid { display: grid; grid-template-columns: 1fr 1.25fr; gap: 88px; align-items: start; }
.focus__title { font-size: clamp(2rem, 3.6vw, 2.75rem); line-height: 1.12; }
.focus__body p:first-child {
  font-family: var(--serif); font-size: clamp(1.25rem, 1.9vw, 1.5rem);
  line-height: 1.45; color: var(--ink);
}
.focus__meta { color: var(--muted); font-size: 1rem; margin-top: 20px; }

/* --- Founder ------------------------------------------------------------- */

.founder { margin-top: 48px; }
.founder__portrait {
  width: 100%; max-width: 260px; aspect-ratio: 4 / 5;
  border: 1px solid var(--line); background: var(--ivory-warm);
  display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 20px; margin-bottom: 24px;
  overflow: hidden;
}
.founder__portrait img { width: 100%; height: 100%; object-fit: cover; }
/* Until a portrait exists, a rule carries the block instead of an empty frame. */
.founder--no-portrait { padding-top: 26px; border-top: 1px solid var(--gold); max-width: 260px; }
.founder__name { font-family: var(--serif); font-size: 1.375rem; margin: 0 0 4px; }
.founder__role {
  font-size: 0.6875rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); margin: 0;
}

.pull {
  margin: 34px 0; padding: 4px 0 4px 26px;
  border-left: 2px solid var(--gold);
  font-family: var(--serif); font-size: clamp(1.1875rem, 1.8vw, 1.4375rem);
  line-height: 1.48; color: var(--ink);
}

/* --- Contact form -------------------------------------------------------- */

.form { display: flex; flex-direction: column; gap: 22px; }
.form__notice {
  display: block; white-space: normal; line-height: 1.6;
  padding: 14px 16px; margin: 0;
}
.form__row { display: flex; flex-direction: column; gap: 9px; }
.form__label {
  font-size: 0.6875rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--muted);
}
.form__input {
  font-family: var(--sans); font-size: 1rem; color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line); border-radius: 2px;
  padding: 13px 15px; width: 100%;
  transition: border-color .25s ease;
}
.form__input:hover { border-color: var(--muted-dark); }
.form__input:focus { border-color: var(--gold); outline: none; box-shadow: 0 0 0 3px rgba(180,148,108,.14); }
.form__textarea { resize: vertical; min-height: 130px; line-height: 1.65; }
select.form__input { appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath d='M1 1.5 6 6.5l5-5' stroke='%236A6E72' stroke-width='1.3' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 15px center; background-size: 12px;
  padding-right: 40px;
}
.form .btn { align-self: flex-start; }
/* Honeypot — hidden from people, visible to naive bots. */
.form__hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.form__result {
  padding: 16px 18px; border-left: 2px solid var(--gold);
  background: var(--ivory-warm); font-size: 0.9375rem; line-height: 1.65;
}

/* --- Footer additions ---------------------------------------------------- */

.footer__line {
  margin-top: 14px; font-family: var(--serif); font-size: 1.0625rem;
  color: var(--gold-soft); letter-spacing: 0.02em;
}
.footer__compliance { margin-top: 14px; }

@media (max-width: 1024px) {
  .focus__grid { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 860px) {
  .founder { margin-top: 36px; }
  .founder__portrait { max-width: 200px; }
}
