/* ============================================================
   Deer Rock Studios — Shared styles
   Brand tokens & components extracted from the original index.html
   ============================================================ */

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

:root {
  --black: #080808;
  --black-soft: #0d0d0d;
  --white: #f2ede4;
  --accent: #c8b89a;
  --accent-dim: rgba(200,184,154,0.15);
  --muted: #3a3a3a;
  --glass-bg: rgba(255,255,255,0.03);
  --glass-border: rgba(200,184,154,0.12);
  --glass-highlight: rgba(200,184,154,0.06);
  --font-d: 'Bebas Neue', sans-serif;
  --font-m: 'Space Mono', monospace;
  --font-b: 'Inter', sans-serif;

  /* Premium metallic system — brushed-gold sheen for accent surfaces/text */
  --accent-hi: #efe3c8;       /* polished highlight */
  --accent-lo: #9c8a68;       /* shadowed valley */
  --metal: linear-gradient(135deg,
            #9c8a68 0%, #c8b89a 22%, #efe3c8 42%,
            #c8b89a 60%, #9c8a68 78%, #d8c9a8 100%);
  --metal-soft: linear-gradient(120deg,
            rgba(156,138,104,0) 0%, rgba(239,227,200,0.55) 50%, rgba(156,138,104,0) 100%);

  /* Spacing scale — generous but not empty */
  --space-section: 7rem;
  --gutter: 3rem;
}

html { scroll-behavior: smooth; background: var(--black); }

body {
  background: transparent;
  color: var(--white);
  font-family: var(--font-b);
  font-weight: 300;
  overflow-x: hidden;
  cursor: none;
  min-height: 100vh;
}

/* Site-wide faint logo watermark (big, semi-transparent) on every page.
   URL is relative to this stylesheet (assets/css/), so it resolves to the
   root logo regardless of page depth. mix-blend screen drops the black box. */
body::after {
  content: '';
  position: fixed;
  top: 50%; right: -10vw;
  transform: translateY(-50%);
  width: min(60vw, 760px); aspect-ratio: 1 / 1;
  background: url('../../logo-dark.png') no-repeat center / contain;
  opacity: 0.05;
  mix-blend-mode: screen;
  pointer-events: none;
  z-index: -1;
}
@media (max-width: 768px) {
  body::after { right: -25vw; width: 90vw; opacity: 0.04; }
}

a { color: inherit; }

/* ============================================================
   METALLIC UTILITIES — brushed-gold text + sheen sweep
   ============================================================ */
.metal-text {
  background: var(--metal);
  background-size: 220% 220%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  animation: metalShift 9s ease-in-out infinite;
}
@keyframes metalShift {
  0%,100% { background-position: 0% 50%; }
  50%     { background-position: 100% 50%; }
}
/* Sheen sweep — a slow diagonal glint travelling across a surface */
.sheen { position: relative; overflow: hidden; }
.sheen::after {
  content: '';
  position: absolute; top: -50%; left: -75%;
  width: 50%; height: 200%;
  background: linear-gradient(100deg,
    transparent 0%, rgba(239,227,200,0.10) 45%,
    rgba(239,227,200,0.22) 50%, rgba(239,227,200,0.10) 55%, transparent 100%);
  transform: skewX(-18deg);
  pointer-events: none;
  opacity: 0;
}
.sheen:hover::after, .sheen:focus-visible::after {
  animation: sheenSweep 0.9s ease forwards;
}
@keyframes sheenSweep {
  0%   { left: -75%; opacity: 0; }
  10%  { opacity: 1; }
  100% { left: 130%; opacity: 0; }
}
/* Hairline metallic divider */
.metal-rule {
  height: 1px; border: 0;
  background: var(--metal-soft);
}

/* NOISE OVERLAY */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1000;
  opacity: 0.4;
}

/* ORBS */
.orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
  animation: orbFloat 12s ease-in-out infinite;
}
.orb-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(200,184,154,0.06) 0%, transparent 70%);
  top: -100px; left: -100px;
  animation-delay: 0s;
}
.orb-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(200,184,154,0.04) 0%, transparent 70%);
  bottom: 10%; right: -80px;
  animation-delay: -6s;
}
@keyframes orbFloat {
  0%,100% { transform: translate(0,0); }
  33% { transform: translate(30px,-40px); }
  66% { transform: translate(-20px,20px); }
}

/* CURSOR */
.cursor {
  position: fixed; width: 6px; height: 6px;
  background: var(--white); border-radius: 50%;
  pointer-events: none; z-index: 9999;
  transform: translate(-50%,-50%);
  transition: width .15s, height .15s, background .15s;
  mix-blend-mode: difference;
}
.cursor-ring {
  position: fixed; width: 28px; height: 28px;
  border: 1px solid rgba(200,184,154,0.35);
  border-radius: 50%; pointer-events: none; z-index: 9998;
  transform: translate(-50%,-50%);
  transition: width .3s cubic-bezier(.25,.46,.45,.94),
              height .3s cubic-bezier(.25,.46,.45,.94),
              border-color .3s;
}

/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 500;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.5rem 3rem;
  transition: background .4s, border-color .4s, backdrop-filter .4s;
  border-bottom: 1px solid transparent;
}
nav.scrolled, nav.solid {
  background: rgba(8,8,8,0.85);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-color: var(--glass-border);
}
.nav-logo {
  display: flex; align-items: center; gap: 12px; text-decoration: none;
}
.nav-logo img { width: 30px; height: 30px; mix-blend-mode: screen; }
.nav-logo span {
  font-family: var(--font-d);
  font-size: 1rem; letter-spacing: .18em; color: var(--white);
}
.nav-right { display: flex; align-items: center; gap: 2.5rem; }
.nav-links { display: flex; gap: 2.5rem; list-style: none; }
.nav-links a {
  font-family: var(--font-m); font-size: .65rem;
  letter-spacing: .18em; color: var(--accent);
  text-decoration: none; text-transform: uppercase;
  transition: color .2s;
}
.nav-links a:hover, .nav-links a:focus-visible { color: var(--white); }

/* LANGUAGE SWITCHER */
.lang-switch {
  display: inline-flex; align-items: center;
  border: 1px solid var(--glass-border);
  border-radius: 2px; overflow: hidden;
  font-family: var(--font-m); font-size: .6rem; letter-spacing: .12em;
}
.lang-switch button {
  background: transparent; border: 0; color: var(--muted);
  padding: .35rem .6rem; cursor: none;
  text-transform: uppercase; letter-spacing: .12em;
  font-family: var(--font-m); font-size: .6rem;
  transition: color .2s, background .2s;
}
.lang-switch button:hover { color: var(--white); }
.lang-switch button[aria-pressed="true"] {
  color: var(--black); background: var(--metal);
}

/* Focus visibility for accessibility */
a:focus-visible, button:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

/* HERO */
.hero {
  min-height: 100vh;
  display: flex; flex-direction: column; justify-content: center;
  padding: 0 3rem;
  position: relative; overflow: hidden;
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(200,184,154,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200,184,154,0.025) 1px, transparent 1px);
  background-size: 70px 70px;
  pointer-events: none;
  animation: gridShift 20s linear infinite;
}
@keyframes gridShift {
  from { background-position: 0 0; }
  to { background-position: 70px 70px; }
}
.hero-vignette {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 80% at 50% 50%, transparent 30%, var(--black) 100%);
  pointer-events: none;
}
.hero-logo-bg {
  position: absolute; right: -8%; top: 50%;
  transform: translateY(-50%);
  width: 52vw; max-width: 750px;
  opacity: 0.04; pointer-events: none;
  mix-blend-mode: screen;
  animation: bgLogoFloat 18s ease-in-out infinite;
}
@keyframes bgLogoFloat {
  0%,100% { transform: translateY(-50%) scale(1) rotate(0deg); }
  50% { transform: translateY(-52%) scale(1.02) rotate(1deg); }
}
.hero-content { position: relative; z-index: 2; max-width: 1100px; }
.hero-eyebrow {
  font-family: var(--font-m); font-size: .65rem;
  letter-spacing: .3em; color: var(--accent);
  text-transform: uppercase; margin-bottom: 1.5rem;
  opacity: 0; animation: fadeUp .8s ease .2s forwards;
}
.hero-title {
  font-family: var(--font-d);
  font-size: clamp(5rem, 15vw, 15rem);
  line-height: .86; letter-spacing: -.01em;
  color: var(--white);
  opacity: 0; animation: fadeUp 1s ease .4s forwards;
}
.hero-title .outline {
  -webkit-text-stroke: 1px rgba(242,237,228,0.25);
  color: transparent;
}
.hero-tagline {
  margin-top: 2.5rem;
  font-family: var(--font-m); font-size: .95rem;
  letter-spacing: .12em; color: rgba(200,184,154,0.7);
  opacity: 0; animation: fadeUp .8s ease .8s forwards;
}
.hero-tagline strong { color: var(--white); font-weight: 700; }
.hero-scroll {
  position: absolute; bottom: 3rem; left: 3rem;
  font-family: var(--font-m); font-size: .6rem;
  letter-spacing: .25em; color: var(--muted);
  text-transform: uppercase;
  display: flex; align-items: center; gap: 1rem;
  opacity: 0; animation: fadeUp .8s ease 1.2s forwards;
}
.hero-scroll::before {
  content: ''; display: block;
  width: 36px; height: 1px; background: var(--muted);
}
.hero-year {
  position: absolute; bottom: 3rem; right: 3rem;
  font-family: var(--font-d); font-size: 5rem;
  color: rgba(200,184,154,0.04); pointer-events: none;
  line-height: 1;
  opacity: 0; animation: fadeUp .8s ease 1s forwards;
}

/* MARQUEE */
.marquee-section {
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
  overflow: hidden; padding: 1rem 0;
  background: var(--glass-highlight);
  position: relative; z-index: 2;
}
.marquee-track {
  display: flex; gap: 0;
  animation: marquee 25s linear infinite;
  width: max-content;
}
.marquee-item {
  font-family: var(--font-d); font-size: .95rem;
  letter-spacing: .2em; color: rgba(200,184,154,0.5);
  white-space: nowrap; padding: 0 2.5rem;
  display: flex; align-items: center; gap: 2.5rem;
}
.marquee-item::after { content: '◆'; color: rgba(200,184,154,0.25); font-size: .4rem; }

/* SECTION BASE */
.section { padding: var(--space-section) 3rem; max-width: 1200px; margin: 0 auto; }
.section-label {
  font-family: var(--font-m); font-size: .6rem;
  letter-spacing: .3em; color: var(--accent);
  text-transform: uppercase; margin-bottom: 3rem;
  display: flex; align-items: center; gap: 1rem;
}
.section-label::before {
  content: ''; display: block;
  width: 28px; height: 1px; background: var(--accent);
}

/* GLASS UTILITY */
.glass {
  background: var(--glass-bg);
  backdrop-filter: blur(20px) saturate(150%);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
  border: 1px solid var(--glass-border);
  border-radius: 2px;
  position: relative;
  overflow: hidden;
}
.glass::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200,184,154,0.3), transparent);
  pointer-events: none;
}

/* ABOUT */
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: start;
}
.about-title {
  font-family: var(--font-d);
  font-size: clamp(3rem, 6vw, 6rem);
  line-height: .88; color: var(--white);
}
.about-title .outline {
  -webkit-text-stroke: 1px rgba(242,237,228,0.2);
  color: transparent;
}
.about-body { padding-top: .5rem; }
.about-body p {
  font-size: .95rem; color: rgba(242,237,228,0.55);
  line-height: 1.85; margin-bottom: 1.5rem;
}
.about-body p strong { color: var(--white); font-weight: 500; }

/* PROJECTS / DIVISIONS GRID */
.projects-full { padding: 2rem 3rem 7rem; }
.projects-header { max-width: 1200px; margin: 0 auto 4rem; }
.projects-title {
  font-family: var(--font-d);
  font-size: clamp(3rem, 8vw, 8rem);
  line-height: .86; color: var(--white);
}
.projects-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
@media (min-width: 1080px) {
  /* divisions read as a clean single row on wide screens (handles 4 or 5) */
  [data-render="divisions"].projects-grid { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }
}
.projects-grid.two-col { grid-template-columns: repeat(2, 1fr); }

/* GLASS CARD (division / project) */
.project-card {
  display: block; text-decoration: none; color: inherit;
  padding: 2.5rem;
  background: rgba(255,255,255,0.025);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid rgba(200,184,154,0.1);
  border-radius: 2px;
  position: relative; overflow: hidden;
  transition: transform .4s cubic-bezier(.25,.46,.45,.94),
              border-color .4s, background .4s;
  cursor: none;
}
.project-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200,184,154,0.5), transparent);
  transform: scaleX(0); transform-origin: left;
  transition: transform .5s ease;
}
.project-card::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at var(--mx,50%) var(--my,50%), rgba(200,184,154,0.04) 0%, transparent 60%);
  opacity: 0; transition: opacity .3s;
  pointer-events: none;
}
.project-card:hover, .project-card:focus-visible {
  transform: translateY(-6px);
  border-color: rgba(200,184,154,0.25);
  background: rgba(255,255,255,0.04);
}
.project-card:hover::before, .project-card:focus-visible::before { transform: scaleX(1); }
.project-card:hover::after { opacity: 1; }
.project-card.is-soon { opacity: .72; }

.project-tag {
  font-family: var(--font-m); font-size: .58rem;
  letter-spacing: .2em; color: var(--accent);
  text-transform: uppercase; margin-bottom: 2rem;
}
.project-soon {
  display: inline-block; margin-top: 1.5rem;
  font-family: var(--font-m); font-size: .56rem; letter-spacing: .18em;
  text-transform: uppercase; color: rgba(242,237,228,0.5);
  border: 1px solid var(--glass-border); border-radius: 20px; padding: .4rem .9rem;
}
.project-number {
  font-family: var(--font-d); font-size: 5rem;
  color: rgba(242,237,228,0.04); line-height: 1;
  margin-bottom: .25rem;
}
.project-name {
  font-family: var(--font-d); font-size: 3rem;
  color: var(--white); line-height: 1; margin-bottom: 1.25rem;
}
.project-desc {
  font-size: .82rem; color: rgba(242,237,228,0.45);
  line-height: 1.8; margin-bottom: 2rem;
}
.project-status {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--font-m); font-size: .58rem;
  letter-spacing: .15em; text-transform: uppercase;
}
.dot { width: 5px; height: 5px; border-radius: 50%; }
.dot-green { background: #4ade80; animation: pulse 2s infinite; }
.dot-yellow { background: #facc15; }
.dot-gray { background: var(--muted); }
.status-green { color: #4ade80; }
.status-yellow { color: #facc15; }
.status-gray { color: var(--muted); }

/* ============================================================
   DIVISION CARD — premium, instantly legible per-world tile
   ============================================================ */
.division-card {
  display: flex; flex-direction: column;
  text-decoration: none; color: inherit;
  padding: 3rem 2.75rem 2.5rem;
  min-height: 360px;
  background:
    radial-gradient(120% 90% at 50% 0%, rgba(200,184,154,0.05), transparent 60%),
    rgba(255,255,255,0.022);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid rgba(200,184,154,0.1);
  border-radius: 4px;
  position: relative; overflow: hidden;
  cursor: none;
  transition: transform .45s cubic-bezier(.25,.46,.45,.94),
              border-color .45s, background .45s, box-shadow .45s;
}
/* top metallic hairline that fills in on hover */
.division-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: var(--metal);
  transform: scaleX(0); transform-origin: left;
  transition: transform .55s ease;
  z-index: 3;
}
.division-card:hover, .division-card:focus-visible {
  transform: translateY(-8px);
  border-color: rgba(200,184,154,0.32);
  background:
    radial-gradient(120% 90% at 50% 0%, rgba(200,184,154,0.09), transparent 60%),
    rgba(255,255,255,0.05);
  box-shadow: 0 24px 60px -28px rgba(0,0,0,0.8),
              0 0 0 1px rgba(200,184,154,0.04);
}
.division-card:hover::before, .division-card:focus-visible::before { transform: scaleX(1); }
.division-card.is-soon { opacity: .78; }
.division-card.is-active { border-color: rgba(200,184,154,0.22); }
.division-card.is-active::after {
  content: '';
  position: absolute; inset: 0;
  border-radius: 4px;
  box-shadow: inset 0 0 60px -30px rgba(200,184,154,0.5);
  pointer-events: none;
}

.division-number {
  position: absolute; top: 1.6rem; right: 1.9rem;
  font-family: var(--font-d); font-size: 2.4rem; line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(200,184,154,0.18);
  letter-spacing: .02em;
}
.division-glyph {
  width: 46px; height: 46px; color: var(--accent);
  margin-bottom: 2.25rem; opacity: .9;
  transition: transform .45s ease, color .45s ease;
}
.division-glyph svg { width: 100%; height: 100%; display: block; }
.division-card:hover .division-glyph { transform: translateY(-2px) scale(1.06); color: var(--accent-hi); }
.division-name {
  font-family: var(--font-d); font-size: 2.9rem;
  line-height: 1; margin-bottom: 1rem; letter-spacing: .01em;
  overflow: hidden; white-space: nowrap;
}
.division-name-inner { display: inline-block; will-change: transform; }
/* Names too long for the card auto-scroll back and forth so they read in full */
.division-card.name-scroll .division-name-inner {
  animation: nameScroll 6s cubic-bezier(.45,0,.55,1) 1.2s infinite alternate;
}
@keyframes nameScroll {
  0%, 18%   { transform: translateX(0); }
  82%, 100% { transform: translateX(var(--name-shift, 0)); }
}
.division-tagline {
  font-size: .85rem; color: rgba(242,237,228,0.5);
  line-height: 1.75; margin-bottom: auto;
  max-width: 24ch;
}
.division-foot {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 2.5rem; padding-top: 1.5rem;
  border-top: 1px solid rgba(200,184,154,0.08);
}
.division-status {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: var(--font-m); font-size: .58rem;
  letter-spacing: .18em; text-transform: uppercase;
}
.division-arrow {
  width: 22px; height: 22px; color: var(--accent);
  transform: translateX(-4px); opacity: .55;
  transition: transform .45s cubic-bezier(.25,.46,.45,.94), opacity .45s;
}
.division-arrow svg { width: 100%; height: 100%; display: block; }
.division-card.is-soon .division-arrow { display: none; }
.division-card:hover .division-arrow { transform: translateX(2px); opacity: 1; }

/* App links inside a card */
.card-links {
  display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1.5rem;
}
.card-link {
  font-family: var(--font-m); font-size: .58rem; letter-spacing: .12em;
  text-transform: uppercase; text-decoration: none;
  color: var(--accent); border: 1px solid var(--glass-border);
  padding: .45rem .8rem; border-radius: 2px;
  transition: color .2s, border-color .2s, background .2s;
}
.card-link:hover, .card-link:focus-visible {
  color: var(--black); background: var(--metal); border-color: var(--accent-hi);
}

/* PAGE HEADER (interior pages) */
.page-head {
  padding: 12rem 3rem 4rem;
  max-width: 1200px; margin: 0 auto;
}
.page-eyebrow {
  font-family: var(--font-m); font-size: .62rem; letter-spacing: .3em;
  color: var(--accent); text-transform: uppercase; margin-bottom: 1.25rem;
  display: flex; align-items: center; gap: 1rem;
}
.page-eyebrow::before { content:''; width:28px; height:1px; background:var(--accent); }
.page-title {
  font-family: var(--font-d);
  font-size: clamp(3rem, 9vw, 8rem);
  line-height: .86; color: var(--white);
}
.page-title .outline { -webkit-text-stroke:1px rgba(242,237,228,0.18); color:transparent; }
/* Metallic interior-page titles (outline lines opt out, keep their stroke) */
.page-title, .soon-title {
  background: var(--metal); background-size: 220% 220%;
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  animation: metalShift 9s ease-in-out infinite;
}
.page-title .outline, .soon-title .outline {
  background: none; -webkit-text-fill-color: transparent;
}
.page-intro {
  margin-top: 1.5rem; max-width: 640px;
  font-size: .95rem; color: rgba(242,237,228,0.55); line-height: 1.85;
}

/* COMING SOON block */
.soon-wrap { max-width: 1200px; margin: 0 auto; padding: 0 3rem 8rem; }
.soon-card {
  text-align: center; padding: 6rem 2rem;
  border: 1px solid var(--glass-border);
  background: rgba(255,255,255,0.02);
  border-radius: 2px; position: relative; overflow: hidden;
}
.soon-card::before {
  content:''; position:absolute; top:0; left:0; right:0; height:1px;
  background: linear-gradient(90deg, transparent, rgba(200,184,154,0.3), transparent);
}
.soon-badge {
  display: inline-block; font-family: var(--font-m); font-size: .6rem;
  letter-spacing: .25em; text-transform: uppercase; color: var(--accent);
  border: 1px solid var(--glass-border); padding: .4rem .9rem; border-radius: 2px;
  margin-bottom: 1.5rem;
}
.soon-title {
  font-family: var(--font-d); font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: .9; color: var(--white); margin-bottom: 1rem;
}
.soon-text { color: rgba(242,237,228,0.5); font-size: .9rem; line-height: 1.8; max-width: 520px; margin: 0 auto; }

/* ============================================================
   NEWS — studio updates (data-driven, data/news.js)
   ============================================================ */
.achievements-section { padding: 2rem 3rem 0; max-width: 1200px; margin: 0 auto; }
.ach-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin-top: 3rem; }
.ach-card {
  padding: 2.2rem 1.6rem; background: rgba(255,255,255,0.022);
  border: 1px solid rgba(200,184,154,0.1); border-radius: 4px; text-align: center;
  transition: border-color .4s, background .4s, transform .4s;
}
.ach-card:hover { border-color: rgba(200,184,154,0.28); background: rgba(255,255,255,0.04); transform: translateY(-5px); }
.ach-stat {
  font-family: var(--font-d); font-size: 2.6rem; line-height: 1; letter-spacing: .02em;
  background: var(--metal); -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; margin-bottom: .6rem;
}
.ach-label {
  font-family: var(--font-m); font-size: .62rem; letter-spacing: .18em;
  text-transform: uppercase; color: var(--accent); margin-bottom: .7rem;
}
.ach-desc { font-size: .82rem; line-height: 1.6; color: rgba(242,237,228,0.5); }
@media (max-width: 980px) { .ach-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .ach-grid { grid-template-columns: 1fr; } }

.news-section { padding: 2rem 3rem var(--space-section); max-width: 1200px; margin: 0 auto; }
.news-header { margin-bottom: 4rem; }
.news-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
}
.news-card {
  display: flex; flex-direction: column;
  padding: 2.25rem 2rem;
  background: rgba(255,255,255,0.022);
  border: 1px solid rgba(200,184,154,0.1);
  border-radius: 4px; position: relative; overflow: hidden;
  transition: border-color .4s, background .4s, transform .4s;
}
.news-card:hover { border-color: rgba(200,184,154,0.24); background: rgba(255,255,255,0.04); transform: translateY(-4px); }
.news-meta { display: flex; align-items: center; gap: .7rem; margin-bottom: 1rem; }
.news-tag {
  font-family: var(--font-m); font-size: .52rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--black); background: var(--metal); border-radius: 20px; padding: .2rem .6rem; font-weight: 700;
}
.news-date {
  font-family: var(--font-m); font-size: .58rem; letter-spacing: .2em;
  text-transform: uppercase; color: var(--accent);
}
.news-title {
  font-family: var(--font-d); font-size: 1.8rem; line-height: 1.05;
  color: var(--white); margin-bottom: .9rem; letter-spacing: .01em;
}
.news-body {
  font-size: .85rem; color: rgba(242,237,228,0.5); line-height: 1.75;
  margin-bottom: 1.5rem;
}
.news-card .card-link { align-self: flex-start; margin-top: auto; }
.news-empty {
  grid-column: 1 / -1; text-align: center;
  padding: 4rem 1rem; color: rgba(242,237,228,0.4);
  font-family: var(--font-m); font-size: .8rem; letter-spacing: .08em;
  border: 1px dashed rgba(200,184,154,0.16); border-radius: 4px;
}

/* ============================================================
   APPAREL — Printful product cards (data/apparel-products.js)
   ============================================================ */
.apparel-sections { max-width: 1200px; margin: 0 auto; }
/* Category filter chips */
.apparel-filters { display: flex; flex-wrap: wrap; gap: .6rem; margin-bottom: 3rem; }
.apparel-chip {
  font-family: var(--font-m); font-size: .6rem; letter-spacing: .15em; text-transform: uppercase;
  color: var(--accent); background: transparent; cursor: none;
  border: 1px solid var(--glass-border); border-radius: 2px; padding: .55rem 1rem;
  transition: color .2s, background .2s, border-color .2s;
}
.apparel-chip:hover { color: var(--white); border-color: rgba(200,184,154,0.3); }
.apparel-chip[aria-pressed="true"] { color: var(--black); background: var(--metal); border-color: var(--accent-hi); }

/* Checkout modal */
.shop-modal {
  position: fixed; inset: 0; z-index: 2000;
  display: none; align-items: center; justify-content: center;
  background: rgba(8,8,8,0.78); backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px); padding: 1.5rem;
}
.shop-modal.open { display: flex; align-items: flex-start; padding-top: max(1.25rem, 4vh); }
.shop-modal-card {
  width: 100%; max-width: 420px; max-height: min(88vh, 640px); overflow-y: auto;
  position: relative; -webkit-overflow-scrolling: touch;
  background: #0d0d0d; border: 1px solid rgba(200,184,154,0.18);
  border-radius: 4px; padding: 2.5rem 2rem 2rem;
}
.shop-modal-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: var(--metal);
}
.shop-modal-close {
  position: absolute; top: .6rem; right: .8rem;
  background: transparent; border: 0; color: var(--accent);
  font-size: 1.5rem; line-height: 1; cursor: none;
}
.shop-modal-title { font-family: var(--font-d); font-size: 1.8rem; line-height: 1.05; margin-bottom: .25rem; color: var(--white); }
.shop-modal-price { font-family: var(--font-m); font-size: .8rem; color: var(--accent); margin-bottom: 1.5rem; }
.shop-field { display: block; margin-bottom: 1rem; }
.shop-field > span {
  display: block; font-family: var(--font-m); font-size: .58rem; letter-spacing: .18em;
  text-transform: uppercase; color: rgba(242,237,228,0.5); margin-bottom: .4rem;
}
.shop-field select, .shop-field input {
  width: 100%; background: rgba(8,8,8,0.6); color: var(--white);
  border: 1px solid var(--glass-border); border-radius: 2px; padding: .6rem .7rem;
  font-family: var(--font-m); font-size: .78rem; cursor: none;
}
.shop-field select:focus-visible, .shop-field input:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
.shop-modal-note { font-size: .72rem; color: rgba(242,237,228,0.45); line-height: 1.6; margin: .5rem 0 1.25rem; }
.shop-zip-row > span {
  display: block; font-family: var(--font-m); font-size: .58rem; letter-spacing: .18em;
  text-transform: uppercase; color: rgba(242,237,228,0.5); margin-bottom: .4rem;
}
.shop-zip-inputs { display: flex; gap: .5rem; align-items: stretch; }
.shop-zip-inputs .m-zip { flex: 1; min-width: 0; }
.shop-geo-btn {
  flex: 0 0 auto; width: 2.65rem; padding: 0;
  background: rgba(8,8,8,0.6); color: var(--accent-hi);
  border: 1px solid var(--glass-border); border-radius: 2px;
  font-size: 1rem; line-height: 1; cursor: none;
  transition: border-color .2s, background .2s, color .2s;
}
.shop-geo-btn:hover:not(:disabled) { border-color: rgba(200,184,154,0.35); background: rgba(255,255,255,0.04); }
.shop-geo-btn:disabled { opacity: .45; }
.shop-quote {
  margin: .25rem 0 1rem; padding: .85rem .9rem;
  border: 1px solid rgba(200,184,154,0.14); border-radius: 2px;
  background: rgba(255,255,255,0.02);
}
.shop-quote-row {
  display: flex; justify-content: space-between; align-items: baseline; gap: 1rem;
  font-size: .72rem; color: rgba(242,237,228,0.55); margin-bottom: .35rem;
}
.shop-quote-row:last-child { margin-bottom: 0; }
.shop-quote-row strong { font-family: var(--font-m); font-size: .78rem; color: var(--white); font-weight: 400; text-align: right; }
.shop-quote-total { margin-top: .55rem; padding-top: .55rem; border-top: 1px solid rgba(200,184,154,0.12); }
.shop-quote-total span { color: var(--accent); letter-spacing: .08em; text-transform: uppercase; font-size: .62rem; }
.shop-quote-total strong { color: var(--accent-hi); font-size: .92rem; }
.shop-checkout-banner {
  max-width: 720px; margin: 0 auto 2rem; padding: 1rem 1.25rem;
  border: 1px solid rgba(200,184,154,0.2); border-radius: 4px;
  background: rgba(255,255,255,0.03);
}
.shop-checkout-banner.is-success { border-color: rgba(200,184,154,0.35); }
.shop-checkout-banner.is-canceled { border-color: rgba(240,138,138,0.25); }
.shop-checkout-banner-title {
  display: block; font-family: var(--font-m); font-size: .68rem;
  letter-spacing: .2em; text-transform: uppercase; color: var(--accent-hi); margin-bottom: .35rem;
}
.shop-checkout-banner p { margin: 0; font-size: .82rem; color: rgba(242,237,228,0.62); line-height: 1.55; }
.shop-modal-go { display: block; width: 100%; text-align: center; }
.shop-modal-err { color: #f08a8a; font-size: .75rem; margin-top: .8rem; }

/* Bold (Colombia) payment option */
.shop-pay-or {
  display: flex; align-items: center; gap: .8rem;
  margin: 1rem 0 .9rem; font-family: var(--font-m); font-size: .56rem;
  letter-spacing: .18em; text-transform: uppercase; color: rgba(242,237,228,0.4);
}
.shop-pay-or::before, .shop-pay-or::after {
  content: ''; flex: 1; height: 1px; background: var(--glass-border);
}
.shop-modal-bold { display: block; width: 100%; text-align: center; }
.shop-bold-fields {
  margin-top: 1.25rem; padding-top: 1.25rem; border-top: 1px solid var(--glass-border);
}
.shop-bold-intro { font-size: .72rem; color: rgba(242,237,228,0.5); line-height: 1.6; margin: 0 0 1rem; }
.shop-bold-cop {
  font-family: var(--font-d); font-size: 1.2rem; color: var(--accent-hi, #efe3c8);
  margin: .25rem 0 1rem; letter-spacing: .02em;
}
.shop-bold-go { display: block; width: 100%; text-align: center; }
.shop-bold-mount { margin-top: 1rem; min-height: 0; }
.shop-bold-mount:not(:empty) { margin-top: 1.25rem; }
.apparel-collection { margin-bottom: 6rem; }
.apparel-collection:last-child { margin-bottom: 0; }
.apparel-collection-title {
  font-family: var(--font-d); font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 1; letter-spacing: .01em; margin-bottom: 2.5rem;
}
.apparel-cat { margin-bottom: 3rem; }
.apparel-cat:last-child { margin-bottom: 0; }
.apparel-cat-title {
  font-family: var(--font-m); font-size: .62rem; letter-spacing: .28em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 1.5rem;
  display: flex; align-items: center; gap: 1rem;
}
.apparel-cat-title::before { content: ''; width: 26px; height: 1px; background: var(--accent); }
.apparel-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
}
.apparel-card {
  display: flex; flex-direction: column;
  text-decoration: none; color: inherit;
  background: rgba(255,255,255,0.022);
  border: 1px solid rgba(200,184,154,0.1);
  border-radius: 4px; overflow: hidden;
  transition: border-color .4s, background .4s, transform .4s, box-shadow .4s;
}
.apparel-card:hover {
  border-color: rgba(200,184,154,0.28); background: rgba(255,255,255,0.045);
  transform: translateY(-6px);
  box-shadow: 0 24px 60px -30px rgba(0,0,0,0.8);
}
.apparel-media {
  position: relative; aspect-ratio: 1 / 1; overflow: hidden;
  background: var(--black-soft);
  border-bottom: 1px solid rgba(200,184,154,0.08);
}
.apparel-track {
  display: flex; height: 100%;
  transition: transform .55s cubic-bezier(.25,.46,.45,.94);
}
.apparel-track img {
  flex: 0 0 100%; width: 100%; height: 100%; object-fit: cover; display: block;
}
.apparel-dots {
  position: absolute; bottom: .7rem; left: 0; right: 0; z-index: 2;
  display: flex; justify-content: center; gap: .45rem;
}
.apparel-dot {
  width: 6px; height: 6px; border-radius: 50%; padding: 0; cursor: none;
  border: 0; background: rgba(242,237,228,0.35);
  transition: background .2s, transform .2s;
}
.apparel-dot.is-active { background: var(--accent); transform: scale(1.25); }
.apparel-media.is-empty {
  display: flex; align-items: center; justify-content: center;
  background: radial-gradient(circle at 50% 40%, rgba(200,184,154,0.06), transparent 70%), var(--black-soft);
}
.apparel-ph-logo { width: 42%; opacity: 0.16; mix-blend-mode: screen; }
.apparel-body { padding: 1.75rem 1.75rem 2rem; display: flex; flex-direction: column; flex: 1; }
.apparel-name {
  font-family: var(--font-d); font-size: 1.6rem; line-height: 1.05;
  color: var(--white); margin-bottom: .6rem; letter-spacing: .01em;
}
.apparel-price {
  font-family: var(--font-m); font-size: .85rem; color: var(--accent);
  letter-spacing: .04em; margin-bottom: 1.5rem;
}
.apparel-from {
  font-size: .58rem; letter-spacing: .18em; text-transform: uppercase;
  color: rgba(242,237,228,0.4); margin-right: .15rem;
}
.apparel-variant {
  width: 100%; margin-bottom: 1rem;
  background: rgba(8,8,8,0.6); color: var(--white);
  border: 1px solid var(--glass-border); border-radius: 2px;
  padding: .6rem .7rem; cursor: none;
  font-family: var(--font-m); font-size: .72rem; letter-spacing: .04em;
}
.apparel-variant:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
button.card-link { font-family: var(--font-m); cursor: none; background: transparent; }
button.apparel-buy:not(.is-disabled):hover { color: var(--black); background: var(--metal); border-color: var(--accent-hi); }
.apparel-buy { align-self: flex-start; margin-top: auto; }
.apparel-buy.is-disabled {
  opacity: .5; cursor: not-allowed; pointer-events: none;
  color: var(--muted); border-color: var(--glass-border);
}

/* ============================================================
   MANIFESTO — full-width metallic statement band (fills dark space)
   ============================================================ */
.manifesto {
  position: relative; z-index: 2;
  padding: 7rem 3rem;
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
  text-align: center;
  overflow: hidden;
}
.manifesto-eyebrow {
  font-family: var(--font-m); font-size: .62rem; letter-spacing: .35em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 1.75rem;
}
.manifesto-text {
  font-family: var(--font-d);
  font-size: clamp(2.8rem, 9vw, 8rem);
  line-height: .92; letter-spacing: .01em;
}
.manifesto-text .outline {
  -webkit-text-stroke: 1px rgba(242,237,228,0.22); color: transparent;
  background: none; -webkit-text-fill-color: transparent;
  display: inline-block;
}

/* Subtle floating B2B invite (home → agency) */
.own-site-cta {
  position: fixed; bottom: 1.4rem; right: 1.4rem; z-index: 450;
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--font-m); font-size: .58rem; letter-spacing: .14em; text-transform: uppercase;
  text-decoration: none; color: var(--accent);
  background: rgba(13,13,13,0.7); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border); border-radius: 30px; padding: .65rem 1.1rem;
  transition: color .25s, border-color .25s, background .25s;
  opacity: 0; animation: fadeUp .8s ease 1.6s forwards;
}
.own-site-cta::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--accent); }
.own-site-cta:hover, .own-site-cta:focus-visible { color: var(--black); background: var(--metal); border-color: var(--accent-hi); }
@media (max-width: 768px) { .own-site-cta { font-size: .54rem; padding: .55rem .9rem; bottom: 1rem; right: 1rem; } }

/* CONTACT */
.contact-section {
  border-top: 1px solid var(--glass-border);
  padding: 9rem 3rem;
  text-align: center; position: relative; overflow: hidden;
}
.contact-bg {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  font-family: var(--font-d); font-size: 22vw;
  color: rgba(200,184,154,0.025);
  white-space: nowrap; pointer-events: none; user-select: none;
  letter-spacing: -.02em;
}
.contact-inner { position: relative; z-index: 2; }
.contact-eyebrow {
  font-family: var(--font-m); font-size: .62rem;
  letter-spacing: .3em; color: var(--accent);
  text-transform: uppercase; margin-bottom: 2rem;
}
.contact-title {
  font-family: var(--font-d);
  font-size: clamp(4rem, 10vw, 10rem);
  line-height: .86; color: var(--white); margin-bottom: 3rem;
}
.contact-card {
  display: inline-block;
  padding: 2rem 4rem;
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid rgba(200,184,154,0.12);
  border-radius: 2px;
  position: relative; overflow: hidden;
  transition: border-color .3s, background .3s;
}
.contact-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200,184,154,0.4), transparent);
}
.contact-card:hover { border-color: rgba(200,184,154,0.25); }
.contact-email {
  font-family: var(--font-d); font-size: clamp(1.2rem, 2.5vw, 2.2rem);
  color: var(--white); text-decoration: none;
  letter-spacing: .05em;
  transition: color .2s;
}
.contact-email:hover { color: var(--accent); }

/* FOOTER */
footer {
  border-top: 1px solid var(--glass-border);
  padding: 2rem 3rem;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; flex-wrap: wrap;
  background: rgba(255,255,255,0.01);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.footer-left { display: flex; align-items: center; gap: 12px; }
.footer-left img { width: 22px; height: 22px; mix-blend-mode: screen; }
.footer-copy {
  font-family: var(--font-m); font-size: .6rem;
  letter-spacing: .1em; color: var(--muted);
}
.footer-links { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.footer-links a {
  font-family: var(--font-m); font-size: .6rem; letter-spacing: .12em;
  text-transform: uppercase; color: var(--accent); text-decoration: none;
  transition: color .2s;
}
.footer-links a:hover, .footer-links a:focus-visible { color: var(--white); }
.footer-tagline {
  font-family: var(--font-m); font-size: .6rem;
  letter-spacing: .22em; color: var(--muted); text-transform: uppercase;
}

/* ANIMATIONS */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@keyframes pulse {
  0%,100% { opacity: 1; box-shadow: 0 0 0 0 rgba(74,222,128,0.4); }
  50% { opacity: .7; box-shadow: 0 0 0 4px rgba(74,222,128,0); }
}

.reveal {
  opacity: 0; transform: translateY(35px);
  transition: opacity .9s ease, transform .9s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }

/* i18n visibility (legal pages embed both languages) */
[data-lang] { display: none; }
html[lang="en"] [data-lang="en"],
html[lang="es"] [data-lang="es"] { display: revert; }

/* RESPONSIVE */
@media (max-width: 768px) {
  nav { padding: 1.2rem 1.5rem; }
  .nav-links { display: none; }
  .nav-right { gap: 1rem; }
  .hero, .section { padding-left: 1.5rem; padding-right: 1.5rem; }
  .hero-logo-bg, .hero-year { display: none; }
  .hero-scroll { left: 1.5rem; }
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .projects-full, .future-section, .contact-section, .news-section { padding-left: 1.5rem; padding-right: 1.5rem; }
  .projects-grid, .projects-grid.two-col { grid-template-columns: 1fr; gap: 12px; }
  .news-grid { grid-template-columns: 1fr; gap: 12px; }
  .apparel-grid { grid-template-columns: 1fr; gap: 14px; }
  .page-head { padding: 9rem 1.5rem 3rem; }
  .soon-wrap { padding: 0 1.5rem 6rem; }
  footer { flex-direction: column; gap: 1rem; text-align: center; padding: 2rem 1.5rem; }
  body { cursor: auto; }
  .cursor, .cursor-ring { display: none; }
}

/* REDUCED MOTION — respeta la preferencia del usuario (FR-016) */
/* ============================================================
   SITE-WIDE WAVING FABRIC (index — body.has-flag-bg)
   ============================================================ */
body.has-flag-bg::after { display: none; }
body.has-flag-bg .orb { display: none; }
body.has-flag-bg .hero-grid,
body.has-flag-bg .hero-vignette,
body.has-flag-bg .hero-logo-bg { display: none; }

.site-flag-filters {
  position: fixed;
  width: 0;
  height: 0;
  overflow: hidden;
}
.site-flag-bg {
  position: fixed;
  inset: -4% -2% -4% 0;
  z-index: 0;
  pointer-events: none;
  transform-origin: 0% 50%;
  will-change: transform, filter;
}
.site-flag-bg.is-waving { filter: url(#site-flag-wave); }
.site-flag-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(200,184,154,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200,184,154,0.025) 1px, transparent 1px);
  background-size: 70px 70px;
  opacity: 0.35;
  animation: gridShift 28s linear infinite;
}
.site-flag-base {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 90% 70% at 50% 35%, rgba(200, 184, 154, 0.08), transparent 55%),
    radial-gradient(circle at 80% 20%, rgba(200, 184, 154, 0.04), transparent 40%),
    var(--black);
}
.site-flag-mark {
  position: absolute;
  right: -10vw;
  top: 50%;
  transform: translateY(-50%);
  width: min(60vw, 760px);
  opacity: 0.045;
  mix-blend-mode: screen;
  pointer-events: none;
}
@media (max-width: 768px) {
  .site-flag-mark { right: -25vw; width: 90vw; opacity: 0.04; }
}
.site-flag-sheen {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      118deg,
      transparent 32%,
      rgba(239, 227, 200, 0.04) 44%,
      rgba(239, 227, 200, 0.14) 50%,
      rgba(239, 227, 200, 0.04) 56%,
      transparent 68%
    ),
    radial-gradient(ellipse 55% 45% at 50% 34%, rgba(200, 184, 154, 0.1), transparent 62%);
  background-size: 240% 200%, 100% 100%;
  mix-blend-mode: soft-light;
  animation: siteFlagSheen 18s ease-in-out infinite;
}
@keyframes siteFlagSheen {
  0%, 100% { background-position: 0% 42%, 50% 34%; opacity: 0.55; }
  50% { background-position: 100% 58%, 52% 36%; opacity: 0.95; }
}
.site-flag-vignette {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(ellipse 80% 80% at 50% 42%, transparent 28%, rgba(8, 8, 8, 0.5) 72%, rgba(8, 8, 8, 0.88) 100%);
}

/* Non-positioned elements (paint step 3) are covered by position:fixed z-index:0
   elements (paint step 6). position:relative moves them into step 6 (DOM order),
   painting them AFTER the flag background and vignette. */
body.has-flag-bg .page-head,
body.has-flag-bg main,
body.has-flag-bg > section,
body.has-flag-bg > header,
body.has-flag-bg > footer,
body.has-flag-bg .soon-wrap { position: relative; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
  body.has-flag-bg .site-flag-bg {
    filter: none !important;
    transform: none !important;
  }
  body.has-flag-bg .site-flag-sheen,
  body.has-flag-bg .site-flag-grid { animation: none !important; }
  .orb, .hero-grid, .hero-logo-bg, .marquee-track { animation: none !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
  .hero-eyebrow, .hero-title, .hero-tagline, .hero-scroll, .hero-year { opacity: 1 !important; animation: none !important; }
  .metal-text { animation: none !important; background-position: 30% 50% !important; }
  .sheen::after { display: none !important; }
  /* No motion: let long names wrap instead of auto-scrolling */
  .division-card.name-scroll .division-name-inner { animation: none !important; transform: none !important; }
  .division-name { white-space: normal; }
}

/* ============================================================
   DIGITAL ASSETS STORE (divisions/assets.html)
   ============================================================ */
.asset-store { padding-top: 1rem; }
.asset-store-inner { max-width: 1200px; margin: 0 auto; padding: 0 3rem; }
.asset-chips { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 2rem; }
.asset-chip { font-family: var(--font-m); font-size: .6rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--accent); background: transparent; border: 1px solid var(--glass-border, rgba(200,184,154,0.16));
  border-radius: 20px; padding: .4rem .9rem; cursor: none; transition: background .3s, color .3s; }
.asset-chip.is-active { background: var(--metal); color: var(--black); border-color: transparent; }
.asset-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.asset-card { display: flex; flex-direction: column; background: rgba(255,255,255,0.022);
  border: 1px solid rgba(200,184,154,0.1); border-radius: 6px; overflow: hidden; position: relative;
  transition: border-color .4s, background .4s, transform .4s; }
.asset-card:hover { border-color: rgba(200,184,154,0.28); background: rgba(255,255,255,0.04); transform: translateY(-5px); }
.asset-media { aspect-ratio: 16 / 10; background: rgba(8,8,8,0.4); display: flex; align-items: center; justify-content: center; overflow: hidden; }
.asset-media img { width: 100%; height: 100%; object-fit: cover; }
.asset-media.is-empty::after { content: ''; width: 54px; height: 54px;
  background: url('../../logo-dark.png') center / contain no-repeat; opacity: .12; mix-blend-mode: screen; }
.asset-tag { position: absolute; top: .8rem; left: .8rem; font-family: var(--font-m); font-size: .5rem;
  letter-spacing: .16em; text-transform: uppercase; color: var(--black); background: var(--metal);
  border-radius: 20px; padding: .2rem .6rem; font-weight: 700; }
.asset-name { font-family: var(--font-d); font-size: 1.5rem; color: var(--white); letter-spacing: .01em; margin: 1.1rem 1.3rem .4rem; }
.asset-desc { font-size: .82rem; line-height: 1.6; color: rgba(242,237,228,0.5); margin: 0 1.3rem 1.2rem; flex: 1; }
.asset-foot { display: flex; align-items: center; justify-content: space-between; padding: 0 1.3rem 1.3rem; gap: .75rem; flex-wrap: wrap; }
.asset-actions { display: flex; flex-wrap: wrap; gap: .45rem; justify-content: flex-end; }
.asset-btn.is-demo { background: transparent; color: var(--accent-hi, #efe3c8); border-color: rgba(200,184,154,0.35); }
.asset-btn.is-demo:hover { background: rgba(200,184,154,0.08); }
.asset-price { font-family: var(--font-d); font-size: 1.6rem; color: var(--accent-hi, #efe3c8); }
.asset-price.is-free { color: #7cc47c; }
.asset-price.has-sale { display: flex; flex-wrap: wrap; align-items: baseline; gap: 0.35rem 0.5rem; }
.asset-price-now { color: var(--accent-hi, #efe3c8); }
.asset-price-was { font-family: var(--font-b); font-size: 0.72rem; opacity: 0.45; text-decoration: line-through; }
.asset-btn { font-family: var(--font-m); font-size: .62rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--black); background: var(--metal); border: 1px solid var(--accent-hi, #efe3c8); border-radius: 3px;
  padding: .6rem 1.1rem; text-decoration: none; cursor: none; }
.asset-btn.is-soon { background: transparent; color: rgba(242,237,228,0.4); border-color: rgba(200,184,154,0.16); cursor: default; }
@media (max-width: 900px) { .asset-grid { grid-template-columns: repeat(2, 1fr); } .asset-store-inner { padding: 0 1.5rem; } }
@media (max-width: 560px) { .asset-grid { grid-template-columns: 1fr; } }
