/* ==========================================================
   Mialle — Fine Jewelry
   palette: deep navy + brushed gold + ivory
   ========================================================== */

:root {
  --ink: #0b1733;
  --ink-2: #07101f;
  --ink-3: #1c356d;
  --ivory: #f6efe2;
  --ivory-2: #ece2cc;
  --paper: #fbf7ee;
  --gold-1: #f3dca6;
  --gold-2: #d6b06a;
  --gold-3: #a17a3a;
  --gold-4: #8c6328;
  --line: rgba(214, 176, 106, 0.35);
  --line-soft: rgba(214, 176, 106, 0.18);
  --grad-gold: linear-gradient(135deg, #f3dca6 0%, #d6b06a 45%, #8c6328 100%);
  --grad-blue: radial-gradient(circle at 50% 35%, #1c356d 0%, #0b1733 55%, #050a18 100%);

  --serif: "Cormorant Garamond", "Times New Roman", serif;
  --sans: "Inter", system-ui, -apple-system, sans-serif;

  --maxw: 1280px;
  --pad: clamp(20px, 4vw, 64px);

  --t: cubic-bezier(.2,.7,.1,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--sans);
  font-weight: 300;
  color: var(--ivory);
  background: var(--ink-2);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  line-height: 1.55;
  letter-spacing: .005em;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

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

/* ---------- film grain ---------- */
.grain {
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 200;
  opacity: .06;
  mix-blend-mode: overlay;
  background-image:
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 .9 0'/></filter><rect width='200' height='200' filter='url(%23n)'/></svg>");
}

/* ---------- custom cursor (subtle) ---------- */
.cursor {
  position: fixed;
  width: 18px; height: 18px;
  border: 1px solid var(--gold-2);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%,-50%);
  z-index: 300;
  transition: transform .25s var(--t), background-color .2s var(--t), opacity .25s ease;
  mix-blend-mode: difference;
  opacity: 0;
}
.cursor.is-on { opacity: .85; }
.cursor.is-link { transform: translate(-50%,-50%) scale(2.4); background: rgba(214,176,106,.15); }
@media (hover: none) { .cursor { display: none; } }

/* ---------- typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.005em;
  color: var(--ivory);
  margin: 0;
}
h1 { font-size: clamp(48px, 9.4vw, 148px); line-height: .92; letter-spacing: -.02em; }
h2 { font-size: clamp(34px, 5.6vw, 84px); line-height: 1.02; }
h3 { font-size: clamp(22px, 2.4vw, 30px); }
em { font-style: italic; color: var(--gold-1); }

.eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--gold-2);
  display: inline-flex; align-items: center; gap: 14px;
  margin: 0 0 18px;
}
.rule {
  display: inline-block; width: 36px; height: 1px;
  background: var(--gold-2); opacity: .8;
}

/* ---------- nav ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px var(--pad);
  z-index: 100;
  transition: backdrop-filter .4s var(--t), background-color .4s var(--t), padding .4s var(--t), border-color .4s var(--t);
  border-bottom: 1px solid transparent;
}
.nav.is-stuck {
  background: rgba(11, 23, 51, .68);
  backdrop-filter: blur(14px) saturate(120%);
  -webkit-backdrop-filter: blur(14px) saturate(120%);
  border-bottom-color: var(--line-soft);
  padding-top: 14px; padding-bottom: 14px;
}
.nav__brand {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--serif); font-size: 22px; letter-spacing: .04em;
  color: var(--ivory);
}
.nav__mark { width: 34px; height: 34px; }
.nav__word { font-style: italic; }
.nav__links { display: flex; gap: 28px; }
.nav__links a {
  position: relative;
  font-size: 12px; letter-spacing: .22em; text-transform: uppercase;
  color: rgba(246, 239, 226, .72);
  padding: 6px 2px;
  transition: color .25s var(--t);
}
.nav__links a::after {
  content: ""; position: absolute; left: 50%; bottom: 0;
  width: 0; height: 1px; background: var(--gold-2);
  transition: width .35s var(--t), left .35s var(--t);
}
.nav__links a:hover { color: var(--ivory); }
.nav__links a:hover::after { width: 100%; left: 0; }

.nav__cta {
  font-size: 11px; letter-spacing: .3em; text-transform: uppercase;
  border: 1px solid var(--line);
  padding: 12px 22px; border-radius: 999px;
  color: var(--ivory);
  transition: background .35s var(--t), color .35s var(--t), border-color .35s var(--t);
}
.nav__cta:hover { background: var(--grad-gold); color: var(--ink); border-color: transparent; }

.nav__burger { display: none; }

@media (max-width: 880px) {
  .nav__links, .nav__cta { display: none; }
  .nav__burger {
    display: inline-flex; flex-direction: column; gap: 5px;
    background: transparent; border: 0; padding: 8px;
    cursor: pointer;
  }
  .nav__burger span { width: 22px; height: 1px; background: var(--ivory); }
}

/* ---------- buttons ---------- */
.btn {
  --bg: transparent;
  --fg: var(--ivory);
  --bd: var(--line);
  position: relative;
  display: inline-flex; align-items: center; justify-content: center;
  padding: 16px 32px;
  font-size: 11px; letter-spacing: .3em; text-transform: uppercase;
  color: var(--fg); background: var(--bg); border: 1px solid var(--bd);
  border-radius: 999px;
  overflow: hidden; cursor: pointer;
  transition: color .4s var(--t), border-color .4s var(--t);
}
.btn span { position: relative; z-index: 1; }
.btn::before {
  content: ""; position: absolute; inset: 0;
  background: var(--grad-gold);
  transform: translateY(101%);
  transition: transform .55s var(--t);
}
.btn:hover { color: var(--ink); border-color: transparent; }
.btn:hover::before { transform: translateY(0); }
.btn--primary { --bd: var(--gold-2); color: var(--gold-1); }
.btn--primary:hover { color: var(--ink); }
.btn--ghost { --bd: rgba(246,239,226,.25); }

/* ==========================================================
   HERO
   ========================================================== */
.hero {
  position: relative;
  min-height: 100svh;
  padding: 140px var(--pad) 80px;
  display: grid; place-items: center;
  background: var(--grad-blue);
  overflow: hidden;
  isolation: isolate;
}
.hero::before, .hero::after {
  content: ""; position: absolute; pointer-events: none;
}
.hero::before {
  inset: 0;
  background:
    radial-gradient(800px 400px at 18% 20%, rgba(214,176,106,.08), transparent 60%),
    radial-gradient(900px 500px at 82% 80%, rgba(28,53,109,.7), transparent 60%);
}
.hero::after {
  inset: 0;
  background:
    linear-gradient(to bottom, transparent 70%, var(--ink-2) 100%);
}

.hero__halo {
  position: absolute; top: 50%; left: 50%;
  width: min(720px, 86vw); aspect-ratio: 1;
  transform: translate(-50%,-50%);
  background: radial-gradient(circle, rgba(214,176,106,.18) 0%, rgba(214,176,106,.06) 35%, transparent 65%);
  filter: blur(20px);
  z-index: -1;
  animation: halo 10s ease-in-out infinite alternate;
}
@keyframes halo {
  from { transform: translate(-50%,-50%) scale(1); opacity: .7; }
  to   { transform: translate(-50%,-50%) scale(1.08); opacity: 1; }
}

.hero__starfield {
  position: absolute; inset: 0; z-index: -1;
  background-image:
    radial-gradient(1px 1px at 12% 22%, rgba(255,247,224,.7), transparent 60%),
    radial-gradient(1px 1px at 78% 14%, rgba(255,247,224,.6), transparent 60%),
    radial-gradient(1.5px 1.5px at 35% 78%, rgba(255,247,224,.5), transparent 60%),
    radial-gradient(1px 1px at 88% 64%, rgba(255,247,224,.55), transparent 60%),
    radial-gradient(1px 1px at 60% 38%, rgba(255,247,224,.4), transparent 60%),
    radial-gradient(1px 1px at 22% 60%, rgba(255,247,224,.45), transparent 60%);
  opacity: .5;
  animation: twinkle 6s ease-in-out infinite alternate;
}
@keyframes twinkle { from { opacity: .35; } to { opacity: .65; } }

.hero__inner {
  position: relative;
  width: 100%; max-width: var(--maxw);
  text-align: center;
  display: grid; gap: 26px;
  justify-items: center;
}

.hero__title {
  font-weight: 300;
}
.hero__line { display: block; }
.hero__line--italic {
  font-style: italic;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__logomark {
  width: clamp(220px, 30vw, 340px);
  margin: 14px 0 6px;
  filter: drop-shadow(0 30px 60px rgba(0,0,0,.55));
}
.hero__logomark svg { width: 100%; height: auto; overflow: visible; }

.logo-shine {
  transform: translateX(-360px) skewX(-20deg);
  animation: shine 6s ease-in-out infinite;
  mix-blend-mode: screen;
  pointer-events: none;
}
@keyframes shine {
  0%, 60% { transform: translateX(-360px) skewX(-20deg); opacity: 0; }
  70% { opacity: .55; }
  100% { transform: translateX(360px) skewX(-20deg); opacity: 0; }
}

.hero__sub {
  max-width: 56ch;
  font-size: clamp(15px, 1.4vw, 17px);
  color: rgba(246,239,226,.72);
}

.hero__cta { display: inline-flex; gap: 14px; flex-wrap: wrap; justify-content: center; }

.hero__scroll {
  margin-top: 12px;
  font-size: 10px; letter-spacing: .35em; text-transform: uppercase;
  color: rgba(246,239,226,.55);
  display: inline-flex; align-items: center; gap: 12px;
}
.hero__scroll span {
  display: inline-block; width: 1px; height: 36px;
  background: linear-gradient(to bottom, var(--gold-2), transparent);
  position: relative;
}
.hero__scroll span::after {
  content: ""; position: absolute; left: -1px; top: 0;
  width: 1px; height: 12px; background: var(--gold-1);
  animation: drop 2.2s ease-in-out infinite;
}
@keyframes drop {
  0% { transform: translateY(-12px); opacity: 0; }
  40% { opacity: 1; }
  100% { transform: translateY(36px); opacity: 0; }
}

/* ==========================================================
   MARQUEE
   ========================================================== */
.marquee {
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  padding: 26px 0;
  background: var(--ink-2);
  overflow: hidden;
}
.marquee__track {
  display: inline-flex; align-items: center; gap: 38px;
  white-space: nowrap;
  font-family: var(--serif); font-style: italic;
  font-size: clamp(22px, 2.6vw, 30px);
  color: var(--ivory);
  animation: marquee 40s linear infinite;
}
.marquee__track em {
  font-style: normal; color: var(--gold-2); font-size: .8em;
}
@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* ==========================================================
   PHILOSOPHY
   ========================================================== */
.philosophy {
  padding: clamp(80px, 12vw, 160px) var(--pad);
  background: linear-gradient(to bottom, var(--ink-2), var(--ink));
}
.philosophy .grid {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: 1.1fr 2fr;
  gap: clamp(30px, 5vw, 80px);
  align-items: start;
}
.philosophy__label p { margin: 0; font-size: 12px; letter-spacing: .3em; text-transform: uppercase; color: var(--gold-2); }
.philosophy__label { display: flex; align-items: center; gap: 14px; padding-top: 18px; }
.philosophy__title { grid-column: 2 / 3; font-size: clamp(28px, 3.6vw, 50px); line-height: 1.15; }
.philosophy__body { grid-column: 2 / 3; max-width: 60ch; color: rgba(246,239,226,.72); display: grid; gap: 14px; }

@media (max-width: 800px) {
  .philosophy .grid { grid-template-columns: 1fr; }
  .philosophy__title, .philosophy__body { grid-column: 1 / -1; }
}

/* ==========================================================
   SECTION HEAD
   ========================================================== */
.section-head {
  max-width: var(--maxw); margin: 0 auto;
  padding: 0 0 clamp(40px, 6vw, 80px);
}
.section-head h2 { max-width: 18ch; }

/* ==========================================================
   COLLECTIONS
   ========================================================== */
.collections {
  padding: clamp(80px, 12vw, 160px) var(--pad);
  background: var(--ink);
  border-top: 1px solid var(--line-soft);
}
.cards {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; gap: 28px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.card {
  position: relative;
  padding: 34px 30px 30px;
  background: linear-gradient(180deg, rgba(28,53,109,.18), rgba(7,16,31,.6));
  border: 1px solid var(--line-soft);
  border-radius: 4px;
  transition: transform .6s var(--t), border-color .6s var(--t), background .6s var(--t);
  overflow: hidden;
}
.card::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(360px 200px at var(--mx, 50%) var(--my, 0%), rgba(214,176,106,.18), transparent 60%);
  opacity: 0; transition: opacity .5s var(--t);
  pointer-events: none;
}
.card:hover { border-color: var(--line); transform: translateY(-4px); }
.card:hover::before { opacity: 1; }
.card__art {
  height: 240px; display: grid; place-items: center;
  margin-bottom: 22px;
  border-bottom: 1px solid var(--line-soft);
  padding-bottom: 20px;
}
.card__art svg { height: 100%; width: auto; max-width: 100%; }
.card h3 { margin-bottom: 8px; font-style: italic; }
.card p { color: rgba(246,239,226,.7); font-size: 14px; margin: 0 0 18px; }
.card__more {
  font-size: 11px; letter-spacing: .26em; text-transform: uppercase;
  color: var(--gold-1);
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  transition: border-color .35s var(--t), color .35s var(--t);
}
.card__more:hover { border-color: var(--gold-2); color: var(--ivory); }

@media (max-width: 880px) { .cards { grid-template-columns: 1fr; } .card__art { height: 200px; } }

/* ==========================================================
   BRIDAL
   ========================================================== */
.bridal {
  padding: clamp(80px, 12vw, 160px) var(--pad);
  background: linear-gradient(180deg, var(--ink), var(--ink-2));
  display: grid; grid-template-columns: 1.05fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
  max-width: calc(var(--maxw) + 2 * var(--pad));
  margin: 0 auto;
}
.bridal__visual {
  position: relative;
  perspective: 1000px;
}
.bridal__plate {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
  aspect-ratio: 5/6;
  background: var(--ink-3);
  transform: rotateY(-2deg) rotateX(2deg);
  transition: transform .8s var(--t);
  box-shadow:
    0 40px 80px rgba(0,0,0,.5),
    inset 0 0 0 1px rgba(214,176,106,.06);
}
.bridal__plate::before {
  content: ""; position: absolute; inset: 12px;
  border: 1px solid var(--line-soft);
  border-radius: 4px;
  pointer-events: none;
  z-index: 2;
}
.bridal__plate svg { width: 100%; height: 100%; }
.bridal:hover .bridal__plate { transform: rotateY(0) rotateX(0); }

.bridal__copy { display: grid; gap: 22px; align-content: start; }
.bridal__list {
  list-style: none; padding: 0; margin: 8px 0 6px;
  display: grid; gap: 14px;
}
.bridal__list li {
  display: grid; grid-template-columns: 48px 1fr; align-items: baseline; gap: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line-soft);
  color: rgba(246,239,226,.78);
}
.bridal__list span {
  font-family: var(--serif); font-style: italic; color: var(--gold-2);
  font-size: 18px;
}

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

/* ==========================================================
   STONES
   ========================================================== */
.stones {
  padding: clamp(80px, 12vw, 160px) var(--pad);
  background: var(--ink-2);
  border-top: 1px solid var(--line-soft);
}
.stones__row {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; gap: 24px;
  grid-template-columns: repeat(4, 1fr);
}
.stone {
  margin: 0;
  padding: 28px 22px;
  border: 1px solid var(--line-soft);
  border-radius: 4px;
  background: linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,0));
  text-align: center;
  transition: transform .5s var(--t), border-color .5s var(--t);
}
.stone:hover { transform: translateY(-3px); border-color: var(--line); }
.stone__art { height: 140px; display: grid; place-items: center; margin-bottom: 14px; }
.stone__art svg { height: 100%; }
.stone strong {
  display: block; font-family: var(--serif); font-weight: 500; font-style: italic;
  font-size: 22px; color: var(--ivory); margin-bottom: 4px;
}
.stone span { color: rgba(246,239,226,.6); font-size: 13px; }

@media (max-width: 880px) { .stones__row { grid-template-columns: repeat(2, 1fr); } }

/* ==========================================================
   ATELIER
   ========================================================== */
.atelier {
  padding: clamp(80px, 12vw, 160px) var(--pad);
  background:
    radial-gradient(900px 400px at 20% 0%, rgba(214,176,106,.05), transparent 60%),
    var(--ink);
  border-top: 1px solid var(--line-soft);
}
.atelier__inner { max-width: var(--maxw); margin: 0 auto; display: grid; gap: 22px; }
.atelier__lede { max-width: 60ch; color: rgba(246,239,226,.72); }
.atelier__stats {
  margin-top: 30px;
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}
.stat {
  padding: 28px 18px;
  border-right: 1px solid var(--line-soft);
}
.stat:last-child { border-right: 0; }
.stat__num {
  display: block;
  font-family: var(--serif); font-style: italic; font-size: clamp(36px, 4vw, 56px);
  background: var(--grad-gold);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  line-height: 1;
}
.stat__label {
  display: block; margin-top: 10px;
  font-size: 11px; letter-spacing: .26em; text-transform: uppercase;
  color: rgba(246,239,226,.58);
}
@media (max-width: 880px) {
  .atelier__stats { grid-template-columns: repeat(2,1fr); }
  .stat:nth-child(2n) { border-right: 0; }
  .stat:nth-child(-n+2) { border-bottom: 1px solid var(--line-soft); }
}

/* ==========================================================
   LOOKBOOK
   ========================================================== */
.lookbook {
  padding: clamp(80px, 12vw, 160px) var(--pad);
  background: linear-gradient(to bottom, var(--ink), var(--ink-2));
  border-top: 1px solid var(--line-soft);
}
.lookbook__grid {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; gap: 24px;
  grid-template-columns: repeat(4, 1fr);
}
.look { text-align: center; }
.look__art {
  aspect-ratio: 4/5;
  border: 1px solid var(--line-soft);
  border-radius: 4px;
  margin-bottom: 16px;
  display: grid; place-items: center;
  background:
    radial-gradient(circle at 50% 60%, rgba(214,176,106,.05), transparent 70%),
    linear-gradient(180deg, rgba(28,53,109,.25), rgba(7,16,31,.5));
  overflow: hidden;
  transition: transform .8s var(--t), border-color .8s var(--t);
}
.look__art svg { width: 60%; height: auto; transform: rotate(0); transition: transform 1.2s var(--t); }
.look:hover .look__art { border-color: var(--line); transform: translateY(-4px); }
.look:hover .look__art svg { transform: rotate(var(--a, 6deg)); }
.look p {
  font-family: var(--serif); font-style: italic; font-size: 18px;
  color: rgba(246,239,226,.85); margin: 0;
}
@media (max-width: 880px) { .lookbook__grid { grid-template-columns: repeat(2, 1fr); } }

/* ==========================================================
   QUOTE
   ========================================================== */
.quote {
  padding: clamp(80px, 12vw, 140px) var(--pad);
  background: var(--ink-2);
  text-align: center;
  border-top: 1px solid var(--line-soft);
}
.quote figure {
  max-width: 880px; margin: 0 auto;
  position: relative;
}
.quote__mark {
  width: 60px; height: 60px;
  margin: 0 auto 10px;
}
.quote blockquote {
  font-family: var(--serif); font-style: italic; font-weight: 300;
  font-size: clamp(24px, 3.4vw, 42px);
  line-height: 1.25; color: var(--ivory);
  margin: 0 0 22px;
}
.quote figcaption {
  font-size: 11px; letter-spacing: .26em; text-transform: uppercase;
  color: var(--gold-2);
}

/* ==========================================================
   CONTACT
   ========================================================== */
.contact {
  padding: clamp(80px, 12vw, 160px) var(--pad);
  background: var(--ink);
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 100px);
  max-width: calc(var(--maxw) + 2 * var(--pad));
  margin: 0 auto;
  border-top: 1px solid var(--line-soft);
}
.contact__left { display: grid; gap: 18px; align-content: start; }
.contact__lines {
  list-style: none; padding: 0; margin-top: 14px;
  display: grid; gap: 14px;
}
.contact__lines li {
  display: grid; grid-template-columns: 100px 1fr;
  align-items: baseline; gap: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line-soft);
}
.contact__lines span {
  font-size: 11px; letter-spacing: .26em; text-transform: uppercase;
  color: var(--gold-2);
}
.contact__lines a { color: var(--ivory); }
.contact__lines a:hover { color: var(--gold-1); }

.contact__form {
  display: grid; grid-template-columns: 1fr 1fr; gap: 18px 22px;
  align-content: start;
}
.contact__form .btn { grid-column: 1 / -1; justify-self: start; margin-top: 8px; }
.field { display: grid; gap: 8px; }
.field--full { grid-column: 1 / -1; }
.field span {
  font-size: 11px; letter-spacing: .26em; text-transform: uppercase;
  color: var(--gold-2);
}
.field input, .field select, .field textarea {
  font: inherit; color: var(--ivory);
  background: transparent;
  border: 0; border-bottom: 1px solid var(--line-soft);
  padding: 12px 2px;
  outline: none;
  border-radius: 0;
  transition: border-color .35s var(--t);
}
.field textarea { resize: vertical; min-height: 100px; }
.field input:focus, .field select:focus, .field textarea:focus { border-bottom-color: var(--gold-2); }
.field select { appearance: none; background: transparent; }
.field select option { background: var(--ink-2); color: var(--ivory); }

.form__status { grid-column: 1 / -1; min-height: 22px; color: var(--gold-1); font-size: 13px; margin: 0; }

@media (max-width: 880px) {
  .contact { grid-template-columns: 1fr; }
  .contact__form { grid-template-columns: 1fr; }
}

/* simple centered contact (no form) */
.contact--simple {
  display: block;
  text-align: center;
}
.contact__center {
  max-width: 760px;
  margin: 0 auto;
  display: grid;
  gap: 22px;
  justify-items: center;
}
.contact__center .eyebrow { justify-content: center; }
.contact__center h2 { font-style: italic; }
.contact__lede {
  color: rgba(246, 239, 226, .7);
  max-width: 56ch;
  margin: 0;
}
.contact__email {
  display: inline-block;
  margin-top: 6px;
  font-family: var(--serif);
  font-size: clamp(26px, 3.2vw, 44px);
  letter-spacing: .005em;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  position: relative;
  padding-bottom: 8px;
}
.contact__email::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: 0;
  height: 1px;
  background: var(--gold-2);
  opacity: .35;
  transition: opacity .4s var(--t);
}
.contact__email:hover::after { opacity: 1; }
.contact__hours {
  margin: 4px 0 0;
  font-size: 11px; letter-spacing: .26em; text-transform: uppercase;
  color: var(--gold-2);
}

/* ==========================================================
   NEWSLETTER
   ========================================================== */
.news {
  padding: clamp(60px, 9vw, 110px) var(--pad);
  background: var(--ink-2);
  border-top: 1px solid var(--line-soft);
  text-align: center;
}
.news__inner { max-width: 620px; margin: 0 auto; }
.news h3 { font-family: var(--serif); font-style: italic; font-size: clamp(26px, 3vw, 36px); margin-bottom: 10px; }
.news p { color: rgba(246,239,226,.6); margin: 0 0 22px; }
.news__form {
  display: grid; grid-template-columns: 1fr auto;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px;
  overflow: hidden;
  transition: border-color .4s var(--t);
}
.news__form:focus-within { border-color: var(--gold-2); }
.news__form input {
  background: transparent; border: 0; outline: none;
  color: var(--ivory); font: inherit;
  padding: 12px 18px;
}
.news__form button {
  border: 0; cursor: pointer;
  font: inherit; font-size: 11px; letter-spacing: .3em; text-transform: uppercase;
  padding: 12px 24px; border-radius: 999px;
  background: var(--grad-gold); color: var(--ink);
  transition: filter .35s var(--t), transform .35s var(--t);
}
.news__form button:hover { filter: brightness(1.05); transform: translateY(-1px); }

/* ==========================================================
   FOOTER
   ========================================================== */
.foot {
  padding: 60px var(--pad) 30px;
  background: var(--ink-2);
  border-top: 1px solid var(--line-soft);
}
.foot__top {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: 1fr auto 1fr;
  align-items: center; gap: 24px;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--line-soft);
}
.foot__brand { display: inline-flex; align-items: center; gap: 12px; font-family: var(--serif); font-style: italic; font-size: 22px; }
.foot__brand svg { width: 30px; height: 30px; }
.foot__top nav { display: flex; gap: 22px; justify-content: center; flex-wrap: wrap; }
.foot__top nav a { font-size: 11px; letter-spacing: .26em; text-transform: uppercase; color: rgba(246,239,226,.65); }
.foot__top nav a:hover { color: var(--gold-1); }
.foot__social { display: flex; gap: 18px; justify-content: flex-end; }
.foot__social a { font-size: 11px; letter-spacing: .26em; text-transform: uppercase; color: rgba(246,239,226,.65); }
.foot__social a:hover { color: var(--gold-1); }
.foot__bottom {
  max-width: var(--maxw); margin: 0 auto;
  display: flex; justify-content: space-between; gap: 16px;
  padding-top: 22px;
  font-size: 11px; letter-spacing: .14em;
  color: rgba(246,239,226,.45);
  flex-wrap: wrap;
}

@media (max-width: 720px) {
  .foot__top { grid-template-columns: 1fr; text-align: center; }
  .foot__social { justify-content: center; }
}

/* ==========================================================
   REVEAL ANIMATIONS
   ========================================================== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 1s var(--t), transform 1s var(--t); }
.reveal.is-in { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .marquee__track, .halo, .logo-shine, .hero__starfield { animation: none !important; }
}
