:root {
  --dawn: #fbf6ec;
  --paper: #fffdf8;
  --parchment: #f4ecdb;
  --ink: #241a12;
  --muted: #6a5741;
  --faint: #958168;
  --gold: #b8862f;
  --blue: #2a6f8a;
  --line: rgba(94, 67, 37, 0.2);
  --display: "Cormorant Garamond",Georgia,serif;
  --mono: "JetBrains Mono",monospace;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: linear-gradient(
    180deg,
    var(--dawn),
    var(--paper) 50%,
    var(--parchment)
  );
  color: var(--ink);
  font: 20px/1.58 var(--display);
}
img {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
}
.skip-link {
  position: fixed;
  top: 12px;
  left: 16px;
  z-index: 50;
  transform: translateY(-160%);
  background: var(--ink);
  color: #fff;
  padding: 9px 14px;
}
.skip-link:focus {
  transform: none;
}
.site-header {
  min-height: 76px;
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 0 max(26px, calc((100vw - 1240px) / 2));
  background: rgba(255, 253, 248, 0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 20;
}
.brand {
  display: flex;
  gap: 10px;
  align-items: center;
  text-decoration: none;
  font: 500 12px/1 var(--mono);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
}
.brand-glyph {
  color: var(--blue);
  font-size: 18px;
}
.primary-nav {
  display: flex;
  gap: 26px;
  margin-left: auto;
}
.primary-nav a, .site-footer nav a {
  font: 500 12px/1.4 var(--mono);
  letter-spacing: 0.06em;
  text-decoration: none;
  color: var(--muted);
}
.primary-nav a:hover,
.primary-nav a[aria-current="page"],
.site-footer a:hover {
  color: var(--blue);
}
.nav-cta {
  font: 500 11px/1 var(--mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 10px 13px;
  border: 1px solid rgba(184, 134, 47, 0.45);
}
.home-hero {
  min-height: calc(100vh - 76px);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.home-hero-art {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.home-hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(251, 246, 236, 0.97),
    rgba(251, 246, 236, 0.83) 35%,
    rgba(251, 246, 236, 0.16) 66%,
    transparent
  );
}
.home-hero-copy {
  position: relative;
  width: min(1240px, calc(100% - 52px));
  margin: 0 auto;
  padding: 90px 0;
}
.home-hero-copy > * {
  max-width: 640px;
}
.eyebrow {
  font: 500 11px/1.4 var(--mono);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 22px;
}
.home-hero h1, .page-hero h1 {
  font-size: clamp(58px, 7.5vw, 112px);
  line-height: 0.87;
  letter-spacing: -0.025em;
  font-weight: 500;
  text-wrap: balance;
  margin: 0 0 30px;
}
.hero-lede {
  font-size: clamp(24px, 2.2vw, 34px);
  line-height: 1.34;
  color: #4b3928;
  margin: 0 0 34px;
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 11px 18px;
  text-decoration: none;
  font: 500 11px/1 var(--mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.button-primary {
  background: var(--ink);
  color: #fff;
}
.button-quiet {
  border: 1px solid rgba(36, 26, 18, 0.3);
  background: rgba(255, 253, 248, 0.64);
}
.section-shell {
  width: min(1120px, calc(100% - 52px));
  margin: 0 auto;
  padding: 110px 0;
}
.intro {
  max-width: 910px;
  text-align: center;
}
.intro h2, .split-section h2, .waitlist-card h2, .content-section h2 {
  font-size: clamp(42px, 5.4vw, 72px);
  line-height: 1.02;
  font-weight: 500;
  letter-spacing: -0.02em;
  margin: 0 0 24px;
  text-wrap: balance;
}
.intro > p:last-child,
.split-section p,
.waitlist-card > p,
.content-section > p {
  color: var(--muted);
  font-size: 23px;
}
.principles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.principles article {
  padding: 18px 36px 28px;
  border-right: 1px solid var(--line);
}
.principles article:first-child {
  padding-left: 0;
}
.principles article:last-child {
  border-right: 0;
  padding-right: 0;
}
.principles span {
  font: 500 11px var(--mono);
  color: var(--gold);
}
.principles h2 {
  font-size: 40px;
  font-weight: 500;
  margin: 38px 0 10px;
}
.principles p {
  color: var(--muted);
  margin: 0;
}
.split-section {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 80px;
}
.text-link {
  display: inline-flex;
  gap: 8px;
  margin-top: 24px;
  color: var(--blue);
  font: 500 12px var(--mono);
  letter-spacing: 0.06em;
  text-underline-offset: 5px;
}
.waitlist-card {
  border: 1px solid var(--line);
  background: linear-gradient(145deg, var(--paper), #eee3ca);
  padding: clamp(34px, 6vw, 72px);
  text-align: center;
}
.waitlist-card > * {
  max-width: 740px;
  margin-left: auto;
  margin-right: auto;
}
.waitlist-form {
  text-align: left;
  margin-top: 36px;
}
.waitlist-form label {
  display: block;
  font: 500 11px var(--mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 9px;
}
.form-row {
  display: flex;
  border-bottom: 1px solid var(--gold);
}
.form-row input {
  flex: 1;
  min-width: 0;
  border: 0;
  background: transparent;
  padding: 14px 4px;
  font: 22px var(--display);
  color: var(--ink);
}
.form-row button {
  border: 0;
  background: transparent;
  color: var(--blue);
  font: 500 11px var(--mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}
.form-help, .form-status {
  font: 400 11px/1.6 var(--mono);
  color: var(--faint);
  margin: 12px 0 0;
}
.form-status {
  font-weight: 500;
  color: var(--gold);
  min-height: 19px;
}
.site-footer {
  width: min(1120px, calc(100% - 52px));
  margin: 0 auto;
  padding: 56px 0 70px;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
}
.site-footer p {
  font-size: 17px;
  color: var(--muted);
  max-width: 390px;
}
.site-footer nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.page-hero {
  width: min(1120px, calc(100% - 52px));
  margin: 0 auto;
  padding: 110px 0 76px;
}
.page-hero h1 {
  max-width: 920px;
}
.page-hero p:last-child {
  font-size: 24px;
  color: var(--muted);
  max-width: 760px;
}
.editorial-image {
  width: min(1220px, calc(100% - 52px));
  margin: 0 auto;
}
.editorial-image img {
  width: 100%;
}
.content-section {
  width: min(900px, calc(100% - 52px));
  margin: 0 auto;
  padding: 84px 0;
}
.content-section + .content-section {
  border-top: 1px solid var(--line);
}
.content-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 38px;
}
.content-card {
  border: 1px solid var(--line);
  padding: 30px;
  background: rgba(255, 253, 248, 0.68);
}
.content-card h2, .content-card h3 {
  font-size: 32px;
  font-weight: 500;
  line-height: 1.1;
  margin: 0 0 12px;
}
.content-card p {
  color: var(--muted);
  margin: 0;
}
.journal-card {
  display: block;
  text-decoration: none;
  border-top: 1px solid var(--line);
  padding: 28px 0;
}
.journal-card time {
  font: 500 11px var(--mono);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}
.journal-card h2 {
  font-size: 42px;
  margin: 10px 0;
}
.journal-card p {
  color: var(--muted);
  margin: 0;
}
.article-shell {
  width: min(760px, calc(100% - 52px));
  margin: 0 auto;
  padding: 100px 0;
}
.article-shell h1 {
  font-size: clamp(58px, 7vw, 88px);
  line-height: 0.94;
  font-weight: 500;
}
.article-shell h2 {
  font-size: 38px;
  line-height: 1.1;
  font-weight: 500;
  margin-top: 54px;
}
.article-shell p, .article-shell li {
  font-size: 22px;
  color: #4c3928;
}
.article-meta {
  font: 500 11px var(--mono) !important;
  color: var(--gold) !important;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.article-note {
  border-left: 3px solid var(--gold);
  padding: 22px 26px;
  background: #f6ecda;
}
@media (max-width: 820px) {
  .site-header {
    height: auto;
    flex-wrap: wrap;
    padding: 16px 24px;
  }
  .primary-nav {
    order: 3;
    width: 100%;
    overflow: auto;
  }
  .nav-cta {
    margin-left: auto;
  }
  .home-hero {
    min-height: 760px;
  }
  .home-hero-art {
    object-position: 36% center;
  }
  .home-hero-shade {
    background: linear-gradient(
      180deg,
      rgba(251, 246, 236, 0.2),
      rgba(251, 246, 236, 0.9) 55%,
      rgba(251, 246, 236, 0.98)
    );
  }
  .home-hero-copy {
    align-self: flex-end;
    padding-bottom: 70px;
  }
  .principles {
    grid-template-columns: 1fr;
  }
  .principles article,
  .principles article:first-child,
  .principles article:last-child {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 30px 0;
  }
  .principles article:last-child {
    border-bottom: 0;
  }
  .split-section {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .site-footer {
    grid-template-columns: 1fr 1fr;
  }
  .site-footer > div {
    grid-column: 1/-1;
  }
  .content-grid {
    grid-template-columns: 1fr;
  }
  .section-shell {
    padding: 82px 0;
  }
}
@media (max-width: 540px) {
  body {
    font-size: 18px;
  }
  .site-header {
    padding: 14px 16px;
    gap: 14px;
  }
  .brand {
    font-size: 10px;
  }
  .primary-nav {
    gap: 18px;
  }
  .primary-nav a {
    font-size: 10px;
  }
  .nav-cta {
    font-size: 9px;
  }
  .home-hero-copy,
  .section-shell,
  .page-hero,
  .editorial-image,
  .content-section,
  .site-footer,
  .article-shell {
    width: min(100% - 32px, 1120px);
  }
  .home-hero h1 {
    font-size: 56px;
  }
  .hero-actions {
    flex-direction: column;
  }
  .form-row {
    flex-direction: column;
    padding-bottom: 10px;
  }
  .form-row button {
    padding: 12px 4px;
    text-align: left;
  }
  .site-footer {
    grid-template-columns: 1fr;
  }
  .site-footer > div {
    grid-column: auto;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *, *:before, *:after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
}
