:root {
  --ink: #050505;
  --ink-2: #0b0a08;
  --gold: #e8d3a3;
  --gold-deep: #c9a961;
  --gold-dim: rgba(232, 211, 163, 0.55);
  --hair: rgba(232, 211, 163, 0.16);
  --paper: #f3ece0;
  --serif: "Cormorant Garamond", "Didot", Georgia, serif;
  --sans: "Jost", "Futura", "Century Gothic", system-ui, sans-serif;
  --wrap: 1140px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--sans);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: transparent;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

/* ---------- the gate ---------- */

body.gated {
  overflow: hidden;
  height: 100vh;
  height: 100dvh; /* mobile toolbars change the viewport height */
}

body.menu-open { overflow: hidden; }

.gate {
  --ring: min(78vw, 60vh, 460px);
  position: fixed;
  inset: 0;
  z-index: 100;
  background: var(--ink);
  display: grid;
  place-items: center;
  overflow: hidden;
  transition: opacity 0.75s ease 1.05s, visibility 0s linear 1.85s;
}

.gate.opening {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.gate.gone { display: none; }

/* corner swirls */

/* keep the veins well off the sigil, whatever the window shape */
.swirls {
  position: absolute;
  inset: 0;
  opacity: 0.7;
  -webkit-mask-image: radial-gradient(circle at 50% 50%, transparent calc(var(--ring) * 0.78), #000 calc(var(--ring) * 1.25));
  mask-image: radial-gradient(circle at 50% 50%, transparent calc(var(--ring) * 0.78), #000 calc(var(--ring) * 1.25));
}

.swirl {
  position: absolute;
  width: clamp(140px, 36vw, 500px);
  height: clamp(140px, 36vw, 500px);
  color: var(--gold-deep);
}

.swirl.tl { top: 0; left: 0; }
.swirl.tr { top: 0; right: 0; transform: rotate(90deg); }
.swirl.br { bottom: 0; right: 0; transform: rotate(180deg); }
.swirl.bl { bottom: 0; left: 0; transform: rotate(270deg); }

/* dash values are inherited so they reach the <use> shadow content */
.swirl svg {
  width: 100%;
  height: 100%;
  overflow: visible;
  transform-origin: 0 0;
  stroke-dasharray: 1;
  stroke-dashoffset: 0;
  transition:
    transform 1.45s cubic-bezier(0.45, 0, 0.2, 1),
    stroke-dashoffset 1.3s cubic-bezier(0.45, 0, 0.3, 1),
    opacity 1s ease 0.5s;
}

/* the veins slither back out through their own corner */
.gate.opening .swirl svg {
  transform: translate(-88%, -88%) rotate(-46deg) scale(1.5);
  stroke-dashoffset: -1;
  opacity: 0;
}

.gate.opening .swirl:nth-child(2) svg { transition-delay: 0.07s, 0.07s, 0.57s; }
.gate.opening .swirl:nth-child(3) svg { transition-delay: 0.14s, 0.14s, 0.64s; }
.gate.opening .swirl:nth-child(4) svg { transition-delay: 0.21s, 0.21s, 0.71s; }

/* centre piece */

.gate-core {
  position: relative;
  display: grid;
  place-items: center;
  width: var(--ring);
  aspect-ratio: 1;
  padding: 0;
  border: 0;
  background: none;
  color: inherit;
  cursor: pointer;
  animation: breathe 7s ease-in-out infinite;
}

@keyframes breathe {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.018); }
}

.gate-ring {
  position: absolute;
  inset: 0;
  border: 1px solid var(--gold-deep);
  border-radius: 50%;
  box-shadow: 0 0 90px rgba(201, 169, 97, 0.14), inset 0 0 70px rgba(201, 169, 97, 0.06);
  transition: transform 1.15s cubic-bezier(0.5, 0, 0.2, 1), opacity 0.9s ease 0.15s;
}

.gate-core:hover .gate-ring { box-shadow: 0 0 130px rgba(232, 211, 163, 0.26), inset 0 0 70px rgba(201, 169, 97, 0.1); }

.gate.opening .gate-ring {
  transform: scale(2.6) rotate(24deg);
  opacity: 0;
}

.gate-sigil {
  width: 42%;
  margin-bottom: 0.6rem;
  overflow: visible;
  fill: none;
  stroke: var(--gold);
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.gate-sigil .pent { fill: var(--gold); stroke: none; }

.piece {
  transform-box: fill-box;
  transform-origin: center;
  stroke-dasharray: 1;
  stroke-dashoffset: 0;
  transition:
    transform 1.25s cubic-bezier(0.4, 0, 0.2, 1),
    stroke-dashoffset 1.05s cubic-bezier(0.5, 0, 0.5, 1),
    opacity 0.85s ease 0.35s;
}

.gate.opening .piece { opacity: 0; }

/* the star unravels ray by ray, then the frame lets go */
.gate.opening .pent  { transform: translate(0, -150px) rotate(200deg) scale(0.3); }
.gate.opening .r1    { transform: translate(96px, -112px) rotate(75deg); stroke-dashoffset: 1; }
.gate.opening .r2    { transform: translate(-28px, 150px) rotate(-95deg); stroke-dashoffset: -1; }
.gate.opening .r3    { transform: translate(-160px, -14px) rotate(50deg); stroke-dashoffset: 1; }
.gate.opening .r4    { transform: translate(48px, 156px) rotate(115deg); stroke-dashoffset: -1; }
.gate.opening .r5    { transform: translate(-92px, -124px) rotate(-70deg); stroke-dashoffset: 1; }
.gate.opening .arc-l { transform: translate(-150px, -46px) rotate(-65deg); stroke-dashoffset: 1; }
.gate.opening .arc-r { transform: translate(150px, -46px) rotate(65deg); stroke-dashoffset: -1; }
.gate.opening .disc  { transform: scale(2.4); stroke-dashoffset: 1; }

/* delays run: transform, stroke-dashoffset, opacity */
.gate.opening .r1 { transition-delay: 0.04s, 0.04s, 0.39s; }
.gate.opening .r2 { transition-delay: 0.1s, 0.1s, 0.45s; }
.gate.opening .r3 { transition-delay: 0.16s, 0.16s, 0.51s; }
.gate.opening .r4 { transition-delay: 0.22s, 0.22s, 0.57s; }
.gate.opening .r5 { transition-delay: 0.28s, 0.28s, 0.63s; }
.gate.opening .arc-l,
.gate.opening .arc-r { transition-delay: 0.18s, 0.18s, 0.53s; }
.gate.opening .disc { transition-delay: 0.3s, 0.3s, 0.65s; }

.gate-word, .gate-sub {
  margin: 0;
  font-family: var(--serif);
  color: var(--paper);
  line-height: 1.2;
  white-space: nowrap;
}

.gate-word {
  font-size: clamp(1.05rem, 3.4vw, 1.9rem);
  letter-spacing: 0.14em;
}

.gate-sub {
  margin-top: 0.5rem;
  font-family: var(--sans);
  font-size: clamp(0.55rem, 1.5vw, 0.72rem);
  letter-spacing: 0.55em;
  color: var(--gold-dim);
}

.gate-word .ltr, .gate-sub .ltr {
  display: inline-block;
  white-space: pre;
  transition:
    transform 1.1s cubic-bezier(0.6, 0, 0.25, 1),
    opacity 0.75s ease;
}

.gate.opening .ltr {
  transform: translate(var(--tx), var(--ty)) rotate(var(--r)) scale(0.6);
  opacity: 0;
  transition-delay: var(--d);
}

.gate-hint {
  position: absolute;
  bottom: clamp(2rem, 7vh, 4rem);
  margin: 0;
  font-size: 0.62rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold-dim);
  animation: hint 3.2s ease-in-out infinite;
  transition: opacity 0.4s;
}

.gate.opening .gate-hint { opacity: 0; }

@keyframes hint {
  0%, 100% { opacity: 0.35; }
  50% { opacity: 0.9; }
}

@media (max-width: 640px) {
  .swirl {
    width: clamp(120px, 34vw, 540px);
    height: clamp(120px, 34vw, 540px);
  }
  .gate { --ring: min(70vw, 50vh, 460px); }
}

/* ---------- atmosphere ---------- */

#stars {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.veil {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(120% 80% at 12% -10%, rgba(201, 169, 97, 0.14), transparent 55%),
    radial-gradient(90% 70% at 100% 110%, rgba(201, 169, 97, 0.10), transparent 60%),
    radial-gradient(60% 60% at 50% 50%, transparent 40%, rgba(0, 0, 0, 0.75) 100%);
}

main, .topbar, .foot { position: relative; z-index: 2; }

/* ---------- type ---------- */

h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: 0.01em;
  margin: 0;
}

.eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin: 0 0 1.2rem;
}

.sub {
  color: rgba(243, 236, 224, 0.62);
  max-width: 46ch;
  margin: 1rem auto 0;
  font-size: 1rem;
}

/* ---------- top bar ---------- */

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.1rem clamp(1.2rem, 5vw, 3.5rem);
  background: rgba(5, 5, 5, 0.72);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--hair);
}

.mark {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--serif);
  font-size: 1.15rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--paper);
}

.sigil {
  width: 30px;
  height: 30px;
  flex: none;
  fill: none;
  stroke: var(--gold);
  stroke-width: 2.2;
  stroke-linejoin: round;
}

.sigil .fill { fill: var(--gold); stroke: none; }

.topbar nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.4vw, 2.2rem);
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.topbar nav a { color: rgba(243, 236, 224, 0.7); transition: color 0.3s; }
.topbar nav a:hover { color: var(--gold); }

.topbar nav .cta {
  color: var(--gold);
  border: 1px solid var(--gold-deep);
  padding: 0.55rem 1.1rem;
}

.topbar nav .cta:hover {
  background: var(--gold);
  color: var(--ink);
}

/* small-screen menu */

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 46px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--hair);
  background: none;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 1px;
  margin: 0 auto;
  background: var(--gold);
  transition: transform 0.35s, opacity 0.25s;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ---------- buttons ---------- */

.btn {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  padding: 1rem 2.1rem;
  border: 1px solid var(--gold-deep);
  background: var(--gold);
  color: var(--ink);
  cursor: pointer;
  transition: background 0.35s, color 0.35s, box-shadow 0.35s;
}

.btn:hover {
  background: transparent;
  color: var(--gold);
  box-shadow: 0 0 30px rgba(201, 169, 97, 0.22);
}

.btn.ghost {
  background: transparent;
  color: var(--gold);
}

.btn.ghost:hover {
  background: var(--gold);
  color: var(--ink);
}

/* ---------- hero ---------- */

.hero {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: clamp(3.5rem, 9vw, 7rem) clamp(1.2rem, 5vw, 3rem) clamp(2rem, 6vw, 4rem);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(2rem, 6vw, 5rem);
}

.hero h1 {
  font-size: clamp(3.4rem, 9vw, 6.6rem);
  line-height: 0.92;
  letter-spacing: 0.02em;
}

.hero h1 em {
  font-style: italic;
  color: var(--gold);
}

.lede {
  max-width: 40ch;
  margin: 1.8rem 0 2.6rem;
  color: rgba(243, 236, 224, 0.68);
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

/* ---------- flipping card ---------- */

.card-stage { perspective: 1600px; }

.card, .face { -webkit-backface-visibility: hidden; }

.card {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 1024 / 585;
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
  transform-style: preserve-3d;
  transform: rotateY(0deg) rotateX(0deg);
  transition: transform 1.1s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.card.flipped { transform: rotateY(180deg); }

.face {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  backface-visibility: hidden;
  border: 1px solid rgba(232, 211, 163, 0.25);
  box-shadow:
    0 30px 70px rgba(0, 0, 0, 0.75),
    0 0 60px rgba(201, 169, 97, 0.12);
}

.face.back { transform: rotateY(180deg); }

.card-hint {
  margin-top: 1.6rem;
  text-align: center;
  font-size: 0.68rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-dim);
}

/* ---------- rule ---------- */

.rule {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 clamp(1.2rem, 5vw, 3rem);
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.rule span {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--hair), transparent);
}

.diamond {
  width: 12px;
  height: 12px;
  fill: none;
  stroke: var(--gold-deep);
  stroke-width: 1.5;
}

/* ---------- sections ---------- */

.section {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: clamp(4rem, 10vw, 7.5rem) clamp(1.2rem, 5vw, 3rem);
}

.section-head {
  text-align: center;
  margin-bottom: clamp(2.5rem, 6vw, 4rem);
}

.section-head h2,
.oracle h2,
.summon h2 {
  font-size: clamp(2.1rem, 4.6vw, 3.4rem);
  line-height: 1.15;
}

/* ---------- services ---------- */

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(275px, 1fr));
  gap: 1px;
  background: var(--hair);
  border: 1px solid var(--hair);
}

.card-tile {
  background: var(--ink);
  padding: clamp(1.8rem, 3.5vw, 2.6rem);
  transition: background 0.4s;
}

.card-tile:hover { background: var(--ink-2); }

.glyph {
  display: block;
  width: 27px;
  height: 27px;
  margin-bottom: 1.2rem;
  fill: none;
  stroke: var(--gold-deep);
  stroke-width: 1.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.5s, stroke 0.4s;
}

.card-tile:hover .glyph {
  stroke: var(--gold);
  transform: translateY(-3px);
}

.card-tile h3 {
  font-size: 1.5rem;
  margin-bottom: 0.7rem;
  letter-spacing: 0.04em;
}

.card-tile p {
  margin: 0;
  color: rgba(243, 236, 224, 0.6);
  font-size: 0.94rem;
}

/* ---------- one practitioner ---------- */

.solo {
  margin-top: clamp(2.5rem, 5vw, 4rem);
  padding: clamp(2rem, 4vw, 3rem);
  border: 1px solid var(--hair);
  background:
    radial-gradient(90% 140% at 50% 0%, rgba(201, 169, 97, 0.08), transparent 65%),
    rgba(11, 10, 8, 0.45);
  text-align: center;
}

.solo .sigil {
  width: 40px;
  height: 40px;
  margin: 0 auto 1.4rem;
  opacity: 0.85;
}

.solo-lead {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.45rem, 3vw, 2.1rem);
  color: var(--gold);
  letter-spacing: 0.02em;
}

.solo-body {
  max-width: 58ch;
  margin: 1rem auto 0;
  color: rgba(243, 236, 224, 0.6);
  font-size: 0.96rem;
}

/* ---------- oracle ---------- */

.oracle { text-align: center; }

.oracle-inner {
  max-width: 620px;
  margin: 0 auto;
  padding: clamp(2.5rem, 6vw, 4rem) clamp(1.5rem, 4vw, 3rem);
  border: 1px solid var(--hair);
  background: rgba(11, 10, 8, 0.5);
}

.orb {
  width: 130px;
  height: 130px;
  margin: 2.4rem auto 1.8rem;
  border-radius: 50%;
  background:
    radial-gradient(circle at 34% 30%, rgba(255, 250, 235, 0.9), rgba(232, 211, 163, 0.5) 28%, rgba(120, 95, 45, 0.35) 60%, rgba(0, 0, 0, 0.9) 100%);
  box-shadow:
    0 0 60px rgba(201, 169, 97, 0.28),
    inset 0 0 40px rgba(0, 0, 0, 0.6);
  animation: float 6s ease-in-out infinite;
}

.orb.working { animation: float 6s ease-in-out infinite, pulse 0.7s ease-in-out infinite; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 60px rgba(201, 169, 97, 0.28), inset 0 0 40px rgba(0, 0, 0, 0.6); }
  50% { box-shadow: 0 0 110px rgba(232, 211, 163, 0.6), inset 0 0 40px rgba(0, 0, 0, 0.4); }
}

.prophecy {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.2rem, 2.4vw, 1.6rem);
  color: var(--gold);
  min-height: 4.5em;
  margin: 0 0 2rem;
  transition: opacity 0.4s;
}

.prophecy.fading { opacity: 0; }

/* ---------- rates ---------- */

/* 1 / 2 / 4 columns — never an orphaned card on its own row */
.rates {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.2rem;
  align-items: start;
}

@media (min-width: 620px) {
  .rates { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1100px) {
  .rates { grid-template-columns: repeat(4, 1fr); }
}

.rate {
  position: relative;
  border: 1px solid var(--hair);
  padding: clamp(1.5rem, 2.6vw, 2.2rem);
  background: rgba(11, 10, 8, 0.4);
  transition: border-color 0.4s, transform 0.4s;
}

.rate:hover {
  border-color: rgba(232, 211, 163, 0.42);
  transform: translateY(-4px);
}

.rate.featured {
  border-color: var(--gold-deep);
  background: rgba(20, 17, 11, 0.6);
}

/* not for sale, hence the broken border */
.rate.favour {
  border-style: dashed;
  border-color: rgba(232, 211, 163, 0.3);
}

.ribbon {
  position: absolute;
  top: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  margin: 0;
  background: var(--gold);
  color: var(--ink);
  font-size: 0.6rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  padding: 0.3rem 1rem;
  white-space: nowrap;
}

.ribbon.soft {
  background: var(--ink);
  border: 1px dashed rgba(232, 211, 163, 0.45);
  color: var(--gold);
  padding: 0.25rem 0.9rem;
}

.tier {
  font-family: var(--serif);
  font-size: clamp(1.15rem, 1.5vw, 1.45rem);
  letter-spacing: 0.1em;
  white-space: nowrap;
  text-transform: uppercase;
  margin: 0;
  color: var(--paper);
}

.price {
  font-family: var(--serif);
  font-variant-numeric: lining-nums tabular-nums;
  font-size: 2.8rem;
  color: var(--gold);
  margin: 0.4rem 0 1.6rem;
  line-height: 1;
}

.rate ul {
  list-style: none;
  margin: 0 0 2rem;
  padding: 0;
  border-top: 1px solid var(--hair);
}

.rate li {
  padding: 0.85rem 0 0.85rem 1.5rem;
  border-bottom: 1px solid var(--hair);
  color: rgba(243, 236, 224, 0.62);
  font-size: 0.9rem;
  position: relative;
}

.rate li::before {
  content: "\2726";
  position: absolute;
  left: 0;
  color: var(--gold-deep);
  font-size: 0.7rem;
}

/* ---------- testimony ---------- */

.quotes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 1.4rem;
}

.quote {
  margin: 0;
  padding: clamp(1.8rem, 3.5vw, 2.5rem);
  border: 1px solid var(--hair);
  background: rgba(11, 10, 8, 0.4);
}

.quote blockquote {
  margin: 0;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.2rem;
  line-height: 1.6;
  color: rgba(243, 236, 224, 0.88);
}

.quote blockquote::before {
  content: "\201C";
  display: block;
  font-size: 3rem;
  line-height: 0.6;
  color: var(--gold-deep);
  margin-bottom: 0.6rem;
}

.quote figcaption {
  margin-top: 1.4rem;
  font-size: 0.68rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-dim);
}

/* ---------- summon ---------- */

.summon { text-align: center; }

.summon-inner {
  max-width: 720px;
  margin: 0 auto;
  padding: clamp(2.8rem, 7vw, 4.5rem) clamp(1.5rem, 4vw, 3rem);
  border: 1px solid var(--hair);
  background:
    radial-gradient(80% 120% at 50% 0%, rgba(201, 169, 97, 0.10), transparent 60%),
    rgba(11, 10, 8, 0.55);
}

.contact {
  list-style: none;
  margin: 2.8rem 0 0;
  padding: 0;
  display: inline-flex;
  flex-direction: column;
  gap: 1.1rem;
  text-align: left;
}

.contact li {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.05rem;
  letter-spacing: 0.04em;
}

.contact a { transition: color 0.3s; }
.contact a:hover { color: var(--gold); }

.ico {
  flex: none;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--gold-deep);
}

.ico svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hours {
  margin: 2.6rem 0 0;
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-dim);
}

/* ---------- footer ---------- */

.foot {
  text-align: center;
  padding: clamp(3rem, 6vw, 4.5rem) clamp(1.2rem, 5vw, 3rem);
  border-top: 1px solid var(--hair);
}

.foot .sigil.small {
  width: 34px;
  height: 34px;
  margin: 0 auto 1.8rem;
  opacity: 0.75;
}

.disclaimer {
  max-width: 60ch;
  margin: 0 auto;
  font-size: 0.82rem;
  color: rgba(243, 236, 224, 0.42);
}

.copy {
  margin: 1.6rem 0 0;
  font-size: 0.62rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(243, 236, 224, 0.28);
}

/* ---------- reveal ---------- */

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.9s ease, transform 0.9s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ---------- responsive ---------- */

@media (max-width: 880px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero .lede { margin-inline: auto; }
  .hero-actions { justify-content: center; }
  .hero-card { order: -1; }
  .mark { font-size: 0.95rem; letter-spacing: 0.12em; }
  .mark span { white-space: nowrap; }

  .menu-toggle { display: flex; }

  /* backdrop-filter would make the bar a containing block for the fixed menu */
  .topbar {
    backdrop-filter: none;
    background: rgba(5, 5, 5, 0.94);
  }

  /* the nav becomes a full-screen sheet, reachable from any scroll position */
  .topbar nav {
    position: fixed;
    inset: 0;
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    background: var(--ink);
    font-size: 0.78rem;
    letter-spacing: 0.34em;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity 0.35s ease, transform 0.45s ease, visibility 0s linear 0.35s;
  }

  .topbar nav.open {
    opacity: 1;
    visibility: visible;
    transform: none;
    transition-delay: 0s;
  }

  .topbar nav a { color: var(--paper); }
  .topbar nav .cta { padding: 0.9rem 1.8rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}
