:root {
  --ink: #050505;
  --paper: #090a0a;
  --surface: #121212;
  --surface-2: #1a1a1a;
  --graphite: #6e6e6a;
  --muted: #a7a39a;
  --line: rgba(255, 255, 255, 0.15);
  --amber: #ffb21d;
  --coral: #ff3b14;
  --teal: #ff6a00;
  --blue: #9c9a92;
  --white: #ffffff;
  --ember-gradient: linear-gradient(135deg, #ffcf35 0%, #ff7a00 42%, #ff2d12 100%);
  --metal-gradient: linear-gradient(135deg, #8d8b85 0%, #5d5d59 48%, #282827 100%);
  --dark-gradient: radial-gradient(circle at top left, rgba(255, 120, 0, 0.18), transparent 34%), linear-gradient(135deg, #111 0%, #070707 58%, #17120f 100%);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

section {
  scroll-margin-top: 92px;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 18% 0%, rgba(255, 105, 0, 0.16), transparent 28%),
    radial-gradient(circle at 92% 12%, rgba(255, 207, 53, 0.09), transparent 24%),
    var(--paper);
  color: var(--white);
  font-family: "Manrope", system-ui, sans-serif;
  line-height: 1.6;
}

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px clamp(18px, 4vw, 56px);
  color: var(--white);
  transition: background 180ms ease, border-color 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(5, 5, 5, 0.9);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
}

.brand-mark {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  overflow: hidden;
  background: radial-gradient(circle, rgba(255, 122, 0, 0.16), rgba(255, 255, 255, 0.035));
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: scale(1.8);
}

.brand small {
  display: block;
  color: rgba(255, 255, 255, 0.68);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 34px);
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  font-weight: 700;
}

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

.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  border: 0;
  padding: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.78);
  cursor: pointer;
  font: inherit;
  font-size: 14px;
  font-weight: 700;
}

.nav-dropdown-toggle::after {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-left: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-3px) rotate(45deg);
}

.nav-dropdown:hover .nav-dropdown-toggle,
.nav-dropdown:focus-within .nav-dropdown-toggle {
  color: var(--white);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  display: grid;
  min-width: 320px;
  padding: 10px;
  visibility: hidden;
  opacity: 0;
  transform: translate(-50%, 8px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  background:
    radial-gradient(circle at top right, rgba(255, 122, 0, 0.14), transparent 42%),
    rgba(5, 5, 5, 0.96);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.44);
  backdrop-filter: blur(18px);
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  visibility: visible;
  opacity: 1;
  transform: translate(-50%, 0);
}

.nav-dropdown-menu a {
  padding: 11px 12px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 13px;
  line-height: 1.2;
}

.nav-dropdown-menu a:hover {
  background: rgba(255, 106, 0, 0.14);
  color: var(--amber);
}

.nav-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
}

.hero-overlay {
  background:
    radial-gradient(circle at 58% 38%, rgba(255, 106, 0, 0.12), transparent 28%),
    linear-gradient(90deg, rgba(5, 5, 5, 0.9), rgba(5, 5, 5, 0.52) 48%, rgba(5, 5, 5, 0.22)),
    linear-gradient(0deg, rgba(5, 5, 5, 0.95), rgba(5, 5, 5, 0.02) 42%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(760px, calc(100% - 36px));
  margin: 0 0 95px clamp(18px, 7vw, 96px);
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  letter-spacing: 0;
  line-height: 0.98;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(50px, 6.8vw, 94px);
  font-weight: 800;
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(38px, 6vw, 78px);
  font-weight: 800;
}

.hero-copy {
  max-width: 640px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(18px, 2vw, 23px);
}

.hero-slogan {
  margin-bottom: 16px;
  color: var(--amber);
  font-size: clamp(22px, 3vw, 38px);
  font-weight: 800;
  line-height: 1.1;
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 13px 20px;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 800;
}

.button.primary {
  background: var(--ember-gradient);
  color: #16100a;
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.38);
  color: var(--white);
}

.button.wide {
  width: 100%;
}

.hero-strip {
  position: absolute;
  right: clamp(18px, 5vw, 72px);
  bottom: 32px;
  left: clamp(18px, 5vw, 72px);
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.hero-strip span {
  padding: 18px 16px;
  border-right: 1px solid var(--line);
  color: rgba(255, 255, 255, 0.74);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-strip span:last-child {
  border-right: 0;
}

.section {
  padding: clamp(72px, 10vw, 132px) clamp(18px, 5vw, 72px);
}

.about-grid,
.section-heading,
.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: clamp(34px, 6vw, 84px);
  align-items: start;
}

.about-grid p,
.section-heading p,
.contact-panel p {
  color: var(--muted);
  font-size: 18px;
}

.metric-panel {
  display: grid;
  gap: 1px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.metric-panel div {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 20px;
  align-items: center;
  background:
    radial-gradient(circle at top right, rgba(255, 120, 0, 0.12), transparent 44%),
    var(--surface);
  color: var(--white);
  padding: 24px;
}

.metric-panel strong {
  color: var(--amber);
  font-size: 38px;
  line-height: 1;
}

.metric-panel span {
  color: rgba(255, 255, 255, 0.72);
}

.services-section,
.team-section {
  background: var(--dark-gradient);
  color: var(--white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 44px;
  background: rgba(255, 255, 255, 0.12);
}

.featured-services-grid {
  grid-template-columns: repeat(3, 1fr);
}

.services-summary {
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
  margin-top: 38px;
  padding: 30px;
  border: 1px solid rgba(255, 184, 62, 0.22);
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 106, 0, 0.18), transparent 38%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015)),
    var(--surface);
  box-shadow: var(--shadow);
}

.services-summary p {
  max-width: 650px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
}

.service-card {
  display: block;
  min-height: 290px;
  padding: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent),
    var(--surface);
  transition: transform 180ms ease, background 180ms ease;
}

.service-card:hover {
  background:
    radial-gradient(circle at top right, rgba(255, 106, 0, 0.16), transparent 42%),
    #1c1b19;
  transform: translateY(-4px);
}

.service-card > span {
  color: var(--amber);
  font-size: 12px;
  font-weight: 900;
}

.service-icon {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  margin-top: 22px;
  border: 2px solid var(--amber);
  color: var(--amber);
  background: rgba(255, 122, 0, 0.07);
  font-weight: 900;
  line-height: 1;
}

.service-card h3,
.team-card h3 {
  margin: 28px 0 12px;
  font-size: 24px;
  line-height: 1.15;
}

.service-card p,
.team-card p,
.praise-grid blockquote {
  color: rgba(255, 255, 255, 0.68);
}

.process-section {
  background:
    radial-gradient(circle at 12% 0%, rgba(255, 122, 0, 0.14), transparent 34%),
    linear-gradient(135deg, #10100f, #050505);
  color: var(--white);
}

.process-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 44px;
}

.process-track div {
  border-top: 3px solid var(--amber);
  padding-top: 22px;
}

.process-track span {
  color: var(--amber);
  font-weight: 900;
}

.process-track p {
  color: var(--muted);
}

.videos-section {
  background:
    radial-gradient(circle at 82% 6%, rgba(255, 45, 18, 0.16), transparent 28%),
    radial-gradient(circle at 12% 18%, rgba(255, 178, 29, 0.12), transparent 28%),
    #050505;
  color: var(--white);
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 24px;
}

.video-channel {
  position: relative;
  margin-top: 64px;
  padding: clamp(22px, 4vw, 38px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.018)),
    var(--surface);
  box-shadow: var(--shadow);
}

.video-channel::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.52;
}

.production-channel::before {
  background:
    radial-gradient(circle at 82% 12%, rgba(255, 106, 0, 0.22), transparent 34%),
    linear-gradient(90deg, rgba(255, 184, 62, 0.12), transparent 48%);
}

.music-channel::before {
  background:
    radial-gradient(circle at 86% 10%, rgba(255, 45, 18, 0.18), transparent 34%),
    linear-gradient(90deg, rgba(112, 112, 106, 0.2), transparent 48%);
}

.recent-work-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(420px, 1.15fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  margin-top: 52px;
  padding: clamp(24px, 4vw, 44px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background:
    radial-gradient(circle at 82% 18%, rgba(255, 178, 29, 0.16), transparent 26%),
    linear-gradient(135deg, rgba(255, 106, 0, 0.16), transparent 38%),
    linear-gradient(90deg, rgba(112, 112, 106, 0.16), rgba(255, 255, 255, 0.035));
}

.recent-work-card::before {
  content: "";
  position: absolute;
  inset: -60%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.16), transparent);
  transform: rotate(18deg) translateX(-45%);
  animation: sweepLight 6s ease-in-out infinite;
}

.recent-work-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px);
  background-size: 100% 18px;
  opacity: 0.18;
  animation: scanLines 3.5s linear infinite;
}

.recent-work-copy,
.recent-video-shell {
  position: relative;
  z-index: 1;
}

.recent-work-copy h3 {
  margin: 12px 0 18px;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 0.98;
}

.recent-work-copy p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 18px;
}

.recent-work-copy .button {
  margin-top: 16px;
}

.recent-video-shell {
  position: relative;
}

.recent-video-glow {
  position: absolute;
  inset: -18px;
  background: linear-gradient(135deg, rgba(255, 207, 53, 0.7), rgba(255, 106, 0, 0.62), rgba(255, 45, 18, 0.52));
  filter: blur(26px);
  opacity: 0.45;
  animation: pulseGlow 4s ease-in-out infinite;
}

.recent-video-frame {
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.42);
}

.recent-video-trigger span {
  width: 84px;
  height: 84px;
}

.recent-video-trigger::after {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  pointer-events: none;
}

.channel-heading {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 28px;
}

.channel-heading h3 {
  margin: 8px 0 12px;
  font-size: clamp(42px, 6vw, 86px);
  line-height: 0.9;
}

.channel-heading p {
  max-width: 640px;
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 18px;
}

.channel-label {
  color: var(--amber);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.video-card {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 106, 0, 0.035)),
    var(--surface);
}

.video-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #111;
}

.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-trigger {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  padding: 0;
  cursor: pointer;
  background: #111;
}

.video-trigger img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.72;
  transition: opacity 180ms ease, transform 180ms ease;
}

.video-trigger span {
  position: absolute;
  left: 50%;
  top: 50%;
  display: grid;
  width: 66px;
  height: 66px;
  place-items: center;
  transform: translate(-50%, -50%);
  background: var(--ember-gradient);
  color: #16100a;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.video-trigger:hover img {
  opacity: 0.9;
  transform: scale(1.04);
}

.video-card h3 {
  margin: 20px 20px 8px;
  font-size: 22px;
  line-height: 1.15;
}

.video-card p {
  margin: 0 20px 22px;
  color: rgba(255, 255, 255, 0.64);
}

.channel-link {
  display: inline-flex;
  min-height: 52px;
  flex-shrink: 0;
  gap: 10px;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  border: 1px solid rgba(255, 184, 62, 0.28);
  background:
    radial-gradient(circle at top right, rgba(255, 178, 29, 0.16), transparent 40%),
    rgba(255, 255, 255, 0.055);
  color: var(--amber);
  font-weight: 900;
}

.channel-link:hover {
  border-color: rgba(255, 184, 62, 0.58);
  background: rgba(255, 106, 0, 0.16);
  color: var(--white);
}

.youtube-badge {
  display: grid;
  width: 36px;
  height: 28px;
  place-items: center;
  border-radius: 4px;
  background: #ff2d12;
  color: #fff;
  font-size: 11px;
  font-weight: 900;
}

@keyframes sweepLight {
  0%,
  38% {
    transform: rotate(18deg) translateX(-55%);
  }
  72%,
  100% {
    transform: rotate(18deg) translateX(55%);
  }
}

@keyframes scanLines {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 0 36px;
  }
}

@keyframes pulseGlow {
  0%,
  100% {
    opacity: 0.32;
    transform: scale(0.98);
  }
  50% {
    opacity: 0.62;
    transform: scale(1.02);
  }
}

.team-grid,
.praise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 44px;
}

.team-card {
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 30px;
  background:
    radial-gradient(circle at top left, rgba(255, 122, 0, 0.1), transparent 42%),
    rgba(255, 255, 255, 0.04);
}

.avatar {
  display: grid;
  width: 92px;
  height: 92px;
  place-items: center;
  background: var(--ember-gradient);
  color: #17100b;
  font-weight: 900;
  font-size: 28px;
}

.profile-link {
  display: inline-flex;
  margin-top: 14px;
  color: var(--amber);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.profile-link:hover {
  color: var(--white);
}

.praise-section {
  background:
    radial-gradient(circle at 80% 0%, rgba(255, 178, 29, 0.1), transparent 30%),
    #100d0a;
  color: var(--white);
}

.praise-grid figure {
  margin: 0;
  padding: 30px;
  border-left: 3px solid var(--amber);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 106, 0, 0.04));
}

.praise-grid blockquote {
  margin: 0 0 24px;
  font-size: 18px;
}

.praise-grid figcaption {
  color: var(--amber);
  font-weight: 800;
}

.contact-section {
  background: var(--dark-gradient);
  color: var(--white);
}

.contact-panel {
  padding: clamp(26px, 4vw, 54px);
  background:
    radial-gradient(circle at top right, rgba(255, 122, 0, 0.16), transparent 32%),
    var(--surface);
  box-shadow: var(--shadow);
}

address {
  display: grid;
  gap: 10px;
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.75);
  font-style: normal;
}

address a:hover {
  color: var(--amber);
}

.contact-form {
  display: grid;
  gap: 14px;
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  font-weight: 800;
}

input,
textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.055);
  color: var(--white);
  font: inherit;
  padding: 13px 14px;
  outline: none;
}

input:focus,
textarea:focus {
  border-color: var(--amber);
}

.whatsapp-panel {
  padding: 30px;
  background:
    radial-gradient(circle at top right, rgba(37, 211, 102, 0.16), transparent 38%),
    rgba(255, 122, 0, 0.06);
  border: 1px solid rgba(255, 178, 29, 0.24);
}

.whatsapp-panel-icon {
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  margin-bottom: 22px;
  background: #25d366;
  color: #062d18;
  font-weight: 900;
}

.whatsapp-panel h3 {
  margin: 0 0 12px;
  font-size: 28px;
  line-height: 1.1;
}

.whatsapp-panel p {
  color: rgba(255, 255, 255, 0.72);
}

.whatsapp-button {
  background: #25d366;
  color: #062d18;
}

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 50;
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  background: #25d366;
  color: #062d18;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.floating-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.floating-whatsapp svg {
  width: 35px;
  height: 35px;
  fill: currentColor;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  justify-content: center;
  padding: 26px 18px;
  background:
    linear-gradient(90deg, rgba(255, 106, 0, 0.08), transparent),
    #050505;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
}

.site-footer p {
  margin: 0;
  color: var(--white);
  font-weight: 800;
}

.footer-socials {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.social-icon {
  position: relative;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background:
    radial-gradient(circle at top right, rgba(255, 178, 29, 0.14), transparent 36%),
    rgba(255, 255, 255, 0.045);
  color: rgba(255, 255, 255, 0.78);
  transition: transform 180ms ease, color 180ms ease, border-color 180ms ease, background 180ms ease;
}

.social-icon:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 178, 29, 0.5);
  background: rgba(255, 106, 0, 0.16);
  color: var(--amber);
}

.social-icon svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.social-icon span {
  position: absolute;
  right: 5px;
  bottom: 4px;
  color: var(--amber);
  font-size: 9px;
  font-weight: 900;
}

.social-icon.text-icon {
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
}

.service-detail-body {
  background: var(--paper);
  color: var(--white);
}

.service-hero {
  position: relative;
  min-height: 68vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 150px clamp(18px, 6vw, 84px) 76px;
}

.service-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 65% 30%, rgba(255, 106, 0, 0.14), transparent 28%),
    linear-gradient(90deg, rgba(5, 5, 5, 0.94), rgba(5, 5, 5, 0.5)),
    url("assets/vihangam-hero.png") center / cover;
  opacity: 0.78;
}

.service-hero-content {
  position: relative;
  z-index: 1;
  max-width: 920px;
}

.service-hero h1 {
  max-width: 920px;
}

.service-hero p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(18px, 2vw, 24px);
}

.service-detail {
  padding: clamp(64px, 8vw, 112px) clamp(18px, 6vw, 84px);
  background:
    radial-gradient(circle at 12% 0%, rgba(255, 178, 29, 0.1), transparent 32%),
    #0b0b0a;
  color: var(--white);
}

.service-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.75fr);
  gap: clamp(32px, 6vw, 82px);
  align-items: start;
}

.service-detail h2 {
  font-size: clamp(34px, 4.8vw, 62px);
}

.service-detail p {
  color: var(--muted);
  font-size: 18px;
}

.deliverables {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.deliverables li {
  padding: 16px 18px;
  border-left: 3px solid var(--amber);
  background:
    linear-gradient(90deg, rgba(255, 122, 0, 0.11), rgba(255, 255, 255, 0.04));
  font-weight: 800;
}

.service-side-panel {
  padding: 28px;
  background:
    radial-gradient(circle at top right, rgba(255, 106, 0, 0.16), transparent 42%),
    var(--surface);
  color: var(--white);
  box-shadow: var(--shadow);
}

.service-side-panel h3 {
  margin-bottom: 14px;
  font-size: 24px;
}

.service-side-panel p {
  color: rgba(255, 255, 255, 0.7);
}

.service-nav-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 42px;
  background: rgba(255, 255, 255, 0.12);
}

.service-nav-grid a {
  min-height: 92px;
  padding: 18px;
  background: var(--surface);
  color: rgba(255, 255, 255, 0.72);
  font-weight: 800;
}

.service-nav-grid a:hover {
  color: var(--amber);
}

.profile-hero::before {
  background:
    radial-gradient(circle at 72% 22%, rgba(255, 178, 29, 0.18), transparent 30%),
    linear-gradient(90deg, rgba(5, 5, 5, 0.95), rgba(5, 5, 5, 0.5)),
    url("assets/vihangam-hero.png") center / cover;
}

.profile-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.imdb-panel {
  position: sticky;
  top: 108px;
  padding: 30px;
  border: 1px solid rgba(255, 184, 62, 0.28);
  background:
    radial-gradient(circle at top right, rgba(255, 106, 0, 0.18), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    var(--surface);
  box-shadow: var(--shadow);
}

.imdb-logo {
  display: inline-grid;
  min-width: 88px;
  min-height: 48px;
  place-items: center;
  margin-bottom: 28px;
  border-radius: 4px;
  background: #f5c518;
  color: #101010;
  font-size: 24px;
  font-weight: 900;
}

.imdb-panel h2,
.profile-content h2 {
  font-size: clamp(32px, 4vw, 54px);
}

.credit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 34px;
}

.credit-card,
.profile-meta div {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 106, 0, 0.035)),
    var(--surface);
}

.credit-card {
  min-height: 220px;
  padding: 24px;
}

.credit-card span {
  color: var(--amber);
  font-size: 13px;
  font-weight: 900;
}

.credit-card h3 {
  margin: 40px 0 14px;
  font-size: 24px;
}

.credit-card p {
  margin: 0;
}

.profile-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 34px;
  background: rgba(255, 255, 255, 0.12);
}

.profile-meta div {
  display: grid;
  gap: 8px;
  padding: 22px;
}

.profile-meta strong {
  color: var(--white);
  font-size: 18px;
}

.profile-meta span,
.source-note {
  color: rgba(255, 255, 255, 0.62);
}

.source-note {
  margin-top: 26px;
  font-size: 14px;
}

@media (max-width: 980px) {
  .about-grid,
  .section-heading,
  .contact-panel,
  .recent-work-card,
  .services-grid,
  .process-track,
  .video-grid,
  .team-grid,
  .praise-grid,
  .service-detail-grid,
  .service-nav-grid,
  .profile-layout,
  .credit-grid,
  .profile-meta {
    grid-template-columns: 1fr 1fr;
  }

  .imdb-panel {
    position: static;
  }

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

@media (max-width: 720px) {
  .site-header {
    padding: 14px 18px;
  }

  .brand {
    gap: 9px;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
  }

  .brand strong {
    font-size: 14px;
  }

  .brand small {
    font-size: 10px;
  }

  .nav-toggle {
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.24);
    background: rgba(255, 255, 255, 0.06);
  }

  .nav-toggle span {
    width: 18px;
    height: 2px;
    background: var(--white);
  }

  .nav {
    position: absolute;
    top: 72px;
    left: 18px;
    right: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background:
      linear-gradient(135deg, rgba(255, 106, 0, 0.12), rgba(5, 5, 5, 0.98)),
      rgba(5, 5, 5, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.12);
    max-height: calc(100svh - 92px);
    overflow-y: auto;
  }

  .nav.is-open {
    display: flex;
  }

  .nav a {
    padding: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .nav-dropdown {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .nav-dropdown-toggle {
    width: 100%;
    padding: 16px;
    text-align: left;
  }

  .nav-dropdown-menu {
    position: static;
    min-width: 0;
    padding: 0 0 8px;
    visibility: visible;
    opacity: 1;
    transform: none;
    border: 0;
    background: rgba(255, 255, 255, 0.035);
    box-shadow: none;
    backdrop-filter: none;
  }

  .nav-dropdown:hover .nav-dropdown-menu,
  .nav-dropdown:focus-within .nav-dropdown-menu {
    transform: none;
  }

  .nav-dropdown-menu a {
    padding: 10px 16px 10px 28px;
    font-size: 13px;
  }

  .hero {
    min-height: 100svh;
  }

  .hero-content {
    width: calc(100% - 36px);
    margin: 0 18px 205px;
  }

  h1 {
    font-size: clamp(42px, 14vw, 58px);
  }

  h2 {
    font-size: clamp(32px, 11vw, 46px);
  }

  .hero-slogan {
    font-size: clamp(22px, 8vw, 30px);
  }

  .hero-copy {
    font-size: 16px;
  }

  .hero-actions {
    margin-top: 22px;
  }

  .button {
    min-height: 46px;
    padding: 12px 16px;
  }

  .about-grid,
  .section-heading,
  .contact-panel,
  .recent-work-card,
  .services-grid,
  .process-track,
  .video-grid,
  .team-grid,
  .praise-grid,
  .service-detail-grid,
  .service-nav-grid,
  .profile-layout,
  .credit-grid,
  .profile-meta,
  .hero-strip {
    grid-template-columns: 1fr;
  }

  .hero-strip span {
    padding: 10px 12px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    font-size: 12px;
  }

  .metric-panel div {
    grid-template-columns: 84px 1fr;
    padding: 20px;
  }

  .services-summary {
    display: grid;
    padding: 22px;
  }

  .services-summary .button {
    width: 100%;
  }

  .service-card {
    min-height: 220px;
  }

  .section {
    padding: 62px 18px;
  }

  .service-card,
  .team-card,
  .praise-grid figure,
  .service-side-panel,
  .whatsapp-panel {
    padding: 22px;
  }

  .service-card h3,
  .team-card h3 {
    font-size: 22px;
  }

  .recent-work-card {
    gap: 24px;
  }

  .recent-work-copy h3 {
    font-size: clamp(30px, 10vw, 42px);
  }

  .channel-heading {
    display: grid;
    align-items: start;
  }

  .channel-heading h3 {
    font-size: clamp(36px, 13vw, 58px);
  }

  .channel-link {
    width: 100%;
  }

  .service-hero {
    min-height: 56svh;
    padding: 120px 18px 54px;
  }

  .service-detail {
    padding: 56px 18px;
  }

  .service-detail p,
  .about-grid p,
  .section-heading p,
  .contact-panel p {
    font-size: 16px;
  }

  .floating-whatsapp {
    right: 16px;
    bottom: 16px;
    width: 56px;
    height: 56px;
  }

  .site-footer {
    padding-bottom: 86px;
  }
}

@media (max-width: 420px) {
  .hero-content {
    margin-bottom: 195px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .metric-panel div {
    grid-template-columns: 1fr;
  }

  .footer-socials {
    max-width: 260px;
  }
}
