/* ============================================================
   Roya Yoga — Landing page
   Persian Blue (Shah Mosque Isfahan) + Antique Gold
   Match the in-app palette and typography
   ============================================================ */

:root {
  /* Surfaces — Lapis spectrum */
  --bg: hsl(224 60% 9%);
  --bg-2: hsl(224 56% 11%);
  --card: hsl(224 55% 13%);
  --card-2: hsl(224 50% 16%);
  --border: hsl(224 38% 22%);
  --border-soft: hsl(224 32% 26% / 0.55);

  /* Ink */
  --ink: hsl(40 35% 92%);
  --ink-2: hsl(40 22% 80%);
  --ink-3: hsl(40 14% 64%);
  --ink-mute: hsl(220 14% 52%);

  /* Antique gold */
  --gold-1: hsl(44 78% 68%);
  --gold-2: hsl(40 70% 56%);
  --gold-3: hsl(36 62% 46%);
  --gold-4: hsl(32 58% 38%);
  --gold: var(--gold-2);
  --peak: hsl(38 60% 48%);

  /* Accents */
  --lapis: hsl(224 70% 38%);
  --lapis-deep: hsl(228 80% 24%);
  --turquoise: hsl(192 70% 58%);
  --saffron: hsl(28 80% 58%);

  /* Type */
  --font-display: "Cormorant Garamond", "Fraunces", "Playfair Display", Georgia, serif;
  --font-body: "Inter", system-ui, -apple-system, "SF Pro Text", sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, "SF Mono", monospace;

  /* Rhythm */
  --container: 1240px;
  --gap-section: clamp(64px, 9vw, 140px);
  --radius-lg: 14px;
  --radius-md: 10px;
  --radius-sm: 6px;

  --ease-soft: cubic-bezier(.2,.7,.2,1);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  min-height: 100vh;
  position: relative;
}

/* Atmosphere — 4 radial gradients matching the app */
.atmosphere {
  position: fixed; inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(900px 600px at 80% -10%, hsla(40, 70%, 56%, 0.10), transparent 60%),
    radial-gradient(800px 700px at 110% 30%, hsla(28, 80%, 58%, 0.06), transparent 60%),
    radial-gradient(900px 800px at -10% 50%, hsla(224, 70%, 38%, 0.18), transparent 65%),
    radial-gradient(700px 600px at 100% 90%, hsla(192, 70%, 58%, 0.05), transparent 60%),
    var(--bg);
}

/* Selection */
::selection { background: hsla(40, 70%, 56%, 0.32); color: var(--ink); }

/* ============================================================
   Type scale — Cormorant display, Inter body
   ============================================================ */

.serif-headline {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.012em;
  line-height: 1.04;
  color: var(--ink);
  margin: 0;
  font-size: clamp(40px, 6.2vw, 84px);
}
.serif-headline--md { font-size: clamp(32px, 4.4vw, 56px); line-height: 1.08; }
.serif-headline--sm { font-size: clamp(22px, 2.4vw, 30px); line-height: 1.18; font-weight: 500; }

.eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-2);
  margin: 0 0 18px 0;
}

p { margin: 0 0 1em 0; color: var(--ink-2); }

a { color: var(--ink); text-decoration: none; }
a:focus-visible { outline: 1.5px solid var(--gold-2); outline-offset: 3px; border-radius: 2px; }

em { font-style: italic; color: var(--gold-1); font-family: var(--font-display); font-size: 1.08em; }

/* Gold rule with center diamond */
.gold-rule {
  display: flex; align-items: center; gap: 14px;
  margin: 28px 0;
  max-width: 360px;
}
.gold-rule::before,
.gold-rule::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, hsla(40, 70%, 56%, 0.5), transparent);
}
.diamond {
  width: 6px; height: 6px;
  background: linear-gradient(135deg, var(--gold-1), var(--gold-3));
  transform: rotate(45deg);
  flex-shrink: 0;
}

/* Centered variant (in section heads, CTA) */
.section__head .gold-rule,
.cta .gold-rule { margin-left: auto; margin-right: auto; }

/* ============================================================
   Gold-leaf CTA — brushed gradient + inner highlight
   ============================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: transform .25s var(--ease-soft), box-shadow .25s var(--ease-soft), background .25s var(--ease-soft);
  border: 1px solid transparent;
  text-decoration: none;
  white-space: nowrap;
}
.btn--lg { padding: 16px 30px; font-size: 15px; }

.gold-leaf {
  background:
    linear-gradient(180deg, hsla(0,0%,100%,0.18), transparent 40%),
    linear-gradient(135deg, var(--gold-1) 0%, var(--gold-2) 35%, var(--gold-3) 70%, var(--gold-4) 100%);
  color: hsl(225 60% 12%);
  border: 1px solid hsla(40, 70%, 35%, 0.6);
  box-shadow:
    inset 0 1px 0 hsla(0,0%,100%,0.35),
    inset 0 -1px 0 hsla(0,0%,0%,0.18),
    0 6px 22px -10px hsla(40, 70%, 50%, 0.7),
    0 0 0 1px hsla(40, 78%, 60%, 0.2);
  font-weight: 600;
  text-shadow: 0 1px 0 hsla(0,0%,100%,0.2);
}
.gold-leaf:hover {
  transform: translateY(-1px);
  box-shadow:
    inset 0 1px 0 hsla(0,0%,100%,0.45),
    inset 0 -1px 0 hsla(0,0%,0%,0.20),
    0 10px 30px -10px hsla(40, 70%, 50%, 0.85),
    0 0 0 1px hsla(40, 78%, 60%, 0.35);
}
.gold-leaf:active { transform: translateY(0); }

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--border);
}
.btn--ghost:hover {
  border-color: hsla(40, 70%, 56%, 0.5);
  background: hsla(40, 70%, 56%, 0.06);
}

.link-signin {
  font-size: 14px;
  letter-spacing: 0.04em;
  color: var(--ink-2);
  position: relative;
  padding: 6px 2px;
  border-bottom: 1px solid transparent;
  transition: color .2s var(--ease-soft), border-color .2s var(--ease-soft);
}
.link-signin:hover { color: var(--gold-1); border-bottom-color: var(--gold-2); }

/* ============================================================
   NAV
   ============================================================ */

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  background: hsla(224, 60%, 9%, 0.78);
  border-bottom: 1px solid var(--border-soft);
}
.nav__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 14px 28px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}
.nav__lockup {
  display: flex; align-items: center; gap: 10px;
}
.logomark { display: inline-flex; line-height: 0; }
.wordmark { color: var(--ink); display: inline-flex; line-height: 0; }

.nav__links {
  justify-self: center;
  display: flex; gap: 28px;
}
.nav__links a {
  font-size: 13px;
  letter-spacing: 0.06em;
  color: var(--ink-2);
  font-family: var(--font-body);
  transition: color .2s var(--ease-soft);
}
.nav__links a:hover { color: var(--gold-1); }

.nav__cta { display: flex; align-items: center; gap: 18px; }

.nav__rule {
  position: relative;
  height: 1px;
  background: linear-gradient(90deg,
    transparent 14%,
    hsla(40, 70%, 56%, 0.35) 50%,
    transparent 86%);
}
.nav__rule .diamond {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}

@media (max-width: 900px) {
  .nav__links { display: none; }
  .nav__inner { grid-template-columns: auto 1fr; padding: 12px 18px; }
}
@media (max-width: 520px) {
  .nav__cta .link-signin { display: none; }
  .nav__cta .btn { padding: 9px 14px; font-size: 12px; letter-spacing: 0.05em; }
  .nav__inner { padding: 10px 16px; gap: 12px; }
}

/* ============================================================
   HERO
   ============================================================ */

.hero {
  max-width: var(--container);
  margin: 0 auto;
  padding: clamp(48px, 8vw, 110px) 28px clamp(80px, 10vw, 140px);
}
.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
@media (max-width: 980px) {
  .hero__grid { grid-template-columns: 1fr; gap: 56px; }
}

.hero__copy { max-width: 640px; }

/* Hero headline — editorial, two-line composition with italic accent */
.hero__headline {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.022em;
  line-height: 0.98;
  color: var(--ink);
  margin: 0;
  font-size: clamp(44px, 6.8vw, 92px);
  display: block;
}
.hero__line {
  display: block;
}
.hero__line--accent {
  font-style: normal;
  color: var(--ink-2);
  font-weight: 400;
  padding-left: 0.6em;
  position: relative;
}
.hero__line--accent em {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: 1em;
  background: linear-gradient(135deg, var(--gold-1), var(--gold-3));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.hero__lede {
  font-family: var(--font-display);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.55;
  color: var(--ink-3);
  margin: 28px 0 0 0;
  max-width: 520px;
}
.hero__ctas {
  display: flex; align-items: center; gap: 20px;
  margin-top: 8px;
  flex-wrap: wrap;
}
.hero__meta {
  margin-top: 22px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--ink-mute);
  text-transform: uppercase;
}

/* Hero art — composer screenshot in gold-stitch frame + phone */
.hero__art {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  min-height: 480px;
}
.frame {
  position: relative;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow:
    0 30px 80px -30px hsla(228, 80%, 5%, 0.9),
    0 0 0 1px hsla(40, 70%, 56%, 0.06);
}
.frame img { display: block; width: 100%; height: auto; }
.frame__corner {
  position: absolute;
  width: 18px; height: 18px;
  border: 1px solid var(--gold-2);
  pointer-events: none;
  opacity: 0.85;
}
.frame__corner--tl { top: 10px; left: 10px; border-right: 0; border-bottom: 0; }
.frame__corner--tr { top: 10px; right: 10px; border-left: 0; border-bottom: 0; }
.frame__corner--bl { bottom: 10px; left: 10px; border-right: 0; border-top: 0; }
.frame__corner--br { bottom: 10px; right: 10px; border-left: 0; border-top: 0; }

.frame__cap {
  position: absolute;
  left: 18px; bottom: 14px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-1);
  background: hsla(224, 60%, 9%, 0.7);
  padding: 6px 10px;
  border: 1px solid hsla(40, 70%, 56%, 0.2);
  border-radius: 2px;
  backdrop-filter: blur(8px);
}

.frame--composer {
  width: 100%;
  max-width: 640px;
  transform: rotate(-1.2deg);
}
.frame--phone {
  position: absolute;
  right: -10px;
  bottom: -32px;
  width: 180px;
  border-radius: 24px;
  transform: rotate(4deg);
  box-shadow:
    0 40px 90px -20px hsla(228, 80%, 5%, 0.95),
    0 0 0 1px hsla(40, 70%, 56%, 0.15);
}
.frame--phone img { border-radius: 22px; }

@media (max-width: 980px) {
  .hero__art { min-height: 420px; }
  .frame--phone { width: 150px; right: 6%; bottom: -20px; }
}
@media (max-width: 520px) {
  .frame--phone { display: none; }
  .frame--composer { transform: none; }
}

/* ============================================================
   Section heads
   ============================================================ */

.section__head {
  max-width: 760px;
  margin: 0 auto clamp(48px, 5vw, 72px);
  text-align: center;
}
.section__head--left {
  text-align: left;
  margin-left: 0;
}
.section__lede {
  font-family: var(--font-display);
  font-size: clamp(18px, 1.5vw, 20px);
  line-height: 1.55;
  color: var(--ink-2);
  margin-top: 14px;
}

/* ============================================================
   MOVEMENTS trio
   ============================================================ */

.movements {
  max-width: var(--container);
  margin: 0 auto;
  padding: var(--gap-section) 28px;
}
.trio {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 880px) { .trio { grid-template-columns: 1fr; } }

.trio__card {
  position: relative;
  background: linear-gradient(180deg, var(--card), var(--card-2));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 30px 32px;
  overflow: hidden;
  transition: transform .35s var(--ease-soft), border-color .35s var(--ease-soft);
}
.trio__card::before {
  /* gold hairline along the top edge (the refined tile-corners look) */
  content: "";
  position: absolute;
  left: 0; right: 0; top: 0;
  height: 1px;
  background: linear-gradient(90deg,
    transparent 14%,
    hsla(40, 70%, 56%, 0.5) 50%,
    transparent 86%);
}
.trio__card:hover {
  transform: translateY(-3px);
  border-color: hsla(40, 70%, 56%, 0.32);
}
.trio__numeral {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: 56px;
  line-height: 1;
  color: transparent;
  background: linear-gradient(135deg, var(--gold-1), var(--gold-3));
  -webkit-background-clip: text;
  background-clip: text;
  margin-bottom: 18px;
}
.trio__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 30px;
  margin: 0 0 12px;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.trio__desc { color: var(--ink-2); margin-bottom: 20px; }
.trio__bullets {
  list-style: none;
  padding: 0; margin: 0;
  display: flex; flex-direction: column;
  gap: 10px;
  border-top: 1px solid var(--border);
  padding-top: 18px;
}
.trio__bullets li {
  font-size: 13px;
  color: var(--ink-3);
  letter-spacing: 0.02em;
  position: relative;
  padding-left: 18px;
}
.trio__bullets li::before {
  content: "";
  position: absolute;
  left: 0; top: 8px;
  width: 5px; height: 5px;
  background: linear-gradient(135deg, var(--gold-1), var(--gold-3));
  transform: rotate(45deg);
}

/* ============================================================
   WALKTHROUGH — scroll-pinned
   ============================================================ */

.walkthrough {
  background:
    linear-gradient(180deg, transparent, hsla(228, 80%, 18%, 0.35) 30%, hsla(228, 80%, 18%, 0.35) 70%, transparent);
  padding: var(--gap-section) 0;
  position: relative;
}
.walkthrough::before, .walkthrough::after {
  content: "";
  position: absolute; left: 14%; right: 14%; height: 1px;
  background: linear-gradient(90deg, transparent, hsla(40, 70%, 56%, 0.32), transparent);
}
.walkthrough::before { top: 0; }
.walkthrough::after { bottom: 0; }

.walkthrough__stage {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 60px;
  align-items: start;
}
@media (max-width: 980px) {
  .walkthrough__stage { grid-template-columns: 1fr; gap: 36px; }
}

.walkthrough__media {
  position: sticky;
  top: 110px;
  height: clamp(420px, 60vh, 620px);
}
.walkthrough__media .frame--shot {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(18px) scale(0.985);
  transition: opacity .6s var(--ease-soft), transform .6s var(--ease-soft);
  display: flex; align-items: center; justify-content: center;
  background: var(--card);
}
.walkthrough__media .frame--shot.is-active {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.walkthrough__media .frame--shot img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
}

.walkthrough__steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex; flex-direction: column;
  gap: clamp(140px, 22vh, 220px);
  padding-top: 60px;
  padding-bottom: 60px;
}
.walkthrough__steps li {
  max-width: 460px;
  opacity: 0.35;
  transition: opacity .5s var(--ease-soft);
}
.walkthrough__steps li.is-active { opacity: 1; }
.walkthrough__steps h3 { margin: 0 0 12px; }
.walkthrough__steps p { color: var(--ink-2); }

@media (max-width: 980px) {
  .walkthrough__media { position: relative; top: 0; height: auto; }
  .walkthrough__media .frame--shot { position: relative; inset: auto; opacity: 1; transform: none; }
  .walkthrough__steps { gap: 24px; padding: 24px 0 0; }
  .walkthrough__steps li { opacity: 1; max-width: none; }
}

/* On mobile, show all shots stacked with their step inline above */
@media (max-width: 980px) {
  .walkthrough__stage { display: block; }
  .walkthrough__steps {
    display: contents;
  }
  .walkthrough__media {
    display: contents;
  }
}

/* ============================================================
   STUDIOS
   ============================================================ */

.studios {
  padding: var(--gap-section) 28px;
}
.studios__inner {
  max-width: var(--container);
  margin: 0 auto;
}
.studios__grid {
  list-style: none;
  padding: 0; margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
@media (max-width: 760px) { .studios__grid { grid-template-columns: 1fr; } }

.studio-card {
  background: linear-gradient(180deg, var(--card), hsla(224, 50%, 14%, 0.85));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 28px 26px;
  position: relative;
  transition: border-color .3s var(--ease-soft), transform .3s var(--ease-soft);
}
.studio-card:hover {
  border-color: hsla(40, 70%, 56%, 0.32);
  transform: translateY(-2px);
}
.studio-card__icon {
  display: inline-flex;
  width: 42px; height: 42px;
  align-items: center; justify-content: center;
  border-radius: 10px;
  background: linear-gradient(135deg, hsla(40, 70%, 56%, 0.14), hsla(40, 70%, 56%, 0.04));
  color: var(--gold-1);
  border: 1px solid hsla(40, 70%, 56%, 0.22);
  margin-bottom: 18px;
}
.studio-card h4 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 22px;
  margin: 0 0 8px;
  color: var(--ink);
}
.studio-card p { color: var(--ink-2); margin: 0; font-size: 15px; }

/* ============================================================
   STUDENTS (secondary)
   ============================================================ */

.students {
  padding: var(--gap-section) 28px;
}
.students__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
@media (max-width: 880px) { .students__inner { grid-template-columns: 1fr; } }
.students__copy h2 { margin-bottom: 18px; }
.students__copy .btn { margin-top: 16px; }

.students__art { display: flex; justify-content: center; }
.frame--phone-tall {
  width: 280px;
  border-radius: 28px;
  overflow: hidden;
  background: var(--card);
  border: 1px solid var(--border);
  box-shadow: 0 40px 90px -20px hsla(228, 80%, 5%, 0.95);
  transform: rotate(-2deg);
}
.frame--phone-tall img { width: 100%; display: block; }

/* ============================================================
   QUOTES
   ============================================================ */

.quotes { padding: var(--gap-section) 28px; }
.quotes__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 880px) { .quotes__inner { grid-template-columns: 1fr; gap: 20px; } }

.quote {
  margin: 0;
  padding: 32px 28px;
  background: linear-gradient(180deg, hsla(224, 55%, 13%, 0.6), hsla(224, 50%, 11%, 0.3));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  position: relative;
}
.quote::before {
  content: "“";
  position: absolute;
  top: 6px; left: 18px;
  font-family: var(--font-display);
  font-size: 64px;
  color: hsla(40, 70%, 56%, 0.32);
  line-height: 1;
}
.quote blockquote {
  margin: 0 0 16px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 20px;
  line-height: 1.45;
  color: var(--ink);
  padding-top: 24px;
}
.quote figcaption {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-2);
}

/* ============================================================
   FINAL CTA — full bleed lapis
   ============================================================ */

.cta {
  padding: clamp(80px, 12vw, 140px) 28px;
  background:
    radial-gradient(900px 500px at 50% 0%, hsla(40, 70%, 56%, 0.10), transparent 60%),
    radial-gradient(800px 500px at 50% 100%, hsla(192, 70%, 58%, 0.06), transparent 60%),
    linear-gradient(180deg, hsla(228, 80%, 22%, 0.45), hsla(228, 80%, 14%, 0.55));
  border-top: 1px solid hsla(40, 70%, 56%, 0.18);
  border-bottom: 1px solid hsla(40, 70%, 56%, 0.18);
  position: relative;
}
.cta__inner {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}
.cta__lede {
  font-family: var(--font-display);
  font-size: clamp(18px, 1.6vw, 21px);
  line-height: 1.55;
  color: var(--ink-2);
  margin: 0 auto 28px;
  max-width: 580px;
}
.cta__row {
  display: flex; align-items: center; justify-content: center; gap: 24px;
  flex-wrap: wrap;
}

/* ============================================================
   FOOTER
   ============================================================ */

.footer {
  padding: 40px 28px 60px;
  border-top: 1px solid var(--border-soft);
}
.footer__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}
@media (max-width: 760px) {
  .footer__inner { grid-template-columns: 1fr; text-align: center; justify-items: center; }
}
.footer__brand { display: flex; align-items: center; gap: 10px; }
.footer__wordmark {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--ink);
}
.footer__divider { color: var(--gold-3); }
.footer__tag { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink-3); }
.footer__links { display: flex; gap: 22px; justify-content: center; }
.footer__links a {
  font-size: 13px;
  color: var(--ink-3);
  letter-spacing: 0.04em;
  transition: color .2s var(--ease-soft);
}
.footer__links a:hover { color: var(--gold-1); }
.footer__meta {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin: 0;
}

/* ============================================================
   Reduce motion
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
