@font-face {
  font-family: "Cormorant Garamond";
  font-style: normal;
  font-weight: 500 600;
  font-display: swap;
  src: url("assets/cormorant-garamond-latin-v1.woff2") format("woff2");
}

@font-face {
  font-family: "Cormorant Garamond";
  font-style: italic;
  font-weight: 500;
  font-display: swap;
  src: url("assets/cormorant-garamond-italic-latin-v1.woff2") format("woff2");
}

@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url("assets/manrope-latin-v1.woff2") format("woff2");
}

:root {
  --pearl: #fffdf7;
  --warm: #f7f0df;
  --warm-deep: #e8dcc1;
  --ink: #17212d;
  --ink-soft: #46515d;
  --blue: #16465a;
  --blue-deep: #082d3b;
  --blue-light: #b9e1df;
  --gold: #9b5d08;
  --gold-bright: #e1ad46;
  --line: rgba(20, 54, 67, 0.16);
  --line-light: rgba(255, 255, 255, 0.2);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Manrope", "Segoe UI", sans-serif;
  --shadow: 0 24px 80px rgba(23, 41, 48, 0.12);
  --radius: 2rem;
  --header-height: 78px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-height) + 20px); }
body {
  margin: 0;
  color: var(--ink);
  background: var(--pearl);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.72;
  overflow-x: clip;
}
body.menu-open { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
::selection { color: var(--ink); background: rgba(225, 173, 70, 0.32); }

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 200;
  padding: 0.7rem 1rem;
  color: white;
  background: var(--blue-deep);
  border-radius: 999px;
  transform: translateY(-150%);
  transition: transform 180ms ease;
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  min-height: var(--header-height);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 2rem;
  padding: 0.8rem clamp(1.1rem, 4vw, 4rem);
  color: var(--ink);
  background: rgba(255, 253, 247, 0.84);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px);
  transition: background 250ms ease, border-color 250ms ease, box-shadow 250ms ease;
}
.site-header.scrolled {
  background: rgba(255, 253, 247, 0.96);
  border-color: var(--line);
  box-shadow: 0 10px 35px rgba(17, 38, 48, 0.06);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  text-decoration: none;
}
.brand-mark {
  width: 2.7rem;
  height: 2.7rem;
  display: grid;
  place-items: center;
  flex: none;
  border: 1px solid rgba(189, 122, 23, 0.42);
  border-radius: 50%;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.08em;
}
.brand-copy { display: grid; line-height: 1.1; }
.brand-copy strong { font-family: var(--serif); font-size: 1.22rem; font-weight: 600; }
.brand-copy small { margin-top: 0.25rem; color: var(--ink-soft); font-size: 0.62rem; letter-spacing: 0.16em; text-transform: uppercase; }
.desktop-nav { justify-self: center; display: flex; align-items: center; gap: clamp(1.1rem, 2.4vw, 2.5rem); }
.desktop-nav a, .home-link {
  position: relative;
  color: var(--ink-soft);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}
.desktop-nav a::after, .home-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -0.35rem;
  height: 1px;
  background: var(--gold);
  transition: right 200ms ease;
}
.desktop-nav a:hover::after, .desktop-nav a:focus-visible::after, .home-link:hover::after, .home-link:focus-visible::after { right: 0; }
.header-actions { display: flex; align-items: center; gap: 1rem; }

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.5rem;
  border: 1px solid var(--gold);
  border-radius: 999px;
  color: #fff;
  background: var(--gold);
  box-shadow: 0 10px 30px rgba(189, 122, 23, 0.2);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.055em;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}
.button:hover, .button:focus-visible { color: var(--gold); background: transparent; box-shadow: 0 14px 36px rgba(189, 122, 23, 0.17); transform: translateY(-2px); }
.button-small { min-height: 42px; padding: 0.7rem 1rem; font-size: 0.68rem; }
.button-light { color: var(--blue-deep); background: #fff8e9; border-color: #fff8e9; }
.button-light:hover, .button-light:focus-visible { color: white; border-color: rgba(255,255,255,0.6); background: transparent; }
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--blue);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-transform: uppercase;
}
.text-link span { color: var(--gold); transition: transform 180ms ease; }
.text-link:hover span, .text-link:focus-visible span { transform: translateY(3px); }
.menu-button, .mobile-menu { display: none; }

.hero {
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
  padding-top: var(--header-height);
  background:
    radial-gradient(circle at 16% 20%, rgba(255,255,255,0.96) 0 10%, transparent 38%),
    linear-gradient(125deg, var(--pearl), var(--warm));
}
.hero-copy {
  align-self: center;
  max-width: 760px;
  padding: clamp(5rem, 9vw, 9rem) clamp(1.4rem, 6vw, 7rem);
}
.eyebrow {
  margin: 0 0 1.3rem;
  color: var(--gold);
  font-size: 0.69rem;
  font-weight: 600;
  letter-spacing: 0.23em;
  line-height: 1.4;
  text-transform: uppercase;
}
.eyebrow::before {
  content: "";
  width: 2rem;
  height: 1px;
  display: inline-block;
  margin-right: 0.8rem;
  vertical-align: middle;
  background: currentColor;
}
.eyebrow-light { color: #f3cc7d; }
h1, h2, h3 { margin: 0; font-family: var(--serif); font-weight: 500; line-height: 0.98; text-wrap: balance; }
h1 { max-width: 700px; font-size: clamp(3.7rem, 6.4vw, 7.7rem); letter-spacing: -0.045em; }
h1 em { color: var(--gold); font-weight: 500; }
h2 { font-size: clamp(3.1rem, 5.3vw, 6rem); letter-spacing: -0.038em; }
h3 { font-size: clamp(2.7rem, 4vw, 4.4rem); letter-spacing: -0.035em; }
.hero-lead { max-width: 650px; margin: 2rem 0 1rem; color: var(--ink); font-family: var(--serif); font-size: clamp(1.35rem, 2vw, 1.78rem); line-height: 1.35; }
.hero-copy > p:not(.eyebrow):not(.hero-lead):not(.authority-line) { max-width: 650px; color: var(--ink-soft); }
.hero-actions { display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; margin-top: 2rem; }
.authority-line { display: flex; align-items: center; gap: 0.75rem; margin: 2.4rem 0 0; color: var(--ink-soft); font-family: var(--serif); font-size: 1.05rem; font-style: italic; }
.authority-line span { color: var(--gold); font-style: normal; }
.hero-visual { position: relative; min-height: calc(100svh - var(--header-height)); overflow: hidden; }
.hero-image, .closing-image {
  position: absolute;
  inset: 0;
  background-image: url("assets/heaven-guidance-v1.webp");
  background-position: center 60%;
  background-repeat: no-repeat;
  background-size: cover;
  transform: scale(1.015);
}
.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(247,240,223,0.44), transparent 26%),
    linear-gradient(180deg, rgba(5,26,34,0.05), transparent 40%, rgba(7,35,45,0.35));
}
.light-bloom {
  position: absolute;
  top: 16%;
  left: 47%;
  z-index: 2;
  width: 18rem;
  height: 18rem;
  border-radius: 50%;
  background: rgba(255, 246, 205, 0.36);
  filter: blur(35px);
  animation: breathe 7s ease-in-out infinite;
}
.visual-caption {
  position: absolute;
  right: 2.2rem;
  bottom: 2.2rem;
  z-index: 3;
  width: min(320px, calc(100% - 4.4rem));
  padding: 1.1rem 1.25rem;
  color: white;
  background: rgba(5, 38, 48, 0.58);
  border: 1px solid rgba(255,255,255,0.32);
  backdrop-filter: blur(12px);
}
.visual-caption span { color: #f3d08d; font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase; }
.visual-caption p { margin: 0.3rem 0 0; font-family: var(--serif); font-size: 1.28rem; line-height: 1.2; }

.section-pad { position: relative; padding: clamp(6rem, 10vw, 11rem) clamp(1.4rem, 6vw, 7rem); }
.section-number { position: absolute; top: 4rem; right: 5vw; color: rgba(155,93,8,0.18); font-family: var(--serif); font-size: clamp(6rem, 14vw, 14rem); line-height: 1; }
.section-number::before { content: "01"; }
.recognition { display: grid; grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr); gap: clamp(3rem, 10vw, 10rem); background: var(--pearl); }
.recognition-copy, .recognition-body { position: relative; z-index: 1; }
.recognition-copy { max-width: 820px; }
.recognition-body { align-self: end; max-width: 600px; color: var(--ink-soft); }
.recognition-body p { margin: 0 0 1.2rem; }
.recognition-body .tuesday { color: var(--gold); font-family: var(--serif); font-size: 2rem; font-style: italic; }

.work { color: white; background: var(--blue-deep); overflow: hidden; }
.work::before {
  content: "144";
  position: absolute;
  top: -3rem;
  right: -1rem;
  color: rgba(255,255,255,0.035);
  font-family: var(--serif);
  font-size: clamp(12rem, 30vw, 30rem);
  line-height: 1;
}
.work-intro { position: relative; z-index: 1; max-width: 1040px; }
.work-intro .lead { max-width: 740px; margin: 2rem 0 0 auto; color: rgba(255,255,255,0.74); font-family: var(--serif); font-size: clamp(1.35rem, 2.3vw, 2rem); line-height: 1.4; }
.work-flow { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(3, 1fr); margin-top: clamp(4rem, 7vw, 7rem); border-top: 1px solid var(--line-light); border-bottom: 1px solid var(--line-light); }
.flow-step { padding: clamp(2rem, 4vw, 4rem); border-right: 1px solid var(--line-light); }
.flow-step:first-child { padding-left: 0; }
.flow-step:last-child { border-right: 0; }
.flow-step span { color: #f3cc7d; font-family: var(--serif); font-size: clamp(2rem, 3.4vw, 3.7rem); }
.flow-step p { margin: 1rem 0 0; color: rgba(255,255,255,0.69); }
.work-details { position: relative; z-index: 1; display: grid; grid-template-columns: 0.86fr 1.14fr; gap: 0; margin-top: clamp(4rem, 7vw, 7rem); }
.bring-panel { padding: clamp(2.3rem, 5vw, 5rem); background: rgba(255,255,255,0.055); border: 1px solid var(--line-light); }
.line-list { list-style: none; padding: 0; margin: 0; }
.line-list li { position: relative; padding: 1rem 0 1rem 1.6rem; color: rgba(255,255,255,0.78); border-bottom: 1px solid var(--line-light); }
.line-list li:last-child { border-bottom: 0; }
.line-list li::before { content: "✦"; position: absolute; left: 0; color: #f3cc7d; }
.receive-panel { align-self: center; padding: clamp(2.5rem, 6vw, 6rem); color: var(--ink); background: #fff8e9; }
.receive-panel blockquote { margin: 0 0 2rem; font-family: var(--serif); font-size: clamp(2rem, 3vw, 3.3rem); line-height: 1.08; }
.receive-panel p { color: var(--ink-soft); }
.receive-panel strong { display: block; margin-top: 2rem; color: var(--gold); font-family: var(--serif); font-size: 1.4rem; font-weight: 500; }

.pathways { background: linear-gradient(180deg, var(--warm), var(--pearl)); }
.pathways-heading { max-width: 900px; margin: 0 auto clamp(4rem, 7vw, 7rem); text-align: center; }
.pathways-heading .eyebrow::before { display: none; }
.pathways-heading > p:not(.eyebrow) { max-width: 750px; margin: 1.8rem auto 0; color: var(--ink-soft); }
.pathways-heading .quiet-note { font-family: var(--serif); font-style: italic; }
.path-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.5rem; max-width: 1380px; margin: 0 auto; }
.path-card { display: flex; flex-direction: column; min-height: 100%; padding: clamp(2rem, 4vw, 4rem); background: rgba(255,255,255,0.75); border: 1px solid rgba(189,122,23,0.2); box-shadow: 0 18px 60px rgba(31,52,61,0.06); }
.path-topline { display: flex; justify-content: space-between; align-items: flex-start; gap: 1rem; margin-bottom: 2.4rem; }
.path-topline p { margin: 0; color: var(--gold); font-size: 0.66rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; }
.path-topline span { color: rgba(189,122,23,0.25); font-family: var(--serif); font-size: 2.7rem; line-height: 0.75; }
.path-price { margin: 1rem 0 1.5rem; color: var(--gold); font-family: var(--serif); font-size: clamp(3.2rem, 5vw, 5rem); line-height: 1; }
.path-price span { margin-right: 0.2rem; font-size: 0.48em; vertical-align: super; }
.path-promise { margin: 0 0 1.5rem; color: var(--ink); font-family: var(--serif); font-size: 1.45rem; line-height: 1.3; }
.path-card > p:not(.path-price):not(.path-promise):not(.best-fit) { color: var(--ink-soft); }
.receive-list { margin: 2rem 0 1.5rem; padding-top: 1.5rem; border-top: 1px solid var(--line); }
.receive-list > p { margin: 0 0 0.7rem; color: var(--gold); font-size: 0.67rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; }
.receive-list ul { list-style: none; padding: 0; margin: 0; }
.receive-list li { position: relative; padding: 0.55rem 0 0.55rem 1.3rem; color: var(--ink-soft); }
.receive-list li::before { content: ""; position: absolute; left: 0; top: 1.1rem; width: 0.34rem; height: 0.34rem; background: var(--gold-bright); border-radius: 50%; }
.best-fit { margin: auto 0 1.8rem; padding-top: 1rem; color: var(--ink-soft); font-size: 0.88rem; }
.best-fit strong { color: var(--ink); }
.path-button { width: 100%; }
.path-card-embodiment { grid-column: 1 / -1; display: grid; grid-template-columns: 1fr 0.88fr; gap: clamp(3rem, 8vw, 8rem); color: white; background: var(--blue); border-color: rgba(255,255,255,0.16); box-shadow: var(--shadow); }
.path-card-embodiment .path-topline p, .path-card-embodiment .path-price, .path-card-embodiment .receive-list > p { color: #f3cc7d; }
.path-card-embodiment .path-topline span { color: #7f9aa5; }
.path-card-embodiment .path-promise, .path-card-embodiment .best-fit strong { color: white; }
.path-card-embodiment .embodiment-main > p:not(.path-price):not(.path-promise), .path-card-embodiment .best-fit, .path-card-embodiment .receive-list li { color: rgba(255,255,255,0.73); }
.path-card-embodiment .receive-list { border-color: var(--line-light); }
.path-card-embodiment .receive-list li::before { background: #f3cc7d; }
.comparison { max-width: 1080px; margin: 4rem auto 0; border-top: 1px solid var(--line); }
.comparison p { display: grid; grid-template-columns: minmax(180px, 0.4fr) 1fr; gap: 2rem; margin: 0; padding: 1.2rem 0; border-bottom: 1px solid var(--line); }
.comparison strong { color: var(--gold); font-family: var(--serif); font-size: 1.35rem; font-weight: 500; }
.comparison span { color: var(--ink-soft); }

.next-step { display: grid; grid-template-columns: minmax(0, 0.8fr) minmax(400px, 1.2fr); gap: clamp(4rem, 10vw, 10rem); color: white; background: #103746; }
.next-heading { position: sticky; top: calc(var(--header-height) + 3rem); align-self: start; }
.next-heading p:last-child { max-width: 460px; margin-top: 2rem; color: rgba(255,255,255,0.68); }
.process-list { list-style: none; padding: 0; margin: 0; }
.process-list li { display: grid; grid-template-columns: 4.5rem 1fr; gap: 1rem; align-items: start; padding: 1.8rem 0; border-bottom: 1px solid var(--line-light); }
.process-list li:first-child { border-top: 1px solid var(--line-light); }
.process-list span { color: #f3cc7d; font-family: var(--serif); font-size: 1.4rem; }
.process-list p { margin: 0; color: rgba(255,255,255,0.82); font-family: var(--serif); font-size: clamp(1.35rem, 2vw, 1.8rem); line-height: 1.35; }

.about { display: grid; grid-template-columns: minmax(0, 0.85fr) minmax(360px, 1.15fr); gap: clamp(4rem, 11vw, 11rem); overflow: hidden; background: var(--pearl); }
.about-heading, .about-copy { position: relative; z-index: 1; }
.about-copy { max-width: 650px; color: var(--ink-soft); font-size: 1.04rem; }
.about-copy p { margin: 0 0 1.4rem; }
.authority-statement { padding: 1.5rem 0 1.5rem 1.5rem; color: var(--ink) !important; border-left: 1px solid var(--gold); font-family: var(--serif); font-size: 1.45rem; line-height: 1.35; }
.signature { margin-top: 2rem !important; color: var(--gold); font-family: var(--serif); font-size: 3rem; font-style: italic; }
.about-orbit { position: absolute; left: -10rem; bottom: -12rem; width: 35rem; height: 35rem; display: grid; place-items: center; border: 1px solid rgba(189,122,23,0.11); border-radius: 50%; }
.about-orbit::before, .about-orbit::after { content: ""; position: absolute; border: 1px solid rgba(189,122,23,0.1); border-radius: 50%; }
.about-orbit::before { inset: 4rem; }
.about-orbit::after { inset: 8rem; }
.about-orbit span { color: rgba(155,93,8,0.09); font-family: var(--serif); font-size: 8rem; }
.about-orbit span::before { content: "144"; }

.questions { display: grid; grid-template-columns: minmax(260px, 0.6fr) minmax(480px, 1.4fr); gap: clamp(4rem, 10vw, 10rem); background: var(--warm); }
.questions-heading { align-self: start; position: sticky; top: calc(var(--header-height) + 3rem); }
.faq-list { border-top: 1px solid var(--line); }
details { border-bottom: 1px solid var(--line); }
summary { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 2rem; padding: 1.25rem 0; cursor: pointer; list-style: none; color: var(--ink); font-family: var(--serif); font-size: clamp(1.3rem, 2.2vw, 1.7rem); line-height: 1.25; }
summary::-webkit-details-marker { display: none; }
summary span { flex: none; color: var(--gold); font-family: var(--sans); font-size: 1.5rem; font-weight: 300; transition: transform 200ms ease; }
details[open] summary span { transform: rotate(45deg); }
details > div { max-width: 700px; padding: 0 3rem 1.7rem 0; color: var(--ink-soft); }
details > div p { margin: 0 0 0.8rem; }
summary:focus-visible { outline: 2px solid var(--gold); outline-offset: 4px; }

.closing { position: relative; min-height: 960px; display: grid; place-items: center; overflow: hidden; padding: 8rem 1.4rem; color: white; }
.closing-image { background-position: center 58%; }
.closing-shade { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(6,32,42,0.3), rgba(6,32,42,0.75)), radial-gradient(circle at 50% 28%, transparent 0 10%, rgba(6,32,42,0.12) 50%); }
.closing-content { position: relative; z-index: 1; width: min(960px, 100%); padding: clamp(2.5rem, 6vw, 6rem); text-align: center; background: rgba(7,43,55,0.65); border: 1px solid rgba(255,255,255,0.27); backdrop-filter: blur(16px); }
.closing-content .eyebrow::before { display: none; }
.closing-content > p:not(.eyebrow):not(.signoff) { max-width: 700px; margin: 1.6rem auto 0; color: rgba(255,255,255,0.82); }
.closing-actions { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 3rem; border-top: 1px solid var(--line-light); border-bottom: 1px solid var(--line-light); }
.closing-actions a { display: grid; gap: 0.2rem; min-height: 100px; place-content: center; padding: 1rem; color: white; border-right: 1px solid var(--line-light); text-decoration: none; transition: background 180ms ease; }
.closing-actions a:last-child { border-right: 0; }
.closing-actions a:hover, .closing-actions a:focus-visible { background: rgba(255,255,255,0.12); }
.closing-actions span { color: #f3cc7d; font-family: var(--serif); font-size: 1.35rem; }
.signoff { margin: 3rem 0 0; color: #f3d9a4; font-family: var(--serif); font-size: 1.25rem; font-style: italic; line-height: 1.4; }

.site-footer { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 2rem; padding: 2.5rem clamp(1.4rem, 6vw, 7rem); color: rgba(255,255,255,0.72); background: #061f2a; font-size: 0.73rem; letter-spacing: 0.06em; }
.footer-brand { display: flex; align-items: center; gap: 0.8rem; color: white; font-family: var(--serif); font-size: 1.2rem; text-decoration: none; }
.footer-brand .brand-mark { width: 2.4rem; height: 2.4rem; color: #f3cc7d; border-color: rgba(243,204,125,0.35); font-size: 0.78rem; }
.site-footer nav { justify-self: center; display: flex; gap: 2rem; }
.site-footer nav a { color: inherit; text-decoration: none; }
.site-footer nav a:hover, .site-footer nav a:focus-visible { color: white; }
.footer-end { text-align: right; }
.footer-end p { margin: 0; }

.reveal { opacity: 1; transform: none; }
.reveal-ready .reveal { opacity: 0; transform: translateY(24px); transition: opacity 700ms ease, transform 700ms ease; }
.reveal-ready .reveal.is-visible { opacity: 1; transform: none; }
@keyframes breathe { 0%, 100% { opacity: 0.55; transform: scale(0.92); } 50% { opacity: 1; transform: scale(1.12); } }

@media (max-width: 1180px) {
  .desktop-nav { display: none; }
  .hero { grid-template-columns: minmax(0, 1fr) minmax(360px, 0.75fr); }
  .hero-copy { padding-left: clamp(1.4rem, 4vw, 4rem); padding-right: clamp(1.4rem, 4vw, 4rem); }
  .work-flow { grid-template-columns: 1fr; }
  .flow-step, .flow-step:first-child { padding: 2.2rem 0; border-right: 0; border-bottom: 1px solid var(--line-light); }
  .flow-step:last-child { border-bottom: 0; }
}

@media (max-width: 900px) {
  :root { --header-height: 70px; }
  .site-header { grid-template-columns: 1fr auto; gap: 1rem; padding: 0.7rem 1rem; }
  .brand-copy small { display: none; }
  .header-actions .button-small, .home-link { display: none; }
  .menu-button { width: 46px; height: 46px; display: grid; place-content: center; gap: 6px; padding: 0; border: 1px solid var(--line); border-radius: 50%; color: var(--ink); background: rgba(255,255,255,0.65); }
  .menu-button span { width: 18px; height: 1px; background: currentColor; transition: transform 180ms ease; }
  .menu-button[aria-expanded="true"] span:first-child { transform: translateY(3.5px) rotate(45deg); }
  .menu-button[aria-expanded="true"] span:last-child { transform: translateY(-3.5px) rotate(-45deg); }
  .mobile-menu { position: fixed; inset: var(--header-height) 0 auto 0; display: grid; padding: 1rem; background: rgba(255,253,247,0.98); border-bottom: 1px solid var(--line); box-shadow: var(--shadow); opacity: 0; visibility: hidden; transform: translateY(-10px); transition: opacity 180ms ease, visibility 180ms ease, transform 180ms ease; }
  .mobile-menu.open { opacity: 1; visibility: visible; transform: none; }
  .mobile-menu a { min-height: 52px; display: flex; align-items: center; padding: 0 0.5rem; border-bottom: 1px solid var(--line); color: var(--ink); font-family: var(--serif); font-size: 1.35rem; text-decoration: none; }
  .mobile-menu a:last-child { border-bottom: 0; }
  .hero { min-height: auto; grid-template-columns: 1fr; }
  .hero-copy { padding-top: 5rem; padding-bottom: 4rem; }
  .hero-visual { min-height: 68svh; }
  .recognition, .work-details, .next-step, .about, .questions { grid-template-columns: 1fr; }
  .recognition { gap: 2.5rem; }
  .work-details { gap: 1rem; }
  .path-card-embodiment { grid-template-columns: 1fr; gap: 1rem; }
  .next-heading, .questions-heading { position: static; }
  .about-copy { max-width: none; }
  .closing-actions { grid-template-columns: 1fr; }
  .closing-actions a { border-right: 0; border-bottom: 1px solid var(--line-light); }
  .closing-actions a:last-child { border-bottom: 0; }
  .site-footer { grid-template-columns: 1fr; text-align: center; }
  .footer-brand { justify-self: center; }
  .site-footer nav { justify-self: center; flex-wrap: wrap; justify-content: center; }
  .footer-end { text-align: center; }
}

@media (max-width: 640px) {
  body { font-size: 15px; }
  .brand-copy strong { font-size: 1.05rem; }
  .hero-copy { padding-top: 4.2rem; }
  h1 { font-size: clamp(3.35rem, 15vw, 5.1rem); }
  h2 { font-size: clamp(2.8rem, 12vw, 4.2rem); }
  .hero-lead { font-size: 1.35rem; }
  .hero-actions { align-items: stretch; }
  .hero-actions .button { width: 100%; }
  .hero-visual { min-height: 74svh; }
  .visual-caption { right: 1rem; bottom: 1rem; width: calc(100% - 2rem); }
  .section-pad { padding-top: 5.5rem; padding-bottom: 5.5rem; }
  .section-number { top: 2rem; }
  .work-intro .lead { margin-left: 0; }
  .bring-panel, .receive-panel, .path-card { padding: 1.6rem; }
  .path-grid { grid-template-columns: 1fr; }
  .path-card-embodiment { grid-column: auto; }
  .comparison p { grid-template-columns: 1fr; gap: 0.2rem; }
  .process-list li { grid-template-columns: 3rem 1fr; }
  .questions { gap: 3rem; }
  details > div { padding-right: 0; }
  .closing { min-height: 840px; }
  .closing-content { padding: 2.2rem 1.2rem; }
  .site-footer nav { gap: 1rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .reveal-ready .reveal { opacity: 1; transform: none; }
  .hero-image, .closing-image { transform: none; }
}

@media (forced-colors: active) {
  .button { border: 2px solid ButtonText; }
  .hero-visual, .closing { border: 1px solid CanvasText; }
}
