:root {
  --ink: #080706;
  --ink-2: #0d0b09;
  --ink-3: #15110d;
  --ivory: #f2eadc;
  --ivory-soft: #c8bcaa;
  --muted: #8f8374;
  --gold: #c99a55;
  --gold-light: #e7c98f;
  --gold-pale: #f3ddb1;
  --gold-deep: #6e4520;
  --line: rgba(226, 190, 128, .2);
  --line-soft: rgba(255, 255, 255, .09);
  --serif: "Cormorant Garamond", "Bodoni 72", Didot, Georgia, serif;
  --sans: "Manrope", "Avenir Next", "Segoe UI", sans-serif;
  --header-height: 88px;
  --page-pad: clamp(1.2rem, 4.2vw, 5.4rem);
  --section-pad: clamp(6.5rem, 11vw, 12rem);
  --ease-luxe: cubic-bezier(.16, 1, .3, 1);
}

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

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

body {
  margin: 0;
  min-width: 320px;
  color: var(--ivory);
  background:
    radial-gradient(circle at 86% -6%, rgba(137, 89, 31, .15), transparent 26rem),
    radial-gradient(circle at -4% 30%, rgba(104, 59, 18, .12), transparent 32rem),
    var(--ink);
  font-family: var(--sans);
  font-weight: 400;
  line-height: 1.65;
  overflow-x: clip;
}

body.menu-open,
body.dialog-open {
  overflow: hidden;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

button {
  color: inherit;
}

h1,
h2,
h3,
p,
figure,
blockquote {
  margin: 0;
}

ul {
  margin: 0;
  padding: 0;
}

::selection {
  color: #130d07;
  background: var(--gold-light);
}

:focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 1000;
  padding: .8rem 1rem;
  color: var(--ink);
  background: var(--ivory);
  transform: translateY(-160%);
  transition: transform .2s ease;
}

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

.no-js .intro {
  display: none;
}

.intro {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: grid;
  place-items: center;
  background: #050403;
  transition:
    opacity .8s var(--ease-luxe) .25s,
    visibility .8s var(--ease-luxe) .25s;
}

.intro.is-complete {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.intro-mark {
  display: grid;
  place-items: center;
  gap: .8rem;
  min-width: min(80vw, 24rem);
  color: var(--gold-light);
  animation: introRise 1.25s var(--ease-luxe) both;
}

.intro-mark span {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 6vw, 4.5rem);
  letter-spacing: .21em;
  line-height: 1;
}

.intro-mark i {
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-light), transparent);
  animation: introLine 1.15s var(--ease-luxe) .15s forwards;
}

.intro-mark small {
  color: rgba(242, 234, 220, .58);
  font-size: .6rem;
  letter-spacing: .38em;
  text-transform: uppercase;
}

.site-progress {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: 2px;
  pointer-events: none;
}

.site-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold-pale));
  transform: scaleX(0);
  transform-origin: left;
  will-change: transform;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 80;
  min-height: var(--header-height);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
  padding: 0 var(--page-pad);
  border-bottom: 1px solid transparent;
  transition:
    background .45s ease,
    border-color .45s ease,
    backdrop-filter .45s ease;
}

.site-header.is-scrolled {
  background: rgba(7, 6, 5, .8);
  border-color: var(--line-soft);
  backdrop-filter: blur(18px) saturate(120%);
}

.wordmark {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  font-family: var(--serif);
  font-size: 1.48rem;
  letter-spacing: .19em;
  line-height: 1;
}

.wordmark-symbol {
  color: var(--gold);
  font-family: var(--sans);
  font-size: .62rem;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(1.4rem, 2.7vw, 3rem);
}

.desktop-nav a {
  position: relative;
  padding: 1rem 0;
  color: rgba(242, 234, 220, .74);
  font-size: .62rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  transition: color .25s ease;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  inset: auto 0 .65rem;
  height: 1px;
  background: var(--gold-light);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .35s var(--ease-luxe);
}

.desktop-nav a:hover {
  color: var(--ivory);
}

.desktop-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta {
  justify-self: end;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: .85rem;
  padding: .75rem 1rem;
  border: 1px solid rgba(231, 201, 143, .44);
  background: rgba(231, 201, 143, .035);
  color: var(--gold-light);
  cursor: pointer;
  font-size: .58rem;
  letter-spacing: .19em;
  text-transform: uppercase;
  transition:
    color .3s ease,
    background .3s ease,
    border-color .3s ease;
}

.header-cta:hover {
  color: #171006;
  background: var(--gold-light);
  border-color: var(--gold-light);
}

.menu-toggle {
  display: none;
}

.mobile-menu {
  display: none;
}

.hero {
  min-height: 100svh;
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(24rem, 1.08fr);
  align-items: center;
  gap: clamp(2rem, 6vw, 7.5rem);
  padding: calc(var(--header-height) + 3rem) var(--page-pad) 5.5rem;
  isolation: isolate;
  overflow: hidden;
}

.hero-dust,
.hero-aurora,
.hero-grid,
.hero-word {
  position: absolute;
  pointer-events: none;
}

.hero-dust {
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  opacity: .55;
}

.hero-aurora {
  inset: -25%;
  z-index: -4;
  background:
    radial-gradient(circle at 72% 44%, rgba(164, 99, 30, .34), transparent 20%),
    radial-gradient(circle at 71% 49%, rgba(221, 170, 93, .14), transparent 34%),
    radial-gradient(circle at 12% 52%, rgba(93, 50, 18, .14), transparent 22%);
  filter: blur(24px);
  animation: auroraBreath 10s ease-in-out infinite alternate;
}

.hero-grid {
  inset: 0;
  z-index: -3;
  opacity: .13;
  background-image:
    linear-gradient(rgba(255, 255, 255, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .045) 1px, transparent 1px);
  background-size: 8.2vw 8.2vw;
  mask-image: linear-gradient(to bottom, black, transparent 86%);
}

.hero-word {
  z-index: -3;
  right: 38%;
  top: 45%;
  color: transparent;
  -webkit-text-stroke: 1px rgba(222, 179, 111, .11);
  font-family: var(--serif);
  font-size: min(84vw, 68rem);
  font-weight: 400;
  line-height: .65;
  transform: translate(50%, -50%);
  user-select: none;
}

.hero-copy {
  position: relative;
  z-index: 3;
  max-width: 44rem;
  padding-top: 1rem;
}

.overline {
  color: var(--gold-light);
  font-size: .59rem;
  font-weight: 500;
  letter-spacing: .32em;
  line-height: 1.5;
  text-transform: uppercase;
}

.hero h1 {
  margin-top: 1.6rem;
  font-family: var(--serif);
  font-size: clamp(4.7rem, 8vw, 9.2rem);
  font-weight: 400;
  letter-spacing: -.045em;
  line-height: .76;
}

.hero h1 span,
.hero h1 em {
  display: block;
}

.hero h1 em {
  margin-left: clamp(2rem, 6vw, 7rem);
  color: var(--gold-light);
  font-weight: 400;
}

.hero-lead {
  max-width: 37rem;
  margin-top: 2.7rem;
  color: rgba(242, 234, 220, .67);
  font-size: clamp(.96rem, 1.2vw, 1.09rem);
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.75rem;
  margin-top: 2.4rem;
}

.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 1rem 1.45rem;
  border: 1px solid transparent;
  cursor: pointer;
  font-size: .61rem;
  font-weight: 600;
  letter-spacing: .19em;
  text-transform: uppercase;
  transition:
    transform .35s var(--ease-luxe),
    box-shadow .35s ease,
    background .35s ease,
    color .35s ease;
}

.button-primary {
  position: relative;
  overflow: hidden;
  color: #1a1107;
  background: linear-gradient(135deg, #ab7637, #e8c689 58%, #bd8d4a);
  box-shadow: 0 18px 55px rgba(116, 68, 22, .26);
}

.button-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, transparent 10%, rgba(255, 255, 255, .55) 46%, transparent 76%);
  transform: translateX(-140%);
}

.button-primary:hover {
  box-shadow: 0 22px 70px rgba(170, 110, 44, .38);
}

.button-primary:hover::before {
  animation: buttonShine .9s ease;
}

.button i {
  position: relative;
  font-style: normal;
  font-size: .85rem;
}

.button span {
  position: relative;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  color: rgba(242, 234, 220, .74);
  font-size: .61rem;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.text-link i {
  position: relative;
  width: 3.2rem;
  height: 1px;
  overflow: hidden;
  background: rgba(231, 201, 143, .35);
}

.text-link i::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--gold-light);
  transform: translateX(-100%);
  transition: transform .45s var(--ease-luxe);
}

.text-link:hover i::after {
  transform: translateX(0);
}

.hero-meta {
  max-width: 36rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.3rem;
  margin-top: 4rem;
  padding-top: 1.3rem;
  border-top: 1px solid var(--line);
}

.hero-meta div {
  display: grid;
  gap: .35rem;
}

.hero-meta small {
  color: var(--gold);
  font-family: var(--serif);
  font-size: .9rem;
}

.hero-meta span {
  color: rgba(242, 234, 220, .48);
  font-size: .54rem;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.hero-stage {
  --mx: 50%;
  --my: 42%;
  position: relative;
  justify-self: center;
  width: min(46vw, 38rem);
  aspect-ratio: .76;
  display: grid;
  place-items: center;
  perspective: 1000px;
}

.stage-halo {
  position: absolute;
  width: 92%;
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at var(--mx) var(--my), rgba(247, 219, 166, .33), transparent 25%),
    radial-gradient(circle, rgba(184, 119, 45, .22), transparent 63%);
  filter: blur(8px);
  transition: background .1s linear;
}

.stage-frame {
  position: relative;
  z-index: 2;
  width: 78%;
  height: 93%;
  overflow: hidden;
  border: 1px solid rgba(231, 201, 143, .25);
  background: #16100b;
  box-shadow:
    0 70px 110px rgba(0, 0, 0, .52),
    0 0 0 14px rgba(255, 255, 255, .012);
  transform: rotateY(-3deg) rotateX(1deg);
  transition: transform .4s var(--ease-luxe);
}

.stage-frame::before,
.stage-frame::after {
  content: "";
  position: absolute;
  z-index: 4;
  pointer-events: none;
}

.stage-frame::before {
  inset: 0;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, .08), transparent 28%),
    linear-gradient(to top, rgba(0, 0, 0, .28), transparent 34%);
}

.stage-frame::after {
  inset: 1rem;
  border: 1px solid rgba(255, 255, 255, .08);
}

.stage-frame picture,
.stage-frame img {
  width: 100%;
  height: 100%;
}

.stage-frame img {
  object-fit: cover;
  object-position: 50% 44%;
  transform: scale(1.015);
}

.stage-shine {
  position: absolute;
  inset: -30%;
  z-index: 3;
  background: radial-gradient(circle at var(--mx) var(--my), rgba(255, 238, 206, .2), transparent 18%);
  mix-blend-mode: screen;
  pointer-events: none;
}

.stage-caption {
  position: absolute;
  z-index: 4;
  left: -1rem;
  bottom: 2rem;
  display: flex;
  align-items: center;
  gap: .75rem;
  color: rgba(242, 234, 220, .52);
  font-size: .5rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  transform: rotate(-90deg);
  transform-origin: left bottom;
}

.stage-caption i {
  width: 2rem;
  height: 1px;
  background: var(--gold);
}

.stage-seal {
  position: absolute;
  z-index: 5;
  right: -1rem;
  top: 12%;
  width: 6.4rem;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  align-content: center;
  gap: .2rem;
  border: 1px solid rgba(231, 201, 143, .36);
  border-radius: 50%;
  color: var(--gold-light);
  background: rgba(8, 7, 6, .76);
  box-shadow: 0 18px 40px rgba(0, 0, 0, .32);
  backdrop-filter: blur(10px);
  font-size: .48rem;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.stage-seal::before {
  content: "";
  position: absolute;
  inset: .35rem;
  border: 1px solid rgba(231, 201, 143, .18);
  border-radius: inherit;
}

.stage-seal strong {
  color: var(--gold);
  font-size: .68rem;
}

.hero-bottom {
  position: absolute;
  inset: auto var(--page-pad) 1.8rem;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: rgba(242, 234, 220, .4);
  font-size: .51rem;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.scroll-indicator {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
}

.scroll-indicator i {
  width: 4.2rem;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
  animation: scrollLine 2.2s ease-in-out infinite;
}

.brand-breath {
  min-height: 96svh;
  position: relative;
  display: grid;
  grid-template-columns: .35fr 1.65fr;
  align-content: center;
  gap: clamp(2rem, 8vw, 9rem);
  padding: var(--section-pad) var(--page-pad);
  overflow: hidden;
  isolation: isolate;
}

.breath-index {
  align-self: start;
  display: flex;
  align-items: center;
  gap: .7rem;
  color: rgba(242, 234, 220, .35);
  font-size: .55rem;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.breath-index i {
  width: 3.5rem;
  height: 1px;
  background: var(--gold);
}

.breath-copy {
  position: relative;
  z-index: 2;
  max-width: 73rem;
}

.breath-copy h2 {
  max-width: 62rem;
  margin-top: 1.6rem;
  font-family: var(--serif);
  font-size: clamp(3.6rem, 7.5vw, 9rem);
  font-weight: 400;
  letter-spacing: -.035em;
  line-height: .88;
}

.breath-emphasis {
  margin-top: 1rem;
  font-family: var(--serif);
  font-size: clamp(3.6rem, 7.5vw, 9rem);
  line-height: .88;
  text-align: right;
}

.breath-emphasis em {
  color: var(--gold-light);
  font-weight: 400;
}

.breath-note {
  position: absolute;
  z-index: 2;
  right: var(--page-pad);
  bottom: clamp(3rem, 7vw, 7rem);
  width: min(29rem, 42vw);
  padding-left: 1.5rem;
  border-left: 1px solid var(--gold);
}

.breath-note span {
  display: block;
  color: var(--gold-light);
  font-size: .56rem;
  letter-spacing: .24em;
  text-transform: uppercase;
}

.breath-note p {
  margin-top: .7rem;
  color: rgba(242, 234, 220, .54);
  font-size: .9rem;
}

.orbit {
  position: absolute;
  z-index: -1;
  border: 1px solid rgba(201, 154, 85, .1);
  border-radius: 50%;
}

.orbit-one {
  width: 58vw;
  aspect-ratio: 1;
  right: -10vw;
  top: -10vw;
}

.orbit-two {
  width: 34vw;
  aspect-ratio: 1;
  left: -12vw;
  bottom: -12vw;
}

.chapters {
  position: relative;
  height: 300svh;
  background: #050403;
}

.chapters-sticky {
  position: sticky;
  top: 0;
  height: 100svh;
  overflow: hidden;
  isolation: isolate;
}

.chapter-media {
  position: absolute;
  inset: 0;
  z-index: -3;
}

.chapter-image {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.05);
  transition:
    opacity 1s ease,
    transform 1.8s var(--ease-luxe);
}

.chapter-image.is-active {
  opacity: 1;
  transform: scale(1);
}

.chapter-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 36%;
  filter: saturate(.88) contrast(1.02);
}

.chapter-image:nth-child(2) img {
  object-position: center 27%;
}

.chapter-image:nth-child(3) img {
  object-position: center 39%;
}

.chapter-vignette {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 4, 3, .94) 0%, rgba(5, 4, 3, .78) 35%, rgba(5, 4, 3, .2) 66%, rgba(5, 4, 3, .5) 100%),
    linear-gradient(to top, rgba(5, 4, 3, .77), transparent 45%, rgba(5, 4, 3, .25));
}

.chapter-topline {
  position: absolute;
  inset: 2rem var(--page-pad) auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  color: rgba(242, 234, 220, .46);
  font-size: .5rem;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.chapter-topline i {
  height: 1px;
  background: rgba(255, 255, 255, .14);
}

.chapter-copy {
  width: min(48rem, 72vw);
  height: 100%;
  display: grid;
  align-items: center;
  padding: 5rem var(--page-pad);
}

.chapter-card {
  grid-area: 1 / 1;
  max-width: 45rem;
  opacity: 0;
  transform: translateY(36px);
  visibility: hidden;
  transition:
    opacity .65s ease,
    transform .85s var(--ease-luxe),
    visibility .65s ease;
}

.chapter-card.is-active {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}

.chapter-number {
  display: inline-flex;
  width: 3.5rem;
  height: 3.5rem;
  align-items: center;
  justify-content: center;
  margin-bottom: 2.5rem;
  border: 1px solid rgba(231, 201, 143, .32);
  border-radius: 50%;
  color: var(--gold-light);
  font-family: var(--serif);
  font-size: 1.2rem;
}

.chapter-card h2 {
  margin-top: 1.5rem;
  font-family: var(--serif);
  font-size: clamp(4rem, 7vw, 8.2rem);
  font-weight: 400;
  letter-spacing: -.04em;
  line-height: .82;
}

.chapter-card h2 em {
  color: var(--gold-light);
  font-weight: 400;
}

.chapter-card > p:last-child {
  max-width: 35rem;
  margin-top: 2.1rem;
  color: rgba(242, 234, 220, .63);
  font-size: clamp(.9rem, 1.1vw, 1.04rem);
  line-height: 1.8;
}

.chapter-nav {
  position: absolute;
  right: var(--page-pad);
  top: 50%;
  display: grid;
  gap: 1rem;
  transform: translateY(-50%);
}

.chapter-nav button {
  width: 2.5rem;
  height: 1rem;
  display: grid;
  align-items: center;
  justify-items: end;
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
}

.chapter-nav button span {
  width: 1.4rem;
  height: 1px;
  background: rgba(255, 255, 255, .32);
  transition:
    width .35s var(--ease-luxe),
    background .35s ease;
}

.chapter-nav button.is-active span {
  width: 2.5rem;
  background: var(--gold-light);
}

.object {
  position: relative;
  padding: var(--section-pad) var(--page-pad);
  overflow: hidden;
}

.object::before {
  content: "MONÉVRA";
  position: absolute;
  left: 50%;
  top: 52%;
  z-index: -2;
  color: transparent;
  -webkit-text-stroke: 1px rgba(231, 201, 143, .06);
  font-family: var(--serif);
  font-size: min(15vw, 15rem);
  letter-spacing: .13em;
  transform: translate(-50%, -50%);
  white-space: nowrap;
}

.object-heading {
  max-width: 60rem;
  margin: 0 auto;
  text-align: center;
}

.object-heading h2 {
  margin-top: 1.4rem;
  font-family: var(--serif);
  font-size: clamp(3.8rem, 6.8vw, 7.8rem);
  font-weight: 400;
  letter-spacing: -.035em;
  line-height: .86;
}

.object-heading > p:last-child {
  max-width: 43rem;
  margin: 1.8rem auto 0;
  color: rgba(242, 234, 220, .55);
  font-size: .95rem;
}

.object-layout {
  max-width: 90rem;
  display: grid;
  grid-template-columns: 1fr minmax(22rem, .92fr) 1fr;
  align-items: center;
  gap: clamp(1.5rem, 4vw, 5rem);
  margin: clamp(4rem, 8vw, 8rem) auto 0;
}

.object-notes {
  display: grid;
  gap: clamp(3rem, 8vw, 7rem);
}

.object-notes article {
  position: relative;
  max-width: 17rem;
}

.object-notes-left article {
  margin-left: auto;
  text-align: right;
}

.object-notes-right article {
  margin-right: auto;
}

.object-notes article > span {
  display: block;
  margin-bottom: .7rem;
  color: var(--gold);
  font-family: var(--serif);
  font-size: .95rem;
}

.object-notes article h3 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 2.4vw, 2.5rem);
  font-weight: 400;
  line-height: 1;
}

.object-notes article p {
  margin-top: .8rem;
  color: rgba(242, 234, 220, .46);
  font-size: .78rem;
  line-height: 1.7;
}

.object-notes-left article::after,
.object-notes-right article::before {
  content: "";
  position: absolute;
  top: 1.8rem;
  width: clamp(2rem, 5vw, 5rem);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}

.object-notes-left article::after {
  right: calc(-1 * clamp(2.5rem, 6vw, 6rem));
}

.object-notes-right article::before {
  left: calc(-1 * clamp(2.5rem, 6vw, 6rem));
  transform: rotate(180deg);
}

.object-stage {
  position: relative;
  min-height: 42rem;
  display: grid;
  place-items: center;
}

.object-stage picture {
  position: relative;
  z-index: 2;
  width: 82%;
  height: 88%;
  overflow: hidden;
  border: 1px solid rgba(231, 201, 143, .16);
  box-shadow: 0 45px 100px rgba(0, 0, 0, .48);
}

.object-stage picture::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, .2), transparent 40%);
  pointer-events: none;
}

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

.object-rings,
.object-rings i {
  position: absolute;
  inset: 50% auto auto 50%;
  border: 1px solid rgba(201, 154, 85, .12);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.object-rings {
  width: 118%;
  aspect-ratio: 1;
}

.object-rings i:nth-child(1) {
  width: 78%;
  aspect-ratio: 1;
}

.object-rings i:nth-child(2) {
  width: 48%;
  aspect-ratio: 1;
}

.object-rings i:nth-child(3) {
  width: 16%;
  aspect-ratio: 1;
  background: rgba(201, 154, 85, .08);
}

.object-coordinate {
  position: absolute;
  z-index: 3;
  color: rgba(242, 234, 220, .32);
  font-size: .46rem;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.object-coordinate-a {
  left: 0;
  top: 13%;
}

.object-coordinate-b {
  right: 0;
  bottom: 12%;
}

.composition {
  padding: var(--section-pad) var(--page-pad);
  border-top: 1px solid var(--line-soft);
  background:
    linear-gradient(135deg, rgba(113, 68, 25, .08), transparent 35%),
    #0b0907;
}

.composition-copy {
  max-width: 67rem;
}

.composition-copy h2 {
  max-width: 60rem;
  margin-top: 1.4rem;
  font-family: var(--serif);
  font-size: clamp(3.8rem, 6.6vw, 7.4rem);
  font-weight: 400;
  letter-spacing: -.035em;
  line-height: .86;
}

.composition-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: clamp(4rem, 7vw, 7rem);
  background: var(--line);
  border: 1px solid var(--line);
}

.composition-card {
  min-height: 30rem;
  position: relative;
  padding: clamp(2rem, 4vw, 4rem);
  background: var(--ink-2);
  transition:
    background .4s ease,
    transform .45s var(--ease-luxe);
}

.composition-card:hover {
  z-index: 2;
  background: #120e0a;
  transform: translateY(-8px);
}

.composition-number {
  color: rgba(231, 201, 143, .2);
  font-family: var(--serif);
  font-size: clamp(4rem, 7vw, 7rem);
  line-height: 1;
}

.composition-line {
  width: 100%;
  height: 1px;
  margin: 1.6rem 0 2rem;
  background: linear-gradient(90deg, var(--gold), transparent);
}

.composition-label {
  color: var(--gold);
  font-size: .53rem;
  letter-spacing: .26em;
  text-transform: uppercase;
}

.composition-card h3 {
  margin-top: 1.2rem;
  font-family: var(--serif);
  font-size: clamp(2.5rem, 4vw, 4.2rem);
  font-weight: 400;
  line-height: .9;
}

.composition-card > p:last-child {
  max-width: 20rem;
  margin-top: 1.5rem;
  color: rgba(242, 234, 220, .5);
  font-size: .8rem;
}

.composition-disclaimer {
  max-width: 58rem;
  margin-top: 1.4rem;
  color: rgba(242, 234, 220, .3);
  font-size: .66rem;
}

.editorial {
  padding: var(--section-pad) var(--page-pad);
}

.editorial-heading {
  max-width: 56rem;
  margin-left: auto;
}

.editorial-heading h2 {
  margin-top: 1.35rem;
  font-family: var(--serif);
  font-size: clamp(4rem, 7vw, 8.5rem);
  font-weight: 400;
  letter-spacing: -.04em;
  line-height: .78;
}

.editorial-heading h2 em {
  color: var(--gold-light);
  font-weight: 400;
}

.editorial-heading > p:last-child {
  max-width: 30rem;
  margin: 1.7rem 0 0 auto;
  color: rgba(242, 234, 220, .48);
}

.editorial-grid {
  max-width: 94rem;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  grid-template-rows: auto auto;
  gap: clamp(1rem, 2vw, 2rem);
  align-items: start;
  margin: clamp(4rem, 8vw, 8rem) auto 0;
}

.editorial-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .08);
  background: #0d0a08;
  transform-style: preserve-3d;
  transition:
    transform .2s ease,
    border-color .4s ease;
}

.editorial-card:hover {
  border-color: rgba(231, 201, 143, .34);
}

.editorial-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(4, 3, 2, .74), transparent 34%),
    linear-gradient(115deg, rgba(255, 255, 255, .07), transparent 25%);
  pointer-events: none;
}

.editorial-card picture,
.editorial-card img {
  width: 100%;
  height: 100%;
}

.editorial-card img {
  object-fit: cover;
  transition: transform 1s var(--ease-luxe);
}

.editorial-card:hover img {
  transform: scale(1.035);
}

.editorial-card figcaption {
  position: absolute;
  z-index: 3;
  inset: auto 1.4rem 1.2rem;
  display: flex;
  align-items: center;
  gap: .9rem;
  color: rgba(242, 234, 220, .7);
  font-size: .52rem;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.editorial-card figcaption span {
  color: var(--gold-light);
  font-family: var(--serif);
  font-size: .9rem;
}

.editorial-card-a {
  grid-row: 1 / 3;
  height: min(76rem, 100vw);
}

.editorial-card-a img {
  object-position: center 30%;
}

.editorial-card-b {
  height: min(42rem, 52vw);
  margin-top: 7rem;
}

.editorial-card-b img {
  object-position: center 38%;
}

.editorial-card-c {
  width: 72%;
  height: min(38rem, 46vw);
  margin-left: auto;
}

.editorial-card-c img {
  object-position: center 43%;
}

.invitation {
  min-height: 100svh;
  position: relative;
  display: grid;
  place-items: center;
  padding: var(--section-pad) var(--page-pad);
  isolation: isolate;
  overflow: hidden;
}

.invitation-media,
.invitation-overlay {
  position: absolute;
  inset: 0;
}

.invitation-media {
  z-index: -3;
}

.invitation-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  transform: scale(1.02);
}

.invitation-overlay {
  z-index: -2;
  background:
    radial-gradient(circle at center, rgba(5, 4, 3, .28), rgba(5, 4, 3, .9) 74%),
    linear-gradient(90deg, rgba(5, 4, 3, .74), rgba(5, 4, 3, .2), rgba(5, 4, 3, .74));
}

.invitation-content {
  max-width: 67rem;
  text-align: center;
}

.invitation-mark {
  width: 4.5rem;
  margin: 0 auto 1.5rem;
  filter: drop-shadow(0 0 26px rgba(201, 154, 85, .4));
}

.invitation-content h2 {
  margin-top: 1.4rem;
  font-family: var(--serif);
  font-size: clamp(4rem, 7.5vw, 9rem);
  font-weight: 400;
  letter-spacing: -.04em;
  line-height: .8;
}

.invitation-content h2 em {
  color: var(--gold-light);
  font-weight: 400;
}

.invitation-content > p:not(.overline) {
  max-width: 38rem;
  margin: 2rem auto 2.5rem;
  color: rgba(242, 234, 220, .65);
}

.invitation-footer {
  position: absolute;
  inset: auto var(--page-pad) 2rem;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  width: calc(100% - 2 * var(--page-pad));
  color: rgba(242, 234, 220, .38);
  font-size: .5rem;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.invitation-footer i {
  height: 1px;
  background: rgba(255, 255, 255, .13);
}

.newsletter {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: end;
  gap: clamp(3rem, 9vw, 10rem);
  padding: var(--section-pad) var(--page-pad);
  border-top: 1px solid var(--line);
}

.newsletter h2 {
  margin-top: 1.2rem;
  font-family: var(--serif);
  font-size: clamp(3.7rem, 6vw, 7rem);
  font-weight: 400;
  letter-spacing: -.035em;
  line-height: .86;
}

.newsletter-form label {
  display: block;
  color: var(--gold-light);
  font-size: .55rem;
  letter-spacing: .24em;
  text-transform: uppercase;
}

.newsletter-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  margin-top: .7rem;
  border-bottom: 1px solid rgba(242, 234, 220, .25);
}

.newsletter-row input {
  min-width: 0;
  padding: 1.1rem 0;
  border: 0;
  outline: 0;
  color: var(--ivory);
  background: transparent;
  font-size: 1rem;
}

.newsletter-row input::placeholder {
  color: rgba(242, 234, 220, .25);
}

.newsletter-row button {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  padding: .4rem .7rem;
  border: 0;
  color: var(--gold-light);
  background: none;
  cursor: pointer;
  font-size: .58rem;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.newsletter-form > small {
  display: block;
  margin-top: .8rem;
  color: rgba(242, 234, 220, .28);
  font-size: .62rem;
}

.form-status {
  min-height: 1.3rem;
  margin-top: .55rem;
  color: var(--gold-light);
  font-size: .68rem;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr 1.3fr 1fr;
  align-items: end;
  gap: 2rem;
  padding: 4rem var(--page-pad);
  border-top: 1px solid var(--line-soft);
  background: #050403;
}

.footer-wordmark {
  display: grid;
  justify-items: start;
  gap: .15rem;
}

.footer-wordmark > span {
  color: var(--gold);
  font-size: .55rem;
}

.footer-wordmark strong {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: .18em;
}

.footer-wordmark small {
  color: rgba(242, 234, 220, .35);
  font-size: .5rem;
  letter-spacing: .24em;
  text-transform: uppercase;
}

.footer-center {
  text-align: center;
}

.footer-center > p {
  color: var(--gold-light);
  font-family: var(--serif);
  font-size: 1.15rem;
  letter-spacing: .08em;
}

.footer-center nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: .8rem 1.6rem;
  margin-top: 1rem;
}

.footer-center a {
  color: rgba(242, 234, 220, .4);
  font-size: .56rem;
  letter-spacing: .13em;
  text-transform: uppercase;
  transition: color .25s ease;
}

.footer-center a:hover {
  color: var(--ivory);
}

.footer-copy {
  justify-self: end;
  color: rgba(242, 234, 220, .28);
  font-size: .58rem;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.preview-dialog {
  width: min(70rem, calc(100vw - 2rem));
  max-height: calc(100svh - 2rem);
  padding: 0;
  border: 1px solid rgba(231, 201, 143, .3);
  color: var(--ivory);
  background: #0c0907;
  box-shadow: 0 50px 140px rgba(0, 0, 0, .72);
}

.preview-dialog[open] {
  animation: dialogIn .55s var(--ease-luxe);
}

.preview-dialog::backdrop {
  background: rgba(3, 2, 1, .82);
  backdrop-filter: blur(10px);
}

.dialog-close {
  position: absolute;
  z-index: 3;
  right: 1.2rem;
  top: 1.2rem;
  width: 2.7rem;
  height: 2.7rem;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 50%;
  background: rgba(5, 4, 3, .45);
  cursor: pointer;
}

.dialog-close span {
  position: absolute;
  width: 1rem;
  height: 1px;
  background: var(--ivory);
}

.dialog-close span:first-child {
  transform: rotate(45deg);
}

.dialog-close span:last-child {
  transform: rotate(-45deg);
}

.dialog-brand {
  position: absolute;
  inset: auto 1rem -2rem auto;
  color: transparent;
  -webkit-text-stroke: 1px rgba(231, 201, 143, .08);
  font-family: var(--serif);
  font-size: clamp(4rem, 12vw, 10rem);
  letter-spacing: .1em;
  line-height: .7;
  pointer-events: none;
}

.dialog-content {
  position: relative;
  z-index: 2;
  padding: clamp(2rem, 6vw, 5rem);
}

.dialog-content h2 {
  max-width: 49rem;
  margin-top: 1.3rem;
  font-family: var(--serif);
  font-size: clamp(3rem, 5.7vw, 6.4rem);
  font-weight: 400;
  letter-spacing: -.035em;
  line-height: .86;
}

.dialog-content > p:not(.overline) {
  max-width: 42rem;
  margin-top: 1.5rem;
  color: rgba(242, 234, 220, .53);
}

.dialog-content form {
  position: relative;
  display: grid;
  gap: 1.2rem;
  margin-top: 2.2rem;
}

.field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.dialog-content label {
  display: grid;
  gap: .45rem;
}

.dialog-content label > span {
  color: var(--gold-light);
  font-size: .54rem;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.dialog-content label > span small {
  color: rgba(242, 234, 220, .3);
  font-size: .48rem;
}

.dialog-content input:not([type="checkbox"]),
.dialog-content textarea,
.dialog-content select {
  width: 100%;
  padding: .95rem 1rem;
  border: 1px solid rgba(231, 201, 143, .2);
  outline: 0;
  color: var(--ivory);
  background: #070604;
  resize: vertical;
}

.dialog-content select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--gold) 50%),
    linear-gradient(135deg, var(--gold) 50%, transparent 50%);
  background-position:
    calc(100% - 17px) calc(50% - 2px),
    calc(100% - 12px) calc(50% - 2px);
  background-size: 5px 5px;
  background-repeat: no-repeat;
}

.dialog-content input:focus,
.dialog-content textarea:focus,
.dialog-content select:focus {
  border-color: var(--gold);
}

.consent {
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: .8rem !important;
}

.consent input {
  width: 1rem;
  height: 1rem;
  margin: .2rem 0 0;
  accent-color: var(--gold);
}

.consent span {
  color: rgba(242, 234, 220, .46) !important;
  font-size: .63rem !important;
  letter-spacing: 0 !important;
  line-height: 1.5;
  text-transform: none !important;
}

.reveal {
  opacity: 1;
  transform: none;
}

.js .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity .9s ease,
    transform 1s var(--ease-luxe);
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

@keyframes introLine {
  to {
    width: 100%;
  }
}

@keyframes auroraBreath {
  from {
    transform: scale(.96) translate3d(-1%, 0, 0);
    opacity: .8;
  }
  to {
    transform: scale(1.06) translate3d(1%, -1%, 0);
    opacity: 1;
  }
}

@keyframes scrollLine {
  0%,
  100% {
    transform: scaleX(.35);
    transform-origin: left;
    opacity: .4;
  }
  50% {
    transform: scaleX(1);
    opacity: 1;
  }
}

@keyframes buttonShine {
  to {
    transform: translateX(150%);
  }
}

@keyframes dialogIn {
  from {
    opacity: 0;
    transform: translateY(24px) scale(.985);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 1120px) {
  :root {
    --header-height: 78px;
  }

  .site-header {
    grid-template-columns: 1fr auto;
  }

  .desktop-nav,
  .header-cta {
    display: none;
  }

  .menu-toggle {
    justify-self: end;
    width: 44px;
    height: 44px;
    display: grid;
    place-content: center;
    gap: 6px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, .18);
    background: rgba(7, 6, 5, .32);
    cursor: pointer;
  }

  .menu-toggle span {
    width: 18px;
    height: 1px;
    background: var(--ivory);
    transition: transform .3s var(--ease-luxe);
  }

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

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

  .mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 70;
    display: grid;
    grid-template-rows: auto 1fr auto;
    padding: calc(var(--header-height) + 2rem) var(--page-pad) 2.5rem;
    background:
      radial-gradient(circle at 80% 20%, rgba(145, 91, 31, .18), transparent 26rem),
      #070605;
  }

  .mobile-menu[hidden] {
    display: none;
  }

  .mobile-menu-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 1.3rem;
    border-bottom: 1px solid var(--line);
    color: var(--gold-light);
    font-family: var(--serif);
    letter-spacing: .15em;
  }

  .mobile-menu-top small {
    color: rgba(242, 234, 220, .35);
    font-family: var(--sans);
    font-size: .48rem;
    letter-spacing: .2em;
    text-transform: uppercase;
  }

  .mobile-menu nav {
    display: grid;
    align-content: center;
    gap: .8rem;
  }

  .mobile-menu nav a {
    display: grid;
    grid-template-columns: 2.5rem 1fr;
    align-items: baseline;
    gap: 1rem;
    padding: .65rem 0;
    font-family: var(--serif);
    font-size: clamp(2.8rem, 8vw, 5.5rem);
    line-height: 1;
  }

  .mobile-menu nav em {
    color: var(--gold);
    font-family: var(--sans);
    font-size: .55rem;
    font-style: normal;
    letter-spacing: .2em;
  }

  .mobile-menu > p {
    color: rgba(242, 234, 220, .35);
    font-size: .52rem;
    letter-spacing: .22em;
    text-transform: uppercase;
  }

  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(22rem, .9fr);
    gap: 2rem;
  }

  .hero-stage {
    width: min(46vw, 33rem);
  }

  .hero-meta {
    display: none;
  }

  .object-layout {
    grid-template-columns: .8fr 1.2fr .8fr;
  }

  .object-notes-left article::after,
  .object-notes-right article::before {
    display: none;
  }
}

@media (max-width: 820px) {
  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-top: calc(var(--header-height) + 4.5rem);
    padding-bottom: 6.5rem;
  }

  .hero-copy {
    max-width: none;
  }

  .hero h1 {
    font-size: clamp(4.3rem, 16vw, 7.3rem);
  }

  .hero h1 em {
    margin-left: 1.2rem;
  }

  .hero-stage {
    width: min(90vw, 34rem);
    margin-top: 1.5rem;
  }

  .hero-bottom {
    position: relative;
    inset: auto;
    grid-column: 1;
    margin-top: 1.5rem;
  }

  .hero-bottom > p {
    display: none;
  }

  .brand-breath {
    min-height: 82svh;
    grid-template-columns: 1fr;
    align-content: center;
  }

  .breath-index {
    margin-bottom: 1rem;
  }

  .breath-copy h2,
  .breath-emphasis {
    font-size: clamp(3.5rem, 13vw, 6.5rem);
  }

  .breath-note {
    position: relative;
    right: auto;
    bottom: auto;
    width: min(34rem, 100%);
    margin: 3rem 0 0 auto;
  }

  .chapters {
    height: auto;
  }

  .chapters-sticky {
    position: relative;
    height: auto;
    display: grid;
    gap: 1px;
    overflow: visible;
    background: var(--line-soft);
  }

  .chapter-media,
  .chapter-topline,
  .chapter-copy,
  .chapter-nav {
    display: contents;
  }

  .chapter-image {
    position: relative;
    inset: auto;
    grid-column: 1;
    width: 100%;
    height: 74svh;
    opacity: 1;
    transform: none;
    transition: none;
  }

  .chapter-image:nth-child(1) {
    grid-row: 1;
  }

  .chapter-image:nth-child(2) {
    grid-row: 3;
  }

  .chapter-image:nth-child(3) {
    grid-row: 5;
  }

  .chapter-image img {
    object-position: center 32%;
  }

  .chapter-vignette {
    display: none;
  }

  .chapter-card {
    position: relative;
    grid-column: 1;
    max-width: none;
    padding: 3.5rem var(--page-pad) 4rem;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: var(--ink-2);
  }

  .chapter-card:nth-child(1) {
    grid-row: 2;
  }

  .chapter-card:nth-child(2) {
    grid-row: 4;
  }

  .chapter-card:nth-child(3) {
    grid-row: 6;
  }

  .chapter-card h2 {
    font-size: clamp(3.7rem, 12vw, 6.8rem);
  }

  .object-layout {
    grid-template-columns: 1fr;
  }

  .object-stage {
    grid-row: 1;
    min-height: 40rem;
  }

  .object-notes {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .object-notes-left {
    grid-row: 2;
  }

  .object-notes-right {
    grid-row: 3;
  }

  .object-notes-left article,
  .object-notes-right article {
    margin: 0;
    text-align: left;
  }

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

  .composition-card {
    min-height: 22rem;
  }

  .editorial-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .editorial-card-a,
  .editorial-card-b,
  .editorial-card-c {
    width: 100%;
    height: min(44rem, 126vw);
    grid-row: auto;
    margin: 0;
  }

  .newsletter {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .site-footer {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .footer-wordmark {
    justify-items: center;
  }

  .footer-copy {
    justify-self: center;
  }
}

@media (max-width: 560px) {
  :root {
    --page-pad: 1.15rem;
    --section-pad: 6rem;
  }

  .wordmark {
    font-size: 1.25rem;
  }

  .hero {
    padding-top: calc(var(--header-height) + 3.2rem);
  }

  .hero h1 {
    font-size: clamp(4rem, 20vw, 5.8rem);
  }

  .hero-lead {
    margin-top: 2rem;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 1.2rem;
  }

  .button {
    width: 100%;
  }

  .text-link {
    justify-content: center;
  }

  .hero-stage {
    width: calc(100vw - 2rem);
    aspect-ratio: .76;
  }

  .stage-frame {
    width: 85%;
  }

  .stage-seal {
    right: -.2rem;
    width: 5.7rem;
  }

  .stage-caption {
    left: .2rem;
  }

  .breath-copy h2,
  .breath-emphasis {
    font-size: clamp(3.25rem, 17vw, 5.2rem);
  }

  .breath-emphasis {
    text-align: left;
  }

  .breath-note {
    margin-left: 0;
  }

  .chapter-image {
    height: 67svh;
  }

  .chapter-card {
    padding-top: 3rem;
  }

  .chapter-card h2 {
    font-size: clamp(3.3rem, 16vw, 5rem);
  }

  .object-heading h2,
  .composition-copy h2,
  .editorial-heading h2,
  .invitation-content h2,
  .newsletter h2 {
    font-size: clamp(3.2rem, 15vw, 5rem);
  }

  .object-stage {
    min-height: 32rem;
  }

  .object-stage picture {
    width: 90%;
  }

  .object-notes {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .composition-card {
    padding: 2rem;
  }

  .editorial-card-a,
  .editorial-card-b,
  .editorial-card-c {
    height: 130vw;
  }

  .invitation {
    min-height: 88svh;
  }

  .invitation-media img {
    object-position: 42% 38%;
  }

  .invitation-footer {
    display: none;
  }

  .newsletter-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .newsletter-row button {
    justify-content: space-between;
    padding: .8rem 0;
    border-top: 1px solid rgba(242, 234, 220, .12);
  }

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

  .dialog-content {
    padding: 3rem 1.25rem 2rem;
  }

  .dialog-content h2 {
    font-size: clamp(2.8rem, 13vw, 4.7rem);
  }
}

@media (pointer: coarse) {
  .magnetic {
    transform: none !important;
  }

  .editorial-card {
    transform: none !important;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation: none !important;
    transition-duration: .01ms !important;
  }

  .intro {
    display: none;
  }

  .reveal,
  .js .reveal {
    opacity: 1 !important;
    transform: none !important;
  }

  .chapter-image,
  .chapter-card {
    transition: none !important;
  }
}
