:root {
  color-scheme: dark;
  --bg: #0a0b0d;
  --bg-soft: #101318;
  --surface: #151a20;
  --surface-strong: #1d232b;
  --line: #2a313a;
  --line-soft: rgba(232, 236, 241, 0.12);
  --text: #eceff2;
  --muted: #a4abb2;
  --faint: #6f7780;
  --accent: #ff6b1a;
  --cyan: #23c8bd;
  --paper: #f1eee6;
  --shadow: rgba(0, 0, 0, 0.45);
  --display: "Space Grotesk", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono: "JetBrains Mono", ui-monospace, "SFMono-Regular", Consolas, monospace;
  --header-h: 78px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  font-family: var(--display);
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    var(--bg);
  background-size: 48px 48px, 48px 48px, auto;
}

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

a {
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
}

button {
  letter-spacing: 0;
}

::selection {
  color: #0a0b0d;
  background: var(--accent);
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  transform: translateY(-140%);
  padding: 10px 14px;
  color: #0a0b0d;
  background: var(--accent);
  text-decoration: none;
  border-radius: 4px;
}

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

.page-shell {
  width: min(1180px, calc(100% - 32px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  min-height: var(--header-h);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 14px 28px;
  border-bottom: 1px solid var(--line);
  background: rgba(10, 11, 13, 0.88);
  backdrop-filter: blur(14px);
}

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

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

.brand strong,
.brand small {
  display: block;
  line-height: 1.1;
}

.brand strong {
  font-size: 1rem;
  text-transform: uppercase;
}

.brand small {
  margin-top: 4px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.68rem;
}

.site-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 4px;
}

.site-nav a,
.header-cta {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  font-family: var(--mono);
  font-size: 0.76rem;
  text-decoration: none;
  text-transform: uppercase;
  border: 1px solid transparent;
  border-radius: 4px;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--accent);
  border-color: var(--line);
}

.header-cta {
  color: #0a0b0d;
  font-weight: 700;
  background: var(--accent);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--bg-soft);
  color: var(--text);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: calc(86svh - var(--header-h));
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  isolation: isolate;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 80% 14%, rgba(255, 255, 255, 0.55), transparent 26%),
    radial-gradient(circle at 12% 82%, rgba(255, 107, 26, 0.1), transparent 22%),
    linear-gradient(90deg, rgba(10, 11, 13, 0.82), rgba(10, 11, 13, 0.58) 42%, rgba(10, 11, 13, 0.1) 100%),
    linear-gradient(180deg, #c7cecf 0%, #8d9698 48%, #666f72 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.16) 0 1px, transparent 1px 4px),
    repeating-linear-gradient(0deg, rgba(0, 0, 0, 0.08) 0 1px, transparent 1px 7px),
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: auto, auto, 52px 52px, 52px 52px;
  mix-blend-mode: overlay;
  opacity: 0.72;
  mask-image: linear-gradient(90deg, #000, rgba(0, 0, 0, 0.72));
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(0deg, rgba(10, 11, 13, 0.84), transparent 45%),
    linear-gradient(90deg, rgba(10, 11, 13, 0.58), transparent 62%);
  pointer-events: none;
}

.hero-ruler {
  position: absolute;
  z-index: 3;
  top: 0;
  left: 0;
  right: 0;
  height: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  background: repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.18) 0 1px, transparent 1px 36px);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 84px;
  padding-bottom: 42px;
}

.hero-logo-stage {
  position: absolute;
  z-index: 1;
  top: 10%;
  right: max(28px, 6vw);
  width: clamp(300px, 36vw, 560px);
  pointer-events: none;
  transform: translate3d(0, 0, 0);
  animation: logo-float 7s ease-in-out infinite;
}

.hero-logo-stage img {
  width: 100%;
  height: auto;
  opacity: 0.96;
  filter:
    drop-shadow(0 18px 34px rgba(0, 0, 0, 0.28))
    drop-shadow(0 2px 0 rgba(255, 255, 255, 0.18));
}

@keyframes logo-float {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(0, -10px, 0); }
}

.eyebrow,
.section-kicker,
.card-meta,
.sample-card span,
.audio-title span,
.process-list span,
.contact-links span,
.footer-meta,
.plate-label {
  margin: 0;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.74rem;
  text-transform: uppercase;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  color: var(--text);
}

.eyebrow span {
  width: 10px;
  height: 10px;
  background: var(--accent);
  box-shadow: 0 0 0 5px rgba(255, 107, 26, 0.14);
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: 4rem;
  line-height: 0.93;
  text-transform: uppercase;
}

.hero-statement {
  max-width: 680px;
  margin: 22px 0 0;
  color: var(--paper);
  font-size: 1.65rem;
  font-weight: 700;
  line-height: 1.15;
}

.hero-copy {
  max-width: 620px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 1.06rem;
}

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

.btn {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 20px;
  border: 1px solid var(--line);
  border-radius: 4px;
  font-family: var(--mono);
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.btn:hover,
.btn:focus-visible,
.sample-card button:hover,
.sample-card button:focus-visible {
  transform: translateY(-2px);
}

.btn-primary {
  color: #0a0b0d;
  background: var(--accent);
  border-color: var(--accent);
}

.btn-ghost {
  color: var(--text);
  background: rgba(10, 11, 13, 0.36);
}

.hero-readout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-bottom: 22px;
  padding: 0;
  list-style: none;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.12);
}

.hero-readout li {
  min-height: 48px;
  display: flex;
  align-items: center;
  padding: 12px 14px;
  color: var(--paper);
  font-family: var(--mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  background: rgba(10, 11, 13, 0.64);
}

.signal-strip {
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}

.marquee {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 26px;
  padding: 18px 0;
  color: var(--text);
  font-size: 1.4rem;
  font-weight: 800;
  text-transform: uppercase;
  animation: marquee 32s linear infinite;
}

.marquee b {
  width: 10px;
  height: 10px;
  background: var(--accent);
}

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

.section {
  position: relative;
  padding: 86px 0;
  border-bottom: 1px solid var(--line);
}

.section:nth-of-type(odd) {
  background: rgba(16, 19, 24, 0.78);
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr minmax(240px, 380px);
  gap: 42px;
  align-items: end;
  margin-bottom: 38px;
}

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

.section-kicker {
  color: var(--accent);
  margin-bottom: 12px;
}

.section h2 {
  margin: 0;
  font-size: 3rem;
  line-height: 1;
  text-transform: uppercase;
}

.section-heading p:last-child {
  margin: 0;
  color: var(--muted);
}

.services-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
  gap: 16px;
  align-items: stretch;
  margin-bottom: 18px;
}

.services-photo {
  min-height: 500px;
  margin: 0;
  overflow: hidden;
}

.services-photo img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  filter: saturate(0.88) contrast(1.06);
}

.services-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 46%, rgba(10, 11, 13, 0.6));
  pointer-events: none;
}

.services-photo figcaption {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 2;
  padding: 8px 10px;
  color: var(--paper);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 4px;
  background: rgba(10, 11, 13, 0.62);
  font-family: var(--mono);
  font-size: 0.68rem;
  text-transform: uppercase;
}

.services-copy {
  min-height: 500px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 44px;
  overflow: hidden;
}

.services-copy::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 36px 36px;
  opacity: 0.7;
  pointer-events: none;
}

.services-copy > * {
  position: relative;
  z-index: 1;
}

.services-copy h2 {
  max-width: 620px;
}

.services-copy p:last-child {
  max-width: 520px;
  margin: 22px 0 0;
  color: var(--muted);
}

.music-flags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 18px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: rgba(16, 19, 24, 0.72);
}

.music-flags a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  color: var(--text);
  border: 1px solid var(--line);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.025);
  font-family: var(--mono);
  font-size: 0.72rem;
  text-decoration: none;
  text-transform: uppercase;
  transition: border-color 180ms ease, color 180ms ease, background 180ms ease;
}

.music-flags a::before {
  content: "";
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  background: var(--accent);
}

.music-flags a:hover,
.music-flags a:focus-visible {
  color: var(--accent);
  border-color: var(--accent);
  background: rgba(255, 107, 26, 0.08);
}

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

.blue-card {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 4px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0)),
    var(--surface);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.service-card {
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
  overflow: hidden;
}

.service-card::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--accent);
  transition: transform 260ms ease;
}

.service-card:hover::after {
  transform: scaleX(1);
}

.service-card h3,
.sample-card h3,
.process-list h3 {
  margin: 18px 0 12px;
  font-size: 1.55rem;
  line-height: 1;
  text-transform: uppercase;
}

.service-card p,
.sample-card p,
.process-list p,
.about-copy p,
.contact-copy p {
  color: var(--muted);
}

.about-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 58px;
  align-items: start;
}

.portrait-plate {
  position: sticky;
  top: calc(var(--header-h) + 24px);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--surface);
  aspect-ratio: 4 / 5;
}

.portrait-plate img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.82) contrast(1.08);
}

.portrait-plate::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(10, 11, 13, 0.74), transparent 50%);
}

.plate-label {
  position: absolute;
  left: 20px;
  bottom: 20px;
  z-index: 2;
  color: var(--paper);
}

.screw {
  position: absolute;
  z-index: 3;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #c7cbd0 0%, #6c747d 42%, #151a20 100%);
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.55);
}

.screw-tl { top: 10px; left: 10px; }
.screw-tr { top: 10px; right: 10px; }
.screw-bl { bottom: 10px; left: 10px; }
.screw-br { bottom: 10px; right: 10px; }

.about-copy .lead {
  color: var(--text);
  font-size: 1.15rem;
  font-weight: 600;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 34px;
  padding: 0;
  list-style: none;
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
}

.stat-grid li {
  min-height: 142px;
  padding: 24px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.025);
}

.stat-grid li:nth-child(2n) {
  border-right: none;
}

.stat-grid li:nth-last-child(-n + 2) {
  border-bottom: none;
}

.stat-number {
  display: block;
  color: var(--accent);
  font-size: 2.7rem;
  line-height: 1;
}

.stat-grid span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.72rem;
  text-transform: uppercase;
}

.sample-card {
  overflow: hidden;
}

.sample-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  filter: saturate(0.82) contrast(1.08);
}

.sample-card > div {
  padding: 20px;
}

.sample-card h3 {
  margin-top: 10px;
}

.sample-card p {
  margin: 0;
}

.sample-card button {
  width: calc(100% - 40px);
  min-height: 42px;
  margin: 0 20px 20px;
  color: var(--accent);
  border: 1px solid var(--line);
  border-radius: 4px;
  background: transparent;
  cursor: pointer;
  font-family: var(--mono);
  font-size: 0.74rem;
  text-transform: uppercase;
  transition: transform 180ms ease, border-color 180ms ease, color 180ms ease;
}

.sample-card button:hover,
.sample-card button:focus-visible {
  border-color: var(--accent);
}

.audio-console {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  margin-top: 28px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--bg-soft);
}

.play-button {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  color: var(--accent);
  border: 1px solid var(--accent);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

.play-button.is-playing {
  color: #0a0b0d;
  background: var(--accent);
}

.audio-title {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 12px;
}

.audio-title strong {
  font-size: 1.05rem;
}

.waveform {
  width: 100%;
  height: 56px;
  color: var(--accent);
}

.progress-track {
  position: relative;
  width: 100%;
  height: 18px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.progress-track::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 8px;
  height: 2px;
  background: var(--line);
}

.progress-track span {
  position: absolute;
  left: 0;
  top: 8px;
  width: 0%;
  height: 2px;
  background: var(--accent);
}

.audio-time {
  display: grid;
  gap: 4px;
  justify-items: end;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.8rem;
}

.process-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 54px;
  align-items: start;
}

.process-list {
  display: grid;
  gap: 14px;
}

.process-list article {
  display: grid;
  grid-template-columns: 70px 0.7fr 1.3fr;
  gap: 22px;
  align-items: start;
  padding: 24px 0;
  border-top: 1px solid var(--line);
}

.process-list article:last-child {
  border-bottom: 1px solid var(--line);
}

.process-list span {
  color: var(--accent);
}

.process-list h3,
.process-list p {
  margin: 0;
}

.contact-grid {
  grid-template-columns: 0.95fr 1.05fr;
}

.contact-copy h2 {
  margin-bottom: 22px;
}

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

.contact-links a {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  padding: 15px 0;
  color: var(--text);
  text-decoration: none;
  border-bottom: 1px solid var(--line);
}

.contact-links a:hover {
  color: var(--accent);
}

.contact-form {
  padding: 28px;
}

.form-row {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
}

.form-row label {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.74rem;
  text-transform: uppercase;
}

.form-row input,
.form-row textarea {
  width: 100%;
  color: var(--text);
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  outline: none;
  background: transparent;
}

.form-row input {
  min-height: 44px;
}

.form-row textarea {
  min-height: 130px;
  padding-top: 10px;
  resize: vertical;
}

.form-row input:focus,
.form-row textarea:focus {
  border-color: var(--accent);
}

.consent {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin: 10px 0 22px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.72rem;
}

.consent input {
  margin-top: 5px;
  accent-color: var(--accent);
}

.contact-form .btn {
  width: 100%;
}

.form-status {
  min-height: 22px;
  margin: 14px 0 0;
  color: var(--cyan);
  font-family: var(--mono);
  font-size: 0.76rem;
}

.site-footer {
  padding: 46px 0 28px;
  background: var(--surface-strong);
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: flex-end;
}

.site-footer strong {
  display: block;
  font-size: 3.4rem;
  line-height: 0.92;
  text-transform: uppercase;
}

.site-footer strong span {
  color: var(--accent);
}

.site-footer p {
  margin: 12px 0 0;
  color: var(--muted);
}

.footer-meta {
  display: grid;
  gap: 6px;
  justify-items: end;
}

.footer-cookie-button {
  padding: 0;
  color: var(--muted);
  border: 0;
  background: transparent;
  font-family: var(--mono);
  font-size: 0.74rem;
  text-transform: uppercase;
  cursor: pointer;
}

.footer-cookie-button:hover,
.footer-cookie-button:focus-visible {
  color: var(--accent);
}

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 300;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: end;
  max-width: 1120px;
  margin-inline: auto;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(16, 19, 24, 0.96);
  box-shadow: 0 18px 70px rgba(0, 0, 0, 0.52);
  backdrop-filter: blur(14px);
}

.cookie-banner[hidden],
.cookie-modal[hidden] {
  display: none;
}

.cookie-kicker {
  margin: 0 0 8px;
  color: var(--accent);
  font-family: var(--mono);
  font-size: 0.72rem;
  text-transform: uppercase;
}

.cookie-banner h2,
.cookie-modal h2 {
  margin: 0;
  font-size: 1.45rem;
  line-height: 1.1;
  text-transform: uppercase;
}

.cookie-banner p:not(.cookie-kicker),
.cookie-modal p {
  max-width: 720px;
  margin: 10px 0 0;
  color: var(--muted);
}

.cookie-actions,
.cookie-modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.cookie-actions .btn,
.cookie-modal-actions .btn {
  min-height: 44px;
  padding: 12px 14px;
  white-space: nowrap;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 320;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(3, 4, 6, 0.72);
  backdrop-filter: blur(10px);
}

.cookie-modal-card {
  width: min(760px, 100%);
  max-height: min(760px, calc(100svh - 40px));
  overflow: auto;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    var(--surface);
  background-size: 34px 34px, 34px 34px, auto;
  box-shadow: 0 24px 90px rgba(0, 0, 0, 0.58);
}

.cookie-modal-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-start;
  margin-bottom: 14px;
}

.cookie-close {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  color: var(--text);
  border: 1px solid var(--line);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.035);
  cursor: pointer;
  font-size: 1.4rem;
  line-height: 1;
}

.cookie-category {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
  margin-top: 14px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: rgba(10, 11, 13, 0.34);
}

.cookie-category h3 {
  margin: 0;
  font-size: 1rem;
  text-transform: uppercase;
}

.cookie-category p {
  margin-top: 6px;
  font-size: 0.95rem;
}

.cookie-switch {
  position: relative;
  min-width: 156px;
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.68rem;
  text-transform: uppercase;
}

.cookie-switch input {
  appearance: none;
  width: 52px;
  height: 28px;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #0a0b0d;
  cursor: pointer;
}

.cookie-switch input::before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  margin: 3px;
  border-radius: 50%;
  background: var(--muted);
  transition: transform 180ms ease, background 180ms ease;
}

.cookie-switch input:checked {
  border-color: var(--accent);
  background: rgba(255, 107, 26, 0.24);
}

.cookie-switch input:checked::before {
  transform: translateX(24px);
  background: var(--accent);
}

.cookie-switch input:disabled {
  cursor: not-allowed;
  opacity: 0.75;
}

.cookie-modal-actions {
  margin-top: 18px;
}

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

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

@media (min-width: 760px) {
  .hero h1 {
    font-size: 6.4rem;
  }

  .hero-statement {
    font-size: 2.15rem;
  }
}

@media (min-width: 1180px) {
  .hero h1 {
    font-size: 8rem;
  }

  .section h2 {
    font-size: 4.2rem;
  }
}

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

  .menu-toggle {
    display: block;
    justify-self: end;
  }

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

  .site-header.is-open .site-nav {
    grid-column: 1 / -1;
    display: grid;
    justify-self: stretch;
    gap: 6px;
    padding-top: 12px;
  }

  .site-header.is-open .site-nav a {
    justify-content: flex-start;
    border-color: var(--line);
    background: var(--bg-soft);
  }

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

  .services-intro {
    grid-template-columns: 1fr;
  }

  .services-photo,
  .services-copy {
    min-height: 380px;
  }

  .section-heading,
  .about-grid,
  .process-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .portrait-plate {
    position: relative;
    top: auto;
    max-width: 520px;
  }

  .process-list article {
    grid-template-columns: 54px 1fr;
  }

  .process-list p {
    grid-column: 2;
  }
}

@media (max-width: 640px) {
  :root {
    --header-h: 68px;
  }

  body {
    background-size: 34px 34px, 34px 34px, auto;
  }

  .page-shell {
    width: min(100% - 24px, 1180px);
  }

  .site-header {
    padding: 12px;
  }

  .brand small {
    display: none;
  }

  .hero {
    min-height: calc(84svh - var(--header-h));
    background:
      radial-gradient(circle at 76% 18%, rgba(255, 255, 255, 0.44), transparent 24%),
      linear-gradient(90deg, rgba(10, 11, 13, 0.82), rgba(10, 11, 13, 0.48)),
      linear-gradient(180deg, #c7cecf 0%, #8d9698 48%, #666f72 100%);
  }

  .hero-logo-stage {
    top: 104px;
    right: -110px;
    width: 340px;
    opacity: 0.26;
  }

  .hero-content {
    padding-top: 64px;
    padding-bottom: 28px;
  }

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

  .hero-statement {
    font-size: 1.45rem;
  }

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

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

  .hero-readout,
  .service-grid,
  .sample-grid,
  .stat-grid {
    grid-template-columns: 1fr;
  }

  .hero-readout li {
    min-height: 40px;
  }

  .section {
    padding: 62px 0;
  }

  .section h2 {
    font-size: 2.35rem;
  }

  .service-card {
    min-height: 230px;
  }

  .services-photo,
  .services-copy {
    min-height: 330px;
  }

  .services-copy {
    padding: 26px;
  }

  .stat-grid li,
  .stat-grid li:nth-child(2n),
  .stat-grid li:nth-last-child(-n + 2) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .stat-grid li:last-child {
    border-bottom: 0;
  }

  .audio-console {
    grid-template-columns: 1fr;
  }

  .play-button {
    width: 64px;
    height: 64px;
  }

  .audio-time {
    display: flex;
    justify-content: space-between;
  }

  .process-list article {
    grid-template-columns: 1fr;
  }

  .process-list p {
    grid-column: auto;
  }

  .contact-links a {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .footer-grid {
    display: grid;
  }

  .footer-meta {
    justify-items: start;
  }

  .site-footer strong {
    font-size: 2.5rem;
  }

  .cookie-banner {
    left: 12px;
    right: 12px;
    bottom: 12px;
    grid-template-columns: 1fr;
    padding: 18px;
  }

  .cookie-actions,
  .cookie-actions .btn,
  .cookie-modal-actions,
  .cookie-modal-actions .btn {
    width: 100%;
  }

  .cookie-category {
    grid-template-columns: 1fr;
  }

  .cookie-switch {
    width: 100%;
    justify-content: space-between;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
