/* ============================================================
   RENGAW WAGNER RECORDS — Global Design System
   Black. White. No compromise.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Playfair+Display:wght@700;800;900&display=swap');

/* ── CSS Variables ──────────────────────────────────────── */
:root {
  --black: #000000;
  --white: #ffffff;
  --gray-950: #080808;
  --gray-900: #111111;
  --gray-800: #1a1a1a;
  --gray-700: #2a2a2a;
  --gray-600: #3a3a3a;
  --gray-500: #555555;
  --gray-400: #777777;
  --gray-300: #999999;
  --gray-200: #cccccc;
  --gray-100: #e8e8e8;
  --gray-50: #f5f5f5;

  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;

  --nav-h: 72px;

  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  /* iOS Safari: anchor background here prevents black void under fixed nav */
  background: var(--black);
  /* Offset anchor-linked targets below the fixed nav */
  scroll-padding-top: var(--nav-h);
}

body {
  font-family: var(--font-sans);
  background: var(--black);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  /* Prevent iOS elastic overscroll from revealing black edges */
  overscroll-behavior: none;
}

/* ── Grain Overlay ──────────────────────────────────────── */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' 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='1'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 200px 200px;
}

img,
video {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

input,
textarea,
select {
  font-family: inherit;
}

/* ── Typography Scale ───────────────────────────────────── */
.t-display {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 7vw, 7rem);
  line-height: 1.0;
  letter-spacing: -0.02em;
  font-weight: 900;
}

.t-headline {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.1;
  letter-spacing: -0.015em;
  font-weight: 800;
}

.t-title {
  font-family: var(--font-sans);
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.t-label {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gray-400);
}

.t-body {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--gray-300);
  font-weight: 400;
}

.t-small {
  font-size: 0.85rem;
  color: var(--gray-400);
  line-height: 1.5;
}

/* ── Layout ─────────────────────────────────────────────── */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

.container--narrow {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 40px;
}

.section {
  padding: 120px 0;
}

.section--sm {
  padding: 80px 0;
}

/* ── Navigation ─────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--nav-h);
  z-index: 1000;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: border-color 0.3s ease;
  /* Safe area inset for notched / Dynamic Island iPhones */
  padding-left: env(safe-area-inset-left);
  padding-right: env(safe-area-inset-right);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 0;
  padding-left: 0;
  border-left: none;
  line-height: 1;
}

.nav__logo-img {
  height: 44px;
  width: auto;
  object-fit: contain;
  filter: invert(1);
  display: block;
}

.nav__logo-badge-img {
  width: 38px;
  height: 38px;
  border-radius: 0;
  object-fit: contain;
  margin-right: 10px;
  filter: invert(1);
  flex-shrink: 0;
}

/* Badge classes kept for gallery use — not in nav */
.nav__logo-badge {
  display: none;
}

.nav__logo-name {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.15;
}

.nav__logo-text {
  display: flex;
  flex-direction: column;
}

.nav__logo-location {
  display: block;
  font-size: 0.55rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gray-500);
  font-weight: 500;
  margin-top: 3px;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav__link {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-400);
  transition: color 0.2s ease;
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--white);
  transition: width 0.3s var(--ease-out-expo);
}

.nav__link:hover {
  color: var(--white);
}

.nav__link:hover::after {
  width: 100%;
}

.nav__link--active {
  color: var(--white);
}

.nav__link--active::after {
  width: 100%;
}

.nav__cta {
  display: inline-flex;
  align-items: center;
  padding: 8px 20px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  transition: background 0.2s ease, border-color 0.2s ease;
}

.nav__cta:hover {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}

.nav__hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--white);
  transition: all 0.3s ease;
}

/* ── Mobile Nav ─────────────────────────────────────────── */
.nav__mobile {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0;
  width: 100%;
  /* Use dvh so mobile browser chrome doesn't cause overflow */
  height: calc(100dvh - var(--nav-h));
  background: var(--black);
  z-index: 999;
  flex-direction: column;
  padding: 48px 40px;
  padding-bottom: calc(48px + env(safe-area-inset-bottom));
  gap: 32px;
  border-top: 1px solid var(--gray-700);
  overflow-y: auto;
}

.nav__mobile.is-open {
  display: flex;
}

.nav__mobile-link {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--gray-300);
  transition: color 0.2s ease;
}

.nav__mobile-link:hover {
  color: var(--white);
}

/* ── Buttons ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: all 0.2s ease;
  position: relative;
  overflow: hidden;
}

.btn--primary {
  background: var(--white);
  color: var(--black);
}

.btn--primary:hover {
  background: var(--gray-100);
}

.btn--outline {
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--white);
}

.btn--outline:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.05);
}

.btn .btn__arrow {
  width: 14px;
  height: 14px;
  transition: transform 0.3s var(--ease-out-expo);
}

.btn:hover .btn__arrow {
  transform: translateX(4px);
}

/* ── Divider / Line Elements ────────────────────────────── */
.rule {
  width: 100%;
  height: 1px;
  background: var(--gray-800);
}

.rule--light {
  background: rgba(255, 255, 255, 0.08);
}

/* ── Hero ───────────────────────────────────────────────── */
.hero {
  /* dvh: accounts for collapsing browser chrome on iOS Safari */
  min-height: 100dvh;
  display: flex;
  align-items: flex-end;
  padding-bottom: 100px;
  /* Background extends behind fixed nav — no top padding here */
  padding-top: 0;
  position: relative;
  overflow: hidden;
  background: var(--black);
  background-image: url('hero_bg.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: scroll;
  padding-left: env(safe-area-inset-left);
  padding-right: env(safe-area-inset-right);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  z-index: 0;
}

.hero__bg-grid,
.hero__bg-gradient {
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 1100px;
}

@media (max-width: 768px) {
  .hero {
    /* flex-start so padding-top on the section itself controls content offset */
    align-items: flex-start;
    padding-top: calc(var(--nav-h) + env(safe-area-inset-top, 0px) + 24px);
    padding-bottom: calc(80px + env(safe-area-inset-bottom));
    min-height: 100dvh;
    background-attachment: scroll;
  }
  /* Reset any override on hero__content */
  .hero__content {
    padding-top: 0;
  }
}

.hero__bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
}

.hero__bg-gradient {
  position: absolute;
  top: 0;
  right: -20%;
  width: 70%;
  height: 80%;
  background: radial-gradient(ellipse at top right, rgba(255, 255, 255, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

/* hero__content override handled above */

.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
}

.hero__eyebrow-line {
  width: 40px;
  height: 1px;
  background: var(--gray-600);
}

.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(3.5rem, 8vw, 8.5rem);
  line-height: 0.95;
  letter-spacing: -0.025em;
  font-weight: 900;
  margin-bottom: 48px;
}

.hero__title em {
  font-style: italic;
  color: var(--gray-400);
}

.hero__body {
  font-size: 1.1rem;
  color: var(--gray-400);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 48px;
  font-weight: 400;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* ── Hero Brand Badge ───────────────────────────────────── */
.hero__badge {
  position: absolute;
  bottom: 48px;
  right: 48px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  opacity: 0.85;
  z-index: 3;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.hero__badge:hover {
  opacity: 1;
  transform: scale(1.05);
}

.hero__badge img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ── Spinning Vinyl Record ──────────────────────────────── */
.hero__vinyl-wrap {
  position: absolute;
  right: -120px;
  top: 50%;
  transform: translateY(-50%);
  width: 520px;
  height: 520px;
  z-index: 1;
  pointer-events: none;
  opacity: 0.18;
}

.hero__vinyl-record {
  width: 100%;
  height: 100%;
  animation: vinyl-spin 18s linear infinite;
}

.vinyl-svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 0 60px rgba(201,168,76,0.12));
}

@keyframes vinyl-spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

@media (max-width: 768px) {
  .hero__vinyl-wrap {
    width: 300px;
    height: 300px;
    right: -80px;
    opacity: 0.1;
  }
}

/* ── Hero Corner Logo (glitch) ──────────────────────────── */
.hero__corner-logo {
  position: absolute;
  bottom: 48px;
  right: 48px;
  width: 140px;
  height: 140px;
  z-index: 4;
}

.hero__corner-logo--positioned {
  /* override default */
}

.glitch-logo {
  position: relative;
  width: 100%;
  height: 100%;
}

.glitch-logo__img {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: invert(1);
  mix-blend-mode: screen;
}

.glitch-logo__img--r {
  mix-blend-mode: screen;
  filter: invert(1) sepia(1) saturate(5) hue-rotate(320deg);
  opacity: 0;
  animation: glitch-r 6s infinite;
}

.glitch-logo__img--b {
  mix-blend-mode: screen;
  filter: invert(1) sepia(1) saturate(5) hue-rotate(180deg);
  opacity: 0;
  animation: glitch-b 6s infinite;
}

@keyframes glitch-r {
  0%,  89%  { opacity: 0; transform: translate(0, 0); }
  90%        { opacity: 0.7; transform: translate(-4px, 2px); clip-path: inset(10% 0 60% 0); }
  91%        { opacity: 0; transform: translate(0, 0); }
  93%        { opacity: 0.5; transform: translate(3px, -3px); clip-path: inset(55% 0 10% 0); }
  94%        { opacity: 0; transform: translate(0, 0); }
  96%        { opacity: 0.6; transform: translate(-2px, 1px); clip-path: inset(30% 0 40% 0); }
  97%, 100%  { opacity: 0; transform: translate(0, 0); }
}

@keyframes glitch-b {
  0%,  89%  { opacity: 0; transform: translate(0, 0); }
  90%        { opacity: 0; }
  91%        { opacity: 0.6; transform: translate(4px, -2px); clip-path: inset(60% 0 5% 0); }
  92%        { opacity: 0; }
  94%        { opacity: 0.5; transform: translate(-3px, 3px); clip-path: inset(5% 0 65% 0); }
  95%        { opacity: 0; }
  97%        { opacity: 0.7; transform: translate(2px, -1px); clip-path: inset(35% 0 35% 0); }
  98%, 100%  { opacity: 0; transform: translate(0, 0); }
}

.hero__scroll-indicator {
  position: absolute;
  bottom: 40px;
  right: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 3;
}

.hero__scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, transparent, var(--gray-600));
  animation: scroll-line 2s ease-in-out infinite;
}

@keyframes scroll-line {

  0%,
  100% {
    opacity: 0.4;
    transform: scaleY(1);
  }

  50% {
    opacity: 1;
    transform: scaleY(1.2);
  }
}

/* ── Services Grid ──────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--gray-800);
}

.service-card {
  padding: 52px 44px;
  border-right: 1px solid var(--gray-800);
  border-bottom: 1px solid var(--gray-800);
  position: relative;
  transition: background 0.3s ease;
  cursor: default;
}

.service-card:nth-child(3n) {
  border-right: none;
}

.service-card:nth-last-child(-n+3) {
  border-bottom: none;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.02);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-card:hover::before {
  opacity: 1;
}

.service-card__num {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray-600);
  margin-bottom: 32px;
}

.service-card__title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--white);
  letter-spacing: -0.01em;
}

.service-card__body {
  font-size: 0.88rem;
  color: var(--gray-400);
  line-height: 1.7;
  margin-bottom: 32px;
}

.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-500);
  transition: color 0.2s ease;
}

.service-card__link:hover {
  color: var(--white);
}

.service-card__link svg {
  transition: transform 0.3s var(--ease-out-expo);
}

.service-card__link:hover svg {
  transform: translateX(4px);
}

/* ── Protocol / Statement Section ───────────────────────── */
.statement {
  border-top: 1px solid var(--gray-800);
  border-bottom: 1px solid var(--gray-800);
}

.statement__inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: start;
  padding: 100px 0;
}

.statement__label-col {
  padding-top: 6px;
}

.statement__body {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  line-height: 1.4;
  color: var(--gray-200);
  font-weight: 700;
}

.statement__body strong {
  color: var(--white);
}

/* ── Process List ───────────────────────────────────────── */
.process-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.process-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 40px;
  padding: 48px 0;
  border-bottom: 1px solid var(--gray-800);
  align-items: start;
}

.process-item:first-child {
  border-top: 1px solid var(--gray-800);
}

.process-item__num {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 900;
  color: var(--gray-800);
  line-height: 1;
  padding-top: 4px;
}

.process-item__title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.process-item__body {
  font-size: 0.9rem;
  color: var(--gray-400);
  line-height: 1.7;
}

/* ── Page Hero (inner pages) ─────────────────────────────── */
.page-hero {
  padding-top: calc(var(--nav-h) + 80px);
  padding-bottom: 80px;
  border-bottom: 1px solid var(--gray-800);
}

@media (max-width: 768px) {
  .page-hero {
    /* 72px nav + up to 60px safe area + 80px breathing = 200px+ guaranteed clearance */
    padding-top: calc(72px + env(safe-area-inset-top, 44px) + 80px);
    padding-bottom: 48px;
  }
}

.page-hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}

.page-hero__eyebrow-line {
  width: 32px;
  height: 1px;
  background: var(--gray-600);
}

.page-hero__title {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 5rem);
  line-height: 1.0;
  letter-spacing: -0.025em;
  font-weight: 900;
  margin-bottom: 28px;
  max-width: 900px;
}

.page-hero__body {
  font-size: 1.05rem;
  color: var(--gray-400);
  max-width: 580px;
  line-height: 1.7;
}

/* ── Feature Grid ───────────────────────────────────────── */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border: 1px solid var(--gray-800);
}

.feature-item {
  padding: 52px 48px;
  border-right: 1px solid var(--gray-800);
  border-bottom: 1px solid var(--gray-800);
}

.feature-item:nth-child(2n) {
  border-right: none;
}

.feature-item:nth-last-child(-n+2) {
  border-bottom: none;
}

.feature-item__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.feature-item__body {
  font-size: 0.88rem;
  color: var(--gray-400);
  line-height: 1.7;
}

/* ── CTA Banner ─────────────────────────────────────────── */
.cta-banner {
  background: var(--gray-950);
  border: 1px solid var(--gray-800);
  padding: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap;
}

.cta-banner__title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 900;
  max-width: 500px;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.cta-banner__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

/* ── Contact Form ───────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: start;
}

.contact-info__item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 28px 0;
  border-bottom: 1px solid var(--gray-800);
}

.contact-info__item:first-child {
  border-top: 1px solid var(--gray-800);
}

.contact-info__label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gray-500);
}

.contact-info__value {
  font-size: 0.95rem;
  color: var(--gray-200);
}

.form {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.form__group {
  position: relative;
  border-bottom: 1px solid var(--gray-800);
}

.form__group:first-child {
  border-top: 1px solid var(--gray-800);
}

.form__label {
  display: block;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gray-600);
  padding: 20px 0 6px;
  transition: color 0.2s ease;
}

.form__input,
.form__textarea,
.form__select {
  width: 100%;
  background: transparent;
  border: none;
  outline: none;
  font-size: 0.95rem;
  color: var(--white);
  padding: 0 0 20px;
  line-height: 1.5;
}

.form__textarea {
  resize: none;
  min-height: 120px;
}

.form__input::placeholder,
.form__textarea::placeholder {
  color: var(--gray-700);
}

.form__group:focus-within .form__label {
  color: var(--gray-300);
}

.form__submit {
  margin-top: 48px;
  align-self: flex-start;
}

/* ── Footer ─────────────────────────────────────────────── */
.footer {
  border-top: 1px solid var(--gray-800);
  padding: 60px 0;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
}

.footer__brand-name {
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 8px;
}

.footer__brand-tagline {
  font-size: 0.78rem;
  color: var(--gray-500);
  line-height: 1.5;
}

.footer__col-title {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gray-600);
  margin-bottom: 20px;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__link {
  font-size: 0.85rem;
  color: var(--gray-400);
  transition: color 0.2s ease;
}

.footer__link:hover {
  color: var(--white);
}

.footer__bottom {
  margin-top: 60px;
  padding-top: 24px;
  border-top: 1px solid var(--gray-900);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer__copy {
  font-size: 0.75rem;
  color: var(--gray-600);
}

.footer__legal-links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.footer__legal-link {
  font-size: 0.72rem;
  color: var(--gray-600);
  transition: color 0.2s ease;
}

.footer__legal-link:hover {
  color: var(--gray-300);
}

/* ── Glitch Logo ────────────────────────────────────────── */
.glitch-logo {
  position: relative;
  display: inline-block;
}

.glitch-logo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.glitch-logo::before,
.glitch-logo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: inherit;
  background-image: inherit;
  background-size: inherit;
  background-repeat: inherit;
  background-position: inherit;
}

@keyframes glitch-clip {
  0%   { clip-path: inset(0 0 100% 0); transform: translateX(0); opacity: 0; }
  /* Idle most of the time */
  78%  { clip-path: inset(0 0 100% 0); transform: translateX(0); opacity: 0; }
  /* Glitch burst 1 */
  80%  { clip-path: inset(15% 0 70% 0); transform: translateX(-6px); opacity: 1; }
  81%  { clip-path: inset(40% 0 40% 0); transform: translateX(4px);  opacity: 1; }
  82%  { clip-path: inset(60% 0 20% 0); transform: translateX(-3px); opacity: 1; }
  83%  { clip-path: inset(0 0 100% 0); transform: translateX(0);  opacity: 0; }
  /* Glitch burst 2 */
  90%  { clip-path: inset(30% 0 50% 0); transform: translateX(5px);  opacity: 1; }
  91%  { clip-path: inset(70% 0 10% 0); transform: translateX(-4px); opacity: 1; }
  92%  { clip-path: inset(0 0 100% 0); transform: translateX(0);  opacity: 0; }
  100% { clip-path: inset(0 0 100% 0); transform: translateX(0);  opacity: 0; }
}

@keyframes glitch-clip-2 {
  0%   { clip-path: inset(0 0 100% 0); transform: translateX(0); opacity: 0; }
  78%  { clip-path: inset(0 0 100% 0); transform: translateX(0); opacity: 0; }
  80%  { clip-path: inset(55% 0 30% 0); transform: translateX(5px);  opacity: 1; }
  81%  { clip-path: inset(20% 0 65% 0); transform: translateX(-6px); opacity: 1; }
  82%  { clip-path: inset(80% 0 5% 0);  transform: translateX(3px);  opacity: 1; }
  83%  { clip-path: inset(0 0 100% 0); transform: translateX(0);  opacity: 0; }
  90%  { clip-path: inset(10% 0 75% 0); transform: translateX(-5px); opacity: 1; }
  91%  { clip-path: inset(50% 0 35% 0); transform: translateX(4px);  opacity: 1; }
  92%  { clip-path: inset(0 0 100% 0); transform: translateX(0);  opacity: 0; }
  100% { clip-path: inset(0 0 100% 0); transform: translateX(0);  opacity: 0; }
}

.hero__corner-logo {
  position: relative;
  width: 148px;
  height: 148px;
  z-index: 3;
}

.hero__corner-logo--positioned {
  position: absolute;
  top: 110px;
  right: 48px;
}

.hero__corner-logo__img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  filter: invert(1);
  mix-blend-mode: screen;
  opacity: 0.94;
}

@media (max-width: 768px) {
  .hero__corner-logo {
    width: 92px;
    height: 92px;
  }

  .hero__corner-logo--positioned {
    top: 98px;
    right: 20px;
  }
}

/* ── Animations ─────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal--delay-1 {
  transition-delay: 0.1s;
}

.reveal--delay-2 {
  transition-delay: 0.2s;
}

.reveal--delay-3 {
  transition-delay: 0.3s;
}

.reveal--delay-4 {
  transition-delay: 0.4s;
}

.reveal--delay-5 {
  transition-delay: 0.5s;
}

/* ── Utilities ──────────────────────────────────────────── */
.text-white {
  color: var(--white);
}

.text-gray {
  color: var(--gray-400);
}

.text-muted {
  color: var(--gray-600);
}

.mt-8 {
  margin-top: 8px;
}

.mt-16 {
  margin-top: 16px;
}

.mt-24 {
  margin-top: 24px;
}

.mt-32 {
  margin-top: 32px;
}

.mt-48 {
  margin-top: 48px;
}

.mt-64 {
  margin-top: 64px;
}

.mb-8 {
  margin-bottom: 8px;
}

.mb-16 {
  margin-bottom: 16px;
}

.mb-24 {
  margin-bottom: 24px;
}

.mb-32 {
  margin-bottom: 32px;
}

.mb-48 {
  margin-bottom: 48px;
}

/* ── Responsive ─────────────────────────────────────────── */
@media (max-width: 1024px) {
  .container {
    padding: 0 28px;
  }

  .container--narrow {
    padding: 0 28px;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-card:nth-child(3n) {
    border-right: 1px solid var(--gray-800);
  }

  .service-card:nth-child(2n) {
    border-right: none;
  }

  .service-card:nth-last-child(-n+3) {
    border-bottom: 1px solid var(--gray-800);
  }

  .service-card:nth-last-child(-n+2) {
    border-bottom: none;
  }

  .statement__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer__inner {
    grid-template-columns: 1fr 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .cta-banner {
    padding: 60px 40px;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }

  .container--narrow {
    padding: 0 20px;
  }

  .section {
    padding: 64px 0;
  }

  .section--sm {
    padding: 48px 0;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    border-right: none !important;
    border-bottom: 1px solid var(--gray-800) !important;
    padding: 36px 24px;
  }

  .service-card:last-child {
    border-bottom: none !important;
  }

  .nav__links {
    display: none;
  }

  .nav__cta {
    display: none;
  }

  .nav__hamburger {
    display: flex;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .feature-item {
    border-right: none !important;
    padding: 36px 24px;
  }

  .footer__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .cta-banner {
    padding: 40px 24px;
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
  }

  .cta-banner__actions {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }

  .cta-banner__actions .btn {
    width: 100%;
    justify-content: center;
  }

  .process-item {
    grid-template-columns: 40px 1fr;
    gap: 20px;
    padding: 36px 0;
  }

  .hero__title {
    font-size: clamp(2.8rem, 11vw, 5rem);
    margin-bottom: 28px;
  }

  .hero__body {
    font-size: 1rem;
    margin-bottom: 36px;
  }

  .hero__actions {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }

  .hero__actions .btn {
    width: 100%;
    justify-content: center;
  }

  .hero__scroll-indicator {
    display: none;
  }

  .page-hero__title {
    font-size: clamp(2rem, 9vw, 3.5rem);
  }

  .statement__inner {
    padding: 60px 0;
  }

  .contact-grid {
    gap: 40px;
  }
}

/* ═══════════════════════════════════════════════════════════ */
/* GLITCH LOGO — clean color-channel offset, no blend mode    */
/* ═══════════════════════════════════════════════════════════ */
.hero__glitch-logo__overlay-1 {
  filter: hue-rotate(185deg) saturate(4) brightness(1.2);
  opacity: 0.55;
  mix-blend-mode: normal;
}

.hero__glitch-logo__overlay-2 {
  filter: hue-rotate(320deg) saturate(4) brightness(1.2);
  opacity: 0.55;
  mix-blend-mode: normal;
}

/* ═══════════════════════════════════════════════════════════ */
/* NEON SIGN SECTION                                          */
/* ═══════════════════════════════════════════════════════════ */
.neon-section {
  position: relative;
  background: #050505;
  padding: 100px 20px 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.neon-section__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  /* Warm amber ambient glow appears when sign turns on */
  background: radial-gradient(ellipse 60% 40% at 50% 50%, rgba(255, 155, 0, 0) 0%, transparent 100%);
  transition: background 1s ease;
}

.neon-section--lit .neon-section__bg {
  background: radial-gradient(ellipse 60% 40% at 50% 50%, rgba(255, 155, 0, 0.06) 0%, transparent 100%);
}

.neon-section__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.neon-sign-mount {
  display: flex;
  gap: 300px;
  margin-bottom: -1px;
  position: relative;
  z-index: 2;
}

.neon-sign-chain {
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, #555, #222);
}

/* Sign starts as cold glass (halogen white = grayscale, dim) */
.neon-sign-frame {
  position: relative;
  transform-origin: top center;
  cursor: default;
  /* Off state: tubes visible but no color — like cold halogen glass */
  filter: brightness(0.12) grayscale(1) sepia(0);
}

/* Powered on */
.neon-sign-frame.neon--on {
  animation:
    neon-flicker-on 3s ease forwards,
    neon-swing 7s ease-in-out 3s infinite alternate;
}

/* Settled ambient hum */
.neon-sign-frame.neon--on.neon--settled {
  animation:
    neon-swing 7s ease-in-out infinite alternate,
    neon-ambient 9s ease-in-out infinite alternate;
}

.neon-sign-img {
  display: block;
  width: min(580px, 88vw);
  height: auto;
}

.neon-section__tagline {
  font-family: var(--font-sans);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255, 150, 0, 0);
  margin-top: 28px;
  transition: color 2s ease 1s;
}

.neon-section--lit .neon-section__tagline {
  color: rgba(255, 150, 0, 0.45);
}

/* Flicker on: cold halogen → amber warmth */
@keyframes neon-flicker-on {
   0%   { filter: brightness(0.12) grayscale(1); }
   6%   { filter: brightness(0.4)  grayscale(0.6) sepia(0.3); }
   8%   { filter: brightness(0.08) grayscale(1); }
  16%   { filter: brightness(0.7)  grayscale(0.3) sepia(0.5); }
  18%   { filter: brightness(0.08) grayscale(1); }
  26%   { filter: brightness(0.9)  grayscale(0.1) sepia(0.7); }
  28%   { filter: brightness(0.15) grayscale(0.8); }
  36%   { filter: brightness(1)    grayscale(0)   sepia(0); }
  44%   { filter: brightness(0.75) grayscale(0)   sepia(0); }
  50%   { filter: brightness(1)    grayscale(0)   sepia(0); }
  65%   { filter: brightness(0.9)  grayscale(0); }
  72%   { filter: brightness(1)    grayscale(0); }
 100%   { filter: brightness(1)    grayscale(0); }
}

@keyframes neon-swing {
  0%   { transform: rotate(-2deg); }
  100% { transform: rotate(2deg); }
}

@keyframes neon-ambient {
  0%   { filter: brightness(1); }
  35%  { filter: brightness(0.93); }
  55%  { filter: brightness(1); }
  80%  { filter: brightness(0.96); }
  100% { filter: brightness(1); }
}

/* ═══════════════════════════════════════════════════════════ */
/* STAR SKY FOOTER                                            */
/* ═══════════════════════════════════════════════════════════ */
.footer--sky {
  position: relative;
  background: #000;
  padding: 0;
  border-top: none;
  overflow: hidden;
}

.sky-stars {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.sky-brand {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 100px 20px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.sky-brand__name {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 7vw, 5.5rem);
  font-weight: 700;
  color: rgba(255, 255, 255, 0.92);
  letter-spacing: 0.08em;
  line-height: 1;
}

.sky-brand__location {
  font-family: var(--font-sans);
  font-size: clamp(0.65rem, 1.5vw, 0.8rem);
  font-weight: 400;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
}

.mountain-wrap {
  position: relative;
  z-index: 1;
  margin-top: 60px;
  line-height: 0;
  pointer-events: none;
}

.mountain-svg {
  width: 100%;
  height: auto;
  display: block;
}

.footer-base {
  position: relative;
  z-index: 2;
  background: #080808;
  padding-top: 60px;
}

/* ═══════════════════════════════════════════════════════════ */
/* CINEMATIC PAGE HERO BACKGROUNDS                            */
/* ═══════════════════════════════════════════════════════════ */

/* Booking — City at night */
.page-hero--city {
  background:
    linear-gradient(to bottom, rgba(0,0,0,0.75) 0%, rgba(0,4,20,0.85) 100%),
    repeating-linear-gradient(
      90deg,
      transparent 0px, transparent 60px,
      rgba(255,200,0,0.03) 60px, rgba(255,200,0,0.03) 61px
    ),
    repeating-linear-gradient(
      0deg,
      transparent 0px, transparent 80px,
      rgba(255,200,0,0.02) 80px, rgba(255,200,0,0.02) 81px
    ),
    linear-gradient(135deg, #000510 0%, #00071a 50%, #050000 100%);
  background-color: #000510;
}

.page-hero--city::before {
  background:
    radial-gradient(ellipse 80% 50% at 50% 100%, rgba(255, 180, 0, 0.07) 0%, transparent 60%),
    radial-gradient(ellipse 40% 30% at 20% 80%, rgba(0, 100, 255, 0.05) 0%, transparent 50%),
    radial-gradient(ellipse 40% 30% at 80% 80%, rgba(255, 60, 0, 0.04) 0%, transparent 50%);
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
}

/* Tour — Highway at night */
.page-hero--highway {
  background:
    linear-gradient(to bottom, rgba(0,0,0,0.8) 0%, rgba(5,2,0,0.9) 100%),
    linear-gradient(175deg, #080400 0%, #0a0500 40%, #050300 100%);
  background-color: #080400;
}

.page-hero--highway::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    /* Center highway lines */
    repeating-linear-gradient(
      180deg,
      transparent 0px, transparent 40px,
      rgba(255, 200, 60, 0.04) 40px, rgba(255, 200, 60, 0.04) 80px
    ),
    /* Horizon amber glow */
    radial-gradient(ellipse 100% 20% at 50% 100%, rgba(255, 160, 0, 0.08) 0%, transparent 60%),
    /* Headlight pair glow */
    radial-gradient(ellipse 8% 15% at 48% 85%, rgba(255, 240, 200, 0.06) 0%, transparent 70%),
    radial-gradient(ellipse 8% 15% at 52% 85%, rgba(255, 240, 200, 0.06) 0%, transparent 70%);
}

/* Management — Studio */
.page-hero--studio {
  background:
    linear-gradient(to bottom, rgba(0,0,0,0.7) 0%, rgba(8,4,16,0.88) 100%),
    linear-gradient(135deg, #060008 0%, #0a0314 50%, #060008 100%);
  background-color: #060008;
}

.page-hero--studio::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 60% 40% at 30% 60%, rgba(120, 0, 255, 0.05) 0%, transparent 60%),
    radial-gradient(ellipse 40% 30% at 70% 40%, rgba(0, 180, 255, 0.04) 0%, transparent 50%),
    /* Console LEDs: repeating dots */
    radial-gradient(1px 1px at 15% 70%, rgba(0,255,120,0.3) 50%, transparent 50%),
    radial-gradient(1px 1px at 20% 72%, rgba(255,60,0,0.3) 50%, transparent 50%),
    radial-gradient(1px 1px at 25% 71%, rgba(0,120,255,0.3) 50%, transparent 50%),
    radial-gradient(1px 1px at 30% 70%, rgba(255,200,0,0.3) 50%, transparent 50%),
    radial-gradient(1px 1px at 35% 72%, rgba(0,255,80,0.3) 50%, transparent 50%),
    radial-gradient(1px 1px at 78% 68%, rgba(255,0,80,0.3) 50%, transparent 50%),
    radial-gradient(1px 1px at 82% 70%, rgba(0,200,255,0.3) 50%, transparent 50%);
}

/* Production — same studio vibe */
.page-hero--production {
  background:
    linear-gradient(to bottom, rgba(0,0,0,0.7) 0%, rgba(4,8,4,0.88) 100%),
    linear-gradient(135deg, #020806 0%, #030e08 50%, #020806 100%);
  background-color: #020806;
}

.page-hero--production::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 50% 40% at 50% 80%, rgba(0, 255, 100, 0.04) 0%, transparent 60%),
    /* VU meter bars */
    linear-gradient(90deg, transparent 10%, rgba(0,255,80,0.03) 10%, rgba(0,255,80,0.03) 11%, transparent 11%),
    linear-gradient(90deg, transparent 14%, rgba(0,255,80,0.03) 14%, rgba(0,255,80,0.03) 15%, transparent 15%),
    linear-gradient(90deg, transparent 18%, rgba(100,255,0,0.03) 18%, rgba(100,255,0,0.03) 19%, transparent 19%);
}

/* Distribution — global / digital */
.page-hero--global {
  background:
    linear-gradient(to bottom, rgba(0,0,0,0.75) 0%, rgba(0,5,15,0.9) 100%),
    linear-gradient(160deg, #000408 0%, #000a18 50%, #000408 100%);
  background-color: #000408;
}

.page-hero--global::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 50%, rgba(0, 120, 255, 0.04) 0%, transparent 60%),
    /* Latitude lines */
    repeating-linear-gradient(
      0deg,
      transparent 0px, transparent 39px,
      rgba(0,150,255,0.025) 39px, rgba(0,150,255,0.025) 40px
    ),
    /* Longitude curves */
    repeating-radial-gradient(ellipse 120% 100% at 50% 50%, transparent 24%, rgba(0,150,255,0.015) 25%, transparent 26%);
}

@media (max-width: 600px) {
  .neon-sign-mount { gap: 180px; }
  .neon-section { padding: 70px 16px 60px; }
  .sky-brand { padding-top: 70px; }
  .sky-brand__name { font-size: clamp(1.8rem, 9vw, 3rem); }
}

/* ═══════════════════════════════════════════════════════════ */
/* DROP-IN ANIMATION (y: -20px → 0, iOS feel)                 */
/* ═══════════════════════════════════════════════════════════ */
.drop-in {
  opacity: 0;
  transform: translateY(-22px);
  transition:
    opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.drop-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.drop-in--delay-1 { transition-delay: 0.1s; }
.drop-in--delay-2 { transition-delay: 0.22s; }
.drop-in--delay-3 { transition-delay: 0.34s; }

/* ── Nav hide on scroll down (iOS-style) ─────────────────── */
.nav--hidden {
  transform: translateY(-100%);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.nav {
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
              background 0.3s ease, backdrop-filter 0.3s ease;
}

/* ── Cinematic page-hero base (needs position relative) ──── */
.page-hero--city,
.page-hero--highway,
.page-hero--studio,
.page-hero--production,
.page-hero--global {
  position: relative;
}

.page-hero--city::before,
.page-hero--highway::before,
.page-hero--studio::before,
.page-hero--production::before,
.page-hero--global::before {
  z-index: 0;
}

.page-hero--city .container,
.page-hero--highway .container,
.page-hero--studio .container,
.page-hero--production .container,
.page-hero--global .container {
  position: relative;
  z-index: 1;
}

/* ═══════════════════════════════════════════════════════════ */
/* GLITCH LOGO — blend into dark hero via mix-blend-mode      */
/* ═══════════════════════════════════════════════════════════ */
.hero__glitch-logo {
  mix-blend-mode: screen;
}

.hero__glitch-logo__main {
  mix-blend-mode: screen;
}

.hero__glitch-logo__overlay-1 {
  mix-blend-mode: screen;
  filter: hue-rotate(185deg) saturate(4) brightness(1.3);
  opacity: 0.6;
}

.hero__glitch-logo__overlay-2 {
  mix-blend-mode: screen;
  filter: hue-rotate(320deg) saturate(4) brightness(1.3);
  opacity: 0.6;
}

/* Hide hero grid */
.hero__bg-grid { display: none; }

/* ═══════════════════════════════════════════════════════════ */
/* HOVER-REVEAL SERVICE CARDS                                 */
/* ═══════════════════════════════════════════════════════════ */
.hover-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

/* Body and link start hidden, slide up on hover */
.hover-card .service-card__body {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transform: translateY(8px);
  transition:
    max-height 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.35s ease,
    transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  margin-bottom: 0;
}

.hover-card .service-card__link {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transform: translateY(6px);
  transition:
    max-height 0.4s cubic-bezier(0.22, 1, 0.36, 1) 0.06s,
    opacity 0.3s ease 0.08s,
    transform 0.4s cubic-bezier(0.22, 1, 0.36, 1) 0.06s;
}

/* Hover or focus: reveal */
.hover-card:hover .service-card__body,
.hover-card:focus-within .service-card__body {
  max-height: 200px;
  opacity: 1;
  transform: translateY(0);
  margin-bottom: 16px;
}

.hover-card:hover .service-card__link,
.hover-card:focus-within .service-card__link {
  max-height: 60px;
  opacity: 1;
  transform: translateY(0);
}

/* Subtle border glow on hover */
.hover-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid transparent;
  border-radius: inherit;
  transition: border-color 0.3s ease;
  pointer-events: none;
}

.hover-card:hover::after {
  border-color: rgba(255, 255, 255, 0.08);
}

/* Touch: always show on mobile (no hover state) */
@media (hover: none) {
  .hover-card .service-card__body,
  .hover-card .service-card__link {
    max-height: 300px;
    opacity: 1;
    transform: translateY(0);
    margin-bottom: 16px;
  }
}

/* ── Hero bottom fade — record bleeds into black ─────────── */
.hero::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 220px;
  background: linear-gradient(to bottom, transparent 0%, #050505 100%);
  pointer-events: none;
  z-index: 2;
}

/* ═══════════════════════════════════════════════════════════
   SERVICE PAGE COMPONENTS — Proper classes replacing inline styles
   ═══════════════════════════════════════════════════════════ */

/* ── Stats Bar ──────────────────────────────────────────── */
.stats-bar {
  border-bottom: 1px solid var(--gray-800);
  padding: 60px 0;
}

.stats-bar__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--gray-800);
}

.stats-bar__cell {
  padding: 40px 36px;
  border-right: 1px solid var(--gray-800);
}

.stats-bar__cell:last-child {
  border-right: none;
}

.stats-bar__num {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  margin-bottom: 10px;
}

/* ── Two-column section layout ──────────────────────────── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: start;
}

.two-col__heading {
  max-width: 340px;
  line-height: 1.4;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
}

.two-col__body + .two-col__body {
  margin-top: 24px;
}

/* ── Data Table ─────────────────────────────────────────── */
.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}

.data-table thead tr {
  border-bottom: 1px solid var(--gray-800);
}

.data-table th {
  text-align: left;
  padding: 16px 0;
  color: var(--gray-400);
  font-weight: 600;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.data-table tbody tr {
  border-bottom: 1px solid var(--gray-800);
}

.data-table tbody tr:last-child {
  border-bottom: none;
}

.data-table td {
  padding: 18px 0;
  vertical-align: top;
}

.data-table td:first-child {
  color: var(--white);
  font-weight: 600;
  width: 160px;
}

.data-table td:not(:first-child) {
  color: var(--gray-400);
  line-height: 1.6;
}

/* ── Market Coverage Table ──────────────────────────────── */
.market-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}

.market-table thead tr {
  border-bottom: 1px solid var(--gray-800);
}

.market-table th {
  text-align: left;
  padding: 14px 0;
  color: var(--gray-400);
  font-weight: 600;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.market-table tbody tr {
  border-bottom: 1px solid var(--gray-800);
  transition: background 0.2s ease;
}

.market-table tbody tr:last-child {
  border-bottom: none;
}

.market-table td {
  padding: 16px 0;
  color: var(--gray-300);
  font-size: 0.85rem;
}

.market-table td:first-child {
  color: var(--white);
  font-weight: 600;
}

/* ── Pricing Row ────────────────────────────────────────── */
.pricing-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.pricing-card {
  padding: 40px 36px;
  border: 1px solid var(--gray-800);
}

.pricing-card--featured {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.02);
}

.pricing-card__eyebrow {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray-500);
  margin-bottom: 20px;
}

.pricing-card__eyebrow--featured {
  color: var(--white);
}

.pricing-card__price {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
}

.pricing-card__unit {
  font-size: 0.88rem;
  color: var(--gray-500);
  margin-bottom: 24px;
}

.pricing-card__body {
  font-size: 0.88rem;
  color: var(--gray-400);
  line-height: 1.7;
}

/* ── Platform Grid ──────────────────────────────────────── */
.platform-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--gray-800);
}

.platform-cell {
  padding: 32px 28px;
  border-right: 1px solid var(--gray-800);
}

.platform-cell:last-child {
  border-right: none;
}

.platform-cell__name {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

/* ── Section Intro (label + heading before content) ───── */
.section-intro {
  margin-bottom: 48px;
}

.section-intro--mb-sm {
  margin-bottom: 32px;
}

/* ── Responsive Overrides: Service Pages ────────────────── */
@media (max-width: 900px) {
  .stats-bar__grid {
    grid-template-columns: 1fr 1fr;
  }

  .stats-bar__cell:nth-child(2) {
    border-right: none;
  }

  .stats-bar__cell:nth-child(1),
  .stats-bar__cell:nth-child(2) {
    border-bottom: 1px solid var(--gray-800);
  }

  .two-col {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .pricing-row {
    grid-template-columns: 1fr;
  }

  .platform-grid {
    grid-template-columns: 1fr 1fr;
  }

  .platform-cell:nth-child(2) {
    border-right: none;
  }

  .platform-cell:nth-child(1),
  .platform-cell:nth-child(2) {
    border-bottom: 1px solid var(--gray-800);
  }
}

/* ─── UTILITY: Inline Style Replacements ─────────────────────── */

/* replaces: style="display: block; margin-bottom: 48px;" */
.label-block--lg  { display: block; margin-bottom: 48px; }
/* replaces: style="display: block; margin-bottom: 32px;" */
.label-block--md  { display: block; margin-bottom: 32px; }
/* replaces: style="display: block; margin-bottom: 24px;" */
.label-block--sm  { display: block; margin-bottom: 24px; }
/* replaces: style="display: block; margin-bottom: 20px;" */
.label-block--xs  { display: block; margin-bottom: 20px; }
/* replaces: style="display: block; margin-bottom: 16px;" */
.label-block--xxs { display: block; margin-bottom: 16px; }

/* ─── TWO-COL SECTION (Commission / Publishing grids) ────────── */
.two-col-section {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: start;
}

@media (max-width: 768px) {
  .two-col-section {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* ─── SECTION HEADING VARIANTS ───────────────────────────────── */
.t-section-head {
  max-width: 340px;
  line-height: 1.4;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
}

/* ============================================================
   MISSING UTILITY CLASSES — Auto-added by CLAWZ
   ============================================================ */

.active { opacity: 1; }
.spacer { height: 2rem; }
.dark-bg { background: rgba(0,0,0,0.4); }
.label { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-muted, #a0a0b0); font-weight: 600; }
.section-label { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--accent, #c9a84c); margin-bottom: 0.5rem; }
.section-header { font-size: 1.6rem; font-weight: 700; margin-bottom: 1.5rem; }
.selection-label { font-size: 0.75rem; color: var(--text-muted, #a0a0b0); margin-bottom: 0.25rem; }
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.5rem; }
.card { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: 12px; padding: 1.5rem; transition: transform 0.2s, box-shadow 0.2s; }
.card:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(0,0,0,0.3); }
.card-info { font-size: 0.85rem; color: var(--text-muted, #a0a0b0); margin-top: 0.5rem; }
.footer-bar { background: rgba(0,0,0,0.6); border-top: 1px solid rgba(255,255,255,0.08); padding: 1.5rem 2rem; text-align: center; font-size: 0.8rem; color: var(--text-muted, #a0a0b0); }
.btn-apply { background: var(--accent, #c9a84c); color: #000; border: none; padding: 0.5rem 1.25rem; border-radius: 6px; font-weight: 600; cursor: pointer; transition: opacity 0.2s; }
.btn-apply:hover { opacity: 0.85; }
.btn-clear { background: transparent; border: 1px solid rgba(255,255,255,0.2); color: var(--text-muted, #a0a0b0); padding: 0.5rem 1.25rem; border-radius: 6px; cursor: pointer; transition: border-color 0.2s; }
.btn-clear:hover { border-color: rgba(255,255,255,0.5); }
.toggle-btn { background: transparent; border: 1px solid rgba(255,255,255,0.15); padding: 0.4rem 1rem; border-radius: 20px; color: var(--text-muted, #a0a0b0); cursor: pointer; font-size: 0.85rem; transition: all 0.2s; }
.toggle-btn.active, .toggle-btn:hover { background: var(--accent, #c9a84c); color: #000; border-color: var(--accent, #c9a84c); }
.copy-btn { background: transparent; border: 1px solid rgba(255,255,255,0.2); padding: 0.25rem 0.75rem; border-radius: 4px; color: var(--text-muted, #a0a0b0); cursor: pointer; font-size: 0.75rem; }
.copy-btn:hover { border-color: var(--accent, #c9a84c); color: var(--accent, #c9a84c); }
.modal { position: fixed; inset: 0; background: rgba(0,0,0,0.7); display: flex; align-items: center; justify-content: center; z-index: 1000; }
.modal-label { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-muted, #a0a0b0); margin-bottom: 0.5rem; }
.modal-close { position: absolute; top: 1rem; right: 1rem; background: none; border: none; font-size: 1.5rem; cursor: pointer; color: var(--text-muted, #a0a0b0); }
.logo-preview { max-width: 200px; max-height: 80px; object-fit: contain; }
.toast { position: fixed; bottom: 2rem; right: 2rem; background: var(--accent, #c9a84c); color: #000; padding: 0.75rem 1.5rem; border-radius: 8px; font-weight: 600; z-index: 9999; animation: slideUp 0.3s ease; }
@keyframes slideUp { from { transform: translateY(20px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }


/* ============================================================
   UTILITY CLASSES — Inline style replacements
   ============================================================ */
.mb--16 { margin-bottom: 1rem; }
.mb--20 { margin-bottom: 1.25rem; }
.mb--32 { margin-bottom: 2rem; }
.mb--48 { margin-bottom: 3rem; }
.mb--60 { margin-bottom: 3.75rem; }
.mb--64 { margin-bottom: 4rem; }
.d-block { display: block; }
.max-w--500 { max-width: 500px; }
.max-w--600 { max-width: 600px; }
.max-w--700 { max-width: 700px; }
.t-label--block { display: block; }
.section--border-top { border-top: 1px solid var(--gray-800); }
.t-label-section { display: block; margin-bottom: 1rem; }

/* ============================================================
   MARQUEE TICKER STRIP
   ============================================================ */
.marquee-strip {
  width: 100%;
  overflow: hidden;
  border-top: 1px solid var(--gray-800);
  border-bottom: 1px solid var(--gray-800);
  padding: 0.75rem 0;
  background: var(--gray-950);
}
.marquee-track {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  width: max-content;
  animation: marquee-scroll 28s linear infinite;
}
.marquee-strip:hover .marquee-track {
  animation-play-state: paused;
}
.marquee-item {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray-200);
  white-space: nowrap;
}
.marquee-dot {
  color: var(--gray-600);
  font-size: 0.5rem;
}
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── Extended Utilities ─────────────────────────────────────── */
.mb--24 { margin-bottom: 1.5rem; }
.mt--24 { margin-top: 1.5rem; }
.pb--60 { padding-bottom: 3.75rem; }
.color--white { color: var(--white); }
.two-col-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 5rem;
  align-items: start;
}
.hero-text--clamp {
  max-width: 340px;
  line-height: 1.4;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
}
.form-note {
  padding: 20px 24px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 6px;
  line-height: 1.9;
}
.border-bottom--none { border-bottom: none; }
.bg--white-black { background: var(--white); color: var(--black); }

/* ── Final contact.html utilities ─────────────────────────── */
.mt-6-block { margin-top: 6px; display: block; }
.form-note-pad { padding: 20px 24px; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.07); border-radius: 6px; line-height: 1.9; margin-bottom: 2rem; }

/* ── Final Contact Utilities ─────────────────────────────── */
.mt-6-block { margin-top: 6px; display: block; }
.link--white { color: var(--white); text-decoration: underline; text-underline-offset: 3px; }

/* ── Service Page Contact Form ───────────────────────────── */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.contact-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

@media (max-width: 600px) {
  .contact-form__row {
    grid-template-columns: 1fr;
  }
}

.contact-form__field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-form__label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray-500);
}

.contact-form__input {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--white);
  padding: 14px 18px;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s ease, background 0.2s ease;
  width: 100%;
  border-radius: 0;
  -webkit-appearance: none;
}

.contact-form__input::placeholder {
  color: var(--gray-600);
}

.contact-form__input:focus {
  border-color: rgba(255,255,255,0.35);
  background: rgba(255,255,255,0.05);
}

.contact-form__textarea {
  resize: vertical;
  min-height: 140px;
  line-height: 1.6;
}

.contact-form__footer {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  padding-top: 8px;
}

.section--border-top {
  border-top: 1px solid var(--gray-800);
}


/* ── Service prev/next navigation ─────────────────────────── */
.service-nav {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 0.75rem;
}
.service-nav__arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color 0.2s ease;
  -webkit-tap-highlight-color: transparent;
}
.service-nav__arrow:hover { color: #fff; }
.service-nav__arrow svg {
  width: 14px; height: 14px;
  flex-shrink: 0;
}
.service-nav__arrow--disabled {
  opacity: 0.2;
  pointer-events: none;
  cursor: default;
}
.service-nav__dots {
  display: flex;
  gap: 5px;
  align-items: center;
}
.service-nav__dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  transition: background 0.2s ease, transform 0.2s ease;
}
.service-nav__dot--active {
  background: #fff;
  transform: scale(1.3);
}
