:root {
  --black: #050506;
  --ink: #0b0b0d;
  --card: #121216;
  --line: rgba(255, 255, 255, 0.1);
  --white: #f7f7f4;
  --muted: #b7b7c2;
  --magenta: #d4219e;
  --yellow: #fff200;
  --cyan: #00c0f1;
  --green: #8ec640;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
  --radius: 22px;
  --max: 1180px;
  --nav-h: 76px;
}

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

html {
  scroll-behavior: smooth;
}

html,
body {
  margin: 0;
  padding: 0;
  background: var(--black);
  color: var(--white);
  font-family: "Outfit", system-ui, sans-serif;
  line-height: 1.55;
  min-height: 100%;
  padding-bottom: 96px;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.skip {
  position: absolute;
  left: 12px;
  top: -40px;
  background: var(--yellow);
  color: #111;
  padding: 8px 12px;
  z-index: 100;
}

.skip:focus {
  top: 12px;
}

/* Infinity ribbon wash */
.ribbons {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.ribbons span {
  position: absolute;
  border-radius: 999px;
  filter: blur(2px);
  opacity: 0.18;
}

.ribbons .r1 {
  width: 58vw;
  height: 140px;
  background: linear-gradient(90deg, var(--magenta), var(--yellow));
  top: -40px;
  left: -8vw;
  transform: rotate(-12deg);
}

.ribbons .r2 {
  width: 50vw;
  height: 120px;
  background: linear-gradient(90deg, var(--cyan), var(--magenta));
  top: 70px;
  right: -12vw;
  transform: rotate(8deg);
}

.ribbons .r3 {
  width: 40vw;
  height: 90px;
  background: var(--yellow);
  bottom: 8vh;
  left: -10vw;
  transform: rotate(-18deg);
  opacity: 0.08;
}

.site {
  position: relative;
  z-index: 1;
}

/* NAV */
.nav {
  position: sticky;
  top: 0;
  z-index: 40;
  height: var(--nav-h);
  min-height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 22px;
  background: rgba(5, 5, 6, 0.78);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.brand img {
  width: 46px;
  height: 46px;
  object-fit: contain;
  flex: none;
  display: block;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand-copy b {
  font-family: "Syne", sans-serif;
  font-weight: 800;
  letter-spacing: 0.04em;
  font-size: 13px;
}

.brand-copy small {
  color: var(--green);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

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

.nav-links a {
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 10px 12px;
  color: var(--muted);
  border-radius: 999px;
}

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

.nav-links a.active {
  background: rgba(255, 255, 255, 0.06);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  cursor: pointer;
  border-radius: 999px;
  padding: 12px 18px;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.btn-yellow {
  background: var(--yellow);
  color: #111;
  box-shadow: 0 0 0 0 rgba(255, 242, 0, 0.4);
}

.btn-yellow:hover {
  box-shadow: 0 0 24px rgba(255, 242, 0, 0.35);
}

.btn-cyan {
  background: var(--cyan);
  color: #041018;
}

.btn-magenta {
  background: var(--magenta);
  color: white;
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--line);
}

.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ff2d55;
  box-shadow: 0 0 0 0 rgba(255, 45, 85, 0.7);
  animation: pulse 1.6s infinite;
}

@keyframes pulse {
  70% {
    box-shadow: 0 0 0 8px rgba(255, 45, 85, 0);
  }
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: transparent;
  color: white;
  border-radius: 12px;
}

.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  display: block;
  width: 18px;
  height: 2px;
  background: white;
  position: relative;
  margin: 0 auto;
}

.menu-toggle span::before,
.menu-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
}

.menu-toggle span::before {
  top: -6px;
}

.menu-toggle span::after {
  top: 6px;
}

/* HERO */
.hero {
  min-height: calc(100vh - var(--nav-h));
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 20px;
  align-items: center;
  padding: 40px 6vw 70px;
  position: relative;
  overflow: hidden;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--cyan);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 12px;
  margin-bottom: 18px;
}

.kicker i {
  width: 28px;
  height: 2px;
  background: linear-gradient(90deg, var(--magenta), var(--yellow), var(--cyan));
}

h1,
h2,
h3 {
  font-family: "Syne", sans-serif;
  margin: 0 0 12px;
  line-height: 0.95;
}

.hero h1 {
  font-size: clamp(40px, 7vw, 92px);
  font-weight: 800;
  letter-spacing: -0.04em;
}

.hero h1 .thin {
  display: block;
  font-weight: 700;
  color: #d8d8de;
  font-size: 0.46em;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}

.hero h1 em {
  font-style: normal;
  background: linear-gradient(90deg, var(--magenta), var(--yellow) 45%, var(--cyan));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lede {
  max-width: 540px;
  color: var(--muted);
  font-size: 18px;
  margin: 18px 0 28px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-photo {
  position: relative;
  min-height: 560px;
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center top;
  position: absolute;
  inset: 0;
  /* fade the white studio backdrop into the site — file itself is untouched */
  mask-image: linear-gradient(180deg, #000 62%, transparent 100%),
    linear-gradient(90deg, transparent 0%, #000 18%, #000 88%, transparent);
  mask-composite: intersect;
  -webkit-mask-image: linear-gradient(180deg, #000 62%, transparent 100%),
    linear-gradient(90deg, transparent 0%, #000 18%, #000 88%, transparent);
  -webkit-mask-composite: destination-in;
  filter: drop-shadow(0 20px 50px rgba(212, 33, 158, 0.18));
}

.glow {
  position: absolute;
  width: 70%;
  height: 70%;
  right: 8%;
  top: 12%;
  background: radial-gradient(circle, rgba(212, 33, 158, 0.28), transparent 68%);
  z-index: -1;
}

.badge-ceo {
  position: absolute;
  left: 0;
  bottom: 14%;
  background: rgba(12, 12, 14, 0.86);
  border: 1px solid var(--line);
  padding: 14px 16px;
  border-radius: 16px;
  backdrop-filter: blur(10px);
  max-width: 230px;
}

.badge-ceo strong {
  display: block;
  font-family: "Syne", sans-serif;
}

.badge-ceo span {
  color: var(--muted);
  font-size: 13px;
}

/* SECTIONS */
section {
  padding: 80px 6vw;
}

.wrap {
  max-width: var(--max);
  margin: 0 auto;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 20px;
  margin-bottom: 36px;
}

.section-head h2 {
  font-size: clamp(28px, 4vw, 48px);
}

.section-head p {
  color: var(--muted);
  max-width: 420px;
  margin: 0;
}

.color-rule {
  height: 4px;
  width: 92px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--magenta), var(--yellow), var(--cyan));
  margin: 10px 0 0;
}

/* CARDS */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
}

.card h3 {
  font-size: 24px;
}

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

.tag {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.tag.m {
  color: var(--magenta);
}

.tag.c {
  color: var(--cyan);
}

.tag.y {
  color: var(--yellow);
}

.tag.g {
  color: var(--green);
}

.card.accent-m {
  border-top: 3px solid var(--magenta);
}

.card.accent-c {
  border-top: 3px solid var(--cyan);
}

.card.accent-y {
  border-top: 3px solid var(--yellow);
}

/* RADIO TEASER / PAGE */
.split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: center;
}

.photo-frame {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #000;
}

.photo-frame img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.logo-safe {
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  border-radius: 18px;
  border: 1px solid var(--line);
}

.logo-safe img {
  width: min(100%, 520px);
  height: auto;
  object-fit: contain;
}

.player {
  background: linear-gradient(180deg, #16161b, #0d0d10);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 22px;
}

.player-top {
  display: flex;
  gap: 16px;
  align-items: center;
}

.eq {
  display: flex;
  align-items: end;
  gap: 4px;
  height: 36px;
}

.eq b {
  width: 4px;
  background: var(--yellow);
  border-radius: 4px;
  height: 8px;
  animation: eq 0.9s ease-in-out infinite alternate;
}

.eq b:nth-child(2) {
  animation-delay: 0.1s;
  background: var(--magenta);
}

.eq b:nth-child(3) {
  animation-delay: 0.2s;
  background: var(--cyan);
}

.eq b:nth-child(4) {
  animation-delay: 0.15s;
  background: var(--yellow);
}

.eq b:nth-child(5) {
  animation-delay: 0.25s;
  background: var(--magenta);
}

.player.is-playing .eq b:nth-child(1) {
  height: 28px;
}
.player.is-playing .eq b:nth-child(2) {
  height: 16px;
}
.player.is-playing .eq b:nth-child(3) {
  height: 34px;
}
.player.is-playing .eq b:nth-child(4) {
  height: 20px;
}
.player.is-playing .eq b:nth-child(5) {
  height: 30px;
}

@keyframes eq {
  from {
    transform: scaleY(0.45);
  }
  to {
    transform: scaleY(1);
  }
}

.play-btn {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 0;
  background: var(--yellow);
  color: #111;
  font-size: 22px;
  cursor: pointer;
  flex: none;
}

.player h3 {
  margin: 0;
  font-size: 22px;
}

.player .status {
  color: var(--muted);
  font-size: 14px;
}

.volume {
  margin-top: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 13px;
}

.volume input {
  flex: 1;
  accent-color: var(--cyan);
}

/* GRAPHICS */
.pinterest-box {
  min-height: 200px;
}

.pinterest-empty {
  text-align: center;
  padding: 70px 20px;
  color: var(--muted);
}

.pinterest-empty h3 {
  color: var(--white);
}

.gallery {
  columns: 3 220px;
  column-gap: 14px;
}

.gallery-item {
  break-inside: avoid;
  display: block;
  margin: 0 0 14px;
  border-radius: 16px;
  overflow: hidden;
  background: #111;
  border: 1px solid var(--line);
  position: relative;
}

.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
}

.gallery-cap {
  display: block;
  padding: 10px 12px 12px;
  font-size: 12px;
  color: var(--muted);
  line-height: 1.35;
}

.gallery-more {
  margin-top: 28px;
  text-align: center;
}

/* HOME SLIDER — 3 cards per roll, slide sideways */
.slides-section {
  padding-top: 40px;
}

.slider-stage {
  position: relative;
  display: grid;
  grid-template-columns: 44px 1fr 44px;
  align-items: center;
  gap: 10px;
}

.work-viewport {
  overflow: hidden;
}

.work-track {
  display: flex;
  transition: transform 0.45s ease;
  will-change: transform;
}

.work-roll {
  min-width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.design-card {
  padding: 16px;
  display: flex;
  flex-direction: column;
}

.design-card .thumb {
  background: #000;
  border-radius: 14px;
  overflow: hidden;
}

.design-card .thumb img {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: top center;
  display: block;
}

.see-more-card {
  justify-content: center;
  text-align: center;
  gap: 8px;
}

.see-more-card h3 {
  font-size: 26px;
  margin: 4px 0;
}

.see-more-card p {
  margin: 0 0 12px;
}

.slider-nav {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: #121216;
  color: var(--white);
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
}

.slider-nav:hover {
  background: var(--yellow);
  color: #111;
  border-color: var(--yellow);
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}

.slider-dots button {
  width: 9px;
  height: 9px;
  border-radius: 99px;
  border: 0;
  background: #3a3a42;
  padding: 0;
  cursor: pointer;
}

.slider-dots button.is-on {
  width: 26px;
  background: linear-gradient(90deg, var(--magenta), var(--yellow), var(--cyan));
}

@media (max-width: 900px) {
  .slider-stage {
    grid-template-columns: 1fr;
  }
  .slider-nav {
    position: absolute;
    z-index: 2;
    top: 46%;
    transform: translateY(-50%);
  }
  .slider-nav.prev {
    left: 4px;
  }
  .slider-nav.next {
    right: 4px;
  }
  .work-roll {
    gap: 10px;
  }
  .design-card {
    padding: 10px;
  }
  .design-card .thumb {
    height: auto;
  }
  .see-more-card {
    min-height: 0;
  }
  .see-more-card h3 {
    font-size: 16px;
  }
  .see-more-card p {
    display: none;
  }
  .see-more-card .btn {
    padding: 8px 10px;
    font-size: 12px;
  }
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  background: rgba(0, 0, 0, 0.88);
  display: grid;
  place-items: center;
  padding: 24px;
  gap: 14px;
}

.lightbox[hidden] {
  display: none;
}

.lightbox img {
  max-width: min(92vw, 920px);
  max-height: 78vh;
  object-fit: contain;
  border-radius: 12px;
}

.lightbox-close {
  position: absolute;
  top: 16px;
  right: 18px;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: var(--yellow);
  color: #111;
  font-size: 28px;
  cursor: pointer;
}

/* CONTACT */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.contact-list a,
.contact-list p {
  display: block;
  margin: 0 0 10px;
  color: var(--white);
}

.contact-list span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.socials a {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 13px;
  color: var(--muted);
}

.socials a:hover {
  color: var(--white);
  border-color: var(--cyan);
}

.socials-icons {
  gap: 12px;
}

.socials-icons a {
  width: 44px;
  height: 44px;
  padding: 0;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  border: 0;
}

.socials-icons a svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.socials-icons .ig { background: radial-gradient(circle at 30% 30%, #feda75, #d62976 55%, #4f5bd5); }
.socials-icons .tt { background: #111; box-shadow: inset 0 0 0 1px #25f4ee, 0 0 0 1px #fe2c55; }
.socials-icons .x { background: #0f0f10; }
.socials-icons .fb { background: #1877f2; }
.socials-icons .yt { background: #ff0000; }
.socials-icons .li { background: #0a66c2; }

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

.float-player {
  position: fixed;
  left: 16px;
  bottom: 18px;
  z-index: 55;
  width: min(360px, calc(100vw - 36px));
  background: linear-gradient(180deg, #1a1a20, #0d0d10);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 10px 12px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
  display: flex;
  align-items: center;
  gap: 10px;
}

.float-player .mini-logo {
  width: 46px;
  height: 46px;
  border-radius: 10px;
  background: #fff;
  object-fit: contain;
  flex: none;
}

.float-player .mini-copy {
  min-width: 0;
  flex: 1;
}

.float-player .mini-copy strong {
  display: block;
  font-size: 13px;
  letter-spacing: 0.04em;
}

.float-player .mini-copy span {
  display: block;
  font-size: 11px;
  color: var(--muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.float-player .play-btn {
  width: 44px;
  height: 44px;
  font-size: 16px;
}

.float-player .eq {
  height: 18px;
  margin-bottom: 2px;
}

.float-player .eq b {
  width: 3px;
}

.wa-float {
  position: fixed;
  right: 16px;
  bottom: 18px;
  z-index: 55;
  background: #25d366;
  color: #fff;
  min-height: 56px;
  height: auto;
  width: auto;
  padding: 4px 16px 4px 4px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.42);
  font-weight: 700;
}

.wa-float .wa-logo {
  width: 48px;
  height: 48px;
  object-fit: contain;
  flex: none;
  display: block;
}

.wa-float b {
  font-family: "Outfit", sans-serif;
  font-size: 15px;
  font-weight: 700;
}

@media (max-width: 720px) {
  .float-player {
    width: calc(100vw - 32px);
    left: 16px;
    right: 16px;
    bottom: 82px;
  }

  /* Phone sliders: one gallery-size poster, centered, not tiny */
  .work-roll {
    display: contents;
  }

  .work-track > .work-roll > * {
    flex: 0 0 100%;
    min-width: 100%;
    max-width: 100%;
  }

  #featured .work-viewport {
    padding: 0 28px;
  }

  #featured .design-card,
  #featured .see-more-card {
    margin: 0 auto;
    max-width: 420px;
  }

  #featured .design-card {
    padding: 12px;
    background: transparent;
    border: 0;
    box-shadow: none;
  }

  #featured .design-card .thumb {
    border-radius: 14px;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 0;
  }

  #featured .design-card .thumb img {
    width: 100%;
    height: auto;
    max-height: 68vh;
    object-fit: contain;
    object-position: center;
  }

  #featured .see-more-card {
    min-height: 52vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  /* Voice: normal YouTube — edge to edge, no side gaps */
  #voice-ads .work-viewport,
  .page-hero + section .work-viewport {
    padding: 0;
  }

  #voice-ads .yt-card,
  [data-slider] .yt-card {
    margin: 0;
    max-width: none;
    border-radius: 0;
    border-left: 0;
    border-right: 0;
  }

  #voice-ads .yt-card img,
  #voice-ads .yt-card iframe,
  [data-slider] .yt-card img,
  [data-slider] .yt-card iframe {
    width: 100%;
    max-height: none;
    aspect-ratio: 16 / 9;
    object-fit: cover;
  }

  .slides-section .mock-card {
    margin: 0 auto;
  }
}

form {
  display: grid;
  gap: 12px;
}

input,
textarea {
  width: 100%;
  background: #0a0a0c;
  border: 1px solid var(--line);
  color: white;
  border-radius: 14px;
  padding: 14px 16px;
}

textarea {
  min-height: 130px;
  resize: vertical;
}

/* FOOTER */
footer {
  border-top: 1px solid var(--line);
  padding: 28px 6vw 40px;
  color: var(--muted);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 14px;
}

.wa-float {
  position: fixed;
  right: 16px;
  bottom: 18px;
  z-index: 55;
}

.page-hero {
  padding: 56px 6vw 20px;
  position: relative;
  overflow: hidden;
}

.page-hero h1 {
  font-size: clamp(36px, 6vw, 72px);
}

.ghost-portrait {
  position: absolute;
  right: 0;
  top: 0;
  width: min(420px, 42vw);
  height: 100%;
  object-fit: contain;
  object-position: top;
  opacity: 0.22;
  pointer-events: none;
  mask-image: linear-gradient(90deg, transparent, #000 30%, #000 80%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 30%, #000 80%, transparent);
}

.page-note {
  color: var(--muted);
  max-width: 640px;
}

.about-split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  align-items: center;
}

.about-split-rev {
  grid-template-columns: 1.1fr 0.9fr;
}

.about-copy p {
  color: var(--muted);
  margin: 0 0 14px;
  max-width: 540px;
}

.about-photos {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 16px;
}

.yt-card {
  position: relative;
  background: #0a0a0c;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  display: block;
}

.yt-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}

.yt-card iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  display: block;
  background: #000;
}

.yt-play {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(0, 0, 0, 0.28);
  cursor: pointer;
  display: grid;
  place-items: center;
}

.yt-play i {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #ff0000;
  box-shadow: 0 8px 24px rgba(255, 0, 0, 0.35);
  position: relative;
}

.yt-play i::after {
  content: "";
  position: absolute;
  left: 23px;
  top: 18px;
  border-style: solid;
  border-width: 11px 0 11px 18px;
  border-color: transparent transparent transparent #fff;
}

.yt-title {
  display: block;
  padding: 10px 12px 12px;
  font-size: 13px;
  color: var(--muted);
}

.price-line {
  color: #fff;
  font-size: 18px;
  margin: 12px 0 16px;
}

.price-line strong {
  color: var(--yellow);
  font-family: "Syne", sans-serif;
  font-size: 1.15em;
}

.gallery.web-gallery .mock-card {
  margin: 0;
}

.gallery.web-gallery .mock-card img {
  width: 100%;
  height: auto;
  display: block;
}

.mock-card img {
  width: 100%;
  height: auto;
  display: block;
}

.mock-card span {
  display: block;
  padding: 10px 12px 12px;
  font-size: 13px;
  color: var(--muted);
}

.web-perks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 18px;
  margin: 16px 0 8px;
  color: var(--muted);
  font-size: 15px;
}

.web-perks b {
  color: var(--yellow);
  font-weight: 700;
}

.site-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.site-list a {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 13px;
  color: var(--muted);
}

.site-list a:hover {
  color: #fff;
  border-color: var(--yellow);
}

/* MOBILE */
@media (max-width: 900px) {
  .menu-toggle {
    display: grid;
    place-items: center;
  }

  .nav-links {
    position: fixed;
    inset: var(--nav-h) 0 auto 0;
    background: rgba(5, 5, 6, 0.96);
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    display: none;
    border-bottom: 1px solid var(--line);
  }

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

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

  .hero,
  .split,
  .grid-3,
  .contact-grid,
  .about-split,
  .about-split-rev,
  .about-photos,
  .mock-grid,
  .web-perks {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 28px;
  }

  .hero-photo {
    min-height: 420px;
    order: -1;
  }

  .badge-ceo {
    left: 8px;
    bottom: 20px;
  }

  .section-head {
    flex-direction: column;
    align-items: start;
  }

  .gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}

/* Youthful studio layer — design tools + booth, text stays on dark cards */
.photo-card-media {
  margin: -24px -24px 16px;
  height: 160px;
  overflow: hidden;
  border-radius: 22px 22px 0 0;
}

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

body.studio-skin {
  background-color: #050506;
}

.craft-layer {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.craft-layer svg {
  position: absolute;
  opacity: 0.22;
}

.swatch-bar {
  display: flex;
  gap: 0;
  height: 10px;
  border-radius: 99px;
  overflow: hidden;
  max-width: 220px;
  margin: 12px 0 0;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.swatch-bar i {
  flex: 1;
  display: block;
}

.craft-icon {
  width: 56px;
  height: 56px;
  margin-bottom: 12px;
}

.craft-icon svg {
  width: 100%;
  height: 100%;
}

.sticker {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 6px 10px;
  border-radius: 8px;
  transform: rotate(-6deg);
  margin: 0 8px 8px 0;
}

.sticker.ps {
  background: #31a8ff;
  color: #041018;
}

.sticker.rec {
  background: #ff2d55;
  color: #fff;
  transform: rotate(5deg);
}

.sticker.layers {
  background: var(--yellow);
  color: #111;
  transform: rotate(-2deg);
}

.wave-strip {
  display: flex;
  align-items: center;
  gap: 3px;
  height: 28px;
  margin-top: 16px;
}

.wave-strip b {
  width: 3px;
  background: var(--cyan);
  border-radius: 3px;
  display: block;
  animation: eq 1.1s ease-in-out infinite alternate;
}

.tape {
  height: 18px;
  background: repeating-linear-gradient(
    -45deg,
    #fff200 0 8px,
    #111 8px 16px
  );
  opacity: 0.35;
  transform: rotate(-2deg);
  margin: 0 0 18px;
}

.svc-stage {
  position: relative;
}

.svc-stage .card {
  position: relative;
  overflow: hidden;
}

.svc-stage .card::after {
  content: "";
  position: absolute;
  right: -20px;
  bottom: -20px;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  opacity: 0.12;
  pointer-events: none;
}

.svc-stage .accent-m::after {
  background: var(--magenta);
}

.svc-stage .accent-c::after {
  background: var(--cyan);
}

.svc-stage .accent-y::after {
  background: var(--yellow);
}

  background: var(--yellow);
}
