:root {
  color-scheme: dark;
  --ink: #0c0d0c;
  --surface: #171816;
  --raised: #20211e;
  --ivory: #f6f1e8;
  --pewter: #aaa9a2;
  --champagne: #d8b878;
  --line: #33342e;
  --serif: Georgia, "Times New Roman", serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}
body {
  margin: 0;
  background: var(--ink);
  color: var(--ivory);
  font:
    16px/1.65 -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  -webkit-font-smoothing: antialiased;
}
a {
  color: inherit;
  text-underline-offset: 5px;
}
a:hover {
  color: var(--champagne);
}
a:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--champagne);
  outline-offset: 6px;
  border-radius: 3px;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
p {
  margin: 0 0 1.2em;
}
h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.08;
  margin: 0;
  letter-spacing: -0.035em;
}
h1 {
  font-size: clamp(52px, 6.1vw, 88px);
}
h2 {
  font-size: clamp(39px, 4.2vw, 62px);
}
h3 {
  font-size: 29px;
  letter-spacing: -0.02em;
}
em {
  font-weight: 400;
  color: var(--champagne);
}
.wrap {
  width: min(1200px, calc(100% - 96px));
  margin-inline: auto;
}
.muted {
  color: var(--pewter);
}
.small {
  font-size: 12px;
  line-height: 1.6;
}
.eyebrow {
  color: var(--champagne);
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  margin-bottom: 25px;
}
.draft-banner {
  padding: 8px 20px;
  background: #27251d;
  border-bottom: 1px solid #4b4230;
  text-align: center;
  color: #e4d6b7;
  font-size: 11px;
  letter-spacing: 0.045em;
}
.site-header {
  border-bottom: 1px solid var(--line);
}
.header-inner {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 13px;
  text-decoration: none;
  font-size: 22px;
  font-family: var(--serif);
  letter-spacing: 0.12em;
}
.brand img {
  width: 36px;
}
.brand small {
  font-family: system-ui, sans-serif;
  font-size: 9px;
  letter-spacing: 0.14em;
  margin-left: 4px;
  color: var(--champagne);
}
nav {
  display: flex;
  align-items: center;
  gap: 32px;
  font-size: 13px;
}
nav a {
  text-decoration: none;
  padding: 12px 0;
}
nav a[aria-current="page"] {
  color: var(--champagne);
}
.nav-status {
  border: 1px solid #514934;
  border-radius: 30px;
  color: var(--champagne);
  font-size: 11px;
  padding: 9px 17px;
}
.skip-link {
  position: fixed;
  left: 20px;
  top: -100px;
  z-index: 20;
  background: var(--ivory);
  color: var(--ink);
  padding: 12px 20px;
}
.skip-link:focus {
  top: 12px;
  color: var(--ink);
}
.hero {
  min-height: 690px;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  align-items: center;
  padding-block: 82px;
  gap: 20px;
}
.hero h1 {
  margin-bottom: 27px;
}
.lead {
  font-size: 22px;
  line-height: 1.5;
  letter-spacing: -0.015em;
}
.hero-description {
  max-width: 400px;
  color: var(--pewter);
  font-size: 15px;
}
.button {
  margin-top: 10px;
  display: inline-flex;
  align-items: center;
  gap: 55px;
  padding: 14px 21px;
  border-radius: 9px;
  color: var(--ink);
  background: var(--champagne);
  font-weight: 600;
  font-size: 13px;
  text-decoration: none;
}
.button:hover {
  background: #e7c98d;
  color: var(--ink);
}
.launch-note {
  margin: 18px 0 0;
}
.status-dot {
  display: inline-block;
  width: 5px;
  height: 5px;
  background: var(--champagne);
  border-radius: 50%;
  margin: 0 8px 2px 0;
}
.hero-art {
  position: relative;
  min-height: 475px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-seal {
  width: 77%;
  filter: drop-shadow(0 25px 24px #000);
  position: relative;
  z-index: 1;
}
.seal-orbit {
  position: absolute;
  width: 97%;
  aspect-ratio: 1;
  border: 1px solid #363024;
  border-radius: 50%;
  background: radial-gradient(ellipse, #342b164d, transparent 65%);
}
.seal-orbit::before,
.seal-orbit::after {
  content: "";
  position: absolute;
  inset: 25px;
  border: 1px solid #27251d;
  border-radius: 50%;
}
.seal-orbit::after {
  inset: 55px;
}
.artifact-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  text-align: center;
  color: var(--champagne);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.artifact-label span {
  display: block;
  letter-spacing: 0.09em;
  color: var(--pewter);
  font-size: 9px;
  margin-top: 5px;
}
.chapter-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 25px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--pewter);
}
.chapter-strip span:nth-child(even) {
  color: var(--champagne);
  font-size: 20px;
}
.section {
  padding-block: 112px;
}
.section-heading {
  max-width: 660px;
  margin-bottom: 53px;
}
.section-heading h2 {
  margin-bottom: 25px;
}
.section-heading > p:last-child {
  color: var(--pewter);
  max-width: 490px;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
}
.feature {
  border-top: 1px solid #5b5039;
  padding: 25px 0 0;
}
.feature-number {
  display: block;
  font-family: var(--serif);
  font-size: 16px;
  color: var(--champagne);
  margin-bottom: 26px;
}
.feature h3 {
  max-width: 260px;
  margin-bottom: 18px;
}
.feature p {
  color: var(--pewter);
  font-size: 14px;
}
.feature a {
  font-size: 12px;
  color: var(--champagne);
}
.showcase-section {
  background: var(--surface);
  border-block: 1px solid var(--line);
}
.room-layout {
  display: grid;
  grid-template-columns: 0.83fr 1.17fr;
  align-items: center;
  gap: 70px;
}
.section-description {
  font-size: 18px;
  margin-top: 27px;
}
.room-layout .muted,
.mementos-layout .muted {
  font-size: 14px;
}
.native-preview {
  margin: 0;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid #39372e;
  background: var(--ink);
  box-shadow: 0 30px 60px #0003;
}
.native-preview img {
  width: 100%;
}
.native-preview figcaption {
  padding: 17px 18px;
  color: var(--pewter);
  font-size: 10px;
  text-align: center;
  border-top: 1px solid var(--line);
}
.mementos-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 95px;
}
.memento-art {
  position: relative;
}
.memento-art img {
  border-radius: 50%;
  border: 1px solid #3c3525;
}
.art-caption {
  display: block;
  text-align: center;
  font-size: 10px;
  color: var(--pewter);
  margin-top: 22px;
  letter-spacing: 0.03em;
}
.quiet-callout {
  font-family: var(--serif);
  font-size: 24px;
  color: var(--champagne);
  border-top: 1px solid var(--line);
  margin-top: 32px;
  padding-top: 25px;
}
.plans {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.plan {
  padding: 38px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 20px;
}
.plan h3 {
  font-size: 26px;
}
.plan-price {
  font-family: var(--serif);
  font-size: 44px;
  line-height: 1.2;
  margin: 28px 0 0;
}
.plan-price span {
  font-family: system-ui, sans-serif;
  font-size: 13px;
  color: var(--pewter);
}
.annual {
  font-size: 13px;
  color: var(--champagne);
  margin: 8px 0 0;
}
.plan ul {
  padding: 0;
  margin: 29px 0 0;
  list-style: none;
}
.plan li {
  border-top: 1px solid var(--line);
  padding: 12px 0;
  color: #cfcec6;
  font-size: 13px;
}
.plan li::before {
  content: "✧";
  color: var(--champagne);
  margin-right: 10px;
}
.pro-plan {
  border-color: #6c5a35;
  background: linear-gradient(140deg, #28251a, var(--surface) 55%);
}
.pro-badge {
  font-family: system-ui, sans-serif;
  color: var(--ink);
  background: var(--champagne);
  font-size: 9px;
  padding: 3px 5px;
  border-radius: 4px;
  letter-spacing: 0.04em;
  vertical-align: middle;
}
.plan-notes {
  margin-top: 25px;
  max-width: 920px;
  color: var(--pewter);
  font-size: 12px;
}
.closing {
  text-align: center;
  padding: 65px 0 115px;
  border-top: 1px solid var(--line);
}
.closing img {
  margin: 0 auto 25px;
}
.closing h2 {
  margin-bottom: 25px;
}
.closing > p:not(.eyebrow) {
  font-size: 15px;
  color: var(--pewter);
}
.text-link {
  color: var(--champagne);
  font-size: 13px;
}
.site-footer {
  border-top: 1px solid var(--line);
  padding: 45px 0 30px;
}
.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 32px;
}
.footer-links {
  display: flex;
  gap: 26px;
  font-size: 12px;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  color: var(--pewter);
  font-size: 10px;
}
.footer-bottom p {
  max-width: 560px;
}
.policy-hero {
  padding: 70px 0 45px;
  border-bottom: 1px solid var(--line);
}
.policy-hero h1 {
  font-size: 64px;
  margin-bottom: 22px;
}
.policy-hero .lead {
  font-size: 18px;
  max-width: 670px;
  color: var(--pewter);
}
.policy-layout {
  display: grid;
  grid-template-columns: 230px minmax(0, 720px);
  gap: 75px;
  padding-block: 55px 90px;
}
.policy-index {
  align-self: start;
  position: sticky;
  top: 30px;
}
.policy-index p {
  font-size: 10px;
  letter-spacing: 0.16em;
  color: var(--champagne);
  text-transform: uppercase;
}
.policy-index a {
  display: block;
  font-size: 12px;
  text-decoration: none;
  padding: 7px 0;
  color: var(--pewter);
}
.prose {
  min-width: 0;
}
.prose section {
  margin: 0 0 43px;
  scroll-margin-top: 30px;
}
.prose h2 {
  font-size: 32px;
  margin-bottom: 18px;
  letter-spacing: -0.02em;
}
.prose h3 {
  font-size: 23px;
  margin: 24px 0 12px;
}
.prose p,
.prose li {
  font-size: 15px;
  color: #cfcec6;
}
.prose ul,
.prose ol {
  padding-left: 23px;
}
.prose li {
  padding-left: 5px;
  margin-bottom: 9px;
}
.prose a {
  color: var(--champagne);
}
.draft-note {
  border: 1px solid #695936;
  border-radius: 12px;
  padding: 20px 24px;
  background: #28251c;
  margin-bottom: 38px;
}
.draft-note p {
  font-size: 13px;
  margin: 0;
}
.draft-note strong {
  color: var(--champagne);
}
.prose details {
  border-block-start: 1px solid var(--line);
  padding: 20px 0;
}
.prose summary {
  cursor: pointer;
  font-size: 17px;
  line-height: 1.45;
}
.prose details p {
  margin: 16px 0 0;
}
.not-found {
  text-align: center;
  padding: 100px 0 150px;
}
.not-found h1 {
  margin-bottom: 30px;
}
.not-found p {
  color: var(--pewter);
}
@media (min-width: 1450px) {
  .hero {
    min-height: 755px;
  }
}
@media (max-width: 1000px) {
  .wrap {
    width: calc(100% - 56px);
  }
  .hero {
    min-height: 610px;
  }
  .hero-art {
    min-height: 360px;
  }
  .hero h1 {
    font-size: 57px;
  }
  .room-layout {
    gap: 35px;
  }
  .mementos-layout {
    gap: 45px;
  }
  .policy-layout {
    gap: 35px;
    grid-template-columns: 190px minmax(0, 1fr);
  }
  .brand {
    font-size: 19px;
  }
  nav {
    gap: 20px;
  }
  .section {
    padding-block: 85px;
  }
  .feature-grid {
    gap: 25px;
  }
}
@media (max-width: 700px) {
  html {
    scroll-padding-top: 25px;
  }
  .wrap {
    width: calc(100% - 40px);
  }
  .draft-banner {
    font-size: 10px;
    padding: 7px 12px;
  }
  .header-inner {
    min-height: 78px;
    gap: 14px;
    flex-wrap: wrap;
    padding: 19px 0;
  }
  .brand {
    font-size: 18px;
    gap: 8px;
  }
  .brand img {
    width: 29px;
  }
  .brand small {
    font-size: 8px;
  }
  nav {
    gap: 18px;
    font-size: 12px;
  }
  .nav-status {
    display: none;
  }
  .hero {
    grid-template-columns: 1fr;
    padding-top: 54px;
    padding-bottom: 35px;
    gap: 35px;
  }
  .hero h1 {
    font-size: clamp(46px, 10.8vw, 72px);
  }
  .hero-copy {
    max-width: 540px;
  }
  .lead {
    font-size: 20px;
  }
  .hero-art {
    min-height: 350px;
    max-width: 380px;
    width: 100%;
    margin: auto;
  }
  .hero-seal {
    width: 70%;
  }
  .seal-orbit {
    width: 87%;
  }
  .artifact-label {
    bottom: -3px;
  }
  .chapter-strip {
    font-size: 8px;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
  }
  .chapter-strip span:nth-child(4),
  .chapter-strip span:nth-child(5) {
    display: none;
  }
  .section {
    padding-block: 65px;
  }
  .section-heading {
    margin-bottom: 38px;
  }
  .feature-grid,
  .room-layout,
  .mementos-layout,
  .plans {
    grid-template-columns: 1fr;
  }
  .feature-grid {
    gap: 34px;
  }
  .feature h3 {
    max-width: none;
  }
  .feature-number {
    margin-bottom: 13px;
  }
  .feature p {
    max-width: 480px;
  }
  .room-layout {
    gap: 30px;
  }
  .native-preview {
    border-radius: 15px;
  }
  .mementos-layout {
    gap: 45px;
  }
  .memento-art {
    max-width: 360px;
    margin: auto;
  }
  .plan {
    padding: 27px;
  }
  .plan h3 {
    font-size: 25px;
  }
  .footer-top,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 22px;
  }
  .footer-links {
    gap: 24px;
  }
  .footer-bottom {
    gap: 0;
  }
  .closing {
    padding: 50px 0 70px;
  }
  .policy-hero {
    padding: 48px 0 30px;
  }
  .policy-hero h1 {
    font-size: 47px;
  }
  .policy-layout {
    grid-template-columns: 1fr;
    gap: 30px;
    padding-block: 30px 60px;
  }
  .policy-index {
    position: static;
    border-bottom: 1px solid var(--line);
    padding-bottom: 20px;
  }
  .policy-index a {
    display: inline-block;
    margin-right: 19px;
  }
  .policy-index p {
    margin-bottom: 8px;
  }
  .prose h2 {
    font-size: 29px;
  }
  .prose p,
  .prose li {
    font-size: 15px;
  }
  .draft-note {
    padding: 18px;
  }
  .eyebrow {
    font-size: 10px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
@media print {
  body {
    color: #111;
    background: white;
  }
  .draft-banner,
  .site-header,
  .site-footer,
  .policy-index {
    display: none;
  }
  .wrap {
    width: 100%;
  }
  .policy-layout {
    display: block;
  }
  .prose p,
  .prose li,
  .policy-hero .lead {
    color: #111;
  }
  .prose a {
    color: #333;
  }
  .draft-note {
    background: white;
  }
  .prose section {
    break-inside: avoid;
  }
}
