:root {
  --ink: #171512;
  --muted: #6c665d;
  --ivory: #f7f2ea;
  --paper: #fffaf2;
  --stone: #d7cbbb;
  --line: rgba(23, 21, 18, 0.14);
  --forest: #19382d;
  --wine: #5f2430;
  --gold: #b89458;
  --shadow: 0 24px 70px rgba(20, 18, 15, 0.18);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Inter", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--ivory);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 5vw, 64px);
  color: #fffaf2;
  transition: background 220ms ease, color 220ms ease, box-shadow 220ms ease;
}

.site-header.scrolled {
  color: var(--ink);
  background: rgba(247, 242, 234, 0.92);
  box-shadow: 0 12px 40px rgba(20, 18, 15, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  letter-spacing: 0;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid currentColor;
  font-family: var(--serif);
  font-size: 14px;
}

.nav {
  display: flex;
  gap: 28px;
  font-size: 14px;
}

.nav a,
.header-cta {
  opacity: 0.92;
}

.header-cta {
  padding: 12px 18px;
  border: 1px solid currentColor;
  font-size: 13px;
  font-weight: 600;
}

.hero {
  position: relative;
  min-height: 94vh;
  display: grid;
  align-items: end;
  padding: 132px clamp(20px, 6vw, 80px) 72px;
  color: #fffaf2;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.82) brightness(0.7);
  transform: scale(1.03);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(18, 16, 12, 0.44);
}

.hero-content {
  max-width: min(860px, calc(100vw - 520px));
}

.eyebrow,
.section-kicker {
  margin: 0 0 16px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 0.98;
  letter-spacing: 0;
  font-family: var(--serif);
  font-weight: 600;
}

h1 {
  max-width: 900px;
  font-size: clamp(58px, 9vw, 122px);
}

h2 {
  font-size: clamp(42px, 6vw, 82px);
}

h3 {
  font-size: 32px;
}

.hero-copy {
  max-width: 730px;
  margin: 28px 0 0;
  color: rgba(255, 250, 242, 0.86);
  font-size: clamp(17px, 1.7vw, 22px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border: 1px solid transparent;
  font-weight: 700;
  font-size: 14px;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  background: var(--paper);
  color: var(--ink);
}

.button.secondary {
  border-color: rgba(255, 250, 242, 0.72);
  color: #fffaf2;
}

.hero-panel {
  position: absolute;
  right: clamp(20px, 5vw, 64px);
  bottom: 48px;
  width: min(320px, calc(100% - 40px));
  padding: 22px;
  border: 1px solid rgba(255, 250, 242, 0.34);
  background: rgba(18, 16, 12, 0.42);
  backdrop-filter: blur(18px);
}

.hero-panel span,
.investment span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-panel strong {
  display: block;
  margin-top: 6px;
  font-family: var(--serif);
  font-size: 28px;
  line-height: 1;
}

.hero-panel p,
.investment p {
  margin: 12px 0 0;
  color: rgba(255, 250, 242, 0.74);
  font-size: 14px;
}

.section {
  padding: clamp(78px, 10vw, 140px) clamp(20px, 6vw, 80px);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.75fr);
  gap: clamp(36px, 8vw, 110px);
  align-items: start;
}

.large-copy,
.section-heading p,
.guarantee p,
.founder-copy p,
.cta-box p {
  color: var(--muted);
  font-size: clamp(17px, 1.6vw, 21px);
}

.intro-section {
  background: var(--paper);
}

.image-band {
  position: relative;
  height: clamp(360px, 58vw, 720px);
  overflow: hidden;
}

.image-band img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9);
}

.image-band-card {
  position: absolute;
  left: clamp(20px, 6vw, 80px);
  bottom: clamp(20px, 6vw, 80px);
  width: min(520px, calc(100% - 40px));
  padding: clamp(28px, 4vw, 48px);
  background: rgba(255, 250, 242, 0.92);
  box-shadow: var(--shadow);
  font-family: var(--serif);
  font-size: clamp(34px, 4.6vw, 62px);
  line-height: 1;
}

.proof-section {
  background: var(--ink);
  color: var(--paper);
}

.proof-section .section-heading p {
  color: rgba(255, 250, 242, 0.72);
}

.kpi-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 34px;
  background: rgba(255, 250, 242, 0.16);
}

.kpi-card {
  min-height: 178px;
  padding: clamp(24px, 3vw, 34px);
  background: #211e19;
}

.kpi-card strong {
  display: block;
  color: var(--gold);
  font-family: var(--serif);
  font-size: clamp(42px, 4.4vw, 64px);
  font-weight: 600;
  line-height: 0.9;
}

.kpi-card span {
  display: block;
  margin-top: 18px;
  color: rgba(255, 250, 242, 0.72);
  font-size: 14px;
}

.proof-carousel {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr) 54px;
  align-items: center;
  gap: clamp(14px, 3vw, 28px);
  margin-top: 44px;
  padding: clamp(26px, 5vw, 54px);
  border: 1px solid rgba(255, 250, 242, 0.18);
  background: #211e19;
}

.carousel-button {
  width: 54px;
  height: 54px;
  border: 1px solid rgba(255, 250, 242, 0.26);
  background: transparent;
  color: var(--paper);
  font-family: var(--serif);
  font-size: 36px;
  line-height: 1;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease;
}

.carousel-button:hover {
  background: var(--paper);
  color: var(--ink);
}

.proof-quote {
  min-height: 164px;
  transition: opacity 180ms ease, transform 180ms ease;
}

.proof-quote.is-changing {
  opacity: 0;
  transform: translateY(8px);
}

.proof-quote span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.proof-quote blockquote {
  margin: 18px 0 0;
  max-width: 930px;
  font-family: var(--serif);
  font-size: clamp(36px, 5vw, 70px);
  line-height: 0.98;
}

.section-heading {
  max-width: 800px;
  margin-bottom: 44px;
}

.section-heading h2 {
  margin-bottom: 22px;
}

.blueprint-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.service-card {
  min-height: 280px;
  padding: clamp(24px, 3vw, 36px);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 250, 242, 0.42);
  transition: background 180ms ease, transform 180ms ease;
}

.service-card:hover {
  background: var(--paper);
  transform: translateY(-4px);
}

.service-card span {
  color: var(--gold);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.16em;
}

.service-card h3 {
  margin-top: 28px;
}

.service-card p {
  color: var(--muted);
}

.dark-section {
  color: var(--paper);
  background: var(--forest);
}

.dark-section .section-heading p,
.dark-section .process-detail p {
  color: rgba(255, 250, 242, 0.72);
}

.process {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 36px;
  background: rgba(255, 250, 242, 0.2);
}

.process-step {
  display: grid;
  gap: 10px;
  min-height: 150px;
  padding: 24px;
  color: rgba(255, 250, 242, 0.72);
  background: var(--forest);
  border: 0;
  text-align: left;
  cursor: pointer;
}

.process-step.active {
  color: var(--paper);
  background: #214a3c;
}

.process-step span {
  color: var(--gold);
  font-weight: 700;
}

.process-step strong {
  font-family: var(--serif);
  font-size: 32px;
}

.process-detail {
  max-width: 840px;
  margin-top: 34px;
  padding-top: 34px;
  border-top: 1px solid rgba(255, 250, 242, 0.18);
}

.process-detail h3 {
  font-size: clamp(34px, 4vw, 58px);
}

.guarantee-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: clamp(36px, 8vw, 90px);
  align-items: center;
  background: var(--paper);
}

.guarantee {
  max-width: 860px;
}

.guarantee h2 {
  margin-bottom: 24px;
}

.investment {
  padding: 30px;
  color: var(--paper);
  background: var(--wine);
  box-shadow: var(--shadow);
}

.investment strong {
  display: block;
  margin-top: 16px;
  font-family: var(--serif);
  font-size: 72px;
  line-height: 0.9;
}

.residence-tabs {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  border: 1px solid var(--line);
  background: var(--paper);
}

.tab-buttons {
  display: grid;
  border-right: 1px solid var(--line);
}

.tab-button {
  min-height: 74px;
  padding: 0 24px;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  font: 700 14px var(--sans);
  text-align: left;
  cursor: pointer;
}

.tab-button.active {
  color: var(--paper);
  background: var(--forest);
}

.tab-panel {
  padding: clamp(30px, 5vw, 60px);
}

.tab-panel p {
  max-width: 720px;
  color: var(--muted);
  font-size: 20px;
}

.founder-section {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  min-height: 680px;
  background: var(--ink);
  color: var(--paper);
}

.founder-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.75) brightness(0.76);
}

.founder-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(44px, 7vw, 90px);
}

.founder-copy p {
  color: rgba(255, 250, 242, 0.72);
}

.founder-copy ul {
  display: grid;
  gap: 14px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.founder-copy li {
  padding-left: 20px;
  border-left: 2px solid var(--gold);
}

.cta-section {
  background: var(--paper);
}

.cta-box {
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}

.cta-box .button {
  margin-top: 24px;
  background: var(--forest);
  color: var(--paper);
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 30px clamp(20px, 6vw, 80px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
}

.reveal {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 700ms ease, transform 700ms ease;
}

.motion-ready .reveal:not(.visible) {
  opacity: 0;
  transform: translateY(22px);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Scroll progress bar ---------- */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 40;
  width: 100%;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: 0 50%;
  will-change: transform;
}

/* ---------- Film grain overlay ---------- */
.grain {
  position: fixed;
  inset: 0;
  z-index: 5;
  pointer-events: none;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

[data-parallax] {
  will-change: transform;
}

/* ---------- Hero scroll cue ---------- */
.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 26px;
  transform: translateX(-50%);
  width: 1px;
  height: 56px;
  background: rgba(255, 250, 242, 0.3);
  overflow: hidden;
}

.scroll-cue span {
  position: absolute;
  inset: 0;
  display: block;
  background: var(--gold);
  animation: cue 2.4s ease-in-out infinite;
}

@keyframes cue {
  0% { transform: translateY(-100%); }
  60%, 100% { transform: translateY(100%); }
}

/* ---------- Magnetic buttons ---------- */
.magnetic {
  transition: transform 200ms cubic-bezier(0.23, 1, 0.32, 1), background 180ms ease, color 180ms ease;
  will-change: transform;
}

/* ---------- Residence panel fade ---------- */
.tab-panel {
  transition: opacity 180ms ease;
}

/* ---------- For-advisors section ---------- */
.advisors-section {
  background: var(--forest);
  color: var(--paper);
}

.advisors-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.advisors-section .section-heading p {
  color: rgba(255, 250, 242, 0.74);
}

.advisor-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: 8px 0 40px;
  padding: 0;
  list-style: none;
  background: rgba(255, 250, 242, 0.18);
}

.advisor-points li {
  padding: clamp(24px, 3vw, 34px);
  background: #1c3a2f;
  font-size: 15px;
  color: rgba(255, 250, 242, 0.78);
}

.advisor-points strong {
  display: block;
  margin-bottom: 10px;
  font-family: var(--serif);
  font-size: 22px;
  color: var(--paper);
}

.advisors-section .button.primary {
  background: var(--paper);
  color: var(--ink);
}

/* ---------- Mobile menu ---------- */
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: transparent;
  border: 1px solid currentColor;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: currentColor;
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 30;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  background: rgba(23, 21, 18, 0.97);
  backdrop-filter: blur(8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 260ms ease;
}

.mobile-menu.open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu a {
  color: var(--paper);
  font-family: var(--serif);
  font-size: 30px;
}

body.menu-open {
  overflow: hidden;
}

/* ---------- Focus visibility (accessibility) ---------- */
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .scroll-cue span { animation: none; }
  [data-parallax] { transform: none !important; }
}

@media (max-width: 960px) {
  .menu-toggle { display: flex; }
  .advisor-points { grid-template-columns: 1fr; }
}

@media (max-width: 1180px) {
  .hero-content {
    max-width: 820px;
  }

  .hero {
    padding-bottom: 220px;
  }

  .hero-panel {
    left: clamp(20px, 6vw, 80px);
    right: auto;
  }
}

@media (max-width: 960px) {
  .nav {
    display: none;
  }

  .hero {
    min-height: 100vh;
  }

  .split,
  .guarantee-section,
  .founder-section {
    grid-template-columns: 1fr;
  }

  .blueprint-grid,
  .process,
  .kpi-grid {
    grid-template-columns: 1fr;
  }

  .founder-image {
    min-height: 360px;
  }
}

@media (max-width: 680px) {
  .site-header {
    min-height: 66px;
  }

  .brand span:last-child,
  .header-cta {
    display: none;
  }

  h1 {
    font-size: 56px;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .residence-tabs {
    grid-template-columns: 1fr;
  }

  .tab-buttons {
    grid-template-columns: repeat(2, 1fr);
    border-right: 0;
  }

  .proof-carousel {
    grid-template-columns: 1fr;
  }

  .carousel-button {
    display: none;
  }

  .tab-button {
    min-height: 62px;
    padding: 0 12px;
    text-align: center;
  }

  .footer {
    flex-direction: column;
  }
}
/* =========================================================
   European Private Office — v2 additions
   (loaded AFTER ../styles.css, which carries the base design)
   ========================================================= */

/* ---------- Hero advisor strip ---------- */
.hero-advisor {
  margin: 24px 0 0;
  max-width: 640px;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 250, 242, 0.82);
}
.hero-advisor span {
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 12px;
}
.hero-advisor a {
  color: var(--paper);
  border-bottom: 1px solid rgba(255, 250, 242, 0.5);
  padding-bottom: 1px;
  margin-left: 4px;
  white-space: nowrap;
}

/* ---------- Blueprint preview ---------- */
.preview-section {
  background: var(--ivory);
}
.preview-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.preview-card {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: clamp(22px, 2.4vw, 30px);
  box-shadow: 0 12px 44px rgba(20, 18, 15, 0.05);
  transition: transform 180ms ease, box-shadow 180ms ease;
}
.preview-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(20, 18, 15, 0.1);
}
.preview-tag {
  display: block;
  margin-bottom: 20px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.preview-card-cta {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
  background: var(--forest);
  color: var(--paper);
}
.preview-card-cta p {
  margin: 0;
  font-family: var(--serif);
  font-size: 24px;
  line-height: 1.15;
}
.preview-card-cta .button.primary {
  align-self: flex-start;
  background: var(--paper);
  color: var(--ink);
}

/* Country Fit Matrix */
.mock-matrix {
  font-size: 13px;
}
.mock-matrix-head,
.mock-matrix-row {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  align-items: center;
  gap: 8px;
  padding: 9px 0;
  border-bottom: 1px solid var(--line);
}
.mock-matrix-row:last-child {
  border-bottom: 0;
}
.mock-matrix-head span {
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.mock-matrix-row span:first-child {
  font-weight: 600;
}
.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  display: inline-block;
}
.dot.g { background: var(--gold); }
.dot.m { background: linear-gradient(90deg, var(--gold) 50%, transparent 50%); }
.dot.e { background: transparent; }

/* Tax Exposure checklist */
.mock-check {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 13.5px;
}
.mock-check li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
}
.mock-check li:last-child { border-bottom: 0; }
.mock-check li i {
  flex: 0 0 16px;
  width: 16px;
  height: 16px;
  border: 1px solid var(--gold);
  position: relative;
  margin-top: 2px;
}
.mock-check li i::after {
  content: "";
  position: absolute;
  inset: 3px;
  background: var(--gold);
}

/* Property Sourcing doc */
.mock-doc-title {
  margin: 0 0 16px;
  font-family: var(--serif);
  font-size: 20px;
}
.bar {
  display: block;
  height: 8px;
  background: var(--stone);
  margin-bottom: 9px;
  opacity: 0.7;
}
.bar.w90 { width: 90%; }
.bar.w80 { width: 80%; }
.bar.w70 { width: 70%; }
.mock-doc-flag {
  margin: 16px 0 0;
  font-size: 13px;
  color: var(--muted);
}
.mock-doc-flag strong { color: var(--wine); }

/* Partner Map */
.mock-partners {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 14px;
}
.mock-partners li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
}
.mock-partners li:last-child { border-bottom: 0; }
.mock-partners li span {
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid var(--line);
  padding: 3px 8px;
}

/* 90-Day Action timeline */
.mock-timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 13.5px;
}
.mock-timeline li {
  position: relative;
  padding: 0 0 16px 22px;
  border-left: 1px solid var(--line);
  margin-left: 4px;
}
.mock-timeline li:last-child {
  border-left-color: transparent;
  padding-bottom: 0;
}
.mock-timeline li::before {
  content: "";
  position: absolute;
  left: -5px;
  top: 3px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold);
}
.mock-timeline li span {
  display: block;
  color: var(--gold);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 3px;
}

/* ---------- Founder credentials ---------- */
.founder-cred {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  margin-top: 28px;
  background: rgba(255, 250, 242, 0.16);
}
.founder-cred div {
  background: var(--ink);
  padding: 18px;
}
.founder-cred span {
  display: block;
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.founder-cred strong {
  font-weight: 500;
  font-size: 15px;
  line-height: 1.4;
  color: var(--paper);
}

/* ---------- Inquiry form (two paths) ---------- */
.inquiry {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.inquiry-sub {
  color: var(--muted);
  font-size: 18px;
  margin-top: 10px;
}
.inquiry-book {
  margin-top: 24px;
  background: var(--gold);
  color: var(--ink);
  padding: 16px 30px;
  font-size: 15px;
  box-shadow: 0 10px 30px rgba(184, 148, 88, 0.35);
}
.inquiry-or {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 13px;
}
.inquiry-status {
  grid-column: 1 / -1;
  margin: 4px 0 0;
  padding: 12px 16px;
  background: var(--forest);
  color: var(--paper);
  font-size: 14px;
  text-align: center;
}
/* Make the hidden attribute actually hide fields (overrides .field display:flex) */
[hidden] {
  display: none !important;
}

/* Permanent dark scrim behind the header so the cream logo/nav stay readable
   over ANY section — even if JS never toggles the .scrolled state. */
.site-header:not(.scrolled) {
  background: linear-gradient(to bottom, rgba(18, 16, 12, 0.55), rgba(18, 16, 12, 0));
}

/* Footer legal / scope disclaimer */
.footer {
  flex-direction: column;
  align-items: stretch;
}
.footer-main {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-legal {
  margin: 16px 0 0;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
}
.footer-legal a {
  text-decoration: underline;
}

/* Legal notice page */
.legal-page {
  max-width: 760px;
  margin: 0 auto;
  padding: 120px clamp(20px, 6vw, 40px) 80px;
}
.legal-page .brand {
  color: var(--ink);
  margin-bottom: 44px;
}
.legal-page h1 {
  font-size: clamp(38px, 6vw, 60px);
  margin-bottom: 6px;
}
.legal-page h2 {
  font-size: 22px;
  margin: 36px 0 10px;
}
.legal-page p,
.legal-page li {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}
.legal-page ul {
  padding-left: 20px;
  margin: 0 0 14px;
}
.legal-page a {
  color: var(--ink);
  text-decoration: underline;
}
.legal-back {