:root {
  --paper: #f7f5f2;
  --surface: #fffdf8;
  --ink: #0e1b2d;
  --soft-ink: #2f3c4b;
  --muted: #747c77;
  --line: #dedbd4;
  --veil: rgb(247 245 242 / .76);
  --navy: #0e1b2d;
  --gold: #b89b5a;
  --cream: #f7f5f2;
  --blue: #203b58;
  --shadow: 0 24px 70px rgb(14 27 45 / .1);
  --serif: "Cormorant Garamond", ui-serif, Georgia, "Times New Roman", serif;
  --sans: "Jost", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-family: var(--sans);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.site-head {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 68px;
  padding: 14px clamp(24px, 5vw, 72px);
  background: var(--veil);
  border-bottom: 1px solid rgb(228 226 220 / .72);
  backdrop-filter: blur(22px) saturate(160%);
}
.brand {
  display: inline-flex;
  align-items: center;
  width: 178px;
  height: 42px;
}
.brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
}
nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 3vw, 30px);
  color: var(--muted);
  font-size: 13px;
  font-weight: 540;
  letter-spacing: .04em;
  text-transform: uppercase;
}
nav a {
  transition: color .2s ease;
}
nav a:hover { color: var(--ink); }
.nav-cta {
  color: var(--ink);
  padding: 8px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgb(255 255 255 / .52);
}

.hero {
  min-height: min(580px, calc(74svh - 68px));
  display: grid;
  align-items: end;
  padding: clamp(28px, 5vw, 72px);
  color: white;
  background:
    linear-gradient(90deg, rgb(14 27 45 / .9) 0%, rgb(14 27 45 / .72) 48%, rgb(14 27 45 / .2) 100%),
    var(--hero-image) center / cover;
}
.brand-hero {
  background-color: var(--navy);
  background-image:
    linear-gradient(90deg, rgb(14 27 45 / .94) 0%, rgb(14 27 45 / .78) 48%, rgb(14 27 45 / .34) 100%),
    url("/assets/homepage-ghost-hero.png");
  background-position: center;
  background-size: cover;
}
.hero-inner {
  width: min(760px, 100%);
  display: block;
  padding: clamp(18px, 3.5svh, 38px) 0;
  animation: rise .7s ease-out both;
}
.hero h1, .page-hero h1 {
  margin: 0;
  max-width: 1050px;
  font-family: var(--serif);
  font-size: clamp(48px, 5.5vw, 82px);
  line-height: 1;
  font-weight: 600;
  letter-spacing: 0;
}
.hero h1 {
  max-width: 640px;
  font-size: clamp(44px, 4.8vw, 68px);
}
.hero p:not(.eyebrow), .page-hero p:not(.eyebrow) {
  max-width: 720px;
  margin: 28px 0 0;
  color: rgb(255 255 255 / .82);
  font-size: clamp(19px, 2.1vw, 25px);
  line-height: 1.42;
  font-weight: 400;
}
.hero p:not(.eyebrow) {
  max-width: 620px;
  margin-top: 22px;
  font-size: clamp(18px, 1.7vw, 21px);
}
.eyebrow, .section-kicker {
  margin: 0 0 18px;
  color: #946f36;
  font-size: 12px;
  font-weight: 620;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 20px;
  color: white;
  border: 1px solid rgb(255 255 255 / .48);
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: .02em;
  background: rgb(255 255 255 / .08);
  backdrop-filter: blur(18px);
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.button:hover {
  transform: translateY(-1px);
  background: rgb(255 255 255 / .15);
}
.button.primary {
  color: var(--ink);
  background: white;
  border-color: white;
}

.section {
  padding: clamp(72px, 11vw, 156px) clamp(22px, 6vw, 96px);
}
.question-stage {
  display: block;
  background: var(--surface);
}
.question-copy {
  max-width: 980px;
}
.question-copy p:not(.section-kicker) {
  max-width: 720px;
  margin: 28px 0 0;
  color: var(--soft-ink);
  font-size: clamp(19px, 2vw, 23px);
  line-height: 1.58;
}
.alignment-map {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, .72fr) minmax(0, 1fr);
  gap: 1px;
  margin-top: clamp(34px, 5vw, 56px);
  border: 1px solid var(--line);
  background: var(--line);
}
.alignment-map article,
.alignment-core {
  min-height: 220px;
  padding: clamp(24px, 3vw, 34px);
  background: rgb(255 253 248 / .78);
}
.alignment-map span {
  display: block;
  color: #8c6c36;
  font-size: 12px;
  font-weight: 720;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.alignment-map article p {
  max-width: 420px;
  margin: clamp(26px, 4vw, 44px) 0 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(28px, 3.2vw, 46px);
  line-height: 1.08;
}
.alignment-core {
  display: grid;
  align-content: center;
  justify-items: center;
  text-align: center;
  background: var(--ink);
}
.alignment-core img {
  width: 82px;
  margin-bottom: 22px;
  filter: brightness(0) invert(1);
}
.alignment-core p {
  max-width: 320px;
  margin: 0;
  color: rgb(255 255 255 / .78);
  font-size: 17px;
  line-height: 1.6;
}
.signal-list span {
  display: block;
  color: #8c6c36;
  font-size: 12px;
  font-weight: 720;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.logo-panel {
  min-height: 520px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgb(14 27 45 / .12);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgb(255 253 248 / .96), rgb(239 237 230 / .9)),
    var(--surface);
  box-shadow: 0 28px 80px rgb(14 27 45 / .12);
}
.logo-panel img {
  width: min(72%, 470px);
}
.about-copy p,
.about-visual p,
.origin-copy p,
.about-turn p,
.about-tissue p {
  max-width: 700px;
  color: var(--soft-ink);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.62;
}
.about-hero h1 {
  max-width: 1120px;
}
.about-hero p:not(.eyebrow) {
  max-width: 820px;
}
.about-origin {
  display: grid;
  grid-template-columns: minmax(320px, .92fr) minmax(0, 1.08fr);
  gap: clamp(36px, 7vw, 104px);
  align-items: start;
  background: var(--surface);
}
.origin-panel {
  position: sticky;
  top: 112px;
}
.origin-panel h2 {
  font-size: clamp(40px, 5vw, 72px);
}
.origin-copy p {
  margin: 0 0 26px;
}
.about-turn {
  display: grid;
  grid-template-columns: minmax(320px, .9fr) minmax(0, 1.1fr);
  gap: clamp(34px, 6vw, 92px);
  background: #e9e7df;
}
.about-turn h2 {
  font-size: clamp(40px, 5vw, 72px);
}
.about-turn p {
  margin: 0 0 24px;
}
.about-turn p:last-child {
  margin-bottom: 0;
}
.turn-copy {
  display: block;
}
.about-tissue {
  display: grid;
  grid-template-columns: minmax(340px, .9fr) minmax(0, 1.1fr);
  gap: clamp(34px, 6vw, 92px);
  background: var(--surface);
}
.about-tissue h2 {
  font-size: clamp(40px, 5vw, 72px);
}
.tissue-copy p {
  margin: 0 0 24px;
}
.tissue-copy p:last-child {
  margin-bottom: 0;
}
.about-conviction {
  display: grid;
  grid-template-columns: minmax(320px, .82fr) minmax(0, 1.18fr);
  gap: clamp(38px, 7vw, 108px);
  align-items: center;
  background: var(--surface);
}
.about-frame {
  display: grid;
  grid-template-columns: minmax(320px, .82fr) minmax(0, 1.18fr);
  gap: clamp(38px, 7vw, 108px);
  align-items: center;
  background: var(--surface);
}
.about-lockup {
  min-height: 520px;
  display: grid;
  place-items: center;
  padding: clamp(34px, 5vw, 64px);
  color: white;
  text-align: center;
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgb(14 27 45 / .98), rgb(32 59 88 / .92)),
    var(--navy);
  box-shadow: var(--shadow);
}
.about-lockup img {
  width: min(420px, 86%);
}
.about-lockup p {
  margin: 34px 0 0;
  color: rgb(255 255 255 / .72);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .36em;
  text-transform: uppercase;
}
.about-copy p {
  margin: 26px 0 0;
}
.founder-signature {
  width: fit-content;
  margin-top: 38px;
  padding-top: 18px;
  border-top: 1px solid #c8b992;
}
.founder-signature span {
  display: block;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(38px, 4.8vw, 64px);
  line-height: .95;
}
.founder-signature p {
  margin: 10px 0 0;
  color: #946f36;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .08em;
}
.signal-section {
  background: #e9e7df;
}
.signal-section h2 {
  max-width: 1020px;
}
.signal-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: clamp(34px, 5vw, 64px);
  background: rgb(14 27 45 / .14);
}
.signal-list article {
  min-height: 230px;
  padding: clamp(28px, 4vw, 44px);
  background: rgb(255 253 248 / .74);
}
.signal-list p {
  margin: 22px 0 0;
  color: var(--soft-ink);
  font-size: 18px;
  line-height: 1.58;
}
.about-visual {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, .88fr);
  gap: clamp(36px, 7vw, 104px);
  align-items: center;
  color: white;
  background: var(--ink);
}
.about-visual p {
  color: rgb(255 255 255 / .74);
}
.two-col {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(320px, 1.18fr);
  gap: clamp(36px, 8vw, 112px);
}
h2 {
  margin: 0;
  max-width: 920px;
  font-family: var(--serif);
  font-size: clamp(44px, 5.8vw, 84px);
  line-height: 1.02;
  font-weight: 600;
  letter-spacing: 0;
}
h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(23px, 2.4vw, 31px);
  line-height: 1.08;
  font-weight: 600;
  letter-spacing: 0;
}
.prose {
  max-width: 760px;
  color: var(--soft-ink);
  font-size: clamp(18px, 2vw, 21px);
  line-height: 1.72;
}
.prose p:first-child { margin-top: 0; }

.attention-strip {
  background: var(--surface);
}
.attention-strip h2 {
  max-width: 1120px;
}
.attention-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: clamp(34px, 5vw, 64px);
  background: var(--line);
}
.attention-grid article {
  min-height: 250px;
  padding: clamp(28px, 4vw, 48px);
  background: var(--surface);
}
.attention-grid span {
  display: block;
  margin-bottom: 30px;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 42px;
  line-height: 1;
}
.attention-grid p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
}

.contrast {
  color: white;
  background: var(--ink);
}
.contrast .section-kicker { color: var(--gold); }
.contrast h2 { max-width: 960px; }
.comparison {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 88px minmax(0, 1fr);
  align-items: stretch;
  gap: 1px;
  margin-top: clamp(42px, 6vw, 78px);
  border: 1px solid rgb(255 255 255 / .18);
}
.comparison article {
  padding: clamp(30px, 5vw, 58px);
}
.comparison h3 {
  max-width: 520px;
}
.comparison .eyebrow {
  color: var(--gold);
}
.compare-mark {
  display: grid;
  place-items: center;
  color: var(--gold);
  border-left: 1px solid rgb(255 255 255 / .18);
  border-right: 1px solid rgb(255 255 255 / .18);
  font-family: var(--serif);
  font-size: 42px;
}
.layer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-top: clamp(42px, 6vw, 78px);
  border-top: 1px solid rgb(255 255 255 / .18);
  border-left: 1px solid rgb(255 255 255 / .18);
}
.layer-grid article {
  min-height: 230px;
  padding: clamp(26px, 3vw, 42px);
  border-right: 1px solid rgb(255 255 255 / .18);
  border-bottom: 1px solid rgb(255 255 255 / .18);
  background: transparent;
}
.layer-grid p {
  max-width: 360px;
  color: rgb(255 255 255 / .68);
  line-height: 1.58;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 36px;
}
.section-head > a {
  color: var(--blue);
  font-weight: 720;
}
.essay-band {
  background: linear-gradient(180deg, var(--paper), #efeee8);
}
.article-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.article-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgb(255 254 250 / .78);
  box-shadow: 0 1px 0 rgb(255 255 255 / .75) inset;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.article-card:hover {
  transform: translateY(-3px);
  border-color: #d3d0c8;
  box-shadow: var(--shadow);
}
.article-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}
.article-card div { padding: 24px; }
.article-card p {
  color: var(--muted);
  line-height: 1.58;
}
.article-card .eyebrow {
  margin-bottom: 14px;
}
.archive { grid-template-columns: repeat(2, minmax(0, 1fr)); }

.page-hero {
  min-height: 58svh;
  display: grid;
  align-content: end;
  padding: clamp(90px, 12vw, 170px) clamp(22px, 6vw, 96px) clamp(54px, 8vw, 96px);
  color: white;
  background: var(--ink);
}
.page-hero p:not(.eyebrow) { color: rgb(255 255 255 / .72); }
.split-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  padding: 1px;
}
.split-list article {
  min-height: 260px;
  padding: clamp(32px, 5vw, 58px);
  background: var(--surface);
}
.split-list p {
  max-width: 560px;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.62;
}

.layers-hero {
  min-height: 62svh;
}
.ordered-flow {
  display: grid;
  gap: 0;
  background: #d8d5cc;
  padding-top: clamp(72px, 11vw, 156px);
}
.ordered-flow article {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: start;
  width: min(1120px, calc(100% - clamp(44px, 12vw, 192px)));
  margin: 0 auto;
  padding: clamp(34px, 5vw, 64px) clamp(22px, 6vw, 96px);
  background: var(--paper);
  box-shadow: 0 18px 50px rgb(14 27 45 / .06);
}
.ordered-flow h2 {
  font-size: clamp(42px, 5vw, 74px);
}
.ordered-flow h3 {
  margin-top: 8px;
  font-family: var(--sans);
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 500;
}
.layer-details {
  background: #d8d5cc;
}
.layer-details article {
  background: var(--surface);
}
.layer-arrow {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin: 22px auto;
  color: var(--navy);
  background: var(--gold);
  border-radius: 999px;
  font-family: var(--serif);
  font-size: 32px;
  line-height: 1;
  box-shadow: 0 10px 24px rgb(14 27 45 / .12);
}
.layer-label {
  margin: 0 0 8px;
  color: #946f36;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.ordered-flow .practice {
  max-width: 900px;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px dotted #c8b992;
  color: var(--soft-ink);
}
.ordered-flow p {
  max-width: 760px;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.64;
}
.flow-number {
  color: var(--gold);
  font-family: var(--serif);
  font-size: clamp(54px, 7vw, 96px);
  line-height: .9;
}
.layers-close {
  color: white;
  background: var(--navy);
}
.layers-close .eyebrow {
  color: var(--gold);
}
.layers-close h2 {
  max-width: 1000px;
}
.layers-close p:not(.eyebrow) {
  max-width: 840px;
  color: rgb(255 255 255 / .74);
  font-size: clamp(19px, 2vw, 24px);
  line-height: 1.62;
}

.post {
  width: min(920px, calc(100% - 40px));
  margin: 0 auto;
  padding: 86px 0 120px;
}
.post h1 {
  margin: 0 0 30px;
  font-family: var(--serif);
  font-size: clamp(44px, 7vw, 86px);
  line-height: .98;
  font-weight: 600;
  letter-spacing: 0;
}
.post header img {
  width: 100%;
  max-height: 560px;
  object-fit: cover;
  margin: 40px 0 58px;
  border-radius: 8px;
  box-shadow: var(--shadow);
}
.post-body {
  color: #222826;
  font-family: var(--serif);
  font-size: 21px;
  line-height: 1.78;
}
.post-body h2 {
  margin-top: 58px;
  font-family: var(--serif);
  font-size: 36px;
  line-height: 1.08;
}
.post-body a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.post-body hr {
  border: 0;
  border-top: 1px solid var(--line);
  margin: 52px 0;
}

.contact-hero .button {
  width: fit-content;
  margin-top: 20px;
}
.site-foot {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 38px clamp(22px, 6vw, 96px);
  color: rgb(255 255 255 / .68);
  background: var(--ink);
}
.site-foot p { margin: 0; }
.site-foot div {
  display: flex;
  gap: 18px;
}
.site-foot a:hover { color: white; }

@keyframes rise {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 1120px) {
  .hero h1, .page-hero h1 {
    max-width: 820px;
  }
  .hero-inner {
    grid-template-columns: 1fr;
  }
  .about-frame,
  .about-origin,
  .about-turn,
  .about-tissue,
  .about-conviction,
  .about-visual {
    grid-template-columns: 1fr;
  }
  .origin-panel {
    position: static;
  }
  .two-col {
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .layer-grid,
  .article-grid,
  .attention-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .comparison {
    grid-template-columns: 1fr;
  }
  .signal-list {
    grid-template-columns: 1fr;
  }
  .alignment-map {
    grid-template-columns: 1fr;
  }
  .alignment-map article,
  .alignment-core {
    min-height: auto;
  }
  .alignment-map article p {
    margin-top: 30px;
  }
  .compare-mark {
    min-height: 72px;
    border: 0;
    border-top: 1px solid rgb(255 255 255 / .18);
    border-bottom: 1px solid rgb(255 255 255 / .18);
  }
}

@media (max-width: 820px) {
  .site-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }
  .brand {
    width: 156px;
  }
  nav {
    flex-wrap: wrap;
    row-gap: 10px;
  }
  .hero { min-height: 560px; }
  .hero-inner { padding: 10svh 0 6svh; }
  .hero h1, .page-hero h1 {
    font-size: clamp(46px, 14vw, 66px);
  }
  .hero h1 {
    font-size: clamp(42px, 13vw, 56px);
  }
  .about-lockup {
    min-height: 380px;
  }
  .question-stage,
  .about-frame,
  .about-origin,
  .about-turn,
  .about-tissue,
  .about-conviction,
  .signal-section,
  .about-visual {
    padding-top: 52px;
    padding-bottom: 72px;
  }
  .layer-grid, .article-grid, .archive, .split-list, .attention-grid {
    grid-template-columns: 1fr;
  }
  .ordered-flow article {
    grid-template-columns: 1fr;
    width: calc(100% - 32px);
  }
  .section-head {
    align-items: flex-start;
    flex-direction: column;
  }
  .site-foot {
    flex-direction: column;
  }
  .site-foot div {
    flex-wrap: wrap;
  }
}
