:root {
  --cream: #fff7ea;
  --paper: #fffdf8;
  --sand: #fdeccd;
  --ink: #3a2a18;
  --muted: #6e553c;
  --faint: #9a8269;
  --honey: #e39a20;
  --honey-deep: #b66d10;
  --ember: #e8743a;
  --leaf: #4f9a5b;
  --sky: #4c91a8;
  --line: rgba(128, 86, 34, 0.18);
  --shadow: 0 24px 70px rgba(112, 70, 22, 0.13);
  --display: "Fraunces",Georgia,serif;
  --body: "Nunito Sans",system-ui,sans-serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: linear-gradient(180deg, var(--cream), var(--paper) 54%, #fff4dc);
  color: var(--ink);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.65;
}
img {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
}
.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 50;
  transform: translateY(-160%);
  background: var(--ink);
  color: #fff;
  padding: 10px 16px;
  border-radius: 8px;
}
.skip-link:focus {
  transform: none;
}
.site-header {
  height: 78px;
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 0 max(24px, calc((100vw - 1240px) / 2));
  background: rgba(255, 253, 248, 0.93);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 20;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0.01em;
  white-space: nowrap;
}
.brand-mark {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: radial-gradient(
    circle at 35% 35%,
    #fff4b9 0 18%,
    #f0b340 40%,
    #db792c 78%
  );
  box-shadow: 0 0 18px rgba(227, 154, 32, 0.55);
}
.primary-nav {
  display: flex;
  gap: 24px;
  margin-left: auto;
}
.primary-nav a, .site-footer nav a {
  font-size: 14px;
  font-weight: 700;
  color: var(--muted);
  text-decoration: none;
}
.primary-nav a:hover,
.primary-nav a[aria-current="page"],
.site-footer a:hover {
  color: var(--honey-deep);
}
.nav-cta {
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  border: 1px solid rgba(182, 109, 16, 0.38);
  padding: 9px 14px;
  border-radius: 10px;
  color: var(--honey-deep);
}
.home-hero {
  min-height: calc(100vh - 78px);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--sand);
}
.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(255, 249, 235, 0.98) 0%,
    rgba(255, 249, 235, 0.91) 31%,
    rgba(255, 249, 235, 0.34) 57%,
    rgba(255, 249, 235, 0.06) 100%
  );
}
.home-hero-copy {
  position: relative;
  width: min(1240px, calc(100% - 48px));
  margin: 0 auto;
  padding: 80px 0;
}
.home-hero-copy > * {
  max-width: 590px;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 12px;
  font-weight: 800;
  color: var(--honey-deep);
  margin: 0 0 18px;
}
.home-hero h1, .page-hero h1 {
  font-family: var(--display);
  font-size: clamp(54px, 7vw, 104px);
  line-height: 0.96;
  letter-spacing: -0.045em;
  margin: 0 0 26px;
  text-wrap: balance;
}
.hero-lede {
  font-family: var(--display);
  font-size: clamp(22px, 2.2vw, 31px);
  line-height: 1.35;
  color: #4e3820;
  margin: 0 0 34px;
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 11px 20px;
  border-radius: 12px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 800;
}
.button-primary {
  background: linear-gradient(135deg, #f4c05e, var(--honey));
  color: #3b2608;
  box-shadow: 0 12px 28px rgba(181, 109, 14, 0.25);
}
.button-quiet {
  background: rgba(255, 253, 248, 0.78);
  border: 1px solid rgba(87, 54, 20, 0.2);
}
.button:hover {
  transform: translateY(-1px);
}
.section-shell {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 110px 0;
}
.section-heading {
  max-width: 760px;
  margin-bottom: 44px;
}
.section-heading.compact {
  margin-bottom: 34px;
}
.section-heading h2,
.image-story h2,
.family-band h2,
.waitlist-card h2,
.content-section h2 {
  font-family: var(--display);
  font-size: clamp(38px, 5vw, 66px);
  line-height: 1.05;
  letter-spacing: -0.035em;
  margin: 0 0 20px;
  text-wrap: balance;
}
.section-heading > p:last-child,
.image-story-copy > p,
.family-band p,
.waitlist-card > p {
  font-size: 19px;
  color: var(--muted);
  margin: 0;
}
.feature-grid, .world-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.feature-card, .world-card {
  border: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.75);
  padding: 30px;
  border-radius: 24px;
  box-shadow: 0 10px 30px rgba(112, 70, 22, 0.06);
}
.feature-number {
  display: block;
  color: var(--honey-deep);
  font-family: var(--display);
  font-weight: 700;
  margin-bottom: 44px;
}
.feature-card h3, .world-card h3, .content-card h3 {
  font-family: var(--display);
  font-size: 27px;
  line-height: 1.15;
  margin: 0 0 12px;
}
.feature-card p, .world-card p, .content-card p {
  color: var(--muted);
  margin: 0;
}
.image-story {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  gap: 64px;
  align-items: center;
}
.image-story-media img, .editorial-image img {
  border-radius: 30px;
  box-shadow: var(--shadow);
  width: 100%;
}
.text-link {
  display: inline-flex;
  gap: 8px;
  margin-top: 24px;
  font-weight: 800;
  color: var(--honey-deep);
  text-underline-offset: 5px;
}
.world-card {
  min-height: 310px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
}
.world-card:before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 80% 15%,
    rgba(255, 255, 255, 0.7),
    transparent 35%
  );
  pointer-events: none;
}
.world-card-honey {
  background: linear-gradient(145deg, #fff9e9, #f6d999);
}
.world-card-leaf {
  background: linear-gradient(145deg, #fbf9e9, #cde6c2);
}
.world-card-sky {
  background: linear-gradient(145deg, #fff9e9, #c9e4e8);
}
.world-kicker {
  font-size: 12px !important;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 800;
  color: var(--honey-deep) !important;
  margin-bottom: 10px !important;
}
.development-note {
  font-size: 13px;
  color: var(--faint);
  margin: 18px 0 0;
}
.family-band {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 80px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.waitlist-section {
  padding-top: 90px;
}
.waitlist-card {
  background: linear-gradient(145deg, #fffdf8, #f8e2b2);
  border: 1px solid rgba(182, 109, 16, 0.22);
  border-radius: 32px;
  padding: clamp(34px, 6vw, 70px);
  box-shadow: var(--shadow);
  text-align: center;
}
.waitlist-card > * {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}
.waitlist-form {
  margin-top: 34px;
  text-align: left;
}
.waitlist-form label {
  display: block;
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 8px;
}
.form-row {
  display: flex;
  gap: 10px;
}
.form-row input {
  flex: 1;
  min-width: 0;
  border: 1px solid rgba(87, 54, 20, 0.25);
  background: #fff;
  padding: 14px 16px;
  border-radius: 12px;
  font: inherit;
  color: var(--ink);
}
.form-row button {
  border: 0;
  border-radius: 12px;
  background: var(--ink);
  color: #fff;
  font: 800 15px var(--body);
  padding: 12px 20px;
  cursor: pointer;
}
.form-row input:focus,
.form-row button:focus-visible,
.button:focus-visible,
.nav-cta:focus-visible,
.primary-nav a:focus-visible,
.text-link:focus-visible {
  outline: 3px solid #efb44a;
  outline-offset: 3px;
}
.form-help, .form-status {
  font-size: 13px;
  color: var(--muted);
  margin: 10px 0 0;
}
.form-status {
  font-weight: 800;
  min-height: 22px;
}
.site-footer {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 54px 0 70px;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 36px;
}
.site-footer p {
  font-size: 14px;
  color: var(--muted);
  max-width: 360px;
}
.site-footer nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-brand {
  margin-bottom: 8px;
}
.page-hero {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 100px 0 74px;
}
.page-hero p:last-child {
  max-width: 780px;
  font-size: 21px;
  color: var(--muted);
}
.page-hero h1 {
  font-size: clamp(50px, 7vw, 94px);
  max-width: 900px;
}
.content-section {
  width: min(980px, calc(100% - 48px));
  margin: 0 auto;
  padding: 80px 0;
}
.content-section + .content-section {
  border-top: 1px solid var(--line);
}
.content-section h2 {
  font-size: clamp(36px, 4.5vw, 56px);
}
.content-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 34px;
}
.content-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 253, 248, 0.74);
}
.content-card h3 {
  font-size: 24px;
}
.step-list {
  counter-reset: steps;
  display: grid;
  gap: 18px;
  margin: 36px 0 0;
  padding: 0;
  list-style: none;
}
.step-list li {
  counter-increment: steps;
  padding: 26px 28px 26px 78px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--paper);
  position: relative;
}
.step-list li:before {
  content: counter(steps, decimal-leading-zero);
  position: absolute;
  left: 26px;
  top: 25px;
  font: 700 18px var(--display);
  color: var(--honey-deep);
}
.step-list h3 {
  font: 600 25px var(--display);
  margin: 0 0 8px;
}
.step-list p {
  color: var(--muted);
  margin: 0;
}
.editorial-image {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}
.world-showcase {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  gap: 92px;
  padding-bottom: 100px;
}
.world-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
  gap: 52px;
  align-items: center;
}
.world-feature-reverse img {
  order: 2;
}
.world-feature img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: var(--shadow);
}
.world-feature h2 {
  font: 600 clamp(36px, 4.5vw, 58px)/1.04 var(--display);
  letter-spacing: -0.035em;
  margin: 0 0 18px;
}
.world-feature p:not(.eyebrow) {
  color: var(--muted);
}
.landmark-line {
  padding-top: 16px;
  border-top: 1px solid var(--line);
  font-size: 15px;
}
.journal-list {
  display: grid;
  gap: 18px;
  margin-top: 36px;
}
.journal-card {
  display: block;
  text-decoration: none;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 30px;
  background: var(--paper);
}
.journal-card time {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--honey-deep);
  font-weight: 800;
}
.journal-card h2 {
  font-size: 34px;
  margin: 12px 0;
}
.journal-card p {
  color: var(--muted);
  margin: 0;
}
.article-shell {
  width: min(760px, calc(100% - 48px));
  margin: 0 auto;
  padding: 90px 0;
}
.article-shell h1 {
  font: 600 clamp(48px, 7vw, 78px)/1.02 var(--display);
  letter-spacing: -0.035em;
}
.article-shell h2 {
  font: 600 34px/1.15 var(--display);
  margin-top: 52px;
}
.article-shell p, .article-shell li {
  color: #513d29;
  font-size: 19px;
}
.article-meta {
  font-size: 13px !important;
  color: var(--honey-deep) !important;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 800;
}
.article-note {
  padding: 24px 28px;
  border-left: 4px solid var(--honey);
  background: #fff7e5;
  border-radius: 0 18px 18px 0;
}
@media (max-width: 860px) {
  .site-header {
    height: auto;
    min-height: 72px;
    flex-wrap: wrap;
    padding: 16px 24px;
    gap: 14px;
  }
  .primary-nav {
    order: 3;
    width: 100%;
    overflow: auto;
    gap: 20px;
    padding: 4px 0;
  }
  .nav-cta {
    margin-left: auto;
  }
  .home-hero {
    min-height: 760px;
  }
  .home-hero-shade {
    background: linear-gradient(
      180deg,
      rgba(255, 249, 235, 0.42),
      rgba(255, 249, 235, 0.93) 56%,
      rgba(255, 249, 235, 0.98)
    );
  }
  .home-hero-art {
    object-position: 68% center;
  }
  .home-hero-copy {
    align-self: flex-end;
    padding-bottom: 64px;
  }
  .feature-grid, .world-grid, .content-grid {
    grid-template-columns: 1fr;
  }
  .image-story, .family-band, .world-feature {
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .world-feature-reverse img {
    order: 0;
  }
  .site-footer {
    grid-template-columns: 1fr 1fr;
  }
  .site-footer > div {
    grid-column: 1/-1;
  }
  .section-shell {
    padding: 78px 0;
  }
}
@media (max-width: 560px) {
  body {
    font-size: 16px;
  }
  .site-header {
    padding: 14px 18px;
  }
  .brand {
    font-size: 15px;
  }
  .nav-cta {
    font-size: 12px;
    padding: 7px 10px;
  }
  .primary-nav {
    gap: 16px;
  }
  .primary-nav a {
    font-size: 13px;
  }
  .home-hero-copy,
  .section-shell,
  .page-hero,
  .content-section,
  .editorial-image,
  .site-footer,
  .article-shell {
    width: min(100% - 32px, 1180px);
  }
  .world-showcase {
    width: min(100% - 32px, 1180px);
    gap: 64px;
  }
  .home-hero h1 {
    font-size: 52px;
  }
  .hero-actions {
    flex-direction: column;
  }
  .form-row {
    flex-direction: column;
  }
  .site-footer {
    grid-template-columns: 1fr;
  }
  .site-footer > div {
    grid-column: auto;
  }
  .waitlist-card {
    border-radius: 24px;
  }
  .world-card {
    min-height: 260px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *, *:before, *:after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
}
