/* ============================================================
   TIGER SOUNDWORKS
   Static one-page site. Inspired by Gaintab. Custom-built.
   ============================================================ */

/* ---------- TOKENS ---------- */
:root {
  --ink: #131417;
  --ink-soft: #1c1d22;
  --paper: #f5f1e8;
  --paper-warm: #ebe3d0;
  --gray: #6a655c;
  --gray-line: #ddd6c6;
  --amber: #e0a943;
  --amber-deep: #a3781f;
  --ember: #d97435;
  --teal: #1f4d4a;

  --font-display: "Staatliches", "Impact", sans-serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;
  --font-accent: "Playfair Display", Georgia, serif;

  --container: 1280px;
  --gutter: clamp(20px, 4vw, 48px);

  --radius-pill: 999px;
  --radius-md: 16px;
  --radius-lg: 24px;

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  padding-bottom: 72px; /* room for audio player */
}

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

a { color: inherit; text-decoration: none; transition: color 0.2s var(--ease); }
a:hover { color: var(--amber-deep); }

ul, ol { margin: 0; padding: 0; list-style: none; }

button { font-family: inherit; cursor: pointer; border: none; background: none; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ---------- TYPOGRAPHY ---------- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1;
  margin: 0;
  text-transform: uppercase;
}

.section-headline {
  font-size: clamp(2.5rem, 5.5vw, 5rem);
  line-height: 0.95;
  max-width: 18ch;
  margin-bottom: 1.5rem;
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gray);
  margin: 0 0 1.25rem;
}

.eyebrow.center { text-align: center; }

.lede {
  font-size: 1.125rem;
  color: var(--gray);
  max-width: 60ch;
  line-height: 1.7;
}

/* ---------- ACCENT WORDS ---------- */
.scribble-wrap {
  display: inline;
  color: var(--amber);
  font-family: var(--font-accent);
  font-style: italic;
  font-weight: 700;
  letter-spacing: -2px;
  text-transform: lowercase;
}
.scribble-wrap .scribble { display: none; }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.6rem;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: var(--radius-pill);
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease);
}

.btn-primary {
  background: var(--ink);
  color: var(--paper);
}
.btn-primary:hover { background: var(--amber); color: var(--ink); transform: translateY(-2px); }

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--ink);
}
.btn-ghost:hover { background: var(--ink); color: var(--paper); }

.btn-large { padding: 1.1rem 2rem; font-size: 0.85rem; }
.btn-full { width: 100%; justify-content: center; }

/* ---------- STICKY NAV ---------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0.6rem var(--gutter);
  background: rgba(250, 250, 250, 0);
  transition: background 0.3s var(--ease), padding 0.3s var(--ease), color 0.3s var(--ease);
  color: var(--paper);
}
.site-header.scrolled {
  background: rgba(250, 250, 250, 0.96);
  backdrop-filter: blur(12px);
  padding: 0.4rem var(--gutter);
  color: var(--ink);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
}

.brand {
  display: inline-flex;
  align-items: center;
  line-height: 0;
}
.brand-logo {
  height: 150px;
  width: auto;
  display: block;
  transition: height 0.3s var(--ease);
}
.site-header.scrolled .brand-logo { height: 46px; }
.brand-logo-dark { display: none; }
.site-header.scrolled .brand-logo-light { display: none; }
.site-header.scrolled .brand-logo-dark { display: block; }

.primary-nav {
  display: flex;
  gap: 2rem;
  font-size: 0.92rem;
  margin-left: auto;
}
.primary-nav a {
  position: relative;
  padding: 0.25rem 0;
}
.primary-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  height: 1.5px;
  width: 0;
  background: var(--amber);
  transition: width 0.3s var(--ease);
}
.primary-nav a:hover::after,
.primary-nav a.active::after { width: 100%; }

.nav-cta { padding: 0.6rem 1.1rem; font-size: 0.72rem; margin-left: 2rem; }
.site-header:not(.scrolled) .nav-cta { background: var(--paper); color: var(--ink); }
.site-header:not(.scrolled) .nav-cta:hover { background: var(--amber); }

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.menu-toggle span {
  width: 22px;
  height: 2px;
  background: currentColor;
  transition: transform 0.25s var(--ease);
}

/* ---------- SIDE DOT NAV ---------- */
.dot-nav {
  position: fixed;
  top: 50%;
  right: 22px;
  transform: translateY(-50%);
  z-index: 40;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.dot {
  display: flex;
  align-items: center;
  gap: 8px;
  position: relative;
}
.dot::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(19, 20, 23, 0.25);
  transition: all 0.3s var(--ease);
}
.dot.active::before {
  background: var(--amber);
  transform: scale(1.4);
  box-shadow: 0 0 0 3px rgba(224, 169, 67, 0.15);
}
.dot-label {
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%) translateX(8px);
  opacity: 0;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: var(--ink);
  color: var(--paper);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  pointer-events: none;
  transition: opacity 0.2s var(--ease), transform 0.2s var(--ease);
  white-space: nowrap;
}
.dot:hover .dot-label {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  color: var(--paper);
  overflow: hidden;
  isolation: isolate;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: -3;
  animation: heroZoom 18s ease-out forwards;
}
@keyframes heroZoom {
  from { transform: scale(1.08); }
  to { transform: scale(1); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(15, 16, 19, 0.96) 0%,
    rgba(15, 16, 19, 0.55) 32%,
    rgba(15, 16, 19, 0.42) 60%,
    rgba(15, 16, 19, 0.74) 100%);
  z-index: -2;
}
.hero-bg-icon {
  position: absolute;
  top: 50%;
  right: -7%;
  transform: translateY(-50%);
  height: 94%;
  width: auto;
  z-index: -1;
  pointer-events: none;
  opacity: 0.95;
}
.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 6rem var(--gutter) 4rem;
}
.hero-content .eyebrow { color: rgba(250, 250, 250, 0.7); }
.hero-headline {
  font-size: clamp(3.5rem, 9vw, 8rem);
  line-height: 0.92;
  margin-bottom: 1.5rem;
  max-width: 17ch;
}
.hero-sub {
  font-size: clamp(1rem, 1.4vw, 1.25rem);
  max-width: 55ch;
  color: rgba(250, 250, 250, 0.85);
  margin-bottom: 2.2rem;
  line-height: 1.6;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-actions .btn-ghost { color: var(--paper); border-color: var(--paper); }
.hero-actions .btn-ghost:hover { background: var(--paper); color: var(--ink); }

.scroll-cue {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  color: rgba(250, 250, 250, 0.7);
}
.scroll-cue span {
  width: 1.5px;
  height: 36px;
  background: rgba(250, 250, 250, 0.5);
  animation: scrollPulse 1.8s ease-in-out infinite;
  transform-origin: top;
}
@keyframes scrollPulse {
  0%, 100% { transform: scaleY(0.3); opacity: 0.4; }
  50% { transform: scaleY(1); opacity: 1; }
}

/* ---------- MARQUEE ---------- */
.marquee {
  overflow: hidden;
  padding: 1.6rem 0;
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  letter-spacing: 0.04em;
  white-space: nowrap;
  position: relative;
}
.marquee-dark { background: var(--ink); color: var(--paper); }
.marquee-light { background: var(--paper); color: var(--ink); border-block: 1px solid var(--gray-line); }
.marquee-track {
  display: flex;
  gap: 2rem;
  animation: marqueeScroll 40s linear infinite;
}
.marquee-track.reverse { animation-direction: reverse; }
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.marquee span { padding-right: 2rem; flex-shrink: 0; }

/* ---------- SERVICES INTRO ---------- */
.services-intro { padding: 7rem 0 4rem; }
.services-intro .lede { margin-top: 1rem; }

/* ---------- SERVICE BLOCKS ---------- */
.service-block { padding: 5rem 0; }
.service-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 6rem);
  align-items: center;
}
.service-block.reversed .service-grid { direction: rtl; }
.service-block.reversed .service-grid > * { direction: ltr; }

.service-image {
  position: relative;
  aspect-ratio: 1;
  max-width: 540px;
}
.circle-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  border-radius: 50%;
  filter: saturate(0.95);
}
.rotating-text {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.rotating-text svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  animation: spin 22s linear infinite;
}
.rotating-text text {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.25em;
  fill: var(--paper);
  text-transform: uppercase;
}
@keyframes spin { to { transform: rotate(360deg); } }

.service-title {
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1;
  margin-bottom: 1rem;
}
.service-copy p { color: var(--gray); margin: 0 0 1.5rem; max-width: 50ch; }
.service-bullets { margin-bottom: 1.75rem; }
.service-bullets li {
  position: relative;
  padding-left: 1.6rem;
  margin-bottom: 0.5rem;
  color: var(--ink);
}
.service-bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 8px;
  height: 8px;
  background: var(--amber);
  border-radius: 50%;
}

/* ---------- WORK GRID ---------- */
.work {
  position: relative;
  padding: 6rem 0;
  background: var(--ink);
  color: var(--paper);
  overflow: hidden;
  isolation: isolate;
}
.work::before {
  content: "";
  position: absolute;
  top: -8%;
  right: -8%;
  width: 62%;
  height: 80%;
  background-image: url('assets/images/synth-keys.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.55;
  filter: brightness(0.85) contrast(1.15) saturate(0.9);
  z-index: 0;
  pointer-events: none;
  mask-image: radial-gradient(ellipse at 100% 0%, black 0%, black 35%, transparent 85%);
  -webkit-mask-image: radial-gradient(ellipse at 100% 0%, black 0%, black 35%, transparent 85%);
}
.work .container { position: relative; z-index: 1; }
.work .eyebrow { color: rgba(250, 250, 250, 0.55); }
.work .section-headline { color: var(--paper); }
.work-head { margin-bottom: 1.5rem; }
.work-head .section-headline { max-width: 24ch; }
.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 240px;
  gap: 14px;
}
.work-tile {
  position: relative;
  background-size: cover;
  background-position: center;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  isolation: isolate;
  transition: transform 0.4s var(--ease);
}
.work-tile.tile-tall { grid-row: span 2; }
.work-tile.tile-wide { grid-column: span 2; }
.work-tile::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(19, 20, 23, 0) 40%, rgba(19, 20, 23, 0.85) 100%);
  transition: opacity 0.3s var(--ease);
  z-index: 1;
}
.work-tile:hover { transform: scale(1.01); }
.work-tile:hover::before { background: linear-gradient(180deg, rgba(19, 20, 23, 0.2) 0%, rgba(19, 20, 23, 0.9) 100%); }
.tile-meta {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 16px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.tile-tag {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  background: var(--amber);
  color: var(--ink);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  margin-bottom: 6px;
}
.tile-title { font-family: var(--font-display); font-size: 1.3rem; letter-spacing: 0.03em; }
.tile-play { font-size: 0.72rem; letter-spacing: 0.2em; opacity: 0.75; }

/* ---------- PROCESS ---------- */
.process { padding: 6rem 0; background: var(--paper-warm); }
.process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.process-steps li {
  padding: 1.75rem 1.25rem;
  border: 1px solid var(--gray-line);
  border-radius: var(--radius-md);
  background: var(--paper);
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease);
}
.process-steps li:hover { transform: translateY(-6px); border-color: var(--amber); }
.step-num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: var(--amber);
  display: block;
  margin-bottom: 0.5rem;
  line-height: 1;
}
.process-steps h4 {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}
.process-steps p { font-size: 0.92rem; color: var(--gray); margin: 0; line-height: 1.55; }

/* ---------- TESTIMONIALS ---------- */
.testimonials { padding: 6rem 0; }
.testimonial-slider {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  min-height: 220px;
}
.testimonial {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
  pointer-events: none;
}
.testimonial.active { opacity: 1; transform: translateY(0); pointer-events: auto; position: relative; }
.testimonial-quote {
  font-size: clamp(1.25rem, 2vw, 1.6rem);
  line-height: 1.5;
  margin-bottom: 1.5rem;
  color: var(--ink);
}
.testimonial-author {
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  font-weight: 600;
}
.testimonial-author span { color: var(--gray); font-weight: 400; margin-left: 6px; }

.slider-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  margin-top: 2rem;
}
.slider-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s var(--ease), color 0.25s var(--ease);
}
.slider-btn:hover { background: var(--ink); color: var(--paper); }
.slider-count {
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gray);
}

/* ---------- PRICING ---------- */
.pricing { padding: 6rem 0; }
.pricing .lede { margin-bottom: 3rem; }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.price-card {
  border: 1px solid var(--gray-line);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  background: var(--paper);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.price-card:hover {
  transform: translateY(-6px);
  border-color: var(--amber);
  box-shadow: 0 20px 50px rgba(19, 20, 23, 0.08);
}
.price-card.featured {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}
.price-card.featured ul { color: rgba(250, 250, 250, 0.85); }
.price-card.featured .btn-primary { background: var(--amber); color: var(--ink); }

.price-tier {
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--amber);
  margin: 0 0 0.75rem;
  font-weight: 600;
}
.price-label { font-size: 1.6rem; margin-bottom: 1rem; }
.price-value {
  font-family: var(--font-display);
  font-size: 3.5rem;
  line-height: 1;
  margin: 0 0 1.75rem;
}
.price-currency { font-size: 1.5rem; vertical-align: top; margin-right: 4px; }
.price-unit { font-family: var(--font-body); font-size: 0.85rem; font-weight: 400; color: var(--gray); }
.price-card.featured .price-unit { color: rgba(250, 250, 250, 0.7); }

.price-card ul { margin-bottom: 2rem; flex-grow: 1; }
.price-card li {
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--gray-line);
  font-size: 0.95rem;
}
.price-card.featured li { border-color: rgba(250, 250, 250, 0.15); }
.price-card li:last-child { border-bottom: none; }

.pricing-note {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.9rem;
  color: var(--gray);
}
.pricing-note a { color: var(--amber-deep); font-weight: 600; }

/* ---------- FAQ ---------- */
.faq { padding: 6rem 0; background: var(--paper-warm); }
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: start;
}
.faq-list details {
  border-bottom: 1px solid var(--gray-line);
  padding: 1.25rem 0;
  transition: border-color 0.3s var(--ease);
}
.faq-list details[open] { border-color: var(--amber); }
.faq-list summary {
  font-family: var(--font-display);
  font-size: 1.3rem;
  letter-spacing: 0.03em;
  cursor: pointer;
  list-style: none;
  position: relative;
  padding-right: 2rem;
  transition: color 0.25s var(--ease);
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  font-family: var(--font-body);
  font-weight: 300;
  transition: transform 0.25s var(--ease);
}
.faq-list details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-list details[open] summary { color: var(--amber-deep); }
.faq-list p { margin: 1rem 0 0; color: var(--gray); line-height: 1.65; }

/* ---------- CTA BANNER ---------- */
.cta-banner {
  position: relative;
  padding: 7rem 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: var(--paper);
  text-align: center;
  isolation: isolate;
}
.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(19, 20, 23, 0.5), rgba(19, 20, 23, 0.82));
  z-index: -1;
}
.cta-content h2 {
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 1;
  margin-bottom: 1.5rem;
}
.cta-content p {
  max-width: 50ch;
  margin: 0 auto 2rem;
  color: rgba(250, 250, 250, 0.85);
  font-size: 1.05rem;
}

/* ---------- CONTACT ---------- */
.contact { padding: 6rem 0; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}
.contact-info p { color: var(--gray); margin-bottom: 2rem; max-width: 45ch; }
.contact-details {
  border-top: 1px solid var(--gray-line);
  margin-bottom: 2rem;
}
.contact-details li {
  display: flex;
  align-items: baseline;
  gap: 1.5rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--gray-line);
  font-size: 0.95rem;
}
.contact-details .label {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gray);
  min-width: 80px;
}

.socials { display: flex; gap: 0.75rem; }
.socials a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--paper);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  transition: background 0.25s var(--ease), transform 0.25s var(--ease);
}
.socials a:hover { background: var(--amber); color: var(--ink); transform: translateY(-3px); }

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  background: var(--paper-warm);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
}
.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gray);
  font-weight: 600;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 0.85rem 1rem;
  border: 1px solid var(--gray-line);
  border-radius: var(--radius-md);
  background: var(--paper);
  color: var(--ink);
  letter-spacing: normal;
  text-transform: none;
  font-weight: 400;
  transition: border-color 0.25s var(--ease);
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(31, 77, 74, 0.12);
}
.contact-form textarea { resize: vertical; }

/* ---------- FOOTER ---------- */
.site-footer {
  background: var(--ink);
  color: var(--paper);
  padding: 4rem 0 6rem;
  margin-bottom: 72px; /* allow space for fixed audio player */
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
}
.footer-logo { height: 36px; width: auto; display: block; margin: 0 0 1.25rem; }
.footer-brand p { color: rgba(250, 250, 250, 0.6); margin: 0; max-width: 30ch; }
.site-footer h5 {
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1rem;
  font-family: var(--font-body);
  font-weight: 600;
}
.site-footer ul li { padding: 0.35rem 0; font-size: 0.95rem; color: rgba(250, 250, 250, 0.75); }
.site-footer ul a:hover { color: var(--amber); }
.footer-bottom {
  border-top: 1px solid rgba(250, 250, 250, 0.1);
  margin-top: 3rem;
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: rgba(250, 250, 250, 0.55);
  max-width: var(--container);
  padding-inline: var(--gutter);
  margin-inline: auto;
}

/* ---------- AUDIO PLAYER ---------- */
.audio-player {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 80;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 1.25rem;
  background: var(--ink);
  color: var(--paper);
  border-top: 1px solid rgba(250, 250, 250, 0.08);
  height: 72px;
}
.ap-brand {
  height: 36px;
  width: auto;
  margin-right: 4px;
  opacity: 0.85;
}
.ap-toggle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--amber);
  color: var(--ink);
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s var(--ease), transform 0.2s var(--ease);
}
.ap-toggle:hover { transform: scale(1.05); }
.ap-skip {
  color: rgba(250, 250, 250, 0.6);
  font-size: 1.1rem;
  padding: 8px;
  transition: color 0.2s var(--ease);
}
.ap-skip:hover { color: var(--paper); }

.ap-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 200px;
}
.ap-track { font-family: var(--font-display); font-size: 1.05rem; letter-spacing: 0.04em; }
.ap-artist { font-size: 0.78rem; color: rgba(250, 250, 250, 0.6); }

.ap-scrubber {
  flex: 1;
  height: 3px;
  background: rgba(250, 250, 250, 0.15);
  border-radius: var(--radius-pill);
  overflow: hidden;
  cursor: pointer;
}
.ap-progress {
  height: 100%;
  width: 32%;
  background: var(--teal);
  transition: width 0.3s linear;
}
.ap-time {
  font-size: 0.78rem;
  font-variant-numeric: tabular-nums;
  color: rgba(250, 250, 250, 0.7);
  min-width: 40px;
  text-align: right;
}
.ap-menu {
  color: rgba(250, 250, 250, 0.6);
  font-size: 1.2rem;
  padding: 8px;
}
.ap-menu:hover { color: var(--paper); }

/* ---------- REVEAL ANIMATIONS ---------- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 960px) {
  .primary-nav, .nav-cta { display: none; }
  .menu-toggle { display: inline-flex; }
  .menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle.open span:nth-child(2) { opacity: 0; }
  .menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .primary-nav.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--paper);
    padding: 2rem var(--gutter);
    gap: 1rem;
    border-bottom: 1px solid var(--gray-line);
  }

  .dot-nav { display: none; }

  .service-grid { grid-template-columns: 1fr; }
  .service-block.reversed .service-grid { direction: ltr; }
  .service-image { max-width: 380px; margin: 0 auto; }

  .work-grid { grid-template-columns: repeat(2, 1fr); }
  .work-tile.tile-wide { grid-column: span 2; }
  .work-tile.tile-tall { grid-row: span 1; }

  .process-steps { grid-template-columns: 1fr 1fr; }


  .pricing-grid { grid-template-columns: 1fr; }
  .price-card.featured { transform: none; }

  .faq-grid { grid-template-columns: 1fr; gap: 2rem; }

  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }

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

  .ap-meta { min-width: 0; }
  .ap-artist { display: none; }
  .ap-brand { display: none; }
  .brand-logo { height: 54px; }
  .site-header.scrolled .brand-logo { height: 40px; }
  .menu-toggle { margin-left: auto; }
  .hero-bg-icon { height: 60%; right: -22%; opacity: 0.7; }
}

@media (max-width: 560px) {
  .process-steps { grid-template-columns: 1fr; }
  .work-grid { grid-template-columns: 1fr; grid-auto-rows: 200px; }
  .work-tile.tile-wide { grid-column: span 1; }
  .footer-grid { grid-template-columns: 1fr; }
  .ap-scrubber { display: none; }
}
