/* ————————————————————————————————————————————
   MAISON LUMIÈRE — candlelit noir, liquid gold
   ———————————————————————————————————————————— */

:root {
  --noir: #0B0A08;
  --charcoal: #171310;
  --gold: #C9A227;
  --gold-soft: rgba(201, 162, 39, 0.55);
  --cream: #EFE6D5;
  --cream-dim: rgba(239, 230, 213, 0.62);
  --amber: #7A5C2E;
  --display: 'Italiana', 'Cormorant Garamond', serif;
  --serif-it: 'Cormorant Garamond', serif;
  --body: 'Jost', sans-serif;
  --ease-lux: cubic-bezier(0.16, 1, 0.3, 1);
  --gutter: clamp(1.25rem, 4vw, 4.5rem);
}

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

html { scroll-behavior: smooth; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }

body {
  background: var(--noir);
  color: var(--cream);
  font-family: var(--body);
  font-weight: 300;
  font-size: clamp(0.96rem, 0.9rem + 0.25vw, 1.08rem);
  line-height: 1.75;
  letter-spacing: 0.015em;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

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

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

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

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

.skip-link {
  position: fixed; top: -4rem; left: 1rem; z-index: 300;
  background: var(--gold); color: var(--noir);
  padding: 0.6rem 1.2rem; font-size: 0.75rem;
  letter-spacing: 0.2em; text-transform: uppercase;
  transition: top 0.3s var(--ease-lux);
}
.skip-link:focus { top: 1rem; }

/* ——— texture layers ——— */

.grain {
  position: fixed; inset: -50%; z-index: 120;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
  opacity: 0.055;
  animation: grain-shift 0.9s steps(4) infinite;
}
@keyframes grain-shift {
  0% { transform: translate(0, 0); }
  25% { transform: translate(-2%, 3%); }
  50% { transform: translate(3%, -2%); }
  75% { transform: translate(-3%, -3%); }
  100% { transform: translate(2%, 2%); }
}

#dust {
  position: fixed; inset: 0; z-index: 1;
  pointer-events: none;
  width: 100%; height: 100%;
}

.vignette {
  position: fixed; inset: 0; z-index: 2; pointer-events: none;
  background: radial-gradient(ellipse 120% 90% at 50% 40%, transparent 55%, rgba(5, 4, 3, 0.55) 100%);
}

/* ——— custom cursor ——— */

.cursor-dot, .cursor-ring {
  position: fixed; top: 0; left: 0; z-index: 250;
  pointer-events: none;
  border-radius: 50%;
  opacity: 0;
}
.cursor-dot {
  width: 5px; height: 5px;
  background: var(--gold);
  transform: translate(-50%, -50%);
}
.cursor-ring {
  width: 34px; height: 34px;
  border: 1px solid var(--gold-soft);
  transform: translate(-50%, -50%);
  transition: width 0.35s var(--ease-lux), height 0.35s var(--ease-lux),
              border-color 0.35s, background-color 0.35s;
}
.cursor-ring.is-hover {
  width: 62px; height: 62px;
  border-color: var(--gold);
  background: rgba(201, 162, 39, 0.07);
}
.cursor-ring .cursor-label {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  font-size: 0.5rem; letter-spacing: 0.28em;
  text-transform: uppercase; color: var(--gold);
  opacity: 0; transition: opacity 0.3s;
}
.cursor-ring.is-view .cursor-label { opacity: 1; }
@media (hover: none), (pointer: coarse) {
  .cursor-dot, .cursor-ring { display: none; }
}
body.has-cursor, body.has-cursor a, body.has-cursor button { cursor: none; }

/* ——— header ——— */

.site-head {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: clamp(1.1rem, 2.5vw, 1.8rem) var(--gutter);
  mix-blend-mode: normal;
  transition: transform 0.6s var(--ease-lux);
}
.site-head::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(to bottom, rgba(11, 10, 8, 0.92), rgba(11, 10, 8, 0));
  opacity: 0; transition: opacity 0.5s;
}
.site-head.is-scrolled::before { opacity: 1; }

.wordmark {
  font-family: var(--display);
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--cream);
  white-space: nowrap;
}
.wordmark em { font-style: normal; color: var(--gold); }

.site-nav { display: flex; gap: clamp(1.2rem, 3vw, 2.8rem); }
.site-nav a {
  font-size: 0.66rem; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--cream-dim);
  position: relative; padding: 0.35rem 0;
  transition: color 0.4s;
}
.site-nav a::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 100%; height: 1px; background: var(--gold);
  transform: scaleX(0); transform-origin: right center;
  transition: transform 0.5s var(--ease-lux);
}
.site-nav a:hover { color: var(--cream); }
.site-nav a:hover::after { transform: scaleX(1); transform-origin: left center; }

@media (max-width: 640px) {
  .site-nav a:not(.nav-collection):not(.nav-atelier) { display: none; }
  .wordmark { font-size: 0.92rem; letter-spacing: 0.22em; }
  .site-nav { gap: 1.1rem; }
  .site-nav a { font-size: 0.58rem; letter-spacing: 0.2em; }
}

/* ——— label / eyebrow ——— */

.label sup {
  font-size: 0.6em; letter-spacing: 0.08em;
  vertical-align: 0.55em; margin-left: 0.05em;
}
.label {
  display: inline-flex; align-items: center; gap: 1rem;
  font-size: 0.64rem; font-weight: 400;
  letter-spacing: 0.42em; text-transform: uppercase;
  color: var(--gold);
}
.label::before {
  content: ""; width: 2.6rem; height: 1px;
  background: linear-gradient(to right, transparent, var(--gold));
}
.label.no-rule::before { display: none; }

/* ——— hero ——— */

.hero {
  position: relative; z-index: 3;
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  align-items: center;
  padding: clamp(5.5rem, 12vh, 8rem) var(--gutter) clamp(7rem, 14vh, 9rem);
  gap: clamp(1.5rem, 4vw, 4rem);
}

.hero-copy { position: relative; z-index: 5; }

.hero-title {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(3.6rem, 10.5vw, 10.5rem);
  line-height: 0.94;
  letter-spacing: 0.02em;
  color: var(--cream);
  text-transform: uppercase;
  margin: 1.6rem 0 2.2rem;
}
.hero-title .line {
  display: block; overflow: hidden;
  /* headroom for accents inside the reveal mask, pulled back visually */
  padding: 0.14em 0.1em 0.04em 0;
  margin: -0.14em 0 -0.04em;
}
.hero-title .line > span { display: inline-block; }
.hero-title .thin {
  color: var(--gold);
  background: linear-gradient(100deg, var(--amber) 10%, var(--gold) 38%, #F0DA8C 50%, var(--gold) 62%, var(--amber) 90%);
  background-size: 260% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gold-sheen 8s ease-in-out infinite;
}
@keyframes gold-sheen {
  0%, 100% { background-position: 92% 0; }
  50% { background-position: 8% 0; }
}

.hero-sub {
  max-width: 34ch;
  color: var(--cream-dim);
  font-size: clamp(0.98rem, 1.1vw, 1.15rem);
}
.hero-sub em { font-family: var(--serif-it); font-size: 1.18em; color: var(--cream); }

.hero-cta {
  margin-top: 2.8rem;
  display: inline-flex; align-items: center; gap: 1.1rem;
  font-size: 0.68rem; letter-spacing: 0.34em; text-transform: uppercase;
  color: var(--cream);
  padding-bottom: 0.6rem;
  border-bottom: 1px solid rgba(201, 162, 39, 0.4);
  transition: border-color 0.4s, color 0.4s;
}
.hero-cta .arrow { transition: transform 0.5s var(--ease-lux); color: var(--gold); }
.hero-cta:hover { border-color: var(--gold); }
.hero-cta:hover .arrow { transform: translateX(8px); }

.hero-media {
  position: relative;
  height: min(78svh, 46rem);
  align-self: center;
  justify-self: center;
  aspect-ratio: 2 / 3;
  max-width: 100%;
}
.hero-media::before {
  content: "";
  position: absolute; inset: -12%;
  background: radial-gradient(closest-side, rgba(201, 162, 39, 0.16), transparent 75%);
  filter: blur(10px);
  z-index: 0;
  animation: candle-breathe 5.5s ease-in-out infinite;
}
@keyframes candle-breathe {
  0%, 100% { opacity: 0.75; transform: scale(0.985); }
  38% { opacity: 1; transform: scale(1.01); }
  52% { opacity: 0.88; transform: scale(1.0); }
  70% { opacity: 1; transform: scale(1.015); }
}
.hero-media .frame {
  position: absolute; inset: 0; z-index: 3;
  border: 1px solid rgba(201, 162, 39, 0.28);
  transform: translate(14px, 14px);
  pointer-events: none;
}
.hero-media img, .hero-media canvas {
  position: absolute; inset: 0; z-index: 2;
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero-media figcaption {
  position: absolute; bottom: -2rem; right: 0; z-index: 3;
  font-size: 0.6rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: rgba(239, 230, 213, 0.35);
}

.hero-vert {
  position: absolute; top: 50%; right: calc(var(--gutter) * 0.35);
  transform: translateY(-50%) rotate(180deg);
  writing-mode: vertical-rl;
  font-size: 0.6rem; letter-spacing: 0.5em; text-transform: uppercase;
  color: rgba(239, 230, 213, 0.3);
  z-index: 4;
}

.scroll-cue {
  position: absolute; bottom: 2.2rem; left: var(--gutter); z-index: 5;
  display: flex; align-items: center; gap: 0.9rem;
  font-size: 0.6rem; letter-spacing: 0.4em; text-transform: uppercase;
  color: rgba(239, 230, 213, 0.4);
}
.scroll-cue .cue-line {
  width: 1px; height: 3.4rem;
  background: linear-gradient(to bottom, var(--gold), transparent);
  transform-origin: top center;
  animation: cue 2.6s var(--ease-lux) infinite;
}
@keyframes cue {
  0% { transform: scaleY(0); transform-origin: top center; }
  45% { transform: scaleY(1); transform-origin: top center; }
  55% { transform: scaleY(1); transform-origin: bottom center; }
  100% { transform: scaleY(0); transform-origin: bottom center; }
}

@media (max-width: 860px) {
  .hero {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    padding-top: 6.5rem;
    gap: 3.4rem;
    min-height: auto;
    padding-bottom: 6rem;
  }
  .hero-media { height: auto; width: min(78vw, 24rem); }
  .hero-vert { display: none; }
  .scroll-cue { display: none; }
  .hero-title { font-size: clamp(4.6rem, 19vw, 8rem); }
}

/* ——— shared section scaffolding ——— */

.section { position: relative; z-index: 3; padding: clamp(5rem, 14vh, 10rem) var(--gutter); }

.section-head { max-width: 72rem; margin: 0 auto; }

.display-xl {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(2.6rem, 6.5vw, 6rem);
  line-height: 1.04;
  letter-spacing: 0.015em;
  color: var(--cream);
  margin: 1.4rem 0 0;
}
.display-xl em {
  font-family: var(--serif-it); font-style: italic; font-weight: 400;
  color: var(--gold);
  letter-spacing: 0;
}

.reveal-line { display: block; overflow: hidden; }
.reveal-line > span { display: inline-block; }

/* ——— philosophy ——— */

.philosophy { text-align: center; }
.philosophy .display-xl { max-width: 22ch; margin-left: auto; margin-right: auto; }
.philosophy .label { justify-content: center; }
.philosophy .label::before { display: none; }
.philosophy-body {
  max-width: 46ch; margin: 2.6rem auto 0;
  color: var(--cream-dim);
}
.philosophy-body em { font-family: var(--serif-it); font-size: 1.15em; color: var(--cream); }
.philosophy-sig {
  margin-top: 3rem;
  font-family: var(--serif-it); font-style: italic;
  font-size: 1.35rem; color: var(--gold);
}
.philosophy-sig small {
  display: block; margin-top: 0.4rem;
  font-family: var(--body); font-style: normal;
  font-size: 0.6rem; letter-spacing: 0.34em; text-transform: uppercase;
  color: var(--cream-dim);
}

/* ——— marquee ——— */

.marquee {
  position: relative; z-index: 3;
  padding: clamp(1.6rem, 3.5vh, 2.6rem) 0;
  border-top: 1px solid rgba(201, 162, 39, 0.16);
  border-bottom: 1px solid rgba(201, 162, 39, 0.16);
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent, black 12%, black 88%, transparent);
  mask-image: linear-gradient(to right, transparent, black 12%, black 88%, transparent);
}
.marquee-track {
  display: flex; width: max-content;
  animation: marquee 46s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-seq {
  display: flex; align-items: baseline; flex-shrink: 0;
}
.marquee-seq span {
  font-family: var(--display);
  font-size: clamp(1.4rem, 3vw, 2.4rem);
  letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(239, 230, 213, 0.5);
  padding: 0 1.6rem;
  white-space: nowrap;
}
.marquee-seq i {
  font-style: normal; color: var(--gold);
  font-size: clamp(0.8rem, 1.6vw, 1.2rem);
  transform: translateY(-0.35em);
  animation: star-turn 14s linear infinite;
}
@keyframes star-turn { to { rotate: 360deg; } }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ——— collection ——— */

.collection .section-head { margin-bottom: clamp(3rem, 8vh, 5.5rem); }
.collection-intro { max-width: 40ch; color: var(--cream-dim); margin-top: 1.6rem; }

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.4rem, 3vw, 3rem);
  max-width: 72rem; margin: 0 auto;
}

.card { position: relative; }
.card-media {
  position: relative; overflow: hidden;
  aspect-ratio: 2 / 3;
  background: var(--charcoal);
}
.card-media img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.06);
  transition: transform 1.2s var(--ease-lux), filter 1.2s var(--ease-lux);
  filter: brightness(0.92);
}
.card-media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(11, 10, 8, 0.55), transparent 45%);
  transition: opacity 0.8s;
}
.card-media .card-no {
  position: absolute; top: 1.1rem; left: 1.2rem; z-index: 2;
  font-family: var(--serif-it); font-style: italic;
  font-size: 1rem; color: rgba(239, 230, 213, 0.75);
}
.card-media .card-veil {
  position: absolute; inset: 0; z-index: 2;
  display: grid; place-items: center;
  opacity: 0; transition: opacity 0.6s var(--ease-lux);
  background: rgba(11, 10, 8, 0.24);
}
.card-media .card-veil span {
  font-size: 0.62rem; letter-spacing: 0.4em; text-transform: uppercase;
  color: var(--cream);
  border: 1px solid rgba(201, 162, 39, 0.6);
  padding: 0.85rem 1.6rem;
  backdrop-filter: blur(2px);
  transition: background-color 0.4s, color 0.4s;
}
/* gold shine sweep on hover */
.card-media .card-shine {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(115deg, transparent 32%, rgba(201, 162, 39, 0.16) 46%, rgba(239, 230, 213, 0.22) 50%, rgba(201, 162, 39, 0.16) 54%, transparent 68%);
  transform: translateX(-120%);
  pointer-events: none;
}
.card:hover .card-shine, .card:focus-within .card-shine {
  transition: transform 1.1s var(--ease-lux);
  transform: translateX(120%);
}
.card:hover .card-title, .card:focus-within .card-title { color: var(--gold); }
.card-title { transition: color 0.5s var(--ease-lux); }
.card:hover .card-media img, .card:focus-within .card-media img { transform: scale(1.0); filter: brightness(1.02); }
.card:hover .card-veil, .card:focus-within .card-veil { opacity: 1; }
.card .card-veil span:hover { background: var(--gold); color: var(--noir); }

.card-body { padding: 1.6rem 0.2rem 0; }
.card-title {
  font-family: var(--display);
  font-size: clamp(1.6rem, 2.4vw, 2.1rem);
  font-weight: 400;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--cream);
}
.card-kind {
  font-size: 0.6rem; letter-spacing: 0.34em; text-transform: uppercase;
  color: var(--gold); margin-top: 0.45rem;
}
.card-notes {
  font-family: var(--serif-it); font-style: italic;
  color: var(--cream-dim);
  font-size: 1.02rem; line-height: 1.6;
  margin-top: 0.9rem;
  max-width: 30ch;
}
.card-row {
  display: flex; align-items: baseline; justify-content: space-between;
  margin-top: 1.3rem; padding-top: 1.1rem;
  border-top: 1px solid rgba(239, 230, 213, 0.12);
}
.card-price { font-family: var(--display); font-size: 1.25rem; letter-spacing: 0.08em; color: var(--cream); }
.card-size { font-size: 0.62rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--cream-dim); }

@media (max-width: 860px) {
  .cards { grid-template-columns: 1fr; max-width: 26rem; gap: 4rem; }
}

/* ——— ingredients ——— */

.ingredients { padding-left: 0; padding-right: 0; }
.ingredient {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  align-items: center;
  gap: 0;
  margin: 0 auto;
  max-width: 90rem;
}
.ingredient + .ingredient { margin-top: clamp(4rem, 12vh, 9rem); }

.ingredient-media {
  grid-column: 1 / 8; grid-row: 1;
  overflow: hidden; position: relative;
  aspect-ratio: 3 / 2;
}
.ingredient-media img {
  width: 100%; height: 118%;
  object-fit: cover;
  will-change: transform;
}
.ingredient.flip .ingredient-media { grid-column: 6 / 13; }

.ingredient-copy {
  grid-column: 7 / 12; grid-row: 1;
  position: relative; z-index: 2;
  background: rgba(17, 14, 11, 0.86);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(201, 162, 39, 0.18);
  padding: clamp(1.8rem, 3.5vw, 3.2rem);
}
.ingredient.flip .ingredient-copy { grid-column: 2 / 7; }

.ingredient-copy h3 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(1.8rem, 3.2vw, 2.8rem);
  letter-spacing: 0.06em; text-transform: uppercase;
  margin: 1rem 0 1.2rem;
}
.ingredient-copy p { color: var(--cream-dim); max-width: 44ch; }
.ingredient-copy p em { font-family: var(--serif-it); font-size: 1.12em; color: var(--cream); }

.ingredient-fact {
  margin-top: 1.6rem; display: flex; gap: 2.4rem;
}
.ingredient-fact div strong {
  display: block;
  font-family: var(--display); font-weight: 400;
  font-size: 1.5rem; color: var(--gold); letter-spacing: 0.04em;
}
.ingredient-fact div span {
  font-size: 0.6rem; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--cream-dim);
}

@media (min-width: 861px) {
  .atelier-copy .label { white-space: nowrap; }
}
@media (max-width: 860px) {
  .ingredient-fact { gap: 1.4rem; }
  .ingredient-fact div span { font-size: 0.55rem; letter-spacing: 0.2em; }
  .atelier-media::after {
    background:
      linear-gradient(to bottom, var(--noir), transparent 22%, transparent 66%, var(--noir)),
      rgba(11, 10, 8, 0.52);
  }
  .ingredient, .ingredient.flip { display: block; padding: 0 var(--gutter); }
  .ingredient-media { aspect-ratio: 4 / 3; }
  .ingredient-copy { margin: -3rem 0 0 auto; width: min(92%, 30rem); }
}

/* ——— atelier ——— */

.atelier { padding: 0; position: relative; z-index: 3; }
.atelier-media {
  position: relative;
  height: clamp(30rem, 92svh, 56rem);
  overflow: hidden;
}
.atelier-media img {
  width: 100%; height: 124%;
  object-fit: cover;
  will-change: transform;
}
.atelier-media::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(to bottom, var(--noir), transparent 22%, transparent 66%, var(--noir)),
    linear-gradient(to right, rgba(11, 10, 8, 0.72), transparent 55%);
}
.atelier-copy {
  position: absolute; inset: 0; z-index: 2;
  display: flex; flex-direction: column; justify-content: center;
  padding: 0 var(--gutter);
  max-width: 46rem;
}
.atelier-copy .display-xl { font-size: clamp(2.4rem, 5.5vw, 5rem); }
.atelier-copy p {
  margin-top: 1.8rem; color: rgba(239, 230, 213, 0.78);
  max-width: 44ch;
}
.atelier-copy p em { font-family: var(--serif-it); font-size: 1.12em; color: var(--cream); }

.atelier-stats {
  position: relative; z-index: 3;
  display: grid; grid-template-columns: repeat(3, auto);
  justify-content: center;
  gap: clamp(2.5rem, 9vw, 8rem);
  padding: clamp(3rem, 7vh, 5rem) var(--gutter);
  border-bottom: 1px solid rgba(201, 162, 39, 0.14);
  text-align: center;
}
.atelier-stats strong {
  display: block;
  font-family: var(--display); font-weight: 400;
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  color: var(--gold); letter-spacing: 0.04em;
}
.atelier-stats span {
  font-size: 0.6rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--cream-dim);
}
@media (max-width: 640px) {
  .atelier-stats { grid-template-columns: 1fr; gap: 2rem; }
}

/* ——— footer ——— */

.site-foot {
  position: relative; z-index: 3;
  padding: clamp(4.5rem, 11vh, 8rem) var(--gutter) 2.4rem;
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: clamp(2.5rem, 6vw, 6rem);
  max-width: 76rem; margin: 0 auto;
}
.foot-mark {
  font-family: var(--display);
  font-size: clamp(2.4rem, 5vw, 4rem);
  letter-spacing: 0.18em; text-transform: uppercase;
  line-height: 1.1;
}
.foot-mark em { font-style: normal; color: var(--gold); }
.foot-tag { margin-top: 1rem; color: var(--cream-dim); font-size: 0.92rem; max-width: 30ch; }
.foot-tag em { font-family: var(--serif-it); color: var(--cream); font-size: 1.1em; }

.foot-col h4 {
  font-size: 0.62rem; letter-spacing: 0.36em; text-transform: uppercase;
  color: var(--gold); font-weight: 400;
  margin-bottom: 1.4rem;
}
.foot-col p, .foot-col address { font-style: normal; color: var(--cream-dim); font-size: 0.95rem; line-height: 2; }
.foot-col a {
  position: relative;
  transition: color 0.35s;
}
.foot-col a::after {
  content: ""; position: absolute; left: 0; bottom: -1px;
  width: 100%; height: 1px; background: var(--gold);
  transform: scaleX(0); transform-origin: right center;
  transition: transform 0.45s var(--ease-lux);
}
.foot-col a:hover { color: var(--cream); }
.foot-col a:hover::after { transform: scaleX(1); transform-origin: left center; }

.foot-base {
  max-width: 76rem;
  margin: clamp(3rem, 7vh, 5rem) auto 0;
  padding-top: 1.6rem;
  border-top: 1px solid rgba(239, 230, 213, 0.1);
  display: flex; flex-wrap: wrap; gap: 0.8rem 2rem;
  justify-content: space-between;
  font-size: 0.68rem; letter-spacing: 0.14em;
  color: rgba(239, 230, 213, 0.4);
}
.foot-base a { color: rgba(239, 230, 213, 0.6); border-bottom: 1px solid rgba(201, 162, 39, 0.4); transition: color 0.3s, border-color 0.3s; }
.foot-base a:hover { color: var(--gold); border-color: var(--gold); }

@media (max-width: 860px) {
  .foot-grid { grid-template-columns: 1fr; }
}

/* ——— reveal defaults (pre-GSAP state applied via JS class) ——— */

html.js [data-reveal] { opacity: 0; }
html.js .reveal-line > span { transform: translateY(115%); }
html.js.audit [data-reveal] { opacity: 1 !important; }
html.js.audit .reveal-line > span { transform: none !important; }
html.audit .hero-media, html.audit .hero-sub, html.audit .hero-cta,
html.audit .scroll-cue, html.audit .hero-vert, html.audit .hero .label { opacity: 1 !important; }

/* ——— reduced motion ——— */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .grain { animation: none; }
  .marquee-track { animation: none; flex-wrap: wrap; width: 100%; }
  .marquee-seq[aria-hidden="true"] { display: none; }
  .marquee-seq { flex-wrap: wrap; row-gap: 0.6rem; }
  .scroll-cue .cue-line { animation: none; transform: scaleY(1); }
  *, *::before, *::after { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
  html.js [data-reveal] { opacity: 1; }
  html.js .reveal-line > span { transform: none; }
}
