:root {
  --bg: #0a0907;
  --bg-2: #100d09;
  --bg-3: #15110a;
  --bg-4: #1c1710;
  --gold: #c8a951;
  --gold-bright: #e6c878;
  --gold-deep: #8a6f2c;
  --gold-faint: rgba(200, 169, 81, 0.18);
  --cream: #f5ecd7;
  --cream-soft: rgba(245, 236, 215, 0.85);
  --cream-muted: rgba(245, 236, 215, 0.62);
  --cream-faint: rgba(245, 236, 215, 0.18);
  --line: rgba(200, 169, 81, 0.2);
  --line-strong: rgba(200, 169, 81, 0.45);

  --display: "Fraunces", "Cormorant Garamond", serif;
  --serif: "Cormorant Garamond", "Garamond", serif;

  --max: 1320px;
  --pad: clamp(20px, 4vw, 64px);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { background: var(--bg); color: var(--cream); max-width: 100vw; overflow-x: hidden; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  cursor: default;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; }

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

/* ========== ATMOSPHERE ========== */
.grain {
  position: fixed; inset: 0; pointer-events: none; z-index: 1; opacity: 0.07;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}
.stars {
  position: fixed; inset: 0; pointer-events: none; z-index: 0;
  background-image:
    radial-gradient(1px 1px at 18% 22%, rgba(230, 200, 120, 0.7), transparent 50%),
    radial-gradient(1px 1px at 72% 78%, rgba(230, 200, 120, 0.55), transparent 50%),
    radial-gradient(1px 1px at 38% 65%, rgba(230, 200, 120, 0.6), transparent 50%),
    radial-gradient(1.5px 1.5px at 86% 18%, rgba(230, 200, 120, 0.5), transparent 50%),
    radial-gradient(1px 1px at 8% 58%, rgba(230, 200, 120, 0.45), transparent 50%),
    radial-gradient(1px 1px at 56% 12%, rgba(230, 200, 120, 0.55), transparent 50%),
    radial-gradient(1px 1px at 92% 88%, rgba(230, 200, 120, 0.4), transparent 50%),
    radial-gradient(1px 1px at 28% 90%, rgba(230, 200, 120, 0.5), transparent 50%),
    radial-gradient(2px 2px at 64% 38%, rgba(230, 200, 120, 0.35), transparent 50%),
    radial-gradient(circle at 50% 0%, rgba(200, 169, 81, 0.08), transparent 70%);
}
.cursor-glow {
  position: fixed; pointer-events: none; z-index: 2;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 169, 81, 0.07), transparent 60%);
  transform: translate(-50%, -50%);
  transition: transform 0.15s ease-out;
  left: -1000px; top: -1000px;
  mix-blend-mode: screen;
}
@media (hover: none) { .cursor-glow { display: none; } }

/* ========== TYPOGRAPHY ========== */
h1, h2, h3 {
  font-family: var(--display);
  font-weight: 300;
  letter-spacing: -0.005em;
  color: var(--cream);
  font-variation-settings: "SOFT" 30, "opsz" 144;
}
h2 {
  font-size: clamp(38px, 5.4vw, 78px);
  line-height: 1.02;
}
h3 {
  font-size: clamp(22px, 2.2vw, 28px);
  font-weight: 400;
  letter-spacing: 0;
}
em, .ital {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
}
h1 em, h2 em, h3 em {
  color: var(--gold-bright);
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-variation-settings: normal;
}

.eyebrow {
  font-family: var(--display);
  font-size: 11px;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 22px;
  font-weight: 500;
  font-variation-settings: "SOFT" 0, "opsz" 9;
}
.eyebrow--lit {
  position: relative;
  display: inline-block;
  padding-left: 56px;
}
.eyebrow--lit::before {
  content: "";
  position: absolute;
  left: 0; top: 50%;
  width: 40px; height: 1px;
  background: var(--gold);
}

/* ========== NAV ========== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px var(--pad);
  background: linear-gradient(180deg, rgba(10, 9, 7, 0.94), rgba(10, 9, 7, 0.6) 70%, transparent);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: padding 0.3s ease;
}
.nav.is-scrolled { padding: 14px var(--pad); border-bottom: 1px solid var(--line); background: rgba(10, 9, 7, 0.96); }
.nav__brand {
  display: flex; align-items: center; gap: 14px;
  font-family: var(--display);
  font-size: 13px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--cream);
  font-weight: 400;
  font-variation-settings: "SOFT" 0;
}
.nav__brand img { border-radius: 0; border: 0; }
.nav__brand em { font-style: italic; color: var(--gold-bright); margin-left: 4px; font-family: var(--serif); text-transform: none; letter-spacing: 0.05em; }
.nav__links {
  display: flex; gap: 36px; align-items: center;
  font-family: var(--display);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-variation-settings: "SOFT" 0;
}
.nav__links a {
  color: var(--cream-muted);
  transition: color .35s;
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
}
.nav__links a span {
  font-style: italic;
  font-family: var(--serif);
  font-size: 10px;
  color: var(--gold);
  text-transform: none;
  letter-spacing: 0;
}
.nav__links a:hover { color: var(--gold-bright); }
.nav__cta {
  color: var(--gold) !important;
  border: 1px solid var(--line-strong);
  padding: 11px 22px;
  border-radius: 999px;
  transition: all .35s;
}
.nav__cta:hover { background: var(--gold); color: var(--bg) !important; border-color: var(--gold); }
.nav__toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav__toggle span { display: block; width: 28px; height: 1px; background: var(--gold); margin: 7px 0; transition: all .3s; }

/* ========== BUTTONS ========== */
.btn {
  display: inline-block;
  font-family: var(--display);
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  padding: 18px 38px;
  border-radius: 999px;
  transition: all .4s cubic-bezier(.2,.8,.2,1);
  border: 1px solid transparent;
  cursor: pointer;
  font-weight: 500;
  font-variation-settings: "SOFT" 0, "opsz" 9;
  position: relative;
  overflow: hidden;
}
.btn--gold {
  background: var(--gold);
  color: var(--bg);
  border-color: var(--gold);
}
.btn--gold::before {
  content: "";
  position: absolute; inset: 0;
  background: var(--gold-bright);
  transform: translateY(100%);
  transition: transform .4s cubic-bezier(.2,.8,.2,1);
  z-index: -1;
}
.btn--gold:hover { transform: translateY(-2px); box-shadow: 0 16px 50px rgba(200, 169, 81, 0.25); }
.btn--gold:hover::before { transform: translateY(0); }
.btn--ghost { color: var(--cream); border-color: var(--line-strong); }
.btn--ghost:hover { color: var(--bg); border-color: var(--gold); background: var(--gold); }
.btn--large { padding: 24px 56px; font-size: 12px; letter-spacing: 0.28em; }

/* ========== HERO ========== */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  padding: 120px var(--pad) 80px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: center;
  gap: 50px;
  max-width: var(--max);
  margin: 0 auto;
  z-index: 3;
}
.hero__rail {
  position: absolute;
  top: 50%;
  font-family: var(--display);
  font-size: 10px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  font-variation-settings: "SOFT" 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: center;
}
.hero__rail--left { left: 18px; transform: translateY(-50%) rotate(180deg); writing-mode: vertical-rl; }
.hero__rail--right { right: 18px; transform: translateY(-50%); writing-mode: vertical-rl; }
.hero__rail span { white-space: nowrap; }

.hero__geometry {
  position: absolute;
  top: 50%; left: 50%;
  width: min(1100px, 95vw);
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  pointer-events: none;
  opacity: 0.55;
  z-index: -1;
  animation: spin 240s linear infinite;
}
@keyframes spin { to { transform: translate(-50%, -50%) rotate(360deg); } }

.hero__content { position: relative; z-index: 2; }
.hero__title {
  font-family: var(--display);
  font-size: clamp(56px, 9vw, 132px);
  line-height: 0.92;
  font-weight: 200;
  letter-spacing: -0.025em;
  margin: 0 0 32px;
  font-variation-settings: "SOFT" 50, "opsz" 144;
}
.hero__title .line { display: block; }
.hero__title .line:nth-child(2) { padding-left: 1.5em; }
.hero__title em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  color: var(--gold-bright);
  font-variation-settings: normal;
  letter-spacing: -0.01em;
}
.hero__lede {
  font-family: var(--serif);
  font-size: clamp(17px, 1.3vw, 20px);
  line-height: 1.65;
  color: var(--cream-soft);
  max-width: 540px;
  margin: 0 0 44px;
  font-weight: 300;
}
.hero__cta { display: flex; gap: 16px; flex-wrap: wrap; }

.hero__logo {
  position: relative;
  display: flex; align-items: center; justify-content: center;
}
.hero__logo img {
  width: 100%;
  max-width: 540px;
  filter: drop-shadow(0 0 90px rgba(200, 169, 81, 0.3));
  animation: float 9s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-14px) rotate(0.5deg); }
}

.hero__scroll {
  position: absolute;
  bottom: 30px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  font-family: var(--display);
  font-size: 9px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  font-variation-settings: "SOFT" 0;
}
.hero__scroll svg { animation: pulse 3s ease-in-out infinite; }
@keyframes pulse {
  0%, 100% { opacity: 0.4; transform: translateY(0); }
  50% { opacity: 1; transform: translateY(8px); }
}

/* ========== MARQUEE ========== */
.marquee {
  position: relative; z-index: 3;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  padding: 32px 0;
  background: var(--bg-2);
}
.marquee__track {
  display: flex; gap: 70px;
  white-space: nowrap;
  animation: marquee 45s linear infinite;
  font-family: var(--display);
  font-size: 26px;
  font-weight: 300;
  font-style: italic;
  letter-spacing: 0.1em;
  color: var(--gold-bright);
  font-variation-settings: "SOFT" 50, "opsz" 144;
}
.marquee__track .dot { color: var(--gold-deep); font-size: 16px; align-self: center; font-style: normal; }
@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* ========== CHAPTER MARK ========== */
.chapter {
  display: flex; align-items: baseline; gap: 24px;
  margin-bottom: 40px;
}
.chapter--center { justify-content: center; text-align: center; }
.chapter__roman {
  font-family: var(--display);
  font-size: clamp(60px, 8vw, 110px);
  font-weight: 200;
  font-style: italic;
  color: var(--gold);
  line-height: 0.8;
  font-variation-settings: "SOFT" 80, "opsz" 144;
}
.chapter__label {
  font-family: var(--display);
  font-size: 11px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  font-variation-settings: "SOFT" 0;
}

/* ========== MANIFESTO ========== */
.manifesto {
  position: relative; z-index: 3;
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(100px, 14vw, 180px) var(--pad);
  border-top: 1px solid var(--line);
}
.manifesto__statement {
  font-family: var(--display);
  font-size: clamp(28px, 3.6vw, 52px);
  line-height: 1.18;
  font-weight: 200;
  max-width: 1100px;
  margin: 0 0 100px;
  letter-spacing: -0.01em;
  color: var(--cream);
  font-variation-settings: "SOFT" 60, "opsz" 144;
}
.manifesto__statement em {
  font-family: var(--serif);
  font-style: italic;
  color: var(--gold-bright);
  font-weight: 400;
  font-variation-settings: normal;
}
.manifesto__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  max-width: 1080px;
  margin: 0 0 80px;
}
.manifesto__col p {
  margin: 0 0 24px;
  color: var(--cream-soft);
  font-size: 19px;
  line-height: 1.7;
}
.manifesto__col p:last-child { color: var(--cream-muted); }

.dropcap { position: relative; }
.dropcap__letter {
  float: left;
  font-family: var(--display);
  font-size: 96px;
  line-height: 0.85;
  font-weight: 300;
  color: var(--gold);
  padding: 8px 14px 0 0;
  font-variation-settings: "SOFT" 100, "opsz" 144;
  font-style: italic;
}

.pullquote {
  font-family: var(--display);
  font-size: clamp(28px, 4vw, 56px);
  line-height: 1.2;
  font-weight: 300;
  color: var(--gold-bright);
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-variation-settings: "SOFT" 70, "opsz" 144;
  position: relative;
}
.pullquote em {
  font-family: var(--serif);
  font-style: italic;
  color: var(--cream);
  font-variation-settings: normal;
  font-weight: 400;
}
.pullquote span {
  font-family: var(--serif);
  font-style: italic;
  color: var(--gold);
  font-size: 1.5em;
  line-height: 0;
  vertical-align: -0.3em;
  margin: 0 6px;
}

/* ========== RANGE ========== */
.range {
  position: relative; z-index: 3;
  background: var(--bg-2);
  padding: clamp(100px, 14vw, 180px) var(--pad);
  border-top: 1px solid var(--line);
}
.range > * { max-width: var(--max); margin-left: auto; margin-right: auto; }
.section__h2 {
  font-size: clamp(38px, 5.4vw, 78px);
  line-height: 1.02;
  font-weight: 200;
  margin-bottom: 30px;
  font-variation-settings: "SOFT" 50, "opsz" 144;
}
.section__h2--center { text-align: center; }
.section__sub {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 90px;
  color: var(--cream-muted);
  font-size: 19px;
  font-style: italic;
  font-weight: 300;
}

.range__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.apothecary {
  background: var(--bg-2);
  padding: clamp(40px, 5vw, 64px);
  position: relative;
  transition: background .4s;
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 32px;
  align-items: start;
}
.apothecary:hover { background: var(--bg-3); }
.apothecary__num {
  position: absolute;
  top: 24px; right: 32px;
  font-family: var(--display);
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  font-variation-settings: "SOFT" 0;
}
.apothecary__num sup { font-size: 8px; vertical-align: super; }
.apothecary__bottle {
  color: var(--gold);
  width: 130px;
  transition: transform .5s cubic-bezier(.2,.8,.2,1);
}
.apothecary:hover .apothecary__bottle { transform: translateY(-6px); }
.apothecary__bottle svg { width: 100%; height: auto; }
.apothecary h3 {
  margin: 0 0 18px;
  color: var(--cream);
  font-size: clamp(24px, 2.4vw, 32px);
  font-weight: 300;
  font-variation-settings: "SOFT" 50, "opsz" 144;
}
.apothecary__desc {
  color: var(--cream-muted);
  margin: 0 0 28px;
  font-size: 17px;
  line-height: 1.65;
}
.apothecary__list {
  border-top: 1px solid var(--line);
  padding-top: 18px;
}
.apothecary__list li {
  font-family: var(--display);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 10px 0;
  border-bottom: 1px solid var(--cream-faint);
  font-variation-settings: "SOFT" 0;
  display: flex;
  align-items: center;
  gap: 12px;
}
.apothecary__list li::before {
  content: "";
  width: 5px; height: 5px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}
.apothecary__list li:last-child { border-bottom: 0; }

.range__disclaimer {
  text-align: center;
  margin: 70px auto 0;
  max-width: 760px;
  color: var(--cream-muted);
  font-style: italic;
  font-size: 17px;
  line-height: 1.7;
}

/* ========== RITUALS ========== */
.rituals {
  position: relative; z-index: 3;
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(100px, 14vw, 180px) var(--pad);
  border-top: 1px solid var(--line);
}
.rituals__compass {
  display: grid;
  grid-template-columns: 1fr 280px 1fr;
  grid-template-rows: auto auto;
  gap: 40px;
  align-items: center;
  margin-top: 60px;
}
.rituals__center {
  grid-row: 1 / 3;
  grid-column: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
}
.rituals__center svg {
  width: 100%;
  max-width: 240px;
  filter: drop-shadow(0 0 40px rgba(200, 169, 81, 0.2));
  animation: spin 120s linear infinite;
  transform-origin: center;
}
.rituals__center svg { animation-name: spin-self; }
@keyframes spin-self { from { transform: rotate(0); } to { transform: rotate(360deg); } }

.ritual {
  padding: clamp(28px, 3vw, 40px);
  background: linear-gradient(180deg, var(--bg-2), var(--bg));
  border: 1px solid var(--line);
  position: relative;
  transition: all .4s;
}
.ritual::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 50px; height: 1px;
  background: var(--gold);
  transition: width .5s ease;
}
.ritual:hover { border-color: var(--line-strong); transform: translateY(-4px); }
.ritual:hover::before { width: 100px; }
.ritual--n { grid-column: 1; grid-row: 1; }
.ritual--e { grid-column: 3; grid-row: 1; }
.ritual--w { grid-column: 1; grid-row: 2; }
.ritual--s { grid-column: 3; grid-row: 2; }
.ritual__place {
  font-family: var(--display);
  font-size: 10px;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 14px;
  font-variation-settings: "SOFT" 0;
}
.ritual h3 {
  margin: 0 0 18px;
  color: var(--cream);
  font-weight: 300;
  font-variation-settings: "SOFT" 60, "opsz" 144;
}
.ritual p {
  margin: 0;
  color: var(--cream-muted);
  font-size: 16px;
  line-height: 1.65;
}

/* ========== HIVE ========== */
.hive {
  position: relative; z-index: 3;
  background: var(--bg-2);
  padding: clamp(100px, 14vw, 180px) var(--pad);
  border-top: 1px solid var(--line);
}
.hive > * { max-width: var(--max); margin-left: auto; margin-right: auto; }

.hive__hex {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  margin-top: 60px;
  flex-wrap: wrap;
}

/* Hexagon containers */
.hex {
  width: 360px;
  height: 416px;
  position: relative;
  margin: 0 -30px;
  display: block;
  cursor: pointer;
}
.hex__inner {
  position: absolute;
  inset: 0;
  background: var(--bg);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  padding: 60px 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  transition: all .5s cubic-bezier(.2,.8,.2,1);
  border: none;
}
.hex::before {
  content: "";
  position: absolute;
  inset: -1px;
  background: var(--line-strong);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  z-index: -1;
  transition: background .5s;
}
.hex:hover::before { background: var(--gold); }
.hex:hover .hex__inner { background: var(--bg-3); transform: scale(0.98); }

.hex--mid { width: 320px; height: 370px; z-index: 2; }
.hex--mid .hex__inner { background: var(--bg-3); padding: 50px 40px; }
.hex__inner--center { gap: 18px; align-items: center; justify-content: center; }
.hex__inner--center img { width: 90px; height: 90px; border-radius: 50%; border: 1px solid var(--line-strong); }
.hex__center-label {
  font-family: var(--display);
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0;
  font-variation-settings: "SOFT" 0;
}

.hex__kicker {
  font-family: var(--display);
  font-size: 10px;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 14px;
  font-variation-settings: "SOFT" 0;
}
.hex h3 {
  margin: 0 0 18px;
  font-size: clamp(22px, 2.2vw, 28px);
  font-weight: 300;
  line-height: 1.05;
  color: var(--cream);
  font-variation-settings: "SOFT" 60, "opsz" 144;
}
.hex__desc {
  color: var(--cream-muted);
  margin: 0 0 22px;
  font-size: 15px;
  line-height: 1.55;
}
.hex__link {
  font-family: var(--display);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-bright);
  font-variation-settings: "SOFT" 0;
}

/* ========== CONTACT ========== */
.contact {
  position: relative; z-index: 3;
  text-align: center;
  padding: clamp(100px, 14vw, 180px) var(--pad);
  border-top: 1px solid var(--line);
  max-width: 800px;
  margin: 0 auto;
}
.contact__mark {
  width: 130px; height: 130px;
  margin: 30px auto 30px;
  filter: drop-shadow(0 0 50px rgba(200, 169, 81, 0.35));
}
.contact__h2 {
  font-size: clamp(46px, 6.4vw, 88px);
  margin-bottom: 30px;
  font-weight: 200;
  font-variation-settings: "SOFT" 50, "opsz" 144;
}
.contact__lede {
  color: var(--cream-soft);
  font-size: 19px;
  line-height: 1.7;
  margin: 0 auto 50px;
  max-width: 580px;
  font-style: italic;
  font-weight: 300;
}
.contact__small {
  margin-top: 36px;
  color: var(--cream-muted);
  font-size: 15px;
}
.contact__small a { color: var(--gold-bright); border-bottom: 1px solid var(--line); }
.contact__small a:hover { color: var(--gold); border-color: var(--gold); }

/* ========== FOOTER ========== */
.footer {
  position: relative; z-index: 3;
  border-top: 1px solid var(--line);
  background: var(--bg-2);
  padding: 80px var(--pad) 50px;
  text-align: center;
  overflow: hidden;
}
.footer__pattern {
  position: absolute;
  inset: 0;
  display: flex;
  opacity: 0.06;
  pointer-events: none;
}
.footer__pattern img { height: 100%; width: 33.333%; object-fit: cover; min-width: 0; flex-shrink: 1; }
.footer__inner { max-width: 700px; margin: 0 auto; position: relative; }
.footer__mark { width: 240px; margin: 0 auto 24px; opacity: 0.95; }
.footer__tag {
  font-family: var(--display);
  font-size: 11px;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 36px;
  font-variation-settings: "SOFT" 0;
}
.footer__nav {
  display: flex;
  gap: 30px;
  justify-content: center;
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.footer__nav a {
  font-family: var(--display);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--cream-muted);
  transition: color .3s;
  font-variation-settings: "SOFT" 0;
}
.footer__nav a:hover { color: var(--gold-bright); }
.footer__copy {
  font-size: 14px;
  color: var(--cream-muted);
  margin: 0;
  font-style: italic;
  line-height: 1.7;
}

/* ========== REVEAL ANIMATIONS ========== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s cubic-bezier(.2,.8,.2,1), transform 1s cubic-bezier(.2,.8,.2,1);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1100px) {
  .hero__rail { display: none; }
  .hex { width: 300px; height: 346px; margin: 0 -25px; }
  .hex--mid { width: 270px; height: 312px; }
  .hex__inner { padding: 50px 35px; }
}

@media (max-width: 980px) {
  .nav__links { display: none; }
  .nav__toggle { display: block; }
  .nav__links.is-open {
    display: flex; flex-direction: column;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--bg-2);
    padding: 20px var(--pad) 30px;
    border-bottom: 1px solid var(--line);
    gap: 0;
  }
  .nav__links.is-open a {
    padding: 16px 0;
    font-size: 13px;
    border-bottom: 1px solid var(--cream-faint);
    min-height: 48px;
    display: flex;
    align-items: center;
  }
  .nav__links.is-open a:last-child { border-bottom: 0; }
  .nav__links.is-open .nav__cta {
    margin-top: 12px;
    border: 1px solid var(--line-strong);
    padding: 16px 22px;
    justify-content: center;
  }
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 110px;
    gap: 30px;
  }
  .hero__content { order: 2; }
  .hero__logo { order: 1; }
  .hero__logo img { max-width: 380px; }
  .hero__lede { margin-left: auto; margin-right: auto; }
  .hero__cta { justify-content: center; }
  .hero__title .line:nth-child(2) { padding-left: 0; }
  .hero__scroll { display: none; }

  .manifesto__grid { grid-template-columns: 1fr; gap: 40px; }
  .range__grid { grid-template-columns: 1fr; }
  .apothecary { grid-template-columns: 100px 1fr; gap: 24px; padding: 36px 28px; }
  .apothecary__bottle { width: 100px; }

  .rituals__compass {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto auto auto;
  }
  .ritual--n, .ritual--e, .ritual--w, .ritual--s {
    grid-column: 1;
    grid-row: auto;
  }
  .rituals__center {
    grid-column: 1;
    grid-row: auto;
    padding: 20px;
  }
  .rituals__center svg { max-width: 180px; }

  .hive__hex { flex-direction: column; gap: 20px; }
  .hex { margin: 0; }

  .chapter { flex-direction: column; align-items: center; gap: 8px; text-align: center; }
}

@media (max-width: 600px) {
  body { font-size: 17px; }
  .hero { padding-top: 100px; padding-bottom: 60px; min-height: auto; }
  .hero__title { font-size: clamp(46px, 13vw, 72px); margin-bottom: 24px; }
  .hero__lede { font-size: 16px; margin-bottom: 32px; }
  .marquee__track { font-size: 20px; gap: 50px; }
  .marquee { padding: 24px 0; }
  .pullquote { font-size: 24px; padding: 30px 16px; line-height: 1.25; }
  .pullquote span { font-size: 1.2em; }
  .manifesto__statement { font-size: 23px; margin-bottom: 60px; line-height: 1.22; }
  .manifesto { padding-left: var(--pad); padding-right: var(--pad); }
  .apothecary { grid-template-columns: 1fr; text-align: left; padding: 32px 24px; }
  .apothecary__bottle { width: 84px; margin: 0 0 20px; }
  .apothecary__num { position: relative; top: 0; right: 0; margin-bottom: 14px; display: block; }
  .apothecary h3 { font-size: 24px; }
  .apothecary__desc { font-size: 16px; }
  .dropcap__letter { font-size: 64px; padding: 6px 12px 0 0; }
  .contact__h2 { font-size: 42px; }
  .contact__lede { font-size: 17px; }
  .contact__mark { width: 90px; height: 90px; }
  .nav__brand { font-size: 11px; }
  .nav__brand img { width: 36px; height: 36px; }
  .chapter { margin-bottom: 28px; }
  .chapter__roman { font-size: 64px; }
  .ritual { padding: 26px 22px; }
  .ritual h3 { font-size: 22px; }
  .rituals__center { display: none; }
  .rituals__compass { gap: 20px; margin-top: 40px; }
  .footer { padding: 60px var(--pad) 40px; }
  .footer__mark { width: 200px; }
  .footer__nav { gap: 20px 24px; }
  .btn { padding: 16px 28px; font-size: 10px; }
  .btn--large { padding: 20px 36px; font-size: 11px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}
