/* ═══════════════════════════════════════════════════════════════════════
   HONEY COMB VISUALS - Style System
   Art direction: Minimal Luxe × Broadcast Test Card
   ═══════════════════════════════════════════════════════════════════════ */

/* ── Design Tokens ───────────────────────────────────────────────────── */
:root {
  /* Type scale */
  --text-xs:   clamp(0.65rem, 0.6rem + 0.2vw, 0.75rem);
  --text-sm:   clamp(0.8rem,  0.75rem + 0.25vw, 0.9rem);
  --text-base: clamp(1rem,    0.95rem + 0.25vw, 1.1rem);
  --text-lg:   clamp(1.1rem,  1rem + 0.5vw, 1.4rem);
  --text-xl:   clamp(1.5rem,  1.1rem + 1.5vw, 2.4rem);
  --text-2xl:  clamp(2.2rem,  1.2rem + 3.5vw, 4.5rem);
  --text-hero: clamp(3rem,    1rem + 7vw, 8rem);

  /* Spacing */
  --sp-1: 0.25rem; --sp-2: 0.5rem; --sp-3: 0.75rem; --sp-4: 1rem;
  --sp-6: 1.5rem;  --sp-8: 2rem;   --sp-10: 2.5rem;  --sp-12: 3rem;
  --sp-16: 4rem;   --sp-20: 5rem;  --sp-24: 6rem;    --sp-32: 8rem;

  /* Palette - Dark luxe broadcast */
  --color-bg:        #080810;
  --color-surface:   #0f0f1c;
  --color-surface-2: #14142a;
  --color-border:    #1e1e38;
  --color-text:      #e8e4d8;
  --color-text-muted:#8a8474;
  --color-text-faint:#4a4438;

  /* SMPTE color bar tones - used sparingly as accents */
  --gold:     #D4A843;
  --gold-raw:  oklch(0.72 0.14 85);
  --amber:    #F5C842;
  --bar-white:   #e8e4d8;
  --bar-yellow:  #D4C832;
  --bar-cyan:    #2AC8C8;
  --bar-green:   #2AC832;
  --bar-magenta: #C832C8;
  --bar-red:     #C83228;
  --bar-blue:    #2832C8;

  /* Transitions */
  --ease-out:  cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in:   cubic-bezier(0.4, 0, 1, 1);
  --t-ui:      180ms cubic-bezier(0.16, 1, 0.3, 1);

  /* Radius */
  --r-sm: 3px; --r-md: 6px; --r-lg: 12px;

  /* Shadows */
  --shadow-sm: 0 1px 3px oklch(0 0 0 / 0.4);
  --shadow-md: 0 6px 20px oklch(0 0 0 / 0.5);
  --shadow-glow: 0 0 32px oklch(from var(--gold-raw) l c h / 0.18);

  /* Fonts */
  --font-display: 'Instrument Serif', Georgia, serif;
  --font-body:    'Switzer', 'Helvetica Neue', sans-serif;

  /* Layout */
  --content-default: 1100px;
  --content-narrow:  680px;
}

/* ── Nav ─────────────────────────────────────────────────────────────── */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: var(--sp-4) var(--sp-8);
  background: oklch(from var(--color-bg) l c h / 0.88);
  backdrop-filter: blur(16px) saturate(1.4);
  border-bottom: 1px solid var(--color-border);
  transition: border-color var(--t-ui), background var(--t-ui);
}
.nav-logo {
  display: flex; align-items: center; gap: var(--sp-3);
  text-decoration: none; color: var(--color-text);
  font-family: var(--font-body); font-size: var(--text-sm);
  font-weight: 500; letter-spacing: 0.12em;
  transition: color var(--t-ui);
}
.nav-logo:hover { color: var(--gold); }
.logo-svg { width: 32px; height: 32px; color: var(--gold); flex-shrink: 0; }
.logo-text em { font-style: normal; color: var(--gold); }
.nav-links { display: flex; align-items: center; gap: var(--sp-8); }
.nav-links a {
  font-family: var(--font-body); font-size: var(--text-xs);
  font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase;
  text-decoration: none; color: var(--color-text-muted);
  transition: color var(--t-ui);
}
.nav-links a:hover { color: var(--color-text); }
.nav-cta {
  padding: var(--sp-2) var(--sp-6);
  border: 1px solid var(--gold) !important;
  color: var(--gold) !important;
  border-radius: var(--r-sm);
  transition: background var(--t-ui), color var(--t-ui) !important;
}
.nav-cta:hover { background: var(--gold) !important; color: var(--color-bg) !important; }

/* ── Hero ────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100dvh;
  display: flex; flex-direction: column; justify-content: center;
  padding: calc(80px + var(--sp-16)) var(--sp-8) var(--sp-16);
  overflow: hidden;
  background: var(--color-bg);
}

/* SMPTE color bars - full bleed behind, very subtle */
.test-bars {
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 28%;
  display: flex;
  opacity: 0.06;
  pointer-events: none;
}
.bar { flex: 1; }
.bar-white   { background: var(--bar-white); }
.bar-yellow  { background: var(--bar-yellow); }
.bar-cyan    { background: var(--bar-cyan); }
.bar-green   { background: var(--bar-green); }
.bar-magenta { background: var(--bar-magenta); }
.bar-red     { background: var(--bar-red); }
.bar-blue    { background: var(--bar-blue); }

/* Scanlines */
.scanlines {
  position: absolute; inset: 0; pointer-events: none; z-index: 1;
  background: repeating-linear-gradient(
    to bottom,
    transparent,
    transparent 2px,
    oklch(0 0 0 / 0.06) 2px,
    oklch(0 0 0 / 0.06) 4px
  );
}

/* Corner registration marks */
.corner-marks { position: absolute; inset: var(--sp-6); pointer-events: none; z-index: 2; }
.corner {
  position: absolute; width: 20px; height: 20px;
  border-color: oklch(from var(--gold-raw) l c h / 0.3);
  border-style: solid;
}
.corner.tl { top: 0; left: 0; border-width: 1px 0 0 1px; }
.corner.tr { top: 0; right: 0; border-width: 1px 1px 0 0; }
.corner.bl { bottom: 0; left: 0; border-width: 0 0 1px 1px; }
.corner.br { bottom: 0; right: 0; border-width: 0 1px 1px 0; }
.center-cross {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 20px; height: 20px;
}
.center-cross .ch, .center-cross .cv {
  position: absolute; background: oklch(from var(--gold-raw) l c h / 0.2);
}
.center-cross .ch { top: 50%; left: 0; right: 0; height: 1px; transform: translateY(-50%); }
.center-cross .cv { left: 50%; top: 0; bottom: 0; width: 1px; transform: translateX(-50%); }

/* Signal strip */
.signal-strip {
  position: absolute; bottom: var(--sp-6); left: var(--sp-8); right: var(--sp-8);
  display: flex; justify-content: space-between;
  font-family: var(--font-body); font-size: var(--text-xs);
  font-weight: 500; letter-spacing: 0.15em; text-transform: uppercase;
  color: oklch(from var(--gold-raw) l c h / 0.35);
  pointer-events: none; z-index: 3;
}
.signal-dot {
  display: inline-block; width: 6px; height: 6px;
  background: var(--gold); border-radius: 50%; margin-right: var(--sp-2);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

/* Hero content */
.hero-inner {
  position: relative; z-index: 4;
  max-width: var(--content-default);
  margin: 0 auto; width: 100%;
}
.hero-pre {
  font-family: var(--font-body); font-size: var(--text-xs);
  font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold); margin-bottom: var(--sp-6);
  display: flex; align-items: center; gap: var(--sp-2);
}
.hero-headline {
  font-family: var(--font-display);
  font-size: var(--text-hero);
  font-weight: 400;
  color: var(--color-text);
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin-bottom: var(--sp-8);
}
.hero-headline em {
  font-style: italic;
  color: var(--gold);
}
.hero-sub {
  font-family: var(--font-body); font-size: var(--text-lg);
  font-weight: 300; color: var(--color-text-muted);
  line-height: 1.5; margin-bottom: var(--sp-10); max-width: 54ch;
}
.hero-actions { display: flex; gap: var(--sp-4); flex-wrap: wrap; }

/* ── Buttons ─────────────────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex; align-items: center; justify-content: center;
  padding: var(--sp-3) var(--sp-8);
  background: var(--gold); color: var(--color-bg);
  font-family: var(--font-body); font-size: var(--text-sm);
  font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  text-decoration: none; border-radius: var(--r-sm);
  border: 1px solid var(--gold);
  transition: background var(--t-ui), color var(--t-ui), box-shadow var(--t-ui), transform var(--t-ui);
}
.btn-primary:hover {
  background: var(--amber); color: var(--color-bg);
  box-shadow: var(--shadow-glow);
  transform: translateY(-1px);
}
.btn-primary:active { transform: translateY(0); }
.btn-ghost {
  display: inline-flex; align-items: center; justify-content: center;
  padding: var(--sp-3) var(--sp-8);
  background: transparent; color: var(--color-text);
  font-family: var(--font-body); font-size: var(--text-sm);
  font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase;
  text-decoration: none; border-radius: var(--r-sm);
  border: 1px solid var(--color-border);
  transition: border-color var(--t-ui), color var(--t-ui), transform var(--t-ui);
}
.btn-ghost:hover { border-color: var(--color-text-muted); color: var(--gold); transform: translateY(-1px); }
.btn-full { width: 100%; margin-top: var(--sp-6); }

/* ── Marquee ─────────────────────────────────────────────────────────── */
.marquee-wrap {
  overflow: hidden; border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding: var(--sp-3) 0; background: var(--color-surface);
}
.marquee-track {
  display: flex; gap: var(--sp-8); white-space: nowrap;
  animation: marquee 28s linear infinite;
  font-family: var(--font-body); font-size: var(--text-xs);
  font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--color-text-muted);
}
.marquee-track .dot { color: var(--gold); }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── Section shared ──────────────────────────────────────────────────── */
.section-inner {
  max-width: var(--content-default);
  margin: 0 auto; padding: 0 var(--sp-8);
}
.section-label {
  font-family: var(--font-body); font-size: var(--text-xs);
  font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: var(--sp-4);
}
h2 {
  font-family: var(--font-display);
  font-size: var(--text-2xl); font-weight: 400;
  color: var(--color-text); line-height: 1.05;
  margin-bottom: var(--sp-6); letter-spacing: -0.01em;
}
h2 em { font-style: italic; color: var(--gold); }
.body-copy {
  font-family: var(--font-body); font-size: var(--text-base);
  font-weight: 300; color: var(--color-text-muted); line-height: 1.75;
  max-width: 55ch;
}

/* ── Residency ───────────────────────────────────────────────────────── */
.residency {
  padding: clamp(var(--sp-16), 10vw, var(--sp-32)) 0;
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
}
.res-text .section-inner, .res-text {
  max-width: none;
}
.residency .section-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-16);
  align-items: center;
}
.spec-grid {
  display: flex; gap: var(--sp-10); margin-top: var(--sp-10);
}
.spec { display: flex; flex-direction: column; gap: var(--sp-1); }
.spec-n {
  font-family: var(--font-display); font-size: var(--text-2xl);
  color: var(--gold); line-height: 1;
}
.spec-l {
  font-family: var(--font-body); font-size: var(--text-xs);
  font-weight: 500; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--color-text-muted);
}

/* Room diagram */
.res-visual { display: flex; align-items: center; justify-content: center; }
.room-diagram {
  position: relative; width: 100%; max-width: 420px;
  aspect-ratio: 4/3;
  border: 1px solid var(--color-border);
  background: var(--color-bg); overflow: hidden;
}
.room-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(oklch(from var(--gold-raw) l c h / 0.07) 1px, transparent 1px),
    linear-gradient(90deg, oklch(from var(--gold-raw) l c h / 0.07) 1px, transparent 1px);
  background-size: 40px 40px;
}
.room-wall {
  position: absolute; top: 10%; height: 50%;
  border: 1px solid oklch(from var(--gold-raw) l c h / 0.5);
}
.wall-l { left: 5%; width: 27%; transform: skewX(8deg); }
.wall-c { left: 34%; width: 32%; }
.wall-r { right: 5%; width: 27%; transform: skewX(-8deg); }
.room-floor {
  position: absolute; bottom: 15%; left: 5%; right: 5%; height: 1px;
  background: oklch(from var(--gold-raw) l c h / 0.2);
}
.proj-beam {
  position: absolute; bottom: 30%; height: 2px;
  background: linear-gradient(to left, oklch(from var(--gold-raw) l c h / 0.5), transparent);
  transform-origin: right center;
}
.beam-l { right: 60%; left: 5%; transform: rotate(-6deg); }
.beam-c { right: 50%; left: 35%; }
.beam-r { right: 5%; left: 50%; background: linear-gradient(to right, oklch(from var(--gold-raw) l c h / 0.5), transparent); transform: rotate(6deg); }
.room-label {
  position: absolute; bottom: var(--sp-4); left: 50%; transform: translateX(-50%);
  font-family: var(--font-body); font-size: 9px;
  font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase;
  color: oklch(from var(--gold-raw) l c h / 0.4); white-space: nowrap;
}

/* Projector dots */
.room-diagram::before {
  content: '';
  position: absolute; bottom: 28%; left: 50%; transform: translateX(-50%);
  width: 8px; height: 8px; background: var(--gold);
  border-radius: 50%; box-shadow: -80px 0 0 var(--gold), 80px 0 0 var(--gold);
  opacity: 0.7;
}

/* ── Tier disclaimer note ───────────────────────────────────────────── */
.pkg-note {
  display: block;
  margin-top: var(--sp-2);
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: oklch(from var(--gold-raw) l c h / 0.6);
  text-transform: uppercase;
}
.pkg-note-bullet {
  font-size: 10px !important;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: oklch(from var(--gold-raw) l c h / 0.55) !important;
  list-style: none;
  padding-left: 0;
  text-transform: uppercase;
}
.pkg-note-bullet::before {
  content: '* ';
  color: inherit;
}

/* ── Package Photo ───────────────────────────────────────────────────── */
.pkg-photo {
  position: relative;
  width: calc(100% + var(--sp-6) * 2);
  margin: calc(-1 * var(--sp-8)) calc(-1 * var(--sp-6)) var(--sp-4) calc(-1 * var(--sp-6));
  height: 180px;
  overflow: hidden;
  flex-shrink: 0;
}
.pkg-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: saturate(0.7) brightness(0.65);
  transition: filter 0.4s var(--ease-out), transform 0.6s var(--ease-out);
}
.pkg-card:hover .pkg-photo img {
  filter: saturate(0.9) brightness(0.75);
  transform: scale(1.03);
}
/* thin gold gradient scrim at the bottom of the photo */
.pkg-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 40%,
    oklch(from var(--gold-raw) 0.12 0.04 85 / 0.5) 100%
  );
  pointer-events: none;
}
.pkg-photo-caption {
  position: absolute;
  bottom: var(--sp-3);
  left: var(--sp-4);
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: oklch(from var(--gold-raw) l c h / 0.85);
  z-index: 1;
  white-space: nowrap;
}

/* ── Packages ────────────────────────────────────────────────────────── */
.packages {
  padding: clamp(var(--sp-16), 10vw, var(--sp-32)) 0;
  background: var(--color-bg);
  border-top: 1px solid var(--color-border);
}
.pkg-header { margin-bottom: var(--sp-12); }
.pkg-sub {
  font-family: var(--font-body); font-size: var(--text-sm);
  color: var(--color-text-muted); margin-top: var(--sp-4); font-weight: 300;
}
.pkg-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; border: 1px solid var(--color-border);
  background: var(--color-border);
}
.pkg-card {
  background: var(--color-surface); padding: var(--sp-8) var(--sp-6);
  display: flex; flex-direction: column; gap: var(--sp-4);
  position: relative; overflow: hidden;
  transition: background var(--t-ui);
}
.pkg-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--color-border);
  transition: background var(--t-ui);
}
.pkg-card[data-tier="01"]::before { background: oklch(0.72 0.12 80); }
.pkg-card[data-tier="02"]::before { background: oklch(0.66 0.14 80); }
.pkg-card[data-tier="03"]::before { background: oklch(0.60 0.14 80); }
.pkg-card[data-tier="04"]::before { background: var(--gold); }
.pkg-card:hover { background: var(--color-surface-2); }
.pkg-card-top {
  display: flex; justify-content: space-between; align-items: flex-start;
  margin-bottom: var(--sp-2);
}
.pkg-meta { display: flex; flex-direction: column; gap: var(--sp-1); }
.pkg-tier {
  font-family: var(--font-body); font-size: var(--text-xs);
  font-weight: 600; letter-spacing: 0.15em; color: var(--color-text-faint);
}
.pkg-badge {
  font-family: var(--font-body); font-size: 9px;
  font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--color-bg); background: var(--color-text-muted);
  padding: 2px 6px; border-radius: 2px;
}
.pkg-badge--gold { background: var(--gold); }
.pkg-price {
  font-family: var(--font-display); font-size: var(--text-xl);
  color: var(--gold); line-height: 1;
}
.pkg-name {
  font-family: var(--font-display); font-size: var(--text-lg);
  font-weight: 400; color: var(--color-text); line-height: 1.2;
}
.pkg-desc {
  font-family: var(--font-body); font-size: var(--text-sm);
  font-weight: 300; color: var(--color-text-muted); line-height: 1.65;
}
.pkg-bullets {
  list-style: none; padding: 0; display: flex; flex-direction: column; gap: var(--sp-2);
  flex: 1;
}
.pkg-bullets li {
  font-family: var(--font-body); font-size: var(--text-xs);
  color: var(--color-text-muted); padding-left: var(--sp-4); position: relative;
  line-height: 1.5; max-width: none;
}
.pkg-bullets li::before {
  content: '-'; position: absolute; left: 0;
  color: var(--gold); font-size: 10px;
}
.pkg-example {
  border: 1px solid var(--color-border); border-left: 2px solid var(--gold);
  padding: var(--sp-4); border-radius: var(--r-sm);
  background: oklch(from var(--gold-raw) l c h / 0.04);
}
.example-label {
  display: block; font-family: var(--font-body); font-size: 9px;
  font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: var(--sp-2);
}
.pkg-example p {
  font-family: var(--font-body); font-size: var(--text-xs);
  font-weight: 300; color: var(--color-text-muted);
  line-height: 1.6; max-width: none;
}
.pkg-ideal {
  font-family: var(--font-body); font-size: 10px;
  font-weight: 400; letter-spacing: 0.05em;
  color: var(--color-text-faint); font-style: italic;
  border-top: 1px solid var(--color-border);
  padding-top: var(--sp-4); margin-top: auto;
}

/* ── Process ─────────────────────────────────────────────────────────── */
.process {
  padding: clamp(var(--sp-16), 10vw, var(--sp-24)) 0;
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
}
.process-steps {
  margin-top: var(--sp-12); display: flex; flex-direction: column; gap: 1px;
  border: 1px solid var(--color-border); max-width: 760px;
}
.process-step {
  display: grid; grid-template-columns: 80px 1fr;
  gap: var(--sp-8); padding: var(--sp-8);
  background: var(--color-bg); align-items: start;
  transition: background var(--t-ui);
  border-bottom: 1px solid var(--color-border);
}
.process-step:last-child { border-bottom: none; }
.process-step:hover { background: var(--color-surface-2); }
.step-n {
  font-family: var(--font-display); font-size: var(--text-2xl);
  color: oklch(from var(--gold-raw) l c h / 0.25); line-height: 1;
  padding-top: 2px;
}
.step-content h3 {
  font-family: var(--font-body); font-size: var(--text-base);
  font-weight: 600; color: var(--color-text); margin-bottom: var(--sp-2);
  letter-spacing: 0.01em;
}
.step-content p {
  font-family: var(--font-body); font-size: var(--text-sm);
  font-weight: 300; color: var(--color-text-muted); line-height: 1.7;
  max-width: 52ch;
}

/* ── Contact ─────────────────────────────────────────────────────────── */
.contact {
  padding: clamp(var(--sp-16), 10vw, var(--sp-32)) 0;
  background: var(--color-bg);
  border-top: 1px solid var(--color-border);
}
.contact-bars {
  display: flex; height: 4px; margin-bottom: clamp(var(--sp-12), 5vw, var(--sp-24));
}
.contact-bars .bar { flex: 1; opacity: 0.7; }
.contact-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-16);
  align-items: start;
}
.contact-card {
  border: 1px solid var(--color-border); padding: var(--sp-8);
  border-radius: var(--r-md);
  background: var(--color-surface);
}
.contact-info { display: flex; flex-direction: column; gap: var(--sp-4); margin-bottom: var(--sp-2); }
.contact-row {
  display: flex; justify-content: space-between; align-items: baseline;
  padding-bottom: var(--sp-4); border-bottom: 1px solid var(--color-border);
  font-family: var(--font-body); font-size: var(--text-sm);
  color: var(--color-text);
}
.contact-row:last-child { border-bottom: none; }
.contact-label {
  font-size: var(--text-xs); font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--color-text-muted);
}

/* ── Footer ──────────────────────────────────────────────────────────── */
.site-footer {
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
  padding: var(--sp-10) 0;
}
.footer-inner {
  max-width: var(--content-default); margin: 0 auto;
  padding: 0 var(--sp-8);
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: var(--sp-4);
}
.footer-logo {
  display: flex; align-items: center; gap: var(--sp-3);
  text-decoration: none; color: var(--color-text-muted);
  font-family: var(--font-body); font-size: var(--text-xs);
  font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase;
  transition: color var(--t-ui);
}
.footer-logo:hover { color: var(--gold); }
.footer-copy {
  font-family: var(--font-body); font-size: var(--text-xs);
  color: var(--color-text-faint);
}
.footer-signal {
  font-family: var(--font-body); font-size: var(--text-xs);
  font-weight: 500; letter-spacing: 0.15em;
  color: oklch(from var(--gold-raw) l c h / 0.3);
}

/* ── Fade-in scroll animations ───────────────────────────────────────── */
.fade-in { opacity: 1; }
@supports (animation-timeline: scroll()) {
  .fade-in {
    opacity: 0;
    animation: fadein linear both;
    animation-timeline: view();
    animation-range: entry 0% entry 60%;
  }
  .delay-1 { animation-delay: 80ms; }
  .delay-2 { animation-delay: 160ms; }
  .delay-3 { animation-delay: 240ms; }
}
@keyframes fadein { to { opacity: 1; } }

/* Hero fade-in - pure CSS on load */
.hero .fade-in {
  animation: heroin 0.9s var(--ease-out) both;
  animation-timeline: initial;
}
.hero .delay-1 { animation-delay: 180ms; }
.hero .delay-2 { animation-delay: 360ms; }
.hero .delay-3 { animation-delay: 520ms; }
@keyframes heroin { from { opacity: 0; } to { opacity: 1; } }

/* CRT flicker on load */
@keyframes crtflicker {
  0%   { opacity: 0.92; }
  5%   { opacity: 0.98; }
  10%  { opacity: 0.9; }
  15%  { opacity: 1; }
  20%  { opacity: 0.95; }
  100% { opacity: 1; }
}
.hero { animation: crtflicker 0.6s ease-out 0.1s both; }

/* ── Responsive ──────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .pkg-grid { grid-template-columns: repeat(2, 1fr); }
  .residency .section-inner { grid-template-columns: 1fr; }
  .res-visual { display: none; }
}
@media (max-width: 700px) {
  .site-nav { padding: var(--sp-3) var(--sp-4); }
  .nav-links a:not(.nav-cta) { display: none; }
  .pkg-grid { grid-template-columns: 1fr; }
  .contact-inner { grid-template-columns: 1fr; }
  .process-step { grid-template-columns: 50px 1fr; gap: var(--sp-4); }
  .section-inner { padding: 0 var(--sp-4); }
  .hero { padding-left: var(--sp-4); padding-right: var(--sp-4); }
  .footer-inner { flex-direction: column; align-items: flex-start; }
}
