/* ============================================================
   MY QANNOUBINE — light heritage editorial
   warm paper · gold · deep cedar green
   ============================================================ */

:root {
  /* Warm Ivory / Soft Limestone / Deep Charcoal / Matte Champagne Gold / Warm Bronze / Alpine Blue */
  --paper: #f7f3ec;
  --paper-2: #eae2d6;
  --paper-3: #ddd2bd;
  --ink: #23211e;
  --body: #56514a;
  --stone: #8c8375;
  --gold: #b58b3a;
  --gold-deep: #9a742e;
  --gold-bright: #d8b878;
  --gold-dim: rgba(181, 139, 58, 0.3);
  --cedar: #8d6b3f; /* warm bronze — used sparingly */
  --cedar-soft: #a3865c;
  --blue: #8ec7f4; /* alpine blue — logo mark and small accents only */
  --dark: #0f0d0a;
  --cream-on-dark: #ece2cd;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Jost', 'Avenir Next', sans-serif;
}

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

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

html { overflow-x: clip; }
body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--serif);
  overflow-x: hidden;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}

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

img, video, svg { display: block; max-width: 100%; }
[hidden] { display: none !important; }

/* ---------- grain ---------- */
.grain {
  position: fixed; inset: 0; width: 100%; height: 100%;
  opacity: 0.035; pointer-events: none; z-index: 90;
  mix-blend-mode: multiply;
}

/* ---------- preloader ---------- */
.preloader {
  position: fixed; inset: 0; z-index: 200;
  background: var(--paper);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 26px;
}
.preloader__drop { width: 34px; color: var(--blue); }
.preloader__drop-path {
  stroke-dasharray: 130; stroke-dashoffset: 130;
  animation: drawDrop 1.4s ease forwards 0.15s;
}
@keyframes drawDrop { to { stroke-dashoffset: 0; } }
.preloader__word {
  font-family: var(--sans); font-weight: 400; font-size: 11px;
  letter-spacing: 0.55em; text-indent: 0.55em; color: var(--stone);
  opacity: 0; animation: fadeUp 1s ease forwards 0.5s;
}
@keyframes fadeUp { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

/* ---------- header ---------- */
.site-head {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 24px 44px;
  transition: background 0.5s ease, padding 0.5s ease, border-color 0.5s ease, box-shadow 0.5s ease;
  border-bottom: 1px solid transparent;
}
.site-head.scrolled {
  padding: 14px 44px;
  background: rgba(248, 243, 232, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: rgba(160, 126, 44, 0.18);
}
.site-head__brand {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--serif); font-size: 19px; letter-spacing: 0.08em;
  color: var(--ink); text-decoration: none;
}
.site-head__logo {
  width: 40px; height: 40px; object-fit: cover; border-radius: 50%;
  border: 1px solid rgba(181, 139, 58, 0.35);
  background: var(--paper);
}
.site-head__nav { display: flex; align-items: center; gap: 30px; }
.site-head__nav a {
  font-family: var(--sans); font-weight: 400; font-size: 11px;
  letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--body); text-decoration: none;
  transition: color 0.3s ease;
}
.site-head__nav a:hover { color: var(--cedar); }
.site-head__cta {
  color: var(--gold-deep) !important;
  padding: 9px 20px; border: 1px solid var(--gold-dim);
  transition: background 0.3s ease, color 0.3s ease !important;
}
.site-head__cta:hover { background: var(--gold-deep); color: var(--paper) !important; }

/* ---------- elevation ticker ---------- */
.elevation {
  position: fixed; right: 34px; top: 50%; transform: translateY(-50%);
  z-index: 95; display: flex; flex-direction: column; align-items: center; gap: 14px;
  opacity: 0; transition: opacity 0.8s ease;
}
.elevation.visible { opacity: 1; }
.elevation__label, .elevation__value {
  font-family: var(--sans); font-weight: 400; font-size: 9.5px;
  letter-spacing: 0.3em; text-transform: uppercase; color: var(--stone);
  writing-mode: vertical-rl;
}
.elevation__value { color: var(--gold-deep); }
.elevation__line { width: 1px; height: 90px; background: linear-gradient(var(--gold-dim), transparent); }

/* ---------- shared ---------- */
.kicker {
  font-family: var(--sans); font-weight: 500; font-size: 10.5px;
  letter-spacing: 0.42em; text-transform: uppercase; color: var(--gold-deep);
}
.kicker--ondark { color: var(--gold); }

.h2 {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(34px, 4.6vw, 58px); line-height: 1.12;
  color: var(--ink); text-align: center;
  margin: 22px 0 0;
}
.h2 em { font-style: italic; color: var(--cedar); }

.gold-rule { display: flex; align-items: center; gap: 16px; }
.gold-rule span { flex: 1; height: 1px; background: linear-gradient(90deg, transparent, var(--gold-dim)); }
.gold-rule span:last-child { background: linear-gradient(90deg, var(--gold-dim), transparent); }
.gold-rule i { font-style: normal; color: var(--gold-deep); font-size: 8px; }

.btn-gold {
  display: inline-block;
  font-family: var(--sans); font-weight: 500; font-size: 11.5px;
  letter-spacing: 0.3em; text-indent: 0.3em; text-transform: uppercase;
  color: var(--gold-deep); text-decoration: none;
  padding: 18px 42px;
  border: 1px solid var(--gold-dim);
  background: transparent;
  cursor: pointer;
  transition: background 0.45s cubic-bezier(0.22, 1, 0.36, 1), color 0.45s, border-color 0.45s, transform 0.45s;
}
.btn-gold:hover { background: var(--gold); border-color: var(--gold); color: #fffdf7; transform: translateY(-2px); }
.btn-gold--solid { background: var(--gold); color: #fffdf7; border-color: var(--gold); }
.btn-gold--solid:hover { background: var(--gold-deep); border-color: var(--gold-deep); }
.btn-gold:disabled { opacity: 0.55; cursor: wait; transform: none; }

section { position: relative; }

/* ============================================================
   1 · HERO — light, grounded in the valley
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh; min-height: 100svh;
  display: flex; flex-direction: column; justify-content: center;
  padding: 130px 44px 90px;
  background: var(--paper);
  overflow: hidden;
}
.hero__inner {
  position: relative; z-index: 2;
  max-width: 1160px; margin: 0 auto; width: 100%;
}
.hero__copy {
  display: flex; flex-direction: column; align-items: flex-start;
  max-width: 560px; margin-left: auto;
}
.hero__kicker { margin-bottom: 26px; }
.hero__title {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(44px, 6.2vw, 84px); line-height: 1.06;
  color: var(--ink);
}
.hero__title em { font-style: italic; color: var(--cedar); }
.hero__rule { width: min(300px, 50vw); margin: 30px 0; }
.hero__lead {
  font-family: var(--sans); font-weight: 300; font-size: 15px;
  line-height: 1.9; letter-spacing: 0.02em; color: var(--body);
  max-width: 52ch;
}
.hero__actions { display: flex; align-items: center; gap: 30px; margin-top: 44px; flex-wrap: wrap; }
.hero__secondary {
  font-family: var(--sans); font-weight: 400; font-size: 11px;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--stone); text-decoration: none;
  border-bottom: 1px solid var(--gold-dim); padding-bottom: 6px;
  transition: color 0.3s;
}
.hero__secondary:hover { color: var(--cedar); }
.hero__bg { position: absolute; inset: 0; overflow: hidden; }
.hero__bg img, .hero__bg video {
  width: 100%; height: 100%;
  object-fit: cover; object-position: 22% 42%;
}
.hero__veil {
  position: absolute; inset: 0;
  background:
    linear-gradient(270deg, rgba(247, 243, 236, 0.97) 0%, rgba(247, 243, 236, 0.88) 26%, rgba(247, 243, 236, 0.5) 52%, rgba(247, 243, 236, 0.04) 80%),
    linear-gradient(rgba(247, 243, 236, 0.35), transparent 26%, transparent 70%, rgba(247, 243, 236, 0.94));
}
.hero__caption {
  position: absolute; right: 44px; bottom: 34px; z-index: 2;
  font-family: var(--sans); font-weight: 400; font-size: 9.5px;
  letter-spacing: 0.32em; text-transform: uppercase; color: var(--body);
}
/* living photograph: slow drift + rising mist + light sweep until the real film arrives */
.hero__bg img {
  animation: kenburns 26s ease-in-out infinite alternate;
  will-change: transform;
}
@keyframes kenburns {
  from { transform: scale(1.0) translateX(0); }
  to { transform: scale(1.09) translateX(-1.6%); }
}
.hero__mist {
  position: absolute; left: -20%; width: 140%; height: 46%;
  pointer-events: none; mix-blend-mode: screen;
}
.hero__mist--far {
  top: 14%;
  background:
    radial-gradient(ellipse 58% 52% at 30% 50%, rgba(255, 251, 240, 0.55), transparent 72%),
    radial-gradient(ellipse 46% 42% at 74% 62%, rgba(255, 248, 235, 0.45), transparent 72%);
  opacity: 0.3; filter: blur(14px);
  animation: mistDrift 26s ease-in-out infinite;
}
.hero__mist--near {
  bottom: 2%;
  background:
    radial-gradient(ellipse 62% 55% at 60% 55%, rgba(255, 250, 238, 0.55), transparent 72%),
    radial-gradient(ellipse 44% 40% at 22% 45%, rgba(255, 247, 232, 0.4), transparent 72%);
  opacity: 0.38; filter: blur(18px);
  animation: mistDrift 34s ease-in-out infinite reverse;
}
@keyframes mistDrift {
  0%, 100% { transform: translateX(-5%) translateY(0); }
  50% { transform: translateX(5%) translateY(-3%); }
}
.hero__shimmer {
  position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(115deg, transparent 42%, rgba(255, 246, 220, 0.3) 50%, transparent 58%);
  mix-blend-mode: screen;
  transform: translateX(-130%);
  animation: shimmerSweep 9s ease-in-out infinite;
}
@keyframes shimmerSweep {
  0%, 62% { transform: translateX(-130%); }
  100% { transform: translateX(130%); }
}
.hero__bg.has-film img,
.hero__bg.has-film .hero__mist,
.hero__bg.has-film .hero__shimmer { display: none; }
.hero__scrollcue {
  position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 12px;
}
.hero__scrollcue span {
  font-family: var(--sans); font-weight: 400; font-size: 9.5px;
  letter-spacing: 0.4em; text-indent: 0.4em; text-transform: uppercase; color: var(--stone);
}
.hero__scrollcue em {
  width: 1px; height: 40px; overflow: hidden; position: relative;
  background: rgba(160, 126, 44, 0.2);
}
.hero__scrollcue em::after {
  content: ''; position: absolute; left: 0; top: -50%;
  width: 100%; height: 50%; background: var(--gold-deep);
  animation: cueDrip 2.2s cubic-bezier(0.65, 0, 0.35, 1) infinite;
}
@keyframes cueDrip { 0% { top: -50%; } 100% { top: 110%; } }

/* ============================================================
   2 · WHAT IS
   ============================================================ */
.what {
  padding: 16vh 32px;
  display: flex; flex-direction: column; align-items: center; text-align: center;
  background: var(--paper);
}
.what__statement {
  margin-top: 34px; max-width: 26ch;
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(28px, 4vw, 46px); line-height: 1.4; color: var(--ink);
}
.what__statement strong { font-weight: 500; color: var(--gold-deep); }
.what__statement em { font-style: italic; color: var(--cedar); }
.stats {
  list-style: none; margin-top: 9vh;
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 40px 60px; max-width: 900px;
}
.stats li { display: flex; flex-direction: column; align-items: center; gap: 14px; }
.stats svg { width: 34px; height: 34px; color: var(--gold-deep); }
.stats span {
  font-family: var(--sans); font-weight: 400; font-size: 11px;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--body);
}

/* ============================================================
   3 · JOURNEY — vertical timeline
   ============================================================ */
.journey {
  padding: 16vh 32px;
  background: linear-gradient(var(--paper), var(--paper-2));
  display: flex; flex-direction: column; align-items: center;
}
.journey__track { position: relative; margin-top: 10vh; max-width: 640px; width: 100%; }
.journey__line {
  position: absolute; left: 17px; top: 8px; bottom: 8px; width: 1px;
  background: var(--gold-dim);
  transform-origin: top; transform: scaleY(0);
}
.journey__steps { list-style: none; display: flex; flex-direction: column; gap: 60px; }
.jstep { position: relative; padding-left: 72px; }
.jstep svg {
  position: absolute; left: 0; top: 0;
  width: 36px; height: 36px; padding: 6px;
  color: var(--gold-deep);
  background: var(--paper); border: 1px solid var(--gold-dim); border-radius: 50%;
}
.jstep h3 {
  font-family: var(--serif); font-weight: 500; font-size: 24px;
  letter-spacing: 0.03em; color: var(--ink);
}
.jstep p {
  margin-top: 8px;
  font-family: var(--sans); font-weight: 300; font-size: 13.5px;
  line-height: 1.8; color: var(--body); max-width: 46ch;
}

/* ============================================================
   4 · ORIGIN — dark film interlude
   ============================================================ */
.origin__stage {
  position: relative; height: 100vh; height: 100svh; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  background: var(--dark);
}
.origin__video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; transform: scale(1.12);
}
.origin__veil {
  position: absolute; inset: 0;
  background:
    linear-gradient(rgba(15, 13, 10, 0.85), rgba(15, 13, 10, 0.45) 30%, rgba(15, 13, 10, 0.45) 70%, rgba(15, 13, 10, 0.9)),
    radial-gradient(ellipse at center, rgba(15, 13, 10, 0.25), rgba(15, 13, 10, 0.65));
}
.origin__content {
  position: relative; z-index: 2;
  max-width: 900px; padding: 0 32px; text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 44px;
}
.origin__quote {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(26px, 4.2vw, 50px); line-height: 1.38;
  color: var(--cream-on-dark);
}
.origin__quote .w { opacity: 0.1; }
.origin__creed {
  display: flex; flex-direction: column; gap: 6px;
  font-family: var(--serif); font-style: italic; font-weight: 300;
  font-size: clamp(20px, 2.6vw, 30px); color: rgba(236, 226, 205, 0.55);
}
.origin__creed span { opacity: 0; transform: translateY(14px); }
.origin__creed-gold { color: var(--gold); }

/* ============================================================
   5 · A RARE SPRING
   ============================================================ */
.rarity {
  padding: 16vh 32px;
  display: flex; flex-direction: column; align-items: center; text-align: center;
  background: var(--paper);
}
.rarity__facts {
  list-style: none; margin-top: 9vh;
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 44px 70px; max-width: 860px;
}
.rarity__facts strong {
  display: block;
  font-family: var(--serif); font-weight: 400; font-size: clamp(26px, 3vw, 38px);
  color: var(--cedar);
}
.rarity__facts span {
  display: block; margin-top: 6px;
  font-family: var(--sans); font-weight: 300; font-size: 10.5px;
  letter-spacing: 0.26em; text-transform: uppercase; color: var(--stone);
}
.rarity__aphorism {
  margin-top: 11vh;
  font-family: var(--serif); font-style: italic; font-weight: 300;
  font-size: clamp(22px, 2.8vw, 32px); color: var(--body);
}
.rarity__peers {
  list-style: none; margin-top: 44px;
  display: flex; flex-wrap: wrap; justify-content: center; gap: 14px;
}
.rarity__peers li {
  font-family: var(--sans); font-weight: 400; font-size: 11px;
  letter-spacing: 0.26em; text-transform: uppercase; color: var(--body);
  padding: 13px 26px; border: 1px solid var(--paper-3); background: rgba(255, 253, 247, 0.5);
}
.rarity__peers-us {
  color: var(--paper) !important; background: var(--cedar) !important;
  border-color: var(--cedar) !important;
}

/* ============================================================
   6 · MINERALS
   ============================================================ */
.minerals {
  padding: 16vh 32px;
  display: flex; flex-direction: column; align-items: center;
  background: linear-gradient(var(--paper-2), var(--paper));
}
.minerals__table {
  margin-top: 9vh; border-collapse: collapse; min-width: min(560px, 92vw);
}
.minerals__table th, .minerals__table td {
  padding: 18px 34px; text-align: left;
  border-bottom: 1px solid rgba(160, 126, 44, 0.22);
}
.minerals__table th {
  font-family: var(--sans); font-weight: 500; font-size: 10px;
  letter-spacing: 0.32em; text-transform: uppercase; color: var(--gold-deep);
}
.minerals__table td {
  font-family: var(--serif); font-size: 21px; color: var(--ink);
}
.minerals__table td:last-child { color: var(--cedar); font-weight: 500; }

.cards { list-style: none; display: grid; gap: 22px; margin-top: 8vh; max-width: 1040px; width: 100%; }
.cards--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.cards--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.card {
  padding: 38px 30px;
  border: 1px solid rgba(160, 126, 44, 0.22);
  background: rgba(255, 253, 247, 0.6);
  text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
}
.card svg { width: 34px; height: 34px; color: var(--cedar); margin-bottom: 4px; }
.card h3 {
  font-family: var(--serif); font-weight: 500; font-size: 22px;
  letter-spacing: 0.03em; color: var(--ink);
}
.card p {
  font-family: var(--sans); font-weight: 300; font-size: 12.5px;
  line-height: 1.75; color: var(--body);
}
.card--cedar h3 { color: var(--cedar); }

/* ============================================================
   7 · WATER — dark macro interlude
   ============================================================ */
.water {
  position: relative; min-height: 92vh; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  padding: 16vh 24px; background: var(--dark);
}
.water__video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover;
}
.water__veil {
  position: absolute; inset: 0;
  background: linear-gradient(rgba(15, 13, 10, 0.9), rgba(15, 13, 10, 0.3) 35%, rgba(15, 13, 10, 0.3) 65%, rgba(15, 13, 10, 0.92));
}
.water__content { position: relative; z-index: 2; text-align: center; }
.water__words {
  display: flex; flex-wrap: wrap; justify-content: center; column-gap: 3.2vw;
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(40px, 7vw, 92px); line-height: 1.1;
  color: var(--cream-on-dark); letter-spacing: 0.02em;
}
.water__word { display: inline-block; }
.water__word--gold {
  font-style: italic;
  background: linear-gradient(160deg, #f4e8c8, var(--gold));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: var(--gold);
}

/* ============================================================
   8 · WHY GLASS
   ============================================================ */
.glass {
  padding: 16vh 32px;
  display: flex; flex-direction: column; align-items: center;
  background: var(--paper);
}
.glass__benefits {
  list-style: none; margin-top: 9vh;
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 40px clamp(30px, 5vw, 70px); max-width: 1000px;
}
.glass__benefits li { display: flex; flex-direction: column; align-items: center; gap: 14px; }
.glass__benefits svg { width: 36px; height: 36px; color: var(--gold-deep); }
.glass__benefits span {
  font-family: var(--sans); font-weight: 400; font-size: 11px;
  letter-spacing: 0.24em; text-transform: uppercase; color: var(--body);
}

/* ============================================================
   9 · SAINT CHARBEL
   ============================================================ */
.charbel {
  padding: 11vh 32px;
  background: linear-gradient(var(--paper), var(--paper-2));
  display: flex; justify-content: center;
}
.charbel__frame {
  max-width: 680px; width: 100%;
  padding: clamp(36px, 5vw, 60px);
  border: 1px solid rgba(160, 126, 44, 0.3);
  background: rgba(255, 253, 247, 0.65);
  position: relative;
  display: flex; flex-direction: column; align-items: center; text-align: center;
  box-shadow: 0 40px 80px -50px rgba(42, 35, 24, 0.45);
}
.charbel__frame::after {
  content: ''; position: absolute; inset: 8px;
  border: 1px solid rgba(160, 126, 44, 0.14); pointer-events: none;
}
.charbel__body { margin-top: 32px; display: flex; flex-direction: column; gap: 24px; }
.charbel__opening {
  font-family: var(--serif); font-style: italic; font-weight: 300;
  font-size: clamp(20px, 2.4vw, 26px); line-height: 1.5; color: var(--cedar);
}
.charbel__para {
  font-family: var(--sans); font-weight: 300; font-size: 13px;
  line-height: 1.95; color: var(--body); letter-spacing: 0.02em;
  text-align: left; max-width: 58ch;
}
.charbel__signoff {
  font-family: var(--serif); font-style: italic; font-size: 18px; color: var(--body);
}

/* ============================================================
   10 · HERITAGE
   ============================================================ */
.heritage {
  padding: 16vh 32px;
  display: flex; flex-direction: column; align-items: center;
  background: var(--paper-2);
}
.heritage__purpose {
  margin-top: 8vh;
  font-family: var(--serif); font-weight: 300; font-size: clamp(20px, 2.4vw, 28px);
  color: var(--body);
}
.heritage__purpose em { font-style: italic; color: var(--cedar); }

/* ============================================================
   11 · FAQ
   ============================================================ */
.faq {
  padding: 16vh 32px;
  display: flex; flex-direction: column; align-items: center;
  background: var(--paper);
}
.faq__list { margin-top: 8vh; max-width: 720px; width: 100%; }
.faq__item { border-bottom: 1px solid rgba(160, 126, 44, 0.22); }
.faq__item:first-child { border-top: 1px solid rgba(160, 126, 44, 0.22); }
.faq__item summary {
  list-style: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 26px 6px;
  font-family: var(--serif); font-weight: 500; font-size: 21px;
  color: var(--ink);
  transition: color 0.3s;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary:hover { color: var(--cedar); }
.faq__item summary i {
  flex: none; position: relative; width: 14px; height: 14px;
}
.faq__item summary i::before, .faq__item summary i::after {
  content: ''; position: absolute; background: var(--gold-deep);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.faq__item summary i::before { left: 0; top: 6px; width: 14px; height: 1px; }
.faq__item summary i::after { left: 6.5px; top: 0; width: 1px; height: 14px; }
.faq__item[open] summary i::after { transform: scaleY(0); }
.faq__item p {
  padding: 0 40px 28px 6px;
  font-family: var(--sans); font-weight: 300; font-size: 13.5px;
  line-height: 1.9; color: var(--body); letter-spacing: 0.02em;
}

/* ============================================================
   12 · RESERVE
   ============================================================ */
.reserve {
  padding: 18vh 32px;
  display: flex; flex-direction: column; align-items: center; text-align: center;
  background:
    radial-gradient(ellipse 70% 50% at 50% 30%, rgba(201, 168, 76, 0.12), transparent),
    linear-gradient(var(--paper-2), var(--paper-3));
  border-top: 1px solid rgba(160, 126, 44, 0.2);
}
.reserve__notice {
  margin-top: 44px; max-width: 62ch;
  padding: 18px 30px;
  border: 1px solid var(--gold-dim);
  background: rgba(201, 168, 76, 0.08);
  font-family: var(--sans); font-weight: 400; font-size: 12px;
  letter-spacing: 0.12em; line-height: 1.9; color: var(--gold-deep);
  text-transform: uppercase;
}
.reserve__notice strong { color: var(--cedar); font-weight: 500; }

.tiers {
  margin-top: 8vh;
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px; max-width: 1040px; width: 100%;
}
.tier {
  position: relative;
  padding: 44px 28px 38px;
  border: 1px solid rgba(160, 126, 44, 0.25);
  background: rgba(255, 253, 247, 0.7);
  cursor: pointer; font: inherit; text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  transition: border-color 0.35s, box-shadow 0.35s, transform 0.35s, background 0.35s;
}
.tier:hover { transform: translateY(-4px); border-color: var(--gold-deep); }
.tier--selected {
  border-color: var(--gold);
  background: #fffdf7;
  box-shadow: 0 30px 60px -34px rgba(181, 139, 58, 0.55), inset 0 0 0 1px var(--gold);
}
.tier__badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  padding: 5px 16px; background: var(--gold); color: #fffdf7;
  font-family: var(--sans); font-weight: 500; font-size: 9px;
  letter-spacing: 0.3em; text-transform: uppercase; white-space: nowrap;
}
.tier__name {
  font-family: var(--serif); font-weight: 500; font-size: 26px; color: var(--ink);
}
.tier__desc {
  font-family: var(--sans); font-weight: 300; font-size: 11.5px;
  letter-spacing: 0.1em; color: var(--body); line-height: 1.7;
}
.tier__price {
  margin-top: 16px;
  font-family: var(--serif); font-weight: 300; font-size: 44px; color: var(--cedar);
}
.tier__per {
  font-family: var(--sans); font-weight: 400; font-size: 9.5px;
  letter-spacing: 0.28em; text-transform: uppercase; color: var(--gold-deep);
}
.reserve__cta { margin-top: 60px; padding: 20px 60px; }
.reserve__note {
  margin-top: 24px; min-height: 1.2em;
  font-family: var(--sans); font-weight: 300; font-size: 10.5px;
  letter-spacing: 0.24em; text-transform: uppercase; color: var(--stone);
}

/* ---------- footer ---------- */
.site-foot {
  padding: 90px 24px 60px;
  background: var(--ink);
  border-top: 1px solid rgba(181, 139, 58, 0.35);
  display: flex; flex-direction: column; align-items: center; gap: 20px;
  text-align: center;
}
.site-foot__seal {
  width: 64px; height: 64px; border-radius: 50%;
  overflow: hidden;
  border: 1px solid rgba(181, 139, 58, 0.55);
  box-shadow: 0 0 0 5px rgba(181, 139, 58, 0.12), 0 14px 30px -12px rgba(0, 0, 0, 0.6);
}
.site-foot__seal img {
  width: 100%; height: 100%;
  object-fit: cover; transform: scale(1.12);
  filter: sepia(0.12) saturate(0.95);
}
.site-foot__brand {
  font-family: var(--serif); font-weight: 400; font-size: 26px;
  letter-spacing: 0.1em; color: var(--paper);
}
.site-foot__tagline {
  font-family: var(--sans); font-weight: 300; font-size: 10px;
  letter-spacing: 0.4em; text-transform: uppercase; color: rgba(248, 243, 232, 0.55);
}
.site-foot__links { display: flex; gap: 30px; margin-top: 18px; flex-wrap: wrap; justify-content: center; }
.site-foot__links a {
  font-family: var(--sans); font-weight: 400; font-size: 10.5px;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: rgba(248, 243, 232, 0.75); text-decoration: none;
  transition: color 0.3s;
}
.site-foot__links a:hover { color: var(--gold); }
.site-foot__social { display: flex; gap: 22px; margin-top: 8px; }
.site-foot__social a { color: rgba(248, 243, 232, 0.6); transition: color 0.3s; }
.site-foot__social a:hover { color: var(--gold); }
.site-foot__social svg { width: 18px; height: 18px; }
.site-foot__legal {
  margin-top: 26px;
  font-family: var(--sans); font-weight: 300; font-size: 9.5px;
  letter-spacing: 0.24em; text-transform: uppercase; color: rgba(248, 243, 232, 0.4);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 960px) {
  .site-head { padding: 18px 22px; }
  .site-head.scrolled { padding: 12px 22px; }
  .site-head__nav a:not(.site-head__cta) { display: none; }
  .elevation { display: none; }
  .hero { padding: 130px 26px 90px; justify-content: flex-start; }
  .hero__copy { margin-left: 0; }
  .hero__veil {
    background:
      linear-gradient(rgba(247, 243, 236, 0.97) 0%, rgba(247, 243, 236, 0.92) 38%, rgba(247, 243, 236, 0.4) 62%, rgba(247, 243, 236, 0.12) 82%, rgba(247, 243, 236, 0.85) 100%);
  }
  .hero__bg img, .hero__bg video { object-position: 24% 78%; }
  .hero__caption { display: none; }
  .hero__scrollcue { display: none; }
  .stats { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 34px 30px; }
  .rarity__facts { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 36px 30px; }
  .cards--3, .cards--4 { grid-template-columns: minmax(0, 1fr); max-width: 460px; }
  .tiers { grid-template-columns: minmax(0, 1fr); max-width: 420px; }
  .minerals__table th, .minerals__table td { padding: 15px 20px; }
}

@media (prefers-reduced-motion: reduce) {
  .hero__scrollcue em::after { animation: none; }
  .journey__line { transform: none; }
  .hero__media-viewport img, .hero__mist, .hero__shimmer { animation: none; }
}

/* ============================================================
   V2 ENHANCEMENTS — arch film windows, imagery rhythm,
   line-mask reveals, smooth FAQ, mobile menu
   ============================================================ */

/* ---------- imagery rhythm: rarity + glass figures ---------- */
.rarity__layout {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 340px);
  gap: clamp(40px, 6vw, 90px); align-items: center;
  max-width: 1060px; margin-top: 9vh;
}
.rarity__layout .rarity__facts { margin-top: 0; }
.rarity__figure, .glass__figure {
  position: relative; margin: 0; padding: 12px;
  border: 1px solid rgba(181, 139, 58, 0.32);
  background: rgba(255, 253, 247, 0.75);
  box-shadow: 0 44px 80px -44px rgba(35, 33, 30, 0.5);
}
.rarity__figure::after, .glass__figure::after {
  content: ''; position: absolute; inset: 5px;
  border: 1px solid rgba(181, 139, 58, 0.15); pointer-events: none;
}
.rarity__figure img, .glass__figure img { width: 100%; height: auto; }
.rarity__figure figcaption, .glass__figure figcaption {
  margin-top: 12px; text-align: center;
  font-family: var(--sans); font-weight: 400; font-size: 9px;
  letter-spacing: 0.3em; text-transform: uppercase; color: var(--stone);
}
.glass__layout {
  display: grid; grid-template-columns: minmax(0, 400px) minmax(0, 1fr);
  gap: clamp(44px, 6vw, 100px); align-items: center;
  max-width: 1020px; margin-top: 8vh;
}
.glass__layout .glass__benefits {
  margin-top: 0; flex-direction: column; align-items: flex-start; gap: 28px;
}
.glass__layout .glass__benefits li {
  flex-direction: row; align-items: center; gap: 20px; text-align: left;
}

/* ---------- line-mask headline reveals ---------- */
.lm {
  display: block; overflow: hidden;
  /* breathing room so Cormorant descenders and italic overhangs never clip */
  padding: 0.18em 0.14em;
  margin: -0.18em -0.14em;
}
.lm__i { display: block; will-change: transform; }

/* ---------- smooth FAQ ---------- */
.faq__bodyw { overflow: hidden; }

/* ---------- reserve scarcity line ---------- */
.reserve__scarcity {
  margin-top: 20px;
  font-family: var(--serif); font-style: italic; font-weight: 300;
  font-size: 17px; color: var(--cedar); letter-spacing: 0.02em;
}

/* ---------- elevation droplet ---------- */
.elevation__line { position: relative; overflow: visible; }
.elevation__line i {
  position: absolute; left: 50%; top: 0;
  width: 5px; height: 5px; border-radius: 50% 50% 50% 0;
  background: var(--gold); transform: translateX(-50%) rotate(45deg);
  transition: top 0.2s linear;
}

/* ---------- mobile menu ---------- */
.site-head__burger {
  display: none; flex-direction: column; justify-content: center; gap: 7px;
  width: 40px; height: 40px; padding: 8px;
  background: none; border: none; cursor: pointer;
}
.site-head__burger span {
  display: block; height: 1px; width: 100%;
  background: var(--gold-deep);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.site-head__burger[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
.site-head__burger[aria-expanded="true"] span:last-child { transform: translateY(-4px) rotate(-45deg); }
.mobmenu {
  position: fixed; inset: 0; z-index: 98;
  background: var(--paper);
  display: flex; align-items: center; justify-content: center;
  transform: translateY(-102%);
  transition: transform 0.65s cubic-bezier(0.76, 0, 0.24, 1);
}
.mobmenu.open { transform: translateY(0); }
.mobmenu nav { display: flex; flex-direction: column; gap: 30px; text-align: center; }
.mobmenu nav a {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(30px, 8vw, 44px); color: var(--ink); text-decoration: none;
  transition: color 0.3s;
}
.mobmenu nav a:hover, .mobmenu nav a:last-child { color: var(--gold-deep); }
body.menu-open { overflow: hidden; }

@media (max-width: 960px) {
  .site-head__burger { display: flex; }
  .site-head__nav .site-head__cta { display: none; }
  .rarity__layout { grid-template-columns: minmax(0, 1fr); }
  .rarity__figure { max-width: 300px; margin: 0 auto; }
  .glass__layout { grid-template-columns: minmax(0, 1fr); }
  .glass__figure { max-width: 320px; margin: 0 auto; }
}

@media (prefers-reduced-motion: reduce) {
  .mobmenu { transition: none; }
}

/* ---------- V2 polish pass ---------- */
.preloader__logo {
  width: 74px; height: 74px; border-radius: 50%; object-fit: cover;
  border: 1px solid var(--gold-dim);
  opacity: 0; animation: sealIn 1.2s cubic-bezier(0.22, 1, 0.36, 1) forwards 0.1s;
}
@keyframes sealIn { from { opacity: 0; transform: scale(0.86); } to { opacity: 1; transform: scale(1); } }

.charbel__seal {
  width: 54px; height: 54px; border-radius: 50%; object-fit: cover;
  border: 1px solid rgba(181, 139, 58, 0.4); margin-bottom: 24px;
}

/* hero caption readable over the dark film once it loads */
.hero__bg.has-film ~ .hero__caption { color: rgba(236, 226, 205, 0.8); }

/* gold buttons get a light sweep on hover */
.btn-gold--solid { position: relative; overflow: hidden; }
.btn-gold--solid::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 40%; left: -65%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  transform: skewX(-18deg); transition: left 0.7s ease;
}
.btn-gold--solid:hover::after { left: 125%; }

/* cards lift softly */
.card, .tier {
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.5s ease, border-color 0.5s ease, background 0.35s ease;
}
.card:hover {
  transform: translateY(-5px);
  border-color: rgba(181, 139, 58, 0.5);
  box-shadow: 0 26px 50px -30px rgba(35, 33, 30, 0.35);
}

/* selected tier gets a wax-seal check */
.tier--selected::after {
  content: '\2713';
  position: absolute; top: 14px; right: 16px;
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--gold); color: #fffdf7;
  font-family: var(--sans); font-size: 12px; line-height: 24px;
}

/* journey alternates around a centre line on desktop */
@media (min-width: 961px) {
  .journey__track { max-width: 820px; }
  .journey__line { left: 50%; }
  .jstep { width: calc(50% - 52px); padding-left: 0; }
  .jstep:nth-child(odd) { text-align: right; }
  .jstep:nth-child(odd) svg { left: auto; right: -70px; }
  .jstep:nth-child(even) { margin-left: auto; }
  .jstep:nth-child(even) svg { left: -70px; }
  .jstep:nth-child(odd) p { margin-left: auto; }
}

/* ============================================================
   CONVERSION PASS — hero price line, CTA strip, closing CTA,
   sticky mobile reserve bar
   ============================================================ */
.hero__micro {
  margin-top: 20px;
  font-family: var(--sans); font-weight: 400; font-size: 10.5px;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--stone);
}
.hero__micro strong { color: var(--gold-deep); font-weight: 500; }

.cta-strip {
  background: linear-gradient(180deg, var(--paper), var(--paper-2));
  border-top: 1px solid rgba(181, 139, 58, 0.18);
  border-bottom: 1px solid rgba(181, 139, 58, 0.18);
}
.cta-strip__inner {
  max-width: 940px; margin: 0 auto;
  padding: 46px 32px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
}
.cta-strip__text {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(20px, 2.6vw, 28px); color: var(--ink);
}
.cta-strip__text em { font-style: italic; color: var(--cedar); }
@media (max-width: 700px) {
  .cta-strip__inner { flex-direction: column; text-align: center; padding: 38px 26px; }
}

.closing-cta {
  padding: 12vh 32px 14vh;
  display: flex; flex-direction: column; align-items: center;
  text-align: center; gap: 28px;
  background: var(--paper);
}
.closing-cta .h2 { margin: 0; }
.closing-cta__micro {
  font-family: var(--sans); font-weight: 300; font-size: 10.5px;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--stone);
}

.ctabar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 96;
  display: none; align-items: center; justify-content: space-between; gap: 14px;
  padding: 12px 20px calc(12px + env(safe-area-inset-bottom));
  background: rgba(247, 243, 236, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid rgba(181, 139, 58, 0.3);
  transform: translateY(110%);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
.ctabar.visible { transform: translateY(0); }
.ctabar__price { font-family: var(--serif); font-size: 17px; color: var(--ink); white-space: nowrap; }
.ctabar__price strong { color: var(--gold-deep); font-weight: 600; }
.ctabar__btn { padding: 12px 30px; flex-shrink: 0; }
@media (max-width: 960px) { .ctabar { display: flex; } }
