:root {
  --bg: #050505;
  --bg-soft: #0d0d0c;
  --panel: #11110f;
  --panel-strong: #181713;
  --line: rgba(255, 255, 255, 0.12);
  --line-strong: rgba(201, 169, 110, 0.45);
  --text: #f7f3ea;
  --muted: rgba(247, 243, 234, 0.72);
  --dim: rgba(247, 243, 234, 0.52);
  --gold: #c9a96e;
  --gold-bright: #f0d8a5;
  --green: #5f7c70;
  --max: 1400px;
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Manrope, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

body.drawer-open {
  overflow: hidden;
}

img,
video {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

.hidden {
  display: none !important;
}

.site-shell {
  min-height: 100vh;
  overflow-x: hidden;
  background:
    linear-gradient(180deg, rgba(95, 124, 112, 0.12) 0, transparent 280px),
    var(--bg);
}

.eyebrow {
  margin: 0;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  line-height: 1.4;
  text-transform: uppercase;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.8rem 1.15rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
  white-space: nowrap;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button--primary {
  background: var(--gold);
  color: #090806;
  border-color: var(--gold);
}

.button--primary:hover,
.button--primary:focus-visible {
  background: var(--gold-bright);
  border-color: var(--gold-bright);
}

.button--ghost {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.22);
}

.button--ghost:hover,
.button--ghost:focus-visible {
  border-color: var(--gold);
  color: var(--gold-bright);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(5, 5, 5, 0.76);
  backdrop-filter: blur(18px);
}

.site-header__inner {
  width: min(var(--max), calc(100% - 32px));
  min-height: 101px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  min-width: 0;
}

.brand-lockup__mark {
  width: 133px;
  height: 87px;
  object-fit: contain;
}

.brand-lockup__text {
  color: var(--text);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  line-height: 1.15;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.site-nav-link,
.site-nav-cta {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
  transition: color 160ms ease, background 160ms ease, border-color 160ms ease;
}

.site-nav-link {
  padding: 0 0.9rem;
  color: rgba(247, 243, 234, 0.78);
}

.site-nav-link:hover,
.site-nav-link:focus-visible,
.site-nav-link.is-active {
  color: var(--gold-bright);
}

.site-nav-cta {
  padding: 0 1rem;
  background: var(--gold);
  color: #080806;
  border: 1px solid var(--gold);
}

.site-nav-cta:hover,
.site-nav-cta:focus-visible {
  background: var(--text);
  border-color: var(--text);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.menu-button span {
  width: 18px;
  height: 2px;
  background: var(--text);
}

.mobile-drawer {
  position: fixed;
  inset: 0 0 0 auto;
  z-index: 70;
  width: min(82vw, 360px);
  padding: 5rem 1.1rem 1.5rem;
  border-left: 1px solid var(--line);
  background: rgba(7, 7, 7, 0.98);
  transform: translateX(100%);
  transition: transform 220ms ease;
}

.mobile-drawer.is-open {
  transform: translateX(0);
}

.mobile-drawer__nav {
  display: grid;
  gap: 0.5rem;
}

.mobile-drawer__nav a {
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--text);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.drawer-overlay {
  position: fixed;
  inset: 0;
  z-index: 60;
  background: rgba(0, 0, 0, 0.62);
}

.home-hero {
  position: relative;
  min-height: clamp(560px, 82svh, 820px);
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
  border-bottom: 1px solid var(--line);
}

.home-hero__video,
.home-hero__shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.home-hero__video {
  z-index: -2;
  object-fit: cover;
  background: #000;
  filter: saturate(1.04) contrast(1.04);
  opacity: 0.82;
}

.home-hero__shade {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.9) 0%, rgba(5, 5, 5, 0.54) 38%, rgba(5, 5, 5, 0.18) 70%),
    linear-gradient(180deg, rgba(5, 5, 5, 0.25) 0%, rgba(5, 5, 5, 0.22) 48%, rgba(5, 5, 5, 0.9) 100%);
}

.hero-sound-toggle {
  position: absolute;
  right: max(16px, calc((100vw - var(--max)) / 2));
  bottom: 5.2rem;
  z-index: 4;
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(201, 169, 110, 0.55);
  border-radius: 999px;
  background: rgba(5, 5, 5, 0.68);
  color: var(--gold-bright);
  backdrop-filter: blur(14px);
  cursor: pointer;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.hero-sound-toggle:hover,
.hero-sound-toggle:focus-visible,
.hero-sound-toggle.is-sound-on {
  background: var(--gold);
  border-color: var(--gold);
  color: #080806;
  transform: translateY(-2px);
}

.hero-sound-toggle__icon {
  width: 0.72rem;
  height: 0.72rem;
  display: inline-block;
  background: currentColor;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}

.hero-sound-toggle.is-sound-on .hero-sound-toggle__icon {
  clip-path: polygon(0 0, 35% 0, 35% 100%, 0 100%, 0 0, 65% 0, 100% 0, 100% 100%, 65% 100%);
}

.home-hero__content {
  width: min(940px, calc(100% - 32px));
  margin: 0 auto;
  padding: 7rem 0 7.5rem;
}

.home-hero h1 {
  max-width: 850px;
  margin: 0.65rem 0 1rem;
  font-size: clamp(3.5rem, 10vw, 8.8rem);
  font-weight: 800;
  line-height: 0.88;
  letter-spacing: 0;
  text-transform: uppercase;
}

.home-hero__lede {
  max-width: 660px;
  margin: 0;
  color: rgba(247, 243, 234, 0.84);
  font-size: clamp(1rem, 2vw, 1.28rem);
  line-height: 1.65;
}

.home-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}

.home-hero__meta {
  position: absolute;
  inset: auto 0 0 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(5, 5, 5, 0.72);
  backdrop-filter: blur(14px);
}

.home-hero__meta span {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(247, 243, 234, 0.72);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
}

.home-hero__meta span:last-child {
  border-right: 0;
}

.bts-strip {
  display: grid;
  grid-template-columns: repeat(6, minmax(180px, 1fr));
  gap: 1px;
  background: var(--line);
  border-bottom: 1px solid var(--line);
}

.bts-strip img {
  width: 100%;
  height: clamp(120px, 15vw, 220px);
  object-fit: cover;
  filter: saturate(0.95) contrast(1.05);
}

.section {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(4rem, 8vw, 7.5rem) 0;
}

.section-kicker {
  max-width: 760px;
  margin-bottom: 2.4rem;
}

.section-kicker--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-kicker h2 {
  margin: 0.55rem 0 0;
  font-size: clamp(2.2rem, 5vw, 5.6rem);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: 0;
  text-transform: uppercase;
}

.section-kicker p:not(.eyebrow) {
  margin: 1.05rem auto 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

.about-section__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1.18fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.about-section__copy {
  color: var(--muted);
  font-size: clamp(1.05rem, 1.6vw, 1.32rem);
  line-height: 1.78;
}

.about-section__copy p {
  margin: 0 0 1.25rem;
}

.about-section__copy strong {
  color: var(--gold-bright);
  font-weight: 800;
}

.image-mosaic {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: clamp(86px, 9vw, 136px);
  gap: 0.7rem;
}

.image-mosaic img {
  width: 100%;
  height: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  object-fit: cover;
}

.image-mosaic img:nth-child(1) {
  grid-column: 1 / span 7;
  grid-row: 1 / span 2;
}

.image-mosaic img:nth-child(2) {
  grid-column: 8 / span 5;
  grid-row: 1 / span 3;
}

.image-mosaic img:nth-child(3) {
  grid-column: 1 / span 4;
  grid-row: 3 / span 2;
}

.image-mosaic img:nth-child(4) {
  grid-column: 5 / span 4;
  grid-row: 3 / span 2;
}

.image-mosaic img:nth-child(5) {
  grid-column: 9 / span 4;
  grid-row: 4 / span 1;
}

.team-section {
  border-top: 1px solid var(--line);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.team-card {
  display: grid;
  grid-template-columns: minmax(210px, 0.78fr) minmax(0, 1fr);
  min-height: 470px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.025));
}

.team-card__media {
  position: relative;
  min-height: 470px;
  overflow: hidden;
  background: #050505;
}

.team-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  opacity: 0;
  transition: opacity 700ms ease;
}

.team-slide.is-active {
  opacity: 1;
}

.team-dots {
  position: absolute;
  left: 50%;
  bottom: 1rem;
  display: flex;
  gap: 0.45rem;
  transform: translateX(-50%);
  z-index: 2;
}

.team-dot {
  width: 0.5rem;
  height: 0.5rem;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.52);
  padding: 0;
  transition: width 180ms ease, background 180ms ease;
}

.team-dot.is-active {
  width: 1.5rem;
  background: var(--gold);
}

.team-card__copy {
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: clamp(1.4rem, 3vw, 2.2rem);
}

.team-card__copy h3 {
  margin: 0.35rem 0 1rem;
  font-size: clamp(2rem, 4vw, 3.8rem);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: 0;
  text-transform: uppercase;
}

.team-card__copy p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.together-strip {
  display: grid;
  grid-template-columns: repeat(6, minmax(120px, 1fr));
  gap: 0.75rem;
  margin-top: 1rem;
}

.together-strip img {
  width: 100%;
  height: clamp(120px, 14vw, 190px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  object-fit: cover;
}

.services-section {
  border-top: 1px solid var(--line);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.service-card {
  min-height: 420px;
  position: relative;
  display: flex;
  align-items: end;
  overflow: hidden;
  padding: 1.25rem;
  isolation: isolate;
  background: #090909;
}

.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.04) 0%, rgba(0, 0, 0, 0.78) 100%);
}

.service-card img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms ease;
}

.service-card:hover img {
  transform: scale(1.06);
}

.service-card h3 {
  margin: 0 0 0.55rem;
  font-size: 1.3rem;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.service-card p {
  margin: 0;
  color: rgba(247, 243, 234, 0.76);
  font-size: 0.92rem;
  line-height: 1.55;
}

.work-showcase {
  border-top: 1px solid var(--line);
  background: #030303;
  padding: clamp(4rem, 8vw, 7rem) 0 0;
}

.work-showcase > .section-kicker,
.work-showcase__footer {
  width: min(var(--max), calc(100% - 32px));
  margin-left: auto;
  margin-right: auto;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  background: var(--line);
  gap: 1px;
}

.project-card {
  position: relative;
  min-height: clamp(360px, 34vw, 560px);
  display: flex;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
  background: #080808;
}

.project-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0.18) 38%, rgba(0, 0, 0, 0.9) 100%);
}

.project-card__image {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.95) contrast(1.08);
  transition: transform 520ms ease, filter 520ms ease;
}

.project-card:hover .project-card__image,
.project-card:focus-visible .project-card__image {
  transform: scale(1.07);
  filter: saturate(1.05) contrast(1.15);
}

.project-card__tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.5rem 0.65rem;
  border: 1px solid rgba(201, 169, 110, 0.5);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.5);
  color: var(--gold-bright);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.project-card__content {
  width: 100%;
  padding: 1.25rem;
}

.project-card__content h3 {
  margin: 0 0 0.65rem;
  font-size: clamp(1.5rem, 2.5vw, 2.5rem);
  font-weight: 800;
  line-height: 0.98;
  text-transform: uppercase;
}

.project-card__content span {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.work-showcase__footer {
  display: flex;
  justify-content: center;
  padding: 2.5rem 0 4rem;
}

.contact-band {
  max-width: 980px;
  text-align: center;
}

.contact-band h2,
.project-next h2 {
  margin: 0.45rem 0 1rem;
  font-size: clamp(2.2rem, 5vw, 5.8rem);
  font-weight: 800;
  line-height: 0.96;
  text-transform: uppercase;
}

.contact-band p:not(.eyebrow),
.project-next p:not(.eyebrow) {
  max-width: 650px;
  margin: 0 auto 1.6rem;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.7;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #030303;
}

.site-footer__inner {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 3.5rem 0 2rem;
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(160px, 0.55fr) minmax(260px, 0.9fr);
  gap: 2.5rem;
}

.site-footer__brand h2 {
  margin: 0.45rem 0 0.8rem;
  font-size: clamp(2rem, 4vw, 4.2rem);
  font-weight: 800;
  line-height: 0.95;
  text-transform: uppercase;
}

.site-footer__brand p:not(.eyebrow),
.site-footer__contact p {
  color: var(--dim);
  line-height: 1.65;
}

.site-footer__links {
  display: grid;
  align-content: start;
  gap: 0.75rem;
}

.site-footer__links a,
.site-footer__contact a {
  color: var(--muted);
  font-weight: 800;
}

.site-footer__links a:hover,
.site-footer__contact a:hover {
  color: var(--gold-bright);
}

.site-footer__contact p {
  margin: 0 0 0.35rem;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-footer__contact > a {
  display: inline-block;
  margin-bottom: 1.2rem;
  overflow-wrap: anywhere;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 0.75rem;
}

.social-links a {
  padding: 0.55rem 0.7rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.78rem;
}

.site-footer__copyright {
  grid-column: 1 / -1;
  margin: 0;
  padding-top: 1.4rem;
  border-top: 1px solid var(--line);
  color: var(--dim);
  font-size: 0.88rem;
}

.works-page,
.contact-page,
.project-detail {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.works-hero,
.contact-hero {
  max-width: 940px;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.works-hero h1,
.contact-hero h1,
.project-detail__intro h1 {
  margin: 0.55rem 0 1rem;
  font-size: clamp(3rem, 7vw, 7.5rem);
  font-weight: 800;
  line-height: 0.92;
  text-transform: uppercase;
}

.works-hero p:not(.eyebrow),
.contact-hero p,
.project-detail__intro p:not(.eyebrow) {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.75;
}

.works-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.work-list-card {
  min-height: 460px;
  position: relative;
  display: flex;
  align-items: end;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  isolation: isolate;
}

.work-list-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0.84) 100%);
}

.work-list-card img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 520ms ease;
}

.work-list-card:hover img {
  transform: scale(1.06);
}

.work-list-card__copy {
  padding: 1.4rem;
}

.work-list-card__copy span,
.work-list-card__copy p {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.work-list-card__copy h2 {
  margin: 0.55rem 0 0.9rem;
  font-size: clamp(1.9rem, 4vw, 4rem);
  font-weight: 800;
  line-height: 0.95;
  text-transform: uppercase;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
}

.contact-panel,
.contact-form,
.project-stats,
.project-overview {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.025));
}

.contact-panel,
.contact-form {
  padding: clamp(1.25rem, 3vw, 2rem);
}

.contact-panel h2 {
  margin: 0 0 0.8rem;
  font-size: 2rem;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-email {
  display: inline-block;
  color: var(--gold-bright);
  font-weight: 800;
  overflow-wrap: anywhere;
}

.contact-phone {
  display: block;
  width: fit-content;
  margin-top: 0.55rem;
  color: var(--text);
  font-weight: 800;
}

.contact-phone:hover {
  color: var(--gold-bright);
}

.contact-facts {
  display: grid;
  gap: 0.75rem;
  margin-top: 2rem;
}

.contact-facts div,
.project-stats div {
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.2);
}

.contact-facts span,
.project-stats span,
.contact-form label span {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--dim);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-facts strong,
.project-stats strong {
  color: var(--text);
  line-height: 1.35;
}

.contact-form {
  display: grid;
  gap: 1rem;
}

.contact-form label {
  display: grid;
  gap: 0.35rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.24);
  color: var(--text);
  padding: 0.95rem 1rem;
  outline: none;
  transition: border-color 160ms ease, background 160ms ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--gold);
  background: rgba(0, 0, 0, 0.38);
}

.contact-form textarea {
  resize: vertical;
}

.contact-email-panel {
  align-content: center;
  min-height: 360px;
}

.contact-email-panel h2 {
  margin: 0.45rem 0 0.85rem;
  font-size: clamp(2.1rem, 4vw, 4rem);
  font-weight: 800;
  line-height: 0.98;
  text-transform: uppercase;
}

.contact-email-panel p:not(.eyebrow) {
  max-width: 620px;
  margin: 0 0 1.5rem;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.project-detail__hero {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: end;
}

.project-detail__intro,
.project-player {
  min-width: 0;
}

.project-detail__intro h1 {
  font-size: clamp(2.8rem, 5vw, 5.6rem);
  overflow-wrap: break-word;
}

.back-link {
  display: inline-flex;
  margin-bottom: 2rem;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.back-link:hover {
  color: var(--gold-bright);
}

.project-player {
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: #000;
  box-shadow: 0 24px 90px rgba(0, 0, 0, 0.42);
  color-scheme: dark;
}

.project-player video {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  background: #000;
  accent-color: var(--gold);
}

.project-detail__body {
  display: grid;
  grid-template-columns: minmax(260px, 0.55fr) minmax(0, 1fr);
  gap: 1rem;
  margin-top: 1rem;
}

.project-stats {
  display: grid;
  gap: 0.75rem;
  padding: 1rem;
}

.project-overview {
  padding: clamp(1.25rem, 3vw, 2rem);
}

.project-overview h2 {
  margin: 0.45rem 0 0.8rem;
  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: 800;
  text-transform: uppercase;
}

.project-overview p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.75;
}

.project-next {
  max-width: 860px;
  margin: clamp(4rem, 8vw, 7rem) auto 0;
  text-align: center;
}

@media (max-width: 1180px) {
  .team-grid,
  .services-grid,
  .work-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .team-card {
    grid-template-columns: 1fr;
  }

  .team-card__media {
    min-height: 560px;
  }
}

@media (max-width: 900px) {
  .site-nav {
    display: none;
  }

  .menu-button {
    display: inline-flex;
  }

  .about-section__grid,
  .contact-layout,
  .project-detail__hero,
  .project-detail__body,
  .site-footer__inner {
    grid-template-columns: 1fr;
  }

  .home-hero__meta {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-hero__meta span:nth-child(2) {
    border-right: 0;
  }

  .image-mosaic {
    grid-auto-rows: 100px;
  }

  .works-list {
    grid-template-columns: 1fr;
  }

  .site-footer__copyright {
    grid-column: auto;
  }
}

@media (max-width: 680px) {
  .site-header__inner {
    width: min(var(--max), calc(100% - 24px));
    min-height: 84px;
  }

  .brand-lockup__mark {
    width: 87px;
    height: 59px;
  }

  .brand-lockup__text {
    font-size: 0.68rem;
    letter-spacing: 0.14em;
  }

  .home-hero {
    min-height: 760px;
  }

  .home-hero__content {
    width: calc(100% - 24px);
    padding: 5rem 0 10rem;
  }

  .home-hero h1 {
    font-size: clamp(3.25rem, 18vw, 5.6rem);
  }

  .home-hero__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-sound-toggle {
    left: 12px;
    right: 12px;
    bottom: 5.6rem;
    justify-content: center;
  }

  .home-hero__meta span {
    min-height: 54px;
    font-size: 0.66rem;
  }

  .bts-strip,
  .together-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .section,
  .work-showcase > .section-kicker,
  .work-showcase__footer,
  .works-page,
  .contact-page,
  .project-detail,
  .site-footer__inner {
    width: calc(100% - 24px);
  }

  .team-grid,
  .services-grid,
  .work-grid {
    grid-template-columns: 1fr;
  }

  .team-card__media {
    min-height: 520px;
  }

  .service-card,
  .project-card,
  .work-list-card {
    min-height: 380px;
  }

  .project-card__tag {
    max-width: calc(100% - 2rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
