:root {
  --ink: #101516;
  --ink-2: #171e20;
  --ink-3: #222c2e;
  --paper: #f7f9f8;
  --paper-2: #e9eeee;
  --muted: #b7c2c2;
  --muted-dark: #536061;
  --line: rgba(16, 21, 22, 0.14);
  --line-light: rgba(255, 255, 255, 0.18);
  --red: #e3324c;
  --teal: #20c6b9;
  --gold: #e2c34f;
  --blue: #4268ff;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.26);
  --radius: 8px;
  --header-height: 82px;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  margin: 0;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  letter-spacing: 0;
  text-rendering: geometricPrecision;
}

body.nav-open {
  overflow: hidden;
}

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

img {
  height: auto;
}

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

button,
input,
select,
textarea {
  font: inherit;
  letter-spacing: 0;
}

button {
  cursor: pointer;
}

::selection {
  color: var(--white);
  background: var(--red);
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 16px;
  left: 16px;
  transform: translateY(-140%);
  padding: 12px 16px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 30px;
  color: var(--white);
  background: linear-gradient(180deg, rgba(9, 13, 14, 0.76), rgba(9, 13, 14, 0));
  transition:
    background-color 200ms ease,
    border-color 200ms ease,
    height 200ms ease,
    padding 200ms ease;
}

.site-header.is-scrolled,
.site-header.nav-active {
  height: 70px;
  padding-block: 12px;
  background: rgba(16, 21, 22, 0.92);
  border-bottom: 1px solid var(--line-light);
  backdrop-filter: blur(18px);
}

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

.brand img {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
}

.brand span {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.brand strong {
  font-size: 1rem;
  font-weight: 780;
}

.brand small {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.76rem;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 13px;
  color: rgba(255, 255, 255, 0.86);
  border: 1px solid transparent;
  border-radius: 6px;
  font-size: 0.92rem;
  transition:
    color 160ms ease,
    background-color 160ms ease,
    border-color 160ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a[aria-current="page"] {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--line-light);
  outline: none;
}

.site-nav .nav-action {
  margin-left: 8px;
  color: var(--ink);
  background: var(--teal);
  border-color: transparent;
  font-weight: 720;
}

.site-nav .nav-action:hover,
.site-nav .nav-action:focus-visible {
  color: var(--ink);
  background: var(--white);
}

.icon-button {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  padding: 0;
  color: inherit;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--line-light);
  border-radius: 6px;
}

.icon-button svg,
.button svg,
.service-icon svg,
.contact-links svg {
  width: 18px;
  height: 18px;
  stroke-width: 1.9;
}

.nav-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 92svh;
  display: grid;
  align-items: end;
  overflow: clip;
  color: var(--white);
  background: var(--ink);
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 54%;
  filter: saturate(0.92) contrast(1.05);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(10, 12, 13, 0.88), rgba(10, 12, 13, 0.44) 46%, rgba(10, 12, 13, 0.74)),
    linear-gradient(180deg, rgba(10, 12, 13, 0.2), rgba(10, 12, 13, 0.74));
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-content {
  width: min(1120px, calc(100% - 56px));
  margin: 0 auto;
  padding: 170px 0 104px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--teal);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--red);
}

.hero h1 {
  max-width: 820px;
  margin: 0;
  font-size: 6rem;
  line-height: 0.92;
  font-weight: 820;
}

.hero-copy {
  max-width: 740px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.32rem;
  line-height: 1.45;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 760;
  transition:
    transform 160ms ease,
    background-color 160ms ease,
    border-color 160ms ease,
    color 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  outline: none;
}

.button-primary {
  color: var(--white);
  background: var(--red);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #ff4a63;
}

.button-secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.09);
  border-color: var(--line-light);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: rgba(255, 255, 255, 0.17);
}

.button-secondary.light {
  color: var(--ink);
  background: var(--white);
  border-color: rgba(255, 255, 255, 0.42);
}

.button-secondary.light:hover,
.button-secondary.light:focus-visible {
  background: var(--teal);
}

.subpage-hero {
  min-height: 72svh;
}

.subpage-hero h1 {
  max-width: 980px;
  font-size: 5rem;
}

.subpage-hero .hero-content {
  padding-bottom: 88px;
}

.subpage-hero .hero-media img {
  object-position: 50% 54%;
}

.section,
.service-map {
  position: relative;
}

.section {
  padding: 92px 0;
}

.section-inner {
  width: min(1120px, calc(100% - 56px));
  margin: 0 auto;
}

.service-map {
  padding: 42px 0;
  color: var(--white);
  background: var(--ink);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.service-map-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.65fr);
  gap: 42px;
  align-items: center;
}

.service-map h2,
.section-heading h2,
.copy-column h2,
.studio-copy h2,
.about-copy h2,
.media-grid h2,
.faq-grid h2,
.contact-copy h2,
.cta-panel h2,
.album-intro h2,
.album-strip h2,
.source-grid h2 {
  margin: 0;
  font-size: 3.05rem;
  line-height: 1;
  font-weight: 820;
}

.service-map h2 {
  color: var(--white);
}

.service-map p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.05rem;
  line-height: 1.65;
}

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

.gallery-heading {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(250px, 0.55fr);
  gap: 36px;
  align-items: end;
}

.gallery-heading p:not(.eyebrow) {
  margin: 0;
  color: var(--muted-dark);
  line-height: 1.65;
}

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

.service-card {
  min-height: 450px;
  display: flex;
  flex-direction: column;
  padding: 26px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 44px rgba(16, 21, 22, 0.08);
}

.service-card.accent-red {
  border-top: 5px solid var(--red);
}

.service-card.accent-teal {
  border-top: 5px solid var(--teal);
}

.service-card.accent-gold {
  border-top: 5px solid var(--gold);
}

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

.accent-red .service-icon {
  background: var(--red);
}

.accent-teal .service-icon {
  color: var(--ink);
  background: var(--teal);
}

.accent-gold .service-icon {
  color: var(--ink);
  background: var(--gold);
}

.service-card h3 {
  margin: 0;
  font-size: 1.5rem;
  line-height: 1.12;
}

.service-card p {
  margin: 18px 0 0;
  color: var(--muted-dark);
  line-height: 1.62;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: auto 0 0;
  padding: 30px 0 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 24px;
  color: var(--ink-2);
  line-height: 1.4;
}

.check-list li::before {
  content: "";
  position: absolute;
  top: 0.65em;
  left: 0;
  width: 10px;
  height: 2px;
  background: currentColor;
}

.work-types {
  background: var(--paper-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1fr);
  gap: 54px;
  align-items: start;
}

.copy-column p:not(.eyebrow),
.studio-copy p,
.about-copy p,
.media-grid p,
.contact-copy p,
.process-card p {
  color: var(--muted-dark);
  font-size: 1.05rem;
  line-height: 1.72;
}

.format-list {
  display: grid;
  border-top: 1px solid var(--line);
}

.format-row {
  display: grid;
  grid-template-columns: 54px minmax(160px, 0.45fr) minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.format-row span {
  color: var(--red);
  font-weight: 820;
}

.format-row strong {
  font-size: 1.05rem;
}

.format-row p {
  margin: 0;
  color: var(--muted-dark);
  line-height: 1.5;
}

.studio-band {
  color: var(--white);
  background: var(--ink-2);
}

.studio-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(340px, 0.78fr);
  gap: 54px;
  align-items: center;
}

.studio-copy p {
  color: rgba(255, 255, 255, 0.73);
}

.spec-list {
  display: grid;
  gap: 14px;
  margin: 34px 0 0;
}

.spec-list div {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 18px;
  padding: 17px 0;
  border-top: 1px solid var(--line-light);
}

.spec-list dt {
  color: var(--teal);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.spec-list dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.45;
}

.location-detail {
  display: grid;
  gap: 10px;
}

.location-detail a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  color: var(--teal);
  text-decoration: none;
  font-weight: 760;
}

.location-detail a:hover,
.location-detail a:focus-visible {
  color: var(--white);
}

.location-detail svg {
  width: 17px;
  height: 17px;
}

.feature-image,
.about-image {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--ink);
  box-shadow: var(--shadow);
}

.feature-image {
  aspect-ratio: 4 / 5;
}

.feature-image img,
.about-image img,
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 230px;
  gap: 12px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  padding: 0;
  color: var(--white);
  background: var(--ink);
  border: 0;
  border-radius: var(--radius);
}

.gallery-item.wide {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item img {
  transition:
    transform 520ms ease,
    opacity 520ms ease;
}

.gallery-item:hover img,
.gallery-item:focus-visible img {
  transform: scale(1.04);
  opacity: 0.9;
}

.gallery-item:focus-visible {
  outline: 3px solid var(--teal);
  outline-offset: 3px;
}

.about-section {
  background: var(--white);
  border-top: 1px solid var(--line);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1fr);
  gap: 58px;
  align-items: center;
}

.about-image {
  aspect-ratio: 5 / 4;
  box-shadow: 0 20px 58px rgba(16, 21, 22, 0.16);
}

.proof-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}

.proof-list span {
  padding: 10px 12px;
  color: var(--ink);
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 720;
}

.media-section {
  color: var(--white);
  background: var(--ink);
}

.media-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1fr);
  gap: 48px;
  align-items: center;
}

.media-grid p {
  color: rgba(255, 255, 255, 0.74);
}

.youtube-links {
  display: grid;
  margin-top: 28px;
  border-top: 1px solid var(--line-light);
}

.youtube-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 54px;
  color: var(--white);
  text-decoration: none;
  border-bottom: 1px solid var(--line-light);
  font-weight: 740;
}

.youtube-links a:hover,
.youtube-links a:focus-visible {
  color: var(--teal);
}

.youtube-links svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.process-section {
  color: var(--white);
  background: var(--ink-2);
}

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

.process-card {
  min-height: 280px;
  display: grid;
  align-content: start;
  gap: 18px;
  padding: 26px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
}

.process-card span {
  color: var(--teal);
  font-weight: 820;
}

.process-card h3 {
  margin: 0;
  font-size: 1.45rem;
}

.process-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.cta-section {
  background: var(--paper);
}

.cta-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 34px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 44px rgba(16, 21, 22, 0.08);
}

.video-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: var(--ink-3);
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.albums-hero .hero-media img {
  object-position: 50% 50%;
}

.album-intro {
  padding: 42px 0;
  color: var(--ink);
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.album-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.62fr);
  gap: 42px;
  align-items: center;
}

.album-intro p {
  margin: 0;
  color: var(--muted-dark);
  font-size: 1.05rem;
  line-height: 1.65;
}

.album-section {
  background: var(--paper);
}

.album-grid {
  display: grid;
  gap: 18px;
}

.album-card {
  display: grid;
  grid-template-columns: minmax(260px, 360px) minmax(0, 1fr);
  min-height: 360px;
  overflow: hidden;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 44px rgba(16, 21, 22, 0.08);
}

.album-card.featured {
  color: var(--white);
  background: var(--ink-2);
  border-color: rgba(255, 255, 255, 0.1);
}

.album-cover {
  position: relative;
  display: block;
  width: 100%;
  min-height: 0;
  align-self: start;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--ink);
}

.album-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 520ms ease,
    opacity 520ms ease;
}

.album-cover:hover img,
.album-cover:focus-visible img {
  transform: scale(1.035);
  opacity: 0.92;
}

.album-cover:focus-visible {
  outline: 3px solid var(--teal);
  outline-offset: -3px;
}

.album-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 32px;
}

.album-label {
  margin: 0;
  color: var(--red);
  font-size: 0.76rem;
  font-weight: 820;
  text-transform: uppercase;
}

.featured .album-label {
  color: var(--teal);
}

.album-copy h3 {
  max-width: 740px;
  margin: 0;
  font-size: 2.4rem;
  line-height: 1;
  font-weight: 820;
}

.album-copy p:not(.album-label) {
  max-width: 760px;
  margin: 0;
  color: var(--muted-dark);
  font-size: 1.03rem;
  line-height: 1.66;
}

.featured .album-copy p:not(.album-label) {
  color: rgba(255, 255, 255, 0.76);
}

.album-meta {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
}

.album-meta div {
  display: grid;
  gap: 5px;
  padding: 14px;
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: 6px;
}

.featured .album-meta div {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
}

.album-meta dt {
  color: var(--red);
  font-size: 0.72rem;
  font-weight: 820;
  text-transform: uppercase;
}

.featured .album-meta dt {
  color: var(--teal);
}

.album-meta dd {
  margin: 0;
  color: var(--ink);
  font-weight: 740;
}

.featured .album-meta dd {
  color: var(--white);
}

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

.album-tags span {
  padding: 8px 10px;
  color: var(--ink);
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: 6px;
  font-size: 0.84rem;
  font-weight: 740;
}

.featured .album-tags span {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.13);
}

.album-strip {
  color: var(--white);
  background: var(--ink);
}

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

.credit-tile {
  min-height: 250px;
  display: grid;
  align-content: start;
  gap: 16px;
  padding: 26px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
}

.credit-tile svg {
  width: 24px;
  height: 24px;
  color: var(--teal);
}

.credit-tile h3 {
  margin: 0;
  font-size: 1.35rem;
}

.credit-tile p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.62;
}

.album-sources {
  background: var(--paper-2);
  border-top: 1px solid var(--line);
}

.source-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.62fr) minmax(0, 1fr);
  gap: 48px;
  align-items: start;
}

.source-list {
  display: grid;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.album-source {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 64px;
  padding: 0 20px;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  font-weight: 760;
}

.album-source:last-child {
  border-bottom: 0;
}

.album-source:hover,
.album-source:focus-visible {
  color: var(--red);
  outline: none;
}

.album-source svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.album-card:not(.featured) .button-secondary.light {
  color: var(--white);
  background: var(--ink);
  border-color: transparent;
}

.album-card:not(.featured) .button-secondary.light:hover,
.album-card:not(.featured) .button-secondary.light:focus-visible {
  color: var(--ink);
  background: var(--teal);
}

.faq-section {
  background: var(--paper-2);
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.62fr) minmax(0, 1fr);
  gap: 48px;
  align-items: start;
}

.faq-list {
  display: grid;
  gap: 10px;
}

details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

summary {
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px;
  color: var(--ink);
  font-weight: 760;
  list-style: none;
  cursor: pointer;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  color: var(--red);
  font-size: 1.35rem;
  font-weight: 700;
}

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

details p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--muted-dark);
  line-height: 1.6;
}

.contact-section {
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(16, 21, 22, 0.86), rgba(16, 21, 22, 0.96)),
    url("assets/cello-session.webp") center / cover;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1fr);
  gap: 48px;
  align-items: start;
}

.contact-copy p {
  color: rgba(255, 255, 255, 0.74);
}

.contact-links {
  display: grid;
  gap: 12px;
  margin-top: 30px;
}

.contact-links a {
  display: inline-flex;
  align-items: flex-start;
  gap: 12px;
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.45;
}

.contact-links a:hover,
.contact-links a:focus-visible {
  color: var(--teal);
  outline: none;
}

.contact-links svg {
  flex: 0 0 18px;
  margin-top: 2px;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 24px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

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

label {
  display: grid;
  gap: 8px;
}

label span {
  color: var(--ink-2);
  font-size: 0.86rem;
  font-weight: 760;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid rgba(16, 21, 22, 0.18);
  border-radius: 6px;
  outline: none;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(32, 198, 185, 0.2);
}

.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-submit {
  justify-self: start;
  border: 0;
}

.form-note {
  min-height: 1.3em;
  margin: 0;
  color: var(--muted-dark);
  line-height: 1.45;
}

.site-footer {
  color: rgba(255, 255, 255, 0.76);
  background: #0b0f10;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) auto auto;
  gap: 36px;
  align-items: center;
  padding: 42px 0;
}

.footer-grid > * {
  min-width: 0;
}

.footer-grid p {
  margin: 14px 0 0;
}

.footer-links,
.social-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-links a {
  padding: 10px 8px;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--white);
  outline: none;
}

.social-links .icon-button {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.88rem;
}

.lightbox {
  position: fixed;
  z-index: 200;
  inset: 0;
  display: none;
  place-items: center;
  padding: 28px;
  color: var(--white);
  background: rgba(5, 8, 9, 0.92);
}

.lightbox.is-open {
  display: grid;
}

.lightbox figure {
  width: min(1000px, 100%);
  margin: 0;
}

.lightbox img {
  width: 100%;
  max-height: 78vh;
  object-fit: contain;
  background: var(--ink);
  border-radius: var(--radius);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  color: var(--white);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 620ms ease,
    transform 620ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  :root {
    --header-height: 72px;
  }

  .site-header {
    height: var(--header-height);
    padding: 14px 22px;
  }

  .nav-toggle {
    display: inline-grid;
    color: var(--white);
  }

  .site-nav {
    position: fixed;
    top: var(--header-height);
    right: 0;
    left: 0;
    display: grid;
    gap: 0;
    padding: 12px 22px 22px;
    background: rgba(16, 21, 22, 0.98);
    border-bottom: 1px solid var(--line-light);
    transform: translateY(-130%);
    transition: transform 220ms ease;
  }

  .site-nav.is-open {
    transform: translateY(0);
  }

  .site-nav a {
    min-height: 50px;
    border-radius: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .site-nav .nav-action {
    justify-content: center;
    margin: 14px 0 0;
    border-radius: 6px;
    border-bottom: 0;
  }

  .hero h1 {
    font-size: 4.5rem;
  }

  .hero-copy {
    font-size: 1.16rem;
  }

  .service-map-grid,
  .split-layout,
  .studio-grid,
  .about-grid,
  .media-grid,
  .faq-grid,
  .contact-grid,
  .gallery-heading,
  .process-grid,
  .album-intro-grid,
  .album-card,
  .credit-grid,
  .source-grid {
    grid-template-columns: 1fr;
  }

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

  .service-card {
    min-height: auto;
  }

  .album-card {
    min-height: 0;
  }

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

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

  .cta-panel {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 680px) {
  .site-header {
    padding-inline: 16px;
  }

  .brand small {
    display: none;
  }

  .hero {
    min-height: 88svh;
  }

  .hero-media img {
    object-position: 63% 50%;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(10, 12, 13, 0.9), rgba(10, 12, 13, 0.68)),
      linear-gradient(180deg, rgba(10, 12, 13, 0.08), rgba(10, 12, 13, 0.78));
  }

  .hero-content,
  .section-inner {
    width: min(100% - 32px, 1120px);
  }

  .hero-content {
    padding: 118px 0 54px;
  }

  .hero h1 {
    font-size: 3.1rem;
    line-height: 0.98;
  }

  .hero-copy {
    margin-top: 22px;
    font-size: 1.02rem;
  }

  .subpage-hero h1 {
    font-size: 2.85rem;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .section {
    padding: 68px 0;
  }

  .service-map h2,
  .section-heading h2,
  .copy-column h2,
  .studio-copy h2,
  .about-copy h2,
    .media-grid h2,
    .faq-grid h2,
    .contact-copy h2,
    .cta-panel h2,
    .album-intro h2,
    .album-strip h2,
    .source-grid h2 {
    font-size: 2.15rem;
    line-height: 1.04;
  }

  .service-card,
  .contact-form,
  .process-card,
  .cta-panel,
  .album-copy,
  .credit-tile {
    padding: 20px;
  }

  .format-row,
  .spec-list div,
  .field-pair,
  .album-meta {
    grid-template-columns: 1fr;
  }

  .album-copy h3 {
    font-size: 1.95rem;
  }

  .format-row {
    gap: 8px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 255px;
  }

  .gallery-item.wide {
    grid-column: auto;
    grid-row: auto;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@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;
  }
}
