@font-face {
  font-family: "Aetherius";
  src: url("../fonts/Aetherius.ttf") format("truetype");
  font-display: swap;
}

:root {
  --gold: #D4A843;
  --gold-light: #E8C14A;
  --gold-pale: #F0D060;
  --gold-deep: #8C6E2A;
  --black: #060605;
  --dark: #0E0D0B;
  --mid: #181610;
  --surface: #201E16;
  --text: #C9A85C;
  --text-warm: #EAD18C;
  --text-soft: #D4BD80;
  --text-dim: rgba(234, 209, 140, 0.55);
  --text-mute: rgba(234, 209, 140, 0.32);
  --line: rgba(212, 168, 67, 0.18);
  --line-soft: rgba(212, 168, 67, 0.08);
  --muted: rgba(212, 168, 67, 0.30);
  --nav-h: clamp(60px, 6.5vw, 80px);
  --container: 1040px;
  --narrow: 720px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out: cubic-bezier(.2, 0, 0, 1);
  --t-fast: .35s cubic-bezier(.2, 0, 0, 1);
  --t-med:  .55s cubic-bezier(.2, 0, 0, 1);
  --t-slow: .9s  cubic-bezier(.2, 0, 0, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--black);
  color: var(--text-warm);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1rem, 1.8vw, 1.19rem);
  line-height: 1.85;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}

::selection {
  background: rgba(212, 168, 67, 0.3);
  color: var(--gold-pale);
}

:focus-visible {
  outline: 1px solid var(--gold);
  outline-offset: 4px;
}

a {
  color: inherit;
}

img,
iframe {
  max-width: 100%;
}

/* ─── AMBIENT ─── */
.ambient {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  height: 100lvh;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  will-change: transform;
  transform: translateZ(0);
}
.ambient::before {
  content: ""; position: absolute; inset: -10%;
  background: radial-gradient(ellipse at 30% 15%,
    rgba(212, 168, 67, 0.08) 0%,
    rgba(212, 168, 67, 0.02) 26%,
    transparent 58%);
  animation: drift 70s ease-in-out infinite alternate;
}
.ambient::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 75% 90%,
    rgba(212, 168, 67, 0.05) 0%,
    transparent 55%);
  animation: drift 110s ease-in-out infinite alternate-reverse;
}
@keyframes drift { to { transform: translate(2%, -3%); } }

#motes {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  height: 100lvh;
  z-index: 1;
  pointer-events: none;
  will-change: transform;
  transform: translateZ(0);
}

.site-shell {
  position: relative;
  z-index: 2;
}

/* ─── NAV ─── */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0 clamp(1rem, 4vw, 3rem);
  background: linear-gradient(to bottom, rgba(6, 6, 5, 0.88), rgba(6, 6, 5, 0));
  transition: background var(--t-med);
}

.site-nav.is-scrolled {
  background: rgba(6, 6, 5, 0.9);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  min-width: 0;
  color: var(--gold);
  text-decoration: none;
}

.brand img {
  width: 38px;
  height: 38px;
}

.brand span,
.footer-mark,
.script-word {
  font-family: "Aetherius", "Cormorant Garamond", serif;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  text-shadow: 0 0 18px rgba(212, 168, 67, 0.35);
}

.brand span {
  overflow: hidden;
  font-size: 0.72rem;
  line-height: 1;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.6vw, 2.25rem);
}

.nav-links a,
.eyebrow,
.mini-link {
  font-family: "Jost", sans-serif;
  font-size: 0.68rem;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.nav-links a {
  color: var(--text-dim);
  text-decoration: none;
  transition: color var(--t-med);
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--gold-pale);
}

.nav-icon {
  display: inline-flex;
  align-items: center;
  color: var(--text-dim);
  text-decoration: none;
  transition: color var(--t-med);
}
.nav-icon:hover { color: var(--gold-pale); }

/* ─── BUTTONS ─── */
.nav-cta {
  font-family: "Jost", sans-serif;
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-pale);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border: 1px solid rgba(212, 168, 67, 0.22);
  border-radius: 12px;
  background: rgba(212, 168, 67, 0.08);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  box-shadow:
    inset 0 1px 0 rgba(255, 240, 200, 0.12),
    inset 0 -1px 0 rgba(0, 0, 0, 0.08);
  text-decoration: none;
  transition:
    background var(--t-med),
    border-color var(--t-med),
    color var(--t-med),
    letter-spacing var(--t-med),
    box-shadow var(--t-med),
    transform 0.18s cubic-bezier(.65, 0, .35, 1);
}

.button {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(0.7rem, 1.3vw, 0.8rem);
  font-weight: 500;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--gold-pale);
  display: inline-block;
  padding: clamp(0.95rem, 2vw, 1.15rem) clamp(2.4rem, 5vw, 3.4rem);
  border: 1px solid rgba(212, 168, 67, 0.28);
  border-radius: 18px;
  background: rgba(212, 168, 67, 0.10);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  box-shadow:
    inset 0 1px 0 rgba(255, 240, 200, 0.18),
    inset 0 -1px 0 rgba(0, 0, 0, 0.10),
    0 0 24px rgba(212, 168, 67, 0.10),
    0 0 60px rgba(212, 168, 67, 0.05);
  text-align: center;
  text-decoration: none;
  transition:
    background var(--t-med),
    border-color var(--t-med),
    color var(--t-med),
    letter-spacing var(--t-med),
    box-shadow var(--t-med),
    transform 0.18s cubic-bezier(.65, 0, .35, 1);
  animation: btn-breathe 4.2s ease-in-out infinite;
}

@keyframes btn-breathe {
  0%, 100% {
    box-shadow:
      inset 0 1px 0 rgba(255, 240, 200, 0.18),
      inset 0 -1px 0 rgba(0, 0, 0, 0.10),
      0 0 24px rgba(212, 168, 67, 0.10),
      0 0 60px rgba(212, 168, 67, 0.05);
  }
  50% {
    box-shadow:
      inset 0 1px 0 rgba(255, 240, 200, 0.22),
      inset 0 -1px 0 rgba(0, 0, 0, 0.10),
      0 0 32px rgba(212, 168, 67, 0.18),
      0 0 80px rgba(212, 168, 67, 0.08);
  }
}

.nav-cta {
  min-height: 38px;
  padding: 0.65rem 1.1rem;
}

.nav-cta:hover,
.nav-cta:focus-visible {
  background: rgba(212, 168, 67, 0.18);
  color: var(--gold-light);
  border-color: rgba(212, 168, 67, 0.45);
  letter-spacing: 0.28em;
  box-shadow:
    inset 0 1px 0 rgba(255, 240, 200, 0.22),
    0 0 24px rgba(212, 168, 67, 0.18);
}

.button:hover,
.button:focus-visible {
  background: rgba(212, 168, 67, 0.22);
  border-color: rgba(212, 168, 67, 0.55);
  color: var(--gold-light);
  letter-spacing: 0.46em;
  box-shadow:
    inset 0 1px 0 rgba(255, 240, 200, 0.32),
    inset 0 -1px 0 rgba(0, 0, 0, 0.10),
    0 0 36px rgba(232, 193, 74, 0.28),
    0 0 96px rgba(232, 193, 74, 0.14);
  animation-play-state: paused;
  outline: none;
}

.button:active {
  background: rgba(212, 168, 67, 0.36);
  border-color: rgba(212, 168, 67, 0.75);
  transform: scale(0.97);
  transition: transform 0.08s ease-out, background 0.08s ease-out;
}

/* ─── SPLASH NAV (homepage only — hidden until the unicorn is clicked) ─── */
.splash-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.9s var(--ease);
}

.splash-nav.is-revealed {
  opacity: 1;
  pointer-events: auto;
}

.splash-nav-links {
  display: flex;
  align-items: center;
  gap: clamp(0.7rem, 2vw, 1.6rem);
}

.splash-nav-links a {
  font-family: "Jost", sans-serif;
  font-size: 0.68rem;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-dim);
  text-decoration: none;
  transition: color 0.25s var(--ease);
}

.splash-nav-links a:hover {
  color: var(--gold-pale);
}

.pipe {
  color: var(--text-mute);
  font-family: "Jost", sans-serif;
  font-size: 0.52rem;
  user-select: none;
  line-height: 1;
}

/* ─── SPLASH (homepage only) ─── */
.splash {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  min-height: 100svh;
  padding: var(--nav-h) 1.5rem 3.5rem;
  box-sizing: border-box;
}

.splash-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(1.2rem, 2.5vh, 2.2rem);
}

.splash-unicorn-btn {
  all: unset;
  cursor: pointer;
  display: block;
  -webkit-tap-highlight-color: transparent;
  border-radius: 50%;
  position: relative;
}

.splash-unicorn-btn:focus-visible {
  outline: 1px solid rgba(212, 168, 67, 0.4);
  outline-offset: 12px;
}

.splash-logo {
  height: min(52vh, 460px);
  width: auto;
  max-width: min(78vw, 460px);
  min-height: 140px;
  display: block;
  animation: logo-breathe 6s ease-in-out infinite;
  opacity: 0;
  transition: opacity 1.9s linear 1.2s;
}

.splash-logo.is-loaded {
  opacity: 1;
}

.splash-wordmark {
  margin: 0;
  font-family: "Aetherius", "Cormorant Garamond", serif;
  font-size: clamp(1.05rem, 2.8vw, 1.9rem);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  text-shadow: 0 0 24px rgba(212, 168, 67, 0.28);
  text-align: center;
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.9s var(--ease);
}

.splash-wordmark.is-revealed {
  opacity: 1;
}

/* ─── SPLASH BOTTOM (Instagram icon) ─── */
.splash-bottom {
  position: fixed;
  bottom: 4rem;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.9s var(--ease);
}

.splash-bottom.is-revealed {
  opacity: 1;
}

.splash-instagram {
  pointer-events: auto;
  display: inline-flex;
  padding: 0.5rem;
  color: var(--text-dim);
  text-decoration: none;
  transition: color 0.25s var(--ease);
}

.splash-instagram:hover {
  color: var(--gold-pale);
}

@keyframes logo-breathe {
  0%, 100% {
    filter: drop-shadow(0 0 40px rgba(212, 168, 67, 0.28));
    transform: scale(1);
  }
  50% {
    filter: drop-shadow(0 0 72px rgba(212, 168, 67, 0.50));
    transform: scale(1.012);
  }
}


.splash-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10;
  padding: 1.2rem clamp(1.25rem, 4vw, 3rem) calc(1.2rem + env(safe-area-inset-bottom, 0px));
  text-align: center;
  font-family: "Jost", sans-serif;
  font-size: 0.62rem;
  font-weight: 300;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-mute);
}

.splash-footer a {
  color: var(--text-dim);
  text-decoration: none;
  transition: color 0.25s var(--ease);
}
.splash-footer a:hover { color: var(--gold); }

/* ─── CONTACT PAGE ─── */
.contact-splash {
  min-height: calc(100vh - var(--nav-h));
  min-height: calc(100svh - var(--nav-h));
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(3rem, 8vw, 6rem) clamp(1.25rem, 4vw, 3rem);
  text-align: center;
}

.contact-inner {
  width: min(100%, var(--narrow));
}

.oracle-address {
  display: inline-block;
  margin-top: 2.2rem;
  color: var(--gold);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.25rem, 2.8vw, 2rem);
  font-weight: 300;
  letter-spacing: 0.04em;
  text-decoration: none;
  border-bottom: 1px solid rgba(212, 168, 67, 0.28);
  padding-bottom: 3px;
  transition: color 0.25s var(--ease), border-color 0.25s var(--ease), text-shadow 0.25s var(--ease);
}

.oracle-address:hover {
  color: var(--gold-pale);
  border-color: var(--gold);
  text-shadow: 0 0 22px rgba(212, 168, 67, 0.45);
}

/* ─── CONTENT PAGES ─── */
.page {
  padding-top: var(--nav-h);
}

.hero {
  min-height: clamp(560px, 88vh, 820px);
  display: grid;
  align-items: center;
  padding: clamp(2.5rem, 7vw, 6rem) clamp(1.25rem, 4vw, 3rem);
  text-align: center;
}

.hero-inner,
.container,
.narrow {
  width: min(100%, var(--container));
  margin: 0 auto;
}

.narrow {
  width: min(100%, var(--narrow));
}

.hero-logo {
  width: min(46vw, 285px);
  min-width: 150px;
  margin: 0 auto clamp(2.2rem, 5vw, 4rem);
  display: block;
  filter: drop-shadow(0 0 36px rgba(212, 168, 67, 0.25));
}

.kicker,
.eyebrow {
  display: block;
  margin-bottom: 1rem;
  color: var(--gold);
  text-align: center;
  font-family: "Jost", sans-serif;
  font-size: 0.68rem;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
.page-title {
  margin-bottom: 1.15rem;
  color: var(--gold-light);
  font-size: clamp(2.45rem, 8vw, 6.8rem);
  font-weight: 300;
  line-height: 0.98;
  letter-spacing: 0;
}

.page-title {
  font-size: clamp(2.3rem, 6vw, 5.4rem);
}

h1 em,
h2 em,
.page-title em {
  color: var(--gold-pale);
  font-style: italic;
  font-weight: 300;
}

.lede {
  width: min(100%, 760px);
  margin: 0 auto;
  color: var(--text-soft);
  font-size: clamp(1.22rem, 2.3vw, 1.65rem);
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.85rem;
  margin-top: 2.2rem;
}

.section {
  padding: clamp(3.5rem, 8vw, 7rem) clamp(1.25rem, 4vw, 3rem);
}

.section.compact {
  padding-top: clamp(2.5rem, 5vw, 4rem);
  padding-bottom: clamp(2.5rem, 5vw, 4rem);
}

.section-title {
  width: min(100%, 760px);
  margin: 0 auto 1.3rem;
  color: var(--gold-light);
  font-size: clamp(1.85rem, 4.2vw, 3.2rem);
  font-weight: 300;
  line-height: 1.12;
  text-align: center;
}

.body-copy {
  width: min(100%, 760px);
  margin: 0 auto;
  color: var(--text-soft);
  font-size: clamp(1.08rem, 1.8vw, 1.24rem);
}

.body-copy p {
  margin-bottom: 1.2rem;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 2.2rem;
  border: 1px solid var(--line-soft);
  background: var(--line-soft);
}

.tile {
  min-height: 210px;
  padding: clamp(1.35rem, 3vw, 2rem);
  background: rgba(6, 6, 5, 0.66);
}

.tile h3,
.list-card h3 {
  color: var(--gold-pale);
  font-size: clamp(1.32rem, 2.4vw, 1.72rem);
  font-weight: 300;
}

.tile p,
.list-card p,
.faq p,
.note {
  color: var(--text-soft);
}

.steps {
  counter-reset: steps;
}

.step {
  counter-increment: steps;
  position: relative;
  padding-top: 2.25rem;
}

.step::before {
  content: counter(steps, decimal-leading-zero);
  display: block;
  margin-bottom: 1rem;
  color: var(--gold);
  font-family: "Jost", sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.24em;
}

.video-frame {
  width: min(100%, 820px);
  margin: 2.3rem auto 0;
  border: 1px solid var(--line);
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.32);
}

.video-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}

.split .eyebrow,
.split .section-title {
  text-align: left;
  margin-left: 0;
}

.list {
  display: grid;
  gap: 1rem;
}

.list-card {
  padding: 1.35rem 0;
  border-bottom: 1px solid var(--line-soft);
}

.quote-band {
  width: min(100%, 820px);
  margin: 0 auto;
  color: var(--gold-pale);
  font-size: clamp(1.5rem, 3.6vw, 2.7rem);
  font-style: italic;
  line-height: 1.28;
  text-align: center;
}

.faq {
  width: min(100%, 820px);
  margin: 2rem auto 0;
}

.faq details {
  border-bottom: 1px solid var(--line-soft);
  padding: 1.1rem 0;
}

.faq summary {
  cursor: pointer;
  color: var(--gold-pale);
  font-size: clamp(1.08rem, 2vw, 1.35rem);
  list-style: none;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  content: "+";
  float: right;
  color: var(--gold);
  font-family: "Jost", sans-serif;
}

.faq details[open] summary::after {
  content: "-";
}

.contact-list {
  columns: 2;
  padding-left: 1.1rem;
  color: var(--text-soft);
}

.legal {
  width: min(100%, 860px);
  margin: 0 auto;
  color: var(--text-soft);
}

.legal h2 {
  margin-top: 2.3rem;
  color: var(--gold-pale);
  font-size: clamp(1.35rem, 2.4vw, 1.8rem);
  font-weight: 300;
}

.legal h3 {
  margin-top: 1.5rem;
  color: var(--gold-pale);
  font-size: clamp(1.08rem, 1.8vw, 1.35rem);
  font-weight: 300;
}

.legal ul {
  padding-left: 1.15rem;
  margin-bottom: 1.2rem;
}

.legal li {
  margin-bottom: 0.45rem;
}

.body-copy ul {
  padding-left: 1.2rem;
  color: var(--text-soft);
  margin-bottom: 1.2rem;
}

.body-copy li {
  margin-bottom: 0.5rem;
}

.cta-section {
  padding: clamp(4rem, 10vw, 8rem) clamp(1.25rem, 4vw, 3rem);
  text-align: center;
}

/* ─── FOOTER (content pages) ─── */
.footer {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem 1.35rem;
  padding: 2rem clamp(1.25rem, 4vw, 3rem) 2.5rem;
  border-top: 1px solid var(--line-soft);
  color: var(--text-mute);
  font-family: "Jost", sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-align: center;
}

.footer a {
  color: var(--text-dim);
  text-decoration: none;
}

.footer a:hover {
  color: var(--gold-light);
}

.footer-mark {
  color: var(--gold);
  font-family: "Aetherius", "Cormorant Garamond", serif;
  font-size: 0.82rem;
  text-shadow: 0 0 14px rgba(212, 168, 67, 0.35);
}

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

@media (max-width: 860px) {
  .site-nav {
    align-items: center;
    height: var(--nav-h);
    flex-wrap: nowrap;
    padding-top: 0;
    padding-bottom: 0;
  }

  .brand {
    width: auto;
    flex-shrink: 0;
  }

  .nav-links {
    order: 0;
    width: auto;
    gap: 0.45rem;
    flex-wrap: nowrap;
  }

  .nav-links a {
    font-size: 0.55rem;
    letter-spacing: 0.14em;
  }

  .page {
    padding-top: var(--nav-h);
  }

  .grid,
  .split {
    grid-template-columns: 1fr;
  }

  .tile {
    min-height: auto;
  }

  .splash {
    padding-top: var(--nav-h);
    padding-bottom: 3rem;
  }

  .splash-logo {
    height: auto;
    width: min(62vw, 260px);
    max-width: none;
  }

  .splash-wordmark {
    font-size: clamp(0.78rem, 4.5vw, 1.1rem);
    letter-spacing: 0.24em;
  }

  .splash-bottom {
    bottom: 3.5rem;
  }
}

@media (max-width: 560px) {
  .brand span {
    max-width: 68vw;
    font-size: 0.62rem;
  }

  .nav-links a {
    font-size: 0.62rem;
  }

  .nav-cta {
    min-height: 34px;
    padding: 0.55rem 0.78rem;
    font-size: 0.58rem;
  }

  .hero {
    min-height: 620px;
  }

  .contact-list {
    columns: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .splash-logo {
    opacity: 0;
    transition: none;
  }
  .splash-logo.is-loaded {
    opacity: 1;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }

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