:root {
  --night: #092f28;
  --night-deep: #061f1b;
  --night-soft: #124238;
  --paper: #f4efe5;
  --ivory: #fffaf0;
  --ink: #17332d;
  --muted: #6c766f;
  --gold: #e2b66f;
  --gold-pale: #f5d79f;
  --peach: #df7965;
  --sage: #a7b8a6;
  --line: rgba(23, 51, 45, 0.16);
  --line-light: rgba(255, 250, 240, 0.17);
  --display: "Iowan Old Style", Baskerville, "Palatino Linotype", Georgia, serif;
  --body: "Segoe UI Variable", "Segoe UI", Arial, sans-serif;
  --container: 1240px;
  --ease: cubic-bezier(0.2, 0.75, 0.2, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--night-deep);
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  line-height: 1.62;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

img,
video {
  display: block;
  max-width: 100%;
}

img {
  height: auto;
}

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

button,
input,
a {
  font: inherit;
}

button {
  color: inherit;
}

a:focus-visible,
button:focus-visible,
summary:focus-visible,
input:focus-visible,
video:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

h1,
h2,
p,
figure {
  margin-top: 0;
}

h1,
h2 {
  margin-bottom: 0;
  font-family: var(--display);
  font-weight: 500;
  letter-spacing: -0.052em;
  line-height: 0.96;
}

h1 em,
h2 em {
  color: var(--gold);
  font-weight: 400;
}

h2 {
  font-size: clamp(2.7rem, 4.8vw, 5rem);
}

.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: 200;
  padding: 10px 15px;
  background: var(--ivory);
  color: var(--night-deep);
  font-weight: 800;
  transform: translateY(-150%);
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: none;
}

.section {
  padding: clamp(80px, 8vw, 126px) max(22px, calc((100vw - var(--container)) / 2));
}

.section-label,
.eyebrow {
  margin: 0 0 18px;
  color: var(--peach);
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.17em;
  line-height: 1.4;
  text-transform: uppercase;
}

.section-lead {
  max-width: 620px;
  margin: 25px 0 0;
  color: var(--muted);
  font-size: 1.06rem;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 12px 22px;
  border: 1px solid transparent;
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.02em;
  transition: transform 160ms var(--ease), background 160ms ease, color 160ms ease, border-color 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-light {
  background: var(--ivory);
  color: var(--night-deep);
}

.button-light:hover {
  background: var(--gold);
}

.button-gold {
  background: var(--gold);
  color: var(--night-deep);
}

.button-gold:hover {
  background: var(--ivory);
}

.text-link {
  position: relative;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: rgba(255, 250, 240, 0.78);
  font-size: 0.78rem;
  font-weight: 780;
}

.text-link::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 7px;
  left: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0.32);
  transform-origin: left;
  transition: transform 180ms var(--ease);
}

.text-link:hover::after,
.text-link:focus-visible::after {
  transform: scaleX(1);
}

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 60;
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 28px;
  padding: 16px max(22px, calc((100vw - var(--container)) / 2));
  color: var(--ivory);
  transition: background 220ms ease, min-height 220ms ease, box-shadow 220ms ease;
}

.site-header.is-scrolled {
  position: fixed;
  min-height: 66px;
  background: rgba(6, 31, 27, 0.95);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(10px);
}

.footer-star {
  width: 13px;
  height: 13px;
  display: inline-block;
  background: var(--gold);
  clip-path: polygon(50% 0, 61% 39%, 100% 50%, 61% 61%, 50% 100%, 39% 61%, 0 50%, 39% 39%);
}

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

.site-nav a {
  position: relative;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: rgba(255, 250, 240, 0.77);
  font-size: 0.72rem;
  font-weight: 780;
}

.site-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 6px;
  left: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms var(--ease);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: min(900px, 100svh);
  display: grid;
  align-items: center;
  overflow: hidden;
  background: var(--night-deep);
  color: var(--ivory);
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-shade {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(3, 23, 20, 0.97) 0%, rgba(3, 23, 20, 0.84) 33%, rgba(3, 23, 20, 0.18) 67%, rgba(3, 23, 20, 0.14) 100%),
    linear-gradient(0deg, rgba(3, 23, 20, 0.55) 0%, transparent 42%);
}

.hero-copy {
  position: relative;
  z-index: 4;
  width: min(660px, 50vw);
  margin-left: max(22px, calc((100vw - var(--container)) / 2));
  padding: 140px 0 84px;
}

.hero .eyebrow {
  color: var(--gold);
}

.hero h1 {
  max-width: 650px;
  font-size: clamp(4rem, 7vw, 7.5rem);
  line-height: 0.89;
}

.hero h1 em {
  display: inline;
}

.hero-title-line {
  display: block;
  width: max-content;
  max-width: 100%;
  font-size: 0.84em;
  white-space: nowrap;
}

.hero-lead {
  max-width: 555px;
  margin: 28px 0 0;
  color: rgba(255, 250, 240, 0.73);
  font-size: clamp(1rem, 1.25vw, 1.13rem);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 27px;
  margin-top: 34px;
}

.illustrative-note {
  margin: 14px 0 0;
  color: rgba(255, 250, 240, 0.42);
  font-size: 0.64rem;
}

.hero-proof {
  position: absolute;
  right: max(28px, calc((100vw - var(--container)) / 2));
  bottom: 70px;
  z-index: 4;
  width: 150px;
  margin: 0;
  padding: 7px 7px 10px;
  background: var(--night-deep);
  box-shadow: 10px 10px 0 rgba(226, 182, 111, 0.88), 0 22px 44px rgba(0, 0, 0, 0.3);
}

.hero-proof img {
  width: 100%;
  max-height: 278px;
  object-fit: cover;
  object-position: top;
}

.hero-proof figcaption {
  display: grid;
  gap: 2px;
  padding: 9px 3px 0;
  line-height: 1.3;
}

.hero-proof strong {
  color: var(--gold-pale);
  font-size: 0.6rem;
}

.hero-proof span {
  color: rgba(255, 250, 240, 0.48);
  font-size: 0.52rem;
}

.js .hero-media {
  clip-path: inset(0 0 0 100%);
  transition: clip-path 820ms var(--ease);
}

.js .hero-copy > * {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 600ms var(--ease), transform 600ms var(--ease);
}

.js .hero-proof {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 650ms var(--ease) 360ms, transform 650ms var(--ease) 360ms;
}

.js.is-ready .hero-media {
  clip-path: inset(0);
}

.js.is-ready .hero-copy > * {
  opacity: 1;
  transform: none;
}

.js.is-ready .hero-proof {
  opacity: 1;
  transform: none;
}

.js.is-ready .hero-copy > :nth-child(2) { transition-delay: 100ms; }
.js.is-ready .hero-copy > :nth-child(3) { transition-delay: 190ms; }
.js.is-ready .hero-copy > :nth-child(4) { transition-delay: 270ms; }
.js.is-ready .hero-copy > :nth-child(5) { transition-delay: 330ms; }
.js.is-ready .hero-copy > :nth-child(6) { transition-delay: 390ms; }

.conversion-strip {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(32px, 6vw, 86px);
  padding: 14px max(22px, calc((100vw - var(--container)) / 2));
  background: var(--night-deep);
  color: var(--ivory);
}

.conversion-strip p {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1rem, 1.5vw, 1.25rem);
}

.conversion-strip a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 18px;
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color 160ms ease, transform 160ms var(--ease);
}

.conversion-strip a:hover {
  color: var(--ivory);
  transform: translateX(3px);
}

.fact-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 0 max(22px, calc((100vw - var(--container)) / 2));
  background: var(--gold);
  color: var(--night-deep);
}

.fact-bar p {
  min-height: 98px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 20px;
  margin: 0;
  padding: 17px clamp(17px, 3vw, 42px);
  border-right: 1px solid rgba(6, 31, 27, 0.23);
}

.fact-bar p:first-child {
  border-left: 1px solid rgba(6, 31, 27, 0.23);
}

.fact-bar strong {
  font-family: var(--display);
  font-size: clamp(1.6rem, 2.3vw, 2.3rem);
  font-style: italic;
  font-weight: 500;
  line-height: 1;
}

.fact-bar span {
  max-width: 145px;
  font-size: 0.76rem;
  font-weight: 820;
  line-height: 1.35;
}

.ritual {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(370px, 0.9fr);
  align-items: center;
  gap: clamp(58px, 8vw, 128px);
  background: var(--paper);
}

.ritual-photo {
  position: relative;
  margin: 0;
}

.ritual-photo::before {
  content: "";
  position: absolute;
  top: -19px;
  left: -19px;
  width: 52%;
  height: 54%;
  border-top: 1px solid var(--peach);
  border-left: 1px solid var(--peach);
}

.ritual-photo img {
  position: relative;
  width: 100%;
  min-height: 500px;
  object-fit: cover;
  object-position: center;
}

.ritual-photo p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.63rem;
}

.ritual-copy {
  max-width: 600px;
}

.ritual-copy h2 {
  font-size: clamp(3rem, 5vw, 5.15rem);
}

.ritual-copy > p:not(.section-label) {
  max-width: 560px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 1.04rem;
}

.ritual-notes {
  margin: 37px 0 0;
  border-top: 1px solid var(--line);
}

.ritual-notes div {
  display: grid;
  grid-template-columns: 78px 1fr;
  gap: 22px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
}

.ritual-notes dt {
  color: var(--peach);
  font-size: 0.75rem;
  font-weight: 850;
}

.ritual-notes dd {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.calendar-story {
  display: grid;
  grid-template-columns: minmax(260px, 0.63fr) minmax(0, 1.37fr);
  align-items: start;
  gap: clamp(44px, 7vw, 112px);
  overflow: hidden;
  background: var(--night);
  color: var(--ivory);
}

.calendar-story .section-label {
  color: var(--gold);
}

.calendar-intro {
  position: relative;
  z-index: 2;
  max-width: 500px;
}

.calendar-intro > p:not(.section-label) {
  margin: 26px 0 0;
  color: rgba(255, 250, 240, 0.65);
}

.phone-proof {
  width: min(250px, 72%);
  margin: 44px 0 -235px 16%;
  transform: rotate(-2.2deg);
}

.phone-proof img {
  width: 100%;
  filter: drop-shadow(0 30px 34px rgba(0, 0, 0, 0.3));
}

.phone-proof figcaption {
  margin-top: 7px;
  color: rgba(255, 250, 240, 0.45);
  font-size: 0.62rem;
  text-align: center;
}

.calendar-demo {
  position: relative;
  z-index: 1;
  padding: clamp(24px, 3.8vw, 50px);
  overflow: hidden;
  border: 1px solid rgba(245, 215, 159, 0.22);
  background:
    linear-gradient(rgba(255, 250, 240, 0.025), rgba(255, 250, 240, 0.025)),
    var(--night-deep);
  box-shadow: 22px 22px 0 rgba(226, 182, 111, 0.12);
}

.calendar-demo::before,
.calendar-demo::after {
  content: "";
  position: absolute;
  z-index: 3;
  pointer-events: none;
}

.calendar-demo::before {
  inset: 10px;
  border: 1px solid rgba(255, 250, 240, 0.055);
}

.calendar-demo::after {
  top: 0;
  left: -35%;
  width: 30%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-pale), transparent);
  opacity: 0;
}

.calendar-demo.is-observed::after {
  animation: border-light 1.2s var(--ease) both;
}

@keyframes border-light {
  0% { left: -35%; opacity: 0; }
  18% { opacity: 1; }
  100% { left: 105%; opacity: 0; }
}

.calendar-demo-top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  padding-bottom: 18px;
}

.calendar-status {
  min-height: 91px;
  display: grid;
  align-content: end;
  transition: opacity 180ms ease, transform 180ms var(--ease);
}

.calendar-status.is-changing {
  opacity: 0;
  transform: translateY(6px);
}

.calendar-status-kicker {
  margin-bottom: 5px;
  color: var(--gold);
  font-size: 0.61rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.calendar-status strong {
  font-family: var(--display);
  font-size: clamp(2.5rem, 4.2vw, 4.4rem);
  font-style: italic;
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.94;
}

.calendar-status > span:last-child {
  margin-top: 7px;
  color: rgba(255, 250, 240, 0.66);
  font-size: 0.78rem;
}

.calendar-progress-copy {
  display: grid;
  justify-items: end;
  padding-bottom: 4px;
  text-align: right;
}

.calendar-progress-copy strong {
  color: var(--gold-pale);
  font-family: var(--display);
  font-size: 1.2rem;
  font-weight: 500;
}

.calendar-progress-copy span {
  color: rgba(255, 250, 240, 0.45);
  font-size: 0.62rem;
}

.progress-track {
  height: 3px;
  overflow: hidden;
  background: rgba(255, 250, 240, 0.1);
}

.progress-track span {
  width: 4.1667%;
  height: 100%;
  display: block;
  background: linear-gradient(90deg, var(--peach), var(--gold));
  transition: width 420ms var(--ease);
}

.door-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: clamp(8px, 1.2vw, 15px);
  margin-top: 25px;
}

.door {
  position: relative;
  aspect-ratio: 0.84;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 3px;
  overflow: hidden;
  border: 1px solid rgba(255, 250, 240, 0.11);
  background: rgba(18, 66, 56, 0.23);
  color: rgba(255, 250, 240, 0.38);
  isolation: isolate;
  transition:
    color 320ms ease var(--door-delay, 0ms),
    border-color 320ms ease var(--door-delay, 0ms),
    background 320ms ease var(--door-delay, 0ms),
    box-shadow 320ms ease var(--door-delay, 0ms),
    transform 320ms var(--ease) var(--door-delay, 0ms);
}

.door::before {
  content: "";
  position: absolute;
  inset: 5px;
  z-index: -1;
  border: 1px solid rgba(255, 250, 240, 0.055);
}

.door::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 9px;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.7;
}

.door strong {
  font-family: var(--display);
  font-size: clamp(1.25rem, 2.4vw, 2.15rem);
  font-weight: 500;
  line-height: 1;
}

.door span {
  font-size: clamp(0.47rem, 0.65vw, 0.6rem);
  font-weight: 790;
  letter-spacing: 0.05em;
}

.door.is-lived {
  border-color: rgba(167, 184, 166, 0.32);
  background: rgba(167, 184, 166, 0.12);
  color: var(--sage);
}

.door.is-lived::after {
  content: "✓";
  top: 8px;
  right: 8px;
  width: auto;
  height: auto;
  background: none;
  font-size: 0.55rem;
}

.door.is-current {
  z-index: 2;
  border-color: var(--gold);
  background: rgba(226, 182, 111, 0.13);
  color: var(--gold-pale);
  box-shadow: 0 0 0 1px rgba(226, 182, 111, 0.16), 0 0 26px rgba(226, 182, 111, 0.11);
  transform: translateY(-2px);
}

.door.is-current::after {
  width: 7px;
  height: 7px;
  border-radius: 0;
  clip-path: polygon(50% 0, 61% 39%, 100% 50%, 61% 61%, 50% 100%, 39% 61%, 0 50%, 39% 39%);
}

.door:nth-child(9)::before,
.door:nth-child(18)::before,
.door:nth-child(24)::before {
  border-color: rgba(226, 182, 111, 0.13);
}

.calendar-control {
  margin-top: 30px;
  padding-top: 21px;
  border-top: 1px solid rgba(255, 250, 240, 0.1);
}

.calendar-control label {
  display: block;
  margin-bottom: 12px;
  font-size: 0.74rem;
  font-weight: 820;
}

.calendar-control input[type="range"] {
  width: 100%;
  height: 28px;
  margin: 0;
  background: transparent;
  accent-color: var(--gold);
  cursor: pointer;
}

.calendar-control input[type="range"]::-webkit-slider-runnable-track {
  height: 3px;
  background: rgba(255, 250, 240, 0.15);
}

.calendar-control input[type="range"]::-webkit-slider-thumb {
  width: 18px;
  height: 18px;
  margin-top: -7px;
  border: 4px solid var(--night-deep);
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 1px var(--gold);
  -webkit-appearance: none;
}

.calendar-control input[type="range"]::-moz-range-track {
  height: 3px;
  background: rgba(255, 250, 240, 0.15);
}

.calendar-control input[type="range"]::-moz-range-thumb {
  width: 12px;
  height: 12px;
  border: 4px solid var(--night-deep);
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 1px var(--gold);
}

.range-labels {
  display: flex;
  justify-content: space-between;
  margin-top: -1px;
  color: rgba(255, 250, 240, 0.42);
  font-size: 0.57rem;
}

.quick-days {
  display: flex;
  gap: 8px;
  margin-top: 16px;
}

.quick-days button {
  min-width: 76px;
  min-height: 38px;
  padding: 7px 12px;
  border: 1px solid rgba(245, 215, 159, 0.28);
  border-radius: 0;
  background: transparent;
  color: rgba(255, 250, 240, 0.75);
  cursor: pointer;
  font-size: 0.66rem;
  font-weight: 800;
  transition: background 160ms ease, color 160ms ease, transform 160ms var(--ease);
}

.quick-days button:hover,
.quick-days button.is-active {
  background: var(--gold);
  color: var(--night-deep);
  transform: translateY(-1px);
}

.calendar-control p {
  margin: 14px 0 0;
  color: rgba(255, 250, 240, 0.41);
  font-size: 0.62rem;
}

.experience {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(230px, 270px);
  align-items: center;
  gap: clamp(56px, 8vw, 128px);
  background: var(--ivory);
}

.experience-copy {
  max-width: 720px;
}

.experience h2 {
  max-width: 720px;
}

.mechanism {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 43px 0 0;
  padding: 28px 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.mechanism::after {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--peach);
  transition: width 900ms var(--ease);
}

.mechanism.is-active::after {
  width: 100%;
}

.mechanism li {
  display: grid;
  align-content: start;
  gap: 5px;
}

.mechanism li > span {
  color: var(--peach);
  font-family: var(--display);
  font-size: 0.88rem;
  font-style: italic;
}

.mechanism strong {
  font-size: 0.82rem;
}

.mechanism small {
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.48;
}

.video-card {
  width: min(270px, 100%);
  justify-self: center;
  margin: 0;
  padding: 10px 10px 14px;
  background: var(--night-deep);
  color: var(--ivory);
  box-shadow: 16px 16px 0 var(--peach), 0 28px 54px rgba(23, 51, 45, 0.15);
}

.video-card video {
  width: 100%;
  aspect-ratio: 9 / 16;
  max-height: 470px;
  background: var(--night);
  object-fit: contain;
}

.video-card figcaption {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 3px 0;
  font-size: 0.68rem;
  font-weight: 780;
}

.video-card figcaption span {
  color: var(--gold);
}

.piece-story {
  display: grid;
  grid-template-columns: minmax(380px, 0.95fr) minmax(0, 1.05fr);
  align-items: center;
  gap: clamp(58px, 8vw, 130px);
  padding: clamp(78px, 8vw, 120px) max(22px, calc((100vw - var(--container)) / 2));
  overflow: hidden;
  background: var(--night-deep);
  color: var(--ivory);
}

.piece-product {
  position: relative;
  min-height: 500px;
  display: grid;
  place-items: center;
}

.piece-product::before {
  content: "";
  position: absolute;
  width: min(440px, 80%);
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--paper);
}

.product-orbit {
  position: absolute;
  width: min(490px, 88%);
  aspect-ratio: 1;
  border: 1px solid rgba(226, 182, 111, 0.38);
  border-radius: 50%;
}

.product-orbit::before,
.product-orbit::after {
  content: "";
  position: absolute;
  width: 9px;
  height: 9px;
  background: var(--gold);
  clip-path: polygon(50% 0, 61% 39%, 100% 50%, 61% 61%, 50% 100%, 39% 61%, 0 50%, 39% 39%);
}

.product-orbit::before { top: 10%; left: 10%; }
.product-orbit::after { right: 5%; bottom: 23%; }

.piece-product img {
  position: relative;
  z-index: 2;
  width: min(650px, 112%);
  max-width: none;
  filter: drop-shadow(0 30px 24px rgba(0, 0, 0, 0.34));
}

.piece-copy {
  max-width: 650px;
}

.piece-copy .section-label {
  color: var(--gold);
}

.piece-copy > p:not(.section-label) {
  max-width: 570px;
  margin: 27px 0 0;
  color: rgba(255, 250, 240, 0.63);
}

.piece-copy ul {
  margin: 36px 0 0;
  padding: 0;
  border-top: 1px solid var(--line-light);
  list-style: none;
}

.piece-copy li {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 25px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line-light);
}

.piece-copy strong {
  color: var(--gold);
  font-size: 0.78rem;
}

.piece-copy li span {
  color: rgba(255, 250, 240, 0.59);
  font-size: 0.8rem;
}

.art-gallery {
  background: var(--paper);
}

.gallery-heading {
  max-width: none;
  text-align: center;
}

.gallery-heading h2 {
  font-size: clamp(1.8rem, 5vw, 5rem);
  white-space: nowrap;
}

.gallery-heading h2 em {
  display: block;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2.4vw, 34px);
  margin-top: 42px;
}

.product-grid figure {
  min-width: 0;
  margin: 0;
}

.product-stage {
  height: clamp(320px, 34vw, 460px);
  display: grid;
  place-items: center;
  overflow: hidden;
}

.stage-sage { background: #d7dfd7; }
.stage-paper { background: #e8decc; }
.stage-peach { background: #e7c9c1; }

.product-stage img {
  width: auto;
  max-width: 118%;
  max-height: 94%;
  object-fit: contain;
  filter: drop-shadow(0 22px 20px rgba(23, 51, 45, 0.14));
  transition: transform 220ms var(--ease);
}

.product-grid figure:hover img {
  transform: translateY(-4px) scale(1.01);
}

.faq-checkout-link {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-size: 0.67rem;
  font-weight: 850;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.faq-checkout-link span {
  color: var(--peach);
}

.waiting {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.55fr);
  align-items: center;
  gap: clamp(58px, 9vw, 150px);
  overflow: hidden;
  background: var(--night);
  color: var(--ivory);
}

.waiting-copy {
  max-width: 720px;
}

.waiting .section-label {
  color: var(--gold);
}

.waiting-copy > p:not(.section-label) {
  max-width: 600px;
  margin: 27px 0 0;
  color: rgba(255, 250, 240, 0.64);
}

.waiting-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 38px;
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.waiting-facts p {
  min-height: 118px;
  display: grid;
  align-content: center;
  gap: 4px;
  margin: 0;
  padding: 18px;
  border-right: 1px solid var(--line-light);
}

.waiting-facts p:first-child { padding-left: 0; }
.waiting-facts p:last-child { border-right: 0; }

.waiting-facts strong {
  color: var(--gold-pale);
  font-size: 0.76rem;
}

.waiting-facts span {
  color: rgba(255, 250, 240, 0.5);
  font-size: 0.7rem;
  line-height: 1.45;
}

.countdown-proof {
  width: min(330px, 100%);
  margin: -18px auto -210px;
  transform: rotate(2deg);
}

.countdown-proof img {
  width: 100%;
  filter: drop-shadow(0 30px 34px rgba(0, 0, 0, 0.3));
}

.countdown-proof figcaption {
  margin-top: 8px;
  color: rgba(255, 250, 240, 0.45);
  font-size: 0.62rem;
  text-align: center;
}

.access {
  background: var(--paper);
}

.access-heading {
  max-width: 940px;
  margin: 0 auto;
  text-align: center;
}

.access-heading h2 {
  max-width: 900px;
  margin: 0 auto;
}

.access-heading h2 em {
  position: relative;
  display: inline-block;
  color: var(--peach);
}

.access-heading h2 em::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  background: var(--gold);
  transform: rotate(-0.6deg);
}

.access-heading > p:last-child {
  max-width: 760px;
  margin: 30px auto 0;
  color: var(--muted);
}

.offer-shell {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
  max-width: 1120px;
  margin: clamp(52px, 6vw, 78px) auto 0;
  background: var(--ivory);
  box-shadow: 0 28px 70px rgba(23, 51, 45, 0.09);
}

.offer-card {
  min-height: 620px;
  display: grid;
  align-content: center;
  padding: clamp(38px, 5vw, 68px);
  background: var(--night-deep);
  color: var(--ivory);
  text-align: center;
}

.offer-kicker {
  margin: 0 0 24px;
  color: var(--gold);
  font-size: 0.66rem;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.offer-card h3 {
  margin: 0;
  font-size: 1.25rem;
}

.offer-price {
  margin-top: 30px;
}

.offer-price > span {
  display: block;
  margin-bottom: -10px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 850;
}

.offer-price > strong {
  display: block;
  font-family: var(--display);
  font-size: clamp(4.8rem, 7vw, 7rem);
  font-weight: 600;
  letter-spacing: -0.07em;
  line-height: 0.95;
}

.offer-price > strong small {
  font-family: var(--body);
  font-size: 1.2rem;
  letter-spacing: 0;
}

.offer-price p {
  margin: 13px 0 0;
  color: rgba(255, 250, 240, 0.55);
  font-size: 0.68rem;
}

.offer-price b {
  padding: 0 5px;
  color: var(--gold);
}

.button-offer {
  width: 100%;
  margin-top: 34px;
  gap: 12px;
  padding-right: 14px;
  padding-left: 14px;
  background: var(--gold);
  color: var(--night-deep);
  font-size: 0.7rem;
  white-space: nowrap;
}

.button-offer:hover {
  background: var(--ivory);
}

.secure-note {
  display: grid;
  grid-template-columns: 20px 1fr;
  width: max-content;
  max-width: 100%;
  margin: 24px auto 0;
  color: rgba(255, 250, 240, 0.72);
  font-size: 0.68rem;
  line-height: 1.35;
  text-align: left;
}

.secure-note > span {
  grid-row: 1 / 3;
  color: var(--gold);
}

.secure-note small {
  color: rgba(255, 250, 240, 0.44);
}

.offer-benefits {
  padding: clamp(38px, 5vw, 68px);
}

.offer-benefits ol {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.offer-benefits li {
  min-height: 126px;
  display: grid;
  grid-template-columns: 34px 1fr;
  align-content: center;
  gap: 3px 10px;
  padding: 18px 18px 18px 0;
  border-bottom: 1px solid var(--line);
}

.offer-benefits li:nth-child(even) {
  padding-right: 0;
  padding-left: 18px;
  border-left: 1px solid var(--line);
}

.offer-benefits li > span {
  grid-row: 1 / 3;
  color: var(--peach);
  font-size: 0.62rem;
  font-weight: 850;
}

.offer-benefits strong {
  font-size: 0.76rem;
  line-height: 1.35;
}

.offer-benefits small {
  color: var(--muted);
  font-size: 0.66rem;
  line-height: 1.45;
}

.faq {
  display: grid;
  grid-template-columns: minmax(290px, 0.7fr) minmax(0, 1.3fr);
  align-items: start;
  gap: clamp(60px, 10vw, 150px);
  background: var(--ivory);
}

.faq-intro {
  max-width: 520px;
}

.faq-intro > p:not(.section-label) {
  margin: 24px 0 0;
  color: var(--muted);
}

.faq-checkout-link {
  margin-top: 22px;
  border-bottom: 1px solid var(--gold);
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  padding: 23px 54px 23px 0;
  cursor: pointer;
  font-size: 0.96rem;
  font-weight: 800;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::before,
.faq-list summary::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 4px;
  width: 18px;
  height: 1px;
  background: var(--peach);
  transition: transform 180ms var(--ease);
}

.faq-list summary::after {
  transform: rotate(90deg);
}

.faq-list details[open] summary::after {
  transform: rotate(0deg);
}

.faq-list details p {
  max-width: 650px;
  margin: -1px 0 23px;
  color: var(--muted);
}

.closing {
  position: relative;
  min-height: 620px;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: var(--night-deep);
  color: var(--ivory);
}

.closing-photo,
.closing-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.closing-photo {
  object-fit: cover;
  object-position: center;
}

.closing-shade {
  background:
    linear-gradient(270deg, rgba(3, 23, 20, 0.97) 0%, rgba(3, 23, 20, 0.82) 34%, rgba(3, 23, 20, 0.22) 66%, rgba(3, 23, 20, 0.12) 100%),
    linear-gradient(0deg, rgba(3, 23, 20, 0.48), transparent 40%);
}

.closing-copy {
  position: relative;
  z-index: 2;
  width: min(650px, 50vw);
  margin-right: max(22px, calc((100vw - var(--container)) / 2));
  margin-left: auto;
  padding: 86px 0;
}

.closing .section-label {
  color: var(--gold);
}

.closing-copy > p:not(.section-label) {
  max-width: 570px;
  margin: 27px 0 0;
  color: rgba(255, 250, 240, 0.67);
}

.closing-copy .button {
  margin-top: 33px;
}

.closing-copy > small {
  display: block;
  margin-top: 14px;
  color: rgba(255, 250, 240, 0.43);
  font-size: 0.63rem;
}

.site-footer {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 20px max(22px, calc((100vw - var(--container)) / 2));
  background: var(--night-deep);
  color: rgba(255, 250, 240, 0.53);
}

.site-footer p {
  margin: 0;
  font-size: 0.68rem;
}

.site-footer p:first-child {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--ivory);
  font-family: var(--display);
  font-size: 0.92rem;
}

.site-footer a {
  color: var(--gold-pale);
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 1080px) {
  .hero-copy {
    width: min(620px, 58vw);
  }

  .hero-proof {
    right: 32px;
    width: 126px;
  }

  .calendar-story {
    grid-template-columns: minmax(220px, 0.52fr) minmax(0, 1.48fr);
    gap: 42px;
  }

  .door-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .piece-story {
    grid-template-columns: minmax(320px, 0.8fr) minmax(0, 1.2fr);
  }

  .piece-product img {
    width: 118%;
  }
}

@media (max-width: 820px) {
  h2 {
    font-size: clamp(2.7rem, 8vw, 4.4rem);
  }

  .site-header {
    min-height: 72px;
  }

  .menu-toggle {
    position: relative;
    z-index: 3;
    width: 44px;
    height: 44px;
    display: grid;
    align-content: center;
    gap: 5px;
    padding: 10px;
    border: 0;
    background: transparent;
    cursor: pointer;
  }

  .menu-toggle > span:not(.sr-only) {
    width: 22px;
    height: 1px;
    display: block;
    background: var(--ivory);
    transition: transform 180ms var(--ease), opacity 180ms ease;
  }

  .menu-toggle[aria-expanded="true"] > span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] > span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] > span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .site-nav {
    position: fixed;
    inset: 0;
    z-index: 2;
    display: grid;
    align-content: center;
    gap: 4px;
    padding: 90px max(28px, 9vw);
    background: rgba(6, 31, 27, 0.985);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 220ms ease, transform 220ms var(--ease);
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .site-nav a {
    min-height: 58px;
    border-bottom: 1px solid var(--line-light);
    color: var(--ivory);
    font-family: var(--display);
    font-size: 1.35rem;
    font-weight: 500;
  }

  .site-nav a::after {
    display: none;
  }

  .hero {
    min-height: 840px;
    align-items: start;
  }

  .hero-media img {
    object-position: 61% center;
  }

  .hero-shade {
    background:
      linear-gradient(180deg, rgba(3, 23, 20, 0.92) 0%, rgba(3, 23, 20, 0.62) 48%, rgba(3, 23, 20, 0.58) 100%),
      linear-gradient(90deg, rgba(3, 23, 20, 0.72), transparent 85%);
  }

  .hero-copy {
    width: min(670px, calc(100vw - 44px));
    padding: 123px 0 174px;
  }

  .hero h1 {
    max-width: 630px;
    font-size: clamp(3.8rem, 11.5vw, 6.3rem);
  }

  .hero-lead {
    max-width: 530px;
  }

  .hero-proof {
    right: 24px;
    bottom: 28px;
    width: 108px;
  }

  .hero-proof img {
    max-height: 196px;
  }

  .conversion-strip {
    justify-content: space-between;
  }

  .fact-bar {
    grid-template-columns: 1fr;
  }

  .fact-bar p,
  .fact-bar p:first-child {
    min-height: 78px;
    grid-template-columns: 100px 1fr;
    border: 0;
    border-bottom: 1px solid rgba(6, 31, 27, 0.22);
  }

  .fact-bar p:last-child {
    border-bottom: 0;
  }

  .ritual,
  .calendar-story,
  .experience,
  .piece-story,
  .waiting,
  .faq {
    grid-template-columns: 1fr;
  }

  .ritual {
    gap: 56px;
  }

  .ritual-photo img {
    min-height: 420px;
  }

  .ritual-copy {
    max-width: 680px;
  }

  .calendar-story {
    gap: 54px;
  }

  .calendar-intro {
    max-width: 680px;
  }

  .phone-proof {
    width: 220px;
    margin: 36px 0 -10px auto;
  }

  .calendar-demo {
    box-shadow: 12px 12px 0 rgba(226, 182, 111, 0.12);
  }

  .experience {
    gap: 60px;
  }

  .video-card {
    width: min(260px, 100%);
    justify-self: center;
  }

  .piece-story {
    gap: 38px;
  }

  .piece-product {
    min-height: 470px;
    order: 2;
  }

  .piece-product img {
    width: min(680px, 105%);
  }

  .piece-copy {
    order: 1;
  }

  .product-grid {
    grid-template-columns: none;
    grid-auto-columns: minmax(290px, 72vw);
    grid-auto-flow: column;
    gap: 18px;
    overflow-x: auto;
    padding-bottom: 20px;
    scroll-snap-type: x mandatory;
  }

  .product-grid figure {
    scroll-snap-align: start;
  }

  .waiting {
    gap: 40px;
  }

  .countdown-proof {
    width: 280px;
    margin: 0 auto -190px;
  }

  .offer-shell {
    grid-template-columns: 1fr;
    max-width: 680px;
  }

  .offer-card {
    min-height: auto;
  }

  .offer-benefits ol {
    grid-template-columns: 1fr;
  }

  .offer-benefits li,
  .offer-benefits li:nth-child(even) {
    min-height: 100px;
    padding-right: 0;
    padding-left: 0;
    border-left: 0;
  }

  .faq {
    gap: 50px;
  }

  .closing {
    min-height: 680px;
    align-items: end;
  }

  .closing-photo {
    object-position: 36% center;
  }

  .closing-shade {
    background: linear-gradient(0deg, rgba(3, 23, 20, 0.98) 0%, rgba(3, 23, 20, 0.76) 50%, rgba(3, 23, 20, 0.13) 100%);
  }

  .closing-copy {
    width: auto;
    margin: 0;
    padding: 270px 22px 70px;
  }
}

@media (max-width: 560px) {
  .section {
    padding-top: 74px;
    padding-bottom: 74px;
  }

  .hero {
    min-height: 844px;
  }

  .hero-media img {
    object-position: 66% center;
  }

  .hero-copy {
    width: calc(100vw - 44px);
    padding-top: 112px;
    padding-bottom: 190px;
  }

  .hero h1 {
    font-size: clamp(3.15rem, 15vw, 4.8rem);
  }

  .hero-lead {
    font-size: 0.96rem;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
    margin-top: 28px;
  }

  .illustrative-note {
    max-width: 205px;
  }

  .hero-proof {
    right: 22px;
    bottom: 30px;
    width: 84px;
    padding: 5px 5px 7px;
    box-shadow: 7px 7px 0 rgba(226, 182, 111, 0.88), 0 16px 30px rgba(0, 0, 0, 0.28);
  }

  .hero-proof img {
    max-height: 154px;
  }

  .hero-proof figcaption {
    padding-top: 6px;
  }

  .hero-proof span {
    display: none;
  }

  .conversion-strip {
    min-height: 116px;
    align-items: flex-start;
    flex-direction: column;
    gap: 2px;
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .conversion-strip a {
    font-size: 0.64rem;
  }

  .fact-bar p,
  .fact-bar p:first-child {
    grid-template-columns: 82px 1fr;
    padding-right: 10px;
    padding-left: 10px;
  }

  .ritual-photo::before {
    top: -12px;
    left: -12px;
  }

  .ritual-photo img {
    min-height: 390px;
    object-position: 45% center;
  }

  .ritual-notes div {
    grid-template-columns: 68px 1fr;
    gap: 14px;
  }

  .phone-proof {
    width: 190px;
  }

  .calendar-demo {
    margin-right: -7px;
    margin-left: -7px;
    padding: 22px 15px;
  }

  .calendar-demo-top {
    align-items: flex-start;
  }

  .calendar-status {
    min-height: 82px;
  }

  .calendar-status strong {
    font-size: 2.6rem;
  }

  .calendar-progress-copy {
    padding-top: 23px;
  }

  .door-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 7px;
    margin-top: 18px;
  }

  .door {
    aspect-ratio: 0.82;
  }

  .door::before {
    inset: 4px;
  }

  .door::after {
    right: 7px;
  }

  .door strong {
    font-size: 1.35rem;
  }

  .door span {
    font-size: 0.45rem;
  }

  .quick-days button {
    min-width: 0;
    flex: 1;
  }

  .mechanism {
    grid-template-columns: 1fr;
    gap: 0;
    padding-top: 17px;
  }

  .video-card {
    width: min(240px, 100%);
  }

  .mechanism li {
    grid-template-columns: 32px 1fr;
    gap: 1px 10px;
    padding: 12px 0;
    border-bottom: 1px solid var(--line);
  }

  .mechanism li > span {
    grid-row: 1 / 3;
  }

  .piece-product {
    min-height: 350px;
  }

  .piece-product::before {
    width: 83%;
  }

  .piece-product img {
    width: 116%;
  }

  .piece-copy li {
    grid-template-columns: 72px 1fr;
    gap: 15px;
  }

  .product-grid {
    grid-auto-columns: 82vw;
  }

  .product-stage {
    height: 340px;
  }

  .waiting-facts {
    grid-template-columns: 1fr;
  }

  .waiting-facts p,
  .waiting-facts p:first-child {
    min-height: 76px;
    padding: 14px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line-light);
  }

  .waiting-facts p:last-child {
    border-bottom: 0;
  }

  .countdown-proof {
    width: 230px;
    margin-bottom: -160px;
  }

  .access-heading {
    text-align: left;
  }

  .access-heading h2 {
    font-size: clamp(2.65rem, 13vw, 4rem);
  }

  .access-heading > p:last-child {
    margin-top: 25px;
  }

  .offer-shell {
    margin-top: 42px;
  }

  .offer-card,
  .offer-benefits {
    padding: 34px 24px;
  }

  .offer-price > strong {
    font-size: 5.3rem;
  }

  .button-offer {
    width: 100%;
  }

  .faq-list summary {
    font-size: 0.9rem;
  }

  .closing {
    min-height: 730px;
  }

  .closing-copy {
    padding-top: 320px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
    padding-top: 24px;
    padding-bottom: 24px;
  }
}

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

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

  .js .hero-media {
    clip-path: inset(0);
  }

  .js .hero-copy > * {
    opacity: 1;
    transform: none;
  }

  .js .hero-proof {
    opacity: 1;
    transform: none;
  }
}
