:root {
  --midnight: #1B1430;
  --midnight-deep: #120D22;
  --silver-1: #f4f6fb;
  --silver-2: #c9cdd8;
  --silver-3: #9ba0ae;
  --gold: #C9A24B;
  --plum: #7A2E52;
  --text-soft: #b9b6cb;
  --text-mute: #6f6a85;
  --maxw: 720px;
}

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

html, body { height: 100%; }

body {
  background: var(--midnight-deep);
  color: var(--silver-1);
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow-x: hidden;
}

/* ---------- Night sky ---------- */
.sky {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(120% 90% at 50% -10%, #2a2046 0%, var(--midnight) 42%, var(--midnight-deep) 100%);
}

.glow {
  position: absolute;
  left: 50%;
  top: 38%;
  width: min(90vw, 760px);
  height: min(90vw, 760px);
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(201, 205, 216, 0.10) 0%, rgba(201, 205, 216, 0) 62%);
  filter: blur(8px);
}

#starfield {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* Decorative four-point accent sparkles */
.accent-sparkles .acc {
  position: absolute;
  opacity: 0;
  animation: twinkle var(--dur, 5s) ease-in-out infinite;
  animation-delay: var(--delay, 0s);
  filter: drop-shadow(0 0 6px rgba(201, 205, 216, 0.4));
}
.accent-sparkles .acc img { display: block; width: 100%; height: auto; }

@keyframes twinkle {
  0%, 100% { opacity: 0; transform: scale(0.6) rotate(0deg); }
  50%      { opacity: var(--peak, 0.9); transform: scale(1) rotate(8deg); }
}

/* ---------- Language toggle ---------- */
.lang {
  position: fixed;
  top: clamp(18px, 3vw, 34px);
  right: clamp(18px, 3vw, 38px);
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
}
.lang-btn {
  background: none;
  border: none;
  color: var(--text-mute);
  font: inherit;
  letter-spacing: inherit;
  cursor: pointer;
  text-decoration: none;
  padding: 4px 2px;
  transition: color 0.3s ease;
}
.lang-btn:hover { color: var(--silver-2); }
.lang-btn.is-active { color: var(--silver-1); }
.lang-sep { color: var(--text-mute); }

/* ---------- Stage / content ---------- */
.stage {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: clamp(80px, 14vh, 140px) clamp(22px, 6vw, 40px) clamp(40px, 8vh, 80px);
  max-width: var(--maxw);
  margin: 0 auto;
}

.eyebrow {
  font-size: clamp(0.68rem, 1.4vw, 0.8rem);
  text-transform: uppercase;
  letter-spacing: 0.42em;
  color: var(--text-mute);
  margin-bottom: clamp(26px, 5vh, 44px);
  padding-left: 0.42em;
  animation: rise 1s ease 0.1s both;
}

/* Silver foil text */
.foil {
  background: linear-gradient(100deg, #b8bcc8 0%, #f4f6fb 22%, #c9cdd8 42%, #ffffff 52%, #9ba0ae 72%, #e8eaf0 100%);
  background-size: 220% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: shimmer 9s linear infinite;
}
@keyframes shimmer { to { background-position: 220% center; } }

.lockup {
  position: relative;
  display: inline-block;
  line-height: 0;
  animation: rise 1.2s ease 0.18s both, floaty 7s ease-in-out 1.4s infinite;
  will-change: transform;
}

.hero-logo {
  display: block;
  width: clamp(264px, 66vw, 540px);
  height: auto;
  filter: drop-shadow(0 6px 26px rgba(201, 205, 216, 0.18));
}

.tm {
  position: absolute;
  top: 40%;
  right: clamp(-18px, -3.4vw, -10px);
  font-size: clamp(0.7rem, 1.6vw, 0.95rem);
  line-height: 1;
  color: var(--text-mute);
  font-family: "Inter", sans-serif;
}

.tagline {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.5rem, 5.2vw, 2.6rem);
  margin-top: clamp(16px, 3vh, 28px);
  letter-spacing: 0.012em;
  animation: rise 1.1s ease 0.32s both;
}

.valueprop {
  font-family: "Cormorant Garamond", Georgia, serif;
  color: var(--silver-2);
  font-size: clamp(1.18rem, 3.2vw, 1.5rem);
  font-weight: 500;
  line-height: 1.5;
  max-width: 30ch;
  margin-top: clamp(24px, 4.5vh, 38px);
  animation: rise 1.1s ease 0.46s both;
}

.story {
  font-family: "Cormorant Garamond", Georgia, serif;
  color: var(--text-soft);
  font-size: clamp(1.02rem, 2.7vw, 1.22rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.55;
  max-width: 32ch;
  margin-top: 12px;
  animation: rise 1.1s ease 0.56s both;
}

/* ---------- Waitlist ---------- */
.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.waitlist {
  width: 100%;
  max-width: 440px;
  margin-top: clamp(34px, 6vh, 52px);
  animation: rise 1.1s ease 0.66s both;
}

.waitlist-heading {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: clamp(0.66rem, 1.3vw, 0.74rem);
  text-transform: uppercase;
  letter-spacing: 0.36em;
  color: var(--silver-2);
  padding-left: 0.36em;
  margin-bottom: 18px;
}

.waitlist-form {
  display: flex;
  gap: 10px;
  width: 100%;
}

.waitlist-input {
  flex: 1 1 auto;
  min-width: 0;
  font-family: "Inter", sans-serif;
  font-size: 0.95rem;
  font-weight: 300;
  letter-spacing: 0.01em;
  color: var(--silver-1);
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(201, 205, 216, 0.24);
  border-radius: 3px;
  padding: 14px 18px;
  transition: border-color 0.25s ease, background 0.25s ease;
}
.waitlist-input::placeholder { color: var(--text-mute); font-weight: 300; }
.waitlist-input:hover { border-color: rgba(201, 205, 216, 0.4); }
.waitlist-input:focus {
  outline: none;
  border-color: rgba(201, 205, 216, 0.7);
  background: rgba(255, 255, 255, 0.06);
}
.waitlist-input.is-invalid {
  border-color: rgba(206, 130, 150, 0.8);
}

.waitlist-button {
  flex: 0 0 auto;
  font-family: "Inter", sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--silver-1);
  background: transparent;
  border: 1px solid rgba(201, 205, 216, 0.42);
  border-radius: 3px;
  padding: 0 24px;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.35s ease, color 0.35s ease, border-color 0.35s ease;
}
.waitlist-button:hover,
.waitlist-button:focus-visible {
  background: linear-gradient(135deg, #eef0f5 0%, #c9cdd8 55%, #aab0be 100%);
  border-color: transparent;
  color: var(--midnight-deep);
  outline: none;
}
.waitlist-button:active { transform: translateY(1px); }
.waitlist-button:disabled { opacity: 0.5; cursor: default; }

.waitlist-status {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-style: italic;
  font-size: 1.08rem;
  line-height: 1.45;
  min-height: 1.2em;
  margin-top: 16px;
  color: var(--silver-2);
  opacity: 0;
  transition: opacity 0.45s ease;
}
.waitlist-status.is-visible { opacity: 1; }
.waitlist-status.is-error { color: #d99cab; }

.waitlist-privacy {
  font-family: "Inter", sans-serif;
  font-size: 0.7rem;
  font-weight: 300;
  line-height: 1.5;
  color: var(--text-mute);
  margin-top: 16px;
  max-width: 40ch;
  margin-left: auto;
  margin-right: auto;
}

/* Success — the form collapses into an elegant, unmistakable confirmation */
.waitlist.is-done .waitlist-heading,
.waitlist.is-done .waitlist-form,
.waitlist.is-done .waitlist-privacy { display: none; }
.waitlist.is-done .waitlist-status {
  font-size: clamp(1.2rem, 2.8vw, 1.5rem);
  color: var(--silver-1);
  margin-top: 0;
  max-width: 28ch;
  margin-left: auto;
  margin-right: auto;
}
.waitlist.is-done .waitlist-status::before {
  content: "";
  display: block;
  width: 34px;
  height: 34px;
  margin: 0 auto 16px;
  background: url("sparkle.png") center / contain no-repeat;
  filter: drop-shadow(0 0 9px rgba(201, 205, 216, 0.55));
  animation: floaty 6s ease-in-out infinite;
}

@media (max-width: 460px) {
  .waitlist-form { flex-direction: column; }
  .waitlist-button { padding: 14px 20px; }
}

/* Two finishes hint */
.finishes {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: clamp(38px, 7vh, 60px);
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--text-soft);
  animation: rise 1.1s ease 0.68s both;
}
.finish { display: inline-flex; align-items: center; gap: 8px; }
.finish-sep { color: var(--text-mute); }
.dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  display: inline-block;
}
.dot-gold   { background: linear-gradient(135deg, #e9c87a, #C9A24B); box-shadow: 0 0 8px rgba(201,162,75,0.55); }
.dot-silver { background: linear-gradient(135deg, #f4f6fb, #9ba0ae); box-shadow: 0 0 8px rgba(201,205,216,0.55); }
.finishes-note {
  flex-basis: 100%;
  text-transform: none;
  letter-spacing: 0.04em;
  font-size: 0.72rem;
  color: var(--text-mute);
  margin-top: 6px;
}

/* ---------- Footer ---------- */
.foot {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: clamp(22px, 4vh, 34px) 20px;
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  color: var(--text-mute);
}
.foot-mark { color: var(--text-soft); }
.foot-sep { margin: 0 8px; }

/* ---------- Animations ---------- */
@keyframes rise {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
  .foil { background-position: 0 center; }
}

/* =========================================================================
   MULTI-PAGE / BRAND SITE
   ========================================================================= */

/* ---------- Site header / nav ---------- */
.site-header {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: clamp(18px, 3vw, 26px) clamp(20px, 5vw, 48px);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  text-decoration: none;
  color: var(--silver-1);
}
.brand img { width: 18px; height: 18px; display: block; filter: drop-shadow(0 0 6px rgba(201,205,216,0.4)); }
.brand span {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.28rem;
  letter-spacing: 0.02em;
  line-height: 1;
}
/* On the home hero, hide the small brand wordmark (the giant lockup is the brand) */
.home .brand span { display: none; }

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.4vw, 30px);
}
.site-nav a {
  font-family: "Inter", sans-serif;
  font-size: 0.74rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--text-soft);
  text-decoration: none;
  padding: 4px 0;
  position: relative;
  transition: color 0.25s ease;
}
.site-nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: -2px;
  height: 1px;
  background: var(--silver-2);
  transition: right 0.3s ease;
}
.site-nav a:hover,
.site-nav a[aria-current="page"] { color: var(--silver-1); }
.site-nav a:hover::after,
.site-nav a[aria-current="page"]::after { right: 0; }

.nav-toggle,
.nav-close {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  color: var(--silver-1);
}
.nav-toggle svg,
.nav-close svg { display: block; width: 22px; height: 22px; }
.header-right { display: flex; align-items: center; gap: 16px; }
.site-header .lang { position: static; top: auto; right: auto; }

@media (max-width: 720px) {
  .nav-toggle { display: inline-flex; }
  .site-nav {
    position: fixed;
    inset: 0;
    flex-direction: column;
    justify-content: center;
    gap: 26px;
    background: rgba(18, 13, 34, 0.97);
    backdrop-filter: blur(8px);
    transform: translateY(-100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 30;
  }
  .site-nav.is-open { transform: translateY(0); }
  .site-nav a { font-size: 1rem; letter-spacing: 0.22em; }
  .nav-close {
    display: inline-flex;
    position: fixed;
    top: clamp(18px, 3vw, 26px);
    right: clamp(20px, 5vw, 48px);
    z-index: 31;
  }
}

/* ---------- Page shell (inner pages) ---------- */
.page {
  position: relative;
  z-index: 2;
  max-width: 920px;
  margin: 0 auto;
  padding: clamp(110px, 16vh, 168px) clamp(22px, 6vw, 44px) clamp(64px, 10vh, 110px);
}
.page-narrow { max-width: 760px; }

.page-hero { text-align: center; margin-bottom: clamp(44px, 8vh, 80px); }
.page-eyebrow {
  font-family: "Inter", sans-serif;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.34em;
  color: var(--text-mute);
  padding-left: 0.34em;
  margin-bottom: 18px;
}
.page-title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 500;
  font-size: clamp(2.4rem, 6.5vw, 4rem);
  line-height: 1.04;
  letter-spacing: 0.005em;
  color: var(--silver-1);
}
.page-title .foil { font-weight: 500; }
.page-lede {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-style: italic;
  font-size: clamp(1.2rem, 3vw, 1.6rem);
  font-weight: 400;
  line-height: 1.5;
  color: var(--silver-2);
  max-width: 32ch;
  margin: 22px auto 0;
}

/* ---------- Prose ---------- */
.prose { max-width: 64ch; margin: 0 auto; }
.prose > * + * { margin-top: 1.25em; }
.prose p {
  font-family: "Inter", sans-serif;
  font-size: 1.02rem;
  font-weight: 300;
  line-height: 1.75;
  color: var(--text-soft);
}
.prose h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 500;
  font-size: clamp(1.6rem, 4vw, 2.1rem);
  line-height: 1.2;
  color: var(--silver-1);
  margin-top: 2em;
}
.prose h3 {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--silver-2);
  margin-top: 1.8em;
}
.prose strong { color: var(--silver-1); font-weight: 500; }
.prose em { color: var(--silver-2); }
.prose a { color: var(--silver-1); text-decoration: underline; text-underline-offset: 3px; text-decoration-color: rgba(201,205,216,0.4); }
.prose a:hover { text-decoration-color: var(--silver-2); }
.prose ul { padding-left: 1.1em; }
.prose li {
  font-family: "Inter", sans-serif;
  font-size: 1.02rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--text-soft);
  margin-top: 0.5em;
}
.prose li::marker { color: var(--silver-3); }

.signoff {
  font-family: "Cormorant Garamond", Georgia, serif !important;
  font-style: italic;
  font-size: 1.18rem !important;
  color: var(--silver-2) !important;
  margin-top: 2em;
}

/* Section divider sparkle */
.divider {
  display: block;
  width: 22px; height: 22px;
  margin: clamp(40px, 7vh, 64px) auto;
  background: url("sparkle.png") center / contain no-repeat;
  opacity: 0.7;
  filter: drop-shadow(0 0 6px rgba(201,205,216,0.4));
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: "Inter", sans-serif;
  font-size: 0.74rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  text-decoration: none;
  cursor: pointer;
  border-radius: 3px;
  padding: 14px 30px;
  transition: background 0.35s ease, color 0.35s ease, border-color 0.35s ease;
}
.btn-primary {
  color: var(--midnight-deep);
  background: linear-gradient(135deg, #eef0f5 0%, #c9cdd8 55%, #aab0be 100%);
  border: 1px solid transparent;
}
.btn-primary:hover { filter: brightness(1.06); }
.btn-ghost {
  color: var(--silver-1);
  background: transparent;
  border: 1px solid rgba(201, 205, 216, 0.42);
}
.btn-ghost:hover {
  background: linear-gradient(135deg, #eef0f5 0%, #c9cdd8 55%, #aab0be 100%);
  border-color: transparent;
  color: var(--midnight-deep);
}
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-top: clamp(30px, 5vh, 44px); }

/* ---------- Collection cards ---------- */
.collection-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(18px, 3vw, 30px);
  margin-top: clamp(36px, 6vh, 56px);
}
.crown-card {
  border: 1px solid rgba(201, 205, 216, 0.16);
  border-radius: 6px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.02);
  transition: border-color 0.3s ease, transform 0.3s ease;
}
.crown-card:hover { border-color: rgba(201, 205, 216, 0.34); transform: translateY(-3px); }
.crown-card img { display: block; width: 100%; height: auto; }
.crown-card-body { padding: 20px 22px 24px; text-align: center; }
.crown-card-name {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--silver-1);
}
.crown-card-meta {
  font-family: "Inter", sans-serif;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--text-mute);
  margin-top: 8px;
}
.preview-tag {
  display: inline-block;
  font-family: "Inter", sans-serif;
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--text-mute);
  border: 1px solid rgba(201, 205, 216, 0.22);
  border-radius: 999px;
  padding: 5px 12px;
  margin-bottom: 22px;
}

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

.collection-solo { max-width: 560px; margin: clamp(34px, 6vh, 54px) auto 0; }

/* ---------- Spec / feature list ---------- */
.spec-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1px;
  background: rgba(201, 205, 216, 0.12);
  border: 1px solid rgba(201, 205, 216, 0.12);
  border-radius: 6px;
  overflow: hidden;
  margin-top: clamp(32px, 5vh, 48px);
}
.spec {
  background: var(--midnight-deep);
  padding: 26px 24px;
}
.spec-label {
  font-family: "Inter", sans-serif;
  font-size: 0.66rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--text-mute);
  margin-bottom: 10px;
}
.spec-value {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.18rem;
  line-height: 1.4;
  color: var(--silver-1);
}

/* ---------- Trade / contact ---------- */
.trade-points { list-style: none; padding: 0; margin: clamp(30px,5vh,46px) 0 0; }
.trade-points li {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--text-soft);
  padding-left: 26px;
  position: relative;
  margin-top: 14px;
}
.trade-points li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.5em;
  width: 12px; height: 12px;
  background: url("sparkle.png") center / contain no-repeat;
  opacity: 0.8;
}

/* ---------- Inner footer ---------- */
.site-footer {
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(201, 205, 216, 0.1);
  padding: clamp(40px, 7vh, 64px) clamp(22px, 6vw, 44px);
  margin-top: auto;
}
.site-footer-inner {
  max-width: 920px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.site-footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.2rem;
  color: var(--silver-2);
  text-decoration: none;
}
.site-footer-brand img { width: 16px; height: 16px; }
.site-footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(14px, 2.4vw, 26px);
}
.site-footer-nav a {
  font-family: "Inter", sans-serif;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text-mute);
  text-decoration: none;
  transition: color 0.25s ease;
}
.site-footer-nav a:hover { color: var(--silver-2); }
.site-footer-legal {
  flex-basis: 100%;
  font-family: "Inter", sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  color: var(--text-mute);
  padding-top: 8px;
}

/* ---------- Guide index list ---------- */
.guide-list { margin-top: clamp(30px, 5vh, 46px); border-top: 1px solid rgba(201, 205, 216, 0.12); }
.guide-link {
  display: block;
  padding: 24px 6px;
  border-bottom: 1px solid rgba(201, 205, 216, 0.12);
  text-decoration: none;
  transition: padding-left 0.3s ease, background 0.3s ease;
}
.guide-link:hover { padding-left: 14px; background: rgba(255, 255, 255, 0.015); }
.guide-link-title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 500;
  font-size: clamp(1.3rem, 3vw, 1.72rem);
  line-height: 1.22;
  color: var(--silver-1);
}
.guide-link-desc {
  font-family: "Inter", sans-serif;
  font-size: 0.92rem;
  font-weight: 300;
  line-height: 1.6;
  color: var(--text-soft);
  margin-top: 7px;
}

/* ---------- FAQ (GEO citation block) ---------- */
.faq { margin-top: clamp(42px, 7vh, 66px); }
.faq-item {
  border-top: 1px solid rgba(201, 205, 216, 0.12);
  padding: 22px 0;
}
.faq-item:last-child { border-bottom: 1px solid rgba(201, 205, 216, 0.12); }
.faq-q {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 1.04rem;
  color: var(--silver-1);
  margin-bottom: 10px;
}
.faq-a {
  font-family: "Inter", sans-serif;
  font-weight: 300;
  font-size: 0.98rem;
  line-height: 1.72;
  color: var(--text-soft);
}
.faq-a a { color: var(--silver-1); text-decoration: underline; text-underline-offset: 3px; text-decoration-color: rgba(201,205,216,0.4); }

/* ---------- Breadcrumb ---------- */
.crumb {
  font-family: "Inter", sans-serif;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text-mute);
  text-align: center;
  margin-bottom: 18px;
}
.crumb a { color: var(--text-mute); text-decoration: none; }
.crumb a:hover { color: var(--silver-2); }
