/* ============================================================================
   GENIUS LAB MEDIA GROUP — DESIGN SYSTEM
   Single source of truth for every page. Do not duplicate these rules inline.

   ACCESSIBILITY CONTRACT (verified ratios against every surface token):
     --color-text-primary   #F2EDE4  16.98 : 1  ✓ AA / AAA
     --color-text-secondary #9A9590   6.67 : 1  ✓ AA / AAA
     --color-text-tertiary  #918A82   5.81 : 1  ✓ AA        (min 4.72 on --elevated)
     --color-gold-text      #FF4A55   6.00 : 1  ✓ AA        (min 4.88 on --elevated)
     --color-gold           #E51523   4.21 : 1  ✓ AA large text only (>=24px), fills,
                                                  borders and graphics. NEVER small text.
     --color-btn on dark label        4.67 : 1  ✓ AA
     --color-focus          #00D4FF  11.18 : 1  ✓ AA / AAA
   ========================================================================= */

/* ---------------------------------------------------------------- TOKENS -- */
:root {
  /* Surfaces — elevation by lightness, never by shadow on dark ground */
  --color-void:     #080A0F;
  --color-deep:     #0D1017;
  --color-surface:  #131820;
  --color-elevated: #1A2130;

  /* Brand red. Sacred. */
  --color-gold:        #E51523; /* fills, borders, graphics, display type >=24px */
  --color-gold-bright: #FF3340; /* hover / active */
  --color-gold-dim:    #6B0D12; /* muted backgrounds and glow rings */
  --color-gold-text:   #FF4A55; /* brand red WHEN USED AS TEXT under 24px */

  /* Button fills — tuned so the dark label clears 4.5:1 */
  --color-btn:       #F0202E;
  --color-btn-hover: #FF3340;

  /* Text */
  --color-text-primary:   #F2EDE4;
  --color-text-secondary: #9A9590;
  --color-text-tertiary:  #918A82;
  --color-text-quiet:     #6E6862; /* decorative ONLY — never carries meaning */

  /* Signal / state */
  --color-focus:      #00D4FF;
  --color-signal:     #00D4FF;
  --color-signal-dim: rgba(0, 212, 255, 0.12);
  --color-success:    #5BB97F;
  --color-danger:     #FF6B75;

  /* Borders */
  --color-border:        rgba(229, 21, 35, 0.18);
  --color-border-strong: rgba(229, 21, 35, 0.45);
  --color-border-dim:    rgba(242, 237, 228, 0.08);

  /* Type */
  --font-display: 'Saira Condensed', 'Oswald', 'Arial Narrow', sans-serif;
  --font-heading: 'Archivo', system-ui, -apple-system, sans-serif;
  --font-sans:    'IBM Plex Sans', system-ui, -apple-system, sans-serif;
  --font-mono:    'IBM Plex Mono', ui-monospace, 'Courier New', monospace;

  /* Motion — one easing vocabulary, held everywhere */
  --ease-snap:   cubic-bezier(.16, 1, .3, 1);
  --ease-smooth: cubic-bezier(.22, .61, .36, 1);

  /* Layout rhythm */
  --gutter:    clamp(20px, 5vw, 64px);
  --container: 1400px;
  --bar-h:     30px; /* locale bar height, used for scroll offsets */
}

/* ---------------------------------------------------------------- RESET -- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  background: var(--color-void);
  -webkit-text-size-adjust: 100%;
}

body {
  background: var(--color-void);
  color: var(--color-text-primary);
  font-family: var(--font-sans);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
img { max-width: 100%; display: block; }
svg { display: block; }
::selection { background: var(--color-gold); color: var(--color-text-primary); }

/* Anchor offset so fixed chrome never covers a targeted heading */
[id] { scroll-margin-top: 110px; }

/* ------------------------------------------------------- FOCUS VISIBLE -- */
/* A styled, branded focus indicator is part of the design system, not an
   afterthought. Two-tone so it clears 3:1 against ANY adjacent colour. */
:focus { outline: none; }

:focus-visible {
  outline: 2px solid var(--color-focus);
  outline-offset: 2px;
  border-radius: 2px;
}

.nav-links a:focus-visible,
.footer-col a:focus-visible,
.footer-nav a:focus-visible,
.legal-toc a:focus-visible {
  outline-offset: 4px;
}

/* Inputs get a ring instead of an outline so the field shape stays intact */
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--color-focus);
  outline-offset: 1px;
}

/* ----------------------------------------------------------- SKIP LINK -- */
.skip-link {
  position: fixed;
  top: 0;
  left: 50%;
  z-index: 400;
  transform: translate(-50%, -120%);
  background: var(--color-gold);
  color: #080A0F;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 14px 26px;
  border-radius: 0 0 3px 3px;
  transition: transform .2s var(--ease-snap);
}
.skip-link:focus-visible { transform: translate(-50%, 0); }

/* <main> carries tabindex="-1" so the skip link actually moves focus rather
   than only scrolling. It receives focus programmatically, never by tabbing,
   so it must not draw a ring around the whole page. */
main[tabindex="-1"]:focus { outline: none; }

/* ------------------------------------------------------- CUSTOM CURSOR -- */
/* The OS cursor is NEVER removed unless JS has confirmed a fine pointer and
   installed the replacement. `.custom-cursor` is added to <html> by site.js.
   Without JS the site keeps a perfectly normal cursor. */
.cursor-dot,
.cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  pointer-events: none;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity .3s;
}

.custom-cursor .cursor-dot,
.custom-cursor .cursor-ring { opacity: 1; mix-blend-mode: difference; }

.cursor-dot {
  width: 6px;
  height: 6px;
  background: var(--color-gold-bright);
}

.cursor-ring {
  width: 28px;
  height: 28px;
  border: 1px solid var(--color-gold);
  transition: width .25s var(--ease-snap), height .25s var(--ease-snap),
              background .25s, border-color .25s, opacity .3s;
}
.cursor-ring.hover {
  width: 56px;
  height: 56px;
  background: rgba(229, 21, 35, 0.12);
  border-color: var(--color-gold-bright);
}

/* Hide the native cursor only once the custom one is proven live, and never
   over text-entry controls where the caret matters. */
.custom-cursor body { cursor: none; }
.custom-cursor a,
.custom-cursor button,
.custom-cursor [role="button"] { cursor: none; }
.custom-cursor input,
.custom-cursor select,
.custom-cursor textarea { cursor: auto; }

@media (hover: none), (pointer: coarse) {
  .cursor-dot, .cursor-ring { display: none !important; }
  .custom-cursor body, .custom-cursor a, .custom-cursor button { cursor: auto; }
}

/* ------------------------------------------------------------- GRAIN -- */
.grain {
  position: fixed;
  inset: 0;
  z-index: 9998;
  pointer-events: none;
  opacity: 0.045;
  mix-blend-mode: overlay;
  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.95' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.9'/%3E%3C/svg%3E");
}

/* --------------------------------------------------------- LOCALE BAR -- */
.locale-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 101;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  padding: 8px var(--gutter);
  background: rgba(4, 5, 6, 0.95);
  border-bottom: 1px solid var(--color-border-dim);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-text-tertiary);
}
.locale-bar .region {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}
.locale-bar .region::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-gold);
  box-shadow: 0 0 6px var(--color-gold);
  animation: glmgPulse 2s infinite;
  flex-shrink: 0;
}
@keyframes glmgPulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }

.lang-switch {
  display: inline-flex;
  border: 1px solid var(--color-border-dim);
  border-radius: 2px;
  overflow: hidden;
  flex-shrink: 0;
}
.lang-switch button {
  padding: 5px 11px;
  min-height: 24px;
  color: var(--color-text-tertiary);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  transition: background .2s, color .2s;
}
/* Active pill: --color-btn, not --color-gold. At 10px the label needs 4.5:1
   and #E51523 only reaches 4.21 against the dark text. */
.lang-switch button[aria-pressed="true"] { background: var(--color-btn); color: #080A0F; }
.lang-switch button[aria-pressed="false"]:hover { color: var(--color-text-primary); }
.lang-switch button:focus-visible { outline-offset: -2px; }

@media (max-width: 480px) {
  .locale-bar { font-size: 8px; letter-spacing: 0.16em; padding: 5px 14px; }
}

/* --------------------------------------------------------------- NAV -- */
.nav {
  position: fixed;
  top: var(--bar-h);
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px var(--gutter);
  background: rgba(8, 10, 15, 0);
  backdrop-filter: blur(0);
  border-bottom: 1px solid transparent;
  transition: background .35s var(--ease-smooth), backdrop-filter .35s,
              padding .35s, border-color .35s;
}
.nav.scrolled {
  background: rgba(8, 10, 15, 0.85);
  backdrop-filter: blur(20px);
  padding: 10px var(--gutter);
  border-bottom-color: var(--color-border);
}

.nav-logo { display: inline-flex; align-items: center; flex-shrink: 0; }
.nav-logo img {
  height: 48px;
  width: auto;
  transition: height .35s var(--ease-smooth);
}
.nav.scrolled .nav-logo img { height: 36px; }

.nav-links { display: flex; gap: clamp(20px, 3vw, 38px); }
.nav-links a {
  position: relative;
  padding: 8px 0;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-text-secondary);
  transition: color .2s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--color-gold);
  transition: width .3s var(--ease-snap);
}
.nav-links a:hover,
.nav-links a.active,
.nav-links a[aria-current="page"] { color: var(--color-text-primary); }
.nav-links a:hover::after,
.nav-links a.active::after,
.nav-links a[aria-current="page"]::after { width: 100%; }

.nav-actions { display: inline-flex; align-items: center; gap: 12px; }

.nav-signin {
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 2px;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  white-space: nowrap;
  color: var(--color-text-secondary);
  transition: color .25s var(--ease-snap), border-color .25s var(--ease-snap);
}
.nav-signin:hover { color: var(--color-text-primary); border-color: var(--color-border-strong); }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  border: 1px solid var(--color-border-strong);
  border-radius: 2px;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  white-space: nowrap;
  color: var(--color-gold-text);
  transition: background .25s var(--ease-snap), color .25s var(--ease-snap),
              border-color .25s var(--ease-snap);
}
.nav-cta:hover { background: var(--color-gold); color: #080A0F; border-color: var(--color-gold); }

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-border-strong);
  border-radius: 2px;
  color: var(--color-text-primary);
  transition: border-color .25s, color .25s;
}
.nav-toggle svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
}
.nav-toggle:hover { border-color: var(--color-gold); color: var(--color-gold-text); }

@media (max-width: 1080px) {
  .nav-links, .nav-cta, .nav-signin { display: none; }
  .nav-toggle { display: inline-flex; }
}
@media (max-width: 900px) {
  .nav { top: 28px; padding: 10px 16px; }
  .nav.scrolled { padding: 8px 16px; }
  .nav-logo img { height: 38px; }
  .nav.scrolled .nav-logo img { height: 32px; }
}

/* ------------------------------------------------------- MOBILE MENU -- */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 40px;
  background: rgba(4, 5, 6, 0.98);
  backdrop-filter: blur(24px);
  opacity: 0;
  visibility: hidden;
  transition: opacity .35s var(--ease-smooth), visibility .35s;
}
.mobile-menu.open { opacity: 1; visibility: visible; }

.mobile-menu-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-border-strong);
  border-radius: 2px;
  color: var(--color-text-primary);
  transition: border-color .25s, color .25s;
}
.mobile-menu-close:hover { border-color: var(--color-gold); color: var(--color-gold-text); }
.mobile-menu-close svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 1.5; }

.mobile-menu nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  margin-bottom: 38px;
}
.mobile-menu nav a {
  font-family: var(--font-display);
  font-size: clamp(28px, 8vw, 36px);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  transition: color .25s;
}
.mobile-menu nav a:hover { color: var(--color-gold-text); }

.mobile-menu .mobile-signin {
  display: inline-flex;
  margin-bottom: 20px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-text-secondary);
}
.mobile-menu .mobile-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  border-radius: 2px;
  background: var(--color-btn);
  color: #080A0F;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

/* ------------------------------------------------------------ LAYOUT -- */
.container { max-width: var(--container); margin: 0 auto; }
section { position: relative; padding: clamp(72px, 11vh, 130px) var(--gutter); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-gold-text);
}
.eyebrow::before { content: ''; width: 28px; height: 1px; background: var(--color-gold); }

/* ----------------------------------------------------------- BUTTONS -- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 48px;
  padding: 18px 30px;
  border-radius: 2px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: background .25s var(--ease-snap), color .25s var(--ease-snap),
              border-color .25s var(--ease-snap), transform .25s var(--ease-snap),
              box-shadow .25s var(--ease-snap);
}
.btn-primary { background: var(--color-btn); color: #080A0F; }
.btn-primary:hover {
  background: var(--color-btn-hover);
  transform: translateY(-1px);
  box-shadow: 0 14px 40px rgba(229, 21, 35, 0.3);
}
.btn-ghost { border: 1px solid var(--color-border-strong); color: var(--color-text-primary); }
.btn-ghost:hover {
  border-color: var(--color-gold);
  color: var(--color-gold-text);
  background: rgba(229, 21, 35, 0.06);
}
.btn:active { transform: scale(.98); }
.btn .arrow { transition: transform .25s; }
.btn:hover .arrow { transform: translateX(4px); }
.btn[disabled], .btn[aria-disabled="true"] { opacity: .4; pointer-events: none; }

/* --------------------------------------------------------- PAGE HERO -- */
.page-hero {
  position: relative;
  padding: 180px var(--gutter) 80px;
  border-bottom: 1px solid var(--color-border);
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(229, 21, 35, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(229, 21, 35, 0.045) 1px, transparent 1px);
  background-size: 60px 60px;
  -webkit-mask-image: radial-gradient(ellipse 70% 90% at 70% 20%, #000, transparent 75%);
  mask-image: radial-gradient(ellipse 70% 90% at 70% 20%, #000, transparent 75%);
}
.page-hero .container { position: relative; z-index: 1; }

.page-title {
  font-family: var(--font-display);
  font-size: clamp(48px, 8vw, 116px);
  line-height: 0.92;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}
.page-title .gold { color: var(--color-gold); } /* display size — 4.21:1 clears AA large */

.page-lead {
  max-width: 680px;
  margin-top: 28px;
  font-size: clamp(16px, 1.5vw, 20px);
  font-weight: 300;
  line-height: 1.65;
  color: var(--color-text-secondary);
}
.page-lead strong { color: var(--color-text-primary); font-weight: 500; }

/* ------------------------------------------------------------ FORMS -- */
.field { margin-bottom: 18px; }
.field label {
  display: block;
  margin-bottom: 8px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-text-secondary);
}
.field label .req { color: var(--color-gold-text); }

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 48px;
  padding: 13px 14px;
  background: var(--color-void);
  border: 1px solid var(--color-border-dim);
  border-radius: 3px;
  color: var(--color-text-primary);
  font-family: var(--font-sans);
  font-size: 15px;
  transition: border-color .2s, box-shadow .2s;
}
.field textarea { resize: vertical; min-height: 120px; line-height: 1.6; }
.field select {
  appearance: none;
  padding-right: 36px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23FF4A55' fill='none' stroke-width='1.4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
}
.field input::placeholder,
.field textarea::placeholder { color: var(--color-text-tertiary); }

.field input:hover,
.field select:hover,
.field textarea:hover { border-color: var(--color-border-strong); }

/* Error state carries an icon + text, never colour alone */
.field.invalid input,
.field.invalid select,
.field.invalid textarea {
  border-color: var(--color-danger);
  box-shadow: 0 0 0 3px rgba(255, 107, 117, 0.14);
}
.field .err {
  display: none;
  align-items: center;
  gap: 6px;
  margin-top: 7px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--color-danger);
}
.field.invalid .err { display: flex; }
.field .err::before {
  content: '!';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 14px;
  height: 14px;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 9px;
  font-weight: 700;
  flex-shrink: 0;
}


/* --------------------------------------------------------- CONSENT -- */
.consent {
  position: fixed;
  left: var(--gutter);
  right: var(--gutter);
  bottom: 20px;
  z-index: 300;
  display: none;
  gap: clamp(16px, 3vw, 40px);
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: 0 auto;
  padding: 22px 26px;
  background: rgba(13, 16, 23, 0.97);
  backdrop-filter: blur(20px);
  border: 1px solid var(--color-border);
  border-radius: 6px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, .6);
}
.consent.show { display: flex; }
.consent-copy { flex: 1 1 380px; }
.consent-copy h2 {
  margin-bottom: 8px;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-gold-text);
}
.consent-copy p {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.65;
  color: var(--color-text-secondary);
}
.consent-copy a { color: var(--color-gold-text); text-decoration: underline; }
.consent-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.consent-actions button {
  min-height: 44px;
  padding: 12px 22px;
  border-radius: 2px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: background .2s, color .2s, border-color .2s;
}
.consent-accept { background: var(--color-btn); color: #080A0F; }
.consent-accept:hover { background: var(--color-btn-hover); }
.consent-reject {
  border: 1px solid var(--color-border-strong);
  color: var(--color-text-primary);
}
.consent-reject:hover { border-color: var(--color-gold); color: var(--color-gold-text); }
@media (max-width: 620px) {
  .consent { left: 12px; right: 12px; bottom: 12px; padding: 18px; }
  .consent-actions { width: 100%; }
  .consent-actions button { flex: 1; }
}

/* ----------------------------------------------------------- FOOTER -- */
.footer {
  padding: 64px var(--gutter) 48px;
  border-top: 1px solid var(--color-border);
  background: var(--color-void);
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
@media (max-width: 900px) { .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 560px) { .footer-top { grid-template-columns: 1fr; } }

.footer-brand img { width: auto; height: 46px; margin-bottom: 18px; }
.footer-brand p {
  max-width: 300px;
  font-size: 13px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--color-text-secondary);
}
.footer-col h2 {
  margin-bottom: 18px;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-gold-text);
}
.footer-col a {
  display: block;
  margin-bottom: 12px;
  font-size: 13px;
  color: var(--color-text-secondary);
  transition: color .2s;
}
.footer-col a:hover { color: var(--color-text-primary); }
.footer-col a.accent { color: var(--color-gold-text); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  padding-top: 28px;
  border-top: 1px solid var(--color-border-dim);
}
.footer-bottom .copy { font-size: 11px; letter-spacing: 0.08em; color: var(--color-text-tertiary); }
.footer-bottom .copy a {
  color: var(--color-text-tertiary);
  text-decoration: underline;
  text-decoration-color: var(--color-border-dim);
}
.footer-bottom .copy a:hover { color: var(--color-gold-text); }
.footer-bottom .regions {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-text-tertiary);
}

/* ---------------------------------------------------------- REVEALS -- */
/* Content is visible by default. site.js arms the hidden state only when an
   IntersectionObserver exists, so a JS failure can never hide the page. */
.reveal { opacity: 1; }
html.js-reveal .reveal { opacity: 0; transform: translateY(26px); }
html.js-reveal .reveal.in {
  opacity: 1;
  transform: none;
  transition: opacity .7s var(--ease-snap), transform .7s var(--ease-snap);
}

/* ------------------------------------------------------ MOTION SAFETY -- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  html.js-reveal .reveal { opacity: 1 !important; transform: none !important; }
  .cursor-dot, .cursor-ring { display: none !important; }
  .custom-cursor body, .custom-cursor a, .custom-cursor button { cursor: auto !important; }
}

/* --------------------------------------------------- FORCED COLORS -- */
@media (forced-colors: active) {
  .btn, .nav-cta, .consent-actions button { border: 1px solid ButtonText; }
  .grain, .cursor-dot, .cursor-ring { display: none !important; }
}

/* ---------------------------------------------------- SCREEN-READER -- */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ------------------------------------------------------------ PRINT -- */
@media print {
  .locale-bar, .nav, .mobile-menu, .grain, .cursor-dot, .cursor-ring,
  .consent, .skip-link, canvas { display: none !important; }
  html, body { background: #fff; color: #000; }
  a { color: #000; text-decoration: underline; }
  section, .page-hero { padding: 20px 0; }
}
