@font-face {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url('/assets/fonts/open-sans-300.woff2') format('woff2');
}

@font-face {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/assets/fonts/open-sans-400.woff2') format('woff2');
}

@font-face {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('/assets/fonts/open-sans-600.woff2') format('woff2');
}

@font-face {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('/assets/fonts/open-sans-700.woff2') format('woff2');
}

:root {
  --bg: #070707;
  --bg-soft: #111111;
  --surface: #f4f1e8;
  --surface-soft: #dfdad0;
  --surface-strong: #ffffff;
  --line: rgba(255, 255, 255, 0.14);
  --line-dark: rgba(17, 17, 17, 0.14);
  --text: #f6f4ef;
  --text-dim: rgba(246, 244, 239, 0.72);
  --text-dark: #111111;
  --muted-dark: rgba(17, 17, 17, 0.72);
  --accent: #ffffff;
  --radius: 28px;
  --radius-sm: 18px;
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.24);
  --font-body: "Open Sans", sans-serif;
  --font-display: "Barlow Condensed", "Open Sans", sans-serif;
  --shell: 1320px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  -webkit-text-size-adjust: 100%;
  text-rendering: optimizeLegibility;
  touch-action: manipulation;
}

body {
  min-height: 100vh;
  line-height: 1.6;
}

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

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

p,
ul,
ol,
blockquote {
  margin: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(7, 7, 7, 0.88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.header-inner,
.section-shell,
.footer-shell {
  width: min(calc(100% - 2rem), var(--shell));
  margin: 0 auto;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1rem 0;
}

.logo a {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 0.7rem;
  width: auto;
}

.logo-mark {
  width: 4.8rem;
  height: 4.8rem;
  flex: 0 0 4.8rem;
  overflow: hidden;
  border-radius: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
}

.logo-mark img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center center;
  transform-origin: center center;
}

.logo-mark--bw img {
  filter: grayscale(1) contrast(1.06);
}

.logo-mark--color img {
  filter: none;
}

.logo-lockup {
  font-family: var(--font-display);
  font-size: 1.42rem;
  font-weight: 800;
  line-height: 0.92;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--text);
  white-space: nowrap;
}

.main-nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0;
}

.main-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 2.7rem;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  border: 1px solid transparent;
  color: var(--text-dim);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}

.main-nav a:hover,
.main-nav a.is-active {
  color: var(--text);
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.04);
}

.menu-toggle {
  display: none;
  width: 3rem;
  height: 3rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  padding: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.28rem;
  cursor: pointer;
}

.menu-toggle span {
  width: 1rem;
  height: 2px;
  background: var(--accent);
  border-radius: 999px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-toggle.is-open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.site-main {
  overflow: hidden;
}

.home-sections {
  display: flex;
  flex-direction: column;
}

.home-sections > section {
  order: var(--section-order, 0);
}

.reveal {
  opacity: 0;
  transition:
    opacity 0.62s ease var(--reveal-delay, 0ms),
    transform 0.62s cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.reveal--fade-up {
  transform: translate3d(0, 22px, 0);
}

.reveal--fade-left {
  transform: translate3d(22px, 0, 0);
}

.reveal--fade-right {
  transform: translate3d(-22px, 0, 0);
}

.reveal--zoom-in {
  transform: scale(0.97);
}

.reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

.intro-band.reveal,
.home-section.reveal {
  opacity: 1;
  transform: none;
}

.media-tone--bw img {
  filter: grayscale(1) contrast(1.08);
}

.media-tone--color img {
  filter: none;
}

.section-shell {
  position: relative;
}

.section-eyebrow,
.card-eyebrow,
.hero-panel__eyebrow,
.request-card__eyebrow,
.footer-column__title {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.section-title,
.page h1,
.page-section h2,
.page-section h3,
.service-card ul h3 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-wrap: balance;
  word-break: keep-all;
  overflow-wrap: normal;
  hyphens: manual;
}

.section-title {
  font-size: clamp(2.8rem, 6vw, 5.6rem);
  max-width: 11ch;
}

.section-copy {
  max-width: 40rem;
  color: var(--muted-dark);
  font-size: 1.04rem;
  line-height: 1.72;
  text-wrap: pretty;
}

.intro-band .section-copy,
.home-section--dark .section-copy,
.home-section--contrast .section-copy {
  color: var(--text-dim);
}

.section-head {
  display: grid;
  gap: 1.1rem;
  margin-bottom: 2.75rem;
}

.section-head--compact {
  margin-bottom: 2rem;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.button-row--hero {
  margin-top: 2.5rem;
}

.button-row--stack {
  flex-direction: column;
  align-items: stretch;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.25rem;
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease, color 0.18s ease;
}

.button:hover {
  transform: translateY(-0.5px);
}

.button--solid {
  background: var(--surface-strong);
  color: #111;
  border: 1px solid var(--surface-strong);
}

.button--ghost {
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: transparent;
  color: var(--text);
}

.button--dark,
.button--ghost-dark {
  border: 1px solid rgba(17, 17, 17, 0.16);
  color: var(--text-dark);
}

.button--dark {
  background: #111;
  color: #f4f1e8;
  border-color: #111;
}

.button--ghost-dark {
  background: transparent;
}

.landing-hero {
  position: relative;
  min-height: calc(100vh - 85px);
  padding: clamp(3rem, 8vw, 5.4rem) 0 clamp(2rem, 6vw, 4rem);
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.08), transparent 42%),
    radial-gradient(circle at 85% 24%, rgba(255, 255, 255, 0.04), transparent 32%),
    radial-gradient(circle at 70% 78%, rgba(255, 255, 255, 0.06), transparent 36%),
    linear-gradient(180deg, #050505 0%, #111111 100%);
  isolation: isolate;
}

.landing-hero__noise {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.04), transparent 30%, transparent 70%, rgba(255, 255, 255, 0.05)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 120px);
  opacity: 0.3;
  pointer-events: none;
}

.landing-hero__fragments {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-fragment {
  position: absolute;
  left: calc(var(--x) * 1%);
  top: calc(var(--y) * 1%);
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-size: var(--size);
  font-weight: var(--weight);
  line-height: 0.85;
  letter-spacing: var(--tracking);
  text-transform: uppercase;
  color: rgba(255, 255, 255, var(--opacity));
  filter: blur(var(--blur));
  white-space: nowrap;
  will-change: transform;
}

.landing-hero__shell {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(18rem, 0.8fr);
  gap: clamp(1.6rem, 3vw, 2.75rem);
  align-items: end;
}

.landing-hero__copy {
  max-width: 46rem;
  display: grid;
  gap: 1.1rem;
}

.landing-hero__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(4.35rem, 11vw, 9rem);
  font-weight: 800;
  line-height: 0.84;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  max-width: 9ch;
}

.landing-hero__title span {
  display: block;
}

.landing-hero__title span:last-child {
  font-size: 0.9em;
  letter-spacing: 0.03em;
}

.landing-hero__lead {
  max-width: 33rem;
  font-size: clamp(1.08rem, 1.45vw, 1.24rem);
  color: var(--text-dim);
  line-height: 1.58;
  text-wrap: pretty;
}

.landing-hero__subline {
  max-width: 31rem;
  font-size: 0.98rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.64);
  text-wrap: pretty;
}

.landing-hero__aside {
  display: grid;
  gap: 1rem;
}

.hero-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
}

.hero-panel--facts {
  padding: 1.35rem;
}

.fact-list {
  list-style: none;
  padding: 0;
  margin-top: 1rem;
  display: grid;
  gap: 0.85rem;
}

.fact-list li {
  position: relative;
  padding-left: 1.15rem;
  color: var(--text-dim);
  line-height: 1.55;
}

.fact-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72rem;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 999px;
  background: #fff;
}

.hero-panel--visual {
  position: relative;
  overflow: hidden;
  padding: 0;
  min-height: 25rem;
}

.hero-media-slider__viewport {
  position: relative;
  min-height: 25rem;
  touch-action: pan-y;
  -webkit-user-select: none;
  user-select: none;
}

.hero-media-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transform: translate3d(0, 0, 0) scale(1.02);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.hero-media-slide.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: translate3d(0, 0, 0) scale(1);
}

.hero-media-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease, filter 0.28s ease;
}

.hero-media-slide.is-active img {
  transform: scale(1.02);
}

.hero-media-slide__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 10, 10, 0.06) 0%, rgba(10, 10, 10, 0.18) 40%, rgba(10, 10, 10, 0.54) 100%),
    linear-gradient(90deg, rgba(10, 10, 10, 0.22) 0%, rgba(10, 10, 10, 0.02) 45%, rgba(10, 10, 10, 0.18) 100%);
}

.hero-media-slide__meta {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 4.5rem;
  z-index: 1;
}

.hero-media-slide__meta p {
  margin: 0;
  padding: 0.55rem 0.8rem;
  border-radius: 999px;
  background: rgba(10, 10, 10, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-media-slider__controls {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.hero-media-slider__dots {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.45rem 0.55rem;
  border-radius: 999px;
  background: rgba(10, 10, 10, 0.46);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
}

.hero-media-slider__dot,
.hero-media-slider__nav {
  border: 0;
  cursor: pointer;
}

.hero-media-slider__dot {
  width: 0.62rem;
  height: 0.62rem;
  padding: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.34);
  transition: transform 0.18s ease, background 0.18s ease;
}

.hero-media-slider__dot.is-active {
  background: #ffffff;
  transform: scale(1.12);
}

.hero-media-slider__nav {
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 999px;
  background: rgba(10, 10, 10, 0.46);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  line-height: 1;
  backdrop-filter: blur(10px);
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.hero-media-slider__nav:hover,
.hero-media-slider__dot:hover {
  transform: translateY(-1px);
}

.hero-media-slider__nav:hover {
  background: rgba(20, 20, 20, 0.72);
  border-color: rgba(255, 255, 255, 0.2);
}

.intro-band {
  padding: 4rem 0 4.4rem;
  background: linear-gradient(180deg, #111111 0%, #151515 100%);
}

.intro-band__shell {
  display: grid;
  gap: 2rem;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.4rem;
  align-items: stretch;
}

.proof-card {
  display: grid;
  align-content: start;
  gap: 0.85rem;
  min-height: 100%;
  padding: 1.65rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  transition: transform 0.26s ease, border-color 0.26s ease, background 0.26s ease;
}

.proof-card h3 {
  margin: 0.2rem 0 0;
  max-width: 16ch;
  font-size: clamp(1.35rem, 1.9vw, 1.95rem);
  line-height: 0.96;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  text-wrap: balance;
  overflow-wrap: normal;
  word-break: keep-all;
  hyphens: manual;
}

.proof-card p {
  color: var(--text-dim);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 38ch;
  text-wrap: pretty;
}

.proof-card:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.055);
}

.milestone-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.milestone-card {
  padding: 1.35rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
}

.milestone-card__year {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

.milestone-card h3 {
  margin: 0.8rem 0 0.55rem;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.4vw, 2.2rem);
  line-height: 0.95;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.milestone-card p {
  color: var(--text-dim);
}

.home-section {
  padding: clamp(4.25rem, 8vw, 7rem) 0;
}

.home-section--light {
  background: var(--surface);
  color: var(--text-dark);
}

.home-section--light .section-eyebrow,
.home-section--light .card-eyebrow,
.home-section--light .request-card__eyebrow {
  color: rgba(17, 17, 17, 0.56);
}

.home-section--dark {
  background:
    radial-gradient(circle at 75% 22%, rgba(255, 255, 255, 0.05), transparent 32%),
    linear-gradient(180deg, #0d0d0d 0%, #050505 100%);
}

.home-section--contrast {
  background: #111111;
}

.service-grid-home {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.service-teaser {
  display: grid;
  gap: 1rem;
  padding: 1.45rem;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.56);
  box-shadow: 0 18px 40px rgba(17, 17, 17, 0.08);
  transition: transform 0.26s ease, box-shadow 0.26s ease, border-color 0.26s ease;
}

.service-teaser__number,
.process-card__number {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: rgba(17, 17, 17, 0.52);
}

.service-teaser h3,
.project-card h3,
.process-card h3,
.request-card h3,
.footer-brand h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 2vw, 2.15rem);
  line-height: 0.94;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  text-wrap: balance;
  overflow-wrap: normal;
  word-break: keep-all;
  hyphens: manual;
}

.service-teaser h3,
.process-card h3,
.request-card h3 {
  max-width: 13.8ch;
}

.service-teaser p,
.service-teaser li,
.process-card p,
.project-card p,
.request-card p {
  color: var(--muted-dark);
  font-size: 1rem;
  line-height: 1.7;
  text-wrap: pretty;
}

.service-teaser ul,
.request-list,
.page ul,
.page ol,
.service-card ul,
.feature-grid ul {
  list-style: none;
  padding: 0;
}

.service-teaser li,
.request-list li,
.service-page ul li,
.feature-grid li {
  position: relative;
  padding-left: 1.1rem;
}

.service-teaser li::before,
.request-list li::before,
.service-page ul li::before,
.feature-grid li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72rem;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 999px;
  background: currentColor;
  opacity: 0.32;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
}

.project-slider {
  position: relative;
  margin-top: 1.5rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
  box-shadow: var(--shadow);
}

.project-slider__viewport {
  position: relative;
  min-height: clamp(28rem, 58vw, 44rem);
  touch-action: pan-y;
  -webkit-user-select: none;
  user-select: none;
}

.project-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transform: scale(1.01);
  transition: opacity 0.58s ease, transform 0.58s ease;
}

.project-slide.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1);
}

.project-slide__media,
.project-slide__media img {
  width: 100%;
  height: 100%;
}

.project-slide__media {
  position: absolute;
  inset: 0;
}

.project-slide__media img {
  object-fit: cover;
  transform: scale(1.008);
  transition: transform 6.8s ease;
}

.project-slide.is-active .project-slide__media img {
  transform: scale(1.03);
}

.project-slide__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(94deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.76) 34%, rgba(0, 0, 0, 0.46) 58%, rgba(0, 0, 0, 0.2) 78%, rgba(0, 0, 0, 0.08) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.04) 0%, rgba(0, 0, 0, 0.08) 22%, rgba(0, 0, 0, 0.16) 44%, rgba(0, 0, 0, 0.34) 66%, rgba(0, 0, 0, 0.62) 84%, rgba(0, 0, 0, 0.9) 100%);
}

.project-slide__content {
  position: relative;
  z-index: 1;
  min-height: clamp(28rem, 58vw, 44rem);
  max-width: 34rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 1rem;
  padding:
    clamp(1.6rem, 4vw, 3rem)
    clamp(1.6rem, 4vw, 3rem)
    clamp(5.6rem, 9vw, 7.4rem);
}

.project-slide__content h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 4vw, 4.2rem);
  line-height: 0.92;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-wrap: balance;
  word-break: keep-all;
  overflow-wrap: normal;
  hyphens: manual;
}

.project-slide__content p {
  color: var(--text-dim);
  max-width: 27rem;
  text-wrap: pretty;
}

.project-slide__open {
  width: fit-content;
  min-height: 2.9rem;
  padding: 0.7rem 1.05rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
  transition: background 0.22s ease, border-color 0.22s ease, transform 0.22s ease;
}

.project-slide__open:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.28);
  transform: translateY(-1px);
}

.project-slider__controls {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 2.8rem 1.2rem 1rem;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.56) 34%, rgba(0, 0, 0, 0.82) 68%, rgba(0, 0, 0, 0.93) 100%);
}

.project-slider__nav {
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 1.5rem;
  backdrop-filter: blur(8px);
}

.project-slider__dots {
  flex: 1;
  display: flex;
  justify-content: center;
  gap: 0.6rem;
}

.project-slider__dot {
  width: 0.8rem;
  height: 0.8rem;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
  transition: transform 0.22s ease, background 0.22s ease;
}

.project-slider__dot.is-active {
  background: #fff;
  transform: scale(1.15);
}

body.project-lightbox-open {
  overflow: hidden;
}

.project-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1300;
  display: grid;
  place-items: center;
  padding: 1.25rem;
}

.project-lightbox[hidden] {
  display: none;
}

.project-lightbox__backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 32%, rgba(255, 255, 255, 0.09), transparent 24%),
    rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(12px);
}

.project-lightbox__dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 1180px);
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(18rem, 0.52fr);
  gap: 0;
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(10, 10, 10, 0.96);
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.42);
  outline: none;
}

.project-lightbox__media-shell {
  position: relative;
  min-height: min(78vh, 860px);
  background: #090909;
}

.project-lightbox__media {
  width: 100%;
  height: 100%;
  margin: 0;
}

.project-lightbox__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: none;
}

.project-lightbox__info {
  display: grid;
  align-content: end;
  gap: 1rem;
  padding: 2rem 1.8rem 1.8rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0.05) 100%);
}

.project-lightbox__eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.56);
}

.project-lightbox__info h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 3.25rem);
  line-height: 0.92;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  text-wrap: balance;
}

.project-lightbox__info p:last-child {
  color: rgba(255, 255, 255, 0.76);
  font-size: 1rem;
  line-height: 1.72;
  text-wrap: pretty;
}

.project-lightbox__close,
.project-lightbox__nav {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(8, 8, 8, 0.44);
  color: #fff;
  backdrop-filter: blur(10px);
}

.project-lightbox__close {
  top: 1rem;
  right: 1rem;
  width: 3rem;
  height: 3rem;
  font-size: 1.7rem;
  line-height: 1;
}

.project-lightbox__nav {
  top: 50%;
  transform: translateY(-50%);
  width: 3.3rem;
  height: 3.3rem;
  font-size: 1.85rem;
}

.project-lightbox__nav--prev {
  left: 1rem;
}

.project-lightbox__nav--next {
  right: 1rem;
}

.project-card {
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: var(--shadow);
}

.project-card__media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.project-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.1);
  transform: scale(1.01);
}

.project-card__body {
  display: grid;
  gap: 0.85rem;
  padding: 1.4rem;
}

.project-card__body p {
  color: var(--text-dim);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.process-card {
  padding: 1.5rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line-dark);
  background: rgba(255, 255, 255, 0.5);
  transition: transform 0.26s ease, box-shadow 0.26s ease, border-color 0.26s ease;
}

.process-card h3 {
  margin-bottom: 0.35rem;
}

.service-teaser:hover,
.process-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(17, 17, 17, 0.1);
  border-color: rgba(17, 17, 17, 0.18);
}

.profile-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.95fr);
  gap: 1.4rem;
  align-items: stretch;
}

.profile-copy {
  display: grid;
  gap: 1rem;
}

.profile-copy p {
  max-width: 38rem;
  color: var(--text-dim);
  font-size: 1.04rem;
  line-height: 1.72;
  text-wrap: pretty;
}

.profile-quote {
  margin-top: 1rem;
  padding: 1.2rem 1.3rem;
  border-left: 3px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 2.2rem);
  line-height: 1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.profile-visuals {
  display: grid;
  gap: 1rem;
}

.profile-visual {
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
}

.profile-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.profile-visual--wide {
  min-height: 23rem;
}

.profile-visual--stack {
  min-height: 16rem;
}

.profile-visual:hover img {
  transform: scale(1.016);
}

.request-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.85fr);
  gap: 1.2rem;
  align-items: start;
}

.request-list {
  display: grid;
  gap: 0.9rem;
  margin-top: 2rem;
}

.request-copy .section-copy {
  max-width: 38rem;
}

.request-card {
  padding: 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--line-dark);
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 18px 40px rgba(17, 17, 17, 0.08);
}

.request-card a {
  color: var(--text-dark);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

.page-wrap {
  padding: clamp(2rem, 6vw, 4rem) 0 clamp(4rem, 8vw, 6rem);
  background:
    radial-gradient(circle at 10% 12%, rgba(255, 255, 255, 0.08), transparent 24%),
    linear-gradient(180deg, #0c0c0c 0%, #151515 100%);
}

.page {
  width: min(calc(100% - 2rem), 1040px);
  margin: 0 auto;
  padding: clamp(1.8rem, 4vw, 3rem);
  border-radius: calc(var(--radius) + 4px);
  background: var(--surface);
  color: var(--text-dark);
  box-shadow: var(--shadow);
}

.page h1 {
  margin: 0 0 1.6rem;
  font-size: clamp(2.7rem, 6vw, 5.4rem);
}

.page > p {
  max-width: 42rem;
  color: var(--muted-dark);
}

.page-section {
  display: grid;
  gap: 1rem;
  margin-bottom: 2rem;
}

.page-section h2 {
  font-size: clamp(2.1rem, 4vw, 3.4rem);
  margin: 0;
}

.page-section h3,
.service-card ul h3 {
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  margin: 0.4rem 0 0;
}

.page-section p,
.page-section li,
.contact-card p,
.service-card p,
.feature-grid p,
.feature-grid li,
.page address {
  color: var(--muted-dark);
}

.page-section a,
.contact-card a,
.service-card a,
.feature-grid a {
  color: var(--text-dark);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

.contact-card,
.service-card,
.feature-grid article {
  border-radius: var(--radius-sm);
  border: 1px solid var(--line-dark);
  padding: 1.35rem;
  background: rgba(255, 255, 255, 0.58);
}

.feature-grid,
.service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.service-stack {
  display: grid;
  gap: 1rem;
}

.service-page .service-card {
  display: grid;
  gap: 0.9rem;
}

.service-page ul {
  display: grid;
  gap: 0.65rem;
}

.service-page .service-muted {
  color: var(--muted-dark);
}

/* Service Detail Page */
.service-page {
  padding: var(--section-padding, 6rem) 0;
}

.service-page .section-shell {
  max-width: 900px;
  margin: 0 auto;
}

.service-page .section-head {
  text-align: center;
  justify-items: center;
  margin-bottom: 4rem;
}

.service-page .section-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #111;
  margin-bottom: 1rem;
}

.service-page .section-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  line-height: 0.95;
  margin-bottom: 1.5rem;
}

.service-page .section-copy {
  font-size: 1.15rem;
  color: var(--muted-dark);
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto !important;
  text-align: center !important;
}

.service-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 700px;
  margin: 0 auto;
}

.service-card {
  padding: 2.5rem 2rem;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: 0 4px 20px rgba(17, 17, 17, 0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  text-align: center;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(17, 17, 17, 0.12);
}

.service-card__number {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent, #0a8b6e);
  margin-bottom: 0.75rem;
}

.service-card h2 {
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  line-height: 1.1;
  margin: 0 0 1rem;
}

.service-card > p {
  color: var(--muted-dark);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.service-card ul {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  display: inline-block;
  text-align: left;
}

.service-card li {
  position: relative;
  padding-left: 1.25rem;
  color: var(--muted-dark);
  font-size: 0.95rem;
  line-height: 1.6;
}

.service-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.35rem;
  height: 0.35rem;
  border-radius: 999px;
  background: var(--accent, #0a8b6e);
}

.service-page .button-row {
  display: flex;
  justify-content: center;
  margin-top: 4rem;
}

/* Dark variant for service cards */
.home-section--dark .service-card {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
}

.home-section--dark .service-card p,
.home-section--dark .service-card li {
  color: rgba(255, 255, 255, 0.7);
}

.home-section--dark .service-card__number {
  color: rgba(255, 255, 255, 0.4);
}

.service-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.65rem 0.9rem;
  border-radius: 999px;
  border: 1px solid var(--line-dark);
  background: rgba(255, 255, 255, 0.7);
  color: var(--text-dark);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.price-table {
  width: 100%;
  border-collapse: collapse;
}

.price-table td {
  padding: 0.75rem 0;
  border-top: 1px solid rgba(17, 17, 17, 0.1);
}

.price-table tr:last-child td {
  border-bottom: 1px solid rgba(17, 17, 17, 0.1);
}

.info-page .width80 {
  width: min(100%, 780px);
  margin: 0 auto;
}

.info-page .info-image img {
  width: min(100%, 420px);
  margin: 0 auto;
  border-radius: 1.2rem;
  filter: grayscale(1) contrast(1.05);
}

.site-footer {
  padding: 3rem 0;
  border-top: 1px solid var(--line);
  background: #070707;
}

.footer-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) repeat(2, minmax(0, 0.65fr));
  gap: 2rem;
}

.footer-brand {
  display: grid;
  gap: 1rem;
}

.footer-brand p {
  max-width: 34rem;
  color: var(--text-dim);
  text-wrap: pretty;
}

.footer-column {
  display: grid;
  gap: 0.7rem;
  align-content: start;
}

.footer-column p {
  color: var(--text-dim);
  text-wrap: pretty;
}

.footer-column a {
  width: fit-content;
  color: var(--text);
}

.audio-player {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  height: 4rem;
  border-radius: 999px;
  background: rgba(12, 12, 12, 0.92);
  color: #f5f5f5;
  border: 1px solid rgba(255, 255, 255, 0.14);
  z-index: 1100;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  backdrop-filter: blur(14px);
}

body.has-audio-player {
  padding-bottom: 6.75rem;
}

.audio-marquee {
  width: 100%;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  font-size: 0.68rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  pointer-events: none;
  padding: 0 7.4rem;
}

.audio-marquee span {
  display: inline-block;
  padding-left: 100%;
  animation: audio-scroll 18s linear infinite;
}

.audio-toggle,
.audio-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 999px;
  cursor: pointer;
}

.audio-toggle {
  left: 50%;
  transform: translate(-50%, -50%);
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.audio-toggle .audio-icon {
  width: 0;
  height: 0;
  border-left: 10px solid #111;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  margin-left: 2px;
}

.audio-toggle.is-playing .audio-icon {
  width: 12px;
  height: 12px;
  border: 0;
  margin-left: 0;
  position: relative;
}

.audio-toggle.is-playing .audio-icon::before,
.audio-toggle.is-playing .audio-icon::after {
  content: "";
  position: absolute;
  top: 0;
  width: 4px;
  height: 12px;
  background: #111;
}

.audio-toggle.is-playing .audio-icon::before {
  left: 0;
}

.audio-toggle.is-playing .audio-icon::after {
  right: 0;
}

.audio-nav {
  width: 2.2rem;
  height: 2.2rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: transparent;
  color: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
}

.audio-prev {
  left: 1rem;
}

.audio-next {
  right: 1rem;
}

.audio-player.is-single .audio-nav {
  display: none;
}

.audio-track-list {
  display: none;
}

@keyframes audio-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

@media (max-width: 1200px) {
  .service-grid-home {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

@media (max-width: 960px) {
  .header-inner {
    gap: 1rem;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    right: 0;
    display: none;
    padding: 0 1rem 1rem;
    background: rgba(7, 7, 7, 0.96);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(18px);
  }

  .main-nav.is-open {
    display: block;
  }

  .main-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0.45rem;
  }

  .main-nav a {
    justify-content: center;
    border-radius: 1rem;
    min-height: 3rem;
  }

  .landing-hero__shell,
  .profile-grid,
  .request-grid,
  .footer-shell {
    grid-template-columns: 1fr;
  }

  .landing-hero__shell {
    align-items: start;
  }

  .landing-hero__aside {
    max-width: 34rem;
  }

  .proof-grid,
  .project-grid,
  .feature-grid,
  .service-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 700px) {
  .header-inner,
  .section-shell,
  .footer-shell,
  .page {
    width: min(calc(100% - 1.25rem), var(--shell));
  }

  .site-header {
    backdrop-filter: blur(12px);
  }

  .logo a {
    gap: 0.52rem;
  }

  .logo-mark {
    width: 3.75rem;
    height: 3.75rem;
    flex-basis: 3.75rem;
  }

  .logo-mark img {
    width: 100%;
    height: 100%;
  }

  .logo-lockup {
    font-size: 1.02rem;
  }

  .landing-hero {
    min-height: auto;
    padding: 2rem 0 1.6rem;
  }

  .landing-hero__noise {
    opacity: 0.18;
  }

  .landing-hero__fragments {
    display: none;
  }

  .landing-hero__shell {
    gap: 1.1rem;
  }

  .landing-hero__title {
    font-size: clamp(2.55rem, 13vw, 4.35rem);
    line-height: 0.84;
    letter-spacing: 0.02em;
    max-width: 8.2ch;
  }

  .landing-hero__title span:last-child {
    font-size: 0.86em;
  }

  .landing-hero__copy {
    gap: 0.9rem;
  }

  .landing-hero__lead,
  .landing-hero__subline,
  .section-copy,
  .profile-copy p,
  .proof-card p,
  .service-teaser p,
  .service-teaser li,
  .process-card p,
  .request-card p {
    font-size: 0.98rem;
    line-height: 1.65;
  }

  .landing-hero__lead {
    max-width: none;
  }

  .landing-hero__subline {
    color: rgba(255, 255, 255, 0.58);
  }

  .button-row--hero {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.7rem;
    margin-top: 1.55rem;
  }

  .button-row--hero .button {
    width: 100%;
    min-height: 3.05rem;
    padding-inline: 1.15rem;
    letter-spacing: 0.17em;
  }

  .landing-hero__aside {
    max-width: none;
    gap: 0.8rem;
  }

  .hero-panel {
    border-radius: 22px;
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.2);
  }

  .hero-panel--facts {
    padding: 0.95rem 0.95rem 1.15rem;
  }

  .fact-list {
    gap: 0.65rem;
    margin-top: 0.75rem;
  }

  .fact-list li {
    padding-left: 0.95rem;
    font-size: 0.92rem;
    line-height: 1.52;
  }

  .hero-panel--visual {
    display: block;
    min-height: 15.75rem;
  }

  .hero-media-slider__viewport {
    min-height: 15.75rem;
  }

  .hero-media-slide img {
    filter: grayscale(1) contrast(1.08);
  }

  .hero-panel--visual.is-mobile-color .hero-media-slide.is-active img {
    filter: none;
  }

  .hero-media-slide__meta {
    left: 0.8rem;
    right: 0.8rem;
    bottom: 0.8rem;
  }

  .hero-media-slide__meta p {
    padding: 0.5rem 0.72rem;
    font-size: 0.64rem;
    letter-spacing: 0.16em;
  }

  .hero-media-slider__controls {
    left: 0.8rem;
    right: 0.8rem;
    bottom: 0.8rem;
  }

  .hero-media-slider__dots {
    gap: 0.38rem;
    padding: 0.38rem 0.48rem;
  }

  .hero-media-slider__nav {
    width: 2.35rem;
    height: 2.35rem;
    font-size: 1.1rem;
  }

  .hero-media-slider__dot {
    width: 0.56rem;
    height: 0.56rem;
  }

  .project-slider__viewport,
  .project-slide__content {
    min-height: 20.5rem;
  }

  .project-slide__content {
    max-width: none;
    gap: 0.7rem;
    padding: 1rem 1rem 4.85rem;
  }

  .project-slide__content h3 {
    font-size: clamp(1.8rem, 8.8vw, 2.65rem);
    max-width: 8.6ch;
  }

  .project-slide__content p {
    max-width: 17rem;
    font-size: 0.92rem;
    line-height: 1.55;
  }

  .project-slider__controls {
    gap: 0.75rem;
    padding: 2rem 0.85rem 0.8rem;
  }

  .project-slide__open {
    min-height: 2.55rem;
    padding: 0.62rem 0.88rem;
    font-size: 0.68rem;
    letter-spacing: 0.14em;
  }

  .project-slider__nav {
    width: 2.6rem;
    height: 2.6rem;
    font-size: 1.25rem;
  }

  .project-slider__dot {
    width: 0.62rem;
    height: 0.62rem;
  }

  .project-lightbox {
    padding: 0.75rem;
  }

  .project-lightbox__dialog {
    grid-template-columns: 1fr;
    border-radius: 24px;
  }

  .project-lightbox__media-shell {
    min-height: 52vh;
  }

  .project-lightbox__info {
    gap: 0.75rem;
    padding: 1.1rem 1rem 1rem;
  }

  .project-lightbox__info h3 {
    font-size: clamp(1.55rem, 8vw, 2.25rem);
    max-width: 11ch;
  }

  .project-lightbox__info p:last-child {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .project-lightbox__close {
    top: 0.7rem;
    right: 0.7rem;
    width: 2.7rem;
    height: 2.7rem;
    font-size: 1.45rem;
  }

  .project-lightbox__nav {
    top: auto;
    bottom: 0.8rem;
    transform: none;
    width: 2.6rem;
    height: 2.6rem;
    font-size: 1.4rem;
  }

  .project-lightbox__nav--prev {
    left: 0.8rem;
  }

  .project-lightbox__nav--next {
    right: 0.8rem;
  }

  .section-title,
  .page h1 {
    max-width: none;
    font-size: clamp(2.05rem, 10.8vw, 3.45rem);
    line-height: 0.9;
  }

  .section-head {
    gap: 0.85rem;
    margin-bottom: 1.65rem;
  }

  .intro-band {
    padding: 2.7rem 0 2.9rem;
  }

  .home-section {
    padding: 3rem 0;
  }

  .intro-band__shell,
  .profile-grid,
  .request-grid {
    gap: 1.35rem;
  }

  .proof-grid,
  .service-grid-home,
  .process-grid {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }

  .proof-card,
  .service-teaser,
  .process-card,
  .request-card {
    padding: 1.1rem;
    border-radius: 20px;
  }

  .proof-card h3,
  .service-teaser h3,
  .process-card h3,
  .request-card h3 {
    max-width: none;
    font-size: clamp(1.16rem, 5.45vw, 1.7rem);
    line-height: 0.98;
    letter-spacing: 0.022em;
  }

  .proof-card h3 {
    max-width: none;
    font-size: clamp(1.1rem, 5.1vw, 1.55rem);
  }

  .proof-card p,
  .service-teaser p,
  .service-teaser li,
  .process-card p,
  .request-card p,
  .profile-copy p,
  .section-copy {
    max-width: 31ch;
    text-wrap: pretty;
  }

  .service-teaser__number,
  .process-card__number,
  .card-eyebrow,
  .hero-panel__eyebrow,
  .request-card__eyebrow,
  .section-eyebrow,
  .footer-column__title {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
  }

  .service-teaser ul,
  .request-list {
    gap: 0.7rem;
  }

  .profile-copy {
    gap: 0.85rem;
  }

  .profile-quote {
    margin-top: 0.35rem;
    padding: 0.95rem 1rem;
    font-size: clamp(1.2rem, 6.4vw, 1.8rem);
    line-height: 0.95;
  }

  .profile-visuals {
    gap: 0.75rem;
  }

  .profile-visual,
  .project-slider,
  .project-card {
    border-radius: 22px;
  }

  .profile-visual--wide {
    min-height: 15.5rem;
  }

  .profile-visual--stack {
    min-height: 12.5rem;
  }

  .request-list {
    margin-top: 1.2rem;
  }

  .request-card .button-row {
    margin-top: 1.2rem;
    gap: 0.65rem;
  }

  .request-card .button {
    width: 100%;
  }

  .footer-shell {
    gap: 1.5rem;
  }

  .footer-brand h2 {
    font-size: clamp(1.5rem, 7vw, 2.15rem);
    max-width: 12ch;
  }

  .footer-brand p,
  .footer-column p,
  .footer-column a {
    font-size: 0.92rem;
    line-height: 1.55;
  }

  .hero-fragment--hide-mobile {
    display: none;
  }

  .audio-player {
    left: 0.65rem;
    right: 0.65rem;
    bottom: 0.65rem;
    height: 3.2rem;
  }

  body.has-audio-player {
    padding-bottom: 5.2rem;
  }

  .audio-toggle {
    width: 2.3rem;
    height: 2.3rem;
  }

  .audio-toggle .audio-icon {
    border-left-width: 8px;
    border-top-width: 5px;
    border-bottom-width: 5px;
  }

  .audio-toggle.is-playing .audio-icon {
    width: 10px;
    height: 10px;
  }

  .audio-toggle.is-playing .audio-icon::before,
  .audio-toggle.is-playing .audio-icon::after {
    width: 3px;
    height: 10px;
  }

  .audio-nav {
    width: 1.85rem;
    height: 1.85rem;
    font-size: 0.92rem;
  }

  .audio-prev {
    left: 0.7rem;
  }

  .audio-next {
    right: 0.7rem;
  }

  .audio-marquee {
    padding: 0 4.55rem;
    font-size: 0.58rem;
    letter-spacing: 0.18em;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .button,
  .main-nav a,
  .menu-toggle span,
  .hero-fragment,
  .reveal {
    transition: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .audio-marquee span {
    animation: none;
    padding-left: 0;
  }
}
