:root {
  --bg: #11110f;
  --bg-soft: #151412;
  --card: rgba(31, 29, 26, 0.88);
  --card-strong: rgba(22, 20, 18, 0.96);
  --paper: #f3ede2;
  --paper-soft: rgba(243, 237, 226, 0.76);
  --accent: #f26c4f;
  --line: rgba(243, 237, 226, 0.12);
  --line-strong: rgba(243, 237, 226, 0.25);
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.35);
  --gutter: clamp(20px, 3.4vw, 48px);
  --content-width: 1320px;
  --serif: 'Prata', Georgia, serif;
  --sans: 'Manrope', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 110px; }
body {
  margin: 0;
  min-width: 320px;
  font-family: var(--sans);
  background:
    radial-gradient(circle at 20% 0%, rgba(243, 171, 95, 0.08), transparent 30%),
    radial-gradient(circle at 80% 20%, rgba(242, 108, 79, 0.06), transparent 34%),
    linear-gradient(180deg, #11110f 0%, #0f0f0d 100%);
  color: var(--paper);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img, video { display: block; max-width: 100%; }
button, input, textarea { font: inherit; }

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.08;
  mix-blend-mode: soft-light;
  background-image:
    linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px),
    linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px);
  background-size: 4px 4px;
  z-index: 2;
}

.section-pad,
.site-header,
.site-footer {
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}
.site-header > *,
.hero,
.services > *,
.partners > *,
.testimonials > *,
.contact,
.site-footer {
  max-width: var(--content-width);
  margin-left: auto;
  margin-right: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: 88px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(0px);
  transition: background .25s ease, border-color .25s ease, backdrop-filter .25s ease;
}
.site-header.scrolled {
  background: rgba(17,17,15,.84);
  border-color: var(--line);
  backdrop-filter: blur(12px);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}
.brand-mark,
.language-button {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.75);
  color: #fff;
  background: rgba(255,255,255,.02);
  letter-spacing: .12em;
  font-weight: 700;
  font-size: 14px;
  backdrop-filter: blur(10px);
}
.brand-name {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .01em;
}
.desktop-nav {
  display: flex;
  justify-self: center;
  align-items: center;
  gap: 34px;
  min-width: 0;
}
.desktop-nav a,
.header-cta {
  position: relative;
  font-size: 14px;
  color: var(--paper-soft);
  transition: color .2s ease;
}
.desktop-nav a::after,
.header-cta::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .22s ease;
}
.desktop-nav a:hover,
.header-cta:hover { color: var(--paper); }
.desktop-nav a:hover::after,
.header-cta:hover::after { transform: scaleX(1); }
.header-actions {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 12px;
  position: relative;
}
.header-cta {
  padding-bottom: 2px;
  white-space: nowrap;
}
.language-switcher { position: relative; }
.language-button {
  cursor: pointer;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.language-button:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.92);
}
.language-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  z-index: 60;
  display: flex;
  gap: 8px;
  padding: 8px;
  border: 1px solid var(--line-strong);
  background: rgba(17,17,15,.94);
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
  backdrop-filter: blur(16px);
}
.language-menu.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.language-menu button {
  min-width: 54px;
  height: 46px;
  border: 1px solid rgba(255,255,255,.75);
  background: rgba(255,255,255,.02);
  color: var(--paper-soft);
  cursor: pointer;
  font-weight: 700;
  letter-spacing: .12em;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.language-menu button:hover,
.language-menu button.is-active {
  background: var(--paper);
  color: var(--bg);
  border-color: var(--paper);
}
.menu-button {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--paper);
  cursor: pointer;
}
.menu-button span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 6px auto;
  background: currentColor;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(40px, 6vw, 88px);
  align-items: center;
  min-height: min(100vh, 980px);
  padding-top: 126px;
  padding-bottom: 88px;
}
.eyebrow {
  margin: 0 0 18px;
  color: var(--paper-soft);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}
h1, h2, h3 {
  margin: 0;
  font-weight: 400;
  line-height: .98;
  letter-spacing: -.03em;
}
h1, h2 {
  font-family: var(--serif);
  color: var(--paper);
}
h1 { font-size: clamp(62px, 6.2vw, 106px); }
h2 { font-size: clamp(42px, 4.3vw, 76px); }
h3 { font-size: clamp(28px, 2.4vw, 40px); }
h1 em,
h2 em {
  font-style: italic;
  color: var(--accent);
}
h2 .title-primary,
h2 .title-secondary {
  display: block;
}
h2 .title-secondary {
  margin-top: .18em;
}
.hero-lead {
  margin: 26px 0 0;
  max-width: 600px;
  font-size: 18px;
  color: var(--paper-soft);
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 34px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 22px;
  border: 1px solid transparent;
  background: var(--paper);
  color: var(--bg);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}
.button:hover { transform: translateY(-1px); }
.button-outline {
  border-color: var(--line-strong);
  background: transparent;
  color: var(--paper);
}
.button-outline:hover {
  background: var(--paper);
  color: var(--bg);
  border-color: var(--paper);
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--paper-soft);
  font-size: 14px;
}
.text-link::after {
  content: '↗';
  font-size: 14px;
  transform: translateY(-1px);
}
.text-link:hover { color: var(--paper); }
.showreel {
  width: 100%;
  justify-self: end;
}
.youtube-frame {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid var(--line-strong);
  background: linear-gradient(180deg, rgba(242,108,79,.06), rgba(255,255,255,.01));
  box-shadow: var(--shadow);
}
.youtube-frame-wide { aspect-ratio: 16 / 9; }
.youtube-frame iframe,
.youtube-frame .media-placeholder {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.youtube-frame iframe {
  border: 0;
  background: #0c0c0b;
}
.media-placeholder {
  display: grid;
  place-items: center;
  gap: 10px;
  text-align: center;
  padding: 26px;
  pointer-events: none;
}
.media-placeholder span {
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--paper-soft);
}
.media-placeholder strong {
  font-family: var(--serif);
  font-size: clamp(40px, 5vw, 70px);
}
.media-placeholder small {
  color: rgba(243,237,226,.54);
  font-size: 12px;
}
.youtube-frame.has-video .media-placeholder { display: none; }

.hero-meta {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 10px;
}
.hero-meta div {
  padding-top: 22px;
  border-top: 1px solid var(--line-strong);
  display: grid;
  gap: 10px;
}
.hero-meta span {
  font-size: 12px;
  color: var(--accent);
}
.hero-meta strong {
  font-size: 15px;
  font-weight: 600;
}

.services,
.testimonials {
  padding-top: 150px;
  padding-bottom: 150px;
}
.partners {
  padding-top: 12px;
  padding-bottom: 42px;
}
.section-heading {
  display: grid;
  grid-template-columns: minmax(190px, .34fr) minmax(0, 1fr);
  gap: 26px;
  align-items: start;
  margin-bottom: 68px;
}
.section-heading .eyebrow { padding-top: 12px; margin-bottom: 0; }
.section-heading-services { margin-bottom: 58px; }
.service-card {
  display: grid;
  grid-template-columns: 64px minmax(260px, .82fr) minmax(0, 1.18fr);
  gap: 28px;
  align-items: start;
  padding: 38px 0 42px;
  border-top: 1px solid var(--line);
}
.service-grid .service-card:last-child { border-bottom: 1px solid var(--line); }
.service-card-featured {
  padding: 38px 34px 44px;
  margin-bottom: 46px;
  border: 1px solid var(--line-strong);
  background: linear-gradient(180deg, rgba(242,108,79,.08), rgba(255,255,255,.015));
}
.service-index {
  color: var(--accent);
  font-size: 14px;
  letter-spacing: .08em;
}
.service-kicker {
  display: block;
  margin-bottom: 12px;
  color: var(--paper-soft);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.service-description p { margin: 0; color: var(--paper-soft); }
.service-description ul {
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}
.service-description li {
  padding-left: 18px;
  position: relative;
  color: var(--paper-soft);
}
.service-description li::before {
  content: '';
  position: absolute;
  left: 0;
  top: .72em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
}
.service-note {
  margin-top: 18px !important;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.production-parts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}
.production-part {
  padding: 18px 20px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.02);
}
.production-part span,
.service-price span {
  display: block;
  color: var(--paper-soft);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.production-part p { margin-top: 12px; }
.service-price {
  display: grid;
  gap: 16px;
  justify-items: start;
}
.service-price strong {
  font-family: var(--serif);
  font-size: clamp(30px, 2.8vw, 52px);
  letter-spacing: -.03em;
}
.price-note {
  max-width: 720px;
  margin-top: 20px;
  margin-left: 92px;
  color: var(--paper-soft);
  font-size: 12px;
}

.partners-bar {
  border-top: 1px solid var(--line);
  padding-top: 34px;
  display: grid;
  gap: 18px;
}
.partners-bar .eyebrow { margin-bottom: 0; }
.logo-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  align-items: stretch;
}
.logo-card {
  display: block;
  min-width: 0;
  color: var(--paper);
}
.logo-card-inner {
  height: 84px;
  padding: 10px 16px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.75);
  background: rgba(255,255,255,.02);
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
}
.logo-card:hover .logo-card-inner {
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.92);
  transform: translateY(-1px);
}
.partner-logo {
  width: auto;
  max-width: 100%;
  max-height: 30px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.98;
}
.partner-logo-muzarts { max-height: 44px; }
.partner-logo-todes { max-height: 28px; }
.partner-logo-mamt { max-height: 42px; }
.bolshoi-lockup {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.bolshoi-main {
  font-family: var(--serif);
  font-size: clamp(18px, 1.85vw, 28px);
  line-height: .9;
  letter-spacing: -.03em;
}
.bolshoi-sub {
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--paper-soft);
}

.testimonial-grid-line {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  align-items: start;
}
.testimonial-item { min-width: 0; }
.review-media-card { display: grid; gap: 14px; }
.review-video-frame {
  padding: 16px;
  border: 1px solid var(--line-strong);
  background: linear-gradient(180deg, rgba(242,108,79,.05), rgba(255,255,255,.02));
  box-shadow: 0 18px 50px rgba(0,0,0,.2);
}
.review-video-frame video {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  background: #090909;
  border-radius: 22px;
}
.review-label {
  margin: 0;
  color: var(--paper-soft);
  font-size: 14px;
}
.review-carousel {
  position: relative;
  aspect-ratio: 1 / 1;
  padding: 16px;
  border: 1px solid var(--line-strong);
  background: linear-gradient(180deg, rgba(242,108,79,.05), rgba(255,255,255,.02));
  box-shadow: 0 18px 50px rgba(0,0,0,.2);
  overflow: hidden;
}
.carousel-track {
  position: absolute;
  inset: 16px 16px 66px;
}
.carousel-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transform: scale(1.02);
  transition: opacity .55s ease, transform .7s ease, visibility .55s ease;
  display: grid;
  place-items: center;
}
.carousel-slide.is-active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}
.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: transparent;
}
.carousel-controls {
  position: absolute;
  z-index: 3;
  left: 16px;
  right: 16px;
  bottom: 16px;
  display: grid;
  grid-template-columns: 44px 1fr 44px;
  align-items: center;
  gap: 8px;
}
.carousel-button {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.75);
  background: rgba(17,17,15,.66);
  color: #fff;
  cursor: pointer;
  backdrop-filter: blur(8px);
  transition: background .2s ease, color .2s ease;
}
.carousel-button:hover { background: var(--paper); color: var(--bg); }
.carousel-button svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: square;
  stroke-linejoin: miter;
}
.carousel-counter {
  justify-self: center;
  padding: 9px 12px;
  background: rgba(17,17,15,.62);
  color: #fff;
  font-size: 10px;
  letter-spacing: .14em;
  backdrop-filter: blur(8px);
}

.contact {
  display: grid;
  grid-template-columns: .83fr 1.17fr;
  gap: clamp(60px, 9vw, 140px);
  padding-top: 150px;
  padding-bottom: 150px;
  border-top: 1px solid var(--line);
}
.contact-copy > p:not(.eyebrow) {
  max-width: 520px;
  margin-top: 30px;
  color: var(--paper-soft);
}
.contact-email {
  display: inline-block;
  margin-top: 26px;
  border-bottom: 1px solid var(--line-strong);
  font-size: 13px;
}
.contact-form {
  display: grid;
  gap: 28px;
  align-content: start;
  padding-top: 4px;
}
.contact-form label { display: grid; gap: 10px; }
.contact-form label > span {
  color: var(--paper-soft);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 0 15px;
  border: 0;
  border-bottom: 1px solid var(--line-strong);
  border-radius: 0;
  outline: none;
  resize: vertical;
  background: transparent;
  color: var(--paper);
  transition: border-color .2s ease;
}
.contact-form input:focus,
.contact-form textarea:focus { border-color: var(--paper); }
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: rgba(200,194,183,.48); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.submit-button { justify-self: start; min-width: 190px; margin-top: 8px; }
.submit-button.is-sent { background: var(--paper); color: var(--bg); }
.form-status { min-height: 1.5em; margin: -12px 0 0; color: var(--paper-soft); font-size: 11px; }

.site-footer {
  padding-top: 50px;
  padding-bottom: 32px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  border-top: 1px solid var(--line);
  color: var(--paper-soft);
  font-size: 12px;
}
.footer-brand { display: flex; align-items: center; gap: 13px; color: var(--paper); }
.footer-brand strong { font-size: 13px; }
.footer-links { justify-self: end; display: flex; gap: 26px; }
.footer-links a { border-bottom: 1px solid transparent; }
.footer-links a:hover { border-color: currentColor; }
.footer-bottom {
  grid-column: 1 / -1;
  margin-top: 42px;
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  font-size: 9px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.mobile-menu {
  position: fixed;
  z-index: 45;
  inset: 0;
  padding: 130px var(--gutter) 60px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  background: rgba(17,17,15,.98);
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s ease, visibility .25s ease;
}
.mobile-menu.open { opacity: 1; visibility: visible; }
.mobile-menu a { font-family: var(--serif); font-size: 42px; }
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s ease, transform .8s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1200px) {
  .desktop-nav { gap: 26px; }
  .header-cta { display: none; }
  .hero { grid-template-columns: 1fr; padding-top: 144px; }
  .hero-copy { max-width: 880px; }
  .showreel { width: 100%; }
}

@media (max-width: 1120px) {
  .desktop-nav { display: none; }
  .site-header { grid-template-columns: 1fr auto; }
  .header-actions { grid-column: 2; }
  .menu-button { display: block; }
  .service-card,
  .service-grid .service-card { grid-template-columns: 55px minmax(210px, .75fr) minmax(260px, 1.25fr); }
  .service-price { grid-column: 3; }
  .service-card-featured { padding-inline: 30px; }
  .contact { gap: 70px; }
}

@media (max-width: 900px) {
  .testimonial-grid-line { grid-template-columns: 1fr; gap: 22px; }
  .logo-row { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 820px) {
  .site-header { height: 72px; }
  .brand-name { display: none; }
  .header-actions { gap: 10px; }
  .hero { min-height: auto; padding-top: 126px; padding-bottom: 52px; gap: 48px; }
  h1 { font-size: clamp(46px, 12vw, 72px); }
  .hero-meta { grid-template-columns: 1fr; gap: 14px; }
  .section-heading { grid-template-columns: 1fr; gap: 10px; margin-bottom: 52px; }
  .section-heading .eyebrow { padding-top: 0; }
  .services,
  .testimonials { padding-top: 115px; padding-bottom: 120px; }
  .partners { padding-top: 0; padding-bottom: 34px; }
  .service-card,
  .service-grid .service-card {
    grid-template-columns: 42px 1fr;
    gap: 24px 18px;
    padding: 34px 0 38px;
  }
  .service-description,
  .service-price { grid-column: 2; }
  .service-card-featured { padding: 34px 24px 38px; margin-bottom: 42px; }
  .production-parts { grid-template-columns: 1fr; gap: 18px; }
  .price-note { margin-left: 60px; }
  .contact { grid-template-columns: 1fr; padding-top: 115px; padding-bottom: 120px; }
  .site-footer { grid-template-columns: 1fr 1fr; }
  .footer-links { grid-column: 1 / -1; justify-self: start; }
  .language-menu {
    right: 0;
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  :root { --gutter: 20px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 22px; }
  .button { width: 100%; }
  .review-video-frame,
  .review-carousel { padding: 10px; }
  .carousel-track { inset: 10px 10px 58px; }
  .language-button,
  .brand-mark { width: 42px; height: 42px; }
  .logo-row { grid-template-columns: 1fr 1fr; gap: 10px; }
  .logo-card-inner { height: 76px; padding: 8px 10px; }
  .partner-logo-mamt { max-height: 36px; }
  .partner-logo-muzarts { max-height: 38px; }
  .partner-logo-todes { max-height: 24px; }
  .showreel { margin-inline: calc(var(--gutter) * -1); width: calc(100% + (var(--gutter) * 2)); }
  .youtube-frame-wide { border-left: 0; border-right: 0; border-radius: 0; }
  .service-card-featured { margin-inline: -8px; }
  .service-description,
  .service-price { grid-column: 1 / -1; }
  .service-title { grid-column: 2; }
  .price-note { margin-left: 0; }
  .form-row { grid-template-columns: 1fr; }
  .submit-button { width: 100%; }
  .site-footer { grid-template-columns: 1fr; }
  .footer-links { grid-column: auto; flex-wrap: wrap; }
  .footer-bottom { display: grid; gap: 9px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* V5 — tighter rhythm, clearer pipeline and desktop offer alignment */
.pipeline-slogan {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: -2px;
  color: var(--paper-soft);
}
.pipeline-slogan-line {
  flex: 0 0 42px;
  width: 42px;
  height: 1px;
  background: var(--accent);
}
.pipeline-slogan p {
  margin: 0;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.hero { padding-bottom: 56px; }
.services { padding-top: 92px; padding-bottom: 64px; }
.partners { padding-top: 0; padding-bottom: 18px; }
.testimonials { padding-top: 78px; padding-bottom: 72px; }
.contact { padding-top: 96px; padding-bottom: 90px; }
.section-heading { margin-bottom: 48px; }
.section-heading-services { margin-bottom: 44px; }

.service-card,
.service-grid .service-card {
  grid-template-columns: 64px minmax(250px, .9fr) minmax(360px, 1.35fr) minmax(150px, .38fr);
  gap: 26px;
}
.service-card-featured {
  min-height: 0;
  padding-top: 36px;
  padding-bottom: 38px;
  margin-bottom: 34px;
}
.service-price {
  grid-column: auto;
  align-self: start;
  min-width: 0;
}
.service-price strong {
  white-space: nowrap;
  font-size: clamp(28px, 2.25vw, 44px);
  line-height: 1;
}
.price-note {
  margin-top: 16px;
  margin-bottom: 0;
}

.partners-bar {
  padding-top: 28px;
  gap: 14px;
}
.logo-card-inner { height: 80px; }
.logo-card-bolshoi .logo-card-inner,
.bolshoi-lockup {
  min-height: 100%;
  justify-content: center;
  align-items: center;
}
.bolshoi-main { line-height: 1; }
.partner-logo-todes {
  width: min(72%, 230px);
  max-height: 34px;
}

@media (max-width: 1120px) {
  .service-card,
  .service-grid .service-card {
    grid-template-columns: 55px minmax(210px, .75fr) minmax(260px, 1.25fr);
  }
  .service-price { grid-column: 3; }
}

@media (max-width: 820px) {
  .hero { padding-bottom: 44px; }
  .services,
  .testimonials { padding-top: 82px; padding-bottom: 72px; }
  .partners { padding-bottom: 10px; }
  .contact { padding-top: 82px; padding-bottom: 78px; }
  .service-card,
  .service-grid .service-card {
    grid-template-columns: 42px 1fr;
  }
  .service-description,
  .service-price { grid-column: 2; }
  .pipeline-slogan { margin-top: 2px; }
}

@media (max-width: 560px) {
  .pipeline-slogan {
    gap: 10px;
  }
  .pipeline-slogan-line {
    flex-basis: 28px;
    width: 28px;
  }
  .pipeline-slogan p {
    font-size: 10px;
    letter-spacing: .1em;
  }
  .service-description,
  .service-price { grid-column: 1 / -1; }
  .partner-logo-todes {
    width: min(78%, 190px);
    max-height: 28px;
  }
}

/* V6 — compact process strip and founder collage */
.process,
.founder {
  border-top: 1px solid var(--line);
}
.process-inner,
.founder-inner {
  max-width: var(--content-width);
  margin-left: auto;
  margin-right: auto;
}

.process {
  padding-top: 42px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--line);
}
.process-inner {
  display: grid;
  gap: 32px;
}
.process-heading {
  text-align: center;
  font-size: clamp(30px, 3.1vw, 52px);
  line-height: 1.05;
  letter-spacing: -.025em;
}
.process-steps {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 44px minmax(0, 1fr) 44px minmax(0, 1fr);
  align-items: center;
  gap: 18px;
}
.process-step {
  min-width: 0;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 16px;
  align-items: start;
}
.process-number {
  color: var(--accent);
  font-family: var(--serif);
  font-size: clamp(38px, 3.1vw, 56px);
  line-height: .9;
  letter-spacing: -.04em;
}
.process-step h3 {
  margin: 0 0 7px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.process-step p {
  margin: 0;
  color: var(--paper-soft);
  font-size: 12px;
  line-height: 1.5;
}
.process-arrow {
  position: relative;
  display: block;
  height: 1px;
  background: linear-gradient(90deg, rgba(243,237,226,.16), var(--accent));
}
.process-arrow::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  width: 8px;
  height: 8px;
  border-top: 1px solid var(--accent);
  border-right: 1px solid var(--accent);
  transform: translateY(-50%) rotate(45deg);
}

.services {
  padding-top: 84px;
}

.founder {
  padding-top: 74px;
  padding-bottom: 74px;
}
.founder-inner {
  display: grid;
  grid-template-columns: minmax(240px, .48fr) minmax(0, 1.52fr);
  gap: clamp(34px, 5vw, 72px);
  align-items: stretch;
}
.founder-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 22px 0;
}
.founder-copy h2 {
  max-width: 430px;
  font-size: clamp(42px, 4.4vw, 72px);
  line-height: 1.02;
}
.founder-text {
  max-width: 470px;
  margin: 28px 0 0;
  color: var(--paper-soft);
  font-size: 15px;
  line-height: 1.7;
}
.founder-signature {
  display: grid;
  gap: 4px;
  margin-top: 32px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.founder-signature strong {
  font-size: 14px;
  font-weight: 700;
}
.founder-signature span {
  color: var(--paper-soft);
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.founder-collage {
  min-height: 500px;
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.34fr) minmax(145px, .64fr);
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 8px;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  background: #080807;
}
.media-tile {
  position: relative;
  min-width: 0;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  background: #0a0a09;
}
.media-tile::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 55%, rgba(4,4,3,.22));
}
.media-tile > img,
.media-tile > video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s ease, filter .35s ease;
}
.media-tile:hover > img,
.media-tile:hover > video {
  transform: scale(1.025);
}
.media-tile-main {
  grid-column: 1;
  grid-row: 1 / 3;
}
.media-tile-main > img,
.media-tile-main > video { object-position: 50% 34%; }
.media-tile-profile {
  grid-column: 2;
  grid-row: 1;
}
.media-tile-profile > img,
.media-tile-profile > video { object-position: 52% 47%; }
.media-tile-garage {
  grid-column: 2;
  grid-row: 2;
}
.media-tile-garage > img,
.media-tile-garage > video { object-position: 50% 48%; }
.media-tile-rehearsal,
.media-tile-theatre {
  margin-left: -24px;
}
.media-tile-rehearsal {
  grid-column: 3;
  grid-row: 1;
  clip-path: polygon(18% 0, 100% 0, 100% 100%, 0 100%);
}
.media-tile-theatre {
  grid-column: 3;
  grid-row: 2;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 18% 100%);
}
.media-tile-rehearsal > img,
.media-tile-rehearsal > video,
.media-tile-theatre > img,
.media-tile-theatre > video { object-position: center; }

.partners {
  border-top: 1px solid var(--line);
}
.testimonials {
  padding-top: 68px;
}
.review-media-card {
  gap: 0;
}

@media (max-width: 1120px) {
  .process-steps {
    grid-template-columns: minmax(0, 1fr) 28px minmax(0, 1fr) 28px minmax(0, 1fr);
    gap: 12px;
  }
  .process-step { gap: 12px; }
  .founder-inner {
    grid-template-columns: 1fr;
  }
  .founder-copy {
    display: grid;
    grid-template-columns: minmax(0, .8fr) minmax(280px, 1.2fr);
    column-gap: 48px;
    align-items: end;
    padding: 0;
  }
  .founder-copy .eyebrow,
  .founder-copy h2 { grid-column: 1; }
  .founder-text,
  .founder-signature { grid-column: 2; }
  .founder-text { grid-row: 1 / 3; align-self: end; margin-top: 0; }
  .founder-signature { grid-row: 3; }
}

@media (max-width: 820px) {
  .process {
    padding-top: 34px;
    padding-bottom: 38px;
  }
  .process-heading { text-align: left; }
  .process-steps {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .process-arrow {
    width: 1px;
    height: 20px;
    margin-left: 21px;
    background: linear-gradient(180deg, rgba(243,237,226,.16), var(--accent));
  }
  .process-arrow::after {
    right: auto;
    left: 50%;
    top: auto;
    bottom: 0;
    transform: translateX(-50%) rotate(135deg);
  }
  .founder {
    padding-top: 62px;
    padding-bottom: 62px;
  }
  .founder-copy {
    display: block;
  }
  .founder-text { margin-top: 24px; }
  .founder-collage {
    min-height: 580px;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 280px 150px 150px;
  }
  .media-tile-main {
    grid-column: 1;
    grid-row: 1 / 3;
  }
  .media-tile-profile {
    grid-column: 2;
    grid-row: 1;
  }
  .media-tile-garage {
    grid-column: 2;
    grid-row: 2;
  }
  .media-tile-rehearsal {
    grid-column: 1;
    grid-row: 3;
  }
  .media-tile-theatre {
    grid-column: 2;
    grid-row: 3;
  }
  .media-tile-rehearsal,
  .media-tile-theatre {
    margin-left: 0;
    clip-path: none;
  }
}

@media (max-width: 560px) {
  .process-heading {
    font-size: 32px;
  }
  .process-step p {
    font-size: 11px;
  }
  .founder-collage {
    min-height: 520px;
    grid-template-rows: 250px 135px 135px;
    gap: 5px;
  }
}

/* V7 — stable founder collage, original review PNGs, dark autofill */
.founder-collage {
  height: 520px;
  min-height: 0;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.18fr) minmax(150px, .72fr);
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 8px;
}
.media-tile-main {
  grid-column: 1;
  grid-row: 1 / 3;
}
.media-tile-profile {
  grid-column: 2;
  grid-row: 1;
}
.media-tile-garage {
  grid-column: 2;
  grid-row: 2;
}
.media-tile-rehearsal {
  grid-column: 3;
  grid-row: 1;
}
.media-tile-theatre {
  grid-column: 3;
  grid-row: 2;
}
.media-tile-rehearsal,
.media-tile-theatre {
  margin-left: 0;
  clip-path: none;
}
.media-tile > img,
.media-tile > video {
  display: block;
  max-width: none;
}

.contact-form {
  color-scheme: dark;
}
.contact-form input:-webkit-autofill,
.contact-form input:-webkit-autofill:hover,
.contact-form input:-webkit-autofill:focus,
.contact-form textarea:-webkit-autofill,
.contact-form textarea:-webkit-autofill:hover,
.contact-form textarea:-webkit-autofill:focus {
  -webkit-text-fill-color: var(--paper) !important;
  caret-color: var(--paper) !important;
  -webkit-box-shadow: 0 0 0 1000px var(--bg) inset !important;
  box-shadow: 0 0 0 1000px var(--bg) inset !important;
  border-bottom-color: var(--line-strong) !important;
  transition: background-color 9999s ease-out 0s;
}
.contact-form input:autofill,
.contact-form textarea:autofill {
  color: var(--paper) !important;
  background: var(--bg) !important;
  box-shadow: 0 0 0 1000px var(--bg) inset !important;
}

@media (max-width: 1120px) {
  .founder-collage {
    height: 540px;
    min-height: 0;
  }
}

@media (max-width: 820px) {
  .founder-collage {
    height: 570px;
    min-height: 0;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
    grid-template-rows: 280px 150px 124px;
    gap: 6px;
  }
  .media-tile-main {
    grid-column: 1;
    grid-row: 1 / 3;
  }
  .media-tile-profile {
    grid-column: 2;
    grid-row: 1;
  }
  .media-tile-garage {
    grid-column: 2;
    grid-row: 2;
  }
  .media-tile-rehearsal {
    grid-column: 1;
    grid-row: 3;
  }
  .media-tile-theatre {
    grid-column: 2;
    grid-row: 3;
  }
}

@media (max-width: 560px) {
  .founder-collage {
    height: 510px;
    grid-template-rows: 250px 135px 113px;
    gap: 5px;
  }
}

/* V8 — stable mobile header, tighter hero start, static founder tiles, image viewer */
.brand,
.header-actions {
  margin-left: 0;
  margin-right: 0;
}
.brand { justify-self: start; }
.header-actions { justify-self: end; }

.media-tile {
  cursor: zoom-in;
}
.media-tile > img,
.media-tile > video {
  transition: filter .25s ease;
}
.media-tile:hover > img,
.media-tile:hover > video {
  transform: none;
}
.media-tile:focus-visible,
.carousel-slide:focus-visible {
  outline: 2px solid var(--paper);
  outline-offset: -3px;
}
.carousel-slide {
  cursor: zoom-in;
}

.image-viewer {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) 72px;
  align-items: center;
  gap: 18px;
  padding: 28px;
  background: rgba(5, 5, 4, .96);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .22s ease, visibility .22s ease;
  backdrop-filter: blur(18px);
}
.image-viewer.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
body.viewer-open {
  overflow: hidden;
}
.image-viewer-stage {
  position: relative;
  min-width: 0;
  height: min(88vh, 980px);
  display: grid;
  place-items: center;
}
.image-viewer-image {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  box-shadow: 0 30px 100px rgba(0,0,0,.55);
  user-select: none;
  -webkit-user-drag: none;
}
.image-viewer-counter {
  position: absolute;
  left: 50%;
  bottom: 14px;
  transform: translateX(-50%);
  min-width: 72px;
  padding: 8px 12px;
  text-align: center;
  border: 1px solid var(--line-strong);
  background: rgba(17,17,15,.72);
  color: var(--paper);
  font-size: 11px;
  letter-spacing: .14em;
  backdrop-filter: blur(10px);
}
.image-viewer-nav,
.image-viewer-close {
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.68);
  background: rgba(255,255,255,.02);
  color: var(--paper);
  cursor: pointer;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.image-viewer-nav:hover,
.image-viewer-close:hover {
  background: var(--paper);
  color: var(--bg);
  border-color: var(--paper);
}
.image-viewer-nav {
  width: 58px;
  height: 58px;
  justify-self: center;
}
.image-viewer-nav svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
}
.image-viewer-close {
  position: absolute;
  top: 24px;
  right: 24px;
  z-index: 2;
  width: 48px;
  height: 48px;
}
.image-viewer-close span {
  position: absolute;
  width: 21px;
  height: 1px;
  background: currentColor;
}
.image-viewer-close span:first-child { transform: rotate(45deg); }
.image-viewer-close span:last-child { transform: rotate(-45deg); }

@media (max-width: 820px) {
  .site-header {
    padding-left: 20px;
    padding-right: 20px;
  }
  .brand {
    justify-self: start;
    align-self: center;
  }
  .header-actions {
    justify-self: end;
  }
  .hero {
    padding-top: 54px;
  }
  .image-viewer {
    grid-template-columns: 1fr;
    padding: 72px 14px 82px;
  }
  .image-viewer-stage {
    height: calc(100vh - 154px);
  }
  .image-viewer-nav {
    position: absolute;
    bottom: 18px;
    width: 54px;
    height: 54px;
  }
  .image-viewer-prev { left: calc(50% - 66px); }
  .image-viewer-next { right: calc(50% - 66px); }
  .image-viewer-close {
    top: 14px;
    right: 14px;
  }
  .image-viewer-counter {
    bottom: 10px;
  }
}

@media (max-width: 560px) {
  .hero {
    padding-top: 36px;
  }
  .site-header {
    height: 68px;
  }
  .image-viewer {
    padding-top: 62px;
  }
  .image-viewer-stage {
    height: calc(100vh - 144px);
  }
}

/* V9 — founder collage breathing room, tighter desktop hero, viewport-safe image viewer */
@media (min-width: 821px) {
  .hero {
    padding-top: 90px;
  }
}

.founder-collage {
  padding: 8px;
}

.image-viewer {
  overflow: hidden;
}
.image-viewer-stage {
  height: calc(100dvh - 56px);
  max-height: calc(100dvh - 56px);
  overflow: hidden;
}
.image-viewer-image {
  display: block;
  max-width: min(100%, calc(100vw - 220px));
  max-height: calc(100dvh - 72px);
  width: auto;
  height: auto;
  object-fit: contain;
}

@media (max-width: 820px) {
  .founder-collage {
    padding: 6px;
  }
  .image-viewer-stage {
    height: calc(100dvh - 154px);
    max-height: calc(100dvh - 154px);
  }
  .image-viewer-image {
    max-width: calc(100vw - 28px);
    max-height: calc(100dvh - 170px);
  }
}

@media (max-width: 560px) {
  .founder-collage {
    padding: 5px;
  }
  .image-viewer-stage {
    height: calc(100dvh - 144px);
    max-height: calc(100dvh - 144px);
  }
  .image-viewer-image {
    max-width: calc(100vw - 20px);
    max-height: calc(100dvh - 158px);
  }
}

/* V9.1 — warmer founder-collage separators */
.founder-collage {
  background:
    linear-gradient(135deg,
      rgba(242, 108, 79, .20) 0%,
      rgba(74, 53, 41, .42) 34%,
      rgba(243, 237, 226, .075) 66%,
      rgba(242, 108, 79, .12) 100%),
    #181410;
  border-color: rgba(243, 237, 226, .24);
}
.media-tile {
  background: #15120f;
}


/* V9.3 — stable English hero line and founder collage line treatment */
.nowrap { white-space: nowrap; }

.hero {
  min-height: auto;
}

@media (min-width: 821px) {
  .hero {
    padding-top: 90px;
    min-height: auto;
  }
}

/* Active founder collage line style — Variation A */
.founder-collage {
  gap: 10px;
  background:
    radial-gradient(circle at top left, rgba(242, 108, 79, .10), transparent 42%),
    linear-gradient(135deg,
      rgba(242, 108, 79, .12) 0%,
      rgba(126, 91, 67, .22) 36%,
      rgba(243, 237, 226, .05) 64%,
      rgba(242, 108, 79, .10) 100%),
    #14100d;
  border-color: rgba(243, 237, 226, .22);
}

.media-tile {
  background:
    linear-gradient(180deg, rgba(243, 237, 226, .018), rgba(242, 108, 79, .032)),
    #120f0d;
  box-shadow: inset 0 0 0 1px rgba(243, 237, 226, .035);
}


/* V9.4 — founder collage Variation B + reviews after contact */
.founder-collage {
  gap: 10px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .03), rgba(242, 108, 79, .04)),
    repeating-linear-gradient(90deg, rgba(243, 237, 226, .012) 0 1px, transparent 1px 24px),
    #11100f;
  border-color: rgba(243, 237, 226, .18);
}

.media-tile {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .018), rgba(255, 255, 255, .004)),
    #0f0e0d;
  box-shadow: inset 0 0 0 1px rgba(243, 237, 226, .028);
}

.contact {
  padding-bottom: 78px;
}

.testimonials {
  padding-top: 72px;
  padding-bottom: 76px;
  border-top: 1px solid var(--line);
}

@media (max-width: 820px) {
  .contact {
    padding-bottom: 64px;
  }

  .testimonials {
    padding-top: 64px;
    padding-bottom: 70px;
  }
}


/* V9.4.4 — official Bolshoi logo */
.partner-logo-bolshoi {
  width: auto;
  max-width: 82%;
  max-height: 66px;
  object-fit: contain;
  filter: none;
  opacity: 1;
}

@media (max-width: 820px) {
  .partner-logo-bolshoi {
    max-width: 88%;
    max-height: 62px;
  }
}


/* V9.4.6 — mobile contact links place the contact heading at the upper-left */
@media (max-width: 820px) {
  #project-contact .contact-copy {
    scroll-margin-top: 78px;
  }
}


/* V9.4.7 — process alignment */
@media (min-width: 821px) {
  .process-steps {
    align-items: stretch;
  }

  .process-step {
    align-items: center;
    min-height: 76px;
  }

  .process-arrow {
    align-self: center;
    justify-self: stretch;
  }
}


/* V9.4.8 — Web3Forms inline submission states */
.form-botcheck {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
}
.submit-button:disabled {
  cursor: wait;
  opacity: .68;
}
.form-status.is-success { color: var(--paper); }
.form-status.is-error { color: var(--accent); }


/* V9.6.1 — keep portrait and landscape case images centered in the compact carousel */
.carousel-slide {
  display: block;
}

.carousel-slide img {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  margin: 0;
  object-fit: contain;
  object-position: center;
  transform: translate(-50%, -50%);
}
