:root {
  color-scheme: dark;
  --bg: #050505;
  --bg-soft: #0b0f0d;
  --panel: #0b0f0d;
  --panel-soft: rgba(5, 9, 7, 0.82);
  --emerald: #10b981;
  --emerald-bright: #34d399;
  --emerald-deep: #064e3b;
  --text: #f8fafc;
  --muted: #94a3b8;
  --line: rgba(52, 211, 153, 0.18);
  --line-white: rgba(248, 250, 252, 0.12);
  --max: 1180px;
}

html[data-theme="light"] {
  color-scheme: light;
  --bg: #f8fafc;
  --bg-soft: #eefdf6;
  --panel: #ffffff;
  --panel-soft: rgba(255, 255, 255, 0.86);
  --text: #06110d;
  --muted: #475569;
  --line: rgba(16, 185, 129, 0.26);
  --line-white: rgba(15, 23, 42, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 18% 0%, rgba(16, 185, 129, 0.16), transparent 24rem),
    radial-gradient(circle at 90% 30%, rgba(6, 78, 59, 0.34), transparent 26rem),
    linear-gradient(180deg, #050505 0%, #070b09 44%, #050505 100%);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  line-height: 1.5;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(248, 250, 252, 0.018) 1px, transparent 1px),
    linear-gradient(rgba(248, 250, 252, 0.016) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.82), transparent 78%);
}

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

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--emerald-bright);
  outline-offset: 4px;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 104px;
  padding: 20px 32px;
  border-bottom: 1px solid rgba(248, 250, 252, 0.08);
  background: rgba(5, 5, 5, 0.88);
  backdrop-filter: blur(18px);
}

.mobile-menu {
  position: absolute;
  top: calc(100% - 8px);
  right: 20px;
  left: 20px;
  display: grid;
  gap: 8px;
  padding: 14px;
  border: 1px solid rgba(52, 211, 153, 0.18);
  border-radius: 18px;
  background: rgba(5, 5, 5, 0.94);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.48);
  backdrop-filter: blur(18px);
}

.mobile-menu[hidden] {
  display: none;
}

.mobile-menu a {
  min-height: 48px;
  display: flex;
  align-items: center;
  border-radius: 14px;
  padding: 0 14px;
  color: rgba(248, 250, 252, 0.86);
  font-weight: 850;
}

.mobile-menu a:hover,
.mobile-menu a:focus-visible {
  background: rgba(16, 185, 129, 0.13);
  color: var(--emerald-bright);
}

.brand {
  display: grid;
  width: fit-content;
  min-height: 58px;
  align-content: center;
  color: var(--text);
  line-height: 1;
  text-transform: uppercase;
}

.brand-wave {
  display: flex;
  align-items: end;
  justify-content: center;
  gap: 2px;
  width: 126px;
  height: 18px;
  margin-left: 34px;
}

.brand-wave i {
  display: block;
  width: 3px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--emerald-bright), var(--emerald));
  box-shadow: 0 0 14px rgba(52, 211, 153, 0.62);
}

.brand-wave i:nth-child(1) { height: 5px; }
.brand-wave i:nth-child(2) { height: 11px; }
.brand-wave i:nth-child(3) { height: 18px; }
.brand-wave i:nth-child(4) { height: 26px; }
.brand-wave i:nth-child(5) { height: 17px; }
.brand-wave i:nth-child(6) { height: 10px; }
.brand-wave i:nth-child(7) { height: 6px; }

.brand-title {
  font-size: clamp(1.55rem, 7vw, 2.3rem);
  font-weight: 950;
  letter-spacing: 0.08em;
}

.brand-title span {
  color: var(--emerald-bright);
}

.brand-subtitle {
  position: relative;
  width: fit-content;
  margin: 4px auto 0;
  color: rgba(248, 250, 252, 0.84);
  font-size: 0.86rem;
  font-weight: 750;
  letter-spacing: 0.55em;
}

.brand-subtitle::before,
.brand-subtitle::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 42px;
  height: 1px;
  background: rgba(248, 250, 252, 0.6);
}

.brand-subtitle::before {
  right: calc(100% + 10px);
}

.brand-subtitle::after {
  left: calc(100% + 10px);
}

.desktop-nav,
.header-cta {
  display: none;
}

.theme-toggle {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 9px;
  border: 1px solid rgba(52, 211, 153, 0.18);
  border-radius: 999px;
  background: rgba(16, 185, 129, 0.1);
  color: var(--emerald-bright);
  font: inherit;
  font-size: 0.82rem;
  font-weight: 900;
  padding: 0 14px;
  cursor: pointer;
}

.theme-toggle-icon {
  position: relative;
  display: inline-block;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--emerald-bright);
  box-shadow: 0 0 18px rgba(52, 211, 153, 0.48);
}

.theme-toggle-icon::after {
  content: "";
  position: absolute;
  top: -2px;
  right: -2px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #050505;
}

html[data-theme="light"] .theme-toggle-icon::after {
  opacity: 0;
}

.menu-button {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 0;
  border-radius: 18px;
  background: transparent;
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 36px;
  height: 3px;
  border-radius: 999px;
  background: var(--text);
  box-shadow: 0 0 18px rgba(248, 250, 252, 0.25);
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-button[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.menu-button[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-button[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

main {
  width: 100%;
  margin: 0 auto;
  padding-bottom: 36px;
}

.hero {
  position: relative;
  display: grid;
  min-height: 690px;
  overflow: hidden;
  border-bottom: 1px solid rgba(248, 250, 252, 0.08);
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.98) 0%, rgba(5, 5, 5, 0.78) 42%, rgba(5, 5, 5, 0.32) 100%),
    linear-gradient(180deg, rgba(5, 5, 5, 0.16), rgba(5, 5, 5, 0.78)),
    url("/assets/images/mobile-hero-camera.jpg") center right / calc(100% + 14px) calc(100% + 14px) no-repeat,
    linear-gradient(90deg, rgba(5, 5, 5, 0.98) 0%, rgba(5, 5, 5, 0.75) 42%, rgba(5, 5, 5, 0.25) 100%),
    radial-gradient(circle at 77% 34%, rgba(52, 211, 153, 0.2), transparent 18rem),
    linear-gradient(135deg, #050505 0%, #0d1511 58%, #06110d 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 87% 42%, rgba(52, 211, 153, 0.2), transparent 10rem),
    radial-gradient(circle at 79% 34%, rgba(248, 250, 252, 0.16), transparent 5rem),
    repeating-linear-gradient(90deg, transparent 0 30px, rgba(248, 250, 252, 0.025) 30px 31px);
  opacity: 0.9;
}

.hero::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  height: 16px;
  background: linear-gradient(180deg, transparent, #050505 82%);
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 3;
  display: grid;
  align-content: center;
  gap: 24px;
  max-width: 690px;
  padding: 78px 32px 88px;
}

.eyebrow {
  margin: 0;
  color: var(--emerald-bright);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 0;
  font-size: clamp(3.35rem, 13vw, 7.2rem);
  line-height: 0.96;
  letter-spacing: 0;
}

h1 span {
  display: block;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2.25rem, 8vw, 4.8rem);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 14px;
  font-size: clamp(1.52rem, 6vw, 2.15rem);
  line-height: 1.1;
}

.hero-lede {
  max-width: 520px;
  margin-bottom: 0;
  color: rgba(248, 250, 252, 0.9);
  font-size: clamp(1.05rem, 4.3vw, 1.55rem);
  line-height: 1.42;
}

.hero-price-note {
  width: fit-content;
  margin: -8px 0 0;
  padding: 9px 13px;
  border: 1px solid rgba(52, 211, 153, 0.24);
  border-radius: 999px;
  background: rgba(16, 185, 129, 0.1);
  color: var(--emerald-bright);
  font-size: 0.9rem;
  font-weight: 900;
  box-shadow: 0 12px 42px rgba(16, 185, 129, 0.14);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 56px;
  padding: 15px 26px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 850;
  text-align: center;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.button-arrow,
.cta-arrow,
.nav-arrow {
  display: inline-flex;
  width: 1.1em;
  height: 1.1em;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transform: translateY(-0.02em);
}

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

.button-primary {
  background: linear-gradient(135deg, var(--emerald-bright), var(--emerald));
  color: #02120c;
  box-shadow: 0 18px 55px rgba(16, 185, 129, 0.32);
}

.button-secondary {
  border-color: rgba(248, 250, 252, 0.62);
  background: rgba(5, 5, 5, 0.32);
  color: var(--text);
}

.hero-media {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 2;
  width: min(56vw, 620px);
  height: 100%;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(52, 211, 153, 0.08));
  opacity: 0.38;
}

.section {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 50px 0 32px;
}

.services-intro {
  display: grid;
  justify-items: center;
  gap: 12px;
  text-align: center;
}

.services-intro p:not(.eyebrow),
.process > p:not(.eyebrow),
.why-section > p:not(.eyebrow),
.cta-section p,
.site-footer p {
  color: var(--muted);
}

.feature-services {
  display: grid;
  gap: 18px;
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding-bottom: 28px;
}

.feature-card {
  display: grid;
  overflow: hidden;
  border: 1px solid rgba(52, 211, 153, 0.16);
  border-radius: 10px;
  background:
    radial-gradient(circle at 12% 18%, rgba(52, 211, 153, 0.1), transparent 15rem),
    linear-gradient(135deg, rgba(5, 9, 7, 0.96), rgba(5, 5, 5, 0.86) 56%, rgba(6, 78, 59, 0.18)),
    rgba(5, 5, 5, 0.94);
  box-shadow:
    0 28px 80px rgba(0, 0, 0, 0.52),
    inset 0 1px 0 rgba(248, 250, 252, 0.04);
}

.feature-content {
  position: relative;
  z-index: 2;
  padding: 34px;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.9), rgba(5, 9, 7, 0.82) 68%, rgba(5, 5, 5, 0.44)),
    radial-gradient(circle at 18% 20%, rgba(16, 185, 129, 0.1), transparent 12rem);
}

.price-pill {
  width: fit-content;
  margin: 9px 0 14px;
  padding: 7px 11px;
  border: 1px solid rgba(52, 211, 153, 0.28);
  border-radius: 999px;
  background: rgba(16, 185, 129, 0.11);
  color: var(--emerald-bright);
  font-size: 0.82rem;
  font-weight: 950;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.feature-icon {
  display: grid;
  width: 72px;
  height: 72px;
  place-items: center;
  margin-bottom: 24px;
  border: 1px solid rgba(52, 211, 153, 0.3);
  border-radius: 22px;
  background: rgba(16, 185, 129, 0.12);
  box-shadow: 0 0 40px rgba(16, 185, 129, 0.14);
}

.video-icon::before {
  content: "▣";
  color: var(--emerald-bright);
  font-size: 2.4rem;
}

.audio-icon::before {
  content: "◉";
  color: var(--emerald-bright);
  font-size: 2.5rem;
}

.service-accordion {
  display: grid;
  gap: 12px;
  margin: 22px 0 0;
}

.service-item {
  display: grid;
  grid-template-columns: 1fr 48px;
  gap: 10px;
  align-items: start;
}

.service-accordion details {
  border: 1px solid rgba(52, 211, 153, 0.14);
  border-radius: 16px;
  background: rgba(5, 5, 5, 0.34);
  overflow: hidden;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.service-accordion details[open] {
  border-color: rgba(52, 211, 153, 0.38);
  background: rgba(6, 78, 59, 0.16);
  transform: translateY(-1px);
}

.service-accordion summary {
  position: relative;
  display: flex;
  min-height: 48px;
  align-items: center;
  gap: 12px;
  padding: 12px 42px 12px 14px;
  color: rgba(248, 250, 252, 0.88);
  font-size: 1.02rem;
  font-weight: 850;
  cursor: pointer;
  list-style: none;
}

.service-accordion summary::-webkit-details-marker {
  display: none;
}

.service-accordion summary::before {
  content: "✓";
  flex: 0 0 auto;
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 50%;
  background: var(--emerald);
  color: #03120c;
  font-size: 0.8rem;
  font-weight: 950;
}

.service-accordion summary::after {
  content: "+";
  position: absolute;
  right: 16px;
  top: 50%;
  color: var(--emerald-bright);
  font-size: 1.25rem;
  line-height: 1;
  transform: translateY(-50%);
}

.service-accordion details[open] summary::after {
  content: "−";
}

.accordion-panel {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  transform: translateY(-6px);
  transition: grid-template-rows 260ms ease, opacity 220ms ease, transform 260ms ease;
}

.service-accordion details[open] .accordion-panel {
  grid-template-rows: 1fr;
  opacity: 1;
  transform: translateY(0);
}

.accordion-panel > p {
  min-height: 0;
  overflow: hidden;
}

.service-accordion p {
  margin: 0;
  padding: 0 16px 16px 48px;
  color: rgba(203, 213, 225, 0.9);
  font-size: 0.95rem;
  line-height: 1.55;
}

.service-accordion .service-detail-price {
  padding-top: 0;
  color: var(--emerald-bright);
  font-weight: 900;
}

.service-play {
  display: grid;
  width: 48px;
  min-width: 48px;
  height: 48px;
  min-height: 48px;
  place-items: center;
  border: 1px solid rgba(52, 211, 153, 0.28);
  border-radius: 16px;
  background: rgba(16, 185, 129, 0.13);
  color: var(--emerald-bright);
  font: inherit;
  font-weight: 950;
  cursor: pointer;
  box-shadow: 0 16px 40px rgba(16, 185, 129, 0.1);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, opacity 180ms ease;
}

.service-play span {
  display: block;
  font-size: 0.82rem;
  line-height: 1;
  transform: translateX(1px);
}

.service-play:hover {
  border-color: rgba(52, 211, 153, 0.56);
  background: rgba(16, 185, 129, 0.22);
  transform: translateY(-2px);
}

.service-play:disabled {
  cursor: not-allowed;
  opacity: 0.38;
  transform: none;
}

.feature-visual {
  position: relative;
  min-height: 300px;
  overflow: hidden;
  background: #050505;
}

.feature-visual::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 12px;
  background: linear-gradient(180deg, transparent, #050505 82%);
  pointer-events: none;
}

.video-visual {
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.28), rgba(5, 5, 5, 0.06)),
    url("/assets/images/video-production-card.jpg") center / calc(100% + 10px) calc(100% + 10px) no-repeat,
    radial-gradient(circle at 70% 28%, rgba(52, 211, 153, 0.28), transparent 8rem),
    radial-gradient(circle at 30% 70%, rgba(248, 250, 252, 0.12), transparent 8rem),
    linear-gradient(135deg, #101614, #050505);
}

.audio-visual {
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.24), rgba(5, 5, 5, 0.04)),
    url("/assets/images/audio-production-card.jpg") center / calc(100% + 10px) calc(100% + 10px) no-repeat,
    radial-gradient(circle at 52% 28%, rgba(52, 211, 153, 0.22), transparent 8rem),
    linear-gradient(180deg, #101614, #050505);
}

.service-grid,
.process-grid,
.why-grid {
  display: grid;
  gap: 16px;
}

.service-grid article,
.process-grid article {
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(17, 24, 39, 0.56);
  padding: 24px;
  transition: transform 180ms ease, border-color 180ms ease;
}

.service-grid article:hover,
.process-grid article:hover {
  border-color: rgba(52, 211, 153, 0.38);
  transform: translateY(-3px);
}

.service-grid span,
.process-grid span {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 16px;
  background: rgba(16, 185, 129, 0.13);
  color: var(--emerald-bright);
  font-size: 0.82rem;
  font-weight: 950;
}

.service-grid p,
.process-grid p,
.why-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.process,
.why-section {
  display: grid;
  gap: 22px;
  text-align: center;
}

.why-section {
  border-top: 1px solid rgba(248, 250, 252, 0.08);
  border-bottom: 1px solid rgba(248, 250, 252, 0.08);
}

.why-grid article {
  display: grid;
  justify-items: center;
  gap: 8px;
  padding: 22px 18px;
  border-right: 0;
}

.why-icon {
  display: grid;
  width: 60px;
  height: 60px;
  place-items: center;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.12);
  color: var(--emerald-bright);
  font-size: 2rem;
}

.why-grid h3 {
  margin-bottom: 0;
  font-size: 1.15rem;
}

.cta-section {
  position: relative;
  display: grid;
  gap: 24px;
  width: min(var(--max), calc(100% - 40px));
  margin: 32px auto 0;
  overflow: hidden;
  padding: 34px;
  border: 1px solid rgba(52, 211, 153, 0.22);
  border-radius: 20px;
  background:
    linear-gradient(90deg, rgba(17, 24, 39, 0.94), rgba(6, 78, 59, 0.76)),
    url("/assets/images/studio-cta-texture.jpg") center / calc(100% + 14px) calc(100% + 14px) no-repeat,
    radial-gradient(circle at 84% 50%, rgba(52, 211, 153, 0.32), transparent 15rem),
    linear-gradient(135deg, rgba(17, 24, 39, 0.92), rgba(6, 78, 59, 0.72));
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.45);
}

.cta-section::after {
  content: "";
  position: absolute;
  right: 8%;
  top: 50%;
  width: 300px;
  height: 98px;
  background:
    linear-gradient(90deg, transparent, rgba(52, 211, 153, 0.18), transparent),
    repeating-linear-gradient(90deg, transparent 0 14px, rgba(52, 211, 153, 0.32) 14px 16px);
  opacity: 0.55;
  transform: translateY(-50%);
}

.cta-section > * {
  position: relative;
  z-index: 2;
}

.cta-section p {
  margin: 10px 0 0;
  max-width: 520px;
}

.contact-section {
  display: grid;
  gap: 24px;
  width: min(var(--max), calc(100% - 40px));
  margin: 32px auto 0;
  padding: 34px;
  border: 1px solid rgba(52, 211, 153, 0.16);
  border-radius: 22px;
  background:
    radial-gradient(circle at 12% 0%, rgba(16, 185, 129, 0.14), transparent 17rem),
    linear-gradient(135deg, rgba(5, 5, 5, 0.94), rgba(8, 14, 11, 0.92));
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.38);
}

.contact-copy {
  display: grid;
  gap: 12px;
}

.contact-copy p:not(.eyebrow) {
  margin: 0;
  max-width: 620px;
  color: var(--muted);
}

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

.contact-form label,
.contact-form .form-grid {
  display: grid;
  gap: 8px;
}

.bot-trap {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.human-check {
  display: flex !important;
  min-height: 52px;
  align-items: center;
  gap: 12px !important;
  border: 1px solid rgba(52, 211, 153, 0.18);
  border-radius: 16px;
  background: rgba(5, 5, 5, 0.34);
  padding: 13px 15px;
}

.contact-form .human-check input[type="checkbox"] {
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
  min-width: 22px;
  min-height: 22px;
  margin: 1px 0 0;
  padding: 0;
  border-radius: 6px;
  accent-color: var(--emerald);
}

.contact-form .human-check span {
  min-width: 0;
  overflow-wrap: anywhere;
  line-height: 1.35;
}

.contact-form span {
  color: rgba(248, 250, 252, 0.86);
  font-size: 0.86rem;
  font-weight: 850;
}

.contact-form small {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 54px;
  border: 1px solid rgba(52, 211, 153, 0.18);
  border-radius: 14px;
  background: rgba(5, 5, 5, 0.62);
  color: var(--text);
  font: inherit;
  padding: 14px 16px;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.contact-form .human-check input[type="checkbox"] {
  width: 22px;
  height: 22px;
  min-width: 22px;
  min-height: 22px;
  padding: 0;
}

.contact-form textarea {
  min-height: 150px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(52, 211, 153, 0.72);
  background: rgba(5, 5, 5, 0.78);
  box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.12);
}

.contact-form button {
  width: 100%;
  border: 0;
  cursor: pointer;
}

.form-notice {
  border-radius: 16px;
  padding: 14px 16px;
  font-weight: 750;
}

.form-notice ul {
  margin: 8px 0 0;
  padding-left: 20px;
}

.form-success {
  border: 1px solid rgba(52, 211, 153, 0.36);
  background: rgba(6, 78, 59, 0.28);
  color: #d1fae5;
}

.form-error {
  border: 1px solid rgba(248, 113, 113, 0.38);
  background: rgba(127, 29, 29, 0.28);
  color: #fee2e2;
}

.media-modal[hidden] {
  display: none;
}

.media-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 18px;
}

.media-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.76);
  backdrop-filter: blur(18px);
}

.media-dialog {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 16px;
  width: min(1040px, 100%);
  max-height: calc(100vh - 36px);
  overflow: auto;
  border: 1px solid rgba(52, 211, 153, 0.22);
  border-radius: 24px;
  background:
    radial-gradient(circle at 15% 0%, rgba(16, 185, 129, 0.18), transparent 18rem),
    linear-gradient(135deg, rgba(5, 5, 5, 0.98), rgba(11, 15, 13, 0.96));
  box-shadow: 0 38px 120px rgba(0, 0, 0, 0.65);
  padding: 20px;
  overscroll-behavior: contain;
}

.media-dialog-header {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  justify-content: space-between;
}

.media-dialog-header > div:first-child {
  min-width: 0;
}

.media-dialog-header h2 {
  margin-top: 5px;
  font-size: clamp(1.45rem, 5vw, 2.5rem);
  line-height: 1.04;
}

.media-dialog-actions {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: flex-end;
  flex-shrink: 0;
}

.media-close,
.media-landscape {
  min-height: 44px;
  border: 1px solid rgba(52, 211, 153, 0.2);
  border-radius: 999px;
  background: rgba(16, 185, 129, 0.12);
  color: var(--emerald-bright);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.media-close {
  width: 44px;
  font-size: 1.55rem;
  line-height: 1;
}

.media-landscape {
  padding: 0 14px;
}

.media-frame {
  display: grid;
  min-height: 220px;
  overflow: hidden;
  place-items: center;
  border: 1px solid rgba(52, 211, 153, 0.16);
  border-radius: 18px;
  background:
    radial-gradient(circle at 50% 30%, rgba(52, 211, 153, 0.2), transparent 14rem),
    #020605;
  aspect-ratio: 16 / 9;
  max-height: 72vh;
  margin-top: 2px;
}

.media-frame iframe,
.media-frame video {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: cover;
}

.audio-preview-card {
  display: grid;
  gap: 18px;
  width: min(620px, calc(100% - 32px));
  justify-items: center;
  padding: 26px;
  text-align: center;
}

.audio-preview-card span {
  display: grid;
  width: 72px;
  height: 72px;
  place-items: center;
  border-radius: 24px;
  background: rgba(16, 185, 129, 0.16);
  color: var(--emerald-bright);
  font-size: 2.4rem;
}

.audio-preview-card audio {
  width: 100%;
}

.media-description {
  margin: 0;
  color: var(--muted);
}

.media-playlist {
  display: grid;
  gap: 10px;
  width: 100%;
}

.media-playlist-label {
  margin: 2px 0 0;
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 900;
}

.media-playlist button {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(52, 211, 153, 0.18);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.035);
  color: var(--muted);
  font: inherit;
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.3;
  padding: 11px 13px;
  text-align: left;
  cursor: pointer;
}

.media-playlist button.is-active {
  border-color: rgba(52, 211, 153, 0.72);
  background:
    linear-gradient(90deg, rgba(16, 185, 129, 0.16), rgba(16, 185, 129, 0.055));
  color: var(--emerald-bright);
  box-shadow: 0 0 0 1px rgba(52, 211, 153, 0.16), 0 18px 44px rgba(16, 185, 129, 0.1);
}

.media-playlist-marker {
  width: 10px;
  height: 10px;
  border: 1px solid rgba(148, 163, 184, 0.52);
  border-radius: 999px;
  background: transparent;
}

.media-playlist button.is-active .media-playlist-marker {
  border-color: var(--emerald-bright);
  background: var(--emerald);
  box-shadow: 0 0 18px rgba(52, 211, 153, 0.58);
}

.media-playlist-text {
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.media-playlist-arrow {
  color: rgba(248, 250, 252, 0.76);
  font-size: 1.35rem;
  line-height: 1;
}

.media-dialog.is-landscape {
  width: min(100vw, 1180px);
  max-height: 100vh;
  border-radius: 0;
}

.media-dialog.is-landscape .media-frame {
  min-height: min(70vh, 720px);
}

.media-dialog.is-rotated {
  width: min(100vw, 1180px);
  max-height: 100vh;
  border-radius: 20px;
}

body.media-modal-open {
  overflow: hidden;
}

.admin-page {
  min-height: 100vh;
}

.admin-shell {
  display: grid;
  gap: 22px;
  width: min(920px, calc(100% - 32px));
  margin: 0 auto;
  padding: 42px 0;
}

.admin-wide {
  width: min(1180px, calc(100% - 32px));
}

.admin-card {
  display: grid;
  gap: 18px;
  border: 1px solid rgba(52, 211, 153, 0.16);
  border-radius: 22px;
  background:
    radial-gradient(circle at 12% 0%, rgba(16, 185, 129, 0.14), transparent 17rem),
    linear-gradient(135deg, rgba(5, 5, 5, 0.94), rgba(8, 14, 11, 0.92));
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.38);
  padding: 28px;
}

.admin-login-card {
  width: min(620px, 100%);
  max-width: 620px;
  margin: 10vh auto 0;
}

.admin-login-card h1 {
  max-width: 100%;
  overflow-wrap: anywhere;
  font-size: clamp(3rem, 10vw, 5.6rem);
}

.admin-muted {
  color: var(--muted);
}

.admin-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 24px;
  border-bottom: 1px solid rgba(52, 211, 153, 0.16);
  background: rgba(5, 5, 5, 0.88);
}

.admin-topbar .brand {
  min-height: 0;
}

.admin-topbar .brand-title {
  font-size: 1.2rem;
}

.admin-topbar nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.admin-topbar nav a,
.admin-actions a,
.admin-actions button {
  min-height: 38px;
  border: 1px solid rgba(52, 211, 153, 0.22);
  border-radius: 999px;
  background: rgba(16, 185, 129, 0.1);
  color: var(--emerald-bright);
  font: inherit;
  font-weight: 850;
  padding: 8px 12px;
  cursor: pointer;
}

.admin-check {
  display: flex !important;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 10px !important;
}

.admin-check input {
  width: 20px;
  min-height: 20px;
}

.admin-table-wrap {
  overflow-x: auto;
}

.admin-table {
  width: 100%;
  min-width: 780px;
  border-collapse: collapse;
  color: var(--text);
}

.admin-table th,
.admin-table td {
  border-bottom: 1px solid rgba(52, 211, 153, 0.12);
  padding: 13px 10px;
  text-align: left;
  vertical-align: top;
}

.admin-table th {
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.admin-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.admin-actions form {
  margin: 0;
}

.admin-service-editor {
  display: grid;
  gap: 18px;
}

.admin-service-block {
  border: 1px solid rgba(52, 211, 153, 0.22);
  border-radius: 22px;
  padding: 18px;
  background: rgba(5, 15, 12, 0.58);
}

.example-service-groups {
  display: grid;
  gap: 18px;
}

.example-service-group {
  display: grid;
  gap: 14px;
  border: 1px solid rgba(52, 211, 153, 0.18);
  border-radius: 20px;
  background:
    radial-gradient(circle at 0% 0%, rgba(16, 185, 129, 0.12), transparent 16rem),
    rgba(3, 12, 9, 0.66);
  padding: 18px;
}

.example-service-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.example-service-head h3 {
  margin: 0;
  font-size: clamp(1.35rem, 3vw, 2.1rem);
}

.example-reorder-form {
  margin: 0;
}

.example-sort-list {
  display: grid;
  gap: 10px;
}

.example-sort-row {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 12px;
  min-height: 72px;
  border: 1px solid rgba(52, 211, 153, 0.15);
  border-radius: 16px;
  background: rgba(5, 5, 5, 0.54);
  padding: 12px;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease, opacity 180ms ease;
}

.example-sort-row:hover,
.example-sort-row:focus-within {
  border-color: rgba(52, 211, 153, 0.36);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.24), 0 0 0 1px rgba(16, 185, 129, 0.08);
}

.example-sort-row.is-dragging {
  opacity: 0.62;
  transform: scale(0.99);
}

.drag-handle,
.reorder-controls button {
  display: inline-grid;
  place-items: center;
  min-width: 44px;
  min-height: 44px;
  border: 1px solid rgba(52, 211, 153, 0.2);
  border-radius: 14px;
  background: rgba(16, 185, 129, 0.1);
  color: var(--emerald-bright);
  font: inherit;
  font-weight: 900;
  cursor: grab;
}

.drag-handle:active {
  cursor: grabbing;
}

.example-row-main {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.example-row-main strong {
  color: var(--text);
  font-size: 1rem;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.example-row-main span {
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.35;
}

.reorder-controls {
  display: flex;
  gap: 6px;
}

.reorder-controls button {
  cursor: pointer;
}

.example-row-actions {
  justify-content: flex-end;
}

.example-save-order {
  white-space: nowrap;
}

.button-ghost {
  border: 1px solid rgba(52, 211, 153, 0.28);
  background: rgba(16, 185, 129, 0.1);
  color: var(--emerald-bright);
}

.admin-service-block legend {
  padding: 0 8px;
  color: var(--text);
  font-weight: 900;
}

html[data-theme="light"] body {
  background:
    radial-gradient(circle at 16% 0%, rgba(16, 185, 129, 0.18), transparent 22rem),
    radial-gradient(circle at 88% 28%, rgba(52, 211, 153, 0.18), transparent 26rem),
    linear-gradient(180deg, #ffffff 0%, #f1f5f9 48%, #ecfdf5 100%);
}

html[data-theme="light"] body::before {
  background:
    linear-gradient(90deg, rgba(15, 23, 42, 0.045) 1px, transparent 1px),
    linear-gradient(rgba(15, 23, 42, 0.035) 1px, transparent 1px);
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), transparent 78%);
}

html[data-theme="light"] .site-header {
  border-bottom-color: rgba(15, 23, 42, 0.1);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.08);
}

html[data-theme="light"] .mobile-menu {
  border-color: rgba(6, 78, 59, 0.16);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.16);
}

html[data-theme="light"] .mobile-menu a {
  color: rgba(15, 23, 42, 0.82);
}

html[data-theme="light"] .brand-subtitle {
  color: rgba(15, 23, 42, 0.74);
}

html[data-theme="light"] .brand-subtitle::before,
html[data-theme="light"] .brand-subtitle::after,
html[data-theme="light"] .menu-button span {
  background: rgba(15, 23, 42, 0.72);
}

html[data-theme="light"] .theme-toggle {
  border-color: rgba(6, 78, 59, 0.2);
  background: rgba(255, 255, 255, 0.78);
  color: #065f46;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}

html[data-theme="light"] .hero {
  border-bottom-color: rgba(15, 23, 42, 0.08);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.96) 0%, rgba(240, 253, 244, 0.88) 42%, rgba(255, 255, 255, 0.28) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.72)),
    url("/assets/images/mobile-hero-camera.jpg") center right / calc(100% + 14px) calc(100% + 14px) no-repeat,
    radial-gradient(circle at 77% 34%, rgba(16, 185, 129, 0.18), transparent 18rem),
    linear-gradient(135deg, #ffffff 0%, #ecfdf5 58%, #d1fae5 100%);
}

html[data-theme="light"] .hero::before {
  background:
    radial-gradient(circle at 87% 42%, rgba(16, 185, 129, 0.16), transparent 10rem),
    radial-gradient(circle at 79% 34%, rgba(15, 23, 42, 0.08), transparent 5rem),
    repeating-linear-gradient(90deg, transparent 0 30px, rgba(15, 23, 42, 0.028) 30px 31px);
}

html[data-theme="light"] .hero::after {
  background: linear-gradient(180deg, transparent, #ffffff 82%);
}

html[data-theme="light"] .hero-lede {
  color: rgba(15, 23, 42, 0.78);
}

html[data-theme="light"] .hero-price-note,
html[data-theme="light"] .price-pill {
  border-color: rgba(6, 78, 59, 0.2);
  background: rgba(209, 250, 229, 0.78);
  color: #047857;
}

html[data-theme="light"] .button-secondary {
  border-color: rgba(15, 23, 42, 0.28);
  background: rgba(255, 255, 255, 0.74);
  color: #06110d;
}

html[data-theme="light"] .feature-card {
  border-color: rgba(6, 78, 59, 0.16);
  background:
    radial-gradient(circle at 12% 18%, rgba(16, 185, 129, 0.13), transparent 15rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(236, 253, 245, 0.9) 58%, rgba(16, 185, 129, 0.12)),
    #ffffff;
  box-shadow:
    0 28px 80px rgba(15, 23, 42, 0.13),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

html[data-theme="light"] .feature-content {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.96), rgba(240, 253, 244, 0.82) 68%, rgba(255, 255, 255, 0.42)),
    radial-gradient(circle at 18% 20%, rgba(16, 185, 129, 0.12), transparent 12rem);
}

html[data-theme="light"] .feature-icon,
html[data-theme="light"] .why-icon {
  border-color: rgba(6, 78, 59, 0.18);
  background: rgba(209, 250, 229, 0.72);
}

html[data-theme="light"] .service-accordion details {
  border-color: rgba(6, 78, 59, 0.14);
  background: rgba(255, 255, 255, 0.64);
}

html[data-theme="light"] .service-accordion details[open] {
  border-color: rgba(16, 185, 129, 0.42);
  background: rgba(209, 250, 229, 0.6);
}

html[data-theme="light"] .service-accordion summary {
  color: rgba(15, 23, 42, 0.88);
}

html[data-theme="light"] .service-accordion p {
  color: rgba(51, 65, 85, 0.92);
}

html[data-theme="light"] .service-play {
  border-color: rgba(6, 78, 59, 0.2);
  background: rgba(209, 250, 229, 0.72);
  color: #047857;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
}

html[data-theme="light"] .feature-visual::after {
  background: linear-gradient(180deg, transparent, #ffffff 88%);
}

html[data-theme="light"] .why-section {
  border-top-color: rgba(15, 23, 42, 0.08);
  border-bottom-color: rgba(15, 23, 42, 0.08);
}

html[data-theme="light"] .why-grid article + article {
  border-left-color: rgba(15, 23, 42, 0.1);
}

html[data-theme="light"] .cta-section {
  border-color: rgba(6, 78, 59, 0.16);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.9), rgba(209, 250, 229, 0.74)),
    url("/assets/images/studio-cta-texture.jpg") center / calc(100% + 14px) calc(100% + 14px) no-repeat,
    radial-gradient(circle at 84% 50%, rgba(16, 185, 129, 0.18), transparent 15rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(209, 250, 229, 0.72));
  box-shadow: 0 28px 80px rgba(15, 23, 42, 0.13);
}

html[data-theme="light"] .contact-section {
  border-color: rgba(6, 78, 59, 0.14);
  background:
    radial-gradient(circle at 12% 0%, rgba(16, 185, 129, 0.12), transparent 17rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(240, 253, 244, 0.9));
  box-shadow: 0 28px 80px rgba(15, 23, 42, 0.11);
}

html[data-theme="light"] .contact-form span {
  color: rgba(15, 23, 42, 0.84);
}

html[data-theme="light"] .contact-form input,
html[data-theme="light"] .contact-form select,
html[data-theme="light"] .contact-form textarea {
  border-color: rgba(6, 78, 59, 0.18);
  background: rgba(255, 255, 255, 0.82);
  color: #06110d;
}

html[data-theme="light"] .contact-form input:focus,
html[data-theme="light"] .contact-form select:focus,
html[data-theme="light"] .contact-form textarea:focus {
  background: #ffffff;
}

html[data-theme="light"] .human-check {
  background: rgba(255, 255, 255, 0.76);
}

html[data-theme="light"] .bottom-nav {
  border-color: rgba(6, 78, 59, 0.14);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 20px 60px rgba(15, 23, 42, 0.14);
}

html[data-theme="light"] .form-success {
  background: rgba(209, 250, 229, 0.88);
  color: #064e3b;
}

html[data-theme="light"] .form-error {
  background: rgba(254, 226, 226, 0.88);
  color: #7f1d1d;
}

html[data-theme="light"] .media-modal-backdrop {
  background: rgba(15, 23, 42, 0.42);
}

html[data-theme="light"] .media-dialog,
html[data-theme="light"] .admin-card {
  border-color: rgba(6, 78, 59, 0.14);
  background:
    radial-gradient(circle at 12% 0%, rgba(16, 185, 129, 0.12), transparent 17rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(240, 253, 244, 0.9));
  box-shadow: 0 28px 80px rgba(15, 23, 42, 0.13);
}

html[data-theme="light"] .media-frame {
  border-color: rgba(6, 78, 59, 0.16);
  background:
    radial-gradient(circle at 50% 30%, rgba(16, 185, 129, 0.18), transparent 14rem),
    #ecfdf5;
}

html[data-theme="light"] .media-playlist button {
  background: rgba(255, 255, 255, 0.72);
  color: #475569;
}

html[data-theme="light"] .media-playlist-label {
  color: var(--text);
}

html[data-theme="light"] .media-playlist button.is-active {
  background:
    linear-gradient(90deg, rgba(16, 185, 129, 0.18), rgba(255, 255, 255, 0.86));
}

html[data-theme="light"] .admin-topbar {
  border-bottom-color: rgba(6, 78, 59, 0.14);
  background: rgba(255, 255, 255, 0.88);
}

html[data-theme="light"] .admin-table {
  color: #06110d;
}

html[data-theme="light"] .admin-service-block {
  background: rgba(255, 255, 255, 0.76);
}

.site-footer {
  display: grid;
  gap: 16px;
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 38px 0 24px;
  color: var(--muted);
}

.site-footer strong {
  color: var(--text);
}

.site-footer p {
  margin: 8px 0 0;
}

.site-footer a {
  width: fit-content;
  color: var(--emerald-bright);
  font-weight: 850;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 18px;
}

.footer-admin-link {
  display: inline-grid;
  width: 34px !important;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(52, 211, 153, 0.16);
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.08);
  color: rgba(148, 163, 184, 0.7) !important;
  font-size: 0.95rem;
  font-weight: 750 !important;
}

.footer-admin-link:hover,
.footer-admin-link:focus-visible {
  color: var(--emerald-bright) !important;
}

.bottom-nav {
  width: min(var(--max), calc(100% - 28px));
  margin: 0 auto 18px;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 4px;
  padding: 10px;
  border: 1px solid rgba(52, 211, 153, 0.13);
  border-radius: 22px;
  background: rgba(5, 5, 5, 0.86);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(18px);
}

.bottom-nav a {
  display: grid;
  min-width: 0;
  min-height: 60px;
  place-items: center;
  gap: 2px;
  border-radius: 16px;
  color: var(--muted);
  font-size: 0.72rem;
}

.bottom-nav a:hover,
.bottom-nav a:first-child {
  background: rgba(16, 185, 129, 0.13);
  color: var(--emerald-bright);
}

.bottom-nav span {
  font-size: 1.55rem;
  line-height: 1;
}

@media (max-width: 560px) {
  .site-header {
    min-height: 92px;
    padding: 18px 22px;
  }

  .brand-wave {
    width: 102px;
    margin-left: 24px;
  }

  .brand-title {
    font-size: 1.42rem;
  }

  .brand-subtitle {
    font-size: 0.72rem;
  }

  .hero {
    min-height: 620px;
  }

  .hero-copy {
    padding: 56px 24px 88px;
  }

  .hero-media {
    right: -190px;
    width: 540px;
    opacity: 0.55;
  }

  .button {
    min-height: 52px;
    min-width: 0;
    flex: 0 0 auto;
    padding-inline: 18px;
    white-space: nowrap;
  }

  .theme-toggle {
    min-width: 44px;
    padding: 0 12px;
  }

  .theme-toggle-text {
    display: none;
  }

  .feature-content {
    padding: 24px;
  }

  .feature-icon {
    width: 58px;
    height: 58px;
    margin-bottom: 18px;
    border-radius: 18px;
  }

  .feature-content h3 {
    margin-bottom: 10px;
  }

  .service-accordion {
    gap: 9px;
    margin-top: 16px;
  }

  .service-item {
    grid-template-columns: 1fr 44px;
    gap: 8px;
  }

  .service-accordion summary {
    min-height: 44px;
    padding-top: 10px;
    padding-bottom: 10px;
    font-size: 0.96rem;
  }

  .service-accordion p {
    padding-bottom: 14px;
    font-size: 0.91rem;
  }

  .feature-visual {
    min-height: 210px;
  }

  .service-play {
    width: 44px;
    min-width: 44px;
    height: 44px;
    min-height: 44px;
    border-radius: 14px;
  }

  .media-modal {
    padding: 10px;
  }

  .media-dialog {
    border-radius: 18px;
    padding: 14px;
  }

  .media-dialog-actions {
    justify-content: start;
  }

  .media-frame {
    min-height: 190px;
  }

  .media-dialog.is-rotated {
    position: fixed;
    top: 50%;
    left: 50%;
    width: calc(100vh - 22px);
    width: calc(100svh - 22px);
    height: calc(100vw - 22px);
    height: calc(100svw - 22px);
    max-width: calc(100vh - 22px);
    max-width: calc(100svh - 22px);
    max-height: calc(100vw - 22px);
    max-height: calc(100svw - 22px);
    overflow: auto;
    transform: translate(-50%, -50%) rotate(90deg);
    transform-origin: center;
    border-radius: 18px;
  }

  .media-dialog.is-rotated .media-dialog-header {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: start;
  }

  .media-dialog.is-rotated .media-dialog-actions {
    justify-content: end;
  }

  .media-dialog.is-rotated .media-frame {
    min-height: 0;
    height: min(58svw, 320px);
    max-height: none;
  }

  .video-visual {
    background-position: center 38%;
  }

  .audio-visual {
    background-position: center 42%;
  }
}

@media (max-width: 390px) {
  .site-header {
    gap: 8px;
    padding: 16px 14px;
  }

  .brand-title {
    font-size: 0.98rem;
    letter-spacing: 0.045em;
  }

  .brand-wave {
    width: 82px;
    height: 14px;
    margin-left: 22px;
  }

  .brand-subtitle {
    font-size: 0.66rem;
    letter-spacing: 0.4em;
  }

  .brand-subtitle::before,
  .brand-subtitle::after {
    width: 26px;
  }

  .menu-button {
    width: 44px;
    height: 44px;
  }

  .menu-button span {
    width: 28px;
  }

  .theme-toggle {
    min-width: 38px;
    min-height: 38px;
    padding: 0 10px;
  }

  .theme-toggle-icon {
    width: 14px;
    height: 14px;
  }

  .hero-copy {
    padding-inline: 20px;
  }

  .hero-actions {
    flex-direction: column;
    gap: 12px;
  }

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

  h1 {
    font-size: clamp(3rem, 18vw, 4rem);
  }

  h2 {
    font-size: clamp(2rem, 11vw, 3rem);
  }

  .admin-login-card h1 {
    font-size: clamp(2.65rem, 13vw, 3.55rem);
  }

  .section,
  .feature-services,
  .cta-section,
  .contact-section,
  .site-footer {
    width: min(var(--max), calc(100% - 28px));
  }
}

@media (min-width: 740px) {
  .desktop-nav {
    display: flex;
    align-items: center;
    gap: 26px;
    color: var(--muted);
    font-weight: 800;
  }

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

  .header-cta {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    padding: 0 18px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(16, 185, 129, 0.12);
    color: var(--emerald-bright);
    font-weight: 850;
  }

  .menu-button {
    display: none;
  }

  .hero-copy {
    padding-left: max(48px, calc((100vw - var(--max)) / 2));
  }

  .hero {
    background:
      linear-gradient(90deg, rgba(5, 5, 5, 0.98) 0%, rgba(5, 5, 5, 0.8) 40%, rgba(5, 5, 5, 0.28) 100%),
      linear-gradient(180deg, rgba(5, 5, 5, 0.08), rgba(5, 5, 5, 0.64)),
      url("/assets/images/hero-studio-camera.jpg") center right / calc(100% + 14px) calc(100% + 14px) no-repeat,
      linear-gradient(90deg, rgba(5, 5, 5, 0.98) 0%, rgba(5, 5, 5, 0.75) 42%, rgba(5, 5, 5, 0.25) 100%),
      radial-gradient(circle at 77% 34%, rgba(52, 211, 153, 0.2), transparent 18rem),
      linear-gradient(135deg, #050505 0%, #0d1511 58%, #06110d 100%);
  }

  html[data-theme="light"] .hero {
    background:
      linear-gradient(90deg, rgba(255, 255, 255, 0.96) 0%, rgba(240, 253, 244, 0.88) 42%, rgba(255, 255, 255, 0.24) 100%),
      linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.68)),
      url("/assets/images/hero-studio-camera.jpg") center right / calc(100% + 14px) calc(100% + 14px) no-repeat,
      radial-gradient(circle at 77% 34%, rgba(16, 185, 129, 0.18), transparent 18rem),
      linear-gradient(135deg, #ffffff 0%, #ecfdf5 58%, #d1fae5 100%);
  }

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

  .feature-card:nth-child(odd) .feature-content {
    background:
      linear-gradient(90deg, rgba(5, 5, 5, 0.94), rgba(5, 9, 7, 0.86) 72%, rgba(5, 5, 5, 0.16)),
      radial-gradient(circle at 18% 20%, rgba(16, 185, 129, 0.12), transparent 13rem);
  }

  .feature-card:nth-child(even) .feature-content {
    background:
      linear-gradient(270deg, rgba(5, 5, 5, 0.94), rgba(5, 9, 7, 0.86) 72%, rgba(5, 5, 5, 0.16)),
      radial-gradient(circle at 18% 20%, rgba(16, 185, 129, 0.12), transparent 13rem);
  }

  html[data-theme="light"] .feature-card:nth-child(odd) .feature-content {
    background:
      linear-gradient(90deg, rgba(255, 255, 255, 0.96), rgba(240, 253, 244, 0.84) 72%, rgba(255, 255, 255, 0.18)),
      radial-gradient(circle at 18% 20%, rgba(16, 185, 129, 0.12), transparent 13rem);
  }

  html[data-theme="light"] .feature-card:nth-child(even) .feature-content {
    background:
      linear-gradient(270deg, rgba(255, 255, 255, 0.96), rgba(240, 253, 244, 0.84) 72%, rgba(255, 255, 255, 0.18)),
      radial-gradient(circle at 18% 20%, rgba(16, 185, 129, 0.12), transparent 13rem);
  }

  .feature-card:nth-child(even) .feature-content {
    order: 1;
  }

  .service-grid,
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .why-grid article + article {
    border-left: 1px solid rgba(248, 250, 252, 0.14);
  }

  .cta-section {
    grid-template-columns: 1fr auto;
    align-items: center;
    padding: 46px 58px;
  }

  .contact-section {
    grid-template-columns: 0.86fr 1.14fr;
    align-items: start;
    padding: 46px 58px;
  }

  .contact-form .form-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .site-footer {
    grid-template-columns: 1fr auto;
    align-items: center;
  }
}

@media (min-width: 1040px) {
  .hero {
    min-height: 720px;
  }

  .hero-media {
    right: max(18px, calc((100vw - var(--max)) / 2 - 110px));
  }

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

  .bottom-nav {
    display: none;
  }

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

@media (max-width: 720px) {
  html,
  body {
    max-width: 100%;
    overflow-x: hidden;
  }

  img,
  video,
  iframe {
    max-width: 100%;
  }

  .site-header {
    min-height: 78px;
    padding: 12px 14px;
    gap: 10px;
  }

  .brand {
    min-width: 0;
  }

  .brand-wave {
    width: 88px;
    height: 14px;
    margin-left: 22px;
  }

  .brand-title {
    font-size: clamp(1rem, 5.2vw, 1.42rem);
    letter-spacing: 0.052em;
  }

  .brand-subtitle {
    font-size: 0.66rem;
    letter-spacing: 0.38em;
  }

  .brand-subtitle::before,
  .brand-subtitle::after {
    width: 28px;
  }

  .theme-toggle,
  .menu-button {
    flex: 0 0 auto;
  }

  .theme-toggle {
    min-width: 42px;
    min-height: 42px;
    padding: 0 11px;
  }

  .menu-button {
    width: 44px;
    height: 44px;
  }

  .mobile-menu {
    left: 12px;
    right: 12px;
    top: calc(100% - 2px);
    z-index: 60;
  }

  .hero {
    min-height: 560px;
  }

  .hero-copy {
    max-width: 100%;
    padding: 42px 20px 62px;
  }

  .eyebrow {
    font-size: 0.76rem;
    letter-spacing: 0.28em;
  }

  h1 {
    font-size: clamp(2.7rem, 13.8vw, 4.05rem);
    line-height: 0.96;
  }

  h2 {
    font-size: clamp(1.95rem, 8.4vw, 3rem);
    line-height: 1;
  }

  .services-intro h2 {
    max-width: 11ch;
    font-size: clamp(1.85rem, 7.8vw, 2.75rem);
  }

  .services-intro p:not(.eyebrow) {
    max-width: 30ch;
    font-size: 0.96rem;
  }

  .hero-lede {
    max-width: 22rem;
    font-size: 1.02rem;
  }

  .hero-actions {
    width: min(100%, 330px);
  }

  .hero-actions .button {
    width: 100%;
    flex: 0 0 auto;
    justify-content: center;
  }

  .section,
  .feature-services,
  .cta-section,
  .contact-section,
  .site-footer,
  .bottom-nav {
    width: min(var(--max), calc(100vw - 24px));
    max-width: calc(100vw - 24px);
  }

  .services-intro {
    padding-inline: 12px;
  }

  .feature-services {
    gap: 18px;
  }

  .feature-card {
    border-radius: 22px;
  }

  .feature-content {
    padding: 22px 22px 20px 18px;
  }

  .feature-content h3 {
    font-size: clamp(1.75rem, 7.5vw, 2.3rem);
  }

  .feature-visual {
    min-height: 180px;
    aspect-ratio: 16 / 9;
  }

  .video-visual {
    background-position: center 40%;
    background-size: cover, cover, cover;
  }

  .audio-visual {
    background-position: center 40%;
    background-size: cover, cover, auto, auto;
  }

  .service-item {
    grid-template-columns: minmax(0, 1fr) 44px;
    gap: 8px;
  }

  .service-accordion summary {
    min-height: 46px;
    padding: 11px 38px 11px 12px;
    font-size: 0.95rem;
  }

  .service-accordion summary::before {
    width: 21px;
    height: 21px;
    font-size: 0.75rem;
  }

  .service-accordion summary::after {
    right: 13px;
  }

  .service-accordion p {
    padding: 0 12px 13px 45px;
    font-size: 0.9rem;
  }

  .service-play {
    width: 44px;
    min-width: 44px;
    height: 44px;
    min-height: 44px;
  }

  .service-grid article,
  .process-grid article {
    padding: 20px;
  }

  .why-grid article {
    padding: 18px 12px;
  }

  .cta-section,
  .contact-section {
    padding: 24px 18px;
    border-radius: 22px;
  }

  .contact-form .form-grid {
    grid-template-columns: 1fr;
  }

  .contact-form input,
  .contact-form select,
  .contact-form textarea {
    min-height: 52px;
  }

  .contact-form button {
    width: 100%;
    min-height: 52px;
    justify-content: center;
  }

  .contact-form .human-check {
    align-items: flex-start;
    min-height: auto;
    padding: 13px 14px;
  }

  .contact-form .human-check span {
    font-size: 0.82rem;
  }

  .media-modal {
    padding: 14px;
    align-items: center;
  }

  .media-dialog {
    width: calc(100vw - 28px);
    max-height: calc(100svh - 28px);
    padding: 14px;
    border-radius: 20px;
    gap: 12px;
  }

  .media-dialog-header {
    gap: 12px;
  }

  .media-dialog-header .eyebrow {
    font-size: 0.72rem;
  }

  .media-dialog-header h2 {
    margin-top: 3px;
    font-size: clamp(1.65rem, 8vw, 2.12rem);
    line-height: 1.08;
  }

  .media-dialog-actions {
    gap: 8px;
  }

  .media-dialog-actions button {
    min-height: 40px;
    padding: 0 11px;
  }

  .media-frame {
    min-height: 190px;
    border-radius: 16px;
  }

  .media-dialog.is-rotated {
    position: fixed;
    top: 50%;
    left: 50%;
    width: calc(100vh - 20px);
    width: calc(100svh - 20px);
    height: calc(100vw - 20px);
    height: calc(100svw - 20px);
    max-width: calc(100vh - 20px);
    max-width: calc(100svh - 20px);
    max-height: calc(100vw - 20px);
    max-height: calc(100svw - 20px);
    overflow: auto;
    transform: translate(-50%, -50%) rotate(90deg);
    transform-origin: center;
    border-radius: 18px;
  }

  .media-dialog.is-rotated .media-frame {
    min-height: 0;
    height: min(58svw, 300px);
    max-height: none;
  }

  .media-playlist {
    gap: 8px;
  }

  .media-playlist-label {
    font-size: 0.86rem;
  }

  .media-playlist button {
    min-height: 46px;
    border-radius: 15px;
    font-size: 0.86rem;
    padding: 10px 11px;
    gap: 10px;
  }

  .bottom-nav {
    position: fixed;
    right: 12px;
    bottom: max(12px, env(safe-area-inset-bottom));
    left: 12px;
    z-index: 45;
    width: auto;
    max-width: calc(100vw - 24px);
    box-sizing: border-box;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    margin: 0;
    padding: 7px;
    border-radius: 20px;
    overflow: hidden;
  }

  .bottom-nav a {
    width: 100%;
    overflow: hidden;
    min-height: 56px;
    font-size: 0.58rem;
    white-space: nowrap;
    text-overflow: ellipsis;
  }

  .bottom-nav span {
    font-size: 1.34rem;
  }

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

  .admin-topbar {
    position: sticky;
    top: 0;
    z-index: 50;
    flex-wrap: wrap;
    align-items: center;
    padding: 12px 14px;
    gap: 12px;
  }

  .admin-topbar .brand-title {
    font-size: 1rem;
  }

  .admin-topbar .brand-subtitle {
    font-size: 0.62rem;
  }

  .admin-topbar nav {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .admin-topbar nav a,
  .admin-actions a,
  .admin-actions button {
    min-height: 44px;
    justify-content: center;
    text-align: center;
    padding: 10px 12px;
    font-size: 0.9rem;
  }

  .admin-shell,
  .admin-wide {
    min-width: 0;
    width: calc(100% - 22px);
    padding: 24px 0 42px;
  }

  .admin-card {
    min-width: 0;
    gap: 16px;
    padding: 22px 16px;
    border-radius: 22px;
  }

  .admin-card .contact-form,
  .admin-card .contact-form label {
    min-width: 0;
  }

  .admin-card .contact-form input,
  .admin-card .contact-form select,
  .admin-card .contact-form textarea {
    width: 100%;
    min-width: 0;
  }

  .admin-card h1,
  .admin-login-card h1 {
    font-size: clamp(2.6rem, 12.8vw, 4.4rem);
    line-height: 0.94;
    overflow-wrap: anywhere;
  }

  .admin-card h2 {
    font-size: clamp(2.3rem, 11vw, 3.8rem);
    line-height: 0.98;
  }

  .admin-login-card {
    width: 100%;
    max-width: 100%;
    margin: 5vh 0 0;
  }

  .admin-login-card h1 {
    max-width: 8ch;
  }

  .admin-service-block {
    padding: 15px;
    border-radius: 18px;
  }

  .admin-service-block legend {
    max-width: 100%;
    white-space: normal;
  }

  .admin-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .admin-actions form,
  .admin-actions button,
  .admin-actions a {
    width: 100%;
  }

  .admin-check {
    min-height: 44px;
  }

  .admin-table-wrap {
    margin-inline: -2px;
    padding-bottom: 4px;
  }

  .admin-table {
    min-width: 680px;
  }
}

@media (max-width: 420px) {
  .site-header {
    min-height: 72px;
    padding-inline: 12px;
  }

  .brand-wave {
    display: none;
  }

  .brand-title {
    font-size: 0.98rem;
    letter-spacing: 0.04em;
  }

  .brand-subtitle {
    margin-top: 3px;
    font-size: 0.6rem;
    letter-spacing: 0.32em;
  }

  .brand-subtitle::before,
  .brand-subtitle::after {
    width: 22px;
  }

  .hero {
    min-height: 520px;
  }

  .hero-copy {
    padding-inline: 18px;
  }

  .hero-actions {
    max-width: none;
  }

  .feature-content {
    padding-inline: 16px;
  }

  .service-accordion summary {
    font-size: 0.9rem;
  }

  .service-accordion p {
    font-size: 0.86rem;
  }

  .admin-topbar nav {
    grid-template-columns: 1fr;
  }

  .admin-card h1,
  .admin-login-card h1 {
    font-size: clamp(2.2rem, 11.5vw, 2.9rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

/* Premium homepage polish pass. Scoped to public homepage surfaces. */
:root {
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-soft: cubic-bezier(0.2, 0.8, 0.2, 1);
  --premium-shadow: 0 34px 120px rgba(0, 0, 0, 0.5);
  --emerald-halo: 0 0 0 1px rgba(52, 211, 153, 0.18), 0 24px 90px rgba(16, 185, 129, 0.16);
}

::selection {
  background: rgba(52, 211, 153, 0.32);
  color: var(--text);
}

html.js [data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 720ms var(--ease-out),
    transform 720ms var(--ease-out);
}

html.js [data-reveal].is-visible,
html.js [data-reveal]:first-child {
  opacity: 1;
  transform: translateY(0);
}

.hero {
  isolation: isolate;
  min-height: clamp(600px, 82svh, 820px);
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.98) 0%, rgba(5, 5, 5, 0.82) 41%, rgba(5, 5, 5, 0.3) 100%),
    linear-gradient(180deg, rgba(5, 5, 5, 0.08), rgba(5, 5, 5, 0.7)),
    url("/assets/images/mobile-hero-camera.jpg") center top / auto 176% no-repeat,
    radial-gradient(circle at 77% 34%, rgba(52, 211, 153, 0.2), transparent 18rem),
    linear-gradient(135deg, #050505 0%, #0d1511 58%, #06110d 100%);
  box-shadow: inset 0 -80px 120px rgba(0, 0, 0, 0.72);
}

.hero::before {
  animation: v432-light-drift 16s var(--ease-soft) infinite alternate;
}

.hero::after {
  height: 44px;
  background:
    linear-gradient(180deg, transparent, rgba(5, 5, 5, 0.72) 52%, #050505 100%);
}

.hero-copy {
  max-width: 720px;
  text-wrap: balance;
}

.hero-copy .eyebrow,
.services-intro .eyebrow,
.feature-content .eyebrow,
.why-section .eyebrow,
.contact-copy .eyebrow {
  text-shadow: 0 0 28px rgba(52, 211, 153, 0.28);
}

h1,
h2,
h3 {
  text-wrap: balance;
}

.hero h1 {
  max-width: 9.7ch;
  text-shadow: 0 24px 80px rgba(0, 0, 0, 0.72);
}

.hero-lede {
  text-shadow: 0 18px 50px rgba(0, 0, 0, 0.6);
}

.hero-price-note,
.price-pill {
  backdrop-filter: blur(14px);
}

.hero-actions .button,
.cta-section .button,
.contact-form button {
  border-radius: 16px;
}

.button {
  position: relative;
  overflow: hidden;
  transition:
    transform 220ms var(--ease-out),
    box-shadow 220ms var(--ease-out),
    border-color 220ms var(--ease-out),
    background 220ms var(--ease-out);
}

.button::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0.22) 42%, transparent 62%);
  opacity: 0;
  transform: translateX(-120%);
  transition: opacity 220ms ease, transform 620ms var(--ease-out);
}

.button:hover::after,
.button:focus-visible::after {
  opacity: 1;
  transform: translateX(120%);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-3px);
}

.button-primary:hover,
.button-primary:focus-visible {
  box-shadow: 0 22px 70px rgba(16, 185, 129, 0.42);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: rgba(52, 211, 153, 0.54);
  background: rgba(16, 185, 129, 0.14);
}

.feature-services {
  gap: clamp(20px, 3vw, 32px);
}

.feature-card {
  position: relative;
  border-radius: 24px;
  border-color: rgba(52, 211, 153, 0.2);
  box-shadow: var(--premium-shadow), inset 0 1px 0 rgba(255, 255, 255, 0.055);
  transition:
    transform 360ms var(--ease-out),
    border-color 360ms var(--ease-out),
    box-shadow 360ms var(--ease-out);
}

.feature-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: inherit;
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 28%),
    radial-gradient(circle at 18% 10%, rgba(52, 211, 153, 0.16), transparent 18rem);
  opacity: 0.72;
}

.feature-card:hover {
  border-color: rgba(52, 211, 153, 0.34);
  box-shadow: var(--premium-shadow), var(--emerald-halo);
  transform: translateY(-4px);
}

.feature-content {
  backdrop-filter: blur(16px);
  min-width: 0;
}

.feature-card,
.feature-services,
.service-accordion,
.service-item,
.feature-content h3 {
  min-width: 0;
}

.feature-card,
.feature-content,
.feature-visual,
.feature-services,
.service-accordion,
.service-item {
  max-width: 100%;
}

.video-visual {
  background-image:
    linear-gradient(90deg, rgba(5, 5, 5, 0.42), rgba(5, 5, 5, 0.02)),
    linear-gradient(180deg, transparent 64%, rgba(5, 5, 5, 0.52)),
    url("/assets/images/hero-studio-camera.jpg");
  background-position: center;
  background-size: cover;
}

.feature-content h3 {
  max-width: 100%;
  overflow-wrap: break-word;
}

.feature-icon {
  border-radius: 24px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 18px 60px rgba(16, 185, 129, 0.14);
}

.service-accordion details {
  backdrop-filter: blur(14px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035);
}

.service-accordion summary {
  outline: none;
}

.service-accordion summary:focus-visible {
  outline: 3px solid var(--emerald-bright);
  outline-offset: 3px;
  border-radius: 14px;
}

.service-accordion summary::after {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 999px;
  background: rgba(16, 185, 129, 0.12);
  transition:
    transform 240ms var(--ease-out),
    background 240ms var(--ease-out);
}

.service-accordion details[open] summary::after {
  transform: translateY(-50%) rotate(180deg);
  background: rgba(16, 185, 129, 0.22);
}

.service-play {
  border-radius: 50%;
  background:
    radial-gradient(circle at 34% 28%, rgba(255, 255, 255, 0.16), transparent 42%),
    rgba(16, 185, 129, 0.14);
}

.service-play:not(:disabled):hover,
.service-play:not(:disabled):focus-visible {
  box-shadow: 0 20px 58px rgba(16, 185, 129, 0.24);
}

.feature-visual {
  min-height: clamp(260px, 34vw, 430px);
}

.feature-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.08), transparent 32%),
    radial-gradient(circle at 72% 18%, rgba(52, 211, 153, 0.16), transparent 14rem);
  mix-blend-mode: screen;
  animation: v432-image-shimmer 12s var(--ease-soft) infinite alternate;
}

.why-section {
  padding-block: clamp(46px, 7vw, 78px);
}

.why-grid article {
  border-radius: 22px;
  transition: transform 240ms var(--ease-out), background 240ms var(--ease-out);
}

.why-grid article:hover {
  background: rgba(16, 185, 129, 0.055);
  transform: translateY(-2px);
}

.cta-section,
.contact-section {
  box-shadow: var(--premium-shadow), inset 0 1px 0 rgba(255, 255, 255, 0.055);
}

.cta-section {
  border-radius: 26px;
}

.cta-section::after {
  animation: v432-wave-breathe 8s var(--ease-soft) infinite alternate;
}

.contact-section {
  position: relative;
  overflow: hidden;
}

.contact-section::before {
  content: "";
  position: absolute;
  inset: -1px;
  pointer-events: none;
  background:
    radial-gradient(circle at 86% 14%, rgba(52, 211, 153, 0.12), transparent 18rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.045), transparent 30%);
  opacity: 0.76;
}

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

.contact-form input,
.contact-form select,
.contact-form textarea,
.human-check {
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035);
}

.contact-form input:hover,
.contact-form select:hover,
.contact-form textarea:hover,
.human-check:hover {
  border-color: rgba(52, 211, 153, 0.32);
}

.form-notice {
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.media-modal:not([hidden]) .media-modal-backdrop {
  animation: v432-fade-in 180ms ease both;
}

.media-modal:not([hidden]) .media-dialog {
  animation: v432-modal-in 300ms var(--ease-out) both;
}

.media-modal:not([hidden]) .media-dialog.is-rotated {
  animation: none;
}

.media-dialog {
  border-radius: 28px;
  box-shadow: 0 44px 150px rgba(0, 0, 0, 0.72), var(--emerald-halo);
}

.media-frame {
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.055);
}

.media-close,
.media-landscape,
.media-playlist button {
  transition:
    transform 180ms var(--ease-out),
    border-color 180ms var(--ease-out),
    background 180ms var(--ease-out),
    color 180ms var(--ease-out);
}

.media-close:hover,
.media-landscape:hover,
.media-playlist button:hover {
  transform: translateY(-1px);
  border-color: rgba(52, 211, 153, 0.42);
  background: rgba(16, 185, 129, 0.18);
}

.media-playlist button:focus-visible {
  outline: 3px solid rgba(52, 211, 153, 0.5);
  outline-offset: 3px;
}

.bottom-nav {
  max-width: 100%;
  box-shadow: 0 18px 70px rgba(0, 0, 0, 0.42), inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

html[data-theme="light"] .hero {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.96) 0%, rgba(240, 253, 244, 0.88) 42%, rgba(255, 255, 255, 0.28) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.72)),
    url("/assets/images/mobile-hero-camera.jpg") center top / auto 176% no-repeat,
    radial-gradient(circle at 77% 34%, rgba(16, 185, 129, 0.18), transparent 18rem),
    linear-gradient(135deg, #ffffff 0%, #ecfdf5 58%, #d1fae5 100%);
  box-shadow: inset 0 -80px 120px rgba(255, 255, 255, 0.72);
}

html[data-theme="light"] .feature-card,
html[data-theme="light"] .cta-section,
html[data-theme="light"] .contact-section,
html[data-theme="light"] .media-dialog {
  box-shadow: 0 28px 90px rgba(15, 23, 42, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

html[data-theme="light"] .hero h1,
html[data-theme="light"] .hero-lede {
  text-shadow: 0 18px 60px rgba(255, 255, 255, 0.5);
}

html[data-theme="light"] .contact-section::before {
  background:
    radial-gradient(circle at 86% 14%, rgba(16, 185, 129, 0.12), transparent 18rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.58), transparent 34%);
}

@keyframes v432-light-drift {
  from {
    transform: translate3d(-1.2%, -0.8%, 0) scale(1);
    opacity: 0.72;
  }
  to {
    transform: translate3d(1.2%, 0.8%, 0) scale(1.025);
    opacity: 1;
  }
}

@keyframes v432-image-shimmer {
  from {
    opacity: 0.4;
    transform: translateX(-1.5%);
  }
  to {
    opacity: 0.78;
    transform: translateX(1.5%);
  }
}

@keyframes v432-wave-breathe {
  from {
    opacity: 0.38;
    transform: translateY(-50%) scaleX(0.94);
  }
  to {
    opacity: 0.7;
    transform: translateY(-50%) scaleX(1.04);
  }
}

@keyframes v432-fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes v432-modal-in {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.985);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (min-width: 1040px) {
  .hero {
    background:
      linear-gradient(90deg, rgba(5, 5, 5, 0.98) 0%, rgba(5, 5, 5, 0.82) 41%, rgba(5, 5, 5, 0.28) 100%),
      linear-gradient(180deg, rgba(5, 5, 5, 0.06), rgba(5, 5, 5, 0.66)),
      url("/assets/images/hero-studio-camera.jpg") center top / auto 176% no-repeat,
      radial-gradient(circle at 77% 34%, rgba(52, 211, 153, 0.2), transparent 18rem),
      linear-gradient(135deg, #050505 0%, #0d1511 58%, #06110d 100%);
  }

  html[data-theme="light"] .hero {
    background:
      linear-gradient(90deg, rgba(255, 255, 255, 0.96) 0%, rgba(240, 253, 244, 0.9) 42%, rgba(255, 255, 255, 0.28) 100%),
      linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.68)),
      url("/assets/images/hero-studio-camera.jpg") center top / auto 176% no-repeat,
      radial-gradient(circle at 77% 34%, rgba(16, 185, 129, 0.18), transparent 18rem),
      linear-gradient(135deg, #ffffff 0%, #ecfdf5 58%, #d1fae5 100%);
  }

  .hero-copy {
    padding-top: 96px;
    padding-bottom: 112px;
  }

  .feature-card {
    grid-template-columns: minmax(360px, 0.92fr) minmax(420px, 1.08fr);
  }

  .feature-card:nth-child(even) {
    grid-template-columns: minmax(420px, 1.08fr) minmax(360px, 0.92fr);
  }
}

@media (max-width: 720px) {
  html.js [data-reveal] {
    transform: translateY(18px);
  }

  .site-header {
    background: rgba(5, 5, 5, 0.86);
  }

  .hero {
    min-height: min(680px, calc(100svh - 10px));
    background:
      linear-gradient(90deg, rgba(5, 5, 5, 0.98) 0%, rgba(5, 5, 5, 0.84) 44%, rgba(5, 5, 5, 0.36) 100%),
      linear-gradient(180deg, rgba(5, 5, 5, 0.06), rgba(5, 5, 5, 0.76)),
      url("/assets/images/mobile-hero-camera.jpg") center top / auto 184% no-repeat,
      radial-gradient(circle at 77% 34%, rgba(52, 211, 153, 0.2), transparent 18rem),
      linear-gradient(135deg, #050505 0%, #0d1511 58%, #06110d 100%);
  }

  html[data-theme="light"] .hero {
    background:
      linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(240, 253, 244, 0.92) 44%, rgba(255, 255, 255, 0.4) 100%),
      linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.76)),
      url("/assets/images/mobile-hero-camera.jpg") center top / auto 184% no-repeat,
      radial-gradient(circle at 77% 34%, rgba(16, 185, 129, 0.18), transparent 18rem),
      linear-gradient(135deg, #ffffff 0%, #ecfdf5 58%, #d1fae5 100%);
  }

  .hero::before {
    opacity: 0.62;
  }

  .hero-copy {
    gap: 18px;
    padding-top: clamp(42px, 10svh, 72px);
    padding-bottom: clamp(58px, 12svh, 92px);
  }

  .hero h1 {
    max-width: 8.7ch;
  }

  .hero-price-note {
    font-size: 0.82rem;
  }

  .feature-card {
    border-radius: 24px;
    overflow: hidden;
  }

  .feature-card:hover {
    transform: none;
  }

  .feature-content {
    padding-top: 24px;
  }

  .feature-content h3 {
    font-size: clamp(1.45rem, 6.5vw, 2rem);
    line-height: 1.08;
    max-width: min(100%, 12ch);
  }

  .feature-visual {
    min-height: 170px;
  }

  .service-accordion details[open] {
    transform: none;
  }

  .service-play:not(:disabled):hover,
  .service-play:not(:disabled):focus-visible {
    transform: none;
  }

  .cta-section::after {
    right: -22%;
    width: 260px;
    opacity: 0.32;
  }

  .contact-section {
    gap: 20px;
  }

  .media-dialog {
    border-radius: 22px;
  }
}

@media (max-width: 390px) {
  .hero-copy {
    padding-inline: 18px;
  }

  .bottom-nav {
    left: 8px;
    right: 8px;
    max-width: calc(100vw - 16px);
    padding: 6px;
    gap: 2px;
  }

  .bottom-nav a {
    min-height: 52px;
    font-size: 0.54rem;
    letter-spacing: -0.01em;
  }

  .bottom-nav span {
    font-size: 1.08rem;
  }

  .button {
    min-height: 50px;
  }

  .service-item {
    grid-template-columns: minmax(0, 1fr) 42px;
  }

  .service-play {
    width: 42px;
    min-width: 42px;
    height: 42px;
    min-height: 42px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html.js [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
  }

  .hero::before,
  .feature-visual::before,
  .cta-section::after {
    animation: none !important;
  }
}

/* Image fit correction: keep production photos proportional across Safari, Chrome, iOS, and Android. */
.hero {
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.98) 0%, rgba(5, 5, 5, 0.82) 41%, rgba(5, 5, 5, 0.3) 100%),
    linear-gradient(180deg, rgba(5, 5, 5, 0.08), rgba(5, 5, 5, 0.7)),
    url("/assets/images/mobile-hero-camera.jpg") 68% center / cover no-repeat,
    radial-gradient(circle at 77% 34%, rgba(52, 211, 153, 0.2), transparent 18rem),
    linear-gradient(135deg, #050505 0%, #0d1511 58%, #06110d 100%);
}

.feature-visual {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.video-visual {
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.38), rgba(5, 5, 5, 0.04)),
    linear-gradient(180deg, transparent 62%, rgba(5, 5, 5, 0.54)),
    url("/assets/images/video-production-card.jpg") 54% center / cover no-repeat,
    radial-gradient(circle at 70% 28%, rgba(52, 211, 153, 0.22), transparent 8rem),
    linear-gradient(135deg, #101614, #050505);
}

.audio-visual {
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.32), rgba(5, 5, 5, 0.04)),
    linear-gradient(180deg, transparent 62%, rgba(5, 5, 5, 0.54)),
    url("/assets/images/audio-production-card.jpg") 50% center / cover no-repeat,
    radial-gradient(circle at 52% 28%, rgba(52, 211, 153, 0.2), transparent 8rem),
    linear-gradient(180deg, #101614, #050505);
}

html[data-theme="light"] .hero {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.96) 0%, rgba(240, 253, 244, 0.9) 42%, rgba(255, 255, 255, 0.32) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.68)),
    url("/assets/images/mobile-hero-camera.jpg") 68% center / cover no-repeat,
    radial-gradient(circle at 77% 34%, rgba(16, 185, 129, 0.18), transparent 18rem),
    linear-gradient(135deg, #ffffff 0%, #ecfdf5 58%, #d1fae5 100%);
}

@media (min-width: 1040px) {
  .hero {
    background:
      linear-gradient(90deg, rgba(5, 5, 5, 0.98) 0%, rgba(5, 5, 5, 0.82) 41%, rgba(5, 5, 5, 0.28) 100%),
      linear-gradient(180deg, rgba(5, 5, 5, 0.06), rgba(5, 5, 5, 0.66)),
      url("/assets/images/hero-studio-camera.jpg") 72% center / cover no-repeat,
      radial-gradient(circle at 77% 34%, rgba(52, 211, 153, 0.2), transparent 18rem),
      linear-gradient(135deg, #050505 0%, #0d1511 58%, #06110d 100%);
  }

  html[data-theme="light"] .hero {
    background:
      linear-gradient(90deg, rgba(255, 255, 255, 0.96) 0%, rgba(240, 253, 244, 0.9) 42%, rgba(255, 255, 255, 0.28) 100%),
      linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.68)),
      url("/assets/images/hero-studio-camera.jpg") 72% center / cover no-repeat,
      radial-gradient(circle at 77% 34%, rgba(16, 185, 129, 0.18), transparent 18rem),
      linear-gradient(135deg, #ffffff 0%, #ecfdf5 58%, #d1fae5 100%);
  }

  .video-visual {
    background-position: 58% center;
  }

  .audio-visual {
    background-position: 48% center;
  }
}

@media (max-width: 720px) {
  .hero,
  html[data-theme="light"] .hero {
    background-position: 62% center, center, 64% center, center, center;
    background-size: auto, auto, cover, auto, auto;
  }

  .feature-visual {
    min-height: 190px;
    max-height: 260px;
  }

  .video-visual {
    background-position: 56% center;
  }

  .audio-visual {
    background-position: 50% center;
  }
}

/* 20260527 modal playlist cleanup */
.media-playlist {
  grid-template-columns: 1fr;
}

.media-playlist button[aria-current="true"] {
  border-color: rgba(52, 211, 153, 0.72);
}

@media (max-width: 600px) {
  .media-modal {
    padding: 14px;
  }

  .media-dialog {
    width: calc(100vw - 28px);
    max-width: calc(100vw - 28px);
    max-height: calc(100svh - 28px);
    gap: 12px;
    padding: 14px;
    border-radius: 22px;
  }

  .media-dialog-header {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 10px;
    align-items: start;
  }

  .media-dialog-actions {
    align-self: start;
  }

  .media-landscape {
    min-width: 0;
    padding-inline: 12px;
  }

  .media-close {
    width: 42px;
    min-width: 42px;
  }

  .media-frame {
    min-height: 0;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 17px;
  }

  .media-description {
    font-size: 0.9rem;
    line-height: 1.45;
  }

  .media-playlist {
    gap: 8px;
  }

  .media-playlist button {
    width: 100%;
    min-height: 46px;
    border-radius: 16px;
    padding: 10px 12px;
    font-size: clamp(0.82rem, 3.5vw, 0.92rem);
    line-height: 1.3;
  }
}

/* 20260527 premium modal header and playlist refinement */
.media-dialog {
  gap: 18px;
  width: min(860px, calc(100vw - 32px));
  border-radius: 28px;
  padding: clamp(18px, 2.5vw, 24px);
}

.media-dialog-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: start;
}

.media-dialog-header h2 {
  max-width: 17ch;
  font-size: clamp(1.9rem, 5vw, 2.6rem);
  line-height: 1.02;
  letter-spacing: -0.015em;
}

.media-dialog-header .eyebrow {
  color: rgba(52, 211, 153, 0.88);
  font-size: clamp(0.78rem, 1.6vw, 0.9rem);
  letter-spacing: 0.24em;
}

.media-dialog-actions {
  justify-content: end;
}

.media-landscape {
  display: none !important;
}

.media-close {
  display: grid;
  width: 48px;
  min-width: 48px;
  height: 48px;
  min-height: 48px;
  place-items: center;
  padding: 0;
  border-color: rgba(52, 211, 153, 0.28);
  background: rgba(16, 185, 129, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.media-frame {
  margin-top: 2px;
  border-radius: 24px;
  border-color: rgba(52, 211, 153, 0.22);
  box-shadow:
    0 0 0 1px rgba(52, 211, 153, 0.05),
    0 22px 60px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.media-frame iframe,
.media-frame video {
  border-radius: inherit;
}

.media-error-message {
  display: grid;
  width: 100%;
  min-height: min(52vh, 360px);
  place-items: center;
  padding: 28px;
  color: rgba(226, 232, 240, 0.88);
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 900;
  line-height: 1.35;
  text-align: center;
  background:
    radial-gradient(circle at 50% 42%, rgba(16, 185, 129, 0.16), transparent 13rem),
    rgba(2, 6, 5, 0.6);
}

.media-description {
  max-width: 66ch;
  color: rgba(203, 213, 225, 0.82);
  font-size: clamp(0.94rem, 1.8vw, 1rem);
  line-height: 1.62;
}

.media-playlist {
  gap: 10px;
  padding-top: 2px;
}

.media-playlist-label {
  margin-top: 4px;
  margin-bottom: 2px;
  font-size: clamp(1rem, 2vw, 1.1rem);
  font-weight: 900;
}

.media-playlist button {
  grid-template-columns: auto minmax(76px, 116px) minmax(0, 1fr) auto;
  min-height: 76px;
  border-radius: 18px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.028);
  border-color: rgba(148, 163, 184, 0.18);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035);
}

.media-playlist button.is-active {
  background:
    radial-gradient(circle at 0% 50%, rgba(52, 211, 153, 0.18), transparent 14rem),
    rgba(16, 185, 129, 0.075);
  border-color: rgba(52, 211, 153, 0.76);
  box-shadow:
    0 0 0 1px rgba(52, 211, 153, 0.18),
    0 18px 48px rgba(16, 185, 129, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.055);
}

.media-playlist-thumb {
  position: relative;
  display: block;
  width: 116px;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 12px;
  background:
    radial-gradient(circle at 50% 50%, rgba(52, 211, 153, 0.2), transparent 4rem),
    rgba(2, 6, 5, 0.9);
  background-position: center;
  background-size: cover;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.media-playlist-thumb.is-empty {
  display: grid;
  place-items: center;
  color: var(--emerald-bright);
  font-size: 1.1rem;
  font-weight: 900;
}

.media-playlist-play {
  position: absolute;
  inset: 50% auto auto 50%;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(248, 250, 252, 0.42);
  border-radius: 999px;
  background: rgba(2, 6, 5, 0.68);
  color: #fff;
  font-size: 0.82rem;
  transform: translate(-50%, -50%);
  backdrop-filter: blur(8px);
}

.media-playlist-content {
  display: grid;
  gap: 5px;
  min-width: 0;
  align-content: center;
}

.media-playlist-text {
  color: rgba(226, 232, 240, 0.82);
  font-size: clamp(0.94rem, 2.2vw, 1.02rem);
  font-weight: 900;
  line-height: 1.28;
}

.media-playlist button.is-active .media-playlist-text {
  color: var(--emerald-bright);
}

.media-playlist-duration {
  color: rgba(148, 163, 184, 0.82);
  font-size: 0.82rem;
  font-weight: 800;
}

.media-playlist-arrow {
  font-size: 1.7rem;
  opacity: 0.9;
}

.media-playlist button:hover,
.media-playlist button:focus-visible {
  border-color: rgba(52, 211, 153, 0.5);
  background: rgba(16, 185, 129, 0.09);
}

html[data-theme="light"] .media-description {
  color: rgba(71, 85, 105, 0.9);
}

html[data-theme="light"] .media-playlist button {
  background: rgba(255, 255, 255, 0.78);
}

html[data-theme="light"] .media-error-message {
  color: rgba(15, 23, 42, 0.84);
  background:
    radial-gradient(circle at 50% 42%, rgba(16, 185, 129, 0.14), transparent 13rem),
    rgba(255, 255, 255, 0.68);
}

@media (max-width: 600px) {
  .media-modal {
    padding: 12px;
  }

  .media-dialog {
    width: calc(100vw - 24px);
    max-width: calc(100vw - 24px);
    max-height: calc(100svh - 24px);
    gap: 13px;
    padding: 18px;
    border-radius: 24px;
  }

  .media-dialog-header {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
  }

  .media-dialog-header h2 {
    max-width: 16ch;
    font-size: clamp(1.45rem, 6.2vw, 1.95rem);
    line-height: 1.08;
  }

  .media-dialog-header .eyebrow {
    font-size: 0.72rem;
    letter-spacing: 0.22em;
  }

  .media-close {
    width: 44px;
    min-width: 44px;
    height: 44px;
    min-height: 44px;
  }

  .media-frame {
    border-radius: 20px;
  }

  .media-error-message {
    min-height: 190px;
    padding: 18px;
  }

  .media-description {
    max-width: 100%;
    font-size: 0.92rem;
    line-height: 1.58;
  }

  .media-playlist button {
    grid-template-columns: auto minmax(72px, 92px) minmax(0, 1fr) auto;
    min-height: 70px;
    gap: 10px;
    padding: 9px 10px;
    border-radius: 16px;
  }

  .media-playlist-thumb {
    width: 92px;
    border-radius: 10px;
  }

  .media-playlist-play {
    width: 30px;
    height: 30px;
    font-size: 0.74rem;
  }

  .media-playlist-marker {
    width: 9px;
    height: 9px;
  }

  .media-playlist-text {
    font-size: 0.88rem;
    line-height: 1.26;
  }

  .media-playlist-duration {
    font-size: 0.78rem;
  }
}

@media (max-width: 390px) {
  .media-dialog {
    padding: 16px;
  }

  .media-dialog-header h2 {
    font-size: clamp(1.32rem, 6vw, 1.72rem);
  }

  .media-playlist button {
    grid-template-columns: auto minmax(64px, 82px) minmax(0, 1fr) auto;
  }

  .media-playlist-thumb {
    width: 82px;
  }
}

@media (max-width: 720px) {
  .example-service-group {
    padding: 14px;
    border-radius: 18px;
  }

  .example-service-head {
    align-items: stretch;
    flex-direction: column;
  }

  .example-reorder-form,
  .example-save-order {
    width: 100%;
  }

  .example-sort-row {
    grid-template-columns: auto minmax(0, 1fr);
    gap: 10px;
    padding: 12px;
  }

  .example-row-main {
    min-width: 0;
  }

  .reorder-controls,
  .example-row-actions {
    grid-column: 1 / -1;
  }

  .reorder-controls {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .example-row-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .example-row-actions a,
  .example-row-actions button,
  .example-row-actions form {
    width: 100%;
  }
}

html[data-theme="light"] .example-service-group {
  background:
    radial-gradient(circle at 0% 0%, rgba(16, 185, 129, 0.14), transparent 16rem),
    rgba(255, 255, 255, 0.78);
}

html[data-theme="light"] .example-sort-row {
  background: rgba(255, 255, 255, 0.8);
}

/* Service Examples admin redesign */
.service-examples-admin {
  --admin-bg: #030806;
  --admin-card: rgba(4, 14, 11, 0.82);
  --admin-border: rgba(52, 211, 153, 0.18);
  --admin-green: #10b981;
  --admin-green-soft: rgba(16, 185, 129, 0.14);
  --admin-text: #f8fafc;
  --admin-muted: #94a3b8;
  --admin-danger: #fb7185;
  background:
    radial-gradient(circle at 15% 0%, rgba(16, 185, 129, 0.16), transparent 24rem),
    radial-gradient(circle at 90% 18%, rgba(6, 78, 59, 0.24), transparent 22rem),
    linear-gradient(180deg, #020403 0%, var(--admin-bg) 54%, #010201 100%);
  color: var(--admin-text);
}

.service-examples-admin .admin-topbar {
  position: sticky;
  top: 0;
  z-index: 60;
  align-items: center;
  gap: 14px;
  padding: 14px;
  background: rgba(2, 5, 4, 0.9);
  border-bottom: 1px solid var(--admin-border);
  backdrop-filter: blur(18px);
}

.service-examples-admin .admin-topbar nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  width: 100%;
}

.service-examples-admin .admin-topbar nav a,
.service-examples-admin .admin-actions a,
.service-examples-admin .admin-actions button,
.service-examples-admin .example-save-order,
.service-examples-admin .examples-add-jump {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 999px;
  white-space: nowrap;
}

.service-examples-admin .admin-topbar nav a[aria-current="page"] {
  border-color: rgba(52, 211, 153, 0.54);
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.28), rgba(6, 78, 59, 0.45));
  box-shadow: 0 0 28px rgba(16, 185, 129, 0.2);
  color: var(--admin-text);
}

.service-examples-admin .admin-shell.admin-wide {
  width: min(1180px, calc(100% - 24px));
  gap: 16px;
  padding: 22px 0 48px;
}

.service-examples-admin .admin-card {
  gap: 16px;
  padding: 18px;
  border-color: var(--admin-border);
  border-radius: 24px;
  background:
    radial-gradient(circle at 0% 0%, rgba(16, 185, 129, 0.14), transparent 20rem),
    linear-gradient(145deg, rgba(4, 14, 11, 0.94), rgba(3, 7, 6, 0.88));
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.38);
}

.service-examples-admin .examples-hero {
  display: grid;
  grid-template-columns: 1fr;
  align-items: end;
}

.service-examples-admin .examples-hero h1,
.service-examples-admin .admin-card h2 {
  max-width: 100%;
  margin: 0;
  font-size: clamp(2.55rem, 13vw, 5.6rem);
  line-height: 0.92;
  letter-spacing: -0.045em;
  overflow-wrap: anywhere;
}

.service-examples-admin .examples-hero-copy,
.service-examples-admin .examples-section-head > div {
  display: grid;
  gap: 10px;
}

.service-examples-admin .examples-add-jump {
  width: 100%;
  margin-top: 6px;
  font-weight: 900;
}

.service-examples-admin .example-editor-card {
  padding: 0;
  overflow: hidden;
}

.service-examples-admin .example-editor-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 74px;
  padding: 18px;
  cursor: pointer;
  list-style: none;
}

.service-examples-admin .example-editor-summary::-webkit-details-marker {
  display: none;
}

.service-examples-admin .example-editor-summary > span:first-child {
  display: grid;
  gap: 5px;
}

.service-examples-admin .example-editor-summary strong {
  font-size: clamp(1.2rem, 5vw, 1.8rem);
  line-height: 1;
}

.service-examples-admin .summary-chevon {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  border: 1px solid rgba(52, 211, 153, 0.24);
  border-radius: 999px;
  background: var(--admin-green-soft);
  color: #6ee7b7;
  font-weight: 950;
  transition: transform 180ms ease;
}

.service-examples-admin .example-editor-card[open] .summary-chevon {
  transform: rotate(45deg);
}

.service-examples-admin .compact-admin-form {
  padding: 0 18px 18px;
}

.service-examples-admin .compact-admin-form label {
  gap: 7px;
}

.service-examples-admin .compact-admin-form input,
.service-examples-admin .compact-admin-form select,
.service-examples-admin .compact-admin-form textarea,
.service-examples-admin .service-filter-label select {
  min-height: 48px;
  border-radius: 14px;
  border-color: rgba(52, 211, 153, 0.2);
  background: rgba(0, 0, 0, 0.34);
  color: var(--admin-text);
}

.service-examples-admin .compact-admin-form input[type="file"] {
  padding: 12px;
}

.service-examples-admin .examples-section-head {
  display: grid;
  gap: 16px;
}

.service-examples-admin .service-filter-label {
  display: grid;
  gap: 8px;
  color: var(--admin-muted);
  font-weight: 850;
}

.service-examples-admin .example-service-groups {
  gap: 12px;
}

.service-examples-admin .example-service-group {
  gap: 0;
  padding: 0;
  overflow: hidden;
  border-radius: 20px;
  background: rgba(0, 0, 0, 0.24);
}

.service-examples-admin .example-service-toggle {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 12px;
  width: 100%;
  min-height: 70px;
  border: 0;
  background: rgba(5, 5, 5, 0.26);
  color: var(--admin-text);
  padding: 14px;
  text-align: left;
  cursor: pointer;
}

.service-examples-admin .service-icon {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(52, 211, 153, 0.24);
  border-radius: 15px;
  background: var(--admin-green-soft);
  color: #6ee7b7;
  font-weight: 950;
}

.service-examples-admin .service-title-wrap {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.service-examples-admin .service-title-wrap strong {
  font-size: 1.02rem;
  line-height: 1.15;
  overflow-wrap: anywhere;
}

.service-examples-admin .example-count {
  display: inline-grid;
  place-items: center;
  min-width: 34px;
  height: 34px;
  border-radius: 999px;
  background: rgba(16, 185, 129, 0.16);
  color: #a7f3d0;
  font-size: 0.88rem;
  font-weight: 950;
}

.service-examples-admin .service-chevron {
  color: #a7f3d0;
  font-size: 1.4rem;
  transition: transform 180ms ease;
}

.service-examples-admin .example-service-toggle[aria-expanded="true"] .service-chevron {
  transform: rotate(180deg);
}

.service-examples-admin .example-service-panel {
  display: grid;
  gap: 12px;
  padding: 0 14px 14px;
}

.service-examples-admin .example-service-actions {
  display: grid;
  gap: 10px;
  padding-top: 4px;
}

.service-examples-admin .example-reorder-form {
  width: 100%;
}

.service-examples-admin .example-save-order {
  width: 100%;
  min-height: 42px;
  font-size: 0.9rem;
}

.service-examples-admin .example-empty-state {
  display: grid;
  gap: 4px;
  border: 1px dashed rgba(52, 211, 153, 0.2);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--admin-muted);
  padding: 16px;
}

.service-examples-admin .example-empty-state strong {
  color: var(--admin-text);
}

.service-examples-admin .example-sort-list {
  gap: 9px;
}

.service-examples-admin .example-sort-row {
  grid-template-columns: auto 74px minmax(0, 1fr);
  gap: 10px;
  min-height: 84px;
  padding: 10px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.035);
}

.service-examples-admin .drag-handle {
  width: 44px;
  min-width: 44px;
  padding: 0;
  font-size: 1rem;
  touch-action: none;
}

.service-examples-admin .example-thumb {
  display: grid;
  place-items: center;
  width: 74px;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border: 1px solid rgba(52, 211, 153, 0.16);
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(0, 0, 0, 0.55));
  color: #6ee7b7;
  font-weight: 950;
}

.service-examples-admin .example-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-examples-admin .example-row-main strong {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  font-size: 0.98rem;
}

.service-examples-admin .example-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 4px;
}

.service-examples-admin .example-badge {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 999px;
  background: rgba(148, 163, 184, 0.08);
  color: var(--admin-muted);
  padding: 3px 8px;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: capitalize;
}

.service-examples-admin .example-badge.is-active {
  border-color: rgba(52, 211, 153, 0.34);
  background: rgba(16, 185, 129, 0.14);
  color: #a7f3d0;
}

.service-examples-admin .example-badge.is-hidden {
  border-color: rgba(251, 113, 133, 0.3);
  background: rgba(251, 113, 133, 0.1);
  color: #fecdd3;
}

.service-examples-admin .reorder-controls,
.service-examples-admin .example-row-actions {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.service-examples-admin .reorder-controls button,
.service-examples-admin .example-row-actions a,
.service-examples-admin .example-row-actions button {
  min-height: 44px;
  border-radius: 14px;
  font-size: 0.9rem;
}

.service-examples-admin .example-row-actions .danger-action {
  border-color: rgba(251, 113, 133, 0.32);
  background: rgba(251, 113, 133, 0.1);
  color: #fecdd3;
}

.service-examples-admin .example-sort-row.is-dragging {
  opacity: 0.68;
  box-shadow: 0 0 0 2px rgba(52, 211, 153, 0.38), 0 18px 42px rgba(0, 0, 0, 0.42);
}

@media (min-width: 768px) {
  .service-examples-admin .admin-topbar {
    padding: 16px 24px;
  }

  .service-examples-admin .admin-topbar nav {
    width: auto;
    display: flex;
  }

  .service-examples-admin .admin-shell.admin-wide {
    width: min(1180px, calc(100% - 44px));
    gap: 20px;
    padding-top: 32px;
  }

  .service-examples-admin .admin-card {
    padding: 24px;
  }

  .service-examples-admin .examples-hero {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 22px;
  }

  .service-examples-admin .examples-add-jump {
    width: auto;
    min-width: 180px;
  }

  .service-examples-admin .compact-admin-form {
    padding: 0 24px 24px;
  }

  .service-examples-admin .examples-section-head {
    grid-template-columns: minmax(0, 1fr) minmax(220px, 300px);
    align-items: end;
  }

  .service-examples-admin .example-service-head,
  .service-examples-admin .example-service-actions {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
  }

  .service-examples-admin .example-save-order {
    width: auto;
    min-width: 132px;
  }

  .service-examples-admin .example-sort-row {
    grid-template-columns: auto 96px minmax(0, 1fr) auto auto;
    min-height: 74px;
  }

  .service-examples-admin .example-thumb {
    width: 96px;
  }

  .service-examples-admin .reorder-controls,
  .service-examples-admin .example-row-actions {
    grid-column: auto;
    display: flex;
    align-items: center;
  }

  .service-examples-admin .reorder-controls button {
    width: 44px;
    padding: 0;
  }
}

@media (min-width: 1100px) {
  .service-examples-admin .admin-shell.admin-wide {
    width: min(1240px, calc(100% - 64px));
  }

  .service-examples-admin .admin-card {
    padding: 28px;
  }

  .service-examples-admin .example-service-panel {
    padding-inline: 18px;
    padding-bottom: 18px;
  }
}
