/* =============================================================
   NY EXECUTIVE PODCAST — Brand System
   Wall Street premium: deep navy, gold accents, editorial serif
   ============================================================= */

:root {
  /* Brand palette */
  --ink:        #0A1428;        /* primary deep navy */
  --ink-2:      #111c34;        /* slightly lifted navy */
  --ink-3:      #1a2747;        /* card surface */
  --ink-line:   #243355;        /* hairline borders */
  --gold:       #C9A24B;        /* signature accent */
  --gold-soft:  #d8b56c;
  --gold-deep:  #a47f2e;
  --ivory:      #F4EFE6;        /* warm off-white */
  --paper:      #FBF8F2;        /* page background light moments */
  --text:       #E6E1D6;        /* body on dark */
  --text-mute:  #9da6bd;
  --text-faint: #5d6680;

  /* Typography */
  --font-display: "Cormorant Garamond", "Playfair Display", "Times New Roman", serif;
  --font-sans:    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-mono:    "JetBrains Mono", ui-monospace, monospace;

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

  /* Type scale */
  --text-xs:   0.75rem;
  --text-sm:   0.875rem;
  --text-base: 1rem;
  --text-lg:   1.125rem;
  --text-xl:   clamp(1.5rem, 2.5vw, 2.25rem);
  --text-2xl:  clamp(2rem, 4vw, 3.5rem);
  --text-hero: clamp(2.75rem, 7vw, 6rem);

  /* Container */
  --container: 1240px;
  --container-narrow: 880px;

  /* Effects */
  --radius-sm: 4px;
  --radius:    8px;
  --shadow-lg: 0 30px 80px -20px rgba(0,0,0,0.6);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background: var(--ink);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: var(--text-base);
  line-height: 1.6;
  font-weight: 400;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color .25s var(--ease); }

/* ================== TYPOGRAPHY ================== */
.display { font-family: var(--font-display); font-weight: 500; letter-spacing: -0.01em; line-height: 1.05; }
.eyebrow {
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}
.eyebrow.muted { color: var(--text-mute); }

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 500; line-height: 1.1; letter-spacing: -0.01em; }
h1 { font-size: var(--text-hero); }
h2 { font-size: var(--text-2xl); }
h3 { font-size: var(--text-xl); }
h4 { font-size: var(--text-lg); font-family: var(--font-sans); font-weight: 600; letter-spacing: 0; }

p { color: var(--text); }
.lede { font-size: var(--text-lg); color: var(--text); max-width: 60ch; }

/* ================== LAYOUT ================== */
.container { max-width: var(--container); margin: 0 auto; padding: 0 clamp(1.25rem, 4vw, 2.5rem); }
.container-narrow { max-width: var(--container-narrow); margin: 0 auto; padding: 0 clamp(1.25rem, 4vw, 2.5rem); }
section { padding: clamp(4rem, 9vw, 8rem) 0; position: relative; }

/* ================== HEADER ================== */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(10, 20, 40, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease), background .3s var(--ease);
}
.site-header.scrolled { border-bottom-color: var(--ink-line); background: rgba(10, 20, 40, 0.95); }

.header-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 1rem clamp(1.25rem, 4vw, 2.5rem);
  display: flex; align-items: center; justify-content: space-between;
  gap: 2rem;
}

.brand {
  display: flex; align-items: center; gap: 0.65rem;
  color: var(--ivory);
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  font-weight: 500;
}
.brand .brand-mark { width: 36px; height: 36px; flex-shrink: 0; }
.brand .brand-name { line-height: 1.05; }
.brand .brand-name b { display: block; font-weight: 500; }
.brand .brand-name span { display: block; font-family: var(--font-sans); font-size: 0.6rem; letter-spacing: 0.32em; color: var(--gold); text-transform: uppercase; margin-top: 2px; }

.nav { display: flex; align-items: center; gap: 2rem; }
.nav-links { display: flex; gap: 1.75rem; list-style: none; }
.nav-links a {
  font-size: var(--text-sm);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-mute);
  font-weight: 500;
  position: relative;
  padding: 0.25rem 0;
}
.nav-links a:hover, .nav-links a.active { color: var(--ivory); }
.nav-links a.active::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -4px;
  height: 1px; background: var(--gold);
}

.btn-nav {
  padding: 0.7rem 1.4rem;
  background: var(--gold);
  color: var(--ink) !important;
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.04em;
  border-radius: var(--radius-sm);
  transition: background .25s var(--ease), transform .25s var(--ease);
}
.btn-nav:hover { background: var(--gold-soft); transform: translateY(-1px); }

.menu-toggle { display: none; background: none; border: none; color: var(--ivory); cursor: pointer; padding: 0.5rem; }

/* ================== HERO ================== */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex; align-items: center;
  padding: 8rem 0 6rem;
  overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: url('../images/hero.png') center/cover no-repeat;
  filter: brightness(0.55) saturate(1.05);
  z-index: 0;
}
.hero::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,20,40,.55) 0%, rgba(10,20,40,.85) 100%),
              radial-gradient(ellipse at 20% 50%, rgba(10,20,40,0) 0%, rgba(10,20,40,.6) 70%);
  z-index: 1;
}
.hero .container { position: relative; z-index: 2; }

.hero-content { max-width: 920px; }
.hero h1 {
  color: var(--ivory);
  margin: 1.25rem 0 1.5rem;
  font-weight: 500;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold);
  font-weight: 400;
}
.hero .lede {
  color: var(--text);
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  max-width: 56ch;
  margin-bottom: 2.5rem;
}

.cta-row { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; }

.btn {
  display: inline-flex; align-items: center; gap: 0.6rem;
  padding: 1rem 1.85rem;
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all .3s var(--ease);
  font-family: var(--font-sans);
}
.btn-primary { background: var(--gold); color: var(--ink); }
.btn-primary:hover { background: var(--gold-soft); transform: translateY(-2px); box-shadow: 0 12px 30px -8px rgba(201,162,75,0.4); }
.btn-ghost { color: var(--ivory); border-color: var(--ink-line); background: transparent; }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

.btn .arrow { transition: transform .3s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }

/* hero stats strip */
.hero-stats {
  margin-top: 4rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--ink-line);
  padding-top: 2rem;
}
.hero-stats .stat { padding-right: 1.5rem; }
.hero-stats .stat:not(:last-child) { border-right: 1px solid var(--ink-line); }
.hero-stats .num { font-family: var(--font-display); font-size: clamp(1.6rem, 3vw, 2.4rem); color: var(--ivory); line-height: 1; }
.hero-stats .num em { color: var(--gold); font-style: normal; }
.hero-stats .lbl { font-size: var(--text-xs); letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-mute); margin-top: 0.5rem; }

/* ticker */
.ticker {
  background: var(--gold);
  color: var(--ink);
  padding: 0.85rem 0;
  overflow: hidden;
  position: relative;
  border-top: 1px solid var(--gold-deep);
  border-bottom: 1px solid var(--gold-deep);
}
.ticker-track {
  display: flex;
  gap: 4rem;
  white-space: nowrap;
  animation: ticker 38s linear infinite;
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.ticker-track span { display: inline-flex; align-items: center; gap: 1.5rem; }
.ticker-track .dot { width: 6px; height: 6px; background: var(--ink); border-radius: 50%; }
@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ================== PRESS / AS SEEN IN ================== */
.press {
  background: var(--ink-2);
  border-block: 1px solid var(--ink-line);
  padding: 3rem 0;
}
.press-inner { display: flex; align-items: center; gap: 3rem; flex-wrap: wrap; justify-content: center; }
.press-label { font-size: var(--text-xs); letter-spacing: 0.22em; text-transform: uppercase; color: var(--text-mute); }
.press-logos { display: flex; gap: clamp(2rem, 5vw, 4.5rem); flex-wrap: wrap; align-items: center; justify-content: center; }
.press-logos .logo {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--ivory);
  font-weight: 500;
  letter-spacing: 0.02em;
  opacity: .75;
  transition: opacity .25s var(--ease);
}
.press-logos .logo:hover { opacity: 1; }
.press-logos .logo.sans { font-family: var(--font-sans); font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; font-size: 0.95rem; }

/* ================== WHAT WE DO ================== */
.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.value-card {
  background: var(--ink-2);
  border: 1px solid var(--ink-line);
  padding: 2.5rem;
  border-radius: var(--radius);
  position: relative;
  transition: border-color .3s var(--ease), transform .3s var(--ease);
}
.value-card:hover { border-color: var(--gold); transform: translateY(-4px); }
.value-card .num {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--gold);
  font-style: italic;
  display: block;
  margin-bottom: 1.25rem;
  font-weight: 400;
}
.value-card h3 {
  font-family: var(--font-sans);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--ivory);
  margin-bottom: 0.75rem;
}
.value-card p { color: var(--text-mute); font-size: 0.95rem; }

/* ================== SECTION HEADERS ================== */
.section-head { margin-bottom: 3.5rem; max-width: 760px; }
.section-head h2 { color: var(--ivory); margin: 1rem 0 1rem; }
.section-head p { color: var(--text-mute); font-size: var(--text-lg); max-width: 60ch; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head.center p { margin-left: auto; margin-right: auto; }

/* ================== TESTIMONIALS ================== */
.testimonials-section { background: var(--ink-2); }
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.testimonial {
  background: var(--ink);
  border: 1px solid var(--ink-line);
  padding: 2.5rem;
  border-radius: var(--radius);
  position: relative;
}
.testimonial::before {
  content: '"';
  position: absolute;
  top: 0.5rem; left: 1.5rem;
  font-family: var(--font-display);
  font-size: 6rem;
  color: var(--gold);
  opacity: 0.25;
  line-height: 1;
}
.testimonial .stars { color: var(--gold); margin-bottom: 1rem; font-size: 0.85rem; letter-spacing: 0.2em; }
.testimonial .quote {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-style: italic;
  line-height: 1.45;
  color: var(--ivory);
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}
.testimonial .author {
  border-top: 1px solid var(--ink-line);
  padding-top: 1.25rem;
  font-size: var(--text-sm);
}
.testimonial .author b { color: var(--ivory); font-weight: 600; display: block; }
.testimonial .author span { color: var(--text-mute); font-size: var(--text-xs); }

/* ================== STREAMING / STATS ================== */
.stats-section { background: var(--ink); border-top: 1px solid var(--ink-line); border-bottom: 1px solid var(--ink-line); }
.platform-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; }
.platform {
  padding: 2.5rem;
  border-right: 1px solid var(--ink-line);
}
.platform:last-child { border-right: none; }
.platform .name {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.platform h3 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: var(--ivory);
  margin-bottom: 1rem;
  font-weight: 500;
}
.platform ul { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; }
.platform li { color: var(--text-mute); font-size: 0.95rem; padding-left: 1rem; position: relative; }
.platform li::before {
  content: ''; position: absolute; left: 0; top: 0.6rem;
  width: 4px; height: 4px;
  background: var(--gold); border-radius: 50%;
}

/* ================== FEATURE BLOCK / TIMES SQUARE ================== */
.feature-block { padding: 0; }
.feature-block .grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 0;
  align-items: stretch;
}
.feature-block .image {
  background: url('../images/times-square.png') center/cover no-repeat;
  min-height: 520px;
}
.feature-block .text {
  background: var(--ink-2);
  padding: clamp(3rem, 6vw, 5rem);
  display: flex; flex-direction: column; justify-content: center;
}
.feature-block .text h2 { color: var(--ivory); margin: 1rem 0 1.25rem; }
.feature-block .text p { color: var(--text-mute); margin-bottom: 1rem; }
.feature-block .text .btn { margin-top: 1.5rem; align-self: flex-start; }

/* ================== CTA BAND ================== */
.cta-band {
  background: linear-gradient(180deg, var(--ink) 0%, var(--ink-2) 100%);
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: ''; position: absolute; inset: 0;
  background: url('../images/skyline.png') center/cover no-repeat;
  opacity: 0.15;
}
.cta-band .inner { position: relative; z-index: 1; text-align: center; padding: clamp(4rem, 8vw, 6rem) 0; }
.cta-band h2 { color: var(--ivory); margin: 1rem auto 1.5rem; max-width: 22ch; }
.cta-band p { color: var(--text-mute); max-width: 50ch; margin: 0 auto 2.5rem; font-size: var(--text-lg); }

/* ================== FOOTER ================== */
.site-footer {
  background: #060d1c;
  border-top: 1px solid var(--ink-line);
  padding: 5rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}
.footer-brand { max-width: 360px; }
.footer-brand .brand { color: var(--ivory); margin-bottom: 1.25rem; }
.footer-brand p { color: var(--text-mute); font-size: 0.9rem; line-height: 1.65; }
.footer-col h4 { font-size: 0.75rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.25rem; font-family: var(--font-sans); font-weight: 600; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; }
.footer-col a { color: var(--text-mute); font-size: 0.9rem; }
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid var(--ink-line);
  padding-top: 2rem;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1rem;
  font-size: 0.8rem;
  color: var(--text-faint);
}

/* ================== INTERIOR PAGES ================== */
.page-hero {
  padding: 12rem 0 5rem;
  background: linear-gradient(180deg, var(--ink) 0%, var(--ink-2) 100%);
  border-bottom: 1px solid var(--ink-line);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: url('../images/skyline.png') center/cover no-repeat;
  opacity: 0.12;
}
.page-hero .inner { position: relative; z-index: 1; max-width: 760px; }
.page-hero h1 {
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  color: var(--ivory);
  margin: 1.25rem 0 1.5rem;
}
.page-hero p { color: var(--text-mute); font-size: var(--text-lg); max-width: 60ch; }

/* prose / about page */
.prose {
  max-width: 720px;
  margin: 0 auto;
}
.prose p {
  font-size: 1.1rem;
  line-height: 1.75;
  color: var(--text);
  margin-bottom: 1.5rem;
}
.prose p strong { color: var(--ivory); font-weight: 600; }
.prose h3 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: var(--ivory);
  margin: 3rem 0 1.25rem;
  font-weight: 500;
}
.prose ul { padding-left: 0; margin: 1.5rem 0; list-style: none; }
.prose ul li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 1rem;
  color: var(--text);
  line-height: 1.65;
}
.prose ul li::before {
  content: ''; position: absolute; left: 0; top: 0.65rem;
  width: 12px; height: 1px; background: var(--gold);
}
.prose ul li strong { color: var(--ivory); }

/* hosts page */
.host-card {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 3rem;
  padding: 4rem 0;
  border-bottom: 1px solid var(--ink-line);
  align-items: start;
}
.host-card:last-child { border-bottom: none; }
.host-card.reverse { grid-template-columns: 1fr 360px; }
.host-card.reverse .host-image { order: 2; }
.host-image {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--ink-line);
  box-shadow: var(--shadow-lg);
}
.host-image img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 3/4; }
.host-info h2 {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 4vw, 3.25rem);
  color: var(--ivory);
  margin: 0.75rem 0 1.5rem;
}
.host-info .role { font-size: var(--text-xs); letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); }
.host-info p { color: var(--text); margin-bottom: 1.25rem; font-size: 1.05rem; line-height: 1.7; }
.credit-list {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem 2rem;
  list-style: none;
}
.credit-list li {
  font-size: 0.875rem;
  color: var(--text-mute);
  padding: 0.5rem 0;
  border-top: 1px solid var(--ink-line);
}
.celebrity-list { color: var(--gold); font-style: italic; font-family: var(--font-display); font-size: 1.15rem; line-height: 1.6; }

/* services */
.services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.service-card {
  background: var(--ink-2);
  border: 1px solid var(--ink-line);
  border-radius: var(--radius);
  padding: 2.5rem;
  position: relative;
  transition: all .35s var(--ease);
  display: flex; flex-direction: column;
}
.service-card:hover { border-color: var(--gold); transform: translateY(-4px); }
.service-card .icon {
  width: 48px; height: 48px;
  border: 1px solid var(--gold);
  border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.65rem;
  color: var(--ivory);
  margin-bottom: 0.75rem;
  font-weight: 500;
}
.service-card p { color: var(--text-mute); font-size: 0.95rem; flex: 1; margin-bottom: 1.5rem; }
.service-price {
  border-top: 1px solid var(--ink-line);
  padding-top: 1.25rem;
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--gold);
  letter-spacing: 0.02em;
}
.service-price small { font-family: var(--font-sans); font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-mute); display: block; margin-bottom: 0.25rem; }

.disclaimer { font-size: var(--text-xs); color: var(--text-faint); text-align: center; margin-top: 3rem; font-style: italic; }

/* listen / archive */
.action-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; max-width: 900px; margin: 0 auto; }
.action-card {
  background: var(--ink-2);
  border: 1px solid var(--ink-line);
  padding: 3rem 2.5rem;
  border-radius: var(--radius);
  text-align: center;
  transition: all .3s var(--ease);
  display: block;
}
.action-card:hover { border-color: var(--gold); transform: translateY(-4px); background: var(--ink-3); }
.action-card .num { font-family: var(--font-display); color: var(--gold); font-size: 2.5rem; font-style: italic; line-height: 1; }
.action-card h3 { font-family: var(--font-sans); color: var(--ivory); font-size: 1.25rem; margin: 1rem 0 0.75rem; font-weight: 600; }
.action-card p { color: var(--text-mute); font-size: 0.9rem; margin-bottom: 1.5rem; }
.action-card .btn { margin-top: 0.5rem; }

/* contact form */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.contact-info h3 { font-family: var(--font-display); font-size: 1.75rem; color: var(--ivory); margin-bottom: 1.5rem; }
.contact-info p { color: var(--text-mute); margin-bottom: 2rem; font-size: 1.05rem; line-height: 1.7; }
.contact-info .info-item { padding: 1.25rem 0; border-top: 1px solid var(--ink-line); }
.contact-info .info-item:last-child { border-bottom: 1px solid var(--ink-line); }
.contact-info .info-label { font-size: var(--text-xs); letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.4rem; }
.contact-info .info-value { color: var(--ivory); font-size: 1.05rem; }

form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.field { display: flex; flex-direction: column; gap: 0.5rem; }
.field label { font-size: var(--text-xs); letter-spacing: 0.22em; text-transform: uppercase; color: var(--text-mute); font-weight: 600; }
.field input, .field textarea, .field select {
  background: var(--ink-2);
  border: 1px solid var(--ink-line);
  border-radius: var(--radius-sm);
  padding: 0.95rem 1rem;
  color: var(--ivory);
  font-family: var(--font-sans);
  font-size: 1rem;
  transition: border-color .25s var(--ease);
}
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--gold); }
.field textarea { resize: vertical; min-height: 140px; }
.form-note { font-size: 0.75rem; color: var(--text-faint); margin-top: 0.5rem; }

/* terms page */
.terms-content { max-width: 760px; margin: 0 auto; }
.terms-content p, .terms-content h3 { color: var(--text); }
.terms-content h3 { color: var(--ivory); margin-top: 2.5rem; margin-bottom: 1rem; font-family: var(--font-display); font-size: 1.5rem; }
.terms-content .meta { color: var(--text-mute); font-size: var(--text-sm); margin-bottom: 2.5rem; padding-bottom: 1.5rem; border-bottom: 1px solid var(--ink-line); }

/* ================== RESPONSIVE ================== */
@media (max-width: 600px) {
  .btn-nav { display: none; }
  .brand .brand-name { white-space: nowrap; }
}

@media (max-width: 960px) {
  .nav-links { display: none; }
  .menu-toggle { display: block; }
  .nav { gap: 0.75rem; }
  .btn-nav { padding: 0.55rem 0.9rem; font-size: 0.75rem; white-space: nowrap; }
  .brand .brand-name b { font-size: 0.95rem; }
  .brand .brand-name span { font-size: 0.55rem; }
  .header-inner { gap: 0.75rem; padding: 0.85rem 1rem; }
  .brand .brand-mark { width: 32px; height: 32px; }

  .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 2rem 0; }
  .hero-stats .stat:nth-child(2) { border-right: none; }

  .value-grid, .testimonial-grid, .platform-grid, .services-grid { grid-template-columns: 1fr; }
  .platform { border-right: none; border-bottom: 1px solid var(--ink-line); }
  .platform:last-child { border-bottom: none; }

  .feature-block .grid { grid-template-columns: 1fr; }
  .feature-block .image { min-height: 300px; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .footer-brand { grid-column: 1 / -1; }

  .host-card, .host-card.reverse { grid-template-columns: 1fr; gap: 2rem; }
  .host-card.reverse .host-image { order: 0; }
  .host-image { max-width: 320px; }
  .credit-list { grid-template-columns: 1fr; }

  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .form-row { grid-template-columns: 1fr; }
  .action-cards { grid-template-columns: 1fr; }
}

/* mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--ink);
  z-index: 99;
  display: none;
  flex-direction: column;
  padding: 6rem 2rem 2rem;
  gap: 1rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  display: block;
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: var(--ivory);
  padding: 1rem 0;
  border-bottom: 1px solid var(--ink-line);
}
.mobile-menu a:hover { color: var(--gold); }

/* fade-in on scroll — only applies when JS is active */
html.js-enabled .reveal { opacity: 0; transform: translateY(24px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
html.js-enabled .reveal.visible { opacity: 1; transform: none; }
