:root {
  --bg: #020413;
  --panel: #070a1c;
  --panel-2: #0a0d24;
  --line: rgba(151, 165, 221, 0.16);
  --text: #f4f5ff;
  --muted: #9da4bd;
  --soft: #cdd2ed;
  --accent: #5966ff;
  --accent-2: #7d89ff;
  --shadow: rgba(0, 0, 0, 0.45);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 82% 12%, rgba(65, 79, 190, 0.18), transparent 28rem),
    linear-gradient(180deg, #030515 0%, var(--bg) 46%, #050615 100%);
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

.grain {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.42;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 48px 48px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  padding: 16px clamp(18px, 5vw, 72px);
  border-bottom: 1px solid var(--line);
  background: rgba(3, 5, 18, 0.86);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: #01020b;
}

.brand-mark img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.brand-word {
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.brand-sub {
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  white-space: nowrap;
}

.menu-button {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 0;
  background: transparent;
  color: var(--text);
  cursor: pointer;
}

.menu-button span {
  width: 18px;
  height: 1px;
  background: currentColor;
}

.site-menu {
  position: fixed;
  top: 72px;
  right: 16px;
  left: 16px;
  display: none;
  padding: 18px;
  border: 1px solid var(--line);
  background: rgba(7, 10, 28, 0.98);
  box-shadow: 0 24px 80px var(--shadow);
}

.site-menu.is-open {
  display: grid;
  gap: 12px;
}

.site-menu a {
  padding: 12px 2px;
  color: var(--soft);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

main,
.site-footer {
  width: min(100%, 1240px);
  margin: 0 auto;
}

.hero {
  position: relative;
  min-height: calc(100svh - 72px);
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3, 5, 18, 0.86), rgba(3, 5, 18, 0.35)),
    linear-gradient(180deg, rgba(3, 5, 18, 0.1), #050719 94%),
    url("assets/studio-photo.jpg") center / cover;
  opacity: 0.9;
}

.hero-content {
  position: relative;
  display: grid;
  align-content: end;
  min-height: calc(100svh - 72px);
  padding: clamp(72px, 12vh, 150px) clamp(22px, 6vw, 86px) 58px;
  overflow: hidden;
}

.kicker {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.34em;
  text-transform: uppercase;
}

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

h1,
h2 {
  max-width: 760px;
  margin-bottom: 22px;
  font-family: "Instrument Serif", Georgia, serif;
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: 0;
  overflow-wrap: break-word;
}

h1 {
  font-size: clamp(48px, 14vw, 108px);
}

h2 {
  font-size: clamp(38px, 9vw, 78px);
}

em {
  font-style: italic;
  color: #dce0ff;
}

.hero-content > p:not(.kicker),
.split-section > p,
.section-copy > p,
.cta-section p,
.site-footer > p {
  max-width: 650px;
  color: var(--soft);
  font-size: clamp(16px, 2vw, 19px);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
}

.button.primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 12px 40px rgba(89, 102, 255, 0.3);
}

.button.ghost {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: var(--soft);
}

.button span {
  margin-left: 10px;
}

.credits-strip,
.split-section,
.services-section,
.roster-section,
.room-section,
.cta-section,
.site-footer {
  padding: clamp(58px, 9vw, 120px) clamp(22px, 6vw, 86px);
  border-bottom: 1px solid var(--line);
}

.credits-strip {
  display: grid;
  gap: 18px;
  background: rgba(6, 9, 28, 0.5);
}

.credits-strip p,
.labels p,
.site-footer div p {
  margin: 0;
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

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

.credits-strip span {
  color: var(--soft);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.split-section {
  display: grid;
  gap: 28px;
}

.services-section {
  background: rgba(2, 4, 19, 0.74);
}

.service-list {
  display: grid;
  gap: 1px;
  margin-top: 34px;
  border: 1px solid var(--line);
  background: var(--line);
}

.service-list article {
  min-height: 184px;
  padding: 26px;
  background: rgba(5, 8, 25, 0.98);
}

.service-list span {
  display: block;
  margin-bottom: 28px;
  color: var(--accent-2);
  font-family: "Instrument Serif", Georgia, serif;
  font-size: 30px;
  font-style: italic;
}

h3 {
  margin-bottom: 14px;
  font-family: "Instrument Serif", Georgia, serif;
  font-size: 27px;
  font-weight: 400;
}

.service-list p,
.labels span,
.site-footer a,
.site-footer span,
.site-footer small {
  color: var(--muted);
  font-size: 13px;
}

.roster-section {
  display: grid;
  gap: 32px;
}

.text-link {
  display: inline-flex;
  margin-top: 4px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  color: var(--text);
  font-size: 13px;
  font-weight: 700;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tags span {
  padding: 8px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
  color: var(--soft);
  font-size: 12px;
}

.tags span:last-child {
  color: var(--accent-2);
}

.labels {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 26px;
  padding-top: 20px;
}

.labels p {
  flex-basis: 100%;
}

.labels span {
  font-family: "Instrument Serif", Georgia, serif;
  font-size: 20px;
  font-style: italic;
}

.room-section {
  display: grid;
  gap: 28px;
  background: linear-gradient(180deg, rgba(7, 10, 28, 0.3), rgba(11, 14, 35, 0.65));
}

.room-section img {
  width: 100%;
  border: 1px solid var(--line);
  object-fit: cover;
  aspect-ratio: 4 / 5;
}

.cta-section {
  display: grid;
  justify-items: center;
  text-align: center;
  background:
    radial-gradient(circle at 50% 35%, rgba(89, 102, 255, 0.15), transparent 28rem),
    rgba(3, 5, 18, 0.8);
}

.cta-section h2 {
  margin-right: auto;
  margin-left: auto;
}

.cta-section p {
  margin-bottom: 26px;
}

.site-footer {
  display: grid;
  gap: 28px;
  border-bottom: 0;
}

.footer-mark {
  width: 42px;
  height: 42px;
}

.footer-mark img {
  width: 26px;
  height: 26px;
}

.site-footer div {
  display: grid;
  gap: 8px;
}

@media (min-width: 760px) {
  .menu-button {
    display: none;
  }

  .site-menu {
    position: static;
    display: flex;
    align-items: center;
    gap: 28px;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .site-menu a {
    padding: 0;
    font-size: 12px;
  }

  .hero-content {
    max-width: 860px;
  }

  .credits-strip {
    grid-template-columns: 180px 1fr;
  }

  .credits-strip div {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .split-section,
  .roster-section,
  .room-section {
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    align-items: start;
  }

  .service-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .roster-section .labels {
    grid-column: 2;
  }

  .room-section img {
    max-height: 680px;
  }

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

  .site-footer small {
    grid-column: 2 / -1;
  }
}

@media (min-width: 1060px) {
  .service-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hero {
    min-height: 760px;
  }

  .hero-content {
    min-height: 760px;
  }
}

@media (max-width: 520px) {
  .brand {
    gap: 10px;
  }

  .brand-mark {
    width: 36px;
    height: 36px;
  }

  .brand-mark img {
    width: 22px;
    height: 22px;
  }

  .brand-sub {
    max-width: 96px;
    overflow: hidden;
    font-size: 9px;
    letter-spacing: 0.3em;
    text-overflow: clip;
    white-space: nowrap;
  }

  h1 {
    font-size: 50px;
  }

  h2 {
    font-size: 36px;
  }

  .button {
    width: 100%;
  }
}
