:root {
  --ink: #151512;
  --ink-soft: #272720;
  --paper: #f3f0e9;
  --paper-warm: #e9e3d8;
  --line: rgba(21, 21, 18, 0.15);
  --line-light: rgba(255, 255, 255, 0.2);
  --champagne: #c8ad81;
  --muted: #69685f;
  --white: #fffdf7;
  --shell: min(1280px, calc(100vw - 80px));
  --serif: "Iowan Old Style", "Baskerville", "Times New Roman", serif;
  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
img { display: block; max-width: 100%; }
svg { fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.5; }

.shell { width: var(--shell); margin-inline: auto; }
.section { padding: 150px 0; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  transform: translateY(-160%);
  padding: 10px 16px;
  background: var(--white);
  color: var(--ink);
  border-radius: 999px;
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  color: var(--white);
  border-bottom: 1px solid transparent;
  transition: background .35s ease, border-color .35s ease, color .35s ease;
}
.site-header.is-scrolled {
  color: var(--ink);
  background: rgba(243, 240, 233, .88);
  border-bottom-color: var(--line);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}
.header-inner {
  min-height: 84px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: max-content;
  font-size: 11px;
  font-weight: 650;
  letter-spacing: .21em;
}
.brand-mark {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border: 1px solid currentColor;
  border-radius: 50%;
  opacity: .9;
}
.brand-mark::before,
.brand-mark::after,
.brand-mark i {
  content: "";
  position: absolute;
  display: block;
  background: currentColor;
}
.brand-mark::before { width: 1px; height: 14px; }
.brand-mark::after { width: 14px; height: 1px; }
.brand-mark i { width: 4px; height: 4px; border-radius: 50%; }
.main-nav { display: flex; align-items: center; gap: 34px; }
.main-nav a {
  position: relative;
  font-size: 12px;
  letter-spacing: .02em;
  opacity: .78;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -7px;
  height: 1px;
  background: currentColor;
  transition: right .25s ease;
}
.main-nav a:hover { opacity: 1; }
.main-nav a:hover::after { right: 0; }
.header-cta {
  justify-self: end;
  padding: 11px 18px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .07em;
  transition: color .25s ease, background .25s ease;
}
.header-cta:hover { background: var(--white); color: var(--ink); }
.is-scrolled .header-cta:hover { background: var(--ink); color: var(--white); }
.menu-button { display: none; }

.hero {
  position: relative;
  min-height: 880px;
  height: 100svh;
  max-height: 1020px;
  overflow: hidden;
  background: #14120f;
  color: var(--white);
}
.hero-image {
  position: absolute;
  inset: 0;
  background: url("/assets/hero.jpg") center center / cover no-repeat;
  transform: scale(1.01);
}
.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(15, 14, 12, .84) 0%, rgba(15, 14, 12, .66) 36%, rgba(15, 14, 12, .06) 73%),
    linear-gradient(180deg, rgba(10, 9, 7, .35), transparent 35%, rgba(10, 9, 7, .18));
}
.hero-inner {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  padding-top: 66px;
}
.hero-copy { width: 100%; max-width: 730px; min-width: 0; }
.eyebrow,
.section-label {
  margin: 0 0 28px;
  font-size: 10px;
  font-weight: 650;
  letter-spacing: .22em;
  text-transform: uppercase;
}
.eyebrow { color: #d8c8aa; }
.hero h1 {
  margin: 0;
  max-width: 820px;
  font-family: var(--serif);
  font-size: clamp(66px, 7.3vw, 118px);
  font-weight: 400;
  line-height: .91;
  letter-spacing: -.055em;
}
.hero h1 em { font-weight: 400; color: #d5c09a; }
.title-mobile { display: none; }
.hero-lead {
  max-width: 610px;
  margin: 38px 0 0;
  color: rgba(255, 253, 247, .76);
  font-size: 18px;
  line-height: 1.55;
}
.hero-actions { display: flex; align-items: center; gap: 28px; margin-top: 42px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  min-height: 58px;
  padding: 0 24px 0 26px;
  border-radius: 2px;
  font-size: 12px;
  font-weight: 650;
  letter-spacing: .045em;
  transition: transform .25s ease, background .25s ease, color .25s ease;
}
.button:hover { transform: translateY(-2px); }
.button svg { width: 20px; height: 20px; transition: transform .25s ease; }
.button:hover svg { transform: translateX(4px); }
.button-light { background: var(--white); color: var(--ink); }
.button-light:hover { background: #e6dcc9; }
.button-dark { background: var(--ink); color: var(--white); }
.button-dark:hover { background: #302e28; }
.text-link {
  font-size: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, .5);
  padding-bottom: 4px;
}
.hero-note { margin: 22px 0 0; color: rgba(255, 255, 255, .46); font-size: 11px; letter-spacing: .06em; }
.hero-index {
  position: absolute;
  z-index: 2;
  right: 42px;
  bottom: 38px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 9px;
  letter-spacing: .18em;
  color: rgba(255, 255, 255, .5);
  writing-mode: vertical-rl;
}
.hero-index span { display: block; width: 1px; height: 46px; background: rgba(255, 255, 255, .35); }

.signal-strip { background: var(--ink); color: var(--white); border-top: 1px solid rgba(255, 255, 255, .13); }
.signal-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.signal-grid > div {
  min-height: 118px;
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 0 34px;
  border-right: 1px solid rgba(255, 255, 255, .12);
}
.signal-grid > div:first-child { padding-left: 0; }
.signal-grid > div:last-child { border-right: 0; }
.signal-grid span { color: var(--champagne); font-family: var(--serif); font-style: italic; font-size: 13px; }
.signal-grid p { margin: 0; color: rgba(255, 255, 255, .72); font-size: 12px; letter-spacing: .03em; }

.intro { background: var(--paper); }
.intro-grid { display: grid; grid-template-columns: .72fr 2fr; gap: 90px; }
.section-label { color: #8b7556; }
.intro-copy h2,
.section-heading h2,
.process h2,
.plans h2,
.faq h2,
.closing h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(48px, 5.3vw, 82px);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -.045em;
}
.intro-copy p {
  max-width: 770px;
  margin: 38px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}
.intro-copy p + p { margin-top: 18px; }

.inside { padding-top: 0; }
.section-heading { display: grid; grid-template-columns: 2fr .8fr; align-items: end; gap: 80px; margin-bottom: 76px; }
.section-heading > p { margin: 0 0 4px; color: var(--muted); line-height: 1.7; }
.facet-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.facet-card {
  position: relative;
  min-height: 430px;
  padding: 34px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background .35s ease, color .35s ease;
}
.facet-card:hover { background: var(--ink); color: var(--white); }
.facet-number { font-size: 10px; letter-spacing: .18em; opacity: .52; }
.facet-glyph {
  position: relative;
  width: 104px;
  height: 104px;
  margin: 54px auto 58px;
  border: 1px solid currentColor;
  border-radius: 50%;
  opacity: .55;
  transition: transform .45s ease, opacity .35s ease;
}
.facet-card:hover .facet-glyph { transform: rotate(18deg); opacity: .85; }
.facet-glyph::before,
.facet-glyph::after,
.facet-glyph span {
  content: "";
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  background: currentColor;
}
.facet-glyph::before { width: 1px; height: 132px; }
.facet-glyph::after { width: 132px; height: 1px; }
.facet-glyph span { width: 10px; height: 10px; border-radius: 50%; }
.glyph-two { border-radius: 0; transform: rotate(45deg); }
.facet-card:hover .glyph-two { transform: rotate(60deg); }
.glyph-three::before { height: 70px; transform: translate(-50%, -50%) rotate(45deg); }
.glyph-three::after { width: 70px; transform: translate(-50%, -50%) rotate(-45deg); }
.glyph-four { border-style: double; border-width: 4px; }
.glyph-five { width: 116px; height: 72px; border-radius: 50%; }
.glyph-six { border-radius: 4px 52% 4px 52%; }
.facet-card h3 { margin: 0; font-family: var(--serif); font-size: 26px; font-weight: 400; }
.facet-card p { margin: 16px 0 0; color: var(--muted); font-size: 14px; line-height: 1.65; }
.facet-card:hover p { color: rgba(255, 255, 255, .64); }

.process { background: var(--paper-warm); }
.process-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 130px; }
.process-sticky { align-self: start; position: sticky; top: 130px; }
.process-sticky > p:not(.section-label) { max-width: 460px; margin: 32px 0 36px; color: var(--muted); }
.steps { list-style: none; margin: 0; padding: 0; counter-reset: step; }
.steps li {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 30px;
  padding: 12px 0 52px;
  margin-bottom: 38px;
  border-bottom: 1px solid var(--line);
}
.steps > li > span { font-family: var(--serif); font-size: 38px; color: #a68a61; font-style: italic; }
.steps h3 { margin: 5px 0 14px; font-family: var(--serif); font-size: 31px; font-weight: 400; }
.steps p { max-width: 490px; margin: 0; color: var(--muted); }

.plans { background: var(--ink); color: var(--white); }
.plans-heading { margin-bottom: 70px; }
.plans-heading .section-label { color: var(--champagne); }
.plan-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.plan-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 610px;
  padding: 46px;
  border: 1px solid rgba(255, 255, 255, .19);
}
.plan-base { color: var(--white); }
.plan-signature { background: #ece5d9; color: var(--ink); border-color: #ece5d9; }
.plan-ribbon {
  position: absolute;
  top: 0;
  right: 0;
  padding: 10px 16px;
  background: var(--champagne);
  color: var(--ink);
  font-size: 9px;
  font-weight: 650;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.plan-top { display: flex; justify-content: space-between; gap: 30px; align-items: start; }
.plan-edition { margin: 0 0 17px; font-size: 9px; letter-spacing: .25em; opacity: .56; }
.plan-card h3 { margin: 0; font-family: var(--serif); font-size: 37px; font-weight: 400; }
.price { margin: 0; white-space: nowrap; font-size: 14px; }
.price span { font-family: var(--serif); font-size: 50px; line-height: 1; }
.plan-summary { max-width: 530px; margin: 46px 0 34px; font-size: 15px; line-height: 1.7; opacity: .66; }
.plan-card ul { list-style: none; margin: 0 0 48px; padding: 0; }
.plan-card li { position: relative; padding: 13px 0 13px 24px; border-bottom: 1px solid currentColor; font-size: 13px; opacity: .72; }
.plan-card li:first-child { border-top: 1px solid currentColor; }
.plan-card li::before { content: ""; position: absolute; left: 2px; top: 22px; width: 5px; height: 5px; border: 1px solid currentColor; border-radius: 50%; }
.plan-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  padding: 19px 0 4px;
  border-top: 1px solid currentColor;
  font-size: 12px;
  font-weight: 650;
  letter-spacing: .045em;
}
.plan-link span { font-size: 18px; transition: transform .2s ease; }
.plan-link:hover span { transform: translate(3px, -3px); }

.perspective { background: #beb49f; }
.perspective-inner { display: grid; grid-template-columns: .46fr 1.54fr; gap: 90px; }
.perspective blockquote {
  grid-column: 2;
  margin: 0;
  max-width: 900px;
  font-family: var(--serif);
  font-size: clamp(40px, 4.4vw, 70px);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -.035em;
}
.perspective-note { grid-column: 2; display: grid; grid-template-columns: 60px 1fr; gap: 22px; align-items: start; max-width: 700px; margin-top: 40px; }
.perspective-note span { height: 1px; margin-top: 12px; background: var(--ink); }
.perspective-note p { margin: 0; font-size: 13px; line-height: 1.7; opacity: .65; }

.faq-grid { display: grid; grid-template-columns: .65fr 1.35fr; gap: 130px; }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary {
  position: relative;
  list-style: none;
  cursor: pointer;
  padding: 28px 48px 28px 0;
  font-family: var(--serif);
  font-size: 25px;
  line-height: 1.25;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span,
.faq-list summary span::after {
  position: absolute;
  top: 50%;
  right: 3px;
  width: 15px;
  height: 1px;
  background: var(--ink);
  content: "";
  transition: transform .25s ease;
}
.faq-list summary span::after { inset: 0; transform: rotate(90deg); }
.faq-list details[open] summary span::after { transform: rotate(0); }
.faq-list details p { max-width: 700px; margin: -4px 50px 28px 0; color: var(--muted); font-size: 14px; }

.closing {
  position: relative;
  overflow: hidden;
  min-height: 700px;
  display: grid;
  place-items: center;
  padding: 120px 0;
  background: #11110f;
  color: var(--white);
  text-align: center;
}
.closing-inner { position: relative; z-index: 2; }
.closing .section-label { color: var(--champagne); }
.closing h2 { font-size: clamp(58px, 7vw, 112px); }
.closing p:not(.section-label) { max-width: 580px; margin: 32px auto 40px; color: rgba(255, 255, 255, .58); }
.closing-orbit { position: absolute; inset: 50% auto auto 50%; width: 760px; height: 760px; transform: translate(-50%, -50%); border: 1px solid rgba(200, 173, 129, .18); border-radius: 50%; }
.closing-orbit::before,
.closing-orbit::after,
.closing-orbit span { content: ""; position: absolute; inset: 50% auto auto 50%; transform: translate(-50%, -50%); border: 1px solid rgba(200, 173, 129, .12); border-radius: 50%; }
.closing-orbit::before { width: 540px; height: 540px; }
.closing-orbit::after { width: 340px; height: 340px; }
.closing-orbit span { width: 12px; height: 12px; background: var(--champagne); box-shadow: 0 0 45px rgba(200, 173, 129, .7); }

.site-footer { background: var(--ink); color: var(--white); border-top: 1px solid rgba(255, 255, 255, .14); padding: 70px 0 30px; }
.footer-top { display: grid; grid-template-columns: 1fr 1fr auto; gap: 60px; align-items: start; padding-bottom: 70px; }
.footer-top p { margin: 0; color: rgba(255, 255, 255, .5); font-family: var(--serif); font-size: 20px; line-height: 1.4; }
.footer-top > a:last-child { font-size: 12px; border-bottom: 1px solid rgba(255, 255, 255, .4); }
.footer-bottom { display: grid; grid-template-columns: 1fr 2fr; gap: 60px; padding-top: 24px; border-top: 1px solid rgba(255, 255, 255, .12); color: rgba(255, 255, 255, .35); font-size: 10px; letter-spacing: .02em; }
.footer-bottom p { margin: 0; }

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .75s cubic-bezier(.2,.65,.25,1), transform .75s cubic-bezier(.2,.65,.25,1);
}
.reveal.is-visible { opacity: 1; transform: none; }
.facet-card:nth-child(2), .facet-card:nth-child(5) { transition-delay: .08s; }
.facet-card:nth-child(3), .facet-card:nth-child(6) { transition-delay: .16s; }

@media (max-width: 1080px) {
  :root { --shell: min(100% - 48px, 1120px); }
  .main-nav { gap: 22px; }
  .section { padding: 115px 0; }
  .hero { min-height: 760px; }
  .hero-copy { max-width: 650px; }
  .process-grid, .faq-grid { gap: 75px; }
  .facet-card { min-height: 390px; padding: 27px; }
  .facet-glyph { margin-top: 42px; margin-bottom: 48px; }
}

@media (max-width: 860px) {
  .header-inner { grid-template-columns: 1fr auto; min-height: 72px; }
  .header-cta { display: none; }
  .menu-button {
    position: relative;
    display: block;
    justify-self: end;
    width: 40px;
    height: 40px;
    padding: 0;
    border: 0;
    color: inherit;
    background: transparent;
  }
  .menu-button > span:not(.sr-only) { position: absolute; left: 8px; width: 24px; height: 1px; background: currentColor; transition: transform .25s ease, top .25s ease; }
  .menu-button > span:nth-child(2) { top: 15px; }
  .menu-button > span:nth-child(3) { top: 24px; }
  .menu-button[aria-expanded="true"] > span:nth-child(2) { top: 20px; transform: rotate(45deg); }
  .menu-button[aria-expanded="true"] > span:nth-child(3) { top: 20px; transform: rotate(-45deg); }
  .main-nav {
    position: fixed;
    inset: 72px 0 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 60px 24px;
    background: var(--paper);
    color: var(--ink);
    visibility: hidden;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity .25s ease, transform .25s ease, visibility .25s;
  }
  .main-nav.is-open { visibility: visible; opacity: 1; transform: none; }
  .main-nav a { width: 100%; padding: 18px 0; border-bottom: 1px solid var(--line); font-family: var(--serif); font-size: 31px; }
  .main-nav a::after { display: none; }
  .signal-grid { grid-template-columns: 1fr; }
  .signal-grid > div { min-height: 86px; padding: 0; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.12); }
  .signal-grid > div:last-child { border-bottom: 0; }
  .intro-grid, .section-heading, .process-grid, .perspective-inner, .faq-grid { grid-template-columns: 1fr; gap: 45px; }
  .facet-grid { grid-template-columns: 1fr 1fr; }
  .process-sticky { position: static; }
  .plan-grid { grid-template-columns: 1fr; }
  .perspective blockquote, .perspective-note { grid-column: 1; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-top > a:last-child { justify-self: end; }
}

@media (max-width: 600px) {
  :root { --shell: calc(100% - 36px); }
  .section { padding: 86px 0; }
  .site-header { background: linear-gradient(180deg, rgba(8,8,7,.54), transparent); }
  .site-header.is-scrolled { background: rgba(243, 240, 233, .92); }
  .brand { font-size: 9px; }
  .brand-mark { width: 27px; height: 27px; }
  .hero { height: auto; min-height: 810px; max-height: none; }
  .hero-image { background-position: 63% center; }
  .hero-shade { background: linear-gradient(90deg, rgba(12,11,9,.86) 0%, rgba(12,11,9,.5) 100%), linear-gradient(0deg, rgba(12,11,9,.72), transparent 60%); }
  .hero-inner { align-items: end; padding: 140px 0 76px; }
  .hero h1 { font-size: clamp(50px, 13.5vw, 56px); line-height: .96; }
  .title-desktop { display: none; }
  .title-mobile { display: inline; }
  .hero-lead { margin-top: 28px; font-size: 15px; }
  .hero-actions { align-items: stretch; flex-direction: column; gap: 18px; margin-top: 32px; }
  .button { width: 100%; justify-content: space-between; }
  .text-link { width: max-content; }
  .hero-index { display: none; }
  .eyebrow, .section-label { margin-bottom: 20px; }
  .intro-copy h2, .section-heading h2, .process h2, .plans h2, .faq h2 { font-size: 45px; }
  .intro-copy p { margin-top: 28px; font-size: 16px; }
  .section-heading { margin-bottom: 48px; }
  .facet-grid { grid-template-columns: 1fr; }
  .facet-card { min-height: 345px; }
  .facet-glyph { width: 84px; height: 84px; margin: 34px auto 38px; }
  .facet-glyph::before { height: 106px; }
  .facet-glyph::after { width: 106px; }
  .glyph-five { width: 98px; height: 66px; }
  .steps li { grid-template-columns: 47px 1fr; gap: 18px; }
  .steps > li > span { font-size: 29px; }
  .steps h3 { font-size: 26px; }
  .plan-card { min-height: auto; padding: 32px 24px; }
  .plan-ribbon { position: static; width: max-content; max-width: 100%; margin: -32px -24px 35px auto; }
  .plan-top { flex-direction: column; }
  .price span { font-size: 45px; }
  .perspective blockquote { font-size: 39px; }
  .perspective-note { grid-template-columns: 36px 1fr; }
  .faq-list summary { font-size: 21px; }
  .closing { min-height: 650px; }
  .closing h2 { font-size: 58px; }
  .closing-orbit { width: 590px; height: 590px; }
  .footer-top, .footer-bottom { grid-template-columns: 1fr; gap: 35px; }
  .footer-top > a:last-child { justify-self: start; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
