/* =========================================================
   Almar Enterprises — premium, animated, single-page
   ========================================================= */

:root {
  --bg-0: #07091a;
  --bg-1: #0b1130;
  --bg-2: #1a1450;
  --bg-3: #2a1a55;
  --plum: #4b1f5b;
  --gold-1: #f4d28a;
  --gold-2: #d6a85a;
  --gold-3: #8a6428;
  --ink: #ece9ff;
  --ink-mute: rgba(236,233,255,0.65);
  --ink-faint: rgba(236,233,255,0.35);
  --line: rgba(255,255,255,0.08);
  --line-strong: rgba(255,255,255,0.18);

  --psa-a: #d11919; --psa-b: #7a0d0d;
  --cgc-a: #1e63d6; --cgc-b: #0a2f73;
  --wata-a: #cf8a14; --wata-b: #6b4308;
  --almar-a: #6b46c1; --almar-b: #2e1a52;

  --max: 1240px;
  --pad: clamp(20px, 4vw, 56px);

  --t-display: clamp(48px, 12vw, 168px);
  --t-h2: clamp(32px, 4.6vw, 64px);
  --t-h3: clamp(20px, 1.6vw, 24px);
  --t-body: clamp(15px, 1.06vw, 17px);

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

* { box-sizing: border-box; }

html, body { margin: 0; padding: 0; }

html {
  background: var(--bg-0);
  color: var(--ink);
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* focus-visible — clear, premium ring */
:focus { outline: none; }
:focus-visible {
  outline: 2px solid var(--gold-1);
  outline-offset: 3px;
  border-radius: 4px;
}
.btn:focus-visible, .copy-btn:focus-visible, .car-nav:focus-visible {
  outline-offset: 4px;
}

body {
  min-height: 100vh;
  overflow-x: hidden;
  background:
    radial-gradient(1200px 800px at 80% -10%, rgba(106,70,193,0.22), transparent 60%),
    radial-gradient(900px 700px at 0% 30%, rgba(214,168,90,0.10), transparent 60%),
    linear-gradient(180deg, var(--bg-0), #050714 100%);
}

a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }

/* ----- canvas particle layer ----- */
#particles {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.55;
}

/* ----- header ----- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px var(--pad);
  transition: background .4s var(--ease), backdrop-filter .4s var(--ease), border-color .4s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.is-stuck {
  background: rgba(7,9,26,0.55);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
}

.brand { display: flex; align-items: center; gap: 12px; font-family: 'Fraunces', Georgia, serif; }
.brand-mark {
  display: inline-grid; place-items: center;
  width: 36px; height: 36px; border-radius: 10px;
  background: linear-gradient(160deg, var(--gold-1), var(--gold-2) 55%, var(--gold-3));
  color: #1a1450;
  font-weight: 800;
  font-family: 'Fraunces', serif;
  box-shadow: 0 8px 24px -10px rgba(214,168,90,0.55), inset 0 1px 0 rgba(255,255,255,0.4);
}
.brand-name { font-size: 17px; letter-spacing: 0.2px; font-weight: 500; }

.nav-links { display: flex; gap: clamp(14px, 2.4vw, 36px); }
.nav-links a {
  position: relative;
  font-size: 14px;
  letter-spacing: 0.04em;
  color: var(--ink-mute);
  padding: 6px 0;
  transition: color .25s var(--ease);
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0;
  height: 1px; background: linear-gradient(90deg, var(--gold-2), transparent);
  transform: scaleX(0); transform-origin: left;
  transition: transform .35s var(--ease);
}
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { transform: scaleX(1); }

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  padding: 0;
  border-radius: 12px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line-strong);
  color: var(--ink);
  cursor: pointer;
  align-items: center;
  justify-content: center;
}
.nav-toggle svg { width: 20px; height: 20px; }
.nav-toggle .ico-close { display: none; }
.nav.is-open .nav-toggle .ico-open  { display: none; }
.nav.is-open .nav-toggle .ico-close { display: block; }

@media (max-width: 720px) {
  .nav-toggle { display: inline-flex; }
  .nav-links {
    position: absolute;
    top: 72px; left: 16px; right: 16px;
    flex-direction: column;
    gap: 6px;
    padding: 18px 22px;
    background: rgba(7,9,26,0.92);
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: 0 30px 80px -20px rgba(0,0,0,0.7);
    transform: translateY(-6px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s var(--ease), transform .25s var(--ease);
  }
  .nav-links a { padding: 10px 0; font-size: 15px; }
  .nav.is-open .nav-links {
    opacity: 1; transform: translateY(0); pointer-events: auto;
  }
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
  gap: 4vw;
  padding: clamp(120px, 14vh, 180px) var(--pad) clamp(60px, 10vh, 120px);
  isolation: isolate;
  z-index: 1;
}

.hero-bg {
  position: absolute; inset: -10%;
  z-index: -1;
  background:
    radial-gradient(40% 50% at 20% 20%, rgba(75,31,91,0.55), transparent 60%),
    radial-gradient(35% 40% at 80% 30%, rgba(106,70,193,0.45), transparent 60%),
    radial-gradient(45% 55% at 60% 80%, rgba(214,168,90,0.18), transparent 60%),
    linear-gradient(180deg, #060819, #0b1130 60%, #050714);
  background-size: 200% 200%;
  animation: drift 30s ease-in-out infinite alternate;
  filter: saturate(1.15);
}
@keyframes drift {
  0%   { background-position: 0% 0%, 100% 0%, 50% 100%, 0 0; }
  100% { background-position: 100% 100%, 0% 100%, 0% 0%, 0 0; }
}

.kicker {
  font-size: 12px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink-mute);
  display: inline-flex; align-items: center; gap: 10px;
  margin: 0 0 28px;
}
.dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold-2);
  box-shadow: 0 0 0 0 rgba(214,168,90,0.7);
  animation: livepulse 2s ease-out infinite;
}
@keyframes livepulse {
  0%   { box-shadow: 0 0 0 0 rgba(214,168,90,0.7); }
  70%  { box-shadow: 0 0 0 12px rgba(214,168,90,0); }
  100% { box-shadow: 0 0 0 0 rgba(214,168,90,0); }
}

.display {
  font-family: 'Fraunces', Georgia, serif;
  font-size: var(--t-display);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 0.88;
  margin: 0;
  display: flex;
  background: linear-gradient(180deg, #fff 0%, #cfc6f7 55%, #8a6428 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.display .word {
  display: inline-block;
  transform: translateY(110%);
  opacity: 0;
}

.hero-tagline {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(20px, 2.4vw, 30px);
  margin: 22px 0 14px;
  color: var(--ink);
  letter-spacing: -0.01em;
  opacity: 0; transform: translateY(20px);
  animation: rise 1s var(--ease) 0.7s forwards;
}
.hero-tagline em {
  background: linear-gradient(90deg, var(--gold-1), var(--gold-2));
  -webkit-background-clip: text; background-clip: text; color: transparent;
  font-style: italic;
}

.hero-sub {
  max-width: 52ch;
  color: var(--ink-mute);
  font-size: var(--t-body);
  margin: 0 0 32px;
  opacity: 0; transform: translateY(20px);
  animation: rise 1s var(--ease) 0.9s forwards;
}
@keyframes rise { to { opacity: 1; transform: translateY(0); } }

.cta-row { display: flex; gap: 14px; flex-wrap: wrap; opacity: 0; animation: rise 1s var(--ease) 1.1s forwards; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  border: 1px solid var(--line-strong);
  transition: transform .3s var(--ease), background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease);
  will-change: transform;
}
.btn-primary {
  background: linear-gradient(140deg, var(--gold-1), var(--gold-2) 60%, var(--gold-3));
  color: #1a1450;
  border-color: rgba(244,210,138,0.6);
  box-shadow: 0 14px 40px -16px rgba(214,168,90,0.55);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 22px 60px -22px rgba(214,168,90,0.7); }
.btn-ghost { color: var(--ink); }
.btn-ghost:hover { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.32); transform: translateY(-2px); }

/* hero stage with floating slabs */
.hero-stage {
  position: relative;
  height: clamp(380px, 60vh, 580px);
  perspective: 1400px;
  transform-style: preserve-3d;
}
.slab {
  position: absolute;
  width: clamp(180px, 24vw, 260px);
  aspect-ratio: 280 / 400;
  border-radius: 16px;
  transform-style: preserve-3d;
  transition: transform .9s var(--ease);
  filter: drop-shadow(0 30px 60px rgba(0,0,0,0.55));
  --rx: 0deg; --ry: 0deg;
}
.slab--a { top: 4%;  left: 8%;  z-index: 3; animation: floaty 7s ease-in-out infinite alternate; }
.slab--b { top: 30%; left: 38%; z-index: 4; animation: floaty 9s ease-in-out -2s infinite alternate; }
.slab--c { top: 12%; left: 64%; z-index: 2; animation: floaty 11s ease-in-out -4s infinite alternate; }
@keyframes floaty {
  from { transform: translateY(0) rotate(-3deg); }
  to   { transform: translateY(-22px) rotate(3deg); }
}
.slab.tilt {
  transform: perspective(1100px) rotateX(var(--rx)) rotateY(var(--ry));
  transition: transform .15s var(--ease);
  animation: none;
}

.scroll-cue {
  position: absolute;
  bottom: 28px; left: 50%;
  transform: translateX(-50%);
  color: var(--ink-faint);
  display: grid; place-items: center;
  width: 32px; height: 50px;
}
.cue-dot { animation: cuedot 2s var(--ease) infinite; }
@keyframes cuedot {
  0% { transform: translateY(0); opacity: 1; }
  60% { transform: translateY(14px); opacity: 0; }
  100% { transform: translateY(0); opacity: 0; }
}

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; }
  .hero-stage { height: 420px; order: 2; max-width: 560px; margin: 0 auto; width: 100%; }
  .slab { width: clamp(140px, 32vw, 200px); }
  .slab--a { left: 0%; }
  .slab--b { left: 32%; top: 22%; }
  .slab--c { left: 58%; }
}
@media (max-width: 520px) {
  .hero-stage { height: 360px; }
  .slab { width: clamp(120px, 30vw, 160px); }
  .slab--a { left: -2%; top: 8%; }
  .slab--b { left: 28%; top: 30%; }
  .slab--c { left: 56%; top: 16%; }
}

/* =========================================================
   MARQUEE
   ========================================================= */
.marquee {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(11,17,48,0.55), rgba(7,9,26,0.85));
  padding: 18px 0;
  overflow: hidden;
}
.marquee-row { overflow: hidden; }
.marquee-track {
  display: inline-flex;
  gap: 28px;
  align-items: center;
  white-space: nowrap;
  font-family: 'Fraunces', serif;
  font-size: clamp(22px, 3vw, 38px);
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.10);
  -webkit-text-stroke: 1px rgba(255,255,255,0.18);
  padding-block: 10px;
  animation: marqueeL 38s linear infinite;
  will-change: transform;
}
.marquee-track--reverse {
  animation: marqueeR 52s linear infinite;
  font-size: clamp(14px, 1.6vw, 20px);
  letter-spacing: 0.18em;
  color: rgba(214,168,90,0.45);
  -webkit-text-stroke: 0;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
}
.marquee-row--2 .marquee-track { color: rgba(214,168,90,0.45); }
@keyframes marqueeL { from { transform: translateX(0); }    to { transform: translateX(-50%); } }
@keyframes marqueeR { from { transform: translateX(-50%); } to { transform: translateX(0); } }

/* =========================================================
   SECTIONS
   ========================================================= */
.section {
  position: relative;
  z-index: 1;
  padding: clamp(80px, 12vh, 140px) var(--pad);
  max-width: var(--max);
  margin: 0 auto;
}

.section-head { max-width: 760px; margin-bottom: 56px; }
.eyebrow {
  font-size: 12px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-2);
  margin: 0 0 14px;
}
.section-head h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: var(--t-h2);
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin: 0 0 16px;
  font-weight: 500;
  background: linear-gradient(180deg, #fff 0%, #cfc6f7 80%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.lede { color: var(--ink-mute); font-size: var(--t-body); max-width: 60ch; margin: 0; }

/* =========================================================
   CATEGORIES (bento)
   ========================================================= */
.bento {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: minmax(220px, auto);
  gap: 18px;
}
.bento-tile {
  position: relative;
  grid-column: span 2;
  border-radius: 22px;
  padding: 26px;
  background:
    linear-gradient(160deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01)),
    linear-gradient(160deg, rgba(106,70,193,0.18), rgba(11,17,48,0.4));
  border: 1px solid var(--line);
  overflow: hidden;
  isolation: isolate;
  cursor: pointer;
  transition: transform .5s var(--ease), border-color .5s var(--ease), box-shadow .5s var(--ease);
}
.bento-tile.tile--lg  { grid-column: span 3; grid-row: span 2; min-height: 460px; }
.bento-tile.tile--wide { grid-column: span 3; }
.bento-tile::before {
  /* the SVG slab is injected via JS into ::after-like child */
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(420px 240px at 110% -10%, rgba(106,70,193,0.45), transparent 60%),
    radial-gradient(360px 200px at -10% 110%, rgba(214,168,90,0.18), transparent 60%);
  z-index: -1;
}
.bento-tile .slab-mount {
  position: absolute;
  right: -10%;
  top: 50%;
  transform: translateY(-50%) rotate(-6deg);
  width: 60%;
  max-width: 280px;
  pointer-events: none;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.6));
  transition: transform .6s var(--ease);
}
.bento-tile.tile--lg .slab-mount {
  width: 38%;
  right: 6%;
  top: 56%;
}
.tile-meta { position: relative; z-index: 1; display: flex; flex-direction: column; gap: 10px; max-width: 32ch; }
.tile-tag {
  align-self: flex-start;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-2);
  padding: 5px 10px;
  border: 1px solid rgba(214,168,90,0.3);
  border-radius: 999px;
  background: rgba(214,168,90,0.06);
}
.tile-meta h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: var(--t-h3);
  font-weight: 500;
  margin: 4px 0 0;
  line-height: 1.15;
}
.tile-meta p { color: var(--ink-mute); margin: 0; max-width: 28ch; }
.tile-arrow {
  margin-top: auto;
  align-self: flex-start;
  font-size: 22px;
  color: var(--gold-2);
  transition: transform .4s var(--ease);
}
.bento-tile:hover {
  transform: translateY(-4px);
  border-color: rgba(214,168,90,0.4);
  box-shadow: 0 30px 70px -30px rgba(0,0,0,0.7), 0 0 0 1px rgba(214,168,90,0.2) inset;
}
.bento-tile:hover .tile-arrow { transform: translate(6px, -6px); }
.bento-tile:hover .slab-mount { transform: translateY(-50%) rotate(-2deg) scale(1.04); }

@media (max-width: 1100px) {
  .bento { grid-template-columns: repeat(4, 1fr); grid-auto-rows: minmax(200px, auto); }
  .bento-tile { grid-column: span 2; min-height: 260px; }
  .bento-tile.tile--lg { grid-column: span 4; grid-row: auto; min-height: 320px; }
  .bento-tile.tile--wide { grid-column: span 4; min-height: 240px; }
  .bento-tile.tile--lg .slab-mount { width: 30%; }
}
@media (max-width: 640px) {
  .bento { grid-template-columns: 1fr; }
  .bento-tile, .bento-tile.tile--lg, .bento-tile.tile--wide { grid-column: span 1; min-height: 240px; }
  .bento-tile .slab-mount { width: 50%; right: -8%; }
}

/* =========================================================
   STATS / WHY
   ========================================================= */
.stats {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.stat {
  position: relative;
  border-radius: 20px;
  padding: 32px;
  background:
    radial-gradient(80% 100% at 100% 0%, rgba(214,168,90,0.18), transparent 70%),
    linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 8px;
  overflow: hidden;
  isolation: isolate;
}
.stat-badge {
  position: absolute;
  top: -28px; right: -28px;
  width: 140px; height: 140px;
  opacity: 0.55;
  animation: spin 28s linear infinite;
  z-index: -1;
}
@keyframes spin { to { transform: rotate(360deg); } }
.stat-num {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(46px, 6vw, 80px);
  line-height: 1;
  font-weight: 700;
  background: linear-gradient(180deg, #fff, var(--gold-2));
  -webkit-background-clip: text; background-clip: text; color: transparent;
  font-variant-numeric: tabular-nums;
}
.stat-label {
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 12px;
  color: var(--gold-2);
}
.stat-copy { color: var(--ink-mute); margin: 6px 0 0; font-size: 14px; }

@media (max-width: 900px) {
  .stats { grid-template-columns: 1fr; }
}

/* =========================================================
   FEATURED CAROUSEL
   ========================================================= */
.carousel {
  position: relative;
  display: grid;
  grid-template-columns: 50px 1fr 50px;
  align-items: center;
  gap: 16px;
}
.car-stage {
  position: relative;
  height: clamp(380px, 56vh, 540px);
  perspective: 1400px;
  display: grid;
  place-items: center;
}
.car-slot {
  position: absolute;
  width: clamp(220px, 26vw, 310px);
  aspect-ratio: 280 / 400;
  transition: transform .9s var(--ease), opacity .9s var(--ease), filter .9s var(--ease);
  filter: drop-shadow(0 30px 60px rgba(0,0,0,0.55));
  will-change: transform, opacity;
}
.car-slot--left   { transform: translate3d(-58%, 0, -200px) rotateY(20deg); opacity: 0.45; filter: blur(1.5px) drop-shadow(0 20px 40px rgba(0,0,0,0.5)); }
.car-slot--center { transform: translate3d(0, 0, 0) rotateY(0); opacity: 1; }
.car-slot--right  { transform: translate3d(58%, 0, -200px) rotateY(-20deg); opacity: 0.45; filter: blur(1.5px) drop-shadow(0 20px 40px rgba(0,0,0,0.5)); }

.car-nav {
  appearance: none;
  background: rgba(255,255,255,0.04);
  color: var(--ink);
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  width: 44px; height: 44px;
  font-size: 22px;
  cursor: pointer;
  transition: background .3s var(--ease), border-color .3s var(--ease), transform .3s var(--ease);
}
.car-nav:hover { background: rgba(214,168,90,0.18); border-color: rgba(214,168,90,0.5); transform: scale(1.08); }

.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;
}

.car-pause {
  position: absolute;
  bottom: -8px; right: 12px;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line-strong);
  color: var(--ink-mute);
  font-size: 12px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
}
.car-pause:hover {
  background: rgba(214,168,90,0.14);
  color: var(--gold-1);
  border-color: rgba(214,168,90,0.4);
}
.pause-ico { letter-spacing: -1px; }
.car-pause[aria-pressed="true"] .pause-ico { display: none; }
.car-pause[aria-pressed="true"] .play-ico { display: inline !important; }

.car-dots {
  grid-column: 1 / -1;
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 16px;
}
.car-dots span {
  width: 22px; height: 2px; background: rgba(255,255,255,0.18);
  transition: background .3s var(--ease), width .3s var(--ease);
}
.car-dots span.is-active { background: var(--gold-2); width: 36px; }

@media (max-width: 700px) {
  .car-slot--left,
  .car-slot--right { display: none; }
  .car-stage { height: 460px; }
}

/* =========================================================
   INQUIRE / CONTACT
   ========================================================= */
.contact-list {
  list-style: none; padding: 0; margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.contact-row {
  position: relative;
  display: grid;
  grid-template-columns: minmax(120px, max-content) 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 22px 26px;
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
  border: 1px solid var(--line);
  transition: border-color .35s var(--ease), background .35s var(--ease), transform .35s var(--ease);
}
.contact-row:hover {
  border-color: rgba(214,168,90,0.5);
  background:
    radial-gradient(80% 100% at 100% 0%, rgba(214,168,90,0.16), transparent 70%),
    linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.01));
  transform: translateY(-2px);
}
.contact-row--featured {
  grid-column: 1 / -1;
  background:
    linear-gradient(180deg, rgba(214,168,90,0.10), rgba(255,255,255,0.01));
  border-color: rgba(214,168,90,0.35);
}
.role-tag {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-mute);
  padding: 5px 10px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  display: inline-block;
  white-space: nowrap;
}
.role-tag--gold {
  color: var(--gold-1);
  border-color: rgba(214,168,90,0.5);
  background: rgba(214,168,90,0.08);
}
.contact-email {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(16px, 1.4vw, 22px);
  letter-spacing: -0.005em;
  position: relative;
  padding-bottom: 4px;
  display: inline-block;
  word-break: break-word;
  overflow-wrap: anywhere;
}
.contact-email::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--gold-1), var(--gold-2));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .5s var(--ease);
}
.contact-row:hover .contact-email { color: var(--gold-1); }
.contact-row:hover .contact-email::after { transform: scaleX(1); }

.copy-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  min-height: 44px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  background: rgba(255,255,255,0.03);
  color: var(--ink-mute);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease);
}
.copy-btn:hover { background: rgba(214,168,90,0.14); color: var(--gold-1); border-color: rgba(214,168,90,0.5); }
.copy-btn.is-copied { background: rgba(99,200,140,0.14); color: #9bf0bf; border-color: rgba(99,200,140,0.4); }
.copy-btn.is-copied .copy-label::before { content: "✓ "; }

@media (max-width: 800px) {
  .contact-list { grid-template-columns: 1fr; }
  .contact-row, .contact-row--featured { grid-template-columns: 1fr; gap: 8px; }
  .copy-btn { justify-self: flex-start; }
}

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, transparent, rgba(7,9,26,0.6));
  padding: 60px var(--pad) 80px;
  position: relative; z-index: 1;
}
.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
}
.footer-tag { color: var(--ink-mute); margin: 0; display: inline-flex; align-items: center; gap: 10px; }
.footer-tag em {
  background: linear-gradient(90deg, var(--gold-1), var(--gold-2));
  -webkit-background-clip: text; background-clip: text; color: transparent;
  font-style: italic;
}
.live-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--gold-2);
  animation: livepulse 2s ease-out infinite;
}
.footer-meta { color: var(--ink-faint); font-size: 13px; margin: 0; }

/* =========================================================
   REVEAL (scroll-in)
   ========================================================= */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }

/* =========================================================
   SLAB SVG mount + holographic sheen
   ========================================================= */
.slab-mount svg, .slab svg, .car-slot svg { width: 100%; height: 100%; display: block; }

.slab-mount, .slab, .car-slot { position: relative; }
.slab::after, .car-slot--center::after {
  content: "";
  position: absolute;
  inset: 4%;
  border-radius: 14px;
  pointer-events: none;
  background: conic-gradient(from var(--ang, 0deg),
    rgba(255,255,255,0) 0deg,
    rgba(255,255,255,0.0) 60deg,
    rgba(255,255,255,0.28) 80deg,
    rgba(170,200,255,0.18) 100deg,
    rgba(244,210,138,0.20) 120deg,
    rgba(255,255,255,0) 160deg,
    rgba(255,255,255,0) 360deg
  );
  mix-blend-mode: screen;
  opacity: 0.65;
  animation: sheen 6s linear infinite;
}
.slab-mount::after {
  content: "";
  position: absolute;
  inset: 4%;
  border-radius: 14px;
  pointer-events: none;
  background: conic-gradient(from var(--ang, 0deg),
    rgba(255,255,255,0) 0deg,
    rgba(255,255,255,0.18) 80deg,
    rgba(244,210,138,0.14) 120deg,
    rgba(255,255,255,0) 200deg,
    rgba(255,255,255,0) 360deg
  );
  mix-blend-mode: screen;
  opacity: 0.32;
  animation: sheen 9s linear infinite;
}
@property --ang { syntax: "<angle>"; initial-value: 0deg; inherits: false; }
@keyframes sheen { from { --ang: 0deg; } to { --ang: 360deg; } }

/* =========================================================
   reduced motion
   ========================================================= */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .marquee-track, .marquee-track--reverse,
  .stat-badge, .slab--a, .slab--b, .slab--c,
  .slab-mount::after, .slab::after, .car-slot::after,
  .hero-bg, .live-dot, .dot { animation: none !important; }
  #particles { display: none; }
  .display .word { transform: none; opacity: 1; }
  .reveal { opacity: 1; transform: none; }
  .hero-tagline, .hero-sub, .cta-row { opacity: 1; transform: none; animation: none; }
}
