/* ============================================================
   KATSURA CREATIVE — Editorial Maximalism
   Oversized typography, extreme whitespace, magazine feel,
   rainbow gradient as the single accent, horizontal rules
   ============================================================ */

/* --- Design Tokens --- */
:root {
  --black: #191919;
  --cream: #f9f8f2;
  --cream-warm: #f3f1e8;
  --gray: #8a8a80;
  --gray-mid: #555550;
  --border: #dddcd4;
  --border-dark: rgba(255,255,255,0.1);

  --font: "Soehne", "Helvetica Neue", Arial, sans-serif;
  --serif: baskerville-urw, "Baskerville", Georgia, serif;
  --gradient: linear-gradient(90deg, #943bc7, #5973d6, #3697e0, #ff5c7a, #ff8047, #ffca51, #42b542);

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --duration: 0.25s;

  --nav-height: 56px;
  --container: 1400px;
  --gutter: clamp(1.25rem, 4vw, 4rem);
}

/* --- Reset additions --- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--black);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4, p, blockquote { margin: 0; }
button { font: inherit; border: none; background: none; cursor: pointer; }

/* --- Layout --- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

/* --- Shared label --- */
.label {
  display: block;
  font-weight: 500;
  font-size: 0.6875rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 1.5rem;
}

/* ============================================================
   NAV
   ============================================================ */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  height: var(--nav-height);
  background: rgba(249,248,242,0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--gutter);
}

.logo-pill {
  display: inline-flex;
  align-items: center;
  padding: 4px 0;
}
.logo-pill img { height: 2rem; }

/* Desktop nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--gray-mid);
  transition: color 0.2s;
  padding: 0.25rem 0;
}
.nav-links a:hover { color: var(--black); }

.nav-cta {
  font-weight: 500 !important;
  background: var(--black);
  color: var(--cream) !important;
  padding: 0.5rem 1.25rem !important;
  border-radius: 100px;
  font-size: 0.8125rem !important;
  transition: all var(--duration) var(--ease);
  line-height: 1.3;
}
.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

/* Mobile hamburger */
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--black);
  border-radius: 1px;
  transition: transform 0.3s var(--ease), opacity 0.2s;
}
.nav-toggle.is-active span:first-child {
  transform: translateY(4px) rotate(45deg);
}
.nav-toggle.is-active span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

/* ============================================================
   MOBILE MENU OVERLAY
   ============================================================ */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 190;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s var(--ease);
}
.mobile-menu.is-open {
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.mobile-menu-link {
  font-weight: 600;
  font-size: clamp(2rem, 8vw, 3.5rem);
  letter-spacing: -0.03em;
  padding: 0.5rem 1rem;
  transition: color 0.2s;
  -webkit-tap-highlight-color: transparent;
}
.mobile-menu-link:hover,
.mobile-menu-link:active {
  color: var(--gray-mid);
}

/* ============================================================
   HERO — Massive Typography
   ============================================================ */
.hero {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: calc(var(--nav-height) + 2rem) var(--gutter) 0;
  max-width: var(--container);
  margin: 0 auto;
}

.hero-inner {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 2rem 0;
}

.hero h1 {
  font-weight: 800;
  font-size: clamp(3rem, 10.5vw, 10rem);
  line-height: 0.95;
  letter-spacing: -0.045em;
  display: flex;
  flex-direction: column;
  overflow: visible;
}

.hero-line {
  display: block;
  overflow: visible;
}

.hero-word {
  font-family: var(--serif);
  font-weight: 400;
  font-style: italic;
  color: #ff5c7a;
  display: inline-block;
  padding-right: 0.15em;
  overflow: visible;
  transition: opacity 0.3s var(--ease), transform 0.4s var(--ease);
}

.hero-dot {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Hero bottom bar */
.hero-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2rem 0 2.5rem;
  border-top: 1px solid var(--border);
  gap: 1.5rem;
  flex-wrap: wrap;
}

.hero-sub {
  font-size: 1rem;
  color: var(--gray-mid);
  max-width: 400px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-shrink: 0;
  flex-wrap: wrap;
}

/* Buttons */
.btn-solid {
  display: inline-flex;
  align-items: center;
  font-family: var(--font);
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--black);
  background: var(--cream);
  padding: 0.875rem 1.75rem;
  border-radius: 100px;
  cursor: pointer;
  transition: all var(--duration) var(--ease);
  line-height: 1;
  -webkit-tap-highlight-color: transparent;
}
.btn-solid:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
}
.btn-solid-dark {
  background: var(--black);
  color: var(--cream);
}
.btn-solid-dark:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
}

.play-link {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--black);
  transition: gap 0.25s var(--ease);
  padding: 0.5rem 0;
  -webkit-tap-highlight-color: transparent;
}
.play-link:hover { gap: 1rem; }

.play-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--black);
  color: var(--cream);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.play-circle svg { margin-left: 2px; }

/* ============================================================
   MARQUEE STRIP
   ============================================================ */
.marquee-strip {
  overflow: hidden;
  background: var(--black);
  padding: 0.875rem 0;
  white-space: nowrap;
}

.marquee-track {
  display: inline-flex;
  animation: marquee 25s linear infinite;
  will-change: transform;
}

.marquee-content {
  font-family: var(--font);
  font-weight: 500;
  font-size: 0.8125rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(249,248,242,0.5);
  flex-shrink: 0;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================================
   SERVICES
   ============================================================ */
.services {
  padding: clamp(4rem, 8vw, 8rem) 0;
}

.services-header {
  margin-bottom: 3rem;
}

.services-header h2 {
  font-weight: 700;
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  letter-spacing: -0.03em;
  line-height: 1.08;
}

.services-list {
  border-top: 1px solid var(--border);
}

.svc {
  display: grid;
  grid-template-columns: 72px 1fr 44px;
  gap: 1.25rem;
  align-items: start;
  padding: 2rem 0;
  border-bottom: 1px solid var(--border);
  transition: transform 0.4s var(--ease);
  will-change: transform;
}
.svc:hover { transform: translateX(1rem); }

.svc-num {
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  color: var(--gray);
  padding-top: 0.35rem;
}

.svc-content h3 {
  font-weight: 600;
  font-size: 1.25rem;
  letter-spacing: -0.01em;
  margin-bottom: 0.5rem;
}

.svc-content p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--gray-mid);
  max-width: 540px;
}

.svc-arrow {
  font-size: 1.25rem;
  color: var(--gray);
  padding-top: 0.2rem;
  transition: transform 0.3s var(--ease), color 0.2s;
  text-align: right;
}
.svc:hover .svc-arrow {
  transform: translateX(6px);
  color: var(--black);
}

/* ============================================================
   SHOWREEL — Click-to-play YouTube embed
   ============================================================ */
.showreel {
  padding: 0 0 clamp(4rem, 8vw, 8rem);
}

.showreel-card {
  border-radius: 1rem;
  overflow: hidden;
  position: relative;
  background: var(--black);
}

.showreel-link {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  aspect-ratio: 16 / 9;
  background: var(--black);
  cursor: pointer;
  overflow: hidden;
  transition: transform 0.3s var(--ease);
  -webkit-tap-highlight-color: transparent;
  border: none;
  padding: 0;
  width: 100%;
  color: #fff;
}
.showreel-link:hover { transform: scale(1.005); }

.showreel-thumb {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.showreel-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.showreel-play {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(0,0,0,0.45);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: all 0.3s var(--ease);
}
.showreel-play svg { margin-left: 3px; }
.showreel-link:hover .showreel-play {
  background: rgba(0,0,0,0.6);
  transform: scale(1.08);
}

.showreel-label {
  font-family: var(--font);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}

/* iframe container */
.showreel-iframe-wrap {
  position: absolute;
  inset: 0;
  z-index: 2;
}
.showreel-iframe-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ============================================================
   OUR WORK — Card grid with category tabs
   ============================================================ */
.work {
  padding: clamp(4rem, 8vw, 8rem) 0;
  background: var(--cream-warm);
}

.work-title {
  font-weight: 800;
  font-size: clamp(2.5rem, 6vw, 5rem);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 1.25rem;
}

.work-intro {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--gray-mid);
  max-width: 520px;
  margin-bottom: 2rem;
}

/* Tabs */
.work-tabs {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.work-tab {
  font-family: var(--font);
  font-weight: 500;
  font-size: 0.8125rem;
  color: var(--gray-mid);
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 0.5rem 1.125rem;
  cursor: pointer;
  transition: all 0.2s var(--ease);
  -webkit-tap-highlight-color: transparent;
  line-height: 1.3;
}
.work-tab:hover {
  color: var(--black);
  border-color: var(--gray);
}
.work-tab.is-active {
  background: var(--black);
  color: var(--cream);
  border-color: var(--black);
}

/* Card grid */
.work-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
}

.work-card {
  background: #fff;
  border-radius: 0.75rem;
  overflow: hidden;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), opacity 0.3s var(--ease);
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
}
.work-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(0,0,0,0.08);
}

.work-card.is-hidden {
  display: none;
}

.work-card-visual {
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  position: relative;
  overflow: hidden;
}

.work-card-visual img {
  max-width: 70%;
  max-height: 80%;
  object-fit: contain;
}

/* For images that should fill (social banner etc) */
.work-card-visual-contain img {
  max-width: 100%;
  max-height: 100%;
  width: 100%;
  object-fit: cover;
  padding: 0;
}
.work-card-visual-contain {
  padding: 0;
}

/* Video play overlay on card */
.work-card-video-btn {
  border: none;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
.work-card-video-btn img {
  max-width: 100%;
  width: 100%;
  max-height: 100%;
  object-fit: cover;
  padding: 0;
}
.work-card-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.25);
  color: #fff;
  transition: background 0.25s var(--ease);
}
.work-card-video-btn:hover .work-card-play {
  background: rgba(0,0,0,0.4);
}

.work-card-info {
  padding: 1.125rem 1.25rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}

.work-card-info h3 {
  font-weight: 600;
  font-size: 1.0625rem;
  letter-spacing: -0.01em;
}

.work-card-type {
  font-size: 0.8125rem;
  color: var(--gray);
}

.work-card-link {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--black);
  margin-top: 0.5rem;
  transition: gap 0.2s var(--ease);
}

/* ============================================================
   WHY
   ============================================================ */
.why {
  padding: clamp(4rem, 8vw, 8rem) 0 0;
}

.why blockquote {
  font-weight: 700;
  font-size: clamp(1.75rem, 4.5vw, 3.75rem);
  letter-spacing: -0.035em;
  line-height: 1.12;
  margin-bottom: 1.5rem;
  max-width: 780px;
}

.why p {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--gray-mid);
  max-width: 540px;
}

.why-pattern-strip {
  width: 100%;
  height: clamp(100px, 12vw, 180px);
  overflow: hidden;
  position: relative;
  margin-top: clamp(3rem, 6vw, 6rem);
}

.why-pattern-inner {
  position: absolute;
  inset: 0;
  background-image: url(../img/header-background.svg);
  background-size: 160px;
  background-repeat: repeat;
}

/* ============================================================
   SUPPORT
   ============================================================ */
.support {
  padding: clamp(4rem, 8vw, 8rem) 0;
}

.support-inner {
  max-width: 540px;
  margin: 0 auto;
  text-align: center;
}

.support h2 {
  font-weight: 800;
  font-size: clamp(2.25rem, 6vw, 5rem);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 1.25rem;
}

.support p {
  font-size: 1.0625rem;
  color: var(--gray-mid);
  line-height: 1.7;
}

/* ============================================================
   CONTACT FORM
   ============================================================ */
.contact {
  background: var(--black);
  padding: clamp(4rem, 8vw, 8rem) var(--gutter);
}

.contact-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: start;
}

.contact-left h2 {
  font-weight: 800;
  font-size: clamp(2.25rem, 6vw, 5rem);
  letter-spacing: -0.04em;
  line-height: 0.95;
  color: var(--cream);
}

.contact-left h2 em {
  font-family: var(--serif);
  font-weight: 400;
  font-style: italic;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.contact-sub {
  font-size: 1.0625rem;
  color: rgba(249,248,242,0.45);
  line-height: 1.65;
  margin-top: 1.5rem;
  max-width: 360px;
}

/* Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.form-group label {
  font-family: var(--font);
  font-weight: 500;
  font-size: 0.8125rem;
  color: rgba(249,248,242,0.5);
  letter-spacing: 0.02em;
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.5;
  color: var(--cream);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 0.5rem;
  padding: 0.75rem 1rem;
  outline: none;
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease);
  -webkit-appearance: none;
  appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(249,248,242,0.2);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.08);
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='rgba(249,248,242,0.4)' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

.form-group select option {
  background: var(--black);
  color: var(--cream);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.contact-submit {
  align-self: flex-start;
  margin-top: 0.5rem;
  min-width: 160px;
  justify-content: center;
}

/* Form states */
.contact-form.is-sending .submit-text { display: none; }
.contact-form.is-sending .submit-sending { display: inline !important; }

.contact-form.is-sent .submit-text { display: none; }
.contact-form.is-sent .submit-sending { display: none !important; }
.contact-form.is-sent .submit-sent { display: inline !important; }

.contact-form.is-sent .contact-submit {
  background: #42b542;
  color: #fff;
  pointer-events: none;
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  padding: 2rem var(--gutter);
  border-top: 1px solid var(--border);
}

.footer-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-logo { height: 1.75rem; }
.footer-logo-link { display: inline-flex; }
.footer-center a {
  font-size: 0.875rem;
  color: var(--gray-mid);
  transition: color 0.2s;
}
.footer-center a:hover { color: var(--black); }
.footer-copy { font-size: 0.8125rem; color: var(--gray); }

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
[data-animate] {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
[data-animate].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger services */
.svc[data-animate]:nth-child(1) { transition-delay: 0ms; }
.svc[data-animate]:nth-child(2) { transition-delay: 60ms; }
.svc[data-animate]:nth-child(3) { transition-delay: 120ms; }
.svc[data-animate]:nth-child(4) { transition-delay: 180ms; }
.svc[data-animate]:nth-child(5) { transition-delay: 240ms; }

/* ============================================================
   RESPONSIVE — Tablet (≤ 1024px)
   ============================================================ */
@media (max-width: 1024px) {
  .hero h1 {
    font-size: clamp(2.75rem, 9vw, 7rem);
  }
  .work-title {
    font-size: clamp(2.25rem, 5vw, 4rem);
  }
}

/* ============================================================
   RESPONSIVE — Small tablet / large phone (≤ 768px)
   ============================================================ */
@media (max-width: 768px) {
  :root {
    --nav-height: 52px;
  }

  /* Show hamburger, hide desktop links */
  .nav-links { display: none; }
  .nav-toggle { display: flex; }

  /* Hero */
  .hero {
    min-height: auto;
    padding-top: calc(var(--nav-height) + 3rem);
    padding-bottom: 0;
  }
  .hero-inner {
    padding: 1rem 0;
  }
  .hero-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 1.5rem 0 2rem;
  }
  .hero-actions {
    width: 100%;
  }

  /* Services */
  .svc {
    grid-template-columns: 44px 1fr;
    gap: 0.75rem;
    padding: 1.5rem 0;
  }
  .svc-arrow { display: none; }
  .svc:hover { transform: none; }
  .svc-content h3 { font-size: 1.125rem; }

  /* Showreel */
  .showreel-link {
    aspect-ratio: 16 / 9;
  }
  .showreel-play {
    width: 56px;
    height: 56px;
  }
  .showreel-play svg {
    width: 24px;
    height: 24px;
  }

  /* Work cards */
  .work-cards {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  }

  /* Contact */
  .contact-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  /* Footer */
  .footer-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

/* ============================================================
   RESPONSIVE — Phone (≤ 480px)
   ============================================================ */
@media (max-width: 480px) {
  :root {
    --gutter: 1.25rem;
  }

  .logo-pill img { height: 1.625rem; }

  .hero h1 {
    font-size: clamp(2.5rem, 13vw, 3.5rem);
  }

  .hero-sub {
    font-size: 0.9375rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-actions .btn-solid-dark {
    text-align: center;
    justify-content: center;
  }
  .hero-actions .play-link {
    justify-content: center;
  }

  .services-header h2 {
    font-size: clamp(1.75rem, 7vw, 2.25rem);
  }

  .svc {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .svc-num {
    margin-bottom: 0.5rem;
  }

  .work-title {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .why blockquote {
    font-size: clamp(1.5rem, 6vw, 2rem);
  }

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

  .contact-left h2 {
    font-size: clamp(2rem, 10vw, 3.5rem);
  }

  .contact-submit {
    width: 100%;
  }

  .btn-solid {
    padding: 0.875rem 1.5rem;
    font-size: 0.875rem;
  }

  .showreel-card {
    border-radius: 0.75rem;
  }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
  [data-animate] { opacity: 1; transform: none; }
  .marquee-track { animation: none; }
}
