/* ============================================================
   LunarLots.com — deep navy · antique gold · engraved starlight
   ============================================================ */

:root {
  --navy-950: #060b16;
  --navy-900: #0a1322;
  --navy-850: #0d1a2e;
  --navy-800: #12213a;
  --navy-700: #1a2e4d;
  --gold: #c9a25a;
  --gold-bright: #e8c987;
  --gold-dim: #8a6f3c;
  --parchment: #f0e8d8;
  --silver: #b9c2cf;
  --text: #d5dbe6;
  --text-dim: #93a0b4;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Inter", system-ui, -apple-system, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--navy-950);
  color: var(--text);
  font-family: var(--sans);
  font-weight: 300;
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

/* faint starfield across the whole page */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    radial-gradient(1px 1px at 12% 22%, rgba(255,255,255,.5) 50%, transparent 51%),
    radial-gradient(1px 1px at 78% 12%, rgba(255,255,255,.35) 50%, transparent 51%),
    radial-gradient(1.5px 1.5px at 55% 45%, rgba(233,201,135,.4) 50%, transparent 51%),
    radial-gradient(1px 1px at 32% 68%, rgba(255,255,255,.3) 50%, transparent 51%),
    radial-gradient(1px 1px at 88% 58%, rgba(255,255,255,.4) 50%, transparent 51%),
    radial-gradient(1.5px 1.5px at 8% 85%, rgba(255,255,255,.28) 50%, transparent 51%),
    radial-gradient(1px 1px at 65% 88%, rgba(233,201,135,.3) 50%, transparent 51%),
    radial-gradient(1px 1px at 42% 8%, rgba(255,255,255,.4) 50%, transparent 51%);
  background-size: 900px 900px;
  opacity: .5;
}

main, footer, .nav { position: relative; z-index: 1; }

/* ---------- type ---------- */

.h2 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(2.1rem, 4.5vw, 3.4rem);
  line-height: 1.08;
  color: var(--parchment);
  letter-spacing: .01em;
}

.eyebrow {
  font-family: var(--sans);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .34em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.1rem;
}

.rule-star {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--gold);
  font-size: .8rem;
  margin: 1.4rem 0 1.6rem;
}
.rule-star::before, .rule-star::after {
  content: "";
  height: 1px;
  width: 64px;
  background: linear-gradient(90deg, transparent, var(--gold-dim));
}
.rule-star::after {
  background: linear-gradient(90deg, var(--gold-dim), transparent);
}

.section-head { text-align: center; max-width: 720px; margin: 0 auto 3.5rem; }
.section-head .rule-star { justify-content: center; }
.section-head__sub { color: var(--text-dim); font-size: 1.05rem; }

/* ---------- buttons & links ---------- */

.btn {
  display: inline-block;
  font-family: var(--sans);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 15px 32px;
  border-radius: 2px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all .35s var(--ease);
  text-align: center;
}

.btn--gold {
  background: linear-gradient(135deg, var(--gold-bright), var(--gold) 55%, var(--gold-dim));
  color: #1a1206;
  box-shadow: 0 6px 24px rgba(201, 162, 90, .25);
}
.btn--gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(201, 162, 90, .4);
}

.btn--ghost {
  border-color: rgba(240, 232, 216, .35);
  color: var(--parchment);
  background: rgba(6, 11, 22, .25);
  backdrop-filter: blur(4px);
}
.btn--ghost:hover { border-color: var(--gold); color: var(--gold-bright); }

.btn--lg { padding: 18px 42px; font-size: .85rem; }
.btn--block { width: 100%; }

.link-arrow {
  color: var(--gold);
  text-decoration: none;
  font-weight: 500;
  letter-spacing: .04em;
  border-bottom: 1px solid transparent;
  transition: border-color .3s;
}
.link-arrow span { display: inline-block; transition: transform .3s var(--ease); }
.link-arrow:hover { border-color: var(--gold-dim); }
.link-arrow:hover span { transform: translateX(5px); }
.link-arrow--sm { font-size: .82rem; background: none; border: 0; border-bottom: 1px solid transparent; cursor: pointer; font-family: var(--sans); }

/* ---------- layout ---------- */

.container { width: min(1200px, 92vw); margin: 0 auto; }
.container--narrow { width: min(820px, 92vw); }
.section { padding: clamp(5rem, 9vw, 8.5rem) 0; }

/* ---------- nav ---------- */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background .4s, box-shadow .4s, padding .4s;
  padding: 18px 0;
}
.nav.is-scrolled {
  background: rgba(6, 11, 22, .88);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(201,162,90,.18), 0 12px 40px rgba(0,0,0,.45);
  padding: 10px 0;
}
.nav__inner {
  width: min(1280px, 94vw);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav__brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.nav__logo { width: 44px; height: 44px; filter: drop-shadow(0 2px 8px rgba(0,0,0,.5)); }
.nav__wordmark {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--parchment);
  letter-spacing: .02em;
}
.nav__wordmark em { font-style: normal; color: var(--gold-bright); }
.nav__tld { font-size: .85rem; color: var(--text-dim); font-weight: 400; }

.nav__links { display: flex; gap: 2rem; margin-left: auto; }
.nav__links a {
  color: var(--text);
  text-decoration: none;
  white-space: nowrap;
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  transition: color .3s;
  position: relative;
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: -6px;
  height: 1px;
  background: var(--gold);
  transition: right .35s var(--ease);
}
.nav__links a:hover { color: var(--gold-bright); }
.nav__links a:hover::after { right: 0; }

.nav__cta { white-space: nowrap; padding: 12px 24px; }

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
}
.nav__burger span { width: 24px; height: 2px; background: var(--parchment); transition: all .3s; }

/* ---------- hero ---------- */

.hero {
  position: relative;
  height: 100svh;
  min-height: 640px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero__slides { position: absolute; inset: 0; }
.hero__slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.06);
  transition: opacity 2.2s ease, transform 8s linear;
}
.hero__slide.is-active {
  opacity: 1;
  transform: scale(1);
  transition: opacity 2.2s ease, transform 9s linear;
}

.hero__scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(6,11,22,.62) 0%, rgba(6,11,22,.28) 34%, rgba(6,11,22,.38) 62%, rgba(6,11,22,.94) 100%),
    radial-gradient(ellipse at center 42%, rgba(6,11,22,0) 30%, rgba(6,11,22,.5) 100%);
}

.hero__content {
  position: relative;
  text-align: center;
  padding: 0 6vw;
  max-width: 980px;
}
.hero__title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(3rem, 8.5vw, 6.2rem);
  line-height: 1.02;
  color: var(--parchment);
  text-shadow: 0 4px 40px rgba(0,0,0,.55);
  margin-bottom: 1.4rem;
}
.hero__sub {
  max-width: 640px;
  margin: 0 auto 2.4rem;
  color: rgba(224, 230, 240, .92);
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  text-shadow: 0 2px 18px rgba(0,0,0,.6);
}
.hero__ctas { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

.hero__caption {
  position: absolute;
  left: clamp(1.2rem, 4vw, 3.5rem);
  bottom: 2.2rem;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.02rem;
  color: rgba(240, 232, 216, .85);
  text-shadow: 0 2px 12px rgba(0,0,0,.7);
  max-width: 340px;
  line-height: 1.45;
  transition: opacity .8s;
}

.hero__dots {
  position: absolute;
  right: clamp(1.2rem, 4vw, 3.5rem);
  bottom: 2.4rem;
  display: flex;
  gap: 10px;
}
.hero__dots button {
  width: 26px;
  height: 3px;
  border: 0;
  border-radius: 2px;
  background: rgba(240,232,216,.28);
  cursor: pointer;
  transition: background .4s;
  padding: 0;
}
.hero__dots button.is-active { background: var(--gold-bright); }

.hero__scrollcue {
  position: absolute;
  bottom: 2.2rem;
  left: 50%;
  transform: translateX(-50%);
  width: 24px; height: 38px;
  border: 1.5px solid rgba(240,232,216,.4);
  border-radius: 12px;
  display: flex;
  justify-content: center;
}
.hero__scrollcue span {
  width: 3px; height: 8px;
  margin-top: 7px;
  border-radius: 2px;
  background: var(--gold-bright);
  animation: scrollcue 1.8s infinite var(--ease);
}
@keyframes scrollcue {
  0% { transform: translateY(0); opacity: 1; }
  70% { transform: translateY(12px); opacity: 0; }
  100% { transform: translateY(0); opacity: 0; }
}

/* ---------- ribbon ---------- */

.ribbon {
  border-top: 1px solid rgba(201,162,90,.25);
  border-bottom: 1px solid rgba(201,162,90,.25);
  background: linear-gradient(180deg, rgba(18,33,58,.5), rgba(10,19,34,.5));
  overflow: hidden;
  padding: 14px 0;
}
.ribbon__track {
  display: flex;
  gap: 2.6rem;
  align-items: center;
  white-space: nowrap;
  width: max-content;
  animation: ribbon 36s linear infinite;
}
.ribbon__track span {
  font-family: var(--serif);
  font-size: 1.05rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--silver);
}
.ribbon__track i { color: var(--gold); font-style: normal; font-size: .7rem; }
@keyframes ribbon {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- story ---------- */

.story__grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(2.5rem, 6vw, 5.5rem);
  align-items: center;
}
.story__text p { margin-bottom: 1.15rem; color: var(--text); }
.story__text strong { color: var(--parchment); font-weight: 600; }
.story__figure {
  position: relative;
  border: 1px solid rgba(201,162,90,.3);
  padding: 14px;
  background: rgba(13,26,46,.5);
}
.story__figure::before {
  content: "";
  position: absolute;
  inset: 6px;
  border: 1px solid rgba(201,162,90,.18);
  pointer-events: none;
}
.story__figure img { width: 100%; }
.story__figure figcaption {
  font-family: var(--serif);
  font-style: italic;
  text-align: center;
  color: var(--text-dim);
  padding-top: 12px;
  font-size: .95rem;
}

/* ---------- keepsake ---------- */

.keepsake {
  background:
    radial-gradient(ellipse 90% 60% at 50% 0%, rgba(26,46,77,.55), transparent 65%),
    var(--navy-900);
  border-top: 1px solid rgba(201,162,90,.15);
  border-bottom: 1px solid rgba(201,162,90,.15);
}
.keepsake__hero {
  max-width: 1000px;
  margin: 0 auto 4rem;
  box-shadow: 0 40px 90px rgba(0,0,0,.55);
}
.keepsake__hero img { width: 100%; }

.keepsake__features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.2rem;
  max-width: 1100px;
  margin: 0 auto;
}
.feature__num {
  font-family: var(--serif);
  font-size: 1rem;
  color: var(--gold);
  letter-spacing: .2em;
  display: block;
  margin-bottom: .8rem;
}
.feature h3 {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--parchment);
  margin-bottom: .55rem;
  line-height: 1.25;
}
.feature p { font-size: .92rem; color: var(--text-dim); }

/* ---------- regions ---------- */

.regions__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
}
.region-card {
  position: relative;
  border: 1px solid rgba(201,162,90,.22);
  background: var(--navy-850);
  padding: 0;
  cursor: pointer;
  overflow: hidden;
  transition: transform .45s var(--ease), border-color .45s, box-shadow .45s;
  text-align: left;
}
.region-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform .8s var(--ease), opacity .5s;
  opacity: .92;
}
.region-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
  box-shadow: 0 22px 48px rgba(0,0,0,.5);
}
.region-card:hover img { transform: scale(1.045); opacity: 1; }
.region-card__label {
  display: block;
  padding: 14px 16px 16px;
  border-top: 1px solid rgba(201,162,90,.2);
}
.region-card__label strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.22rem;
  font-weight: 600;
  color: var(--parchment);
  letter-spacing: .02em;
}
.region-card__label span {
  font-size: .78rem;
  color: var(--text-dim);
  letter-spacing: .06em;
}
.region-card__label::after {
  content: "Digital · Print · Aluminum";
  display: block;
  margin-top: 7px;
  font-size: .66rem;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: .85;
}

/* ---------- how ---------- */

.how {
  background:
    radial-gradient(ellipse 80% 50% at 50% 100%, rgba(26,46,77,.4), transparent 60%),
    var(--navy-900);
  border-top: 1px solid rgba(201,162,90,.15);
}
.how__steps {
  list-style: none;
  display: grid;
  gap: 4.5rem;
  max-width: 1000px;
  margin: 0 auto;
}
.how-step {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.how-step:nth-child(even) figure { order: 2; }
.how-step figure {
  border: 1px solid rgba(201,162,90,.28);
  padding: 10px;
  background: rgba(6,11,22,.55);
  box-shadow: 0 24px 60px rgba(0,0,0,.45);
}
.how-step__num {
  font-family: var(--sans);
  font-size: .72rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: .7rem;
}
.how-step h3 {
  font-family: var(--serif);
  font-size: 1.9rem;
  font-weight: 600;
  color: var(--parchment);
  margin-bottom: .7rem;
  line-height: 1.15;
}
.how-step p { color: var(--text-dim); }

/* ---------- claim ---------- */

.claim__grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: start;
}
.claim__intro { position: sticky; top: 110px; }
.claim__intro p { color: var(--text-dim); }
.claim__cert { margin-top: 2rem; border: 1px solid rgba(201,162,90,.25); padding: 10px; background: rgba(13,26,46,.5); }

.claim__panel {
  background: linear-gradient(180deg, var(--navy-850), var(--navy-900));
  border: 1px solid rgba(201,162,90,.3);
  padding: clamp(1.6rem, 3vw, 2.6rem);
  box-shadow: 0 30px 80px rgba(0,0,0,.5);
  position: relative;
}
.claim__panel::before {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(201,162,90,.14);
  pointer-events: none;
}
.claim__panel > * { position: relative; }

.claim__field { margin-bottom: 1.8rem; }
.claim__field label, .claim__label {
  display: block;
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--parchment);
  margin-bottom: .8rem;
}

.select-wrap { position: relative; }
.select-wrap::after {
  content: "▾";
  position: absolute;
  right: 16px; top: 50%;
  transform: translateY(-50%);
  color: var(--gold);
  pointer-events: none;
}
.claim__panel select {
  width: 100%;
  appearance: none;
  background: var(--navy-950);
  border: 1px solid rgba(201,162,90,.35);
  color: var(--parchment);
  font-family: var(--sans);
  font-size: .95rem;
  padding: 14px 44px 14px 16px;
  border-radius: 2px;
  cursor: pointer;
}
.claim__panel select:focus { outline: 1px solid var(--gold); }

.tiers { display: grid; gap: .9rem; }
.tier input { position: absolute; opacity: 0; }
.tier__card {
  display: block;
  position: relative;
  border: 1px solid rgba(185,194,207,.22);
  padding: 16px 18px;
  border-radius: 2px;
  cursor: pointer;
  transition: border-color .3s, background .3s, transform .3s var(--ease);
  background: rgba(6,11,22,.35);
}
.tier:hover .tier__card { border-color: rgba(201,162,90,.5); }
.tier input:checked + .tier__card {
  border-color: var(--gold);
  background: linear-gradient(135deg, rgba(201,162,90,.12), rgba(201,162,90,.04));
  box-shadow: 0 0 0 1px var(--gold), 0 12px 30px rgba(0,0,0,.35);
}
.tier input:focus-visible + .tier__card { outline: 2px solid var(--gold-bright); outline-offset: 2px; }
.tier__badge {
  position: absolute;
  top: -9px; right: 14px;
  font-size: .62rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  background: var(--navy-700);
  color: var(--silver);
  padding: 3px 10px;
  border-radius: 2px;
  border: 1px solid rgba(185,194,207,.3);
}
.tier__badge--gold {
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  color: #1a1206;
  border-color: var(--gold);
}
.tier__name {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--parchment);
  margin-right: .8rem;
}
.tier__price {
  font-family: var(--serif);
  font-size: 1.2rem;
  color: var(--gold-bright);
}
.tier__desc {
  display: block;
  font-size: .84rem;
  color: var(--text-dim);
  margin-top: .35rem;
  line-height: 1.5;
}
.tier__ship {
  display: block;
  margin-top: .55rem;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
}

.claim__preview {
  display: grid;
  grid-template-columns: 96px 1fr auto;
  gap: 1rem;
  align-items: center;
  border: 1px solid rgba(201,162,90,.3);
  background: rgba(6,11,22,.5);
  padding: 12px 14px;
  margin-bottom: 1.6rem;
}
.claim__preview img {
  width: 96px; height: 72px;
  object-fit: cover;
  border: 1px solid rgba(201,162,90,.25);
}
.claim__preview-title {
  display: block;
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--parchment);
}
.claim__preview-coords {
  display: block;
  font-size: .8rem;
  color: var(--text-dim);
  letter-spacing: .04em;
  margin: 2px 0 4px;
}
.claim__preview-total { text-align: right; }
.claim__preview-total span {
  display: block;
  font-size: .68rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.claim__preview-total strong {
  font-family: var(--serif);
  font-size: 1.8rem;
  color: var(--gold-bright);
}

.claim__fineprint {
  margin-top: 1rem;
  text-align: center;
  font-size: .75rem;
  color: var(--text-dim);
  letter-spacing: .03em;
}

/* ---------- gift ---------- */

.gift {
  background:
    radial-gradient(ellipse 70% 60% at 20% 40%, rgba(26,46,77,.5), transparent 65%),
    var(--navy-900);
  border-top: 1px solid rgba(201,162,90,.15);
  border-bottom: 1px solid rgba(201,162,90,.15);
}
.gift__grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}
.gift__figure {
  box-shadow: 0 34px 80px rgba(0,0,0,.55);
  border: 1px solid rgba(201,162,90,.25);
}
.gift__text p { margin-bottom: 1.15rem; color: var(--text-dim); }
.gift__quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.25rem;
  color: var(--parchment) !important;
  border-left: 2px solid var(--gold);
  padding-left: 1.2rem;
  margin: 1.6rem 0 2rem !important;
  line-height: 1.5;
}

/* ---------- faq ---------- */

.faq__list { display: grid; gap: .9rem; }
.faq-item {
  border: 1px solid rgba(185,194,207,.18);
  background: rgba(13,26,46,.45);
  border-radius: 2px;
  transition: border-color .3s;
}
.faq-item[open] { border-color: rgba(201,162,90,.5); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 22px;
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--parchment);
  position: relative;
  padding-right: 52px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 22px; top: 50%;
  transform: translateY(-50%);
  color: var(--gold);
  font-size: 1.4rem;
  font-weight: 300;
  transition: transform .3s var(--ease);
}
.faq-item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-item p {
  padding: 0 22px 20px;
  color: var(--text-dim);
  font-size: .95rem;
}

/* ---------- finale ---------- */

.finale {
  position: relative;
  min-height: 68vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center 30%;
  background-attachment: fixed;
  text-align: center;
}
.finale__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6,11,22,.92) 0%, rgba(6,11,22,.45) 45%, rgba(6,11,22,.92) 100%);
}
.finale__content { position: relative; padding: 6rem 6vw; }
.finale__content .h2 { margin-bottom: 2.2rem; text-shadow: 0 4px 30px rgba(0,0,0,.6); }

/* ---------- footer ---------- */

.footer {
  border-top: 1px solid rgba(201,162,90,.25);
  background: var(--navy-950);
  padding: 4rem 0 0;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
  align-items: start;
}
.footer__brand img { margin-bottom: .8rem; }
.footer__brand p { color: var(--text-dim); font-size: .9rem; margin-top: .4rem; }
.footer__nav { display: grid; gap: .55rem; justify-items: start; }
.footer__nav a {
  color: var(--text-dim);
  text-decoration: none;
  font-size: .82rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  transition: color .3s;
}
.footer__nav a:hover { color: var(--gold-bright); }
.footer__contact p { color: var(--text-dim); font-size: .9rem; margin-bottom: .4rem; }

.footer__legal {
  border-top: 1px solid rgba(185,194,207,.12);
  padding: 1.6rem 0 2rem;
  text-align: center;
}
.footer__legal p {
  color: #6b788c;
  font-size: .74rem;
  letter-spacing: .04em;
  max-width: 760px;
  margin: 0 auto .4rem;
}

/* ---------- lightbox ---------- */

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(4, 8, 16, .93);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4vh 4vw;
  animation: fadein .35s ease;
}
.lightbox[hidden] { display: none; }
.lightbox__figure { max-width: min(1400px, 94vw); }
.lightbox__figure img {
  max-height: 84vh;
  width: auto;
  max-width: 100%;
  margin: 0 auto;
  box-shadow: 0 40px 120px rgba(0,0,0,.8);
  border: 1px solid rgba(201,162,90,.35);
}
.lightbox__figure figcaption {
  text-align: center;
  font-family: var(--serif);
  font-size: 1.2rem;
  color: var(--parchment);
  padding-top: 1rem;
  letter-spacing: .06em;
}
.lightbox__close {
  position: absolute;
  top: 22px; right: 28px;
  background: none;
  border: 1px solid rgba(240,232,216,.35);
  color: var(--parchment);
  width: 44px; height: 44px;
  border-radius: 50%;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all .3s;
}
.lightbox__close:hover { border-color: var(--gold); color: var(--gold-bright); transform: rotate(90deg); }

/* ---------- modal ---------- */

.modal {
  position: fixed;
  inset: 0;
  z-index: 210;
  background: rgba(4, 8, 16, .88);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  overflow-y: auto;
  animation: fadein .3s ease;
}
.modal[hidden] { display: none; }
.modal__card {
  background: linear-gradient(180deg, var(--navy-850), var(--navy-900));
  border: 1px solid var(--gold);
  padding: clamp(1.6rem, 6vw, 3rem) clamp(1.1rem, 5vw, 2.6rem);
  width: 100%;
  max-width: 460px;
  min-width: 0;
  margin: auto;
  text-align: center;
  overflow-wrap: break-word;
  box-shadow: 0 40px 100px rgba(0,0,0,.7);
}
.modal__card img { margin: 0 auto 1.2rem; }
.modal__card h3 {
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--parchment);
  margin-bottom: .6rem;
}
.modal__card p { color: var(--text); margin-bottom: .8rem; }
.modal__note { font-size: .84rem; color: var(--text-dim) !important; margin-bottom: 1.6rem !important; }

@keyframes fadein { from { opacity: 0; } to { opacity: 1; } }

/* ---------- reveal animations ---------- */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero__slide, .hero__slide.is-active { transform: none; transition: opacity 1s; }
  .ribbon__track { animation: none; }
  .finale { background-attachment: scroll; }
  html { scroll-behavior: auto; }
}

/* ---------- responsive ---------- */

@media (max-width: 1080px) {
  .regions__grid { grid-template-columns: repeat(2, 1fr); }
  .keepsake__features { grid-template-columns: repeat(2, 1fr); }
  .claim__grid { grid-template-columns: 1fr; }
  .claim__intro { position: static; }
  .claim__cert { display: none; }
}

@media (max-width: 980px) {
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: flex; }
  .nav.is-open { background: rgba(6,11,22,.97); }
  .nav.is-open .nav__links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: rgba(6,11,22,.97);
    padding: 1.6rem 6vw 2rem;
    gap: 1.2rem;
    border-bottom: 1px solid rgba(201,162,90,.25);
  }
  .story__grid, .gift__grid { grid-template-columns: 1fr; }
  .gift__figure { order: 2; }
  .how-step { grid-template-columns: 1fr; gap: 1.4rem; }
  .how-step:nth-child(even) figure { order: 0; }
  .hero__caption { display: none; }
  .hero__scrollcue { display: none; }
  .hero__dots { right: 50%; transform: translateX(50%); }
  .claim__preview { grid-template-columns: 72px 1fr; }
  .claim__preview img { width: 72px; height: 56px; }
  .claim__preview-total { grid-column: 1 / -1; text-align: left; }
}

@media (max-width: 560px) {
  .regions__grid { grid-template-columns: 1fr; }
  .keepsake__features { grid-template-columns: 1fr; gap: 1.8rem; }
  body { font-size: 16px; }
}
