/* ================================================================
   25Bit Echo — Stylesheet
   ================================================================ */

:root {
  --charcoal: #3d3d3d;
  --dark: #1d242c;
  --darker: #1d242c;
  --pink: #ff3090;
  --pink-dim: rgba(255, 31, 138, 0.12);
  --pink-glow: rgba(255, 31, 138, 0.25);
  --blue: #00e8ff;
  --blue-dim: rgba(0, 232, 255, 0.10);
  --blue-glow: rgba(0, 232, 255, 0.22);
  --white: #f5f5f0;
  --pale: #8a8a85;
  --glass: rgba(245, 245, 240, 0.04);
  --glass-border: rgba(245, 245, 240, 0.08);
  --font: 'DM Sans', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  font-weight: 400;
  background-color: var(--darker);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.4;
}

/* ── SKIP NAV ── */
.skip-nav {
  position: absolute;
  top: -100%;
  left: 24px;
  z-index: 200;
  background: var(--pink);
  color: var(--darker);
  font-family: var(--font);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 12px 20px;
  transition: top 0.15s ease;
}
.skip-nav:focus {
  top: 24px;
}

/* ── FOCUS STYLES (2.4.7) ── */
/* Remove browser default only where we supply our own */
*:focus { outline: none; }

/* Keyboard-only focus ring for all interactive elements */
*:focus-visible {
  outline: 2px solid var(--pink);
  outline-offset: 3px;
}

/* Form fields: shift to outline so it sits outside the border */
.form-group input:focus-visible,
.form-group textarea:focus-visible,
.form-group select:focus-visible {
  outline: 2px solid var(--pink);
  outline-offset: 0;
}

/* Submit button sits flush — offset outward */
.form-submit:focus-visible {
  outline: 2px solid var(--pink);
  outline-offset: 3px;
}

/* Skip-nav already moves into view on focus; reinforce with ring */
.skip-nav:focus-visible {
  outline: 2px solid var(--darker);
  outline-offset: 2px;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 48px;
  background: var(--darker);
  border-bottom: 1px solid rgba(245, 245, 240, 0.15);
  transition: padding 0.3s ease;
}
.nav-logo img {
  display: block;
  height: 32px;
  width: auto;
}
.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  font-family: var(--font);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--pale);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--white); }
.nav-cta {
  font-family: var(--font);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--pink);
  text-decoration: none;
  border: 1px solid rgba(255, 31, 138, 0.4);
  padding: 9px 22px;
  transition: all 0.2s ease;
}
.nav-cta:hover {
  background: var(--pink-dim);
  border-color: var(--pink);
}

/* ── SECTIONS ── */
section, footer {
  position: relative;
  z-index: 1;
}

/* ── HERO ── */
#hero {
  display: flex;
  flex-direction: column;
  padding: 90px 0 0;
  position: relative;
  overflow: hidden;
}
.hero-image-top {
  width: 100%;
  flex-shrink: 0;
}
.hero-image-top img {
  width: 100%;
  height: auto;
  display: block;
}
.hero-text {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  flex: 1;
  padding: 38px 48px 0;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}
.hero-eyebrow {
  font-family: var(--font);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--pink);
}
.hero-title {
  font-family: var(--font);
  font-size: clamp(60px, 6.5vw, 70px);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--white);
  max-width: 1200px;
  margin-bottom: 36px;
}
.hero-title em {
  font-style: italic;
  color: var(--pink);
  font-weight: 300;
}
.hero-sub {
  font-family: var(--font);
  font-size: 18px;
  font-weight: 400;
  color: var(--white);
  max-width: 1200px;
  line-height: 1.4;
  margin-bottom: 30px;
}
.hero-actions {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}
.btn-primary {
  font-family: var(--font);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--darker);
  background: var(--pink);
  padding: 16px 36px;
  transition: all 0.2s ease;
  display: inline-block;
}
.btn-primary:hover { background: #ff4da0; }
.btn-ghost {
  font-family: var(--font);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--pale);
  border-bottom: 1px solid rgba(138, 138, 133, 0.4);
  padding-bottom: 2px;
  transition: all 0.2s ease;
}
.btn-ghost:hover { color: var(--white); border-color: var(--white); }

/* Waveform — used in Tamsin section */
.wave-bar {
  width: 3px;
  border-radius: 2px;
  background: var(--pink);
  animation: wavePulse 1.6s ease-in-out infinite;
  opacity: 0.6;
}
@keyframes wavePulse {
  0%, 100% { transform: scaleY(0.25); }
  50% { transform: scaleY(1); }
}

/* ── DIVIDER ── */
.divider {
  width: 100%;
  height: 1px;
  background: var(--glass-border);
  max-width: 1200px;
  margin: 50px auto;
}

/* ── STUDIO SECTION ── */
#studio {
  padding: 0 48px 50px;
  max-width: 1200px;
  margin: 0 auto;
}

.studio-strands {
  display: flex;
  gap: 20px;
  margin-top: 32px;
}

/* ── PRIVACY SECTION ── */
#privacy,
#not-found {
  padding: 148px 48px 75px;
  max-width: 900px;
  margin: 0 auto;
}
.section-eyebrow {
  font-family: var(--font);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 24px;
}
.section-title {
  font-family: var(--font);
  font-size: clamp(32px, 3.8vw, 48px);
  font-weight: 600;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 28px;
  letter-spacing: -0.02em;
}
.section-title em {
  font-style: italic;
  color: var(--pink);
  font-weight: 300;
}
.section-body {
  font-family: var(--font);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.4;
  color: var(--white);
}
.section-body p + p { margin-top: 18px; }
.section-body h3 {
  font-family: var(--font);
  font-size: 20px;
  font-weight: 600;
  color: var(--white);
  margin-top: 40px;
  margin-bottom: 12px;
}
.section-body h4 {
  font-family: var(--font);
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
  margin-top: 28px;
  margin-bottom: 8px;
}
.section-body ul {
  padding-left: 20px;
  margin-top: 12px;
  margin-bottom: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.section-body ul li {
  color: var(--white);
  font-size: 18px;
  line-height: 1.5;
}
.section-body a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.section-body a:hover { opacity: 0.8; }


/* ── TAMSIN FEATURE ── */
#tamsin {
  padding: 50px 48px;
  background: linear-gradient(135deg, rgba(255, 31, 138, 0.06) 0%, transparent 60%);
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
}
.tamsin-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 440px;
  gap: 80px;
  align-items: center;
}
.tamsin-quote {
  font-family: var(--font);
  font-size: clamp(22px, 2.8vw, 36px);
  font-weight: 300;
  font-style: italic;
  line-height: 1.2;
  color: var(--white);
  border-left: 3px solid var(--pink);
  padding-left: 36px;
  margin-bottom: 36px;
}
.tamsin-desc {
  font-size: 18px;
  font-weight: 400;
  color: var(--white);
  line-height: 1.4;
  margin-bottom: 36px;
  padding-left: 39px;
}
.tamsin-genres {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-left: 39px;
}
/* ── LABEL TAGS (non-interactive) ── */
.label-tag {
  font-family: var(--font);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 0;
  border: none;
  background: none;
}
.label-tag::before {
  content: '';
  display: block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  flex-shrink: 0;
}
.label-tag--pink { color: var(--pink); }
.label-tag--pink::before { background: var(--pink); }
.label-tag--blue { color: var(--blue); }
.label-tag--blue::before { background: var(--blue); }
.label-tag--pale { color: var(--pale); }
.label-tag--pale::before { background: var(--pale); }
.service-card .label-tag { margin-bottom: 16px; }

/* Tamsin image panel */
.tamsin-visual {
  aspect-ratio: 3 / 4;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 232, 255, 0.2);
}
.tamsin-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.tamsin-visual-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px;
  background: linear-gradient(to top, rgba(13, 13, 13, 0.92) 0%, transparent 100%);
}
.tamsin-visual-name {
  font-family: var(--font);
  font-size: 32px;
  font-weight: 300;
  font-style: italic;
  color: var(--white);
  margin-bottom: 6px;
}
.tamsin-visual-title {
  font-family: var(--font);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--blue);
}
/* Waveform inside Tamsin panel */
.tamsin-wave {
  display: flex;
  align-items: center;
  gap: 2px;
  position: absolute;
  bottom: 88px;
  left: 32px;
  right: 32px;
  z-index: 1;
  opacity: 0.35;
}
.tamsin-wave .wave-bar { width: 2px; background: var(--blue); }

/* ── SERVICES ── */
#services {
  padding: 50px 48px;
  max-width: 1200px;
  margin: 0 auto;
}
.services-header {
  text-align: center;
  margin-bottom: 50px;
}
.services-tamsin-intro {
  max-width: 1200px;
  margin-bottom: 32px;
}
.services-tamsin-heading {
  font-family: var(--font);
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 600;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
.services-tamsin-heading em {
  font-style: italic;
  color: var(--white);
  font-weight: 300;
}
.services-tamsin-desc {
  font-size: 18px;
  font-weight: 400;
  color: var(--white);
  line-height: 1.4;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
}
.service-secondary {
  margin-top: 2px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  padding: 24px 40px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.service-secondary-label {
  font-family: var(--font);
  font-size: 18px;
  font-weight: 400;
  color: var(--pink);
  margin-bottom: 12px;
  letter-spacing: 0.01em;
}
.service-secondary-body {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.service-secondary-content {
  flex: 1;
}
.service-secondary-title {
  font-family: var(--font);
  font-size: 22px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}
.service-secondary-desc {
  font-size: 18px;
  font-weight: 400;
  color: var(--white);
  line-height: 1.4;
}
.service-secondary-link {
  color: var(--pink);
  border-color: rgba(255, 31, 138, 0.4);
  flex-shrink: 0;
  font-size: 11px;
  padding: 6px 14px;
}
.service-secondary-link:hover {
  background: var(--pink-dim);
  border-color: var(--pink);
}
.service-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(12px);
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}
.service-card:hover { background: rgba(245, 245, 240, 0.06); transform: translateY(-3px); }
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
}

/* Human narration — PINK-LED */
.service-card.pink::before { background: var(--pink); }
.service-card.pink .service-icon { color: var(--pink); }
.service-card.pink .service-num { color: var(--pink); }

/* AI voice — BLUE-LED */
.service-card.blue {
  background: rgba(0, 232, 255, 0.04);
  border-color: rgba(0, 232, 255, 0.15);
}
.service-card.blue:hover { background: rgba(0, 232, 255, 0.08); }
.service-card.blue::before { background: var(--blue); box-shadow: 0 0 16px rgba(0, 232, 255, 0.5); }
.service-card.blue .service-icon { color: var(--blue); }
.service-card.blue .service-num { color: var(--blue); }

/* Content and copywriting — pink-led (human) */
.service-card.pink-alt::before { background: linear-gradient(90deg, var(--pink), rgba(255, 31, 138, 0.4)); }
.service-card.pink-alt .service-icon { color: var(--pink); }
.service-card.pink-alt .service-num { color: var(--pink); }

.service-num {
  font-family: var(--font);
  font-size: 64px;
  font-weight: 700;
  line-height: 1;
  opacity: 0.08;
  position: absolute;
  top: 28px;
  right: 32px;
}
.service-icon { margin-bottom: 28px; }
.service-icon svg { width: 32px; height: 32px; }
.service-title {
  font-family: var(--font);
  font-size: 22px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 18px;
  line-height: 1.25;
  letter-spacing: -0.01em;
}
.service-desc {
  font-size: 18px;
  font-weight: 400;
  color: var(--white);
  line-height: 1.4;
  margin-bottom: 32px;
}
.service-link {
  font-family: var(--font);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border: 1px solid;
  transition: all 0.2s ease;
}
.service-card.pink .service-link,
.service-card.pink-alt .service-link {
  color: var(--pink);
  border-color: rgba(255, 31, 138, 0.4);
}
.service-card.pink .service-link:hover,
.service-card.pink-alt .service-link:hover {
  background: var(--pink-dim);
  border-color: var(--pink);
}
.service-card.blue .service-link {
  color: var(--blue);
  border-color: rgba(0, 232, 255, 0.4);
}
.service-card.blue .service-link:hover {
  background: var(--blue-dim);
  border-color: var(--blue);
}

/* ── ETHICS STRIP ── */
#ethics {
  padding: 50px 48px;
  background: linear-gradient(135deg, rgba(0, 232, 255, 0.05) 0%, var(--glass) 50%);
  border-top: 1px solid rgba(0, 232, 255, 0.15);
  border-bottom: 1px solid rgba(0, 232, 255, 0.15);
}
.ethics-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 80px;
}
.ethics-mark {
  font-family: var(--font);
  font-size: 80px;
  font-weight: 700;
  color: var(--blue);
  opacity: 0.4;
  flex-shrink: 0;
  line-height: 1;
}
.ethics-title {
  font-family: var(--font);
  font-size: 24px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 14px;
  line-height: 1.2;
  padding-left: 20px;
  border-left: 2px solid var(--blue);
  letter-spacing: -0.01em;
}
.ethics-body {
  font-size: 18px;
  font-weight: 400;
  color: var(--white);
  line-height: 1.4;
  max-width: 900px;
}

/* ── CONTACT ── */
#contact {
  padding: 50px 48px;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.contact-title {
  font-family: var(--font);
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 600;
  line-height: 1;
  color: var(--white);
  margin-bottom: 28px;
  letter-spacing: -0.02em;
}
.contact-title em {
  font-style: italic;
  color: var(--pink);
  font-weight: 300;
}
.contact-sub {
  font-size: 18px;
  font-weight: 400;
  color: var(--white);
  line-height: 1.4;
  max-width: 520px;
  margin: 0 auto 52px;
}
.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  max-width: 700px;
  margin: 0 auto;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.form-group { position: relative; }
.form-group.full { grid-column: 1 / -1; }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  color: var(--white);
  font-family: var(--font);
  font-size: 18px;
  font-weight: 400;
  padding: 18px 22px;
  transition: border-color 0.2s;
  appearance: none;
  resize: none;
}
.form-group input:focus-visible,
.form-group textarea:focus-visible,
.form-group select:focus-visible { border-color: var(--pink); }
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--pale); opacity: 0.6; }
.form-group select option { background: var(--darker); }
.form-group textarea { min-height: 140px; }
.field-error {
  display: block;
  margin-top: 6px;
  font-size: 14px;
  font-weight: 500;
  color: #ff6b6b;
  min-height: 0;
}
.field-error:empty { display: none; }
.form-group.has-error input,
.form-group.has-error textarea,
.form-group.has-error select {
  border-color: #ff6b6b;
  border-width: 2px;
}
.form-submit {
  grid-column: 1 / -1;
  margin-top: 2px;
  background: var(--pink);
  border: none;
  color: var(--darker);
  font-family: var(--font);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 20px;
  cursor: pointer;
  transition: background 0.2s;
  width: 100%;
}
.form-submit:hover { background: #ff4da0; }

/* ── FOOTER ── */
footer {
  padding: 48px;
  border-top: 1px solid var(--glass-border);
  background: rgba(13, 13, 13, 0.6);
  backdrop-filter: blur(12px);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}
.footer-logo img {
  display: block;
  height: 28px;
  width: auto;
  margin-bottom: 8px;
  opacity: 0.7;
}
.footer-tagline {
  font-family: var(--font);
  font-size: 12px;
  font-weight: 400;
  color: var(--pale);
  letter-spacing: 0.06em;
  margin-top: 5px;
}
.footer-links {
  display: flex;
  gap: 32px;
  list-style: none;
}
.footer-links a {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--pale);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--white); }
.footer-copy {
  font-size: 11px;
  color: var(--pale);
  letter-spacing: 0.06em;
}

/* ── ANIMATIONS ── */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-up-delay-1 { transition-delay: 0.1s; }
.fade-up-delay-2 { transition-delay: 0.2s; }
.fade-up-delay-3 { transition-delay: 0.3s; }

/* ── TAMSIN AUDIO PLAYER ── */
.tamsin-player {
  margin-top: 36px;
  padding-left: 39px;
}
.tamsin-player-label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}
.tamsin-player-heading {
  font-family: var(--font);
  font-size: 22px;
  font-weight: 600;
  color: var(--blue);
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.tamsin-player-controls {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(0, 232, 255, 0.05);
  border: 1px solid rgba(0, 232, 255, 0.15);
  padding: 16px 20px;
  margin-bottom: 16px;
}
.tamsin-play-btn {
  background: var(--blue);
  border: none;
  color: var(--darker);
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: opacity 0.2s;
}
.tamsin-play-btn:hover { opacity: 0.85; }
.tamsin-progress-wrap {
  flex: 1;
}
.tamsin-progress-bar {
  width: 100%;
  height: 3px;
  background: rgba(0, 232, 255, 0.15);
  cursor: pointer;
  margin-bottom: 8px;
  position: relative;
}
.tamsin-progress-fill {
  height: 100%;
  width: 0%;
  background: var(--blue);
  transition: width 0.1s linear;
}
.tamsin-player-times {
  display: flex;
  justify-content: space-between;
}
.tamsin-time-current,
.tamsin-time-total {
  font-family: var(--font);
  font-size: 10px;
  font-weight: 500;
  color: var(--pale);
  letter-spacing: 0.08em;
}
.tamsin-player-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.tamsin-player-cta {
  font-family: var(--font);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border: 1px solid;
  transition: all 0.2s ease;
}
.tamsin-player-cta--blue {
  color: var(--blue);
  border-color: rgba(0, 232, 255, 0.4);
}
.tamsin-player-cta--blue:hover {
  background: var(--blue-dim);
  border-color: var(--blue);
}
.tamsin-player-cta--pink {
  color: var(--pink);
  border-color: rgba(255, 31, 138, 0.4);
}
.tamsin-player-cta--pink:hover {
  background: var(--pink-dim);
  border-color: var(--pink);
}

@media (max-width: 960px) {
  .tamsin-player { padding-left: 0; }
  .tamsin-player-ctas { flex-direction: column; }
  .tamsin-player-cta { justify-content: center; }
}

/* ── VOICE PACKS ── */
#voice-packs {
  padding: 0 48px 50px;
  max-width: 1200px;
  margin: 0 auto;
}
.voice-packs-header {
  max-width: 1200px;
  margin-bottom: 50px;
}
.voice-packs-intro {
  font-size: 18px;
  font-weight: 400;
  color: var(--white);
  line-height: 1.4;
  margin-top: 20px;
}

/* ElevenLabs licensing block */
.voice-packs-elevenlabs {
  background: rgba(0, 232, 255, 0.04);
  border: 1px solid rgba(0, 232, 255, 0.15);
  padding: 40px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  margin-bottom: 50px;
}
.voice-packs-elevenlabs-title {
  font-family: var(--font);
  font-size: 22px;
  font-weight: 600;
  color: var(--white);
  margin: 12px 0;
  line-height: 1.25;
  letter-spacing: -0.01em;
}
.voice-packs-elevenlabs-desc {
  font-size: 18px;
  font-weight: 400;
  color: var(--white);
  line-height: 1.4;
  max-width: 560px;
}
.voice-packs-elevenlabs .voice-pack-btn {
  font-size: 18px;
}

/* Gumroad packs subheader */
.voice-packs-subheader {
  margin-bottom: 32px;
}
.voice-packs-subheading {
  font-family: var(--font);
  font-size: clamp(26px, 2.8vw, 36px);
  font-weight: 600;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.15;
  letter-spacing: -0.02em;
}
.voice-packs-subheading em {
  font-style: italic;
  color: var(--blue);
  font-weight: 300;
}
.voice-packs-subdesc {
  font-size: 18px;
  font-weight: 400;
  color: var(--white);
  line-height: 1.4;
}

.voice-packs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-bottom: 2px;
}
.voice-pack-card {
  background: rgba(0, 232, 255, 0.04);
  border: 1px solid rgba(0, 232, 255, 0.15);
  padding: 28px 28px;
  position: relative;
  transition: all 0.3s ease;
}
.voice-pack-card:hover {
  background: rgba(0, 232, 255, 0.08);
  transform: translateY(-3px);
}
.voice-pack-card--coming {
  background: var(--glass);
  border-color: var(--glass-border);
  opacity: 0.7;
}
.voice-pack-card--coming:hover {
  background: rgba(245, 245, 240, 0.06);
  opacity: 1;
}
.voice-pack-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.voice-pack-num {
  font-family: var(--font);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--blue);
  opacity: 0.5;
}
.voice-pack-icon {
  color: var(--blue);
  margin-bottom: 12px;
}
.voice-pack-icon svg {
  width: 28px;
  height: 28px;
}
.voice-pack-title {
  font-family: var(--font);
  font-size: 20px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.25;
  letter-spacing: -0.01em;
}
.voice-pack-desc {
  font-size: 18px;
  font-weight: 400;
  color: var(--white);
  line-height: 1.4;
  margin-bottom: 28px;
}
.voice-pack-btn {
  font-family: var(--font);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--blue);
  border: 1px solid rgba(0, 232, 255, 0.4);
  padding: 10px 20px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s ease;
}
.voice-pack-btn:hover {
  background: var(--blue-dim);
  border-color: var(--blue);
}
.voice-pack-btn--ghost {
  color: var(--pale);
  border-color: var(--glass-border);
}
.voice-pack-btn--ghost:hover {
  color: var(--white);
  background: var(--glass);
  border-color: rgba(245, 245, 240, 0.2);
}

/* Voice packs list */
.voice-packs-list {
  list-style: none;
  border-top: 1px solid rgba(0, 232, 255, 0.15);
  margin-bottom: 24px;
}
.voice-pack-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  border-bottom: 1px solid rgba(0, 232, 255, 0.15);
  gap: 24px;
}
.voice-pack-item-info {
  display: flex;
  align-items: center;
  gap: 20px;
}
.voice-pack-item-title {
  font-family: var(--font);
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: -0.01em;
}
.voice-packs-more {
  font-size: 16px;
  font-weight: 400;
  color: var(--pale);
  line-height: 1.4;
}
.voice-packs-more a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Follow strip */
.voice-packs-follow {
  background: rgba(0, 232, 255, 0.04);
  border: 1px solid rgba(0, 232, 255, 0.15);
  padding: 40px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  margin-bottom: 2px;
}
.voice-packs-follow-title {
  font-family: var(--font);
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}
.voice-packs-follow-desc {
  font-size: 14px;
  font-weight: 400;
  color: var(--pale);
  line-height: 1.4;
}
.gumroad-follow-form {
  display: flex;
  gap: 0;
  flex-shrink: 0;
}
.gumroad-follow-form input[type="email"] {
  background: var(--glass);
  border: 1px solid rgba(0, 232, 255, 0.3);
  border-right: none;
  color: var(--white);
  font-family: var(--font);
  font-size: 14px;
  font-weight: 400;
  padding: 12px 20px;
  outline: none;
  width: 260px;
  transition: border-color 0.2s;
}
.gumroad-follow-form input[type="email"]::placeholder {
  color: var(--pale);
  opacity: 0.6;
}
.gumroad-follow-form input[type="email"]:focus {
  border-color: rgba(0, 232, 255, 0.6);
}
.gumroad-follow-form button {
  font-family: var(--font);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: var(--blue);
  color: var(--darker);
  border: none;
  padding: 12px 24px;
  cursor: pointer;
  transition: opacity 0.2s;
  white-space: nowrap;
}
.gumroad-follow-form button:hover {
  opacity: 0.85;
}
.gumroad-follow-success {
  font-size: 14px;
  color: var(--blue);
  line-height: 1.5;
}

/* Collaboration CTA */
.voice-packs-collab {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  padding: 36px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}
.voice-packs-collab-text {
  font-size: 18px;
  font-weight: 400;
  color: var(--white);
  line-height: 1.4;
  max-width: 600px;
}
.voice-packs-collab-link {
  font-family: var(--font);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--pink);
  border: 1px solid rgba(255, 31, 138, 0.4);
  padding: 10px 20px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  transition: all 0.2s ease;
}
.voice-packs-collab-link:hover {
  background: var(--pink-dim);
  border-color: var(--pink);
}

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  nav { padding: 18px 24px; }
  .nav-links { display: none; }
  .nav-cta { display: none; }
  #hero { padding-top: 120px; }
  .hero-text { padding: 40px 24px 0; }
  #studio { padding: 0 24px 50px; }
  #privacy, #not-found { padding: 148px 24px 50px; }
  .tamsin-inner { grid-template-columns: 1fr; padding: 0; gap: 52px; }
  #tamsin { padding: 50px 24px; }
  .tamsin-visual { aspect-ratio: 4 / 3; max-height: 360px; }
  #services { padding: 50px 24px; }
  .services-grid { grid-template-columns: 1fr; }
  .service-secondary { padding: 48px 40px; }
  .service-secondary-body { flex-direction: column; align-items: flex-start; gap: 16px; }
  .ethics-inner { flex-direction: column; gap: 24px; padding: 0; }
  #ethics { padding: 50px 24px; }
  #contact { padding: 50px 24px; }
  .contact-form { grid-template-columns: 1fr; }
  .form-submit { font-size: 16px; }
  footer { padding: 36px 24px; }
  .footer-inner { flex-direction: column; gap: 20px; text-align: center; }
  .footer-links { flex-wrap: wrap; justify-content: center; gap: 20px; }
  #voice-packs { padding: 0 24px 50px; }
  .voice-packs-grid { grid-template-columns: 1fr; }
  .voice-packs-follow { flex-direction: column; align-items: flex-start; gap: 24px; padding: 32px 24px; }
  .gumroad-follow-form { width: 100%; }
  .gumroad-follow-form input[type="email"] { width: 100%; }
  .voice-packs-collab { flex-direction: column; gap: 20px; padding: 32px 24px; }
  .voice-packs-elevenlabs { flex-direction: column; align-items: flex-start; gap: 24px; padding: 48px 40px; margin-bottom: 32px; }
  .voice-packs-subheader { margin-bottom: 24px; }
  .voice-pack-item { flex-direction: column; align-items: flex-start; gap: 16px; }
}
