:root {
  --ink: #11100f;
  --muted: #615a52;
  --line: #d8cdc0;
  --brand: #de5a13;
  --brand-dark: #a54308;
  --panel-dark: #141313;
  --radius: 18px;
}

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

body {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 8%, #ffd8bb 0%, transparent 30%),
    linear-gradient(145deg, #f6f2ec, #efe8dd);
}

.site-header,
.layout,
.site-footer {
  width: min(1140px, 92vw);
  margin: 0 auto;
}

.site-header {
  padding: 1rem 0 0.8rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(8px);
  background: rgba(242, 238, 231, 0.88);
}

.logo {
  text-decoration: none;
  color: var(--ink);
  letter-spacing: 0.09em;
  font-size: 0.86rem;
  font-weight: 700;
}

.site-nav {
  display: flex;
  gap: 1.1rem;
  flex-wrap: wrap;
}

.site-nav a {
  text-decoration: none;
  color: var(--muted);
  font-size: 0.92rem;
}

.site-nav a:hover {
  color: var(--ink);
}

.layout {
  padding-bottom: 2rem;
}

h1,
h2,
h3 {
  margin: 0 0 0.6rem;
}

h1 {
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  letter-spacing: 0.01em;
  font-size: clamp(3.4rem, 10vw, 8rem);
  line-height: 0.82;
  max-width: 10ch;
}

h1 span {
  color: #b6b9c6;
  font-style: italic;
}

h2 {
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 0.01em;
  font-weight: 400;
  font-size: clamp(2rem, 5vw, 3.9rem);
  line-height: 0.93;
  max-width: 12ch;
}

p {
  margin: 0 0 0.8rem;
  color: var(--muted);
  max-width: 65ch;
}

.panel {
  border-radius: var(--radius);
  padding: clamp(1.3rem, 3vw, 2.15rem);
  margin-bottom: 1.15rem;
}

.panel-light {
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid var(--line);
}

.panel-dark {
  background: linear-gradient(160deg, var(--panel-dark), #090909 70%);
  color: #fff;
  border: 1px solid #312f2d;
}

.panel-dark p {
  color: #cdc3b8;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 0.75rem;
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  border-radius: 0;
  min-height: 88vh;
  display: grid;
  align-content: end;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    95deg,
    rgba(7, 7, 7, 0.93) 6%,
    rgba(9, 9, 9, 0.68) 55%,
    rgba(9, 9, 9, 0.9) 100%
  );
  z-index: 0;
}

.hero > * {
  position: relative;
  z-index: 1;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transform: scale(1.12);
  transform-origin: center center;
  animation: heroZoomOut 2.8s ease-out forwards;
}

@keyframes heroZoomOut {
  from {
    transform: scale(1.12);
  }
  to {
    transform: scale(1);
  }
}

.hero-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.status {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.69rem;
  color: #a79b8f;
}

.hero-copy {
  font-size: 1.12rem;
  max-width: 46ch;
}

.hero h1,
.hero .hero-copy,
.hero .eyebrow,
.hero .status {
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.6);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.1rem;
}

.btn {
  text-decoration: none;
  border-radius: 999px;
  padding: 0.78rem 1.08rem;
  font-weight: 700;
  font-size: 0.9rem;
  border: 1px solid transparent;
  background: transparent;
  font-family: inherit;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s ease;
}

.btn-main {
  background: var(--brand);
  color: #fff;
}

.btn-main:hover {
  background: var(--brand-dark);
}

.btn-ghost {
  border-color: #4b4440;
  color: #fff;
}

.panel-light .btn-ghost {
  color: var(--ink);
  border-color: var(--line);
}

.hero-metrics {
  margin-top: 1.6rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.35));
}

.hero-metrics article {
  border: 1px solid #403935;
  border-radius: 12px;
  background: rgba(20, 20, 20, 0.28);
  backdrop-filter: blur(3px);
  padding: 0.82rem;
  box-shadow:
    0 10px 22px rgba(0, 0, 0, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.hero-metrics strong {
  display: block;
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.9rem;
  line-height: 1;
  color: #fff;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.55);
}

.hero-metrics span {
  color: #beb3a7;
  font-size: 0.84rem;
  text-shadow: 0 3px 10px rgba(0, 0, 0, 0.5);
}

.split {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 1rem;
}

.feature-box {
  border-radius: 14px;
  border: 1px solid var(--line);
  background: #fff;
  padding: 1rem;
}

.feature-box p {
  margin-bottom: 0.6rem;
}

.examples-box .eyebrow {
  margin-bottom: 0.45rem;
}

.channel-link {
  display: inline-block;
  margin-bottom: 0.65rem;
  font-size: 0.83rem;
  font-weight: 700;
  color: #784329;
  text-decoration: none;
}

.studio-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  align-items: center;
  margin-top: 0.35rem;
}

.studio-gallery-trigger {
  background: rgba(255, 255, 255, 0.65);
}

.yt-grid {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  padding-bottom: 0.3rem;
  gap: 0.6rem;
  scrollbar-width: thin;
}

.yt-card {
  flex: 0 0 220px;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #d5cab9;
  min-height: 124px;
  display: block;
  background: #f8f3ea;
  box-shadow: 0 8px 16px rgba(26, 18, 10, 0.1);
}

.yt-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.yt-frame {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.yt-card::after {
  content: "Ver";
  position: absolute;
  right: 0.45rem;
  bottom: 0.45rem;
  background: rgba(15, 15, 15, 0.78);
  color: #fff;
  border-radius: 999px;
  padding: 0.18rem 0.48rem;
  font-size: 0.68rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.yt-grid--cases {
  margin-top: 0.85rem;
  justify-content: center;
  flex-wrap: wrap;
  overflow: visible;
  gap: 0.7rem;
}

.yt-card--case {
  flex: 0 0 220px;
  min-height: 124px;
}

.yt-card--case::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 56%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.86), transparent 74%);
  z-index: 1;
  pointer-events: none;
}

.yt-case-title {
  position: absolute;
  left: 0.55rem;
  right: 2.65rem;
  bottom: 0.5rem;
  z-index: 2;
  margin: 0;
  color: #fff;
  font-size: 0.76rem;
  line-height: 1.2;
  font-weight: 700;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.56);
}

.studio-gallery-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  place-items: center;
  padding: 1.2rem;
}

.studio-gallery-modal.is-open {
  display: grid;
}

.studio-gallery-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(9, 8, 7, 0.72);
  backdrop-filter: blur(4px);
}

.studio-gallery-panel {
  position: relative;
  z-index: 1;
  width: min(1120px, 94vw);
  max-height: min(88vh, 940px);
  overflow: auto;
  border-radius: 20px;
  border: 1px solid #4a433d;
  background:
    radial-gradient(circle at 14% 0%, #2a2623 0%, #161514 45%),
    #161514;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  padding: 1.1rem;
}

.studio-gallery-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.9rem;
  margin-bottom: 0.7rem;
}

.studio-gallery-head h3 {
  margin: 0;
  color: #f2ede7;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  letter-spacing: 0.02em;
}

.studio-gallery-head .eyebrow {
  margin-bottom: 0.2rem;
  color: #b9aea2;
}

.studio-gallery-close {
  border: 1px solid #4b4540;
  border-radius: 999px;
  background: #262320;
  color: #f2ece3;
  padding: 0.55rem 0.82rem;
  font-weight: 700;
  cursor: pointer;
}

.studio-gallery-viewer {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #3b3631;
  background: #0e0d0c;
  aspect-ratio: 16 / 9;
  min-height: 260px;
}

.studio-gallery-viewer img,
.studio-gallery-viewer video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.studio-gallery-viewer video {
  display: none;
}

.studio-gallery-caption {
  margin: 0.65rem 0 0.85rem;
  color: #cdbfb0;
  max-width: none;
  font-size: 0.95rem;
}

.studio-gallery-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.58rem;
}

.studio-gallery-thumb {
  border: 1px solid #443d37;
  border-radius: 12px;
  background: #201e1b;
  padding: 0;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.18s ease, border-color 0.18s ease,
    box-shadow 0.18s ease;
}

.studio-gallery-thumb:hover,
.studio-gallery-thumb:focus-visible {
  transform: translateY(-1px);
  border-color: #d4763c;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.28);
}

.studio-gallery-thumb.is-active {
  border-color: #db7d43;
  box-shadow: 0 0 0 1px #db7d43 inset;
}

.studio-gallery-thumb img,
.studio-gallery-thumb video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.text-link {
  color: var(--brand-dark);
  font-weight: 700;
  text-decoration: none;
}

.video-grid {
  margin-top: 0.85rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0.85rem;
}

.video-slot {
  position: relative;
  aspect-ratio: 9 / 16;
  min-height: 300px;
  border-radius: 14px;
  border: 1px solid #c9bdad;
  overflow: hidden;
  box-shadow: 0 12px 24px rgba(35, 22, 11, 0.18);
}

.demo-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.video-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.7rem 0.65rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.68), transparent 72%);
  color: #f5eee4;
  font-weight: 700;
  font-size: 0.86rem;
  letter-spacing: 0.02em;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.55rem;
  align-items: stretch;
}

#servicios .card-grid {
  gap: 0.7rem;
}

.service-card {
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #fff;
  padding: 0.48rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  height: 100%;
}

#servicios .service-card {
  padding: 0.62rem;
  gap: 0.38rem;
}

.service-card h3 {
  font-size: 0.9rem;
  margin-bottom: 0;
  line-height: 1.05;
}

#servicios .service-card h3 {
  font-size: 1rem;
}

.service-rate {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.1;
  color: var(--brand-dark);
}

.service-rate--ghost {
  visibility: hidden;
}

.service-copy {
  margin: 0;
  font-size: 0.68rem;
  line-height: 1.2;
  min-height: 4.8em;
  color: var(--muted);
}

#servicios .service-copy {
  font-size: 0.74rem;
  line-height: 1.28;
  min-height: 5.2em;
}

.service-card .text-link {
  font-size: 0.76rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin-top: auto;
}

.service-media {
  border: 1px solid #d8ccbc;
  border-radius: 10px;
  overflow: hidden;
  background: #f4eee5;
  aspect-ratio: 9 / 14;
}

.service-media video,
.service-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.service-card--studio .service-media {
  aspect-ratio: 9 / 14;
  background: #1b1715;
}

.service-card--studio .service-media video {
  object-fit: cover;
  object-position: center;
}

.service-card--avatars .service-media video {
  object-position: center;
}

.service-card--voices .service-media {
  aspect-ratio: 9 / 14;
}

.service-card--voices .service-media video {
  object-fit: cover;
  object-position: center;
  background: #1b1715;
}

.service-card--sound .service-media {
  aspect-ratio: auto;
  background: #1b1715;
  padding: 0.45rem;
  display: flex;
  flex: 1;
}

.service-audio-player {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  width: 100%;
  flex: 1;
}

.sound-demo-row {
  width: 100%;
  flex: 1;
  min-height: 46px;
  border: 1px solid #624e3f;
  border-radius: 10px;
  background: linear-gradient(150deg, #1f1915, #2f251e);
  padding: 0.35rem 0.5rem;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.sound-demo-row:hover {
  transform: translateY(-1px);
}

.sound-demo-row.is-active {
  border-color: #de5a13;
  box-shadow: 0 0 0 1px rgba(222, 90, 19, 0.35);
}

.sound-demo-play {
  width: 14px;
  height: 14px;
  position: relative;
  flex: 0 0 14px;
  margin-top: 3px;
}

.sound-demo-play::before {
  content: "";
  position: absolute;
  left: 3px;
  top: 2px;
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 8px solid #f7efe6;
}

.sound-demo-body {
  flex: 1;
  display: grid;
  gap: 0.24rem;
}

.sound-demo-wave {
  flex: 1;
  height: 100%;
  min-height: 16px;
  display: grid;
  grid-template-columns: repeat(16, minmax(0, 1fr));
  align-items: end;
  gap: 2px;
}

.sound-demo-title {
  font-size: 0.65rem;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0.02em;
  color: #f5e7d8;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.45);
  text-align: left;
}

.sound-demo-wave i {
  display: block;
  width: 100%;
  border-radius: 999px;
  background: linear-gradient(180deg, #f4b78f, #de5a13);
  opacity: 0.38;
  transform-origin: bottom;
  animation: soundRowPulse 1.1s ease-in-out infinite;
  animation-play-state: paused;
}

.sound-demo-wave i:nth-child(1),
.sound-demo-wave i:nth-child(9) {
  height: 24%;
}

.sound-demo-wave i:nth-child(2),
.sound-demo-wave i:nth-child(10) {
  height: 48%;
}

.sound-demo-wave i:nth-child(3),
.sound-demo-wave i:nth-child(11) {
  height: 30%;
}

.sound-demo-wave i:nth-child(4),
.sound-demo-wave i:nth-child(12) {
  height: 68%;
}

.sound-demo-wave i:nth-child(5),
.sound-demo-wave i:nth-child(13) {
  height: 40%;
}

.sound-demo-wave i:nth-child(6),
.sound-demo-wave i:nth-child(14) {
  height: 82%;
}

.sound-demo-wave i:nth-child(7),
.sound-demo-wave i:nth-child(15) {
  height: 34%;
}

.sound-demo-wave i:nth-child(8),
.sound-demo-wave i:nth-child(16) {
  height: 56%;
}

.sound-demo-wave i:nth-child(2n) {
  animation-delay: 0.08s;
}

.sound-demo-wave i:nth-child(3n) {
  animation-delay: 0.16s;
}

.sound-demo-row.is-active .sound-demo-wave i {
  opacity: 1;
  animation-play-state: running;
}

.service-audio-controls {
  display: flex;
  justify-content: flex-end;
}

.sound-stop-btn {
  border: 1px solid #8a6a53;
  background: #241b15;
  color: #f3e7da;
  border-radius: 999px;
  padding: 0.22rem 0.62rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
}

.sound-stop-btn:hover {
  border-color: #de5a13;
  color: #fff4eb;
}

@keyframes soundRowPulse {
  0%,
  100% {
    transform: scaleY(0.55);
  }
  50% {
    transform: scaleY(1);
  }
}

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

.podcast-ia-showcase {
  margin-top: 0.95rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  padding: 0.75rem;
  display: grid;
  gap: 0.55rem;
}

.podcast-ia-copy .eyebrow {
  margin-bottom: 0.16rem;
}

.podcast-ia-copy h3 {
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.05;
}

.podcast-ia-video {
  border: 1px solid #d8ccbc;
  border-radius: 12px;
  overflow: hidden;
  background: #0e0c0b;
  aspect-ratio: 16 / 9;
}

.podcast-ia-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.podcast-deck {
  margin-top: 0.75rem;
  margin-bottom: 0.8rem;
}

.cover-grid {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.65rem;
  overflow-x: auto;
  padding-bottom: 0.35rem;
  scrollbar-width: thin;
}

.cover-tile {
  flex: 0 0 180px;
  aspect-ratio: 1 / 1;
  border-radius: 13px;
  border: 1px solid #ccbca9;
  padding: 0;
  text-align: left;
  color: #fff;
  position: relative;
  display: block;
  cursor: pointer;
  box-shadow: 0 10px 18px rgba(20, 10, 4, 0.22);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
  overflow: hidden;
}

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

.cover-tile.is-active {
  border-color: #f7ca9e;
  box-shadow:
    0 0 0 2px rgba(222, 90, 19, 0.28),
    0 12px 22px rgba(20, 10, 4, 0.28);
}

.cover-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cover-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6, 6, 6, 0.72) 8%, rgba(6, 6, 6, 0.1) 62%);
}

.cover-meta {
  position: absolute;
  left: 0.55rem;
  right: 0.55rem;
  bottom: 0.5rem;
  display: grid;
  gap: 0.2rem;
}

.cover-tag {
  font-size: 0.66rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #e2d3c2;
}

.cover-tile strong {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.15rem;
  letter-spacing: 0.02em;
  line-height: 0.95;
}

.cover-tile small {
  font-size: 0.76rem;
  color: #f2e8dc;
}

.player-shell {
  margin-top: 0.65rem;
  border: 1px solid #d2c4b3;
  border-radius: 12px;
  background: #fff;
  padding: 0.75rem;
}

.now-kicker {
  margin: 0 0 0.18rem;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #8f7b67;
}

.now-playing {
  margin-bottom: 0.5rem;
  font-size: 1.03rem;
  color: #2f2923;
  font-weight: 700;
}

.spotify-player-wrap {
  border: 1px solid #d8ccbc;
  border-radius: 10px;
  overflow: hidden;
  background: #140f0b;
  margin-bottom: 0.6rem;
}

#podcastSpotifyEmbed {
  width: 100%;
  height: 152px;
  border: 0;
  display: block;
}

.wave-shell {
  height: 56px;
  border-radius: 10px;
  border: 1px solid #e2d5c6;
  background: linear-gradient(135deg, #faf4eb, #fff9f0);
  position: relative;
  padding: 0.35rem 0.45rem;
  margin-bottom: 0.6rem;
  overflow: hidden;
}

.wave-canvas {
  width: 100%;
  height: 100%;
  display: block;
}

.player-shell audio {
  width: 100%;
}

.audio-card {
  border: 1px solid #d3c6b7;
  border-radius: 12px;
  background: #fff;
  padding: 0.8rem;
}

.audio-card h3 {
  margin-bottom: 0.35rem;
  font-size: 1.08rem;
}

.audio-card p {
  font-size: 0.86rem;
  margin-bottom: 0.5rem;
}

.audio-card audio {
  width: 100%;
  height: 34px;
}

.spotify-placeholder {
  margin-top: 0.8rem;
  border: 1px dashed #bea88f;
  border-radius: 12px;
  background: #f9f4ec;
  padding: 0.85rem;
}

.spotify-placeholder strong {
  display: block;
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.2rem;
  letter-spacing: 0.02em;
  margin-bottom: 0.2rem;
}

.spotify-meta {
  margin-top: 0.65rem;
  border-top: 1px solid #e3d8cb;
  padding-top: 0.55rem;
}

.spotify-name {
  margin: 0 0 0.2rem;
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.06rem;
  letter-spacing: 0.02em;
  color: #2f2820;
}

.spotify-desc {
  margin: 0;
  font-size: 0.9rem;
  color: #63584e;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
}

.steps article {
  border-radius: 12px;
  border: 1px solid #373331;
  background: rgba(255, 255, 255, 0.03);
  padding: 0.95rem;
}

.steps span {
  display: inline-block;
  margin-bottom: 0.5rem;
  color: #9f9488;
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.35rem;
  letter-spacing: 0.03em;
}

.steps h3 {
  color: #fff;
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.price-grid article {
  border-radius: 14px;
  border: 1px solid var(--line);
  background: #fff;
  padding: 1rem;
}

.price-grid article.featured {
  border-color: #d9a17b;
  background: #fff4ec;
}

.price {
  font-family: "Bebas Neue", sans-serif;
  font-size: 2rem;
  line-height: 0.95;
  margin: 0.5rem 0;
  color: #111;
}

.brand-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
}

.brand-grid .brand-item {
  display: block;
  text-decoration: none;
  color: inherit;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #fff;
  padding: 0.9rem;
  transition: transform 0.18s ease, box-shadow 0.18s ease,
    border-color 0.18s ease;
}

.brand-grid .brand-item:hover,
.brand-grid .brand-item:focus-visible {
  transform: translateY(-2px);
  border-color: #d4763c;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.brand-link-label {
  display: inline-block;
  margin-top: 0.65rem;
  font-size: 0.86rem;
  font-weight: 700;
  color: #c95f1f;
}

.chips {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.chips span {
  padding: 0.45rem 0.75rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  font-size: 0.86rem;
}

.cta {
  text-align: center;
}

.cta h2 {
  max-width: unset;
}

.site-footer {
  padding: 0.1rem 0 2rem;
}

.footer-brand-strip {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.78);
  border-radius: var(--radius);
  padding: 1rem;
  margin-top: 0.2rem;
}

.footer-brand-strip .eyebrow {
  margin-bottom: 0.7rem;
}

.footer-brand-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.7rem;
  align-items: stretch;
}

.footer-brand-grid a {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #f7f3ec;
  min-height: 96px;
  padding: 0.7rem;
  overflow: hidden;
  transition: transform 0.18s ease, box-shadow 0.18s ease,
    border-color 0.18s ease;
}

.footer-brand-grid a:hover,
.footer-brand-grid a:focus-visible {
  transform: translateY(-2px);
  border-color: #d4763c;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.08);
}

.footer-brand-grid img {
  width: 100%;
  height: 62px;
  max-height: 62px;
  object-fit: contain;
  border-radius: 10px;
  filter: grayscale(1) saturate(0) contrast(1.08);
  opacity: 0.92;
}

.site-footer-copy {
  margin: 0.85rem 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

@media (max-width: 980px) {
  .site-header {
    padding: 0.72rem 0;
    gap: 0.75rem;
  }

  .site-header .btn {
    padding: 0.68rem 0.92rem;
    font-size: 0.84rem;
  }

  .site-nav {
    display: none;
  }

  h1 {
    max-width: 100%;
  }

  .hero {
    min-height: 74vh;
  }

  .hero-topline {
    align-items: flex-start;
    gap: 0.45rem;
  }

  .split,
  .yt-grid,
  .video-grid,
  .cover-grid,
  .audio-grid,
  .steps,
  .price-grid,
  .brand-grid,
  .hero-metrics {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 980px) {
  .card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.55rem;
  }

  .footer-brand-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .studio-gallery-panel {
    width: min(1120px, 96vw);
    max-height: 90vh;
  }

  .studio-gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .site-header .logo {
    font-size: 0.78rem;
    letter-spacing: 0.07em;
  }

  .site-header .btn {
    padding: 0.62rem 0.86rem;
    font-size: 0.8rem;
  }

  h1 {
    font-size: clamp(2.25rem, 11.5vw, 3rem);
    line-height: 0.88;
    margin-bottom: 0.45rem;
  }

  .hero {
    min-height: 82vh;
    padding-top: 0.75rem;
  }

  .hero::before {
    background:
      radial-gradient(
        circle at 30% 76%,
        rgba(5, 5, 5, 0.82) 0%,
        rgba(6, 6, 6, 0.62) 40%,
        rgba(8, 8, 8, 0) 72%
      ),
      linear-gradient(
        110deg,
        rgba(7, 7, 7, 0.96) 2%,
        rgba(8, 8, 8, 0.8) 56%,
        rgba(9, 9, 9, 0.95) 100%
      );
  }

  .hero-topline {
    display: none;
  }

  .status {
    font-size: 0.64rem;
  }

  .hero h1 {
    color: #fff8ef;
    text-shadow:
      0 3px 14px rgba(0, 0, 0, 0.9),
      0 0 28px rgba(0, 0, 0, 0.7);
  }

  .hero h1 span {
    color: #f5dcc1;
  }

  .hero-copy {
    font-size: 1rem;
    line-height: 1.36;
    color: #fff0df;
    max-width: 26ch;
    margin-top: 0.55rem;
    text-shadow:
      0 2px 10px rgba(0, 0, 0, 0.9),
      0 0 20px rgba(0, 0, 0, 0.62);
  }

  .hero-actions {
    flex-direction: column;
    gap: 0.55rem;
    margin-top: 0.75rem;
  }

  .hero-actions .btn {
    width: 100%;
    text-align: center;
  }

  .hero-actions .btn-ghost {
    background: rgba(17, 16, 15, 0.62);
    border-color: rgba(236, 220, 204, 0.42);
  }

  .hero-metrics {
    display: none;
  }

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

  .service-copy {
    min-height: 0;
  }

  .service-media {
    aspect-ratio: 9 / 12;
  }

  .footer-brand-grid {
    grid-template-columns: 1fr;
  }

  .studio-gallery-modal {
    padding: 0.65rem;
  }

  .studio-gallery-panel {
    padding: 0.75rem;
    border-radius: 14px;
  }

  .studio-gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .studio-gallery-caption {
    font-size: 0.9rem;
  }
}
