:root {
  --ink: #171711;
  --paper: #eee9df;
  --bone: #f6f2e9;
  --gold: #d5a426;
  --rust: #9f3d1f;
  --muted: #8b877d;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

::selection {
  background: var(--gold);
  color: var(--ink);
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 10px;
  left: 10px;
  transform: translateY(-150%);
  background: var(--bone);
  padding: 12px 16px;
  color: var(--ink);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-nav {
  position: absolute;
  z-index: 10;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 26px 4.5vw;
  color: var(--bone);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.wordmark {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
}

.sun-mark {
  display: inline-block;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 3px rgb(213 164 38 / 16%);
}

.site-nav nav {
  display: flex;
  align-items: center;
  gap: clamp(20px, 3vw, 48px);
}

.site-nav nav a {
  opacity: 0.72;
  transition: opacity 0.2s ease;
}

.site-nav nav a:hover,
.site-nav nav a:focus-visible {
  opacity: 1;
}

.site-nav .nav-cta {
  border-bottom: 1px solid var(--gold);
  padding: 8px 0;
  opacity: 1;
}

.hero {
  position: relative;
  display: flex;
  overflow: hidden;
  min-height: 760px;
  height: 100svh;
  align-items: center;
  background:
    linear-gradient(180deg, rgb(23 23 17 / 0%) 62%, #171711 100%),
    radial-gradient(circle at 64% 40%, #e8b943 0, #bd7624 18%, #6a3424 42%, #231b19 71%);
  color: var(--bone);
}

.hero::after {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.35'/%3E%3C/svg%3E");
  content: "";
  opacity: 0.16;
  pointer-events: none;
  mix-blend-mode: soft-light;
}

.hero-aura {
  position: absolute;
  top: 20%;
  right: 17%;
  width: clamp(260px, 36vw, 600px);
  border: 1px solid rgb(246 242 233 / 18%);
  border-radius: 50%;
  aspect-ratio: 1;
  box-shadow:
    0 0 0 5vw rgb(246 242 233 / 3%),
    0 0 120px rgb(213 164 38 / 18%);
}

.mountain {
  position: absolute;
  inset: auto -7% 0;
  transform-origin: bottom;
}

.mountain-back {
  height: 58%;
  background: #3a2520;
  opacity: 0.52;
  clip-path: polygon(0 100%, 0 81%, 13% 53%, 22% 72%, 39% 20%, 49% 56%, 62% 38%, 73% 65%, 87% 28%, 100% 59%, 100% 100%);
}

.mountain-front {
  height: 45%;
  background: #171711;
  clip-path: polygon(0 100%, 0 60%, 12% 26%, 25% 69%, 39% 46%, 51% 77%, 65% 34%, 75% 63%, 89% 21%, 100% 51%, 100% 100%);
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(850px, 80vw);
  margin-top: -2vh;
  margin-left: 10vw;
}

.kicker,
.section-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.kicker {
  margin: 0 0 28px;
  color: var(--gold);
}

.hero h1 {
  max-width: 850px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(76px, 10.5vw, 166px);
  font-weight: 400;
  letter-spacing: -0.075em;
  line-height: 0.72;
}

.hero h1 em {
  display: block;
  margin-left: 0.34em;
  color: var(--gold);
  font-weight: 400;
}

.hero-intro {
  max-width: 520px;
  margin: 54px 0 34px 11%;
  color: rgb(246 242 233 / 70%);
  font-family: Georgia, serif;
  font-size: 19px;
  line-height: 1.65;
}

.primary-button {
  display: inline-flex;
  align-items: center;
  gap: 28px;
  margin-left: 11%;
  border: 1px solid rgb(246 242 233 / 32%);
  border-radius: 999px;
  padding: 14px 20px 14px 23px;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: background 0.25s ease, color 0.25s ease;
}

.primary-button span,
footer > a span {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 50%;
  background: var(--gold);
  color: var(--ink);
}

.primary-button:hover,
.primary-button:focus-visible,
footer > a:hover,
footer > a:focus-visible {
  background: var(--bone);
  color: var(--ink);
}

.vertical-note {
  position: absolute;
  z-index: 3;
  top: 47%;
  left: 3vw;
  margin: 0;
  transform: rotate(180deg);
  color: rgb(246 242 233 / 38%);
  font-size: 9px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.edition-note {
  position: absolute;
  z-index: 3;
  right: 4.5vw;
  bottom: 8vh;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  color: rgb(246 242 233 / 55%);
  font-size: 11px;
  letter-spacing: 0.12em;
  line-height: 1.5;
}

.edition-note span {
  color: var(--gold);
  font-family: Georgia, serif;
  font-size: 38px;
  line-height: 0.8;
}

.edition-note p {
  margin: 0;
}

.manifesto {
  padding: 150px 10vw 130px;
  background: var(--paper);
  text-align: center;
}

.section-tag {
  margin: 0 0 36px;
  color: var(--rust);
}

.manifesto blockquote {
  max-width: 1050px;
  margin: 0 auto;
  font-family: Georgia, serif;
  font-size: clamp(43px, 6vw, 84px);
  letter-spacing: -0.045em;
  line-height: 1.05;
}

.manifesto-copy {
  max-width: 660px;
  margin: 58px auto 0;
  color: #5e5b53;
  font-family: Georgia, serif;
  font-size: 18px;
  line-height: 1.75;
}

.journey {
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) 1.3fr;
  gap: 9vw;
  padding: 140px 8vw 160px;
  background: var(--ink);
  color: var(--bone);
}

.section-heading {
  position: sticky;
  top: 110px;
  align-self: start;
}

.section-heading h2,
.ideas-title h2 {
  margin: 0;
  font-family: Georgia, serif;
  font-size: clamp(54px, 6vw, 94px);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.92;
}

.section-heading > p:last-child {
  max-width: 320px;
  margin: 38px 0 0;
  color: rgb(246 242 233 / 48%);
  font-family: Georgia, serif;
  line-height: 1.7;
}

.movement {
  display: grid;
  min-height: 175px;
  grid-template-columns: 55px minmax(180px, 0.8fr) 1.2fr 30px;
  align-items: center;
  gap: 28px;
  border-top: 1px solid rgb(246 242 233 / 15%);
  color: inherit;
  text-decoration: none;
  transition: border-color 0.25s ease, transform 0.25s ease;
}

.movement:last-child {
  border-bottom: 1px solid rgb(246 242 233 / 15%);
}

.movement:hover {
  transform: translateX(8px);
  border-color: var(--gold);
}

.movement:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 5px;
}

.movement-number {
  color: var(--gold);
  font-family: Georgia, serif;
  font-size: 28px;
  font-style: italic;
}

.movement h3 {
  margin: 8px 0 0;
  font-family: Georgia, serif;
  font-size: 30px;
  font-weight: 400;
}

.movement div p {
  margin: 0;
  color: var(--muted);
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.movement-text {
  color: rgb(246 242 233 / 52%);
  font-family: Georgia, serif;
  font-size: 15px;
  line-height: 1.65;
}

.movement-arrow {
  color: var(--gold);
  font-size: 19px;
}

.ideas {
  padding: 145px 8vw 170px;
  background: var(--gold);
}

.ideas-title {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 80px;
}

.ideas-title .section-tag {
  align-self: flex-start;
  color: var(--ink);
  opacity: 0.58;
}

.ideas-title h2 {
  max-width: 780px;
  text-align: right;
}

.concept-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgb(23 23 17 / 35%);
}

.concept {
  position: relative;
  min-height: 360px;
  border-right: 1px solid rgb(23 23 17 / 26%);
  padding: 38px 36px 15px 0;
}

.concept + .concept {
  padding-left: 36px;
}

.concept:last-child {
  border-right: 0;
}

.concept-index {
  position: absolute;
  top: 38px;
  right: 30px;
  color: rgb(23 23 17 / 43%);
  font-family: Georgia, serif;
  font-style: italic;
}

.concept-eyebrow {
  margin: 0 0 90px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.concept h3 {
  margin: 0 0 20px;
  font-family: Georgia, serif;
  font-size: 38px;
  font-weight: 400;
  letter-spacing: -0.04em;
}

.concept > p:last-child {
  max-width: 330px;
  margin: 0;
  color: rgb(23 23 17 / 65%);
  font-family: Georgia, serif;
  font-size: 16px;
  line-height: 1.65;
}

.begin {
  padding: 150px 8vw 160px;
  background: var(--bone);
}

.begin-heading {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  align-items: end;
  column-gap: 8vw;
  margin-bottom: 86px;
}

.begin-heading .section-tag {
  align-self: start;
}

.begin-heading h2 {
  margin: 0;
  font-family: Georgia, serif;
  font-size: clamp(56px, 7vw, 104px);
  font-weight: 400;
  letter-spacing: -0.06em;
  line-height: 0.9;
}

.begin-heading > p:last-child {
  grid-column: 2;
  max-width: 480px;
  margin: 28px 0 0;
  color: #69665e;
  font-family: Georgia, serif;
  font-size: 17px;
  line-height: 1.7;
}

.reflection-shell {
  display: grid;
  min-height: 480px;
  grid-template-columns: 0.64fr 1.36fr;
  border-top: 1px solid #c7c1b5;
  border-bottom: 1px solid #c7c1b5;
}

.reflection-tabs {
  display: flex;
  flex-direction: column;
  border-right: 1px solid #c7c1b5;
}

.reflection-tabs button {
  display: flex;
  flex: 1;
  align-items: center;
  gap: 26px;
  border: 0;
  border-bottom: 1px solid #c7c1b5;
  padding: 28px 32px 28px 0;
  background: transparent;
  color: #77736b;
  font-family: Georgia, serif;
  font-size: 25px;
  text-align: left;
  cursor: pointer;
  transition: color 0.2s ease, padding 0.2s ease;
}

.reflection-tabs button:last-child {
  border-bottom: 0;
}

.reflection-tabs button span {
  color: #a39d91;
  font-family: Arial, sans-serif;
  font-size: 9px;
  letter-spacing: 0.18em;
}

.reflection-tabs button:hover,
.reflection-tabs button:focus-visible,
.reflection-tabs button.active {
  padding-left: 16px;
  color: var(--rust);
  outline: none;
}

.reflection-tabs button.active::after {
  margin-left: auto;
  color: var(--rust);
  content: "→";
}

.reflection-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 70px 7vw;
}

.reflection-panel.reveal blockquote,
.reflection-panel.reveal .reflection-question {
  animation: reveal 0.35s ease both;
}

.passage-label {
  margin: 0 0 34px;
  color: var(--rust);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.reflection-panel blockquote {
  max-width: 760px;
  margin: 0;
  font-family: Georgia, serif;
  font-size: clamp(44px, 5vw, 72px);
  letter-spacing: -0.05em;
  line-height: 1.04;
}

.reflection-question {
  display: flex;
  align-items: flex-start;
  gap: 22px;
  max-width: 700px;
  margin-top: 58px;
  color: #656158;
  font-family: Georgia, serif;
  font-size: 17px;
  line-height: 1.65;
}

.reflection-question span {
  color: var(--gold);
  font-size: 22px;
}

.reflection-question p {
  margin: 0;
}

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

.ritual {
  padding: 120px 8vw 135px;
  background: #292920;
  color: var(--bone);
}

.ritual .section-tag {
  color: var(--gold);
}

.ritual-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 62px;
  border-top: 1px solid rgb(246 242 233 / 18%);
}

.ritual article {
  min-height: 285px;
  border-right: 1px solid rgb(246 242 233 / 18%);
  padding: 34px 45px 10px 0;
}

.ritual article + article {
  padding-left: 45px;
}

.ritual article:last-child {
  border-right: 0;
}

.ritual article span {
  color: var(--gold);
  font-family: Georgia, serif;
  font-size: 18px;
  font-style: italic;
}

.ritual article h3 {
  margin: 65px 0 16px;
  font-family: Georgia, serif;
  font-size: 42px;
  font-weight: 400;
}

.ritual article p {
  max-width: 340px;
  margin: 0;
  color: rgb(246 242 233 / 53%);
  font-family: Georgia, serif;
  font-size: 15px;
  line-height: 1.7;
}

footer {
  position: relative;
  display: flex;
  overflow: hidden;
  min-height: 580px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 100px 8vw 45px;
  background: #11110d;
  color: var(--bone);
  text-align: center;
}

.footer-sun {
  position: absolute;
  top: 54%;
  left: 50%;
  width: min(560px, 65vw);
  transform: translate(-50%, -50%);
  border: 1px solid rgb(213 164 38 / 10%);
  border-radius: 50%;
  background: radial-gradient(circle, rgb(213 164 38 / 30%), rgb(213 164 38 / 6%) 48%, transparent 70%);
  aspect-ratio: 1;
}

footer > p {
  position: relative;
  max-width: 920px;
  margin: 0 0 52px;
  font-family: Georgia, serif;
  font-size: clamp(45px, 6vw, 82px);
  letter-spacing: -0.055em;
  line-height: 1.05;
}

footer > a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 26px;
  border: 1px solid rgb(246 242 233 / 25%);
  border-radius: 999px;
  padding: 16px 20px 16px 26px;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: background 0.25s ease, color 0.25s ease;
}

.footer-meta {
  position: absolute;
  right: 8vw;
  bottom: 35px;
  left: 8vw;
  display: flex;
  justify-content: space-between;
  color: rgb(246 242 233 / 28%);
  font-size: 8px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .hero-copy {
    width: 88vw;
    margin-left: 6vw;
  }

  .hero h1 {
    font-size: clamp(62px, 13.5vw, 110px);
  }

  .vertical-note {
    display: none;
  }

  .journey {
    grid-template-columns: 1fr;
  }

  .section-heading {
    position: static;
  }

  .movement {
    grid-template-columns: 42px minmax(150px, 0.8fr) 1.2fr 24px;
  }

  .ideas-title {
    display: block;
  }

  .ideas-title h2 {
    text-align: left;
  }

  .begin-heading {
    grid-template-columns: 1fr;
  }

  .begin-heading > p:last-child {
    grid-column: 1;
  }

  .reflection-shell {
    grid-template-columns: 1fr;
  }

  .reflection-tabs {
    flex-direction: row;
    border-right: 0;
    border-bottom: 1px solid #c7c1b5;
  }

  .reflection-tabs button {
    border-bottom: 0;
    padding: 24px 14px;
    font-size: 18px;
  }

  .reflection-tabs button:hover,
  .reflection-tabs button:focus-visible,
  .reflection-tabs button.active {
    padding-left: 14px;
  }

  .reflection-tabs button.active::after,
  .reflection-tabs button span {
    display: none;
  }
}

@media (max-width: 640px) {
  .site-nav {
    padding: 22px 20px;
  }

  .site-nav nav a:not(.nav-cta) {
    display: none;
  }

  .hero {
    min-height: 720px;
  }

  .hero-copy {
    width: auto;
    margin: -6vh 24px 0;
  }

  .hero h1 {
    font-size: clamp(57px, 18vw, 86px);
    line-height: 0.76;
  }

  .hero h1 em {
    margin-left: 0.05em;
  }

  .hero-intro,
  .primary-button {
    margin-left: 0;
  }

  .hero-intro {
    margin-top: 40px;
    font-size: 17px;
  }

  .edition-note {
    display: none;
  }

  .hero-aura {
    top: 28%;
    right: -22%;
  }

  .manifesto,
  .journey,
  .ideas,
  .begin,
  .ritual {
    padding: 100px 24px;
  }

  .manifesto blockquote {
    font-size: 42px;
  }

  .movement {
    min-height: 220px;
    grid-template-columns: 36px 1fr 20px;
    gap: 16px;
    padding: 26px 0;
  }

  .movement-text {
    grid-column: 2 / -1;
    margin: 0;
  }

  .movement-arrow {
    grid-row: 1;
    grid-column: 3;
  }

  .ideas-title,
  .begin-heading {
    margin-bottom: 55px;
  }

  .ideas-title h2,
  .section-heading h2,
  .begin-heading h2 {
    font-size: 53px;
  }

  .concept-grid {
    grid-template-columns: 1fr;
  }

  .concept,
  .concept + .concept {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid rgb(23 23 17 / 28%);
    padding: 35px 0 45px;
  }

  .concept:last-child {
    border-bottom: 0;
  }

  .concept-eyebrow {
    margin-bottom: 52px;
  }

  .concept-index {
    right: 0;
  }

  .reflection-tabs {
    overflow-x: auto;
  }

  .reflection-tabs button {
    min-width: max-content;
    font-size: 16px;
  }

  .reflection-panel {
    min-height: 480px;
    padding: 58px 10px;
  }

  .reflection-panel blockquote {
    font-size: 45px;
  }

  .reflection-question {
    margin-top: 46px;
  }

  .ritual-grid {
    grid-template-columns: 1fr;
  }

  .ritual article,
  .ritual article + article {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid rgb(246 242 233 / 18%);
    padding: 34px 0 46px;
  }

  .ritual article:last-child {
    border-bottom: 0;
  }

  .ritual article h3 {
    margin-top: 34px;
  }

  footer {
    min-height: 600px;
    padding: 90px 24px 80px;
  }

  .footer-meta {
    right: 24px;
    left: 24px;
    flex-direction: column;
    gap: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
