:root {
  --black: #0b0b0b;
  --graphite: #1f1f1f;
  --gray-700: #5f5f5f;
  --gray-500: #9b9b9b;
  --gray-200: #e7e7e7;
  --gray-100: #f6f6f6;
  --white: #ffffff;
  --paper: #f4efe9;
  --burgundy: #7a2f43;
  --burgundy-deep: #4c1828;
  --burgundy-soft: #eadde1;
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  width: 100%;
  background: var(--white);
  color: var(--black);
  font-family: Inter, Arial, sans-serif;
  letter-spacing: 0;
  overflow-x: hidden;
}

body.nav-open,
body.case-dialog-open {
  overflow: hidden;
}

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

button {
  font: inherit;
}

:where(a, button, video):focus-visible {
  outline: 3px solid #6b4eff;
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  z-index: 300;
  top: 12px;
  left: 12px;
  padding: 12px 16px;
  color: var(--white);
  background: var(--black);
  font-size: 14px;
  font-weight: 700;
  transform: translateY(-160%);
  transition: transform 180ms var(--ease-out);
}

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

video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: var(--gray-200);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: 72px;
  padding: 14px clamp(18px, 4vw, 48px);
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid var(--gray-200);
  backdrop-filter: blur(18px);
}

.brand {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 0;
  font-weight: 700;
  white-space: nowrap;
}

.brand-name {
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.brand-initials {
  padding-left: 10px;
  color: var(--gray-700);
  border-left: 1px solid var(--gray-200);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 12px;
  font-style: italic;
  font-weight: 400;
}

.nav {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 3vw, 38px);
  color: var(--gray-700);
  font-size: 13px;
  text-transform: uppercase;
}

.nav a,
.header-link,
.text-action {
  transition: color 180ms var(--ease-out), opacity 180ms var(--ease-out);
}

.nav a:hover,
.header-link:hover,
.text-action:hover {
  color: var(--black);
  opacity: 0.65;
}

.nav a[aria-current="page"] {
  color: var(--black);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 6px;
}

.header-link {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
}

.nav-toggle {
  width: 44px;
  height: 44px;
  display: none;
  position: relative;
  padding: 0;
  background: var(--white);
  border: 1px solid var(--black);
  border-radius: 50%;
  cursor: pointer;
}

.nav-toggle span {
  position: absolute;
  left: 12px;
  width: 18px;
  height: 1px;
  background: var(--black);
  transition: transform 180ms var(--ease-in-out), top 180ms var(--ease-in-out);
}

.nav-toggle span:first-child {
  top: 17px;
}

.nav-toggle span:last-child {
  top: 25px;
}

.site-header[data-nav-open="true"] .nav-toggle span:first-child {
  top: 21px;
  transform: rotate(45deg);
}

.site-header[data-nav-open="true"] .nav-toggle span:last-child {
  top: 21px;
  transform: rotate(-45deg);
}

.hero {
  min-height: calc(100vh - 72px);
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.78fr);
  border-bottom: 1px solid var(--gray-200);
}

.hero-media {
  position: relative;
  min-height: 680px;
  overflow: hidden;
  background: var(--black);
}

.hero-media video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.92;
}

.hero-video-toggle {
  position: absolute;
  z-index: 2;
  left: 20px;
  bottom: max(20px, env(safe-area-inset-bottom));
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 10px 14px;
  color: var(--white);
  background: rgba(11, 11, 11, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  backdrop-filter: blur(12px);
}

.hero-video-toggle:hover {
  background: rgba(11, 11, 11, 0.92);
}

.hero-video-toggle-icon {
  width: 14px;
  height: 14px;
  display: inline-block;
  position: relative;
  flex: 0 0 auto;
}

.hero-video-toggle-icon::before {
  content: "";
  position: absolute;
  top: 1px;
  left: 3px;
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 9px solid var(--white);
}

.hero-video-toggle[data-state="playing"] .hero-video-toggle-icon::before {
  top: 1px;
  left: 2px;
  width: 3px;
  height: 12px;
  background: var(--white);
  border: 0;
  box-shadow: 7px 0 0 var(--white);
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(36px, 5vw, 64px);
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--gray-700);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
}

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

h1 {
  max-width: 620px;
  margin-bottom: 28px;
  font-size: clamp(48px, 7vw, 104px);
  font-weight: 500;
  line-height: 0.9;
}

.hero-copy h1 {
  font-size: clamp(44px, 4.4vw, 64px);
  line-height: 0.96;
  letter-spacing: -0.035em;
}

h1 span,
.script {
  display: block;
  color: var(--gray-700);
  font-family: "Sloop Script Pro", "Snell Roundhand", cursive;
  font-size: clamp(48px, 9vw, 118px);
  font-weight: 400;
  line-height: 0.8;
  text-transform: none;
}

.lead {
  max-width: 560px;
  margin-bottom: 34px;
  color: var(--graphite);
  font-size: clamp(18px, 1.7vw, 22px);
  line-height: 1.42;
}

.service-area {
  margin: 24px 0 0;
  color: var(--gray-700);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.hero-proof,
.page-hero-facts {
  width: 100%;
  max-width: 620px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
  background: var(--gray-200);
  border: 1px solid var(--gray-200);
}

.hero-proof li,
.page-hero-facts li {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 15px 14px;
  background: var(--white);
}

.hero-proof strong,
.page-hero-facts strong {
  color: var(--black);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
}

.hero-proof span,
.page-hero-facts span {
  color: var(--gray-700);
  font-size: 11px;
  line-height: 1.35;
}

.hero-actions,
.contact-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border: 1px solid var(--black);
  border-radius: 2px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  transition: background 180ms var(--ease-out), color 180ms var(--ease-out), opacity 180ms var(--ease-out), transform 140ms var(--ease-out);
}

.button-dark {
  background: var(--black);
  color: var(--white);
}

.button-light {
  background: transparent;
  color: var(--black);
}

.button:hover {
  opacity: 0.72;
}

.button:active {
  transform: scale(0.98);
}

.text-action {
  color: var(--gray-700);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.section,
.section-narrow {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(72px, 9vw, 132px) 0;
}

.section-narrow {
  width: min(980px, calc(100% - 40px));
}

.intro h2,
.about h2,
.quote-band h2,
.contact h2 {
  font-size: clamp(34px, 5vw, 72px);
  font-weight: 500;
  line-height: 0.98;
}

.intro .script {
  margin-bottom: 24px;
  text-align: center;
}

.intro h2 {
  margin-bottom: 48px;
  text-align: center;
}

.intro-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  border-top: 1px solid var(--gray-200);
}

.intro-grid p {
  margin: 0;
  padding-top: 24px;
  color: var(--gray-700);
  font-size: 17px;
  line-height: 1.5;
}

.section-heading {
  display: grid;
  grid-template-columns: 0.5fr 1fr;
  gap: 28px;
  align-items: end;
  margin-bottom: 42px;
}

.section-heading h2 {
  margin-bottom: 0;
  font-size: clamp(36px, 5vw, 76px);
  font-weight: 500;
  line-height: 0.96;
}

.section-heading p:last-child {
  max-width: 520px;
  margin: 0;
  color: var(--gray-700);
  font-size: 17px;
  line-height: 1.52;
}

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

.work-card {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  background: var(--gray-100);
  cursor: pointer;
}

.work-card:hover video {
  transform: scale(1.035);
}

.work-card.featured {
  grid-column: span 2;
  grid-row: span 2;
  min-height: 854px;
}

.work-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 52%, rgba(0, 0, 0, 0.72));
  pointer-events: none;
}

.work-card-caption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  color: var(--white);
}

.work-card-toggle {
  position: absolute;
  z-index: 3;
  inset: 0;
  width: 100%;
  padding: 0;
  color: var(--white);
  background: transparent;
  border: 0;
  cursor: pointer;
}

.work-card-toggle[hidden] {
  display: none;
}

.work-card-play {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  background: rgba(11, 11, 11, 0.68);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  backdrop-filter: blur(8px);
}

.work-card-play::before {
  content: "";
  width: 0;
  height: 0;
  margin-left: 3px;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 11px solid var(--white);
}

.work-card span,
.steps span {
  display: block;
  margin-bottom: 8px;
  color: var(--gray-500);
  font-size: 12px;
  font-weight: 700;
}

.work-card h3 {
  margin-bottom: 0;
  font-size: 18px;
  font-weight: 500;
}

.work-card.is-playing .work-card-caption::after {
  content: "Воспроизводится";
  display: block;
  margin-top: 8px;
  color: var(--gray-200);
  font-size: 11px;
  text-transform: uppercase;
}

.work-card.is-playing .work-card-caption {
  opacity: 0;
  pointer-events: none;
}

.portfolio-more {
  display: flex;
  justify-content: center;
  margin-top: 36px;
}

.section-dark {
  width: 100%;
  max-width: none;
  padding-inline: max(20px, calc((100vw - var(--max)) / 2));
  background: var(--black);
  color: var(--white);
}

.section-dark .eyebrow,
.section-dark .section-heading p:last-child {
  color: var(--gray-500);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: #333333;
  border: 1px solid #333333;
}

.price-card {
  min-height: 230px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
  background: var(--black);
}

.reveal {
  opacity: 1;
  transform: translateY(0);
}

.reveal-ready .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 600ms ease-out,
    transform 600ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

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

.price-card.accent {
  background: var(--white);
  color: var(--black);
}

.price-card p,
.price-card span {
  color: inherit;
  opacity: 0.72;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.price-card h3 {
  margin: 34px 0;
  font-size: clamp(34px, 4vw, 56px);
  font-weight: 500;
}

.terms {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 22px;
  color: var(--gray-500);
  font-size: 15px;
  line-height: 1.5;
}

.terms p {
  margin: 0;
}

.equipment {
  border-bottom: 1px solid var(--gray-200);
}

.equipment-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--gray-200);
  border: 1px solid var(--gray-200);
}

.equipment-card {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
  background: var(--white);
}

.equipment-card span {
  color: var(--gray-700);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.equipment-card h3 {
  margin: 34px 0;
  font-size: clamp(23px, 2.2vw, 32px);
  font-weight: 500;
  line-height: 1.08;
}

.equipment-card p {
  margin: 0;
  color: var(--gray-700);
  font-size: 15px;
  line-height: 1.5;
}

.process .section-heading {
  grid-template-columns: 0.4fr 1fr;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--gray-200);
  border: 1px solid var(--gray-200);
}

.steps article {
  min-height: 260px;
  padding: 28px;
  background: var(--white);
}

.steps h3 {
  margin-bottom: 34px;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.08;
}

.steps p {
  margin: 0;
  color: var(--gray-700);
  font-size: 15px;
  line-height: 1.5;
}

.steps span {
  color: var(--gray-700);
}

.about {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: clamp(36px, 7vw, 84px);
  border-top: 1px solid var(--gray-200);
}

.about-text p {
  color: var(--gray-700);
  font-size: 19px;
  line-height: 1.58;
}

.quote-band {
  padding: clamp(84px, 10vw, 150px) 20px;
  background: var(--gray-100);
  text-align: center;
}

.quote-band .script {
  margin-bottom: 24px;
}

.quote-band h2 {
  max-width: 840px;
  margin-inline: auto;
}

.contact {
  display: flex;
  justify-content: center;
}

.contact-card {
  width: min(760px, 100%);
  padding: clamp(34px, 6vw, 72px);
  border: 1px solid var(--black);
  text-align: center;
}

.contact-card p {
  color: var(--gray-700);
  font-size: 18px;
  line-height: 1.55;
}

.contact-actions {
  justify-content: center;
  margin-top: 32px;
}

.contact-note {
  margin: 24px 0 0;
  color: var(--gray-700) !important;
  font-size: 13px !important;
}

.social-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 20px;
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid var(--gray-200);
}

.social-links a {
  color: var(--gray-700);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  transition: color 180ms ease, opacity 180ms ease;
}

.social-links a:hover {
  color: var(--black);
  opacity: 0.65;
}

.platform-note {
  max-width: 620px;
  margin: 14px auto 0;
  color: var(--gray-700) !important;
  font-size: 10px !important;
  line-height: 1.45 !important;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(20px, 4vw, 48px);
  border-top: 1px solid var(--gray-200);
  color: var(--gray-700);
  font-size: 13px;
  text-transform: uppercase;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: var(--gray-700);
  text-decoration: underline;
  text-decoration-color: var(--gray-500);
  text-underline-offset: 4px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px 24px;
}

.cases-main {
  min-height: calc(100vh - 79px);
}

.cases-profile {
  width: min(980px, calc(100% - 40px));
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  align-items: center;
  gap: clamp(40px, 7vw, 88px);
  margin: 0 auto;
  padding: clamp(64px, 8vw, 112px) 0;
  border-bottom: 1px solid var(--gray-200);
}

.cases-profile-image {
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  display: block;
  object-fit: cover;
  border: 1px solid var(--gray-200);
  border-radius: 50%;
}

.cases-profile-copy h1 {
  max-width: 680px;
  margin-bottom: 24px;
  font-size: clamp(52px, 8vw, 96px);
  line-height: 0.9;
}

.cases-profile-copy > p:not(.eyebrow, .cases-profile-area) {
  max-width: 640px;
  margin-bottom: 18px;
  color: var(--graphite);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.5;
}

.cases-profile-area {
  margin: 0 0 30px;
  color: var(--gray-700);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.cases-feed {
  width: min(980px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(60px, 8vw, 104px) 0 clamp(88px, 10vw, 140px);
}

.cases-feed-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 28px;
}

.cases-feed-heading h2 {
  margin-bottom: 0;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 500;
  line-height: 0.98;
}

.cases-draft-label {
  margin: 0;
  color: var(--gray-700);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

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

.case-tile {
  min-width: 0;
  background: var(--gray-100);
}

.case-tile-button {
  width: 100%;
  aspect-ratio: 1;
  position: relative;
  display: block;
  overflow: hidden;
  padding: 0;
  color: var(--white);
  background: var(--black);
  border: 0;
  cursor: pointer;
}

.case-tile-button::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 11, 11, 0.04) 45%, rgba(11, 11, 11, 0.76));
  opacity: 0.72;
  transition: opacity 180ms ease;
}

.case-tile-button:hover::after,
.case-tile-button:focus-visible::after {
  opacity: 1;
}

.case-tile-button img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.case-tile-button:hover img {
  transform: scale(1.035);
}

.case-tile-type {
  position: absolute;
  z-index: 2;
  top: 14px;
  right: 14px;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  background: rgba(11, 11, 11, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 50%;
  backdrop-filter: blur(8px);
}

.case-tile-overlay {
  position: absolute;
  z-index: 2;
  right: 16px;
  bottom: 16px;
  left: 16px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.25;
  text-align: left;
}

.case-dialog {
  width: min(1040px, calc(100% - 48px));
  max-width: none;
  max-height: min(860px, calc(100dvh - 48px));
  margin: auto;
  padding: 0;
  color: var(--black);
  background: var(--white);
  border: 0;
  border-radius: 2px;
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.34);
  overflow: hidden;
}

.case-dialog::backdrop {
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(8px);
}

.case-post {
  min-height: min(760px, calc(100dvh - 48px));
  display: flex;
  flex-direction: column;
  background: var(--white);
}

.case-post-header {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px 16px 12px 20px;
  border-bottom: 1px solid var(--gray-200);
}

.case-post-author {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 12px;
}

.case-post-author img {
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  object-fit: cover;
  border: 1px solid var(--gray-200);
  border-radius: 50%;
}

.case-post-author strong,
.case-post-author span {
  display: block;
}

.case-post-author strong {
  margin-bottom: 4px;
  font-size: 14px;
}

.case-post-author span {
  color: var(--gray-700);
  font-size: 12px;
}

.case-close {
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  position: relative;
  padding: 0;
  background: transparent;
  border: 1px solid var(--gray-200);
  border-radius: 50%;
  cursor: pointer;
}

.case-close span {
  position: absolute;
  top: 21px;
  left: 12px;
  width: 18px;
  height: 1px;
  background: var(--black);
}

.case-close span:first-child {
  transform: rotate(45deg);
}

.case-close span:last-child {
  transform: rotate(-45deg);
}

.case-post-layout {
  min-height: 0;
  display: grid;
  flex: 1;
  grid-template-columns: minmax(0, 0.62fr) minmax(330px, 0.38fr);
}

.case-gallery {
  min-height: 0;
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: var(--black);
}

.case-media-track {
  width: 100%;
  height: 100%;
  display: grid;
  touch-action: pan-y;
}

.case-media-slide {
  min-width: 0;
  height: 100%;
  display: none;
  place-items: center;
  margin: 0;
}

.case-media-slide.is-active {
  display: grid;
}

.case-media-slide video,
.case-media-slide img {
  width: 100%;
  height: 100%;
  max-height: calc(100dvh - 120px);
  display: block;
  object-fit: contain;
  background: var(--black);
}

.case-gallery-arrow {
  width: 44px;
  height: 44px;
  position: absolute;
  z-index: 3;
  top: 50%;
  display: grid;
  place-items: center;
  padding: 0;
  color: var(--white);
  background: rgba(11, 11, 11, 0.68);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  cursor: pointer;
  transform: translateY(-50%);
}

.case-gallery-prev {
  left: 14px;
}

.case-gallery-next {
  right: 14px;
}

.case-gallery-dots {
  position: absolute;
  z-index: 3;
  bottom: 14px;
  left: 50%;
  display: flex;
  gap: 8px;
  transform: translateX(-50%);
}

.case-gallery-arrow[hidden],
.case-gallery-dots[hidden] {
  display: none;
}

.case-gallery-dot {
  width: 12px;
  height: 12px;
  padding: 0;
  background: rgba(255, 255, 255, 0.48);
  border: 1px solid var(--white);
  border-radius: 50%;
  cursor: pointer;
}

.case-gallery-dot[aria-current="true"] {
  background: var(--white);
}

.case-post-copy {
  min-height: 0;
  overflow-y: auto;
  padding: clamp(30px, 4vw, 50px);
}

.case-post-copy h2 {
  margin-bottom: 24px;
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 500;
  line-height: 0.94;
}

.case-post-copy p {
  color: var(--graphite);
  font-size: 16px;
  line-height: 1.62;
}

.case-facts {
  display: grid;
  gap: 0;
  margin: 30px 0;
  border-top: 1px solid var(--gray-200);
}

.case-facts div {
  display: grid;
  grid-template-columns: 0.7fr 1fr;
  gap: 16px;
  padding: 15px 0;
  border-bottom: 1px solid var(--gray-200);
}

.case-facts dt,
.case-facts dd {
  margin: 0;
  font-size: 13px;
  line-height: 1.45;
}

.case-facts dt {
  color: var(--gray-700);
  font-weight: 700;
  text-transform: uppercase;
}

.case-contact {
  width: 100%;
}

.cookie-notice[hidden] {
  display: none;
}

.cookie-notice {
  position: fixed;
  z-index: 100;
  right: max(16px, env(safe-area-inset-right));
  bottom: max(16px, env(safe-area-inset-bottom));
  width: min(360px, calc(100% - 32px));
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--gray-200);
  border-radius: 14px;
  box-shadow: 0 18px 55px rgba(11, 11, 11, 0.16);
  backdrop-filter: blur(18px);
}

.cookie-notice p {
  margin: 0;
  color: var(--graphite);
  font-size: 12px;
  line-height: 1.45;
}

.cookie-notice a {
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cookie-notice button {
  min-width: 88px;
  min-height: 44px;
  padding: 10px 14px;
  color: var(--white);
  background: var(--black);
  border: 1px solid var(--black);
  border-radius: 10px;
  font: inherit;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}

.cookie-notice button:hover {
  background: var(--graphite);
}

.cookie-notice a:focus-visible,
.cookie-notice button:focus-visible,
.site-footer a:focus-visible,
.privacy-page a:focus-visible {
  outline: 3px solid #6b4eff;
  outline-offset: 3px;
}

.privacy-page {
  background: var(--gray-100);
}

.privacy-header {
  position: static;
  grid-template-columns: auto 1fr;
}

.privacy-header .header-link {
  justify-self: end;
}

.privacy-main {
  width: min(860px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(54px, 8vw, 96px) 0;
}

.privacy-intro {
  padding-bottom: 40px;
  border-bottom: 1px solid var(--gray-200);
}

.privacy-intro h1 {
  max-width: 760px;
  margin-bottom: 20px;
  font-size: clamp(42px, 7vw, 76px);
  line-height: 0.98;
  overflow-wrap: anywhere;
}

.privacy-intro .lead {
  margin-bottom: 0;
  color: var(--gray-700);
  font-size: 18px;
}

.privacy-content {
  padding-top: 24px;
}

.privacy-content section {
  padding: 30px 0;
  border-bottom: 1px solid var(--gray-200);
}

.privacy-content h2 {
  margin-bottom: 16px;
  font-size: clamp(25px, 4vw, 34px);
  font-weight: 500;
  line-height: 1.15;
}

.privacy-content h3 {
  margin: 24px 0 10px;
  font-size: 17px;
}

.privacy-content p,
.privacy-content li {
  color: var(--graphite);
  font-size: 16px;
  line-height: 1.7;
}

.privacy-content ul {
  padding-left: 22px;
}

.privacy-content a {
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.operator-card {
  display: grid;
  gap: 8px;
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 18px;
}

.operator-card p {
  margin: 0;
}

.privacy-updated {
  margin: 30px 0 0;
  color: var(--gray-700);
  font-size: 13px;
}

/* Multipage content */
.breadcrumb {
  width: min(var(--max), calc(100% - 40px));
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 auto;
  padding: 22px 0;
  color: var(--gray-700);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.breadcrumb a {
  text-decoration: underline;
  text-decoration-color: var(--gray-500);
  text-underline-offset: 4px;
}

.page-hero {
  width: min(var(--max), calc(100% - 40px));
  min-height: 620px;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.72fr);
  margin: 0 auto;
  border: 1px solid var(--gray-200);
}

.page-hero-copy {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  padding: clamp(40px, 6vw, 80px);
}

.page-hero-copy h1 {
  max-width: 720px;
  margin-bottom: 28px;
  font-size: clamp(48px, 6.1vw, 86px);
  line-height: 0.92;
  letter-spacing: -0.04em;
}

.page-hero-copy .lead {
  max-width: 620px;
}

.page-hero-media {
  min-height: 620px;
  margin: 0;
  overflow: hidden;
  background: var(--gray-100);
}

.page-hero-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.page-hero-profile .page-hero-media img {
  object-position: center 22%;
}

.page-section,
.next-step {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(72px, 9vw, 124px) 0;
}

.page-section-dark,
.page-section-muted {
  width: 100%;
  max-width: none;
  padding-inline: max(20px, calc((100vw - var(--max)) / 2));
}

.page-section-dark {
  color: var(--white);
  background: var(--black);
}

.page-section-dark .eyebrow,
.page-section-dark .page-section-heading > p:last-child {
  color: var(--gray-500);
}

.page-section-muted {
  background: var(--gray-100);
}

.page-section-heading {
  display: grid;
  grid-template-columns: minmax(120px, 0.42fr) minmax(0, 1fr) minmax(260px, 0.62fr);
  align-items: end;
  gap: 28px;
  margin-bottom: 48px;
}

.page-section-heading > * {
  margin-bottom: 0;
}

.page-section-heading h2,
.next-step h2,
.split-content h2,
.faq-intro h2 {
  font-size: clamp(38px, 5vw, 72px);
  font-weight: 500;
  line-height: 0.96;
  letter-spacing: -0.025em;
}

.page-section-heading > p:last-child,
.next-step p,
.faq-intro > p:last-child {
  color: var(--gray-700);
  font-size: 17px;
  line-height: 1.55;
}

.feature-grid,
.detail-grid,
.checklist-grid,
.contact-links-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--gray-200);
  border: 1px solid var(--gray-200);
}

.feature-grid-three,
.detail-grid-three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-card,
.detail-grid > article,
.checklist-grid > article {
  min-width: 0;
  padding: clamp(24px, 3vw, 38px);
  background: var(--white);
}

.feature-card > span,
.equipment-detail-index,
.message-template li > span {
  color: var(--gray-700);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.feature-card h3,
.detail-grid h3,
.checklist-grid h3 {
  margin: 42px 0 18px;
  font-size: clamp(23px, 2.5vw, 34px);
  font-weight: 500;
  line-height: 1.05;
}

.feature-card p,
.detail-grid p,
.checklist-grid li {
  color: var(--gray-700);
  font-size: 15px;
  line-height: 1.55;
}

.checklist-grid ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 20px;
}

.section-actions {
  display: flex;
  justify-content: center;
  margin-top: 36px;
}

.button-on-dark {
  color: var(--white);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.62);
}

.table-wrap {
  margin-top: 36px;
  overflow-x: auto;
  border: 1px solid #333333;
}

.table-wrap:focus-visible {
  outline: 3px solid #9c8cff;
  outline-offset: 3px;
}

.pricing-table {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
  color: var(--white);
  text-align: left;
}

.pricing-table th,
.pricing-table td {
  padding: 18px 20px;
  border-bottom: 1px solid #333333;
}

.pricing-table thead th {
  color: var(--gray-500);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.pricing-table tbody th {
  font-weight: 600;
}

.legal-note {
  max-width: 880px;
  margin: 30px 0 0;
  color: var(--gray-700);
  font-size: 13px;
  line-height: 1.55;
}

.next-step {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 48px;
  border-top: 1px solid var(--gray-200);
}

.next-step h2 {
  max-width: 760px;
  margin-bottom: 22px;
}

.next-step p {
  max-width: 680px;
  margin-bottom: 0;
}

.next-step-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.equipment-detail-list {
  border-top: 1px solid var(--gray-200);
}

.equipment-detail {
  display: grid;
  grid-template-columns: minmax(120px, 0.28fr) minmax(0, 1fr);
  gap: clamp(32px, 6vw, 92px);
  padding: clamp(38px, 6vw, 72px) 0;
  border-bottom: 1px solid var(--gray-200);
}

.equipment-detail h3 {
  margin-bottom: 20px;
  font-size: clamp(32px, 4vw, 58px);
  font-weight: 500;
  line-height: 0.98;
}

.equipment-detail > div:last-child > p {
  max-width: 740px;
  color: var(--graphite);
  font-size: 18px;
  line-height: 1.6;
}

.equipment-detail dl {
  max-width: 740px;
  margin: 28px 0 0;
  border-top: 1px solid var(--gray-200);
}

.equipment-detail dl div {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 20px;
  padding: 14px 0;
  border-bottom: 1px solid var(--gray-200);
}

.equipment-detail dt,
.equipment-detail dd {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
}

.equipment-detail dt {
  color: var(--gray-700);
  font-weight: 700;
  text-transform: uppercase;
}

.process-timeline {
  display: grid;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--gray-200);
}

.process-timeline li {
  display: grid;
  grid-template-columns: 90px minmax(0, 1fr);
  gap: clamp(20px, 5vw, 72px);
  padding: 30px 0;
  border-bottom: 1px solid var(--gray-200);
}

.process-timeline li > span {
  color: var(--gray-700);
  font-size: 12px;
  font-weight: 700;
}

.process-timeline h3 {
  margin-bottom: 12px;
  font-size: clamp(27px, 3vw, 42px);
  font-weight: 500;
}

.process-timeline p {
  max-width: 760px;
  margin-bottom: 0;
  color: var(--gray-700);
  font-size: 17px;
  line-height: 1.55;
}

.split-content {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(320px, 1fr);
  gap: clamp(40px, 8vw, 120px);
}

.prose p {
  color: var(--graphite);
  font-size: 18px;
  line-height: 1.65;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(250px, 0.4fr) minmax(0, 0.76fr);
  align-items: start;
  gap: clamp(44px, 9vw, 130px);
}

.faq-intro {
  position: sticky;
  top: 120px;
}

.faq-list {
  border-top: 1px solid var(--gray-200);
}

.faq-item {
  border-bottom: 1px solid var(--gray-200);
}

.faq-item summary {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 52px 20px 0;
  position: relative;
  font-size: clamp(19px, 2.2vw, 28px);
  font-weight: 600;
  line-height: 1.25;
  cursor: pointer;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::before,
.faq-item summary::after {
  content: "";
  position: absolute;
  right: 8px;
  width: 20px;
  height: 1px;
  background: var(--black);
  transition: transform 180ms ease;
}

.faq-item summary::after {
  transform: rotate(90deg);
}

.faq-item[open] summary::after {
  transform: rotate(0);
}

.faq-item > div {
  max-width: 760px;
  padding: 0 52px 26px 0;
}

.faq-item p {
  margin: 0;
  color: var(--gray-700);
  font-size: 17px;
  line-height: 1.65;
}

.contact-links-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.contact-link-card {
  min-width: 0;
  min-height: 220px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-direction: column;
  gap: 18px;
  padding: clamp(24px, 3vw, 38px);
  background: var(--white);
  transition: color 180ms ease, background 180ms ease;
}

.contact-link-card:hover,
.contact-link-card.primary {
  color: var(--white);
  background: var(--black);
}

.contact-link-card > span,
.contact-link-card small {
  color: inherit;
  opacity: 0.72;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.contact-link-card strong {
  max-width: 100%;
  font-size: clamp(20px, 2.2vw, 30px);
  font-weight: 500;
  overflow-wrap: anywhere;
}

.message-template ol {
  display: grid;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--gray-200);
}

.message-template li {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid var(--gray-200);
}

.message-template p {
  margin: 0;
  color: var(--gray-700);
  line-height: 1.55;
}

.message-template strong {
  color: var(--black);
}

.inline-link {
  color: var(--black);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.detail-grid .inline-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.platform-note-left {
  max-width: 720px;
  margin: 20px 0 0;
  text-align: left;
}

.contact-page-link {
  margin: 22px 0 0;
  font-size: 13px !important;
}

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

  .nav {
    position: absolute;
    z-index: 18;
    top: 100%;
    right: 0;
    left: 0;
    width: 100%;
    height: calc(100dvh - 72px);
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
    flex-direction: column;
    gap: 0;
    padding: 28px 20px max(28px, env(safe-area-inset-bottom));
    color: var(--black);
    background: var(--white);
    border-top: 1px solid var(--gray-200);
    opacity: 0;
    overflow-y: auto;
    pointer-events: none;
    transform: translateY(-16px);
    visibility: hidden;
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  }

  .nav a {
    min-height: 56px;
    display: flex;
    align-items: center;
    padding: 0 4px;
    border-bottom: 1px solid var(--gray-200);
    font-size: 18px;
  }

  .site-header[data-nav-open="true"] .nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    visibility: visible;
  }

  .header-link {
    justify-self: end;
  }

  .nav-toggle {
    display: block;
  }

  .privacy-header {
    grid-template-columns: auto 1fr;
  }

  .hero {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .hero-media {
    min-height: 68vh;
    order: 2;
  }

  .hero-copy {
    min-height: calc(100vh - 72px);
    order: 1;
  }

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

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

  .work-card,
  .work-card.featured {
    grid-column: auto;
    grid-row: auto;
    min-height: 520px;
  }

  .pricing-grid,
  .equipment-grid,
  .steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .cases-profile {
    grid-template-columns: 180px minmax(0, 1fr);
    gap: 40px;
  }

  .case-dialog {
    width: calc(100% - 32px);
  }

  .case-post-layout {
    grid-template-columns: minmax(0, 0.56fr) minmax(300px, 0.44fr);
  }
}

@media (max-width: 640px) {
  .site-header {
    min-height: 64px;
    padding: 10px 16px;
  }

  .brand {
    min-height: 44px;
  }

  .brand-name {
    font-size: 14px;
  }

  .brand-initials {
    display: none;
  }

  .header-link {
    font-size: 11px;
  }

  .nav {
    height: calc(100dvh - 64px);
  }

  .hero-copy {
    min-height: auto;
    padding: 34px 16px 42px;
  }

  .hero-copy h1 {
    margin-bottom: 18px;
    font-size: clamp(38px, 11.5vw, 44px);
    line-height: 0.98;
  }

  h1 span,
  .script {
    font-size: 56px;
  }

  .lead {
    margin-bottom: 22px;
    font-size: 16px;
    line-height: 1.38;
  }

  .service-area {
    margin-top: 20px;
    font-size: 9px;
  }

  .hero-proof,
  .page-hero-facts {
    margin-top: 24px;
  }

  .hero-proof li,
  .page-hero-facts li {
    padding: 13px 9px;
  }

  .hero-proof strong,
  .page-hero-facts strong {
    font-size: 12px;
  }

  .hero-proof span,
  .page-hero-facts span {
    font-size: 10px;
  }

  .hero-actions,
  .contact-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button,
  .text-action {
    width: 100%;
  }

  .text-action {
    display: inline-flex;
    justify-content: center;
    padding: 14px 0;
  }

  .hero-media {
    min-height: 62vh;
  }

  .hero-video-toggle {
    left: 12px;
    bottom: max(12px, env(safe-area-inset-bottom));
  }

  .section,
  .section-narrow {
    width: min(100% - 32px, var(--max));
    padding: 64px 0;
  }

  .intro h2,
  .about h2,
  .quote-band h2,
  .contact h2,
  .section-heading h2 {
    font-size: 36px;
  }

  .portfolio-grid,
  .pricing-grid,
  .equipment-grid,
  .steps {
    grid-template-columns: 1fr;
  }

  .portfolio-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 4px;
  }

  .work-card,
  .work-card.featured {
    min-height: 0;
    aspect-ratio: 9 / 16;
  }

  .price-card,
  .equipment-card,
  .steps article {
    min-height: auto;
  }

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

  .footer-links {
    justify-content: flex-start;
  }

  .cases-profile,
  .cases-feed {
    width: 100%;
  }

  .cases-profile {
    grid-template-columns: 92px minmax(0, 1fr);
    align-items: start;
    gap: 20px;
    padding: 44px 16px 48px;
  }

  .cases-profile-image {
    width: 92px;
    height: 92px;
    position: static;
  }

  .cases-profile-copy h1 {
    margin-bottom: 18px;
    font-size: 30px;
    line-height: 0.95;
  }

  .cases-profile-copy > p:not(.eyebrow, .cases-profile-area) {
    font-size: 16px;
  }

  .cases-profile-area {
    font-size: 10px;
  }

  .cases-profile-copy .button {
    width: 100%;
    min-height: 44px;
    padding: 9px 8px;
    font-size: 10px;
    line-height: 1.2;
  }

  .cases-feed {
    padding: 48px 0 80px;
  }

  .cases-feed-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
    padding: 0 16px;
  }

  .cases-feed-heading h2 {
    font-size: 36px;
  }

  .cases-grid {
    gap: 2px;
  }

  .case-tile-type {
    top: 8px;
    right: 8px;
    width: 32px;
    height: 32px;
  }

  .case-tile-type svg {
    width: 18px;
    height: 18px;
  }

  .case-tile-overlay {
    display: none;
  }

  .case-dialog {
    width: 100%;
    height: 100dvh;
    max-height: none;
    margin: 0;
    border-radius: 0;
  }

  .case-post {
    min-height: 100dvh;
    max-height: 100dvh;
    overflow-y: auto;
  }

  .case-post-header {
    position: sticky;
    z-index: 6;
    top: 0;
    min-height: 67px;
    padding: 9px 12px 9px 16px;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(16px);
  }

  .case-post-author img {
    width: 42px;
    height: 42px;
  }

  .case-post-layout {
    display: block;
  }

  .case-gallery {
    width: 100%;
    aspect-ratio: 9 / 16;
    max-height: none;
  }

  .case-media-slide video,
  .case-media-slide img {
    max-height: none;
  }

  .case-post-copy {
    overflow: visible;
    padding: 34px 20px max(48px, env(safe-area-inset-bottom));
  }

  .case-post-copy h2 {
    font-size: 42px;
  }

  .cookie-notice {
    right: max(8px, env(safe-area-inset-right));
    bottom: max(8px, env(safe-area-inset-bottom));
    left: max(8px, env(safe-area-inset-left));
    width: auto;
    gap: 10px;
    padding: 10px;
    border-radius: 12px;
  }

  .cookie-notice button {
    width: auto;
    min-width: 82px;
  }

  .privacy-main {
    width: min(100% - 32px, 860px);
    padding: 48px 0 64px;
  }

  .privacy-intro h1 {
    font-size: 32px;
  }

  .privacy-content p,
  .privacy-content li {
    font-size: 15px;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 1ms !important;
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
  }

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

  .work-card:hover video {
    transform: none;
  }

  .case-tile-button:hover img {
    transform: none;
  }
}

@media (max-width: 640px) and (max-height: 650px) {
  .cases-profile {
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 12px;
    padding: 24px 12px 32px;
  }

  .cases-profile-image {
    width: 64px;
    height: 64px;
  }

  .cases-profile-copy .eyebrow {
    margin-bottom: 8px;
    font-size: 10px;
  }

  .cases-profile-copy h1 {
    margin-bottom: 8px;
    font-size: 26px;
    line-height: 0.95;
  }

  .cases-profile-copy > p:not(.eyebrow, .cases-profile-area) {
    margin-bottom: 8px;
    font-size: 12px;
    line-height: 1.3;
  }

  .cases-profile-area {
    margin-bottom: 8px;
    font-size: 9px;
  }

  .cases-profile-copy .button {
    min-height: 44px;
    padding: 9px 8px;
    font-size: 10px;
    line-height: 1.2;
  }
}

@media (max-width: 980px) {
  .page-hero {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .page-hero-media {
    min-height: 520px;
    max-height: 72vh;
  }

  .page-section-heading,
  .next-step,
  .split-content,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .page-section-heading {
    align-items: start;
  }

  .feature-grid,
  .detail-grid,
  .checklist-grid,
  .contact-links-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .next-step {
    align-items: start;
  }

  .next-step-actions {
    justify-content: flex-start;
  }

  .faq-intro {
    position: static;
  }
}

@media (max-width: 640px) {
  .breadcrumb,
  .page-hero,
  .page-section,
  .next-step {
    width: min(100% - 32px, var(--max));
  }

  .breadcrumb {
    padding: 18px 0;
    font-size: 10px;
  }

  .page-hero {
    width: 100%;
    border-right: 0;
    border-left: 0;
  }

  .page-hero-copy {
    padding: 50px 20px 44px;
  }

  .page-hero-copy h1 {
    font-size: clamp(40px, 13vw, 52px);
    line-height: 0.96;
  }

  .page-hero-media {
    min-height: 440px;
    max-height: 68vh;
  }

  .page-section,
  .next-step {
    padding: 64px 0;
  }

  .page-section-dark,
  .page-section-muted {
    width: 100%;
    padding-inline: 16px;
  }

  .page-section-heading {
    gap: 16px;
    margin-bottom: 32px;
  }

  .page-section-heading h2,
  .next-step h2,
  .split-content h2,
  .faq-intro h2 {
    font-size: 38px;
  }

  .feature-grid,
  .feature-grid-three,
  .detail-grid,
  .detail-grid-three,
  .checklist-grid,
  .contact-links-grid {
    grid-template-columns: 1fr;
  }

  .feature-card h3,
  .detail-grid h3,
  .checklist-grid h3 {
    margin-top: 30px;
  }

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

  .equipment-detail {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .equipment-detail dl div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .process-timeline li {
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 12px;
  }

  .process-timeline p,
  .faq-item p,
  .prose p {
    font-size: 16px;
  }

  .faq-item summary {
    min-height: 68px;
    padding-right: 44px;
    font-size: 19px;
  }

  .faq-item > div {
    padding-right: 34px;
  }

  .contact-link-card {
    min-height: 180px;
  }

  .message-template li {
    grid-template-columns: 42px 1fr;
    gap: 10px;
  }
}

/* Homepage editorial refresh — release 12 */
.hero-manifesto {
  max-width: 430px;
  margin: 0 0 14px;
  color: var(--burgundy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(18px, 1.55vw, 23px);
  font-style: italic;
  line-height: 1.25;
}

.hero-copy .eyebrow {
  margin-bottom: 12px;
}

.hero-copy h1 {
  max-width: 690px;
  text-wrap: balance;
}

.button-dark:hover,
.button-dark:focus-visible {
  background: var(--burgundy-deep);
  opacity: 1;
}

.button-light:hover,
.button-light:focus-visible {
  color: var(--white);
  background: var(--burgundy-deep);
  opacity: 1;
}

.nav a {
  position: relative;
}

.nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  background: var(--burgundy);
  opacity: 0;
  transform: scaleX(0.3);
  transform-origin: center;
  transition: opacity 180ms var(--ease-out), transform 180ms var(--ease-out);
}

.nav a:hover::after,
.nav a:focus-visible::after,
.nav a[aria-current="page"]::after {
  opacity: 1;
  transform: scaleX(1);
}

.intro-editorial {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(420px, 0.92fr);
  gap: clamp(48px, 7vw, 96px);
  align-items: center;
}

.intro-editorial-copy .script {
  margin: 0 0 28px;
  color: var(--burgundy);
  font-size: clamp(58px, 7vw, 94px);
}

.intro-editorial-copy h2,
.about-editorial-copy h2,
.faq-preview-intro h2 {
  margin-bottom: 28px;
  font-size: clamp(40px, 5.1vw, 72px);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

.intro-lead {
  max-width: 650px;
  margin-bottom: 36px;
  color: var(--gray-700);
  font-size: 17px;
  line-height: 1.62;
}

.intro-proof {
  margin: 0;
  border-top: 1px solid var(--gray-200);
}

.intro-proof div {
  display: grid;
  grid-template-columns: minmax(150px, 0.45fr) 1fr;
  gap: 20px;
  padding: 16px 0;
  border-bottom: 1px solid var(--gray-200);
}

.intro-proof dt,
.intro-proof dd {
  margin: 0;
}

.intro-proof dt {
  color: var(--black);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.intro-proof dd {
  color: var(--gray-700);
  font-size: 14px;
  line-height: 1.5;
}

.story-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(210px, 1fr));
  gap: 8px;
  min-height: 650px;
}

.story-frame {
  position: relative;
  min-width: 0;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  background: var(--gray-100);
}

.story-frame-tall {
  grid-row: 1 / -1;
}

.story-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 11, 11, 0.02) 35%, rgba(11, 11, 11, 0.72));
  pointer-events: none;
}

.story-frame img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 240ms var(--ease-out);
}

.story-frame figcaption {
  position: absolute;
  z-index: 1;
  right: 16px;
  bottom: 16px;
  left: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
}

.story-frame figcaption span {
  color: rgba(255, 255, 255, 0.76);
  font-size: 10px;
}

.work-card::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background: var(--burgundy);
  opacity: 0.16;
  pointer-events: none;
  transition: opacity 220ms var(--ease-out);
}

.work-card:hover video,
.work-card:focus-within video {
  transform: none;
}

.work-card video {
  transition: transform 240ms var(--ease-out);
}

.work-card-caption {
  transition: transform 220ms var(--ease-out);
}

.work-card-caption small {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 18px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.42);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.82;
}

.work-card-caption small b {
  font-size: 15px;
  font-weight: 400;
}

.price-card {
  min-height: 330px;
  position: relative;
  isolation: isolate;
  justify-content: flex-start;
  overflow: hidden;
}

.price-card::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: var(--burgundy-deep);
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms var(--ease-out);
}

.price-card.accent::before {
  background: var(--burgundy-soft);
}

.price-card .price-card-kicker {
  margin: 0;
  color: inherit;
  opacity: 0.76;
  font-size: 11px;
  line-height: 1.4;
}

.price-card h3 {
  margin: 42px 0 26px;
}

.price-card ul {
  display: grid;
  gap: 9px;
  margin: 0 0 30px;
  padding: 0;
  color: inherit;
  list-style: none;
}

.price-card li {
  position: relative;
  padding-left: 16px;
  color: inherit;
  font-size: 14px;
  line-height: 1.4;
  opacity: 0.76;
}

.price-card li::before {
  content: "";
  position: absolute;
  top: 0.55em;
  left: 0;
  width: 5px;
  height: 5px;
  background: currentColor;
  border-radius: 50%;
}

.price-card > a {
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid currentColor;
  color: inherit;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  opacity: 0.78;
}

.price-card > a span {
  margin: 0;
  color: inherit;
  font-size: 16px;
  opacity: 1;
}

.price-card-badge {
  width: max-content;
  display: inline-flex !important;
  margin: -8px 0 18px !important;
  padding: 7px 10px;
  color: var(--white) !important;
  background: var(--burgundy) !important;
  border-radius: 999px;
  font-size: 9px !important;
  letter-spacing: 0.05em;
  opacity: 1 !important;
}

.equipment-grid-visual {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  background: transparent;
  border: 0;
}

.equipment-grid-visual .equipment-card {
  min-height: 390px;
  display: grid;
  grid-template-columns: minmax(150px, 0.78fr) minmax(0, 1fr);
  gap: clamp(22px, 3vw, 38px);
  align-items: stretch;
  padding: 0;
  overflow: hidden;
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
}

.equipment-card-media {
  min-height: 390px;
  overflow: hidden;
}

.equipment-card-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 240ms var(--ease-out);
}

.equipment-card-copy {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px 30px 30px 0;
}

.equipment-grid-visual .equipment-card h3 {
  margin: 16px 0 22px;
  font-size: clamp(24px, 2.2vw, 34px);
}

.equipment-grid-visual .equipment-card span {
  color: var(--burgundy);
}

.process-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.72fr);
  gap: clamp(40px, 7vw, 90px);
  align-items: stretch;
}

.process-track {
  position: relative;
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-track::before,
.process-track::after {
  content: "";
  position: absolute;
  top: 20px;
  bottom: 20px;
  left: 22px;
  width: 1px;
  background: var(--gray-200);
  transform-origin: top;
}

.process-track::after {
  background: var(--burgundy);
  transform: scaleY(0);
  transition: transform 800ms var(--ease-out);
}

.process-track.is-active::after {
  transform: scaleY(1);
}

.process-track li {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 22px;
  padding: 0 0 28px;
}

.process-track li:last-child {
  padding-bottom: 0;
}

.process-track li > span {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  margin: 0;
  color: var(--burgundy-deep);
  background: var(--paper);
  border: 1px solid var(--burgundy-soft);
  border-radius: 50%;
  font-size: 10px;
  font-weight: 800;
}

.process-track h3 {
  margin: 3px 0 8px;
  font-size: 22px;
  font-weight: 500;
}

.process-track p {
  max-width: 520px;
  margin: 0;
  color: var(--gray-700);
  font-size: 15px;
  line-height: 1.52;
}

.story-video {
  position: relative;
  overflow: hidden;
  background: var(--black);
}

.process-story {
  min-height: 650px;
}

.story-video video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.story-video button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 16px;
  color: var(--white);
  background: rgba(11, 11, 11, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  backdrop-filter: blur(12px);
  transition: opacity 180ms var(--ease-out), transform 140ms var(--ease-out);
}

.story-video button:hover,
.story-video button:focus-visible {
  opacity: 0.82;
}

.story-video button:active {
  transform: scale(0.98);
}

.story-video-icon {
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 8px solid var(--white);
}

.story-video[data-state="playing"] .story-video-icon {
  width: 3px;
  height: 11px;
  border: 0;
  background: var(--white);
  box-shadow: 6px 0 0 var(--white);
}

.process-story button {
  position: absolute;
  z-index: 2;
  top: 24px;
  left: 24px;
}

.process-story > p {
  position: absolute;
  z-index: 2;
  right: 24px;
  bottom: 24px;
  left: 24px;
  margin: 0;
  padding: 18px;
  color: var(--white);
  background: rgba(11, 11, 11, 0.72);
  font-size: 14px;
  line-height: 1.45;
  backdrop-filter: blur(12px);
}

.process-story > p span {
  display: block;
  margin-bottom: 7px;
  color: var(--burgundy-soft);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-editorial {
  display: grid;
  grid-template-columns: minmax(320px, 0.78fr) minmax(0, 1.12fr);
  gap: clamp(48px, 8vw, 104px);
  align-items: center;
}

.about-portrait {
  position: relative;
  min-height: 620px;
  margin: 0;
  overflow: hidden;
  background: var(--paper);
}

.about-portrait::after {
  content: "Екатерина · Artreels";
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  padding: 13px 15px;
  color: var(--white);
  background: rgba(11, 11, 11, 0.66);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.about-portrait img {
  width: 100%;
  height: 100%;
  min-height: 620px;
  display: block;
  object-fit: cover;
  object-position: center top;
}

.about-editorial-copy > p:not(.eyebrow) {
  max-width: 690px;
  color: var(--gray-700);
  font-size: 17px;
  line-height: 1.62;
}

.about-principles {
  display: grid;
  margin: 34px 0 0;
  padding: 0;
  border-top: 1px solid var(--gray-200);
  list-style: none;
}

.about-principles li {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 14px;
  padding: 15px 0;
  border-bottom: 1px solid var(--gray-200);
  font-size: 14px;
  line-height: 1.45;
}

.about-principles span {
  color: var(--burgundy);
  font-size: 10px;
  font-weight: 800;
}

.story-break {
  width: 100%;
  min-height: min(78vh, 820px);
}

.story-break::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(90deg, rgba(11, 11, 11, 0.8), rgba(11, 11, 11, 0.2) 72%);
  pointer-events: none;
}

.story-break-overlay {
  width: min(var(--max), calc(100% - 40px));
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  color: var(--white);
  transform: translate(-50%, -50%);
}

.story-break-overlay .script {
  margin: 0 0 20px;
  color: var(--burgundy-soft);
  font-size: clamp(58px, 9vw, 108px);
}

.story-break-overlay h2 {
  max-width: 850px;
  margin-bottom: 34px;
  font-size: clamp(42px, 6.2vw, 82px);
  font-weight: 500;
  line-height: 0.96;
  letter-spacing: -0.04em;
  text-wrap: balance;
}

.faq-preview {
  display: grid;
  grid-template-columns: minmax(320px, 0.78fr) minmax(0, 1.12fr);
  gap: clamp(48px, 7vw, 90px);
}

.faq-preview-intro {
  display: grid;
  grid-template-columns: 1fr;
  gap: 26px;
  align-items: start;
}

.faq-preview-intro h2 {
  font-size: clamp(38px, 4.4vw, 62px);
}

.faq-preview-intro p:last-child {
  color: var(--gray-700);
  font-size: 15px;
  line-height: 1.55;
}

.faq-preview-intro img {
  width: 100%;
  height: 280px;
  display: block;
  object-fit: cover;
  object-position: center 28%;
}

.faq-preview-list {
  border-top: 1px solid var(--black);
}

.faq-preview-list details {
  border-bottom: 1px solid var(--gray-200);
}

.faq-preview-list summary {
  min-height: 78px;
  position: relative;
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  padding: 18px 46px 18px 0;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.25;
  list-style: none;
  cursor: pointer;
}

.faq-preview-list summary::-webkit-details-marker {
  display: none;
}

.faq-preview-list summary::after {
  content: "+";
  position: absolute;
  right: 5px;
  color: var(--burgundy);
  font-size: 26px;
  font-weight: 300;
  transition: transform 180ms var(--ease-in-out);
}

.faq-preview-list details[open] summary::after {
  transform: rotate(45deg);
}

.faq-preview-list summary span {
  color: var(--burgundy);
  font-size: 10px;
  font-weight: 800;
}

.faq-preview-list details p {
  max-width: 650px;
  margin: -2px 0 24px 52px;
  color: var(--gray-700);
  font-size: 16px;
  line-height: 1.55;
}

.faq-preview .section-actions {
  grid-column: 2;
  margin-top: -52px;
}

.contact-card-editorial {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(300px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(40px, 7vw, 90px);
  padding: clamp(36px, 6vw, 72px);
  color: var(--white);
  background: var(--burgundy-deep);
  border: 0;
  text-align: left;
}

.contact-card-editorial .contact-card-copy {
  align-self: center;
}

.contact-card-editorial .eyebrow,
.contact-card-editorial .contact-card-copy > p,
.contact-card-editorial .contact-note,
.contact-card-editorial .platform-note,
.contact-card-editorial .social-links a {
  color: var(--burgundy-soft) !important;
}

.contact-card-editorial h2 {
  color: var(--white);
  text-wrap: balance;
}

.contact-prompt {
  margin-top: 30px;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.28);
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
  font-size: 14px !important;
}

.contact-prompt span {
  display: block;
  margin-bottom: 7px;
  color: var(--white);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-channel-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.contact-channel {
  min-width: 0;
  min-height: 112px;
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  padding: 18px;
  overflow: hidden;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.contact-channel::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: var(--white);
  opacity: 0;
  transition: opacity 180ms var(--ease-out);
}

.contact-channel-primary {
  grid-column: 1 / -1;
  color: var(--burgundy-deep);
  background: var(--paper);
  border-color: var(--paper);
}

.contact-channel-primary::before {
  background: var(--white);
}

.contact-channel-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--burgundy-deep);
  background: var(--burgundy-soft);
  border-radius: 50%;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.contact-channel-phone {
  font-size: 18px;
}

.contact-channel > span:nth-child(2) {
  min-width: 0;
  display: grid;
  gap: 5px;
}

.contact-channel strong {
  font-size: 15px;
}

.contact-channel small {
  color: inherit;
  font-size: 10px;
  line-height: 1.35;
  opacity: 0.72;
}

.contact-channel > b {
  font-size: 16px;
  font-weight: 400;
}

.contact-card-editorial .social-links,
.contact-card-editorial .platform-note,
.contact-card-editorial .contact-page-link {
  grid-column: 1 / -1;
}

.contact-card-editorial .social-links {
  justify-content: flex-start;
  margin-top: 0;
  border-color: rgba(255, 255, 255, 0.24);
}

.contact-card-editorial .platform-note {
  max-width: 720px;
  margin-right: 0;
  margin-left: 0;
  text-align: left;
}

.contact-card-editorial .contact-page-link .inline-link {
  color: var(--white);
}

@media (hover: hover) and (pointer: fine) {
  .story-frame:hover img,
  .equipment-grid-visual .equipment-card:hover img {
    transform: scale(1.025);
  }

  .work-card:hover video,
  .work-card:focus-within video {
    transform: scale(1.025);
  }

  .work-card:hover::before,
  .work-card:focus-within::before {
    opacity: 0;
  }

  .work-card:hover .work-card-caption,
  .work-card:focus-within .work-card-caption {
    transform: translateY(-5px);
  }

  .price-card:hover::before,
  .price-card:focus-within::before,
  .contact-channel:hover::before,
  .contact-channel:focus-visible::before {
    opacity: 1;
  }

  .contact-channel:hover,
  .contact-channel:focus-visible {
    color: var(--burgundy-deep);
  }
}

@media (max-width: 1080px) {
  .intro-editorial {
    grid-template-columns: 1fr;
  }

  .story-strip {
    min-height: 680px;
  }

  .equipment-grid-visual .equipment-card {
    grid-template-columns: 1fr;
  }

  .equipment-card-media {
    min-height: 360px;
  }

  .equipment-card-copy {
    padding: 28px;
  }
}

@media (max-width: 980px) {
  .nav a::after {
    display: none;
  }

  .process-layout,
  .about-editorial,
  .faq-preview,
  .contact-card-editorial {
    grid-template-columns: 1fr;
  }

  .process-story {
    min-height: 720px;
  }

  .about-portrait,
  .about-portrait img {
    min-height: 720px;
  }

  .faq-preview .section-actions {
    grid-column: 1;
    margin-top: 0;
  }
}

@media (max-width: 720px) {
  .intro-editorial-copy h2,
  .about-editorial-copy h2,
  .faq-preview-intro h2 {
    font-size: 38px;
  }

  .story-strip {
    grid-template-rows: repeat(2, minmax(180px, 1fr));
    min-height: 560px;
  }

  .equipment-grid-visual {
    grid-template-columns: 1fr;
  }

  .equipment-grid-visual .equipment-card {
    grid-template-columns: minmax(130px, 0.68fr) minmax(0, 1fr);
  }

  .equipment-card-media {
    min-height: 360px;
  }

  .equipment-card-copy {
    padding: 24px 24px 24px 0;
  }

  .faq-preview-intro {
    grid-template-columns: 1fr 110px;
  }

  .faq-preview-intro img {
    height: 210px;
  }

  .contact-channel-grid {
    grid-template-columns: 1fr;
  }

  .contact-channel-primary {
    grid-column: auto;
  }
}

@media (max-width: 640px) {
  .hero-manifesto {
    margin-bottom: 12px;
    font-size: 16px;
  }

  .hero-copy .eyebrow {
    margin-bottom: 8px;
    font-size: 9px;
  }

  .intro-editorial {
    gap: 42px;
  }

  .intro-editorial-copy .script {
    margin-bottom: 20px;
    font-size: 54px;
  }

  .intro-editorial-copy h2,
  .about-editorial-copy h2,
  .faq-preview-intro h2 {
    margin-bottom: 22px;
    font-size: 34px;
  }

  .intro-lead,
  .about-editorial-copy > p:not(.eyebrow) {
    font-size: 15px;
  }

  .intro-proof div {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .story-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: repeat(2, minmax(150px, 1fr));
    gap: 4px;
    min-height: 460px;
  }

  .story-frame figcaption {
    right: 10px;
    bottom: 10px;
    left: 10px;
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
    font-size: 11px;
  }

  .work-card-caption small {
    display: none;
  }

  .price-card {
    min-height: 300px;
  }

  .equipment-grid-visual .equipment-card {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .equipment-card-media {
    min-height: 390px;
  }

  .equipment-card-copy {
    padding: 24px;
  }

  .process-layout {
    gap: 42px;
  }

  .process-track li {
    gap: 15px;
  }

  .process-track h3 {
    font-size: 19px;
  }

  .process-track p {
    font-size: 14px;
  }

  .process-story {
    min-height: 580px;
  }

  .about-editorial {
    gap: 38px;
  }

  .about-portrait,
  .about-portrait img {
    min-height: 460px;
  }

  .story-break {
    min-height: 680px;
  }

  .story-break::after {
    background: linear-gradient(180deg, rgba(11, 11, 11, 0.36), rgba(11, 11, 11, 0.82));
  }

  .story-break-overlay {
    width: calc(100% - 32px);
    top: auto;
    bottom: 40px;
    transform: translateX(-50%);
  }

  .story-break-overlay .script {
    margin-bottom: 14px;
    font-size: 54px;
  }

  .story-break-overlay h2 {
    margin-bottom: 26px;
    font-size: 38px;
  }

  .faq-preview {
    gap: 36px;
  }

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

  .faq-preview-intro img {
    width: 100%;
    height: 280px;
  }

  .faq-preview-list summary {
    min-height: 72px;
    grid-template-columns: 28px minmax(0, 1fr);
    padding-right: 38px;
    font-size: 17px;
  }

  .faq-preview-list details p {
    margin-left: 42px;
    font-size: 15px;
  }

  .contact {
    width: 100%;
    padding: 0;
  }

  .contact-card-editorial {
    gap: 34px;
    padding: 54px 16px;
  }

  .contact-channel {
    min-height: 100px;
  }

  .contact-card-editorial .social-links {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  .story-frame img,
  .equipment-card-media img,
  .work-card video,
  .work-card-caption,
  .process-track::after,
  .nav a::after {
    transition: none !important;
    transform: none !important;
  }

  .process-track::after {
    transform: scaleY(1) !important;
  }
}

/* Editorial refinement — release 13 */
.hero-proof strong,
.page-hero-facts strong {
  font-size: clamp(17px, 1.45vw, 21px);
}

.button-dark:hover,
.button-dark:focus-visible {
  color: var(--white);
  background: var(--graphite);
  opacity: 1;
}

.button-light:hover,
.button-light:focus-visible {
  color: var(--black);
  background: var(--gray-100);
  opacity: 1;
}

.section-dark .button-on-dark:hover,
.section-dark .button-on-dark:focus-visible {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.9);
  opacity: 1;
}

.nav a::after {
  background: var(--black);
}

.intro-editorial-copy .script {
  color: var(--black);
  font-size: clamp(68px, 8.4vw, 112px);
  opacity: 0.88;
}

.work-card::before {
  background: var(--black);
  opacity: 0.08;
}

.price-card {
  min-height: 350px;
}

.price-card::before {
  background: rgba(255, 255, 255, 0.08);
}

.price-card.accent::before {
  background: rgba(11, 11, 11, 0.07);
}

.price-card h3 {
  margin: 38px 0 24px;
  font-size: clamp(42px, 4.5vw, 64px);
  letter-spacing: -0.035em;
}

.price-card-badge {
  color: var(--black) !important;
  background: var(--white) !important;
  border: 1px solid var(--black);
}

.price-card.accent .price-card-badge {
  color: var(--white) !important;
  background: var(--black) !important;
}

.equipment-showcase {
  display: grid;
  grid-template-columns: minmax(300px, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(40px, 7vw, 96px);
  align-items: stretch;
}

.equipment-showcase-media {
  min-height: 680px;
  position: relative;
  margin: 0;
  overflow: hidden;
  background: var(--gray-100);
}

.equipment-showcase-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(11, 11, 11, 0.76));
  pointer-events: none;
}

.equipment-showcase-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: filter 240ms var(--ease-out), transform 500ms var(--ease-out);
}

.equipment-showcase-media figcaption {
  position: absolute;
  z-index: 1;
  right: 22px;
  bottom: 22px;
  left: 22px;
  color: var(--white);
  font-size: 14px;
  line-height: 1.5;
}

.equipment-benefits {
  border-top: 1px solid var(--black);
}

.equipment-benefits article {
  display: grid;
  grid-template-columns: minmax(94px, 0.24fr) minmax(220px, 0.72fr) minmax(240px, 1fr);
  gap: clamp(20px, 3vw, 42px);
  align-items: start;
  padding: clamp(28px, 4vw, 46px) 0;
  border-bottom: 1px solid var(--gray-200);
}

.equipment-benefits span {
  color: var(--gray-700);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.4;
  text-transform: uppercase;
}

.equipment-benefits h3 {
  margin: 0;
  font-size: clamp(25px, 2.7vw, 39px);
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: -0.025em;
}

.equipment-benefits p {
  margin: 0;
  color: var(--gray-700);
  font-size: 15px;
  line-height: 1.58;
}

.equipment-benefits p strong {
  color: var(--black);
  font-weight: 700;
}

.process-track::after {
  background: var(--black);
}

.process-track li > span {
  color: var(--black);
  border-color: var(--gray-200);
}

.process-story > p span {
  color: var(--gray-200);
}

.about-editorial-copy > p:not(.eyebrow) {
  max-width: 740px;
  margin-bottom: 20px;
  color: var(--graphite);
  font-size: clamp(18px, 1.7vw, 21px);
  line-height: 1.62;
}

.story-break-overlay .script {
  color: rgba(255, 255, 255, 0.76);
}

.story-break-overlay .story-video-icon {
  border-top-width: 7px;
  border-bottom-width: 7px;
  border-left-width: 11px;
}

.story-break-overlay button {
  min-height: 60px;
  padding: 16px 24px;
  font-size: 13px;
  letter-spacing: 0.035em;
}

.faq-preview-list summary::after,
.faq-preview-list summary span {
  color: var(--black);
}

.contact-card-editorial {
  color: var(--white);
  background: var(--black);
  border: 1px solid var(--black);
}

.contact-card-editorial .eyebrow,
.contact-card-editorial .contact-card-copy > p,
.contact-card-editorial .contact-note,
.contact-card-editorial .platform-note,
.contact-card-editorial .social-links a {
  color: var(--gray-200) !important;
}

.contact-card-editorial h2,
.contact-prompt span {
  color: var(--white);
}

.contact-prompt {
  border-color: rgba(255, 255, 255, 0.24);
}

.contact-channel {
  color: var(--white);
  background: var(--graphite);
  border-color: rgba(255, 255, 255, 0.28);
  transition: color 180ms var(--ease-out), border-color 180ms var(--ease-out), transform 180ms var(--ease-out);
}

.contact-channel::before {
  background: rgba(255, 255, 255, 0.08);
}

.contact-channel-primary {
  color: var(--black);
  background: var(--white);
  border-color: var(--white);
}

.contact-channel-primary::before {
  background: var(--gray-100);
}

.contact-channel-mark {
  overflow: hidden;
  padding: 6px;
  background: var(--white);
  border-radius: 10px;
}

.contact-channel-mark img {
  width: 100%;
  height: 100%;
  display: block;
  filter: grayscale(1);
}

.contact-card-editorial .social-links {
  border-color: rgba(255, 255, 255, 0.24);
}

.contact-card-editorial .contact-page-link .inline-link {
  color: var(--white);
}

.package-list {
  border-top: 1px solid rgba(255, 255, 255, 0.48);
}

.package-row {
  display: grid;
  grid-template-columns: 52px minmax(180px, 0.7fr) minmax(250px, 1fr) minmax(170px, auto);
  gap: clamp(20px, 4vw, 58px);
  align-items: center;
  padding: clamp(28px, 4vw, 44px) 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.24);
}

.package-row-featured {
  margin-inline: -24px;
  padding-inline: 24px;
  color: var(--black);
  background: var(--white);
}

.package-index,
.package-row p,
.package-row span {
  margin: 0;
  color: inherit;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.4;
  text-transform: uppercase;
  opacity: 0.7;
}

.package-row h3 {
  margin: 8px 0 0;
  font-size: clamp(34px, 4.4vw, 58px);
  font-weight: 500;
  line-height: 0.95;
}

.package-row > div:nth-child(3) {
  display: grid;
  gap: 9px;
}

.package-row > div:nth-child(3) strong {
  font-size: 18px;
  font-weight: 600;
}

.package-row .package-price {
  justify-self: end;
  font-size: clamp(28px, 3.6vw, 46px);
  font-weight: 500;
  letter-spacing: -0.035em;
  white-space: nowrap;
  opacity: 1;
}

.service-inclusions,
.condition-list {
  border-top: 1px solid var(--black);
}

.service-inclusions article {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: clamp(20px, 4vw, 54px);
  padding: clamp(26px, 3.6vw, 42px) 0;
  border-bottom: 1px solid var(--gray-200);
}

.service-inclusions article > span,
.condition-list article > span {
  color: var(--gray-700);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.4;
  text-transform: uppercase;
}

.service-inclusions h3,
.condition-list h3 {
  margin: 0 0 10px;
  font-size: clamp(25px, 3vw, 40px);
  font-weight: 500;
  line-height: 1.05;
}

.service-inclusions p,
.condition-list p {
  max-width: 760px;
  margin: 0;
  color: var(--gray-700);
  font-size: 16px;
  line-height: 1.58;
}

.condition-list article {
  display: grid;
  grid-template-columns: minmax(100px, 0.25fr) minmax(240px, 0.72fr) minmax(280px, 1fr);
  gap: clamp(22px, 4vw, 58px);
  align-items: start;
  padding: clamp(26px, 3.6vw, 42px) 0;
  border-bottom: 1px solid var(--gray-200);
}

.faq-page-direct {
  padding-top: clamp(42px, 6vw, 82px);
}

.faq-page-direct .faq-intro h1 {
  max-width: 560px;
  margin-bottom: 28px;
  font-size: clamp(48px, 6vw, 82px);
  line-height: 0.93;
  letter-spacing: -0.04em;
}

.faq-page-direct .faq-intro .inline-link {
  display: inline-block;
  margin-top: 18px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.contact-link-card {
  position: relative;
  padding-top: 86px;
}

.contact-link-icon {
  width: 42px;
  height: 42px;
  position: absolute;
  top: 28px;
  left: clamp(24px, 3vw, 38px);
  display: block;
  border-radius: 10px;
}

@media (hover: hover) and (pointer: fine) {
  .equipment-showcase-media:hover img {
    filter: contrast(1.04) brightness(0.9);
    transform: scale(1.025);
  }

  .contact-channel:hover,
  .contact-channel:focus-visible {
    color: var(--white);
    border-color: var(--white);
    transform: translateY(-2px);
  }

  .contact-channel-primary:hover,
  .contact-channel-primary:focus-visible {
    color: var(--black);
    border-color: var(--white);
  }

  .price-card:hover > a span,
  .price-card:focus-within > a span,
  .contact-channel:hover > b,
  .contact-channel:focus-visible > b {
    transform: translate(3px, -3px);
  }

  .price-card > a span,
  .contact-channel > b {
    transition: transform 180ms var(--ease-out);
  }

  .contact-link-card:hover {
    color: var(--black);
    background: var(--gray-100);
  }

  .contact-link-card.primary:hover {
    color: var(--white);
    background: var(--graphite);
  }
}

@media (max-width: 980px) {
  .equipment-showcase {
    grid-template-columns: 1fr;
  }

  .equipment-showcase-media {
    min-height: 640px;
  }

  .package-row {
    grid-template-columns: 42px minmax(160px, 0.62fr) minmax(220px, 1fr) auto;
    gap: 20px;
  }

  .condition-list article {
    grid-template-columns: 100px minmax(220px, 0.7fr) minmax(0, 1fr);
    gap: 24px;
  }
}

@media (max-width: 720px) {
  .equipment-benefits article,
  .condition-list article {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .equipment-showcase-media {
    min-height: 520px;
  }

  .package-row {
    grid-template-columns: 34px minmax(0, 1fr) auto;
    align-items: start;
  }

  .package-row > div:nth-child(3) {
    grid-column: 2 / -1;
  }

  .package-row .package-price {
    grid-column: 3;
    grid-row: 1;
    font-size: 25px;
  }

  .faq-page-direct {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .faq-page-direct .faq-intro {
    position: static;
  }
}

@media (max-width: 480px) {
  .hero-proof strong,
  .page-hero-facts strong {
    font-size: 16px;
  }

  .intro-editorial-copy .script {
    font-size: 62px;
  }

  .equipment-showcase-media {
    min-height: 460px;
  }

  .equipment-benefits h3 {
    font-size: 27px;
  }

  .package-row {
    grid-template-columns: 28px minmax(0, 1fr);
  }

  .package-row .package-price,
  .package-row > div:nth-child(3) {
    grid-column: 2;
  }

  .package-row .package-price {
    grid-row: auto;
    justify-self: start;
    margin-top: 10px;
    font-size: 32px;
  }

  .service-inclusions article {
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 12px;
  }

  .faq-page-direct .faq-intro h1 {
    font-size: 46px;
  }

  .story-break-overlay button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal.is-visible {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .equipment-showcase-media img,
  .contact-channel,
  .price-card > a span,
  .contact-channel > b {
    transition: none !important;
    transform: none !important;
  }
}

/* Responsive hardening — release 18 */
.page-section-heading > * {
  min-width: 0;
}

@media (max-width: 1100px) {
  .equipment-showcase {
    grid-template-columns: 1fr;
  }

  .equipment-showcase-media {
    min-height: 640px;
  }

  .package-row-featured {
    margin-inline: 0;
  }
}

@media (max-width: 980px) {
  .header-link {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
}

@media (max-width: 640px) {
  .page-section-heading h2 {
    font-size: clamp(31px, 9vw, 38px);
    overflow-wrap: anywhere;
    hyphens: none;
  }

  .work-card h3 {
    font-size: clamp(14px, 4.4vw, 18px);
    overflow-wrap: anywhere;
  }

  .site-footer a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }
}
