:root {
  color-scheme: dark;
  --bg: #090b12;
  --bg-soft: #10131a;
  --panel: rgba(255, 255, 255, 0.055);
  --panel-strong: rgba(255, 255, 255, 0.09);
  --line: rgba(255, 255, 255, 0.1);
  --text: #f7f8ff;
  --muted: #b8bfcc;
  --hot: #d85b65;
  --gold: #d8b76a;
  --cyan: #73b9cf;
  --green: #87c9a1;
  --pista: #b7d8a8;
  --pista-ink: #172016;
  --violet: #9b8bb9;
  --accent: #d8b76a;
  --accent-dark: #9f7e3e;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.38);
  --masthead-logo-size: 200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 18% 8%, rgba(115, 185, 207, 0.08), transparent 26rem),
    radial-gradient(circle at 88% 18%, rgba(216, 183, 106, 0.07), transparent 24rem),
    linear-gradient(180deg, #080a0f 0%, #0c1017 50%, #08090d 100%);
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: visible;
}

.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 56, 100, 0.18), transparent 22rem),
    #07080d;
  transition: opacity 0.55s ease, visibility 0.55s ease;
}

.preloader.is-hidden {
  opacity: 0;
  visibility: hidden;
}

.preloader-mark {
  display: grid;
  justify-items: center;
  gap: 1rem;
  color: var(--gold);
  font-family: Oswald, sans-serif;
  font-size: 1.1rem;
  font-weight: 300;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.preloader-mark img {
  width: 7rem;
  height: 7rem;
  object-fit: contain;
  animation: logoPulse 1.5s ease-in-out infinite;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(120deg, rgba(255, 255, 255, 0.035), transparent 34%);
  background-size: 100% 100%;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.55), transparent 72%);
  z-index: -1;
}

a {
  color: inherit;
}

img {
  max-width: 100%;
}

.fw-black {
  font-weight: 900;
}

.site-masthead {
  position: relative;
  z-index: 10;
  padding: 0.8rem 0 0.6rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.01)),
    rgba(8, 10, 15, 0.84);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.glass-nav {
  position: sticky;
  top: 0;
  z-index: 1020;
  background: rgba(8, 10, 15, 0.88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand-nav .container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.8rem;
}

.navbar-toggler {
  margin-left: auto;
}

.navbar-collapse {
  flex-grow: 0;
}

.brand-center {
  display: grid;
  justify-items: center;
  gap: 0.18rem;
  margin: 0;
  padding: 0;
  text-align: center;
}

.brand-center img {
  width: min(var(--masthead-logo-size), 54vw);
  height: auto;
  transition: width 0.22s ease;
}

.navbar-brand img,
.site-footer img {
  object-fit: contain;
}

.navbar-brand strong,
.navbar-brand small {
  display: block;
  line-height: 1.05;
}

.navbar-brand strong {
  font-family: Oswald, sans-serif;
  font-size: clamp(1.15rem, 2vw, 1.75rem);
  font-weight: 300;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.navbar-brand small {
  color: var(--muted);
  font-size: 0.9rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.nav-center {
  justify-content: center;
  width: 100%;
  gap: clamp(1rem, 2.2vw, 2.2rem);
  padding: 0.35rem 0;
}

.nav-link {
  color: rgba(255, 255, 255, 0.74);
  font-family: Oswald, sans-serif;
  font-size: 1.08rem;
  font-weight: 400;
  letter-spacing: 0.03em;
}

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

.btn {
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: 0;
}

.btn-pulse {
  border: 1px solid rgba(216, 183, 106, 0.62);
  background: #d8b76a;
  color: #111217;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.24);
}

.btn-pulse:hover {
  background: #e2c982;
  border-color: #e2c982;
  color: #111217;
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.3);
}

.btn-outline-light {
  border-color: rgba(255, 255, 255, 0.22);
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
}

.btn-outline-light:hover {
  background: var(--text);
  color: #080a11;
}

.hero-section {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background:
    linear-gradient(105deg, rgba(255, 255, 255, 0.04), transparent 38%),
    radial-gradient(circle at 76% 36%, rgba(216, 183, 106, 0.09), transparent 20rem);
}

.hero-section .min-vh-100 {
  padding-top: 4rem !important;
}

.hero-section::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 18rem;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.035));
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  width: 26rem;
  height: 26rem;
  border-radius: 50%;
  filter: blur(38px);
  opacity: 0.14;
}

.hero-glow-one {
  left: -10rem;
  top: 18%;
  background: var(--cyan);
}

.hero-glow-two {
  right: -9rem;
  bottom: 10%;
  background: var(--hot);
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: #d8b76a;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow span,
.section-kicker::before {
  content: "";
  width: 2.6rem;
  height: 2px;
  background: #d8b76a;
}

h1,
h2,
h3 {
  font-family: Oswald, Inter, sans-serif;
  letter-spacing: 0;
  font-weight: 300;
}

h1 {
  max-width: 14ch;
  line-height: 1.02;
}

h2 {
  font-size: clamp(2.25rem, 4vw, 4.7rem);
  line-height: 1.04;
  font-weight: 300;
}

h3 {
  font-weight: 400;
}

.role-rotator {
  display: inline-block;
  min-width: 6.8ch;
  color: var(--gold);
  text-shadow: none;
  transition: opacity 0.26s ease, transform 0.26s ease, filter 0.26s ease;
}

.text-accent {
  color: var(--pista);
}

.role-rotator.is-changing {
  opacity: 0;
  transform: translateY(0.35em);
  filter: blur(6px);
}

.hero-copy,
.section-note,
.contact-copy {
  color: var(--muted);
  font-size: clamp(1.05rem, 1.3vw, 1.25rem);
  line-height: 1.7;
}

.hero-story p {
  margin: 0 0 1rem;
}

.hero-story p:last-child {
  margin-bottom: 0;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  max-width: 44rem;
}

.hero-stats div,
.value-card,
.process-step,
.channel-box,
.contact-card,
.proof-item {
  background: var(--panel);
  border: 1px solid var(--line);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(14px);
}

.hero-stats div {
  padding: 1rem;
  border-radius: 8px;
}

.hero-stats strong {
  display: block;
  color: var(--text);
  font-family: Oswald, sans-serif;
  font-size: 2rem;
  font-weight: 300;
  line-height: 1;
}

.hero-stats span {
  color: var(--muted);
  display: block;
  font-size: 0.85rem;
  line-height: 1.35;
  margin-top: 0.45rem;
}

.portrait-stack {
  position: relative;
  max-width: 29rem;
  margin-inline: auto;
}

.portrait-card {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.035));
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
  transform: rotate(1.4deg);
  animation: floatHero 7s ease-in-out infinite;
}

.portrait-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(9, 11, 18, 0.9));
  z-index: 1;
}

.portrait-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.availability {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.85rem 1rem;
  border-radius: 8px;
  background: rgba(9, 11, 18, 0.76);
  color: var(--text);
  font-weight: 800;
  backdrop-filter: blur(12px);
}

.live-dot {
  width: 0.72rem;
  height: 0.72rem;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 7px rgba(45, 242, 163, 0.12);
}

.floating-panel {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.85rem 1rem;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: rgba(12, 16, 23, 0.82);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(16px);
  color: var(--text);
  font-weight: 800;
}

.floating-panel i {
  color: var(--gold);
}

.panel-top {
  top: 9%;
  left: -2rem;
}

.panel-bottom {
  right: -1rem;
  bottom: 16%;
}

.section {
  padding: clamp(5rem, 8vw, 8rem) 0;
}

.section-band {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.035), rgba(216, 183, 106, 0.045));
  border-block: 1px solid var(--line);
}

.gallery-page {
  background:
    linear-gradient(135deg, rgba(183, 216, 168, 0.04), transparent 34rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.018), transparent 28rem);
}

.gallery-hero {
  padding-top: clamp(7rem, 11vw, 11rem);
  padding-bottom: clamp(3rem, 6vw, 5rem);
}

.gallery-hero h1 {
  max-width: 12ch;
  margin-inline: auto;
  font-size: clamp(3.5rem, 8vw, 7rem);
  line-height: 0.94;
}

.gallery-section {
  border-bottom: 1px solid var(--line);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.1rem;
  align-items: stretch;
}

.gallery-card {
  position: relative;
  grid-column: span 4;
  min-height: 18rem;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
  transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

.gallery-card:nth-child(7n + 1),
.gallery-card:nth-child(7n + 6) {
  grid-column: span 6;
  min-height: 25rem;
}

.gallery-card:nth-child(7n + 3) {
  grid-row: span 2;
  min-height: 29rem;
}

.gallery-card:hover {
  transform: translateY(-6px);
  border-color: rgba(183, 216, 168, 0.42);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.34);
}

.gallery-card a {
  position: absolute;
  inset: 0;
  display: block;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  filter: saturate(1.04) contrast(1.02);
  transition: transform 0.5s ease, filter 0.5s ease;
}

.gallery-card:hover img {
  transform: scale(1.045);
  filter: saturate(1.12) contrast(1.06);
}

.gallery-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 52%;
  pointer-events: none;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.86));
}

.gallery-card figcaption {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 1;
  color: var(--text);
  font-family: Oswald, sans-serif;
  font-size: clamp(1.1rem, 1.4vw, 1.55rem);
  font-weight: 400;
  line-height: 1.15;
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.75);
}

.video-page {
  background:
    radial-gradient(circle at 80% 12%, rgba(216, 183, 106, 0.08), transparent 26rem),
    linear-gradient(135deg, rgba(183, 216, 168, 0.035), transparent 34rem);
}

.video-hero {
  padding-top: clamp(7rem, 11vw, 11rem);
  padding-bottom: clamp(3rem, 6vw, 5rem);
}

.video-hero h1 {
  max-width: 12ch;
  margin-inline: auto;
  font-size: clamp(3.4rem, 7.5vw, 6.8rem);
  line-height: 0.95;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.15rem;
}

.video-card {
  grid-column: span 4;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.085);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.045);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
  transition: transform 0.24s ease, border-color 0.24s ease, background 0.24s ease;
}

.video-card:nth-child(1),
.video-card:nth-child(2) {
  grid-column: span 6;
}

.video-card:hover {
  transform: translateY(-6px);
  border-color: rgba(183, 216, 168, 0.4);
  background: rgba(255, 255, 255, 0.06);
}

.video-trigger {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: #05070b;
  color: var(--text);
  cursor: pointer;
}

.video-trigger img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  opacity: 0.9;
  transition: transform 0.45s ease, opacity 0.45s ease;
}

.video-card:hover .video-trigger img {
  transform: scale(1.045);
  opacity: 1;
}

.video-trigger::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.72)),
    radial-gradient(circle at center, transparent 0 4.5rem, rgba(0, 0, 0, 0.16) 4.6rem);
}

.video-play {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 4.6rem;
  height: 4.6rem;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: var(--pista);
  color: var(--pista-ink);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.4);
  transition: transform 0.22s ease, background 0.22s ease;
}

.video-card:hover .video-play {
  transform: translate(-50%, -50%) scale(1.08);
  background: var(--gold);
}

.video-card-body {
  padding: 1.25rem 1.35rem 1.45rem;
}

.video-count {
  display: inline-block;
  margin-bottom: 0.65rem;
  color: var(--pista);
  font-family: Oswald, sans-serif;
  font-size: 1rem;
  letter-spacing: 0.08em;
}

.video-card h2 {
  margin-bottom: 0.45rem;
  font-family: Oswald, sans-serif;
  font-size: clamp(1.6rem, 2.1vw, 2.25rem);
  font-weight: 400;
  line-height: 1.08;
}

.video-card p {
  margin: 0;
  color: var(--muted);
}

.video-description {
  font-size: 0.95rem;
  line-height: 1.62;
  white-space: normal;
}

.video-modal .modal-content {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  background: #090b12;
  box-shadow: var(--shadow);
}

.video-modal .modal-header {
  border-bottom: 1px solid var(--line);
}

.video-modal .modal-title {
  font-family: Oswald, sans-serif;
  font-size: clamp(1.45rem, 2vw, 2rem);
  font-weight: 400;
}

.video-modal .modal-body {
  padding: 0.75rem;
}

.value-card {
  height: 100%;
  padding: 1.45rem;
  border-radius: 8px;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.value-card:nth-child(odd),
.process-step:nth-child(odd) {
  transform: translateY(1.2rem);
}

.value-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 207, 74, 0.5);
}

.value-card i {
  display: inline-grid;
  place-items: center;
  width: 3.2rem;
  height: 3.2rem;
  margin-bottom: 1.5rem;
  border-radius: 8px;
  background: rgba(216, 183, 106, 0.1);
  color: var(--gold);
  font-size: 1.35rem;
}

.value-card p,
.service-card p,
.mini-service p,
.process-step p,
.channel-box p,
.contact-card p,
.site-footer p,
.proof-item span {
  color: var(--muted);
  line-height: 1.65;
}

.services-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.018), rgba(183, 216, 168, 0.025)),
    #090c12;
}

.services-section h2 {
  max-width: 15ch;
  margin-inline: auto;
  font-family: Inter, system-ui, sans-serif;
  font-size: clamp(2.4rem, 4.8vw, 5rem);
  font-weight: 800;
  line-height: 1;
}

.service-board {
  align-items: stretch;
}

.service-card,
.mini-service {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  height: 100%;
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-top: 3px solid rgba(183, 216, 168, 0.75);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.035);
  box-shadow: none;
  transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.service-card:hover,
.mini-service:hover {
  transform: translateY(-5px);
  border-color: rgba(183, 216, 168, 0.38);
  border-top-color: var(--pista);
  background: rgba(255, 255, 255, 0.052);
}

.service-card {
  display: block;
  min-height: 22rem;
  padding: 2.1rem;
}

.service-featured {
  background: rgba(183, 216, 168, 0.052);
}

.service-mark {
  position: absolute;
  right: 1.25rem;
  top: 1rem;
  z-index: -1;
  display: block;
  width: auto;
  height: auto;
  color: var(--pista);
  font-size: 9.5rem;
  line-height: 1;
  opacity: 0.12;
}

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

.service-card h3 {
  max-width: 16ch;
  margin-bottom: 1rem;
  font-family: Inter, system-ui, sans-serif;
  font-size: clamp(1.45rem, 1.9vw, 2rem);
  font-weight: 800;
  line-height: 1.12;
  color: var(--pista);
}

.service-card p {
  max-width: 32rem;
}

.service-card ul {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.service-card li {
  position: relative;
  padding-left: 1.35rem;
  margin: 0.45rem 0;
  color: var(--text);
}

.service-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62rem;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--green);
}

.mini-service {
  min-height: 18rem;
  padding: 2rem;
}

.mini-icon {
  display: block;
  width: auto;
  height: auto;
  margin: 0 0 2rem;
  color: var(--pista);
  font-size: 5.4rem;
  line-height: 1;
}

.mini-service h3 {
  font-family: Inter, system-ui, sans-serif;
  font-size: clamp(1.35rem, 1.7vw, 1.75rem);
  font-weight: 800;
  line-height: 1.14;
  color: var(--pista);
}

.mini-service p {
  max-width: 24rem;
}

.section-split {
  background:
    linear-gradient(90deg, rgba(216, 183, 106, 0.04), transparent 48%),
    rgba(255, 255, 255, 0.02);
}

.process-list {
  display: grid;
  gap: 1rem;
}

.process-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.2rem;
  padding: 1.35rem;
  border-radius: 8px;
}

.process-step span {
  display: grid;
  place-items: center;
  width: 3.4rem;
  height: 3.4rem;
  border-radius: 8px;
  background: rgba(216, 183, 106, 0.14);
  color: var(--gold);
  border: 1px solid rgba(216, 183, 106, 0.26);
  font-weight: 900;
}

.media-collage {
  position: relative;
  min-height: 34rem;
}

.studio-tags {
  position: absolute;
  left: 0;
  right: 8%;
  top: 29.5rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.media-small {
  border-radius: 8px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.studio-motion {
  position: absolute;
  inset: 0 auto auto 0;
  width: 78%;
  height: 28rem;
  overflow: hidden;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    radial-gradient(circle at 24% 22%, rgba(183, 216, 168, 0.14), transparent 15rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.02));
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.34);
}

.studio-motion::before,
.studio-motion::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: var(--pista);
  opacity: 0.16;
  filter: blur(2px);
  animation: drift 9s ease-in-out infinite;
}

.studio-motion::before {
  width: 8rem;
  height: 8rem;
  left: -2rem;
  top: 2rem;
}

.studio-motion::after {
  width: 11rem;
  height: 11rem;
  right: -3rem;
  bottom: -3rem;
  animation-delay: -3s;
}

.motion-screen {
  position: absolute;
  left: 10%;
  right: 10%;
  top: 12%;
  height: 48%;
  border-radius: 12px;
  border: 1px solid rgba(183, 216, 168, 0.18);
  background:
    linear-gradient(135deg, rgba(183, 216, 168, 0.1), transparent 45%),
    rgba(8, 10, 15, 0.6);
}

.play-icon {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: var(--pista);
  font-size: 4.2rem;
  opacity: 0.92;
  animation: pulsePlay 2.4s ease-in-out infinite;
}

.timeline {
  position: absolute;
  left: 8%;
  right: 8%;
  bottom: -3.8rem;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1.5fr 1fr;
  gap: 0.6rem;
}

.timeline span {
  height: 2rem;
  border-radius: 999px;
  background: rgba(183, 216, 168, 0.78);
  animation: timelineShift 4.8s ease-in-out infinite;
}

.timeline span:nth-child(2) {
  animation-delay: -1s;
  background: rgba(216, 183, 106, 0.68);
}

.timeline span:nth-child(3) {
  animation-delay: -2s;
}

.timeline span:nth-child(4) {
  animation-delay: -3s;
  background: rgba(115, 185, 207, 0.62);
}

.playhead {
  position: absolute;
  left: 18%;
  top: 0;
  bottom: -5.5rem;
  width: 2px;
  background: var(--pista);
  box-shadow: 0 0 18px rgba(183, 216, 168, 0.55);
  animation: playheadMove 4.8s linear infinite;
}

.sound-wave {
  position: absolute;
  left: 10%;
  right: 10%;
  bottom: 10%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 5rem;
}

.sound-wave span {
  width: 0.55rem;
  height: 1.3rem;
  border-radius: 999px;
  background: var(--pista);
  opacity: 0.9;
  animation: waveBounce 1.35s ease-in-out infinite;
}

.sound-wave span:nth-child(2) { animation-delay: -0.2s; }
.sound-wave span:nth-child(3) { animation-delay: -0.4s; }
.sound-wave span:nth-child(4) { animation-delay: -0.6s; }
.sound-wave span:nth-child(5) { animation-delay: -0.8s; }
.sound-wave span:nth-child(6) { animation-delay: -1s; }
.sound-wave span:nth-child(7) { animation-delay: -1.2s; }
.sound-wave span:nth-child(8) { animation-delay: -1.4s; }
}

.media-small {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  justify-content: start;
  gap: 0.5rem;
  width: 100%;
  min-height: 5.4rem;
  padding: 1rem 1.15rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
  text-align: left;
}

.media-small i {
  color: var(--gold);
  font-size: 1.85rem;
}

.media-small span {
  font-family: Oswald, sans-serif;
  font-size: 1.35rem;
  font-weight: 300;
}

.channel-box {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
  padding: 1.15rem;
  border-radius: 8px;
}

.channel-box > i {
  color: #ff0033;
  font-size: 2.6rem;
}

.channel-box h3,
.channel-box p {
  margin: 0;
}

.proof-section {
  padding-top: 0;
}

.proof-grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 1rem;
  align-items: stretch;
}

.proof-grid > div:first-child {
  padding-right: 2rem;
}

.proof-item {
  padding: 1.2rem;
  border-radius: 8px;
}

.proof-item i {
  display: grid;
  place-items: center;
  width: 3.4rem;
  height: 3.4rem;
  margin-bottom: 1.15rem;
  border-radius: 8px;
  background: rgba(216, 183, 106, 0.1);
  border: 1px solid rgba(216, 183, 106, 0.18);
  color: var(--gold);
  font-size: 1.45rem;
}

.proof-item strong {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--gold);
  font-family: Oswald, sans-serif;
  font-size: 1.25rem;
  font-weight: 400;
}

.contact-section {
  background:
    radial-gradient(circle at 20% 50%, rgba(115, 185, 207, 0.07), transparent 28rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.035), rgba(216, 183, 106, 0.055));
  border-block: 1px solid var(--line);
}

.contact-card {
  padding: 1.4rem;
  border-radius: 8px;
  text-align: center;
}

.contact-logo-wrap {
  display: grid;
  place-items: center;
  width: 10.5rem;
  height: 10.5rem;
  margin: 0 auto 1rem;
  padding: 1.55rem;
  border-radius: 50%;
  border: 4px solid rgba(255, 255, 255, 0.16);
  background: rgba(8, 10, 15, 0.45);
}

.contact-card img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 0;
  margin-bottom: 1rem;
  border: 0;
}

.contact-logo-wrap img {
  margin: 0;
}

.site-footer {
  padding: 2.2rem 0;
  background: #07080d;
}

.footer-links {
  display: flex;
  justify-content: flex-end;
  gap: 0.8rem;
}

.footer-links a {
  display: grid;
  place-items: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  text-decoration: none;
}

.footer-links a:hover {
  background: var(--gold);
  color: #100908;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.8rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.92rem;
}

.footer-bottom a {
  color: var(--gold);
  text-decoration: none;
}

.back-top {
  display: inline-grid;
  place-items: center;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  border: 1px solid rgba(216, 183, 106, 0.35);
  background: rgba(216, 183, 106, 0.08);
}

.back-top:hover {
  background: var(--gold);
  color: #111217;
}

@media (max-width: 991.98px) {
  .navbar-collapse {
    padding: 1rem 0;
    flex-basis: 100%;
  }

  .nav-center {
    align-items: center;
    text-align: center;
    padding-bottom: 0.25rem;
  }

  h1 {
    max-width: 100%;
  }

  .hero-section .min-vh-100 {
    min-height: auto !important;
    padding-top: 4rem !important;
  }

  .panel-top {
    left: 0.5rem;
  }

  .panel-bottom {
    right: 0.5rem;
  }

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

  .proof-grid > div:first-child {
    padding-right: 0;
  }

  .gallery-grid {
    grid-template-columns: repeat(6, 1fr);
  }

  .gallery-card,
  .gallery-card:nth-child(7n + 1),
  .gallery-card:nth-child(7n + 3),
  .gallery-card:nth-child(7n + 6) {
    grid-column: span 3;
    grid-row: auto;
    min-height: 20rem;
  }

  .video-grid {
    grid-template-columns: repeat(6, 1fr);
  }

  .video-card,
  .video-card:nth-child(1),
  .video-card:nth-child(2) {
    grid-column: span 3;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 767.98px) {
  .hero-section .row,
  .section .row {
    margin-left: 0;
    margin-right: 0;
  }

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

  .display-2 {
    font-size: 3.35rem;
  }

  .portrait-card {
    transform: none;
  }

  .floating-panel {
    position: static;
    margin-top: 0.8rem;
  }

  .service-card {
    min-height: auto;
  }

  .service-mark,
  .mini-icon {
    font-size: 4rem;
  }

  .service-mark {
    right: 1rem;
    top: 1rem;
    opacity: 0.1;
  }

  .media-collage {
    min-height: auto;
    display: grid;
    gap: 1rem;
  }

  .studio-motion,
  .studio-tags {
    position: static;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 11;
  }

  .studio-tags {
    aspect-ratio: auto;
    grid-template-columns: 1fr;
  }

  .channel-box {
    grid-template-columns: 1fr;
  }

  .gallery-hero h1 {
    font-size: clamp(3rem, 15vw, 4.8rem);
  }

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

  .gallery-card,
  .gallery-card:nth-child(7n + 1),
  .gallery-card:nth-child(7n + 3),
  .gallery-card:nth-child(7n + 6) {
    grid-column: auto;
    min-height: 22rem;
  }

  .video-hero h1 {
    font-size: clamp(3rem, 15vw, 4.7rem);
  }

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

  .video-card,
  .video-card:nth-child(1),
  .video-card:nth-child(2) {
    grid-column: auto;
  }

  .footer-bottom {
    display: block;
  }

  .footer-bottom a {
    display: inline-block;
    margin-top: 0.7rem;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(2rem);
  transition: opacity 0.72s ease, transform 0.72s ease;
}

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

@keyframes logoPulse {
  0%,
  100% {
    transform: scale(1);
    filter: drop-shadow(0 0 0 rgba(255, 207, 74, 0));
  }
  50% {
    transform: scale(1.08);
    filter: drop-shadow(0 0 28px rgba(255, 207, 74, 0.44));
  }
}

@keyframes floatHero {
  0%,
  100% {
    transform: rotate(1.4deg) translateY(0);
  }
  50% {
    transform: rotate(-0.6deg) translateY(-1rem);
  }
}

@keyframes pulsePlay {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.82;
  }
  50% {
    transform: scale(1.08);
    opacity: 1;
  }
}

@keyframes timelineShift {
  0%,
  100% {
    transform: translateX(0);
    opacity: 0.72;
  }
  50% {
    transform: translateX(1rem);
    opacity: 1;
  }
}

@keyframes playheadMove {
  0% {
    left: 8%;
  }
  100% {
    left: 92%;
  }
}

@keyframes waveBounce {
  0%,
  100% {
    height: 1.2rem;
  }
  50% {
    height: 4.7rem;
  }
}

@keyframes drift {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(1.4rem, -1rem, 0);
  }
}

@media (max-width: 420px) {
  .display-2 {
    font-size: 2.85rem;
  }

  .btn-lg {
    width: 100%;
  }

  .section {
    padding: 4.5rem 0;
  }
}
