:root {
  color-scheme: light;
  --ink: #070707;
  --ink-soft: #262626;
  --paper: #f6f4ef;
  --white: #ffffff;
  --muted: #72706a;
  --line: rgba(7, 7, 7, 0.13);
  --accent: #d7b56d;
  --accent-deep: #9c6d28;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

body.has-lightbox {
  overflow: hidden;
}

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

.expandable-image {
  cursor: zoom-in;
  transition: filter 160ms ease, transform 160ms ease;
}

.expandable-image:hover,
.expandable-image:focus-visible {
  filter: brightness(1.04);
}

.expandable-image:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 4px;
}

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  width: 100%;
  min-height: 82px;
  padding: 14px clamp(18px, 4vw, 52px);
  color: var(--white);
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(7, 7, 7, 0.93);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 68px;
}

.brand img,
.site-footer img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.25));
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 3vw, 40px);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-nav a {
  opacity: 0.82;
  transition: opacity 160ms ease, color 160ms ease;
}

.site-nav a:hover {
  color: var(--accent);
  opacity: 1;
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border: 1px solid currentColor;
  border-radius: 6px;
  padding: 0 20px;
  font-weight: 800;
  letter-spacing: 0.02em;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease, border-color 160ms ease;
}

.header-cta {
  color: var(--white);
  font-size: 0.88rem;
}

.header-cta:hover,
.button:hover {
  transform: translateY(-2px);
}

.button:disabled {
  cursor: wait;
  opacity: 0.68;
  transform: none;
}

.nav-toggle {
  display: none;
}

.hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media {
  object-fit: cover;
  opacity: 0.66;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.64) 38%, rgba(0, 0, 0, 0.18) 78%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.58) 0%, rgba(0, 0, 0, 0.02) 42%, rgba(0, 0, 0, 0.75) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  align-self: center;
  width: min(760px, calc(100% - 36px));
  margin: 120px 0 120px clamp(18px, 7vw, 96px);
}

.eyebrow,
.section-kicker {
  margin: 0 0 18px;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 740px;
  margin-bottom: 24px;
  font-size: clamp(3rem, 7.4vw, 6.85rem);
  line-height: 0.93;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 4.2rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.15rem;
  line-height: 1.2;
}

.hero-copy {
  max-width: 640px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1rem, 1.6vw, 1.22rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button.primary {
  border-color: var(--accent);
  background: var(--accent);
  color: var(--ink);
}

.button.ghost {
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
}

.button.dark {
  width: 100%;
  border-color: var(--ink);
  background: var(--ink);
  color: var(--white);
}

.hero-panel {
  position: relative;
  z-index: 2;
  align-self: end;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(980px, calc(100% - 36px));
  margin: 0 auto 28px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.13);
  backdrop-filter: blur(18px);
}

.hero-panel div {
  min-height: 108px;
  padding: 20px;
  background: rgba(7, 7, 7, 0.52);
}

.hero-panel strong,
.process-list span {
  display: block;
  margin-bottom: 10px;
  color: var(--accent);
  font-size: 0.86rem;
}

.hero-panel span {
  display: block;
  max-width: 180px;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 700;
}

.band,
.services,
.process,
.about,
.worked-with,
.faq {
  padding: clamp(72px, 10vw, 128px) clamp(18px, 5vw, 72px);
}

.intro-grid,
.section-heading,
.work,
.contact,
.team-grid,
.logo-row,
.faq-grid,
.site-footer {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.68fr);
  gap: clamp(28px, 7vw, 90px);
  align-items: start;
}

.intro-grid p,
.work-copy p,
.contact-copy p {
  color: var(--muted);
  font-size: 1.08rem;
}

.brand-card {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  margin-top: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.72);
}

.brand-card img {
  width: 92px;
  border-radius: 6px;
  background: var(--white);
}

.brand-card span {
  color: var(--ink-soft);
  font-weight: 800;
  line-height: 1.25;
}

.section-heading {
  max-width: 900px;
  margin-bottom: 42px;
}

.section-copy {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.08rem;
}

.section-heading.compact {
  max-width: 760px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.service-card {
  min-height: 238px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 26px;
  background: var(--white);
  box-shadow: 0 12px 38px rgba(0, 0, 0, 0.06);
}

.service-icon {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 42px;
  border-radius: 6px;
  background: var(--ink);
  color: var(--white);
  font-weight: 900;
}

.worked-with {
  background: var(--white);
}

.logo-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.logo-tile {
  display: grid;
  place-items: center;
  min-height: 116px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
  background: var(--paper);
  color: var(--ink);
  font-size: clamp(1rem, 1.5vw, 1.28rem);
  font-weight: 900;
  letter-spacing: 0.04em;
  text-align: center;
  text-transform: uppercase;
}

.about {
  background: #ece9e2;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.team-card {
  display: grid;
  grid-template-columns: minmax(190px, 0.52fr) minmax(0, 1fr);
  gap: 26px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.08);
}

.team-photo-link {
  display: block;
  min-height: 390px;
  border-radius: 6px;
  overflow: hidden;
}

.team-photo-link img {
  width: 100%;
  height: 100%;
  min-height: 390px;
  object-fit: cover;
  object-position: center;
  transition: transform 180ms ease, filter 180ms ease;
}

.team-photo-link:hover img,
.team-photo-link:focus-visible img {
  filter: brightness(1.05);
  transform: scale(1.025);
}

.team-card h3 a:hover,
.team-card h3 a:focus-visible,
.text-link:hover,
.text-link:focus-visible {
  color: var(--accent-deep);
}

.team-card > div {
  display: grid;
  align-content: center;
  padding: 18px 10px 18px 0;
}

.team-card p {
  color: var(--muted);
}

.text-link {
  width: fit-content;
  margin-top: 4px;
  color: var(--ink);
  font-weight: 900;
  text-decoration: underline;
  text-decoration-color: var(--accent);
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.team-role {
  margin-bottom: 10px;
  color: var(--accent-deep) !important;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.service-card p,
.process-list p,
.site-footer p {
  color: var(--muted);
}

.band-dark {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(300px, 0.72fr);
  gap: clamp(36px, 8vw, 96px);
  align-items: center;
  width: auto;
  max-width: none;
  padding: clamp(76px, 10vw, 132px) clamp(18px, 7vw, 96px);
  background: var(--ink);
  color: var(--white);
}

.section-mark {
  position: absolute;
  right: clamp(18px, 6vw, 90px);
  bottom: -110px;
  width: min(420px, 55vw);
  opacity: 0.09;
  pointer-events: none;
}

.work-copy {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.work-copy p {
  color: rgba(255, 255, 255, 0.68);
}

.metrics {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
}

.metrics div {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.06);
}

.metrics strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.24rem;
}

.metrics span {
  color: rgba(255, 255, 255, 0.66);
}

.process-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  width: min(1180px, 100%);
  margin: 0 auto;
  padding: 0;
  list-style: none;
}

.process-list li {
  min-height: 210px;
  border-top: 2px solid var(--ink);
  padding: 22px 18px 0 0;
}

.faq {
  background: var(--white);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.faq-grid details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  padding: 0;
}

.faq-grid summary {
  cursor: pointer;
  padding: 20px 22px;
  color: var(--ink);
  font-weight: 900;
  list-style: none;
}

.faq-grid summary::-webkit-details-marker {
  display: none;
}

.faq-grid summary::after {
  content: "+";
  float: right;
  color: var(--accent-deep);
  font-size: 1.2rem;
}

.faq-grid details[open] summary::after {
  content: "-";
}

.faq-grid p {
  margin: 0;
  border-top: 1px solid var(--line);
  padding: 0 22px 20px;
  color: var(--muted);
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.7fr);
  gap: clamp(34px, 7vw, 96px);
  align-items: start;
}

.contact-note {
  display: grid;
  gap: 8px;
  max-width: 440px;
  margin-top: 34px;
  border-left: 3px solid var(--accent);
  padding-left: 18px;
}

.contact-note span {
  color: var(--muted);
}

.email-link {
  display: inline-flex;
  margin-top: 24px;
  color: var(--ink);
  font-weight: 900;
  text-decoration: underline;
  text-decoration-color: var(--accent);
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.phone-link {
  margin-left: 18px;
}

.contact-form {
  display: grid;
  gap: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(22px, 4vw, 34px);
  background: var(--white);
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--ink-soft);
  font-size: 0.88rem;
  font-weight: 800;
}

.hidden-field {
  display: none;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(7, 7, 7, 0.18);
  border-radius: 6px;
  background: #fbfaf7;
  padding: 13px 14px;
  color: var(--ink);
  outline: none;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--accent-deep);
  box-shadow: 0 0 0 3px rgba(215, 181, 109, 0.22);
}

.site-footer {
  display: grid;
  justify-items: center;
  gap: 16px;
  padding: 54px 18px 64px;
  text-align: center;
}

.site-footer img {
  width: 150px;
  padding: 18px;
  border-radius: 8px;
  background: var(--ink);
}

.site-footer p {
  max-width: 520px;
  margin-bottom: 0;
}

.site-footer a {
  color: var(--ink);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: var(--accent);
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.site-footer span {
  color: var(--muted);
  font-size: 0.9rem;
}

.image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: clamp(18px, 4vw, 54px);
  background: rgba(0, 0, 0, 0.88);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.image-lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.image-lightbox img {
  max-width: min(1120px, 94vw);
  max-height: 86svh;
  border-radius: 8px;
  object-fit: contain;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.58);
}

.lightbox-close {
  position: fixed;
  top: clamp(14px, 3vw, 28px);
  right: clamp(14px, 3vw, 28px);
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  cursor: pointer;
  font-size: 2rem;
  line-height: 1;
}

.lightbox-close:hover,
.lightbox-close:focus-visible {
  background: var(--white);
  color: var(--ink);
  outline: none;
}

.creator-page {
  background: var(--paper);
}

.creator-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(300px, 0.55fr);
  gap: clamp(28px, 7vw, 86px);
  align-items: center;
  min-height: 82svh;
  padding: 128px clamp(18px, 7vw, 96px) 72px;
  background: var(--ink);
  color: var(--white);
}

.creator-copy {
  max-width: 780px;
}

.creator-copy p:not(.eyebrow) {
  max-width: 660px;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(1.08rem, 1.8vw, 1.32rem);
}

.creator-hero img {
  width: 100%;
  max-height: 680px;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.34);
}

.back-link {
  display: inline-flex;
  margin-bottom: 26px;
  color: var(--white);
}

.creator-work {
  background: var(--paper);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.portfolio-grid.three-up {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.featured-video {
  width: min(1180px, 100%);
  margin: 0 auto 18px;
  border-radius: 8px;
  overflow: hidden;
  background: var(--ink);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.16);
  aspect-ratio: 16 / 9;
}

.featured-video iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.video-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.12);
}

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

.shorts-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  width: min(760px, 100%);
  margin: 0 auto 18px;
}

.short-card iframe {
  aspect-ratio: 9 / 16;
  background: var(--ink);
}

.video-card div,
.portfolio-cta {
  padding: 24px;
}

.video-card span {
  display: block;
  margin-bottom: 16px;
  color: var(--accent-deep);
  font-weight: 900;
}

.video-card p,
.portfolio-cta p {
  color: var(--muted);
}

.portfolio-cta {
  display: grid;
  justify-items: start;
  width: min(1180px, 100%);
  margin: 18px auto 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.portfolio-cta .button {
  margin-top: 8px;
  width: fit-content;
}

.portfolio-card {
  min-height: 230px;
  border: 1px dashed rgba(7, 7, 7, 0.24);
  border-radius: 8px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.68);
}

.portfolio-card span {
  display: block;
  margin-bottom: 42px;
  color: var(--accent-deep);
  font-weight: 900;
}

.portfolio-card p {
  color: var(--muted);
}

.media-card {
  display: grid;
  grid-template-rows: 280px 1fr;
  gap: 0;
  overflow: hidden;
  padding: 0;
  border-style: solid;
  background: var(--white);
}

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

.media-card div {
  padding: 22px;
}

.media-card span {
  margin-bottom: 18px;
}

.thanks-page {
  min-height: 100svh;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.5)),
    url("assets/hero-production.png") center / cover;
  color: var(--white);
}

.thanks-shell {
  display: grid;
  align-content: center;
  min-height: 100svh;
  width: min(760px, calc(100% - 36px));
  margin-left: clamp(18px, 7vw, 96px);
  padding: 80px 0;
}

.thanks-shell img {
  width: 118px;
  margin-bottom: 34px;
}

.thanks-shell h1 {
  margin-bottom: 20px;
}

.thanks-shell p:not(.eyebrow) {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.1rem;
}

.thanks-shell a:not(.button) {
  color: var(--accent);
  font-weight: 800;
}

.thanks-shell .button {
  width: fit-content;
  margin-top: 20px;
}

@media (max-width: 920px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .nav-toggle {
    display: inline-grid;
    justify-self: end;
    gap: 7px;
    width: 46px;
    height: 46px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.08);
    padding: 14px 12px;
  }

  .nav-toggle span {
    display: block;
    height: 2px;
    background: var(--white);
  }

  .site-nav,
  .header-cta {
    display: none;
  }

  .site-header.is-open .site-nav,
  .site-header.is-open .header-cta {
    display: flex;
    grid-column: 1 / -1;
  }

  .site-header.is-open .site-nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding: 24px 0 10px;
  }

  .site-header.is-open .header-cta {
    width: fit-content;
    margin-bottom: 8px;
  }

  .hero-content {
    margin-top: 132px;
    margin-left: 18px;
  }

  .hero-panel,
  .service-grid,
  .logo-row,
  .faq-grid,
  .portfolio-grid,
  .video-grid,
  .shorts-grid,
  .process-list,
  .intro-grid,
  .creator-hero,
  .band-dark,
  .contact,
  .team-grid {
    grid-template-columns: 1fr;
  }

  .service-card,
  .process-list li {
    min-height: auto;
  }

  .brand-card {
    max-width: 520px;
  }

  .team-card {
    grid-template-columns: minmax(190px, 0.48fr) minmax(0, 1fr);
    gap: 22px;
  }

  .creator-hero {
    min-height: auto;
  }

  .creator-hero img {
    max-height: 620px;
  }
}

@media (max-width: 620px) {
  .brand {
    width: 60px;
  }

  .hero {
    min-height: auto;
  }

  .hero-content {
    width: calc(100% - 32px);
    margin: 118px 16px 42px;
  }

  h1 {
    font-size: clamp(2.7rem, 15vw, 4.1rem);
  }

  .hero-panel {
    width: calc(100% - 32px);
    margin-bottom: 18px;
  }

  .hero-panel div {
    min-height: 86px;
  }

  .button,
  .header-cta {
    width: 100%;
  }

  .hero-actions {
    width: 100%;
  }

  .brand-card {
    grid-template-columns: 78px minmax(0, 1fr);
    padding: 14px;
  }

  .brand-card img {
    width: 78px;
  }

  .team-card {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 16px;
  }

  .team-photo-link,
  .team-photo-link img {
    min-height: 360px;
    max-height: 560px;
  }

  .team-card > div {
    padding: 0 4px 6px;
  }

  .band,
  .services,
  .process,
  .about,
  .worked-with,
  .faq,
  .creator-work,
  .band-dark {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .creator-hero {
    padding-top: 112px;
    padding-bottom: 54px;
  }

  .phone-link {
    margin-left: 0;
    margin-top: 14px;
  }
}
