/* ============================================
   SOUND UP! VIDEO — styles.css
   Mobile-first, cinematic dark theme
   ============================================ */

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg: #000000;
  --bg-alt: #111111;
  --accent: #E91E8A;
  --accent-hover: #FF4DAB;
  --accent-glow: rgba(233, 30, 138, 0.35);
  --text: #FFFFFF;
  --text-secondary: #B0B0B0;
  --text-dim: #666666;
  --border: rgba(255, 255, 255, 0.08);
  --border-accent: rgba(233, 30, 138, 0.25);

  --font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);

  --nav-height: 64px;
  --container-max: 1200px;
  --container-pad: 20px;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-padding-top: var(--nav-height);
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
}

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

a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.3s var(--ease-out);
}

a:hover {
  color: var(--accent-hover);
}

::selection {
  background: var(--accent);
  color: var(--text);
}

/* ---------- Utility ---------- */
.section-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

.section-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.section-heading {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 20px;
}

.section-heading em {
  font-style: italic;
  color: var(--accent);
}

.section-intro {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 560px;
  margin-bottom: 32px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 14px 32px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: all 0.3s var(--ease-out);
  text-decoration: none;
}

.btn--primary {
  background: var(--accent);
  color: var(--text);
  box-shadow: 0 0 0 0 var(--accent-glow);
}

.btn--primary:hover {
  background: var(--accent-hover);
  color: var(--text);
  box-shadow: 0 0 30px 0 var(--accent-glow);
  transform: translateY(-1px);
}

.btn--outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}

.btn--outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-1px);
}

.btn--full {
  width: 100%;
}

/* ========== NAVIGATION ========== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  z-index: 1000;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: background 0.4s var(--ease-out);
}

.nav--scrolled {
  background: rgba(0, 0, 0, 0.95);
}

.nav__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav__links {
  display: none;
  list-style: none;
  align-items: center;
  gap: 32px;
}

.nav__link {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-secondary);
  letter-spacing: 0.02em;
  transition: color 0.3s var(--ease-out);
  text-decoration: none;
}

.nav__link:hover {
  color: var(--text);
}

.nav__link--cta {
  background: var(--accent);
  color: var(--text) !important;
  padding: 10px 24px;
  border-radius: 4px;
  transition: all 0.3s var(--ease-out);
}

.nav__link--cta:hover {
  background: var(--accent-hover);
  box-shadow: 0 0 20px var(--accent-glow);
}

/* Hamburger */
.nav__hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.nav__hamburger span {
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s var(--ease-out);
  transform-origin: center;
}

.nav__hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav__hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav__hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile overlay */
.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(0, 0, 0, 0.97);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s var(--ease-out);
}

.nav-overlay.active {
  opacity: 1;
  visibility: visible;
}

.nav-overlay__links {
  list-style: none;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: 88px 24px 40px;
}

.nav-overlay__link {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
  transition: color 0.3s var(--ease-out);
  opacity: 0;
  transform: translateY(20px);
}

.nav-overlay.active .nav-overlay__link {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.4s var(--ease-out), transform 0.4s var(--ease-out), color 0.3s var(--ease-out);
}

.nav-overlay.active .nav-overlay__link:nth-child(1) { transition-delay: 0.1s, 0.1s, 0s; }
.nav-overlay.active .nav-overlay__link:nth-child(2) { transition-delay: 0.15s, 0.15s, 0s; }
.nav-overlay.active .nav-overlay__link:nth-child(3) { transition-delay: 0.2s, 0.2s, 0s; }
.nav-overlay.active .nav-overlay__link:nth-child(4) { transition-delay: 0.25s, 0.25s, 0s; }
.nav-overlay.active .nav-overlay__link:nth-child(5) { transition-delay: 0.3s, 0.3s, 0s; }
.nav-overlay.active .nav-overlay__link:nth-child(6) { transition-delay: 0.35s, 0.35s, 0s; }

.nav-overlay__link:hover {
  color: var(--accent);
}

.nav-overlay__link--cta {
  color: var(--accent);
}

/* ========== HERO ========== */
.hero {
  position: relative;
  min-height: 82vh;
  min-height: 82dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: calc(var(--nav-height) + 28px) var(--container-pad) 48px;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.5;
  pointer-events: none;
}

.hero__waveform {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  opacity: 0.6;
}

.hero__waveform-svg {
  width: 100%;
  height: 100%;
}

.hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero__kicker {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
  opacity: 0;
  animation: hero-title-in 0.5s ease-out 0.5s forwards;
}

.hero__logo {
  display: block;
  width: min(82vw, 420px);
  margin: 0 auto 24px;
  opacity: 0;
  animation: hero-title-in 0.5s ease-out 0.25s forwards;
  mix-blend-mode: screen;
}

.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 5.1vw, 3.84rem);
  font-weight: 700;
  line-height: 0.9;
  color: var(--text);
  margin-bottom: 28px;
  text-transform: none;
  opacity: 0;
  animation: hero-title-in 0.6s ease-out 0.75s forwards;
}

@keyframes hero-title-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

.hero__title-accent {
  color: var(--accent);
  display: inline-block;
}

.hero__subtitle {
  font-size: clamp(0.85rem, 1.8vw, 1rem);
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto 40px;
  opacity: 0;
  animation: hero-title-in 0.5s ease-out 1s forwards;
}

.hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text);
  text-decoration: none;
  padding: 14px 28px;
  border: 1px solid var(--border);
  border-radius: 4px;
  transition: all 0.3s var(--ease-out);
  opacity: 0;
  animation: hero-title-in 0.5s ease-out 1.15s forwards;
}

.hero__cta:hover {
  color: var(--text);
  border-color: var(--accent);
  box-shadow: 0 0 20px var(--accent-glow);
}

.hero__cta svg {
  animation: bounce-down 2s var(--ease-in-out) infinite;
}

@keyframes bounce-down {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(4px); }
}

.hero__scroll-indicator {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
}

.hero__scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  animation: scroll-pulse 2s var(--ease-in-out) infinite;
}

@keyframes scroll-pulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ========== VIDEO REEL ========== */
.reel {
  padding: 72px 0;
  background: var(--bg-alt);
}

.reel__carousel {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  padding-bottom: 56px;
}

.reel__track {
  overflow: hidden;
  flex: 1;
}

.reel__grid {
  display: grid;
  grid-template-rows: 1fr 1fr;
  grid-auto-flow: column;
  grid-auto-columns: 100%;
  gap: 18px;
  transition: transform 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.reel__arrow {
  position: absolute;
  bottom: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--accent);
  background: rgba(233, 30, 138, 0.1);
  color: var(--accent);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s var(--ease-out);
  z-index: 2;
}

.reel__arrow--prev {
  left: calc(50% - 54px);
}

.reel__arrow--next {
  right: calc(50% - 54px);
}

.reel__arrow:hover {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 0 20px rgba(233, 30, 138, 0.4);
}

.reel__arrow:disabled {
  opacity: 0.3;
  cursor: default;
  pointer-events: none;
}

.reel__item {
  opacity: 0;
  transform: translateY(30px);
}

.reel__video-wrap {
  position: relative;
  padding-bottom: 56.25%;
  background: #0a0a0a;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: border-color 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}

.reel__video-wrap:hover {
  border-color: var(--border-accent);
  box-shadow: 0 0 40px rgba(233, 30, 138, 0.1);
}

.reel__video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.reel__placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background: #0a0a0a;
}

.reel__placeholder span {
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.reel__caption {
  font-size: 0.85rem;
  color: var(--text-dim);
  margin-top: 10px;
  letter-spacing: 0.02em;
}

.reel__cta-wrap {
  text-align: center;
  margin-top: 40px;
}

/* ========== ABOUT ========== */
.about {
  padding: 72px 0;
  background: var(--bg);
}

.about__grid {
  display: grid;
  gap: 48px;
}

.about__image-frame {
  position: relative;
  max-width: min(100%, 360px);
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 32px;
}

.about__image {
  border-radius: 4px;
  filter: grayscale(20%);
  transition: filter 0.6s var(--ease-out);
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center top;
}

.about__image-frame:hover .about__image {
  filter: grayscale(0);
}

.about__image-accent {
  position: absolute;
  top: -12px;
  right: -12px;
  width: 100%;
  height: 100%;
  border: 1px solid var(--accent);
  border-radius: 4px;
  opacity: 0.3;
  z-index: -1;
}

.about__throwback {
  position: absolute;
  bottom: -24px;
  right: -20px;
  width: 160px;
  background: #0a0a0a;
  padding: 8px 8px 4px;
  border: 1px solid var(--border);
  border-radius: 2px;
  transform: rotate(3deg);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.6);
  z-index: 2;
  transition: transform 0.4s var(--ease-out);
}

.about__throwback:hover {
  transform: rotate(0deg) scale(1.05);
}

.about__throwback-img {
  width: 100%;
  height: auto;
  border-radius: 1px;
}

.about__throwback-caption {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 0.65rem;
  color: var(--text-dim);
  text-align: center;
  margin-top: 6px;
  padding-bottom: 4px;
}

.about__lead {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--text);
  margin-bottom: 20px;
}

.about__lead strong {
  color: var(--accent);
  font-weight: 600;
}

.about__text {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 32px;
}

.about__quote {
  border-left: 2px solid var(--accent);
  padding-left: 24px;
  margin-top: 32px;
}

.about__quote p {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.25rem;
  line-height: 1.5;
  color: var(--text);
  margin-bottom: 8px;
}

.about__quote cite {
  font-family: var(--font-body);
  font-style: normal;
  font-size: 0.85rem;
  color: var(--text-dim);
  letter-spacing: 0.05em;
}

/* ========== PROCESS ========== */
.process {
  padding: 72px 0;
  background: var(--bg-alt);
}

.process__steps {
  display: grid;
  gap: 20px;
  margin-bottom: 32px;
}

.process__step {
  padding: 28px 24px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.02);
  transition: border-color 0.3s var(--ease-out), transform 0.3s var(--ease-out);
  opacity: 0;
  transform: translateY(30px);
}

.process__step:hover {
  border-color: var(--border-accent);
  transform: translateY(-2px);
}

.process__step-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 16px;
  opacity: 0.5;
}

.process__step-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
}

.process__step-desc {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

.process__cta-wrap {
  text-align: center;
}

/* ========== SERVICES ========== */
.services {
  padding: 72px 0;
  background: var(--bg);
}

.services__grid {
  display: grid;
  gap: 24px;
}

.services__card {
  padding: 28px 24px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.015);
  transition: border-color 0.3s var(--ease-out), transform 0.3s var(--ease-out);
  opacity: 0;
  transform: translateY(20px);
}

.services__card:hover {
  border-color: var(--border-accent);
  transform: translateY(-2px);
}

.services__icon {
  font-size: 1.75rem;
  margin-bottom: 16px;
  opacity: 0.7;
}

.services__title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}

.services__desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ========== TESTIMONIALS ========== */
.testimonials {
  padding: 72px 0;
  background: var(--bg-alt);
  overflow: hidden;
}

.testimonials__track {
  column-count: 1;
  column-gap: 24px;
}

.testimonials__card {
  padding: 28px 24px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.02);
  opacity: 0;
  transform: translateY(20px);
  break-inside: avoid;
  display: inline-block;
  width: 100%;
  margin: 0 0 24px;
}

.testimonials__text {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  margin-bottom: 20px;
}

.testimonials__text::before {
  content: '\201C';
  display: none;
}

.testimonials__cite {
  font-family: var(--font-body);
  font-style: normal;
  font-size: 0.85rem;
  color: var(--text-dim);
  letter-spacing: 0.02em;
}

.testimonials__cite span {
  color: var(--accent);
}

.testimonials__meta {
  font-family: var(--font-body);
  font-size: 0.7rem;
  color: var(--text-dim);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0 0 14px 0;
  opacity: 0.75;
}

/* ========== PRICING ========== */
.pricing {
  padding: 120px 0;
  background: var(--bg);
}

.pricing__grid {
  display: grid;
  gap: 24px;
  margin-bottom: 32px;
}

.pricing__card {
  position: relative;
  padding: 40px 32px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.015);
  text-align: center;
  transition: border-color 0.3s var(--ease-out), transform 0.3s var(--ease-out);
}

.pricing__card:hover {
  border-color: var(--border-accent);
  transform: translateY(-2px);
}

.pricing__card--featured {
  border-color: var(--accent);
  background: rgba(233, 30, 138, 0.05);
}

.pricing__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--text);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 16px;
  border-radius: 20px;
}

.pricing__tier {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
}

.pricing__price {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 28px;
}

.pricing__amount {
  font-size: 2rem;
  font-weight: 600;
  color: var(--text);
}

.pricing__features {
  list-style: none;
  margin-bottom: 32px;
  text-align: left;
}

.pricing__features li {
  font-size: 0.95rem;
  color: var(--text-secondary);
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  padding-left: 20px;
  position: relative;
}

.pricing__features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  transform: translateY(-50%);
}

.pricing__note {
  text-align: center;
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.pricing__note a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ========== FAQ ========== */
.faq {
  padding: 72px 0;
  background: var(--bg-alt);
}

.faq__list {
  max-width: 720px;
}

.faq__item {
  border-bottom: 1px solid var(--border);
}

.faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 20px 0;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
  cursor: pointer;
  list-style: none;
  transition: color 0.3s var(--ease-out);
}

.faq__question::-webkit-details-marker {
  display: none;
}

.faq__question::after {
  content: '+';
  font-family: var(--font-body);
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--accent);
  transition: transform 0.3s var(--ease-out);
  flex-shrink: 0;
  margin-left: 16px;
}

.faq__item[open] .faq__question::after {
  transform: rotate(45deg);
}

.faq__question:hover {
  color: var(--accent);
}

.faq__answer {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  padding-bottom: 24px;
  max-width: 600px;
}

/* ========== CONTACT ========== */
.contact {
  padding: 72px 0;
  background: var(--bg);
}

.contact__grid {
  display: grid;
  gap: 48px;
}

.contact__text {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 32px;
}

.contact__details {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact__details li {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contact__details strong {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.contact__details a,
.contact__details span {
  font-size: 1rem;
  color: var(--text);
}

.contact__details a:hover {
  color: var(--accent);
}

/* Contact Form */
.contact__form {
  display: grid;
  gap: 20px;
}

.contact__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.contact__field label {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.contact__field input,
.contact__field select,
.contact__field textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 14px 16px;
  transition: border-color 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
  outline: none;
  -webkit-appearance: none;
}

.contact__field input:focus,
.contact__field select:focus,
.contact__field textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(233, 30, 138, 0.15);
}

.contact__field select {
  cursor: pointer;
  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='%23B0B0B0' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.contact__field select option {
  background: #111;
  color: var(--text);
}

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

/* ========== FOOTER ========== */
.footer {
  padding: 40px 0;
  background: var(--bg);
  border-top: 1px solid var(--border);
}

.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}

.footer__brand {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer__logo-img {
  height: 60px;
  width: auto;
  margin-bottom: 12px;
}

.footer__tagline {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 0.9rem;
  color: var(--text-dim);
  margin-top: 8px;
}

.footer__social {
  display: flex;
  gap: 16px;
}

.footer__social-link {
  color: var(--text-secondary);
  transition: color 0.3s var(--ease-out);
}

.footer__social-link:hover {
  color: var(--accent);
}

.footer__copy {
  font-size: 0.8rem;
  color: var(--text-dim);
}

.footer__response {
  font-size: 0.75rem;
  color: var(--text-dim);
  letter-spacing: 0.05em;
}

/* ========== RESPONSIVE ========== */

/* Tablet (768px+) */
@media (min-width: 768px) {
  :root {
    --nav-height: 72px;
    --container-pad: 40px;
  }

  .section-intro {
    margin-bottom: 48px;
  }

  .nav__links {
    display: flex;
  }

  .nav__hamburger {
    display: none;
  }

  .hero {
    min-height: 100vh;
    min-height: 100dvh;
    padding: calc(var(--nav-height) + 40px) var(--container-pad) 60px;
  }

  .hero__logo {
    width: clamp(342px, 49.5vw, 630px);
  }

  .hero__scroll-indicator {
    bottom: 32px;
  }

  .reel,
  .about,
  .process,
  .services,
  .testimonials,
  .faq,
  .contact {
    padding: 120px 0;
  }

  .reel__carousel {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-bottom: 0;
  }

  .reel__arrow {
    position: static;
    flex-shrink: 0;
    width: 48px;
    height: 48px;
  }

  .reel__grid {
    grid-auto-columns: calc(25% - 18px);
    gap: 24px;
  }

  .about__grid {
    grid-template-columns: 1fr 1.2fr;
    align-items: center;
    gap: 64px;
  }

  .about__image-frame {
    max-width: 420px;
    margin-left: 0;
    margin-right: 0;
  }

  .about__lead {
    font-size: 1.15rem;
  }

  .process__steps {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-bottom: 48px;
  }

  .process__step {
    padding: 40px 32px;
  }

  .services__card,
  .testimonials__card {
    padding: 36px 32px;
  }

  .testimonials__text {
    font-size: 1.1rem;
  }

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

  .testimonials__track {
    column-count: 2;
  }

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

  .contact__grid {
    grid-template-columns: 1fr 1fr;
    align-items: start;
    gap: 64px;
  }

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

  .contact__field--full {
    grid-column: 1 / -1;
  }

  .contact__form .btn {
    grid-column: 1 / -1;
  }
}

/* Desktop (1024px+) */
@media (min-width: 1024px) {
  :root {
    --container-pad: 48px;
  }

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

  .testimonials__track {
    column-count: 3;
  }
}

/* Large Desktop (1280px+) */
@media (min-width: 1280px) {
  :root {
    --container-pad: 24px;
  }

  .process__steps {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ========== NO-JS FALLBACK ========== */
/* If GSAP doesn't load within 3s, show everything */
@keyframes no-js-reveal {
  to { opacity: 1; transform: none; }
}

.hero__logo,
.hero__kicker,
.hero__subtitle,
.hero__cta,
.reel__item,
.process__step,
.services__card,
.testimonials__card {
  animation: no-js-reveal 0s 3s forwards;
}

/* ========== 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;
  }

  .hero__logo,
  .hero__kicker,
  .hero__title,
  .hero__subtitle,
  .hero__cta,
  .reel__item,
  .process__step,
  .services__card,
  .testimonials__card {
    opacity: 1 !important;
    transform: none !important;
  }
}
