:root {
  --navy: #20344D;
  --navy-deep: #17283c;
  --gold: #B08E35;
  --gold-soft: #D2BE7D;
  --slate: #46566A;
  --slate-light: #67778b;
  --background: #FCFBF8;
  --panel: #F2F0EA;
  --panel-light: #F7F5F0;
  --line: #DED9CE;
  --white: #FFFFFF;
  --shadow: 0 22px 60px rgba(32, 52, 77, 0.09);
  --radius: 18px;
  --shell: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Lato", Arial, sans-serif;
  background: var(--background);
  color: var(--navy);
  font-size: 18px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

.skip-link {
  position: absolute;
  left: -9999px;
  top: 8px;
  z-index: 1000;
  background: var(--navy);
  color: #fff;
  padding: 10px 14px;
  border-radius: 6px;
}
.skip-link:focus { left: 8px; }

.shell {
  width: min(calc(100% - 48px), var(--shell));
  margin: 0 auto;
}
.narrow { max-width: 860px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #FCFBF8;
  border-bottom: 1px solid rgba(222, 217, 206, 0.72);
}
.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.wordmark {
  font-family: "EB Garamond", Georgia, serif;
  font-size: 2.2rem;
  line-height: 1;
  font-weight: 700;
  color: var(--navy);
  text-decoration: none;
  letter-spacing: -0.03em;
}
.site-nav { display: flex; gap: 28px; align-items: center; }
.site-nav a {
  color: var(--slate);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color .2s ease;
}
.site-nav a:hover, .site-nav a:focus-visible { color: var(--gold); }

.hero {
  position: relative;
  overflow: hidden;
  padding: 104px 0 92px;
}
.hero::before {
  content: "";
  position: absolute;
  width: 620px;
  height: 620px;
  right: -250px;
  top: -270px;
  border: 1px solid rgba(176, 142, 53, 0.16);
  border-radius: 50%;
}
.hero::after {
  content: "";
  position: absolute;
  width: 380px;
  height: 380px;
  right: -60px;
  top: -110px;
  border: 1px solid rgba(32, 52, 77, 0.08);
  border-radius: 50%;
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(390px, .95fr);
  gap: 74px;
  align-items: center;
}
.eyebrow {
  margin: 0 0 13px;
  color: var(--gold);
  font-size: 0.76rem;
  line-height: 1.25;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
h1, h2, h3 { margin-top: 0; color: var(--navy); }
h1 {
  margin-bottom: 24px;
  max-width: 760px;
  font-size: clamp(3.1rem, 5.9vw, 5.65rem);
  line-height: 0.98;
  letter-spacing: -0.052em;
  font-weight: 900;
}
h2 {
  margin-bottom: 24px;
  font-size: clamp(2rem, 4vw, 3.45rem);
  line-height: 1.08;
  letter-spacing: -0.035em;
  font-weight: 900;
}
h3 { font-size: 1.2rem; line-height: 1.25; margin-bottom: 10px; }
p { color: var(--slate); margin-top: 0; }
.hero-thesis {
  max-width: 700px;
  font-size: clamp(1.2rem, 2.1vw, 1.55rem);
  line-height: 1.5;
  color: var(--navy);
  margin-bottom: 18px;
}
.hero-support { max-width: 680px; font-size: 1.08rem; }
.hero-contrast { margin: 26px 0 2px; color: var(--slate-light); font-weight: 700; }
.hero-final { color: var(--navy); font-weight: 900; font-size: 1.08rem; }
.hero-actions { display: flex; gap: 22px; align-items: center; flex-wrap: wrap; margin-top: 34px; }
.button {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  padding: 13px 18px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 900;
  letter-spacing: 0.01em;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button-primary { background: var(--navy); color: #fff; box-shadow: 0 12px 30px rgba(32,52,77,.16); }
.button-primary:hover, .button-primary:focus-visible { background: var(--navy-deep); transform: translateY(-1px); }
.text-link { color: var(--navy); font-weight: 700; text-decoration-color: var(--gold-soft); text-underline-offset: 5px; }

.cockpit-visual {
  background: linear-gradient(180deg, rgba(255,255,255,.76), rgba(242,240,234,.78));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.cockpit-visual::before {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  border: 1px solid rgba(176,142,53,.22);
  left: 50%;
  top: 46%;
  transform: translate(-50%,-50%);
}
.visual-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--slate-light);
  font-size: .67rem;
  font-weight: 900;
  letter-spacing: .13em;
}
.visual-status { color: var(--gold); }
.visual-context, .visual-output {
  border: 1px solid var(--line);
  background: rgba(252,251,248,.84);
  border-radius: 10px;
  padding: 14px 16px;
}
.visual-context { margin-top: 20px; }
.mini-label { display:block; color:var(--gold); font-size:.61rem; letter-spacing:.13em; font-weight:900; margin-bottom:3px; }
.visual-context strong, .visual-output strong { font-size:.82rem; line-height:1.35; color:var(--navy); }
.visual-center { height: 245px; position: relative; }
.visual-core {
  position: absolute;
  left: 50%; top: 50%; transform: translate(-50%,-50%);
  width: 112px; height: 112px;
  border-radius: 50%;
  background: var(--navy);
  display:flex; flex-direction:column; align-items:center; justify-content:center;
  color:#fff;
  box-shadow: 0 14px 34px rgba(32,52,77,.20);
}
.visual-core-mark { font-family:"EB Garamond", Georgia, serif; font-weight:700; font-size:2.8rem; line-height:.86; }
.visual-core-label { font-size:.62rem; letter-spacing:.12em; font-weight:900; text-transform:uppercase; color:var(--gold-soft); }
.visual-orbit {
  position:absolute;
  padding:7px 10px;
  background:var(--background);
  border:1px solid var(--line);
  border-radius:7px;
  font-size:.7rem;
  font-weight:900;
  color:var(--slate);
  box-shadow:0 5px 15px rgba(32,52,77,.05);
}
.orbit-a { left: 6%; top: 27%; }
.orbit-b { right: 4%; top: 24%; }
.orbit-c { left: 8%; bottom: 20%; }
.orbit-d { right: 10%; bottom: 19%; }
.visual-output-grid { display:grid; grid-template-columns:1fr 1fr; gap:10px; }
.visual-foot { margin-top:15px; text-align:center; font-size:.72rem; color:var(--slate-light); font-style:italic; }

.section { padding: 98px 0; }
.section-problem { border-top:1px solid var(--line); border-bottom:1px solid var(--line); background:var(--panel-light); }
.section-problem h2 { max-width:800px; }
.lead { font-size:1.16rem; color:var(--navy); }
.question-line { margin-top:34px; padding:24px 0 0; border-top:1px solid var(--gold-soft); display:grid; gap:7px; }
.question-line span { color:var(--slate-light); font-size:.84rem; font-weight:700; }
.question-line strong { color:var(--navy); font-size:1.35rem; line-height:1.45; }
.section-heading { margin-bottom:42px; }
.section-heading h2 { max-width:800px; margin-bottom:0; }
.split-heading { display:grid; grid-template-columns:1.15fr .85fr; gap:65px; align-items:end; }
.split-heading p:last-child { margin:0 0 6px; }

.workflow { display:grid; grid-template-columns:repeat(7,1fr); border:1px solid var(--line); border-radius:var(--radius); overflow:hidden; background:var(--white); box-shadow:0 15px 40px rgba(32,52,77,.05); }
.workflow-step { min-height:175px; padding:20px 16px; position:relative; border-right:1px solid var(--line); display:flex; flex-direction:column; }
.workflow-step:last-child { border-right:0; }
.workflow-step::after { content:"→"; position:absolute; right:-10px; top:31px; width:20px; height:20px; background:var(--background); color:var(--gold); display:flex; align-items:center; justify-content:center; z-index:2; font-weight:900; }
.workflow-step:last-child::after { display:none; }
.workflow-step > span { color:var(--gold); font-size:.72rem; font-weight:900; letter-spacing:.08em; margin-bottom:27px; }
.workflow-step strong { color:var(--navy); font-size:.98rem; line-height:1.22; margin-bottom:8px; }
.workflow-step small { color:var(--slate-light); line-height:1.45; font-size:.72rem; }
.statement { text-align:center; max-width:860px; margin:34px auto 0; font-size:1.08rem; }
.statement-emphasis { margin-top:8px; color:var(--navy); font-weight:900; font-size:1.25rem; }

.section-panel { background:var(--navy); }
.section-panel .eyebrow { color:var(--gold-soft); }
.section-panel h2, .section-panel blockquote { color:#fff; }
.section-panel p { color:#d8dee6; }
.operating-grid { display:grid; grid-template-columns:1.04fr .96fr; gap:90px; align-items:center; }
.operating-copy blockquote { margin:30px 0; padding:21px 0 21px 25px; border-left:2px solid var(--gold); font-size:1.42rem; line-height:1.4; font-weight:900; }
.small-note { font-size:.87rem; color:var(--slate-light); }
.section-panel .small-note { color:#aeb9c6; }
.engine-stack { display:grid; gap:8px; }
.engine-row { display:flex; justify-content:space-between; gap:18px; align-items:center; padding:15px 17px; border:1px solid rgba(210,190,125,.22); background:rgba(255,255,255,.045); border-radius:8px; }
.engine-row span { color:#fff; font-weight:900; }
.engine-row small { color:#b8c2ce; text-align:right; }
.engine-base { margin-top:6px; padding:17px; text-align:center; border-radius:8px; background:var(--gold); color:var(--navy-deep); font-size:.72rem; letter-spacing:.14em; font-weight:900; }

.principle-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:16px; }
.principle-card { border-top:2px solid var(--gold); border-bottom:1px solid var(--line); padding:22px 6px 18px; }
.card-index { display:block; color:var(--gold); font-size:.68rem; letter-spacing:.1em; font-weight:900; margin-bottom:34px; }
.principle-card h3 { margin-bottom:13px; }
.principle-card p { font-size:.94rem; margin-bottom:0; }
.center-tagline { margin:43px auto 0; max-width:760px; text-align:center; font-size:1.12rem; color:var(--navy); }

.foundation-section { padding-top:0; }
.foundation-grid { display:grid; grid-template-columns:1fr 1fr; gap:20px; }
.foundation-card { padding:38px; background:var(--panel-light); border:1px solid var(--line); border-radius:var(--radius); }
.foundation-card h2 { font-size:clamp(1.9rem,3vw,2.75rem); }
.foundation-emphasis { color:var(--navy); font-weight:700; margin-bottom:0; }
.trust-item { padding:17px 0; border-top:1px solid var(--line); }
.trust-item h3 { margin-bottom:5px; }
.trust-item p { margin-bottom:0; font-size:.91rem; }
.trust-closer { color:var(--navy); font-weight:900; padding-top:20px; margin-bottom:0; }

.stewardship { background:var(--panel); border-top:1px solid var(--line); border-bottom:1px solid var(--line); }
.stewardship-inner { display:grid; grid-template-columns:250px 1fr; gap:72px; align-items:center; }
.stewardship-mark { width:220px; height:220px; border-radius:50%; border:1px solid var(--gold-soft); display:flex; align-items:center; justify-content:center; font-family:"EB Garamond", Georgia, serif; font-size:8rem; color:var(--navy); position:relative; }
.stewardship-mark::before, .stewardship-mark::after { content:""; position:absolute; border:1px solid rgba(176,142,53,.22); border-radius:50%; }
.stewardship-mark::before { inset:18px; }
.stewardship-mark::after { inset:-17px; }
.stewardship-copy { max-width:800px; }
.stewardship-copy h2 { margin-bottom:20px; }
.stewardship-emphasis { color:var(--navy); font-size:1.2rem; font-weight:900; }

.fit-grid { display:grid; grid-template-columns:1fr 1fr; gap:95px; align-items:start; }
.fit-statement { margin-top:29px; color:var(--navy); font-size:1.35rem; font-weight:900; }
.fit-side { padding-top:27px; border-top:1px solid var(--gold-soft); }
.fit-side strong { color:var(--navy); }

.contact { padding:94px 0; background:var(--navy); }
.contact .eyebrow { color:var(--gold-soft); }
.contact h2 { color:#fff; max-width:900px; }
.contact-row { display:flex; justify-content:space-between; gap:35px; align-items:end; margin-top:48px; padding-top:28px; border-top:1px solid rgba(210,190,125,.25); }
.contact-person { display:flex; flex-direction:column; color:#fff; }
.contact-person span { font-weight:900; font-size:1.1rem; }
.contact-person small { color:#b8c2ce; }
.contact-email { color:#fff; font-weight:900; font-size:clamp(1rem,2vw,1.35rem); text-decoration-color:var(--gold); text-underline-offset:7px; }

.site-footer { padding:28px 0; background:var(--navy-deep); border-top:1px solid rgba(255,255,255,.06); }
.footer-inner { display:flex; justify-content:space-between; gap:25px; align-items:center; }
.footer-inner > div:first-child { display:flex; gap:14px; align-items:center; }
.footer-inner strong { color:#fff; font-size:.82rem; }
.footer-inner span { color:#8f9eaf; font-size:.75rem; }
.footer-links { display:flex; gap:20px; align-items:center; }
.footer-links a { color:#dbe1e7; font-size:.75rem; text-decoration:none; }
.footer-links a:hover, .footer-links a:focus-visible { color:var(--gold-soft); }

:focus-visible { outline:3px solid var(--gold-soft); outline-offset:4px; }

@media (max-width: 1020px) {
  .hero-grid { grid-template-columns:1fr; gap:55px; }
  .cockpit-visual { max-width:720px; }
  .workflow { grid-template-columns:repeat(4,1fr); }
  .workflow-step { border-bottom:1px solid var(--line); }
  .workflow-step:nth-child(4) { border-right:0; }
  .workflow-step:nth-child(4)::after { display:none; }
  .workflow-step:nth-child(n+5) { border-bottom:0; }
  .principle-grid { grid-template-columns:1fr 1fr; gap:28px; }
  .operating-grid, .foundation-grid, .fit-grid { gap:55px; }
}

@media (max-width: 760px) {
  body { font-size:15.5px; }
  .shell { width:min(calc(100% - 32px), var(--shell)); }
  .header-inner { min-height:70px; }
  .site-nav { gap:15px; }
  .site-nav a { font-size:.65rem; letter-spacing:.06em; }
  .wordmark { font-size:2rem; }
  .hero { padding:68px 0 65px; }
  h1 { font-size:clamp(3rem,14vw,4.7rem); }
  .cockpit-visual { padding:18px; }
  .visual-center { height:220px; }
  .visual-output-grid { grid-template-columns:1fr; }
  .section { padding:72px 0; }
  .split-heading, .operating-grid, .foundation-grid, .fit-grid, .stewardship-inner { grid-template-columns:1fr; gap:38px; }
  .workflow { grid-template-columns:1fr; border-radius:12px; }
  .workflow-step { min-height:auto; padding:16px 18px; border-right:0; border-bottom:1px solid var(--line) !important; display:grid; grid-template-columns:48px 1fr; column-gap:10px; }
  .workflow-step:last-child { border-bottom:0 !important; }
  .workflow-step::after { display:none !important; }
  .workflow-step > span { grid-row:1 / span 2; margin:2px 0 0; }
  .workflow-step strong { margin-bottom:3px; }
  .principle-grid { grid-template-columns:1fr; gap:10px; }
  .card-index { margin-bottom:18px; }
  .foundation-card { padding:28px 24px; }
  .stewardship-mark { width:120px; height:120px; font-size:4.8rem; margin-left:12px; }
  .contact-row { align-items:flex-start; flex-direction:column; }
  .footer-inner, .footer-inner > div:first-child, .footer-links { align-items:flex-start; flex-direction:column; gap:8px; }
  .footer-links { margin-top:8px; }
}

@media (max-width: 420px) {
  .site-nav a { font-size:.6rem; }
  .hero-actions { align-items:flex-start; flex-direction:column; }
  .visual-orbit { font-size:.61rem; padding:5px 7px; }
  .visual-core { width:96px; height:96px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior:auto; }
  *, *::before, *::after { transition:none !important; }
}


/* V2.2 public-polish overrides */
html { scroll-padding-top: 92px; }
section[id] { scroll-margin-top: 92px; }
.site-header { box-shadow: 0 4px 18px rgba(32,52,77,.035); }
.hero-support { font-size: 1.16rem; line-height: 1.65; }
.hero-final { max-width: 690px; margin-top: 26px; font-size: 1.16rem; line-height: 1.5; }


.operating-note {
  padding: 34px 36px;
  border-left: 1px solid rgba(210,190,125,.38);
}
.operating-note h3 { color:#fff; font-size:1.55rem; margin-bottom:16px; }
.operating-note p { font-size:1.03rem; line-height:1.7; }

.principle-card p { font-size:1.03rem; line-height:1.65; }
.principle-grid-three { grid-template-columns:repeat(3,1fr); }
.memory-feature {
  max-width: 980px;
  margin: 0 auto 48px;
  padding: 42px 46px;
  background: var(--panel-light);
  border:1px solid var(--line);
  border-top:2px solid var(--gold);
  border-radius:var(--radius);
}
.memory-feature h2 { max-width:820px; margin-bottom:18px; }
.memory-lead { font-size:1.12rem; line-height:1.72; max-width:900px; }
.memory-emphasis { color:var(--navy); font-size:1.22rem; line-height:1.55; font-weight:900; margin:20px 0 12px; }
.memory-note { margin:0; color:var(--slate-light); font-size:1rem; }

.workflow-step strong { font-size:1.08rem; }
.workflow-step small { font-size:.9rem; line-height:1.52; }
.workflow-step > span { font-size:.82rem; }
.trust-item p { font-size:1rem; }
.small-note { font-size:.98rem; }

.values-section {
  position:relative;
  overflow:hidden;
  background:var(--panel);
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}
.values-grid {
  position:relative;
  display:grid;
  grid-template-columns:1.08fr .92fr;
  gap:72px;
  align-items:start;
}
.values-copy { max-width:720px; }
.values-copy p, .moriah-foundation p { font-size:1.08rem; line-height:1.72; }
.moriah-foundation {
  margin-top:44px;
  padding:30px 32px;
  background:rgba(252,251,248,.72);
  border-left:2px solid var(--gold);
  backdrop-filter: blur(3px);
}
.moriah-foundation h3 { font-family:"EB Garamond", Georgia, serif; font-size:2rem; line-height:1.1; margin-bottom:18px; }

@media (max-width: 1020px) {
  .values-grid { grid-template-columns:1fr; gap:34px; }
  .moriah-foundation { margin-top:0; max-width:760px; }
}

@media (max-width: 760px) {
  body { font-size:16.5px; }
  html { scroll-padding-top: 80px; }
  section[id] { scroll-margin-top: 80px; }
  .site-nav a { font-size:.72rem; }
  .memory-feature { padding:30px 24px; margin-bottom:34px; }
  .workflow-step small { font-size:.9rem; }
  .moriah-foundation { padding:24px 22px; }
}

/* V2.3 editorial and responsive refinements */
.problem-emphasis { color:var(--navy); font-weight:900; font-size:1.18rem; margin-top:22px; }
@media (max-width: 1020px) {
  .workflow { grid-template-columns:repeat(4,1fr); }
  .workflow-step:nth-child(4) { border-right:0; }
  .workflow-step:nth-child(4)::after { display:none; }
  .principle-grid-three { grid-template-columns:1fr; gap:12px; }
  .operating-note { padding-left:0; border-left:0; border-top:1px solid rgba(210,190,125,.30); padding-top:28px; }
}
@media (max-width: 760px) {
  body { font-size:17px; }
  .site-nav { gap:18px; }
  .site-nav a { font-size:.72rem; letter-spacing:.06em; }
  .hero { padding-top:72px; }
  .hero-grid { gap:42px; }
  .workflow { display:block; border:0; box-shadow:none; background:transparent; overflow:visible; }
  .workflow-step { min-height:0; padding:18px 18px 18px 58px; border:1px solid var(--line); border-bottom:0; background:var(--white); position:relative; }
  .workflow-step:first-child { border-radius:14px 14px 0 0; }
  .workflow-step:last-child { border-bottom:1px solid var(--line); border-radius:0 0 14px 14px; }
  .workflow-step::after { content:""; display:block !important; position:absolute; left:28px; right:auto; top:42px; bottom:-12px; width:1px; height:auto; background:var(--gold-soft); }
  .workflow-step:last-child::after { display:none !important; }
  .workflow-step > span { position:absolute; left:15px; top:18px; margin:0; width:28px; height:28px; border:1px solid var(--gold-soft); border-radius:50%; display:flex; align-items:center; justify-content:center; background:var(--background); }
  .workflow-step strong { font-size:1.08rem; margin-bottom:3px; }
  .workflow-step small { font-size:.95rem; }
  .memory-lead { font-size:1.05rem; }
  .memory-emphasis { font-size:1.12rem; }
}

/* V2.9 hero — responsive panorama with stable composition at wide and narrow viewports */
.hero {
  position: relative;
  overflow: hidden;
  min-height: 610px;
  padding: 72px 0 66px;
  isolation: isolate;
  background: var(--background);
}
.hero::before,
.hero::after { display: none !important; }

.hero-backdrop {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}
.hero-backdrop picture,
.hero-backdrop img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}
.hero-backdrop img {
  max-width: none;
  object-fit: cover;
  object-position: 50% 50%;
  filter: saturate(.80) contrast(.95) brightness(1.02);
}
.hero-backdrop::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg,
      rgba(252,251,248,.94) 0%,
      rgba(252,251,248,.88) 17%,
      rgba(252,251,248,.67) 34%,
      rgba(252,251,248,.35) 50%,
      rgba(252,251,248,.13) 67%,
      rgba(252,251,248,.06) 100%),
    linear-gradient(180deg,
      rgba(252,251,248,.13) 0%,
      rgba(252,251,248,.02) 34%,
      rgba(252,251,248,.02) 76%,
      rgba(252,251,248,.12) 100%);
}

.hero .shell {
  width: min(calc(100% - 64px), 1320px);
}
.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, .95fr);
  gap: 78px;
  align-items: center;
}
.hero-copy { max-width: 670px; }
.hero-copy h1 {
  max-width: 670px;
  margin-bottom: 25px;
  font-size: clamp(3.7rem, 4.45vw, 5.25rem);
  line-height: .99;
  letter-spacing: -.052em;
}
.hero-thesis {
  max-width: 640px;
  margin-bottom: 18px;
  font-size: clamp(1.16rem, 1.38vw, 1.4rem);
  line-height: 1.52;
}
.hero-support {
  max-width: 610px;
  font-size: 1.08rem;
  line-height: 1.66;
}
.hero-private-clarifier {
  max-width: 620px;
  margin: 20px 0 0;
  padding: 12px 14px;
  border-left: 2px solid var(--gold-soft);
  background: rgba(242,240,234,.58);
  color: var(--slate);
  font-size: .98rem;
  line-height: 1.58;
}
.hero-private-clarifier strong { color: var(--navy); }
.hero-final {
  max-width: 640px;
  margin-top: 24px;
  color: var(--navy);
  font-size: 1.08rem;
  line-height: 1.5;
  font-weight: 900;
}

.hero-visual {
  width: 100%;
  max-width: 540px;
  min-height: 410px;
  justify-self: end;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 18px 0 4px;
}
.hero-pillar {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 20px;
  align-items: start;
  width: 100%;
  padding: 18px 0 17px;
}
.hero-pillar-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin-top: 2px;
  color: var(--gold);
}
.hero-pillar-icon svg {
  width: 50px;
  height: 50px;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
  overflow: visible;
}
.hero-pillar-body {
  padding: 0 0 18px;
  border-bottom: 1px solid rgba(176,142,53,.56);
}
.hero-pillar:last-child .hero-pillar-body { border-bottom: 0; }
.hero-pillar h2 {
  margin: 0 0 7px;
  font-family: "EB Garamond", Georgia, serif;
  font-size: clamp(1.95rem, 1.95vw, 2.25rem);
  line-height: 1;
  letter-spacing: -.018em;
  font-weight: 700;
}
.hero-pillar p {
  max-width: 450px;
  margin: 0;
  color: var(--navy);
  font-size: 1rem;
  line-height: 1.54;
}

/* Medium desktop and compact browser windows retain the original, taller mountain composition. */
@media (max-width: 1199px) {
  .hero { min-height: 590px; padding: 68px 0 60px; }
  .hero .shell { width: min(calc(100% - 48px), 1120px); }
  .hero-grid { grid-template-columns: minmax(0, 1.02fr) minmax(380px, .98fr); gap: 42px; }
  .hero-copy h1 { font-size: clamp(3.25rem, 5.2vw, 4.55rem); }
  .hero-visual { max-width: 500px; }
  .hero-backdrop img { object-position: 53% 50%; }
}

/* Stack only when the two-column composition no longer has enough room. */
@media (max-width: 880px) {
  .hero { min-height: 0; padding: 62px 0 54px; }
  .hero-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero-copy,
  .hero-copy h1 { max-width: 760px; }
  .hero-visual {
    max-width: 700px;
    min-height: 0;
    justify-self: start;
    padding: 12px 0 0;
  }
  .hero-pillar { max-width: 650px; }
  .hero-backdrop picture,
  .hero-backdrop img {
    top: auto;
    bottom: 0;
    height: auto;
  }
  .hero-backdrop img {
    object-fit: contain;
    object-position: 50% 100%;
  }
  .hero-backdrop::after {
    background:
      linear-gradient(180deg,
        rgba(252,251,248,1) 0%,
        rgba(252,251,248,.98) 25%,
        rgba(252,251,248,.84) 47%,
        rgba(252,251,248,.48) 67%,
        rgba(252,251,248,.16) 100%),
      linear-gradient(90deg,
        rgba(252,251,248,.45) 0%,
        rgba(252,251,248,.18) 50%,
        rgba(252,251,248,.30) 100%);
  }
}

@media (max-width: 760px) {
  .hero { padding: 54px 0 48px; }
  .hero .shell { width: min(calc(100% - 32px), var(--shell)); }
  .hero-copy h1 { font-size: clamp(3rem, 13vw, 4.55rem); }
  .hero-thesis { font-size: 1.12rem; }
  .hero-support,
  .hero-final { font-size: 1rem; }
  .hero-private-clarifier { font-size: .94rem; line-height: 1.55; }
  .hero-pillar { grid-template-columns: 48px minmax(0,1fr); gap: 14px; padding: 14px 0 12px; }
  .hero-pillar-icon { width: 40px; height: 40px; }
  .hero-pillar-icon svg { width: 37px; height: 37px; stroke-width: 1.8; }
  .hero-pillar-body { padding-bottom: 14px; }
  .hero-pillar h2 { font-size: 1.72rem; }
  .hero-pillar p { font-size: .98rem; line-height: 1.53; }
}


/* V3.0 bounded public-depth integration */
.truth-handoff {
  background: var(--panel-light);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.truth-handoff-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 52px;
  align-items: center;
}
.truth-handoff-inner h2 {
  max-width: 760px;
  margin-bottom: 16px;
}
.truth-handoff-inner p:last-child {
  max-width: 820px;
  margin-bottom: 0;
}
.truth-handoff-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 13px 17px;
  border: 1px solid var(--gold-soft);
  border-radius: 8px;
  color: var(--navy);
  background: var(--background);
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
}
.truth-handoff-link:hover, .truth-handoff-link:focus-visible {
  border-color: var(--gold);
  background: #fff;
}
.footer-final { align-items: center; }
.footer-company {
  display: flex;
  align-items: center;
  gap: 20px;
  min-width: 0;
}
.footer-lockup {
  width: 176px;
  height: auto;
  flex: 0 0 auto;
}
.footer-company > span {
  color: #aeb9c6;
  font-size: .75rem;
}
@media (max-width: 760px) {
  .truth-handoff-inner { grid-template-columns: 1fr; gap: 24px; }
  .truth-handoff-link { width: fit-content; }
  .footer-final, .footer-company { align-items: flex-start; flex-direction: column; }
  .footer-lockup { width: 164px; }
}
@media (max-width: 560px) {
  .site-nav { gap: 12px; }
  .site-nav a { font-size: .61rem; letter-spacing: .045em; }
}

/* V3.2 footer asset repair: use included approved emblem; no missing lockup dependency. */
.footer-emblem{width:38px;height:auto;flex:0 0 auto;opacity:.96}
@media(max-width:760px){.footer-emblem{width:34px}}


/* V3.3 workflow responsive repair — keep the 01–07 sequence readable at tablet and mobile widths. */
@media (max-width:1020px){
  .workflow{
    display:block;
    border:1px solid var(--line);
    border-radius:14px;
    box-shadow:0 10px 30px rgba(32,52,77,.04);
    background:var(--white);
    overflow:hidden;
  }
  .workflow-step{
    min-height:0;
    padding:18px 20px;
    border:0!important;
    border-bottom:1px solid var(--line)!important;
    background:var(--white);
    display:grid;
    grid-template-columns:42px minmax(0,1fr);
    grid-template-rows:auto auto;
    column-gap:14px;
    row-gap:3px;
    align-items:start;
    position:relative;
  }
  .workflow-step:last-child{border-bottom:0!important}
  .workflow-step::after{display:none!important;content:none!important}
  .workflow-step > span{
    position:static;
    grid-column:1;
    grid-row:1 / span 2;
    margin:1px 0 0;
    width:30px;
    height:30px;
    border:1px solid var(--gold-soft);
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    background:var(--background);
    color:var(--gold);
    font-size:.78rem;
    line-height:1;
  }
  .workflow-step strong{
    grid-column:2;
    grid-row:1;
    display:block;
    margin:0;
    font-size:1.08rem;
    line-height:1.3;
  }
  .workflow-step small{
    grid-column:2;
    grid-row:2;
    display:block;
    margin:0;
    font-size:.94rem;
    line-height:1.45;
  }
}
@media (max-width:560px){
  .workflow-step{padding:16px 16px;grid-template-columns:38px minmax(0,1fr);column-gap:12px}
  .workflow-step > span{width:28px;height:28px;font-size:.74rem}
  .workflow-step strong{font-size:1.03rem}
  .workflow-step small{font-size:.9rem}
}

/* Footer contrast repair: use the included transparent emblem as a white mark on navy. */
.footer-emblem{
  width:42px;
  opacity:.96;
  filter:brightness(0) invert(1);
}
@media(max-width:760px){.footer-emblem{width:38px}}


/* V3.4 footer brand signature refinement. */
.footer-emblem{width:54px!important;opacity:1!important;filter:brightness(0) invert(1)!important}
.footer-company{gap:16px}
.footer-company > span{font-size:.9rem}
.footer-links a,.footer-links span{font-size:.88rem}
@media(max-width:760px){.footer-emblem{width:50px!important}}
