/* ==========================================================================
   ENTERTAINMENT AGENCY TEMPLATE — STRUCTURE
   The palette is NOT here. Every colour, font pairing and radius token lives
   in theme.css, which the build writes per site, so two agencies never look
   alike. This file is the layout only, and is identical on every site.

   1. Reset & base            7. Sections
   2. Layout primitives       8. Testimonials, FAQ
   3. Buttons, chips          9. Contact & form
   4. Header & navigation    10. Footer & utilities
   5. Hero                   11. Motion / reveal
   6. Cards                  12. Responsive
   13. Layout variants — one of three per site, set on <body>
   ========================================================================== */

/* ========================= 2. RESET & BASE =============================== */
*, *::before, *::after { box-sizing: border-box; }

* { margin: 0; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  font-family: var(--font);
  font-size: clamp(1rem, .97rem + .16vw, 1.075rem);
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

body.is-locked { overflow: hidden; }

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

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

button, input, select, textarea { font: inherit; color: inherit; }

h1, h2, h3 { line-height: 1.12; font-weight: 700; letter-spacing: -.02em; }

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

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: absolute;
  left: 50%;
  top: -100px;
  transform: translateX(-50%);
  z-index: 200;
  padding: .7rem 1.2rem;
  background: var(--gold);
  color: var(--on-accent);
  font-weight: 700;
  border-radius: 0 0 var(--r-md) var(--r-md);
  transition: top .2s var(--ease);
}
.skip-link:focus { top: 0; }

/* ====================== 3. LAYOUT PRIMITIVES ============================= */
.shell {
  width: 100%;
  max-width: var(--shell);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section {
  position: relative;
  padding-block: var(--section-y);
}

.section--alt { background: var(--bg-alt); }

.section--alt::before,
.section--alt::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line-strong), transparent);
}
.section--alt::before { top: 0; }
.section--alt::after  { bottom: 0; }

.section__head { max-width: 62ch; margin-bottom: clamp(2.25rem, 4vw, 3.5rem); }

.section__head--row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  max-width: none;
}
.section__head--row > div { max-width: 62ch; }

.section__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.95rem, 1.35rem + 2.6vw, 3.1rem);
  letter-spacing: -.015em;
  margin-bottom: .85rem;
}

.section__lede {
  color: var(--text-soft);
  font-size: clamp(1rem, .96rem + .25vw, 1.14rem);
}
.section__lede a { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  margin-bottom: 1rem;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--text-mute);
}
.eyebrow .dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--accent-grad);
  box-shadow: 0 0 0 4px var(--accent-soft);
}

/* ===================== 4. BUTTONS & SMALL PARTS ========================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  padding: .95rem 1.6rem;
  border: 1px solid transparent;
  border-radius: var(--r-pill);
  font-weight: 650;
  font-size: .97rem;
  letter-spacing: .005em;
  cursor: pointer;
  white-space: nowrap;
  transition: transform .22s var(--ease), box-shadow .22s var(--ease),
              background-color .22s var(--ease), border-color .22s var(--ease),
              color .22s var(--ease);
}
.btn:active { transform: translateY(1px); }

.btn--primary {
  background: var(--accent-grad);
  color: var(--on-accent);
  box-shadow: var(--glow);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 16px 42px rgba(255, 138, 61, .38); }

.btn--ghost {
  background: rgba(255, 255, 255, .04);
  border-color: var(--line-strong);
  color: var(--text);
  backdrop-filter: blur(6px);
}
.btn--ghost:hover {
  background: rgba(255, 255, 255, .09);
  border-color: rgba(255, 199, 90, .5);
  transform: translateY(-2px);
}

.btn--sm { padding: .68rem 1.15rem; font-size: .9rem; }
.btn--full { width: 100%; }

.chip {
  padding: .55rem 1.1rem;
  border-radius: var(--r-pill);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .03);
  color: var(--text-soft);
  font-size: .9rem;
  font-weight: 550;
  cursor: pointer;
  transition: all .2s var(--ease);
}
.chip:hover { border-color: var(--line-strong); color: var(--text); }
.chip.is-active {
  background: var(--accent-grad);
  color: var(--on-accent);
  border-color: transparent;
  font-weight: 700;
}

.tag {
  display: inline-block;
  padding: .28rem .7rem;
  border-radius: var(--r-pill);
  background: var(--violet-soft);
  border: 1px solid rgba(139, 108, 255, .3);
  color: var(--violet);
  font-size: .72rem;
  font-weight: 650;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.round-btn {
  display: grid;
  place-items: center;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, .04);
  color: var(--text);
  cursor: pointer;
  transition: all .2s var(--ease);
}
.round-btn:hover { background: rgba(255, 255, 255, .1); border-color: var(--gold); color: var(--gold); }

/* ==================== 5. HEADER & NAVIGATION ============================= */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(8, 8, 13, .55);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid transparent;
  transition: background-color .3s var(--ease), border-color .3s var(--ease);
}
.header.is-stuck {
  background: rgba(8, 8, 13, .88);
  border-bottom-color: var(--line);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 76px;
}

.brand { display: inline-flex; align-items: center; gap: .7rem; }
.brand__mark {
  display: grid;
  place-items: center;
  width: 38px; height: 38px;
  border-radius: 11px;
  background: rgba(255, 255, 255, .05);
  border: 1px solid var(--line-strong);
  flex: none;
}
.brand__mark svg { width: 22px; height: 22px; }
.brand__text { display: flex; flex-direction: column; line-height: 1.15; }
.brand__name {
  font-family: var(--font-display);
  font-size: 1.13rem;
  font-weight: 600;
  letter-spacing: .005em;
}
.brand__tag {
  font-size: .64rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--text-mute);
}

.nav { display: flex; align-items: center; gap: 2rem; }
.nav__list {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  list-style: none;
  padding: 0;
}
.nav__link {
  position: relative;
  font-size: .95rem;
  font-weight: 500;
  color: var(--text-soft);
  padding-block: .35rem;
  transition: color .2s var(--ease);
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 2px;
  border-radius: 2px;
  background: var(--accent-grad);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .28s var(--ease);
}
.nav__link:hover, .nav__link.is-current { color: var(--text); }
.nav__link:hover::after, .nav__link.is-current::after { transform: scaleX(1); }

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px; height: 44px;
  padding: 0 10px;
  border: 1px solid var(--line-strong);
  border-radius: 11px;
  background: rgba(255, 255, 255, .04);
  cursor: pointer;
}
.burger span {
  display: block;
  height: 2px;
  width: 100%;
  border-radius: 2px;
  background: var(--text);
  transition: transform .28s var(--ease), opacity .2s var(--ease);
}
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================ 6. HERO ==================================== */
.hero {
  position: relative;
  isolation: isolate;
  padding-top: clamp(3.5rem, 7vw, 6rem);
  padding-bottom: 0;
  overflow: hidden;
}

.hero__bg { position: absolute; inset: -10% -5% 0; z-index: -1; }

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: .55;
}
.orb--a { width: 44vw; height: 44vw; max-width: 620px; max-height: 620px; top: -12%;  left: -8%;  background: var(--orb-a); }
.orb--b { width: 38vw; height: 38vw; max-width: 520px; max-height: 520px; top: 8%;   right: -6%; background: var(--orb-b); }
.orb--c { width: 34vw; height: 34vw; max-width: 460px; max-height: 460px; bottom: -18%; left: 32%; background: var(--orb-c); }

.beam {
  position: absolute;
  top: -40%;
  width: 26vw;
  height: 150%;
  background: linear-gradient(180deg, rgba(255, 199, 90, .16), transparent 70%);
  filter: blur(28px);
  transform-origin: top center;
}
.beam--1 { left: 12%; transform: rotate(14deg);  animation: sway 14s ease-in-out infinite alternate; }
.beam--2 { right: 14%; transform: rotate(-12deg); animation: sway 17s ease-in-out infinite alternate-reverse; }

@keyframes sway {
  from { transform: rotate(12deg)  translateX(-2%); }
  to   { transform: rotate(-8deg)  translateX(4%); }
}

.grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 78px 78px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, #000 20%, transparent 78%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, #000 20%, transparent 78%);
  opacity: .5;
}

.hero__inner {
  padding-bottom: clamp(3rem, 6vw, 5rem);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.5rem, 1.3rem + 5.4vw, 5rem);
  letter-spacing: -.025em;
  max-width: 16ch;
  margin-bottom: 1.3rem;
}
.hero__title em {
  font-style: italic;
  background: var(--accent-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__lede {
  max-width: 60ch;
  color: var(--text-soft);
  font-size: clamp(1.03rem, .97rem + .38vw, 1.24rem);
  margin-bottom: 2.2rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .85rem;
  margin-bottom: clamp(2.75rem, 5vw, 4rem);
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  width: 100%;
  max-width: 900px;
  padding: 0;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.stat {
  padding: 1.35rem 1rem;
  background: rgba(18, 18, 28, .72);
  backdrop-filter: blur(8px);
}
.stat__value {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 1.2rem + 1.4vw, 2.25rem);
  font-weight: 600;
  margin: 0;
  background: var(--accent-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-variant-numeric: tabular-nums;
}
.stat__label {
  font-size: .74rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-mute);
  margin-bottom: .3rem;
}

/* Marquee */
.marquee {
  position: relative;
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: rgba(12, 12, 20, .6);
  padding-block: .9rem;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee__track {
  display: flex;
  align-items: center;
  gap: 2.4rem;
  width: max-content;
  animation: slide 42s linear infinite;
}
.marquee__track span {
  font-size: .82rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--text-mute);
  white-space: nowrap;
}
.marquee__track i { color: var(--gold); font-style: normal; font-size: .55rem; opacity: .8; }

@keyframes slide {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ========================== 7. CONTENT SECTIONS ========================== */

/* --- Services cards --- */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 1.15rem;
}

.card {
  position: relative;
  padding: 1.8rem 1.6rem;
  border-radius: var(--r-lg);
  background: linear-gradient(160deg, var(--surface) 0%, var(--surface-2) 100%);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: transform .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.card::before {
  content: "";
  position: absolute;
  inset: -1px -1px auto;
  height: 2px;
  background: var(--accent-grad);
  opacity: 0;
  transition: opacity .3s var(--ease);
}
.card:hover {
  transform: translateY(-5px);
  border-color: var(--line-strong);
  box-shadow: var(--shadow-md);
}
.card:hover::before { opacity: 1; }

.card__icon {
  display: grid;
  place-items: center;
  width: 48px; height: 48px;
  margin-bottom: 1.15rem;
  border-radius: 14px;
  background: var(--accent-soft);
  border: 1px solid rgba(255, 176, 74, .26);
  color: var(--gold);
}
.card__icon svg { width: 24px; height: 24px; }

.card__title { font-size: 1.2rem; margin-bottom: .55rem; }
.card__text { color: var(--text-soft); font-size: .97rem; margin-bottom: 1.05rem; }

.card__list { list-style: none; padding: 0; display: grid; gap: .45rem; }
.card__list li {
  position: relative;
  padding-left: 1.35rem;
  font-size: .9rem;
  color: var(--text-mute);
}
.card__list li::before {
  content: "";
  position: absolute;
  left: 0; top: .62em;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  opacity: .85;
}

/* --- Roster --- */
.filters {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
  margin-bottom: 2rem;
}

.roster {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.15rem;
}

.talent {
  display: flex;
  flex-direction: column;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  transition: transform .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.talent:hover {
  transform: translateY(-5px);
  border-color: var(--line-strong);
  box-shadow: var(--shadow-md);
}
.talent.is-hidden { display: none; }

.talent__art {
  position: relative;
  aspect-ratio: 16 / 9;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.talent__art::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, .16) 1px, transparent 1px);
  background-size: 16px 16px;
  opacity: .5;
}
.talent__glyph {
  position: relative;
  z-index: 1;
  font-family: var(--font-display);
  font-size: 3.1rem;
  font-weight: 600;
  color: rgba(255, 255, 255, .82);
  text-shadow: 0 4px 24px rgba(0, 0, 0, .45);
}
.talent__art--1 { background: var(--art-1); }
.talent__art--2 { background: var(--art-2); }
.talent__art--3 { background: var(--art-3); }
.talent__art--4 { background: var(--art-4); }
.talent__art--5 { background: var(--art-5); }
.talent__art--6 { background: var(--art-6); }

.talent__body { padding: 1.4rem 1.35rem 1.6rem; display: flex; flex-direction: column; gap: .6rem; }
.talent__name { font-size: 1.15rem; }
.talent__text { color: var(--text-soft); font-size: .94rem; }
.talent__meta { font-size: .88rem; color: var(--text-mute); margin-top: auto; padding-top: .35rem; }
.talent__meta strong { color: var(--gold); font-weight: 650; }

.roster__note {
  margin-top: 1.8rem;
  font-size: .88rem;
  color: var(--text-mute);
  max-width: 70ch;
}

/* --- Selected work --- */
.work { display: grid; gap: 1.4rem; }

.work__item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
  align-items: stretch;
  border-radius: var(--r-xl);
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
}
.work__item--flip .work__art { order: 2; }

.work__art { min-height: 260px; position: relative; }
.work__art::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(115deg, rgba(0, 0, 0, .22) 0 2px, transparent 2px 14px),
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, .22), transparent 55%);
}
.work__art--1 { background: var(--work-art-1); }
.work__art--2 { background: var(--work-art-2); }
.work__art--3 { background: var(--work-art-3); }

.work__body { padding: clamp(1.6rem, 3vw, 2.6rem); display: flex; flex-direction: column; gap: .8rem; }
.work__kicker {
  font-size: .76rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}
.work__title { font-family: var(--font-display); font-weight: 600; font-size: clamp(1.35rem, 1.1rem + 1vw, 1.85rem); }
.work__text { color: var(--text-soft); font-size: .98rem; }

.work__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1.6rem;
  list-style: none;
  padding: 1rem 0 0;
  margin-top: auto;
  border-top: 1px solid var(--line);
}
.work__stats li { display: flex; flex-direction: column; }
.work__stats strong {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.1;
}
.work__stats span {
  font-size: .74rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-mute);
}

/* --- Process --- */
.steps {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.15rem;
  counter-reset: step;
}
.step {
  position: relative;
  padding: 1.9rem 1.5rem 1.7rem;
  border-radius: var(--r-lg);
  background: var(--surface);
  border: 1px solid var(--line);
  transition: border-color .3s var(--ease), transform .3s var(--ease);
}
.step:hover { border-color: rgba(255, 199, 90, .4); transform: translateY(-4px); }
.step__num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.1rem;
  font-weight: 600;
  line-height: 1;
  margin-bottom: .8rem;
  background: var(--accent-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.step__title { font-size: 1.1rem; margin-bottom: .5rem; }
.step__text { color: var(--text-soft); font-size: .94rem; }

/* --- About --- */
.about {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, .85fr);
  gap: clamp(1.75rem, 4vw, 3.5rem);
  align-items: start;
}
.about__text p { color: var(--text-soft); margin-bottom: 1.1rem; }
.about__text .section__title { margin-bottom: 1.1rem; }

.about__points {
  list-style: none;
  padding: 0;
  display: grid;
  gap: .7rem;
  margin-top: 1.6rem;
}
.about__points li {
  display: flex;
  gap: .7rem;
  align-items: flex-start;
  font-size: .96rem;
  color: var(--text);
}
.about__points span {
  flex: none;
  display: grid;
  place-items: center;
  width: 22px; height: 22px;
  margin-top: .15rem;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--gold);
  font-size: .7rem;
  font-weight: 800;
}

.about__panel {
  position: sticky;
  top: 100px;
  padding: 1.8rem 1.6rem;
  border-radius: var(--r-xl);
  background: linear-gradient(165deg, var(--surface-2), var(--surface));
  border: 1px solid var(--line-strong);
  box-shadow: var(--shadow-md);
}
.about__panel-title {
  font-size: .78rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--text-mute);
  margin-bottom: 1.1rem;
}
.figures { display: grid; gap: 0; margin-bottom: 1.5rem; }
.figures > div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding: .7rem 0;
  border-bottom: 1px solid var(--line);
}
.figures > div:last-child { border-bottom: 0; }
.figures dt { color: var(--text-mute); font-size: .9rem; }
.figures dd { margin: 0; font-weight: 650; text-align: right; }

/* ==================== 8. TESTIMONIALS & FAQ ============================== */
.quotes { position: relative; }
.quotes__viewport { overflow: hidden; border-radius: var(--r-xl); }

.quotes__track {
  display: flex;
  list-style: none;
  padding: 0;
  transition: transform .55s var(--ease);
  will-change: transform;
}

.quote {
  flex: 0 0 100%;
  padding: clamp(1.8rem, 4vw, 3.2rem);
  background: linear-gradient(160deg, var(--surface-2), var(--surface));
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
}
.quote__stars { color: var(--gold); letter-spacing: .22em; font-size: 1.05rem; margin-bottom: 1rem; }
.quote__text {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 1rem + 1vw, 1.65rem);
  line-height: 1.45;
  font-weight: 500;
  margin: 0 0 1.4rem;
  color: var(--text);
}
.quote__who { display: flex; flex-direction: column; gap: .15rem; }
.quote__who strong { font-size: 1rem; }
.quote__who span { color: var(--text-mute); font-size: .88rem; }

.quotes__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.6rem;
}
.quotes__dots { display: flex; gap: .5rem; }
.quotes__dots button {
  width: 9px; height: 9px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: var(--line-strong);
  cursor: pointer;
  transition: all .25s var(--ease);
}
.quotes__dots button.is-active { width: 26px; border-radius: var(--r-pill); background: var(--accent-grad); }

/* --- FAQ --- */
.faq {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.2fr);
  gap: clamp(1.75rem, 4vw, 3.5rem);
  align-items: start;
}
.faq__head { margin-bottom: 0; position: sticky; top: 100px; }

.accordion { display: grid; gap: .7rem; }

.acc {
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: var(--surface);
  overflow: hidden;
  transition: border-color .25s var(--ease), background-color .25s var(--ease);
}
.acc[open] { border-color: rgba(255, 199, 90, .35); background: var(--surface-2); }

.acc__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.05rem 1.25rem;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  list-style: none;
}
.acc__q::-webkit-details-marker { display: none; }
.acc__q::after {
  content: "";
  flex: none;
  width: 12px; height: 12px;
  border-right: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  transform: rotate(45deg) translate(-2px, -2px);
  transition: transform .3s var(--ease);
}
.acc[open] .acc__q::after { transform: rotate(-135deg) translate(-2px, -2px); }
.acc__q:hover { color: var(--gold); }

.acc__a { padding: 0 1.25rem 1.2rem; color: var(--text-soft); font-size: .96rem; }

/* ====================== 9. CONTACT & FORM ================================ */
.section--contact {
  position: relative;
  background:
    radial-gradient(ellipse 70% 90% at 12% 0%, rgba(255, 138, 61, .16), transparent 60%),
    radial-gradient(ellipse 60% 80% at 90% 100%, rgba(139, 108, 255, .18), transparent 62%),
    var(--bg-alt);
  border-top: 1px solid var(--line);
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.1fr);
  gap: clamp(1.75rem, 4vw, 3.5rem);
  align-items: start;
}

.contact__list { list-style: none; padding: 0; margin-top: 2rem; display: grid; gap: 1.1rem; }
.contact__list li { display: flex; gap: .9rem; align-items: center; }
.contact__ico {
  flex: none;
  display: grid;
  place-items: center;
  width: 42px; height: 42px;
  border-radius: 12px;
  background: rgba(255, 255, 255, .05);
  border: 1px solid var(--line-strong);
  color: var(--gold);
}
.contact__ico svg { width: 20px; height: 20px; }
.contact__list strong { display: block; font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; color: var(--text-mute); font-weight: 600; }
.contact__list a { color: var(--text); font-weight: 550; border-bottom: 1px solid transparent; transition: all .2s var(--ease); }
.contact__list a:hover { color: var(--gold); border-bottom-color: var(--gold); }
.contact__plain { color: var(--text); font-weight: 550; }

.form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  padding: clamp(1.4rem, 3vw, 2.2rem);
  border-radius: var(--r-xl);
  background: rgba(18, 18, 28, .78);
  border: 1px solid var(--line-strong);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(10px);
}
.field { display: flex; flex-direction: column; gap: .4rem; }
.field--wide { grid-column: 1 / -1; }

.field label { font-size: .82rem; font-weight: 600; letter-spacing: .05em; color: var(--text-soft); }
.field label span { color: var(--gold); }

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: .8rem .95rem;
  border-radius: var(--r-sm);
  border: 1px solid var(--line-strong);
  background: rgba(8, 8, 13, .6);
  color: var(--text);
  font-size: .96rem;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.field textarea { resize: vertical; min-height: 118px; }
.field input::placeholder,
.field textarea::placeholder { color: var(--text-mute); }

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(255, 199, 90, .18);
}
.field input[aria-invalid="true"],
.field textarea[aria-invalid="true"] { border-color: var(--danger); }

.field select { appearance: none; cursor: pointer;
  background-image: linear-gradient(45deg, transparent 50%, var(--text-mute) 50%),
                    linear-gradient(135deg, var(--text-mute) 50%, transparent 50%);
  background-position: calc(100% - 20px) 55%, calc(100% - 14px) 55%;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 2.4rem;
}
.field select option { background: var(--surface-2); color: var(--text); }

.field__err { min-height: 0; font-size: .8rem; color: var(--danger); }

.check { display: flex; gap: .65rem; align-items: flex-start; font-size: .9rem; color: var(--text-soft); cursor: pointer; }
.check input {
  flex: none;
  width: 18px; height: 18px;
  margin-top: .18rem;
  accent-color: var(--gold);
  cursor: pointer;
}

.form__foot { display: grid; gap: .7rem; }
.form__note { font-size: .8rem; color: var(--text-mute); text-align: center; }

.form__ok {
  grid-column: 1 / -1;
  padding: .9rem 1.1rem;
  border-radius: var(--r-sm);
  background: rgba(88, 214, 141, .12);
  border: 1px solid rgba(88, 214, 141, .4);
  color: var(--ok);
  font-size: .92rem;
}

/* ==================== 10. FOOTER & UTILITIES ============================= */
.footer { background: var(--bg); border-top: 1px solid var(--line); padding-top: clamp(3rem, 6vw, 4.5rem); }

.footer__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.6fr);
  gap: clamp(2rem, 5vw, 4rem);
  padding-bottom: 2.5rem;
}
.footer__blurb { margin-top: 1rem; color: var(--text-mute); font-size: .94rem; max-width: 40ch; }

.footer__cols {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}
.footer__cols h3 {
  font-size: .76rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--text-mute);
  margin-bottom: .9rem;
}
.footer__cols ul { list-style: none; padding: 0; display: grid; gap: .55rem; }
.footer__cols li { font-size: .93rem; color: var(--text-soft); word-break: break-word; }
.footer__cols a { transition: color .2s var(--ease); }
.footer__cols a:hover { color: var(--gold); }

.footer__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  padding-block: 1.4rem;
  border-top: 1px solid var(--line);
  font-size: .85rem;
  color: var(--text-mute);
}
.footer__legal { display: flex; gap: 1.3rem; list-style: none; padding: 0; }
.footer__legal a:hover { color: var(--gold); }

.to-top {
  position: fixed;
  right: clamp(1rem, 3vw, 2rem);
  bottom: clamp(1rem, 3vw, 2rem);
  z-index: 90;
  display: grid;
  place-items: center;
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  background: rgba(18, 18, 28, .9);
  backdrop-filter: blur(8px);
  color: var(--text);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: all .3s var(--ease);
}
.to-top.is-visible { opacity: 1; visibility: visible; transform: none; }
.to-top:hover { border-color: var(--gold); color: var(--gold); }

/* ====================== 11. MOTION / REVEAL ============================== */
/* Hidden only once JavaScript has confirmed it is running. Without the guard a
   blocked or broken script leaves the whole page below the hero invisible —
   and a search engine crawler that does not run scripts sees the same blank. */
.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.js .reveal.is-in { opacity: 1; transform: none; }

/* Stagger children inside grids */
.cards .reveal:nth-child(2),  .roster .reveal:nth-child(2),
.steps .reveal:nth-child(2)  { transition-delay: .07s; }
.cards .reveal:nth-child(3),  .roster .reveal:nth-child(3),
.steps .reveal:nth-child(3)  { transition-delay: .14s; }
.cards .reveal:nth-child(4),  .roster .reveal:nth-child(4),
.steps .reveal:nth-child(4)  { transition-delay: .21s; }
.cards .reveal:nth-child(5),  .roster .reveal:nth-child(5) { transition-delay: .28s; }
.cards .reveal:nth-child(6),  .roster .reveal:nth-child(6) { transition-delay: .35s; }

/* ========================= 12. RESPONSIVE ================================ */
@media (max-width: 1024px) {
  .work__item { grid-template-columns: 1fr; }
  .work__item--flip .work__art { order: 0; }
  .work__art { min-height: 200px; aspect-ratio: 16 / 7; }
  .about, .faq, .contact { grid-template-columns: 1fr; }
  .about__panel, .faq__head { position: static; }
  .footer__inner { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  html { scroll-padding-top: 80px; }

  .burger { display: flex; }

  .nav {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(360px, 88vw);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding: 6rem 1.6rem 2rem;
    background: rgba(10, 10, 17, .97);
    backdrop-filter: blur(18px);
    border-left: 1px solid var(--line-strong);
    box-shadow: var(--shadow-lg);
    transform: translateX(100%);
    visibility: hidden;
    transition: transform .35s var(--ease), visibility .35s var(--ease);
    overflow-y: auto;
    overscroll-behavior: contain;
  }
  .nav.is-open { transform: none; visibility: visible; }

  .nav__list { flex-direction: column; align-items: stretch; gap: 0; }
  .nav__list li { border-bottom: 1px solid var(--line); }
  .nav__link { display: block; padding: 1rem .25rem; font-size: 1.08rem; }
  .nav__link::after { display: none; }
  .nav__cta { margin-top: 1.6rem; width: 100%; padding-block: .9rem; font-size: 1rem; }

  .section__head--row { flex-direction: column; align-items: flex-start; gap: 1.25rem; }
  .hero__stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 620px) {
  :root { --section-y: clamp(3.4rem, 11vw, 5rem); }

  .header__inner { min-height: 66px; }
  .brand__mark { width: 34px; height: 34px; }
  .brand__name { font-size: 1.02rem; }

  .hero__title { max-width: 100%; }
  .hero__actions { flex-direction: column; align-items: stretch; width: 100%; }
  .hero__actions .btn { width: 100%; }

  .stat { padding: 1.05rem .85rem; }

  .form { grid-template-columns: 1fr; }
  .footer__cols { grid-template-columns: 1fr 1fr; }
  .footer__bar { justify-content: center; text-align: center; }
  .work__stats { gap: 1.1rem; justify-content: space-between; width: 100%; }
  .quotes__controls { gap: .75rem; }
}

@media (max-width: 380px) {
  .footer__cols { grid-template-columns: 1fr; }
  .hero__stats { grid-template-columns: 1fr; }
}

/* Larger tap targets on touch devices */
@media (hover: none) {
  .card:hover, .talent:hover, .step:hover { transform: none; }
  .nav__link { padding-block: .9rem; }
}

/* ===================== REDUCED MOTION ==================================== */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  .js .reveal { opacity: 1; transform: none; }
  .marquee__track { animation: none; }
}

/* =========================== PRINT ======================================= */
@media print {
  .header, .nav, .burger, .to-top, .marquee, .hero__bg, .quotes__controls, .form { display: none !important; }
  body { background: #fff; color: #000; }
  .section { padding-block: 1rem; }
}

/* ==================== 13. LAYOUT VARIANTS ================================
   One of these three sits on <body>, chosen by the build from the domain
   name. They move the hero, change the corner language and re-cut the card
   grid, so two agency sites on the same palette still do not read as one
   site with a different logo. Everything below is a variation on what is
   already defined above — nothing here introduces a new component.
   ========================================================================= */

/* ---- Spotlight: centred, soft, the most "showbiz" of the three ---------- */
.layout--spotlight .hero__inner { text-align: center; margin-inline: auto; }
.layout--spotlight .hero__actions,
.layout--spotlight .hero__stats { justify-content: center; }
.layout--spotlight .section__head { margin-inline: auto; text-align: center; }
.layout--spotlight .section__head--row { text-align: left; margin-inline: 0; }
.layout--spotlight .card { border-radius: var(--r-xl); }
.layout--spotlight .card__icon { margin-inline: auto; }
.layout--spotlight .card__title,
.layout--spotlight .card__text { text-align: center; }
.layout--spotlight .card__list { text-align: left; }

/* ---- Editorial: left rule, serif headings, near-square corners ---------- */
.layout--editorial .hero__inner { text-align: left; align-items: flex-start; margin-inline: 0; }
.layout--editorial .hero__actions,
.layout--editorial .hero__stats { justify-content: flex-start; }
.layout--editorial .hero__lede { margin-inline: 0; }

.layout--editorial .section__head {
  border-left: 3px solid var(--gold);
  padding-left: clamp(1rem, 2vw, 1.6rem);
}
.layout--editorial .section__title,
.layout--editorial .hero__title { font-family: var(--font-display); letter-spacing: -.015em; }
.layout--editorial .eyebrow { letter-spacing: .22em; }
.layout--editorial .card,
.layout--editorial .work__item,
.layout--editorial .step { border-radius: var(--r-sm); }
.layout--editorial .btn { border-radius: var(--r-sm); }
.layout--editorial .cards { grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); }

/* ---- Marquee: heavy uppercase labels, sharp frames, denser grid --------- */
.layout--marquee .hero__inner { text-align: left; align-items: flex-start; margin-inline: 0; }
.layout--marquee .hero__actions,
.layout--marquee .hero__stats { justify-content: flex-start; }
.layout--marquee .hero__lede { margin-inline: 0; max-width: 46ch; }
.layout--marquee .hero__title { letter-spacing: -.03em; }

.layout--marquee .eyebrow {
  border: 1px solid var(--line-strong);
  padding: .35rem .75rem;
  border-radius: 0;
}
.layout--marquee .section__title { text-transform: uppercase; letter-spacing: .01em; }
.layout--marquee .card,
.layout--marquee .work__item,
.layout--marquee .step,
.layout--marquee .btn { border-radius: 0; }
.layout--marquee .card { border-color: var(--line-strong); }
.layout--marquee .card__icon { border-radius: 0; }
.layout--marquee .cards { gap: 1px; background: var(--line); padding: 1px; }
.layout--marquee .card { background: var(--surface); }

@media (max-width: 720px) {
  .layout--marquee .cards { gap: 1rem; background: none; padding: 0; }
}

/* ======================= 14. LEGAL PAGES ================================
   Privacy, terms and cookies share one narrow reading column. They are the
   only pages here that are mostly prose, so they get the only measure rule
   in the stylesheet.
   ========================================================================= */
.legal { padding-block: clamp(6rem, 12vw, 9rem) var(--section-y); }

.legal__head { max-width: 62ch; margin-bottom: clamp(2rem, 4vw, 3rem); }

.legal__updated { color: var(--text-mute); font-size: .92rem; margin-top: .6rem; }

.prose { max-width: 68ch; display: grid; gap: 1.15rem; }

.prose h2 {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 1.05rem + .8vw, 1.6rem);
  margin-top: 1.6rem;
}

.prose h3 { font-size: 1.05rem; margin-top: 1rem; }

.prose p,
.prose li { color: var(--text-soft); }

.prose ul { display: grid; gap: .5rem; padding-left: 1.15rem; }

.prose a { color: var(--gold); }

.legal__back {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  color: var(--text-mute);
  font-size: .92rem;
  text-decoration: none;
  margin-bottom: 1.5rem;
}

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