/* ==========================================================
   HOUSE OF ATURAE — the first collection, Winter 2026
   Palette: Noir Fondé / Ivoire / Encre / Champagne / Cendre
   Type: Cinzel (display + labels) · Libre Caslon Text (body)
   Motion: one ease, three durations (300 / 700 / 1100ms)
   ========================================================== */

:root {
  --noir:      #0B0A08;
  --ivoire:    #F4EFE4;
  --encre:     #211D18;
  --champagne: #C9A24B;   /* matched to the embroidered gold in the brand photos */
  --cendre:    #8B8578;
  --ivoire-55: rgba(244, 239, 228, 0.55);
  --ivoire-72: rgba(244, 239, 228, 0.72);

  --display: "Cinzel", serif;
  --body: "Libre Caslon Text", serif;

  --pad: clamp(20px, 4vw, 64px);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --t-state: 300ms;
  --t-reveal: 700ms;
  --t-section: 1100ms;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: auto; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }

body {
  background: var(--noir);
  color: var(--ivoire);
  font-family: var(--body);
  font-size: 12px;
  line-height: 1.7;
  letter-spacing: 0.04em;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body[data-state="loading"] { overflow: hidden; }

/* site-wide grain — printed on textured stock */
body::after {
  content: ""; position: fixed; inset: -100%; z-index: 90;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
  opacity: 0.05;
  pointer-events: none;
  animation: grain 8s steps(10) infinite;
}
@keyframes grain {
  0%, 100% { transform: translate(0, 0); }
  10% { transform: translate(-5%, -10%); } 20% { transform: translate(-15%, 5%); }
  30% { transform: translate(7%, -25%); } 40% { transform: translate(-5%, 25%); }
  50% { transform: translate(-15%, 10%); } 60% { transform: translate(15%, 0%); }
  70% { transform: translate(0%, 15%); } 80% { transform: translate(3%, 35%); }
  90% { transform: translate(-10%, 10%); }
}

a { color: inherit; text-decoration: none; }
button { font: inherit; background: none; border: none; cursor: pointer; color: inherit; }
img, video, svg { display: block; max-width: 100%; }
::selection { background: var(--champagne); color: var(--noir); }

/* ---------- primitives ---------- */

.section-eyebrow {
  font-family: var(--display);
  font-size: 10px;
  letter-spacing: 0.55em;
  text-transform: uppercase;
  color: var(--champagne);
  margin-bottom: 14px;
}

.section-title {
  font-family: var(--display);
  font-weight: 420;
  font-size: clamp(30px, 3.6vw, 56px);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1.05;
}

.btn {
  display: inline-block;
  padding: 14px 36px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-family: var(--display);
  font-size: 10px;
  letter-spacing: 0.34em;
  text-indent: 0.34em;
  text-transform: uppercase;
  transition: background var(--t-state) var(--ease), color var(--t-state) var(--ease);
}
.btn:hover { background: var(--encre); color: var(--ivoire); border-color: var(--encre); }
.btn--light:hover { background: var(--ivoire); color: var(--noir); border-color: var(--ivoire); }

/* ---------- Æ seal ---------- */

.seal { color: var(--champagne); --seal-off: 53.6px; }
.seal.seal--closed { --seal-off: 0px; }

/* ---------- preloader ---------- */

.preloader {
  position: fixed; inset: 0; z-index: 100;
  background: var(--noir);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 30px;
  color: var(--ivoire);
}
.preloader__mark { display: flex; flex-direction: column; align-items: center; gap: 10px; }
.preloader__eyebrow {
  font-family: var(--display);
  font-size: 10px; letter-spacing: 0.55em; text-indent: 0.55em;
  color: var(--cendre);
}
.preloader__name {
  font-family: var(--display);
  font-weight: 420;
  font-size: clamp(34px, 5vw, 56px);
  letter-spacing: 0.14em; text-indent: 0.14em;
}
.preloader__bar {
  width: min(280px, 50vw); height: 1px;
  background: rgba(244, 239, 228, 0.15);
  overflow: hidden;
}
.preloader__bar span {
  display: block; width: 100%; height: 100%;
  background: var(--champagne);
  transform: scaleX(0); transform-origin: left;
}

/* ---------- announcement bar ---------- */

.announce {
  position: relative; z-index: 60;
  background: var(--noir); color: var(--ivoire-55);
  border-bottom: 1px solid rgba(244, 239, 228, 0.08);
  font-family: var(--display);
  font-size: 9px; letter-spacing: 0.34em; text-transform: uppercase;
  padding: 10px 0;
  overflow: hidden; white-space: nowrap;
}
.announce__track {
  display: inline-flex; align-items: center; gap: 3.5em;
  padding-left: 100vw;
  animation: announce-scroll 30s linear infinite;
}
.announce__track i { font-style: normal; color: var(--champagne); font-size: 10px; }
@keyframes announce-scroll { to { transform: translateX(-50%); } }

/* ---------- header ---------- */

.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: start;
  padding: 24px var(--pad) 14px;
  color: var(--ivoire);
  transition: background var(--t-reveal) var(--ease), color var(--t-reveal) var(--ease),
              padding var(--t-reveal) var(--ease);
}
.header::after {
  content: ""; position: absolute; left: var(--pad); right: var(--pad); bottom: 0;
  height: 1px; background: currentColor; opacity: 0;
  transition: opacity var(--t-reveal) var(--ease);
}
.header__side { display: flex; gap: 30px; padding-top: 16px; }
.header__side--right { justify-content: flex-end; }
.header__link {
  font-family: var(--display);
  font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase;
  font-variation-settings: "wght" 400;
  transition: font-variation-settings var(--t-state) var(--ease);
  white-space: nowrap;
}
/* mobile: the house keeps one word in the corner, nothing wraps */
@media (max-width: 700px) {
  .header { padding-left: 18px; padding-right: 18px; }
  .header__side { gap: 16px; }
  .header__side--left .header__link:first-child { display: none; }
  .header__side--right .header__link:not(.header__link--cta) { display: none; }
}
.header__link:hover { font-variation-settings: "wght" 700; }
.header__link--cta { color: var(--champagne); }

/* over the hero the giant wordmark IS the logo; the header mark appears on scroll */
.header__logo {
  text-align: center; display: block;
  opacity: 0; pointer-events: none;
  transition: opacity var(--t-reveal) var(--ease);
}
body.header--solid .header__logo { opacity: 1; pointer-events: auto; }
.header__logo-house {
  display: block;
  font-family: var(--display);
  font-size: 10px; letter-spacing: 0.55em; text-indent: 0.55em;
  margin-bottom: 4px;
  color: var(--cendre);
  transition: font-size var(--t-reveal) var(--ease);
}
.header__logo-name {
  display: block;
  font-family: var(--display); font-weight: 430;
  font-size: clamp(30px, 4.4vw, 54px);
  letter-spacing: 0.16em; text-indent: 0.16em;
  line-height: 0.95;
  transition: font-size var(--t-reveal) var(--ease);
}

body.header--solid .header {
  color: var(--encre);
  background: rgba(244, 239, 228, 0.94);
  backdrop-filter: blur(12px);
  padding-top: 12px; padding-bottom: 10px;
}
body.header--solid .header::after { opacity: 0.16; }
body.header--solid .header__logo-name { font-size: clamp(20px, 2.2vw, 27px); }
body.header--solid .header__logo-house { font-size: 7px; margin-bottom: 2px; }
body.header--solid .header__link--cta { color: #8A6F3C; }

/* ---------- hero ---------- */

.hero {
  position: relative;
  height: 100svh;
  min-height: 620px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  background:
    radial-gradient(ellipse 52% 42% at 50% 46%, rgba(201, 162, 75, 0.09) 0%, transparent 68%),
    var(--noir);
  color: var(--ivoire);
}
.hero__canvas { position: absolute; inset: 0; width: 100%; height: 100%; }
/* vignette: the void closes in at the edges only — the mark owns the center */
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: radial-gradient(ellipse 130% 110% at 50% 50%, transparent 52%, rgba(11, 10, 8, 0.6) 100%);
  pointer-events: none;
}
.hero--nogl .hero__canvas { display: none; }
.hero--nogl {
  background:
    radial-gradient(90% 70% at 50% 20%, #1C1812 0%, transparent 60%),
    radial-gradient(120% 90% at 50% 100%, #17130D 0%, transparent 70%),
    var(--noir);
}
.hero__grain { display: none; } /* grain is site-wide on body::after */

.hero__content {
  position: relative; z-index: 2;
  text-align: center;
  padding: 0 var(--pad);
  display: flex; flex-direction: column; align-items: center; gap: 22px;
}
.hero__eyebrow {
  font-family: var(--display);
  font-size: 11px; letter-spacing: 0.6em; text-indent: 0.6em;
  color: var(--ivoire-72);
}
.hero__title {
  font-family: var(--display); font-weight: 500;
  font-size: clamp(38px, 11vw, 150px);
  letter-spacing: 0.12em; text-indent: 0.12em;
  line-height: 0.95;
  white-space: nowrap;
}
.hero__glyph {
  display: inline-block;
  clip-path: inset(-10% 100% -10% 0);
}
body[data-state="ready"] .hero__glyph {
  animation: glyph-wipe var(--t-state) var(--ease) forwards;
  animation-delay: calc(var(--i) * 60ms + 200ms);
}
@keyframes glyph-wipe { to { clip-path: inset(-10% -10% -10% 0); } }

.hero__rule {
  width: min(320px, 42vw); height: 1px;
  background: var(--champagne);
  transform: scaleX(0);
}
.hero__sub {
  font-family: var(--display);
  font-size: 11px; letter-spacing: 0.4em; text-indent: 0.4em;
  color: var(--cendre);
}
.hero__foot {
  position: absolute; left: var(--pad); right: var(--pad); bottom: 26px;
  display: flex; justify-content: space-between; align-items: center; gap: 30px;
  z-index: 2;
  color: var(--cendre);
  font-size: 10px;
}
.hero__foot-label { max-width: 44ch; font-style: italic; }
.hero__scroll {
  position: relative; padding-right: 26px;
  font-family: var(--display); letter-spacing: 0.34em; text-transform: uppercase;
  flex-shrink: 0;
}
.hero__scroll::after {
  content: ""; position: absolute; right: 0; top: 50%;
  width: 18px; height: 1px; background: currentColor;
  animation: scroll-hint 2.4s var(--ease) infinite;
}
@keyframes scroll-hint {
  0% { transform: scaleX(0); transform-origin: left; }
  45% { transform: scaleX(1); transform-origin: left; }
  55% { transform: scaleX(1); transform-origin: right; }
  100% { transform: scaleX(0); transform-origin: right; }
}

.reveal { opacity: 0; transform: translateY(20px); }

/* ---------- pronunciation band ---------- */

.pronounce {
  background: var(--ivoire); color: var(--encre);
  padding: clamp(64px, 9vw, 120px) var(--pad) clamp(44px, 6vw, 84px);
  display: flex; flex-direction: column; align-items: center; gap: 14px;
  text-align: center;
}
.pronounce > * { opacity: 0; transform: translateY(20px); }
.pronounce__word {
  font-family: var(--display); font-weight: 420;
  font-size: clamp(40px, 6vw, 88px);
  letter-spacing: 0.12em; text-indent: 0.12em;
  line-height: 1;
}
.pronounce__phonetic {
  font-family: var(--body); font-style: italic;
  font-size: clamp(15px, 1.7vw, 21px);
  letter-spacing: 0.06em;
  color: var(--champagne);
}
.pronounce__pos {
  font-family: var(--display);
  font-size: 10px; letter-spacing: 0.4em; text-indent: 0.4em; text-transform: uppercase;
  color: var(--cendre);
}
.pronounce__rule {
  width: min(220px, 34vw); height: 1px;
  background: rgba(33, 29, 24, 0.18);
  margin: 8px 0;
}
.pronounce__def {
  max-width: 46ch;
  color: #4A443B;
  font-size: 13px;
}

/* ---------- manifesto ---------- */

.manifesto {
  position: relative; z-index: 3;
  background: var(--ivoire); color: var(--encre);
  padding: clamp(110px, 15vw, 200px) var(--pad);
  display: flex; flex-direction: column; align-items: center; gap: 34px;
  text-align: center;
}
.manifesto__title {
  font-family: var(--display); font-weight: 420;
  font-size: clamp(34px, 5.4vw, 76px);
  letter-spacing: 0.1em; text-indent: 0.1em;
  line-height: 1.15;
}
.manifesto__title .line { display: block; overflow: hidden; }
.manifesto__title .line span { display: inline-block; }
.manifesto__rule {
  width: min(280px, 40vw); height: 1px;
  background: var(--champagne);
  transform: scaleX(0);
}
.manifesto__text {
  max-width: 52ch;
  color: var(--encre);
}

/* ---------- collection (the first four) ---------- */

.collection {
  background: var(--ivoire); color: var(--encre);
  padding: 0 var(--pad) clamp(80px, 10vw, 140px);
}
.collection__head {
  display: grid;
  grid-template-columns: auto minmax(auto, 420px);
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: clamp(30px, 4vw, 54px);
}
@media (max-width: 760px) { .collection__head { grid-template-columns: 1fr; align-items: start; } }
.collection__lede { color: #5C564C; font-size: 11px; }

.collection__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 1000px) { .collection__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px)  { .collection__grid { grid-template-columns: 1fr; } }

.card { display: flex; flex-direction: column; gap: 14px; opacity: 0; transform: translateY(30px); }
.card__media {
  aspect-ratio: 3 / 4;
  position: relative; overflow: hidden;
  background: var(--noir);
}
.card__img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 900ms var(--ease);
  transform-origin: 50% 80%;
}
.card:hover .card__img { transform: scale(1.04); }
.card__num {
  position: absolute; top: 14px; left: 16px;
  font-family: var(--display); font-size: 14px; letter-spacing: 0.2em;
  color: var(--champagne);
}
.card__soon {
  position: absolute; bottom: 14px; left: 0; right: 0;
  text-align: center;
  font-family: var(--display);
  font-size: 8px; letter-spacing: 0.4em; text-indent: 0.4em; text-transform: uppercase;
  color: var(--cendre);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity var(--t-state) var(--ease), transform var(--t-state) var(--ease);
}
.card:hover .card__soon { opacity: 1; transform: translateY(0); }
.card__soon--sealed { opacity: 1; transform: none; color: var(--champagne); }
.card__meta { display: flex; flex-direction: column; gap: 4px; }
.card__name {
  font-family: var(--body); font-style: italic; font-weight: 400;
  font-size: 12px; letter-spacing: 0.04em;
}
.card__line {
  font-family: var(--display);
  font-size: 9px; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--cendre);
}
.card__note {
  font-family: var(--body); font-style: italic;
  font-size: 11px; line-height: 1.6;
  color: #5C564C;
  margin-top: 2px;
}
.card--lead .card__media { border: 1px solid var(--champagne); }

.collection__note {
  margin-top: clamp(28px, 3vw, 44px);
  text-align: center;
  font-style: italic;
  color: #5C564C;
}

/* ---------- VONTIERRE band ---------- */

.vontierre {
  background: var(--noir); color: var(--ivoire);
  border-top: 1px solid rgba(244, 239, 228, 0.08);
  padding: clamp(90px, 12vw, 160px) var(--pad);
  display: flex; flex-direction: column; align-items: center; gap: 16px;
  text-align: center;
}
.vontierre > * { opacity: 0; transform: translateY(20px); }
.vontierre__word {
  font-family: var(--display); font-weight: 420;
  font-size: clamp(34px, 5.2vw, 74px);
  letter-spacing: 0.18em; text-indent: 0.18em;
  line-height: 1;
}
.vontierre__phonetic {
  font-family: var(--body); font-style: italic;
  font-size: clamp(14px, 1.5vw, 19px);
  letter-spacing: 0.06em;
  color: var(--champagne);
}
.vontierre__copy {
  max-width: 42ch;
  color: var(--ivoire-72);
}

/* ---------- split feature — the house ---------- */

.feature {
  display: grid; grid-template-columns: 1.15fr 1fr;
  min-height: 82vh;
  background: var(--noir); color: var(--ivoire);
}
@media (max-width: 860px) { .feature { grid-template-columns: 1fr; } }
.feature__media { position: relative; overflow: hidden; min-height: 420px; }
.feature__media img, .feature__media video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.12);
}
.feature__media-ph {
  position: absolute; inset: 0;
  background:
    radial-gradient(110% 80% at 25% 12%, #241F17 0%, transparent 58%),
    radial-gradient(130% 100% at 85% 90%, #16120C 0%, transparent 62%),
    linear-gradient(155deg, #1B1712, #0B0A08);
}
.feature__media-ph::after {
  content: "\C6";
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--display); font-size: clamp(160px, 22vw, 340px);
  color: rgba(244, 239, 228, 0.05);
}
.feature__panel {
  display: flex; flex-direction: column; justify-content: center; align-items: flex-start;
  gap: 24px;
  padding: clamp(50px, 7vw, 110px);
}
.feature__copy { max-width: 46ch; color: var(--ivoire-72); }

/* ---------- campaign banner ---------- */

.campaign {
  position: relative;
  height: 92vh; min-height: 560px;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  background: var(--noir); color: var(--ivoire);
}
.campaign__media { position: absolute; inset: -12% 0; }
.campaign__media img, .campaign__media video { width: 100%; height: 100%; object-fit: cover; object-position: 50% 18%; }
.campaign__scrim {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 46%, rgba(11, 10, 8, 0.5) 0%, transparent 72%),
    linear-gradient(rgba(11, 10, 8, 0.3), rgba(11, 10, 8, 0.55));
}
.campaign__media-ph {
  position: absolute; inset: 0;
  background:
    radial-gradient(100% 80% at 68% 22%, #2B2315 0%, transparent 55%),
    radial-gradient(130% 100% at 15% 85%, #191207 0%, transparent 60%),
    linear-gradient(200deg, #1E180E, #0B0A08);
}
.campaign__inner {
  position: relative; z-index: 3;
  display: flex; flex-direction: column; align-items: center; gap: 26px;
}
.campaign__eyebrow {
  font-family: var(--display);
  font-size: 11px; letter-spacing: 0.55em; text-indent: 0.55em;
  color: var(--champagne);
}
.campaign__word {
  position: absolute; z-index: 2;
  bottom: -0.16em; left: 50%; transform: translateX(-50%);
  font-family: var(--display); font-weight: 420;
  font-size: clamp(90px, 16.5vw, 280px);
  letter-spacing: 0.06em; text-indent: 0.06em;
  line-height: 1;
  color: rgba(244, 239, 228, 0.11);
  white-space: nowrap;
  pointer-events: none;
}

/* ---------- first studies ---------- */

.studies {
  background: var(--noir); color: var(--ivoire);
  padding: clamp(80px, 10vw, 150px) var(--pad);
}
.studies__head { text-align: center; margin-bottom: clamp(30px, 4vw, 54px); }
.studies__lede {
  max-width: 58ch;
  margin: 16px auto 0;
  color: var(--ivoire-72);
  font-size: 12px;
}
.studies__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 1400px;
  margin: 0 auto;
}
@media (max-width: 860px) { .studies__grid { grid-template-columns: 1fr; max-width: 560px; } }
.study { display: flex; flex-direction: column; gap: 14px; opacity: 0; transform: translateY(30px); }
.study img {
  width: 100%; aspect-ratio: 3 / 4; object-fit: cover; object-position: top;
  transition: transform 900ms var(--ease);
}
.study { overflow: hidden; }
.study:hover img { transform: scale(1.03); }
.study figcaption {
  font-family: var(--display);
  font-size: 9px; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--cendre);
  text-align: center;
}
.studies__note {
  margin-top: clamp(28px, 3vw, 44px);
  text-align: center;
  font-style: italic;
  color: var(--cendre);
}

/* ---------- the codes ---------- */

.codes {
  background: var(--ivoire); color: var(--encre);
  padding: clamp(90px, 12vw, 170px) var(--pad);
  display: flex; flex-direction: column; align-items: center;
}
.codes__list {
  list-style: none;
  width: min(680px, 100%);
  margin-top: clamp(30px, 4vw, 50px);
}
.code {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 26px;
  padding: 26px 0;
  border-bottom: 1px solid rgba(33, 29, 24, 0.14);
  opacity: 0; transform: translateY(24px);
}
.code:first-child { border-top: 1px solid rgba(33, 29, 24, 0.14); }
.code__num {
  font-family: var(--display);
  font-size: 26px; font-weight: 420;
  color: var(--champagne);
  line-height: 1.2;
}
.code__name {
  font-family: var(--display); font-weight: 500;
  font-size: 12px; letter-spacing: 0.3em; text-transform: uppercase;
  margin-bottom: 8px;
}
.code__body p { color: #4A443B; }

/* ---------- contact ---------- */

.contact {
  background: var(--noir); color: var(--ivoire);
  padding: clamp(90px, 12vw, 170px) var(--pad);
}
.contact__inner {
  max-width: 560px; margin: 0 auto;
  display: flex; flex-direction: column; align-items: center; gap: 24px;
  text-align: center;
}
.contact__seal { width: 92px; height: 92px; margin-bottom: 6px; }
.contact__title {
  font-family: var(--display); font-weight: 420;
  font-size: clamp(26px, 3.4vw, 44px);
  letter-spacing: 0.12em; text-indent: 0.12em; text-transform: uppercase;
  line-height: 1.2;
}
.contact__copy { color: var(--ivoire-72); max-width: 48ch; }
.contact__form {
  width: 100%; max-width: 440px; margin-top: 10px;
  display: flex; flex-direction: column; gap: 26px;
  text-align: left;
}
.contact__field { display: flex; flex-direction: column; gap: 8px; }
.contact__label {
  font-family: var(--display);
  font-size: 10px; letter-spacing: 0.4em;
  color: var(--cendre);
  transition: color var(--t-state) var(--ease);
}
.contact__field:focus-within .contact__label { color: var(--champagne); }
.contact__input {
  width: 100%;
  background: transparent; border: none; outline: none;
  border-bottom: 1px solid rgba(244, 239, 228, 0.25);
  color: var(--ivoire);
  font-family: var(--body); font-size: 13px; letter-spacing: 0.04em;
  padding: 10px 0;
  transition: border-color var(--t-state) var(--ease);
}
.contact__input:focus { border-color: var(--champagne); }
.contact__input::placeholder { color: rgba(244, 239, 228, 0.3); font-style: italic; }
textarea.contact__word { resize: none; min-height: 64px; line-height: 1.7; }
.contact__submit {
  align-self: flex-end;
  font-family: var(--display);
  font-size: 10px; letter-spacing: 0.4em; text-indent: 0.4em;
  color: var(--ivoire);
  font-variation-settings: "wght" 400;
  transition: font-variation-settings var(--t-state) var(--ease), color var(--t-state) var(--ease);
  padding: 10px 0;
}
.contact__submit:hover { font-variation-settings: "wght" 700; color: var(--champagne); }
.contact__alt { font-size: 11px; color: var(--cendre); }
.contact__alt a { color: var(--ivoire-72); }
.contact__alt a:hover { color: var(--ivoire); }
.contact__done { color: var(--ivoire-72); }

/* ---------- colophon ---------- */

.footer {
  background: var(--noir); color: var(--cendre);
  border-top: 1px solid rgba(244, 239, 228, 0.08);
  padding: clamp(70px, 9vw, 120px) var(--pad) 50px;
  display: flex; flex-direction: column; align-items: center; gap: 26px;
  text-align: center;
  font-size: 10px;
}
.footer__seal { width: 72px; height: 72px; }
.footer__logo {
  font-family: var(--display); font-weight: 430;
  font-size: 20px; letter-spacing: 0.3em; text-indent: 0.3em;
  color: var(--ivoire);
}
.footer__registry { max-width: 520px; display: flex; flex-direction: column; gap: 12px; }
.footer__registry a {
  color: var(--ivoire-72);
  font-variation-settings: "wght" 400;
  transition: color var(--t-state) var(--ease);
}
.footer__registry a:hover { color: var(--ivoire); }
.footer__registry em { color: var(--ivoire-72); }

/* ---------- motion prefs ---------- */

@media (prefers-reduced-motion: reduce) {
  .announce__track { animation: none; padding-left: 0; }
  body::after { animation: none; }
  .reveal, .card, .code, .pronounce > *, .vontierre > * { opacity: 1 !important; transform: none !important; }
  .hero__glyph { clip-path: none !important; animation: none !important; }
  .hero__rule, .manifesto__rule { transform: none !important; }
}
