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

:root {
  --bg: #070a12;
  --bg-soft: #0c1020;
  --panel: #11172a;
  --panel-2: #151c33;
  --text: #f5f8ff;
  --muted: #9aa6bf;
  --line: rgba(255, 255, 255, 0.08);
  --shadow: 0 22px 70px rgba(0, 0, 0, 0.35);
  --accent: #ff5a3d;
  --accent-2: #ff9a4a;
  --accent-soft: rgba(255, 90, 61, 0.15);
  --tech: #14d4ff;
  --tech-2: #5a7cff;
  --tech-soft: rgba(20, 212, 255, 0.14);
  --radius: 24px;
  --radius-sm: 18px;
  --container: 1200px;
  --header-h: 92px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 18px);
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background:
    radial-gradient(circle at top left, rgba(255, 90, 61, 0.13), transparent 36%),
    radial-gradient(circle at bottom right, rgba(20, 212, 255, 0.12), transparent 30%),
    linear-gradient(180deg, #050810 0%, #060914 100%);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(circle at center, black 0%, transparent 72%);
  opacity: 0.32;
}

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

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

button,
a,
input,
textarea {
  font: inherit;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

p {
  margin: 0;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  font-family: 'Space Grotesk', sans-serif;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.container {
  width: min(var(--container), calc(100% - 2rem));
  margin-inline: auto;
}

.section-pad {
  padding-top: 116px;
}

.section {
  padding: 108px 0;
  position: relative;
}

.section-header {
  max-width: 760px;
  margin: 0 auto 44px;
  text-align: center;
}

.section-header--left {
  margin-left: 0;
  margin-right: auto;
  text-align: left;
}

.section-header h2 {
  font-size: clamp(2rem, 4vw, 3.45rem);
  margin: 16px 0 18px;
}

.section-header p {
  font-size: 1.02rem;
  color: var(--muted);
  max-width: 64ch;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-soft);
  border: 1px solid rgba(255, 90, 61, 0.22);
}

.section-tag--cool {
  color: var(--tech);
  background: var(--tech-soft);
  border-color: rgba(20, 212, 255, 0.22);
}

.section-tag--warm {
  color: #ffcf7c;
}

.eyebrow,
.panel-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.74rem;
  font-weight: 700;
}

.panel-kicker {
  color: var(--muted);
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  backdrop-filter: blur(18px);
  transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.site-header.is-scrolled {
  background: rgba(6, 9, 18, 0.88);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.25);
}

.nav-shell {
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  position: relative;
  z-index: 2;
}

.brand img {
  width: min(240px, 54vw);
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-link {
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 600;
  transition: color 0.2s ease;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--tech));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.nav-link:hover,
.nav-link.is-active {
  color: var(--text);
}

.nav-link:hover::after,
.nav-link.is-active::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  cursor: pointer;
  padding: 0;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  margin: 4px auto;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle.is-open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
  box-shadow: none;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: white;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 16px 36px rgba(255, 90, 61, 0.22);
}

.btn-secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.1);
}

.btn-secondary:hover {
  border-color: rgba(20, 212, 255, 0.5);
  background: rgba(20, 212, 255, 0.06);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(18px);
  opacity: 0.9;
}

.hero-orb--one {
  top: 112px;
  left: -60px;
  width: 160px;
  height: 160px;
  background: radial-gradient(circle, rgba(255, 154, 74, 0.18) 0%, transparent 70%);
}

.hero-orb--two {
  top: 160px;
  right: 14%;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(20, 212, 255, 0.11) 0%, transparent 72%);
}

.hero-orb--three {
  right: 42%;
  bottom: 90px;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(255, 90, 61, 0.18) 0%, transparent 72%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 84px 84px;
  opacity: 0.18;
  mask-image: radial-gradient(circle at center, black 0%, transparent 72%);
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(24px);
}

.hero-glow--warm {
  top: 60px;
  right: -180px;
  width: 540px;
  height: 540px;
  background: radial-gradient(circle, rgba(255, 90, 61, 0.24) 0%, transparent 68%);
}

.hero-glow--cool {
  bottom: -220px;
  left: -140px;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(20, 212, 255, 0.16) 0%, transparent 72%);
}

.hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
  gap: 40px;
  align-items: center;
  min-height: calc(100vh - 116px);
  padding: 56px 0 46px;
}

.hero-copy h1 {
  font-size: clamp(3rem, 6.4vw, 5.8rem);
  margin: 18px 0 22px;
  max-width: 10ch;
}

.hero-text {
  font-size: 1.08rem;
  color: var(--muted);
  max-width: 60ch;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-badges li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted);
  font-size: 0.92rem;
}

.hero-badges i {
  color: var(--tech);
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.hero-metric {
  padding: 18px 18px 16px;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.18);
}

.hero-metric strong {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.08rem;
  margin-bottom: 6px;
  color: var(--text);
}

.hero-metric span {
  display: block;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.45;
}

.hero-panel {
  display: grid;
  gap: 16px;
}

.hero-panel--feature {
  gap: 18px;
}

.hero-panel__card,
.about-card,
.service-card,
.cta-box {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
}

.hero-panel__card {
  border-radius: var(--radius);
  padding: 26px;
}

.hero-panel__card--focus {
  min-height: 230px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background:
    radial-gradient(circle at top right, rgba(255, 90, 61, 0.18), transparent 38%),
    linear-gradient(180deg, rgba(17, 23, 42, 0.95), rgba(12, 16, 32, 0.95));
}

.hero-panel__card h2 {
  font-size: clamp(1.5rem, 2vw, 2rem);
  margin: 14px 0 10px;
}

.hero-panel__card p {
  color: var(--muted);
}

.hero-panel__stack {
  display: grid;
  gap: 14px;
}

.hero-panel__stack--split {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.hero-feature {
  position: relative;
  min-height: 430px;
  border-radius: calc(var(--radius) + 4px);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: #0b1020;
}

.hero-feature img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-feature__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 8, 15, 0.12) 0%, rgba(5, 8, 15, 0.48) 48%, rgba(5, 8, 15, 0.92) 100%),
    radial-gradient(circle at top right, rgba(255, 90, 61, 0.18), transparent 32%);
}

.hero-feature__content {
  position: absolute;
  inset: auto 0 0;
  padding: 28px;
  z-index: 1;
}

.hero-feature__content h2 {
  font-size: clamp(1.45rem, 2.4vw, 2.2rem);
  margin: 12px 0 10px;
  max-width: 14ch;
}

.hero-feature__content p {
  max-width: 34ch;
  color: rgba(245, 248, 255, 0.82);
}

.mini-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
  border-radius: var(--radius-sm);
  padding: 18px 18px 18px 16px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
}

.mini-card h3 {
  font-size: 1rem;
  margin-bottom: 4px;
}

.mini-card p,
.about-card p,
.service-card p,
.portfolio-card__title,
.cta-box p,
.footer-brand p,
.footer-col a,
.footer-bottom p {
  color: var(--muted);
}

.mini-card__icon,
.service-icon {
  width: 48px;
  height: 48px;
  border-radius: 15px;
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  flex: 0 0 auto;
}

.mini-card__icon--warm,
.service-card--warm .service-icon {
  background: rgba(255, 90, 61, 0.14);
  color: #ffb39c;
  border: 1px solid rgba(255, 90, 61, 0.18);
}

.mini-card__icon--cool,
.service-card--cool .service-icon {
  background: rgba(20, 212, 255, 0.14);
  color: #8fefff;
  border: 1px solid rgba(20, 212, 255, 0.18);
}

.mini-card__icon--gold {
  background: rgba(255, 192, 109, 0.12);
  color: #ffd39a;
  border: 1px solid rgba(255, 192, 109, 0.18);
}

.section--about {
  background: linear-gradient(180deg, rgba(9, 12, 22, 0.55), rgba(9, 12, 22, 0.88));
}

.section--studio {
  background:
    radial-gradient(circle at top right, rgba(90, 124, 255, 0.08), transparent 32%),
    linear-gradient(180deg, rgba(8, 10, 18, 0.96), rgba(12, 16, 32, 0.92));
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 20px;
}

.about-card {
  border-radius: var(--radius);
  padding: 28px;
}

.about-card--statement {
  grid-column: span 5;
}

.about-card:nth-child(2) {
  grid-column: span 4;
}

.about-card--highlight {
  grid-column: span 3;
  background:
    radial-gradient(circle at top right, rgba(20, 212, 255, 0.14), transparent 42%),
    linear-gradient(180deg, rgba(17, 23, 42, 0.96), rgba(12, 16, 32, 0.96));
}

.about-card h3 {
  font-size: 1.3rem;
  margin-bottom: 16px;
}

.about-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.about-pills span {
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.82rem;
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
}

.check-list {
  display: grid;
  gap: 14px;
}

.check-list li {
  display: flex;
  gap: 10px;
  color: var(--muted);
}

.check-list i {
  color: var(--tech);
  margin-top: 4px;
}

.studio-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 18px;
  align-items: start;
}

.studio-video-card,
.studio-shot,
.studio-note {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: var(--shadow);
}

.studio-video-card {
  position: relative;
}

.studio-video {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  background: #000;
}

.studio-video-card figcaption {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(5, 8, 15, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text);
  max-width: 30ch;
  font-size: 0.95rem;
  line-height: 1.5;
  backdrop-filter: blur(14px);
}

.studio-side {
  display: grid;
  gap: 18px;
}

.studio-shot {
  position: relative;
  aspect-ratio: 4 / 3;
}

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

.studio-note {
  padding: 26px;
}

.section--audio {
  background: linear-gradient(180deg, rgba(255, 90, 61, 0.04), rgba(9, 12, 22, 0.2));
}

.section--tech {
  background: linear-gradient(180deg, rgba(20, 212, 255, 0.04), rgba(9, 12, 22, 0.18));
}

.section--podcast {
  background:
    radial-gradient(circle at top left, rgba(255, 154, 74, 0.09), transparent 34%),
    linear-gradient(180deg, rgba(8, 10, 18, 0.98), rgba(12, 16, 32, 0.94));
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.service-grid--audio .service-card:first-child {
  grid-column: span 2;
}

.service-card {
  position: relative;
  border-radius: var(--radius);
  padding: 28px;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: auto -8% -40% auto;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  opacity: 0.45;
  filter: blur(8px);
  pointer-events: none;
}

.service-card--warm::before {
  background: radial-gradient(circle, rgba(255, 90, 61, 0.3), transparent 64%);
}

.service-card--cool::before {
  background: radial-gradient(circle, rgba(20, 212, 255, 0.24), transparent 64%);
}

.service-card:hover {
  transform: translateY(-4px);
}

.service-icon {
  margin-bottom: 18px;
  font-size: 1.2rem;
}

.service-card h3 {
  font-size: 1.12rem;
  margin-bottom: 10px;
}

.service-card p {
  position: relative;
  z-index: 1;
}

.podcast-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 18px;
  align-items: stretch;
}

.podcast-feature,
.podcast-thumb {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: var(--shadow);
}

.podcast-feature {
  position: relative;
  min-height: 540px;
}

.podcast-feature::after {
  content: '';
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(180deg, transparent, rgba(6, 9, 18, 0.92));
  pointer-events: none;
}

.podcast-feature img,
.podcast-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.podcast-feature figcaption {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  z-index: 1;
  color: var(--text);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.05rem;
  line-height: 1.35;
  max-width: 26ch;
}

.podcast-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.podcast-thumb {
  min-height: 166px;
}

.section--portfolio {
  background: linear-gradient(180deg, rgba(9, 12, 22, 0.8), rgba(7, 10, 18, 0.96));
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}

.portfolio-card {
  min-height: 250px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  transition: transform 0.22s ease, border-color 0.22s ease;
}

.portfolio-card::after {
  content: '';
  position: absolute;
  inset: auto -20% -25% auto;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255, 90, 61, 0.34), rgba(20, 212, 255, 0.12));
  opacity: 0.85;
  filter: blur(18px);
  z-index: 0;
  pointer-events: none;
}

.portfolio-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.14);
}

.portfolio-card--wide {
  grid-row: span 2;
  min-height: 516px;
}

.portfolio-card--media {
  padding: 0;
  background: #0d1220;
}

.portfolio-card--media::after {
  display: none;
}

.portfolio-card__content {
  position: relative;
  z-index: 2;
  margin-top: auto;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.portfolio-card__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  transform: scale(1.01);
  transition: transform 0.35s ease;
}

.portfolio-card:hover .portfolio-card__image {
  transform: scale(1.06);
}

.portfolio-card__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(5, 8, 15, 0.08) 0%, rgba(5, 8, 15, 0.5) 58%, rgba(5, 8, 15, 0.92) 100%),
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.14), transparent 30%);
}

.portfolio-card__label {
  position: relative;
  display: inline-flex;
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  font-size: 0.8rem;
  font-weight: 700;
}

.portfolio-card__title {
  max-width: 20ch;
  font-size: 1.2rem;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  line-height: 1.25;
}

.portfolio-card__action {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.portfolio-action {
  display: flex;
  justify-content: center;
  margin-top: 26px;
}

.section--cta {
  overflow: hidden;
}

.cta-glow {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 640px;
  height: 640px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 90, 61, 0.16) 0%, transparent 68%);
  pointer-events: none;
}

.cta-box {
  position: relative;
  border-radius: calc(var(--radius) + 6px);
  padding: clamp(28px, 5vw, 54px);
  text-align: center;
  max-width: 860px;
  margin: 0 auto;
}

.cta-box h2 {
  font-size: clamp(2rem, 4.2vw, 3.4rem);
  margin: 16px auto 16px;
  max-width: 14ch;
}

.cta-box p {
  max-width: 62ch;
  margin: 0 auto;
  font-size: 1.04rem;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 30px;
}

.site-footer {
  padding: 68px 0 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(3, 5, 10, 0.94);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.9fr 0.9fr;
  gap: 28px;
}

.footer-brand {
  max-width: 360px;
}

.footer-brand img {
  width: 146px;
  height: auto;
}

.footer-brand p {
  margin-top: 18px;
}

.footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.footer-socials a {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.footer-socials a:hover {
  transform: translateY(-2px);
  border-color: rgba(20, 212, 255, 0.4);
  background: rgba(20, 212, 255, 0.08);
}

.footer-col h3 {
  font-size: 1.05rem;
  margin-bottom: 18px;
}

.footer-col ul {
  display: grid;
  gap: 12px;
}

.footer-col a,
.footer-contact {
  font-size: 0.95rem;
}

.footer-col a:hover,
.footer-contact:hover {
  color: var(--text);
}

.footer-contact {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.footer-contact i {
  color: var(--accent);
}

.footer-contact--static {
  color: var(--muted);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  padding-top: 26px;
  margin-top: 34px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-bottom p {
  font-size: 0.85rem;
}

.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 999;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: white;
  box-shadow: 0 18px 34px rgba(37, 211, 102, 0.32);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 22px 42px rgba(37, 211, 102, 0.42);
}

.whatsapp-float i {
  font-size: 1.7rem;
}

.whatsapp-float span {
  position: absolute;
  right: 70px;
  white-space: nowrap;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(8, 12, 22, 0.94);
  border: 1px solid var(--line);
  color: var(--text);
  font-size: 0.85rem;
  opacity: 0;
  transform: translateX(10px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  pointer-events: none;
}

.whatsapp-float:hover span {
  opacity: 1;
  transform: translateX(0);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.site-header,
.section,
.hero,
.service-card,
.portfolio-card,
.about-card,
.cta-box,
.footer-socials a,
.whatsapp-float {
  will-change: transform;
}

@media (max-width: 1080px) {
  .hero-layout {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-bottom: 10px;
  }

  .hero-copy h1 {
    max-width: 12ch;
  }

  .hero-metrics {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .about-card--statement,
  .about-card:nth-child(2),
  .about-card--highlight {
    grid-column: span 12;
  }

  .service-grid,
  .portfolio-grid,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .service-grid--audio .service-card:first-child {
    grid-column: span 2;
  }

  .podcast-showcase {
    grid-template-columns: 1fr;
  }

  .podcast-feature {
    min-height: 420px;
  }

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

  .studio-video {
    aspect-ratio: 16 / 10;
  }

  .hero-panel__stack--split {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 840px) {
  :root {
    --header-h: 82px;
  }

  .nav-toggle {
    display: inline-grid;
    place-items: center;
  }

  .nav-links {
    position: absolute;
    left: 1rem;
    right: 1rem;
    top: calc(var(--header-h) - 8px);
    display: grid;
    gap: 14px;
    padding: 18px;
    border-radius: 22px;
    border: 1px solid var(--line);
    background: rgba(7, 10, 18, 0.98);
    box-shadow: var(--shadow);
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
    transition: opacity 0.22s ease, transform 0.22s ease;
  }

  .nav-links.is-open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links .btn {
    width: 100%;
  }

  .site-nav {
    position: relative;
  }

  .service-grid,
  .portfolio-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .portfolio-card--wide {
    grid-row: auto;
    min-height: 250px;
  }

  .service-grid--audio .service-card:first-child {
    grid-column: span 1;
  }

  .hero-copy h1 {
    max-width: 12ch;
  }
}

@media (max-width: 600px) {
  .section {
    padding: 88px 0;
  }

  .section-header {
    margin-bottom: 28px;
  }

  .hero-layout {
    padding-top: 26px;
  }

  .brand img {
    width: min(200px, 68vw);
  }

  .hero-actions,
  .cta-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .hero-badges {
    flex-direction: column;
  }

  .hero-metrics {
    grid-template-columns: 1fr;
  }

  .hero-panel__stack--split {
    grid-template-columns: 1fr;
  }

  .hero-feature {
    min-height: 340px;
  }

  .hero-feature__content {
    padding: 20px;
  }

  .whatsapp-float {
    width: 54px;
    height: 54px;
    right: 18px;
    bottom: 18px;
  }

  .whatsapp-float span {
    display: none;
  }

  .portfolio-card,
  .service-card,
  .about-card,
  .hero-panel__card {
    padding: 22px;
  }

  .portfolio-card--media {
    padding: 0;
  }

  .portfolio-card__content {
    padding: 20px;
    gap: 10px;
  }

  .podcast-feature {
    min-height: 360px;
  }

  .podcast-feature figcaption {
    left: 18px;
    right: 18px;
    bottom: 18px;
    font-size: 0.98rem;
  }

  .studio-video-card figcaption {
    left: 16px;
    right: 16px;
    bottom: 16px;
    max-width: none;
    font-size: 0.9rem;
  }

  .studio-note {
    padding: 22px;
  }

  .footer-bottom {
    margin-top: 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
