:root {
  --black: #050505;
  --black-soft: #111111;
  --ink: #171717;
  --muted: #77736a;
  --paper: #f0ece3;
  --paper-clean: #fffdf8;
  --line: rgba(23, 23, 23, 0.12);
  --line-dark: rgba(255, 255, 255, 0.16);
  --gold: #b99652;
  --gold-soft: #d8c18a;
  --white: #ffffff;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 72px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Helvetica Neue", Arial, sans-serif;
  line-height: 1.5;
  text-rendering: geometricPrecision;
  overflow-x: hidden;
}

img {
  display: block;
  width: 100%;
}

a {
  color: inherit;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
  padding: 16px clamp(18px, 4vw, 54px);
  color: var(--white);
  background: rgba(5, 5, 5, 0.52);
  border-bottom: 1px solid transparent;
  transition: background 260ms ease, border-color 260ms ease, min-height 260ms ease;
}

.site-header.is-scrolled {
  min-height: 66px;
  background: rgba(5, 5, 5, 0.9);
  border-bottom-color: var(--line-dark);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  color: var(--white);
  text-decoration: none;
  width: 86px;
  height: 58px;
}

.brand-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 38px);
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
}

.site-nav a {
  text-decoration: none;
  transition: color 180ms ease;
}

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

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.02);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--white);
}

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

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

.hero-image {
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.01);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.86), rgba(5, 5, 5, 0.54) 42%, rgba(5, 5, 5, 0.12)),
    linear-gradient(0deg, rgba(5, 5, 5, 0.68), rgba(5, 5, 5, 0.04) 52%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding: 132px 0 102px;
}

.hero-content h1 {
  max-width: 760px;
  margin: 0 0 24px;
  font-size: clamp(50px, 7.2vw, 104px);
  font-weight: 500;
  line-height: 0.92;
  letter-spacing: 0;
}

.hero-content p:not(.kicker) {
  max-width: 600px;
  margin: 0 0 34px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(17px, 2vw, 22px);
}

.hero-meta {
  position: absolute;
  right: clamp(18px, 4vw, 54px);
  bottom: 24px;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 12px;
}

.hero-meta span {
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(5, 5, 5, 0.22);
}

.kicker {
  margin: 0 0 16px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h2 {
  margin-bottom: 22px;
  font-size: clamp(32px, 4.6vw, 58px);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 650;
  letter-spacing: 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 4px;
  color: var(--black);
  background: var(--paper-clean);
  font-weight: 700;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease;
}

.button:hover,
.button:focus-visible {
  background: var(--gold-soft);
  transform: translateY(-1px);
}

.statement {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(54px, 7vw, 88px) 0;
  border-bottom: 1px solid var(--line);
}

.statement p {
  max-width: 920px;
  margin: 0;
  color: var(--black);
  font-size: clamp(25px, 3.8vw, 48px);
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: 0;
}

.section {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(62px, 8vw, 96px) 0;
  scroll-margin-top: 72px;
}

.image-strip {
  width: min(var(--max), calc(100% - 36px));
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: 0 auto clamp(46px, 6vw, 72px);
  overflow: hidden;
  border: 1px solid var(--line-dark);
  border-radius: 4px;
  background: var(--line-dark);
}

.image-strip figure,
.products-visual {
  position: relative;
  min-height: 250px;
  margin: 0;
  overflow: hidden;
  background: var(--black);
}

.image-strip img,
.products-visual img {
  height: 100%;
  object-fit: cover;
  filter: saturate(0.85) contrast(1.06);
}

.image-strip figcaption,
.products-visual figcaption {
  position: absolute;
  right: 14px;
  bottom: 12px;
  left: 14px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.about {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  gap: clamp(34px, 5vw, 72px);
  align-items: end;
  border-top: 0;
}

.section-copy p:not(.kicker),
.production-copy > p,
.contact-copy p,
.section-heading p {
  color: var(--muted);
  font-size: 18px;
}

.editorial-image,
.production-visual {
  margin: 0;
  overflow: hidden;
  border-radius: 4px;
  background: var(--black);
}

.editorial-image {
  min-height: 500px;
}

.editorial-image img,
.production-visual img {
  height: 100%;
  object-fit: cover;
  transition: transform 800ms ease;
}

.editorial-image:hover img,
.production-visual:hover img {
  transform: scale(1.025);
}

.production {
  width: 100%;
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
  gap: clamp(38px, 6vw, 82px);
  align-items: center;
  padding-inline: max(18px, calc((100vw - var(--max)) / 2));
  padding-block: clamp(66px, 8vw, 104px);
  color: var(--white);
  background: var(--black);
}

.production-visual {
  min-height: 500px;
}

.production-copy > p {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.68);
}

.capabilities {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 34px;
  overflow: hidden;
  border: 1px solid var(--line-dark);
  border-radius: 4px;
  background: var(--line-dark);
}

.capabilities article {
  min-height: 180px;
  padding: 24px;
  background: #0c0c0c;
}

.capabilities span {
  display: block;
  margin-bottom: 34px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
}

.capabilities p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 15px;
}

.detail-band {
  position: relative;
  min-height: 340px;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  background: var(--black);
}

.detail-band img {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
  opacity: 0.58;
  filter: saturate(0.72);
}

.detail-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(5, 5, 5, 0.72), rgba(5, 5, 5, 0.18));
}

.detail-band div {
  position: relative;
  z-index: 1;
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding: 58px 0;
}

.detail-band p:last-child {
  max-width: 720px;
  margin: 0;
  font-size: clamp(27px, 3.8vw, 48px);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: 0;
}

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

.products {
  border-bottom: 1px solid var(--line);
}

.products-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.72fr) minmax(0, 1fr);
  gap: clamp(30px, 5vw, 70px);
  align-items: start;
}

.products-visual {
  min-height: 540px;
  border-radius: 4px;
}

.product-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
}

.product-list article {
  min-height: 138px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.product-list article:nth-child(odd) {
  padding-right: clamp(22px, 4vw, 64px);
}

.product-list article:nth-child(even) {
  padding-left: clamp(22px, 4vw, 64px);
  border-left: 1px solid var(--line);
}

.product-list p {
  max-width: 430px;
  margin-bottom: 0;
  color: var(--muted);
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.72fr);
  gap: clamp(38px, 6vw, 92px);
  width: min(var(--max), calc(100% - 36px));
  margin: clamp(56px, 8vw, 90px) auto;
  padding: clamp(34px, 5vw, 62px);
  border-radius: 4px;
  color: var(--white);
  background: var(--black);
  scroll-margin-top: 72px;
}

.technical-points {
  display: grid;
  gap: 1px;
  margin-top: 30px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--line);
}

.technical-points span {
  padding: 14px 16px;
  color: var(--ink);
  background: rgba(255, 253, 248, 0.58);
  font-size: 13px;
  font-weight: 700;
}

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

.contact-copy p {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.62);
}

.contact-panel {
  display: grid;
  align-content: center;
  gap: 1px;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line-dark);
  border-radius: 4px;
  background: var(--line-dark);
  font-style: normal;
}

.contact-panel a,
.contact-panel span {
  display: block;
  padding: 20px;
  color: rgba(255, 255, 255, 0.82);
  background: #0d0d0d;
  text-decoration: none;
}

.contact-panel a:hover,
.contact-panel a:focus-visible {
  color: var(--gold-soft);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(18px, 4vw, 54px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
}

[data-reveal] {
  opacity: 1;
  transform: none;
}

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

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

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

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

  .has-js [data-reveal],
  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

@media print {
  .site-header {
    position: absolute;
  }

  .has-js [data-reveal],
  [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
  }
}

@media (max-width: 980px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 18px;
    left: 18px;
    display: none;
    grid-template-columns: 1fr;
    gap: 0;
    overflow: hidden;
    border: 1px solid var(--line-dark);
    border-radius: 4px;
    background: rgba(5, 5, 5, 0.96);
  }

  .site-nav.is-open {
    display: grid;
  }

  .site-nav a {
    padding: 16px;
    border-bottom: 1px solid var(--line-dark);
  }

  .site-nav a:last-child {
    border-bottom: 0;
  }

  .hero {
    min-height: 82svh;
  }

  .hero-image {
    object-position: 57% center;
  }

  .hero-content {
    padding: 122px 0 92px;
  }

  .hero-meta {
    right: 18px;
    left: 18px;
    justify-content: flex-start;
  }

  .about,
  .production,
  .products-layout,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .production {
    padding-inline: 18px;
  }

  .editorial-image,
  .production-visual {
    min-height: 420px;
  }

  .image-strip,
  .capabilities,
  .product-list {
    grid-template-columns: 1fr;
  }

  .image-strip {
    margin-bottom: 34px;
  }

  .image-strip figure,
  .products-visual {
    min-height: 280px;
  }

  .product-list article,
  .product-list article:nth-child(odd),
  .product-list article:nth-child(even) {
    min-height: auto;
    padding: 24px 0;
    border-left: 0;
  }
}

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

  .brand {
    width: 76px;
    height: 52px;
  }

  .hero-content {
    width: calc(100% - 28px);
    max-width: var(--max);
  }

  .hero-content h1 {
    max-width: 9ch;
    font-size: clamp(40px, 11vw, 50px);
    line-height: 0.98;
  }

  .hero-content p:not(.kicker) {
    width: 100%;
    max-width: 34ch;
    font-size: 16px;
  }

  .hero-meta {
    display: none;
  }

  .statement,
  .section,
  .detail-band div,
  .contact-section {
    width: calc(100% - 28px);
    max-width: var(--max);
  }

  .statement,
  .section {
    padding: 52px 0;
  }

  .statement p {
    font-size: clamp(25px, 8vw, 36px);
  }

  .editorial-image,
  .production-visual {
    min-height: 340px;
  }

  .capabilities article {
    min-height: auto;
    padding: 22px;
  }

  .detail-band {
    min-height: 320px;
  }

  .contact-section {
    margin-block: 52px;
    padding: 24px;
  }

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