:root {
  --ink: #121615;
  --muted: #616866;
  --paper: #f7f6f1;
  --white: #ffffff;
  --line: #dcded8;
  --lime: #d7f54a;
  --lime-dark: #b6d229;
  --forest: #1c322b;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

.site-header {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.header-inner {
  width: min(calc(100% - 48px), var(--max-width));
  height: 94px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 128px;
}

.brand img {
  width: 100%;
  height: auto;
}

nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

nav a {
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.nav-contact {
  padding: 11px 18px;
  color: var(--ink);
  background: var(--lime);
  border-radius: 2px;
}

.hero {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  display: flex;
  align-items: center;
  background:
    radial-gradient(circle at 88% 22%, rgba(215, 245, 74, 0.14), transparent 30%),
    linear-gradient(125deg, #111a17 0%, #1c332b 58%, #29443a 100%);
  color: var(--white);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(90deg, transparent 28%, black);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(calc(100% - 48px), var(--max-width));
  margin: 100px auto 0;
}

.eyebrow,
.kicker,
.card-label,
.contact-role {
  margin: 0 0 20px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--lime);
}

.eyebrow span {
  width: 36px;
  height: 2px;
  background: currentColor;
}

h1,
h2,
h3 {
  font-family: "Segoe UI", Arial, sans-serif;
  line-height: 1.08;
}

h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(3rem, 6.2vw, 5.9rem);
  font-weight: 600;
  letter-spacing: -0.055em;
}

.regulation-number {
  margin: 20px 0 0;
  color: var(--lime);
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  font-weight: 600;
}

.hero-copy {
  max-width: 580px;
  margin: 30px 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.08rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--lime);
  color: var(--white);
  font-weight: 600;
  text-decoration: none;
}

.text-link span {
  color: var(--lime);
}

.hero-art {
  position: absolute;
  z-index: 1;
  right: 5%;
  bottom: 0;
  width: min(41vw, 520px);
  height: 68%;
}

.box {
  position: absolute;
  display: block;
  border: 1px solid rgba(215, 245, 74, 0.55);
  background: linear-gradient(145deg, rgba(215, 245, 74, 0.15), rgba(255, 255, 255, 0.02));
  box-shadow: inset 0 0 50px rgba(215, 245, 74, 0.05);
  transform: rotate(30deg) skew(-5deg);
}

.box::before,
.box::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.17);
}

.box::before {
  inset: 18%;
}

.box::after {
  top: 50%;
  left: -20%;
  width: 140%;
  height: 1px;
}

.box-one {
  right: 8%;
  bottom: 10%;
  width: 245px;
  height: 245px;
}

.box-two {
  right: 45%;
  bottom: -9%;
  width: 200px;
  height: 200px;
}

.box-three {
  right: -8%;
  bottom: -16%;
  width: 310px;
  height: 310px;
}

.section {
  width: min(calc(100% - 48px), var(--max-width));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 54px;
  padding: 120px 0;
}

.section-label {
  padding-top: 6px;
  color: var(--muted);
}

.section-label span {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
}

.section-label p {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.kicker {
  color: #657614;
}

.intro-content {
  max-width: 810px;
}

.intro h2,
.contact h2,
.manufacturer h2 {
  margin: 0 0 28px;
  font-size: clamp(2.2rem, 4vw, 4rem);
  font-weight: 600;
  letter-spacing: -0.045em;
}

.intro-content > p:last-child,
.contact-content > div:first-child > p:last-child {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
  font-size: 1.12rem;
}

.manufacturer {
  position: relative;
  width: 100%;
  max-width: none;
  grid-template-columns: minmax(24px, calc((100vw - var(--max-width)) / 2 + 180px)) minmax(0, 946px);
  justify-content: center;
  padding-inline: 24px;
  background: var(--forest);
  color: var(--white);
}

.section-label-light {
  color: rgba(255, 255, 255, 0.55);
}

.section-label-light span {
  color: var(--lime);
}

.kicker-light {
  color: var(--lime);
}

.manufacturer-content {
  min-width: 0;
}

.manufacturer-note {
  max-width: 680px;
  margin: -10px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.05rem;
}

.details-grid {
  display: grid;
  grid-template-columns: minmax(240px, 0.8fr) minmax(360px, 1.2fr);
  gap: 2px;
  margin-top: 54px;
}

.detail-card {
  min-height: 330px;
  padding: 42px;
  background: rgba(255, 255, 255, 0.075);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.detail-card .card-label {
  color: rgba(255, 255, 255, 0.55);
}

.brand-card {
  display: flex;
  flex-direction: column;
}

.brand-card img {
  width: min(100%, 280px);
  margin: auto 0;
}

address {
  display: flex;
  flex-direction: column;
  gap: 5px;
  font-style: normal;
  font-size: 1.08rem;
}

address strong {
  max-width: 560px;
  margin-bottom: 24px;
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  line-height: 1.35;
}

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

.contact-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.65fr);
  gap: 70px;
  align-items: end;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 22px;
  min-height: 180px;
  padding: 30px;
  background: var(--white);
  border-top: 4px solid var(--lime-dark);
  box-shadow: 0 18px 50px rgba(28, 50, 43, 0.08);
}

.contact-avatar {
  flex: 0 0 auto;
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  background: var(--forest);
  border-radius: 50%;
  color: var(--lime);
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
}

.contact-role {
  margin-bottom: 7px;
  color: var(--muted);
}

.contact-card h3 {
  margin: 0 0 7px;
  font-size: 1.45rem;
}

.contact-card a {
  color: #53630a;
  font-size: 1.05rem;
  font-weight: 600;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

footer {
  background: var(--paper);
}

.footer-inner {
  width: min(calc(100% - 48px), var(--max-width));
  min-height: 145px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 42px;
  color: var(--muted);
  font-size: 0.82rem;
}

.footer-inner img {
  width: 104px;
}

.footer-inner p:last-child {
  margin-left: auto;
}

a:focus-visible {
  outline: 3px solid var(--lime);
  outline-offset: 4px;
}

@media (hover: hover) {
  nav a:not(.nav-contact):hover,
  .text-link:hover,
  .contact-card a:hover {
    opacity: 0.72;
  }

  .nav-contact:hover {
    background: var(--white);
  }
}

@media (max-width: 900px) {
  .hero {
    min-height: 680px;
  }

  .hero-art {
    right: -11%;
    width: 50vw;
    opacity: 0.7;
  }

  .section {
    grid-template-columns: 120px 1fr;
    gap: 34px;
    padding: 90px 0;
  }

  .manufacturer {
    width: 100%;
    grid-template-columns: 120px minmax(0, 1fr);
  }

  .details-grid,
  .contact-content {
    grid-template-columns: 1fr;
  }

  .contact-content {
    gap: 46px;
  }
}

@media (max-width: 650px) {
  .header-inner {
    width: min(calc(100% - 32px), var(--max-width));
    height: 78px;
  }

  .brand {
    width: 104px;
  }

  nav {
    gap: 0;
  }

  nav a:not(.nav-contact) {
    display: none;
  }

  .nav-contact {
    padding: 9px 13px;
    font-size: 0.72rem;
  }

  .hero {
    min-height: 650px;
    align-items: flex-start;
  }

  .hero-content {
    width: calc(100% - 32px);
    margin-top: 156px;
  }

  h1 {
    font-size: clamp(2.75rem, 14vw, 4.5rem);
  }

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

  .hero-art {
    right: -35%;
    bottom: -12%;
    width: 90vw;
    height: 48%;
  }

  .section,
  .manufacturer {
    width: 100%;
    grid-template-columns: 1fr;
    gap: 34px;
    padding: 72px 16px;
  }

  .section-label {
    display: flex;
    gap: 10px;
    align-items: center;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--line);
  }

  .section-label-light {
    border-bottom-color: rgba(255, 255, 255, 0.16);
  }

  .section-label span {
    margin: 0;
  }

  .intro h2,
  .contact h2,
  .manufacturer h2 {
    font-size: 2.35rem;
  }

  .details-grid {
    margin-top: 38px;
  }

  .detail-card {
    min-height: 250px;
    padding: 28px;
  }

  .brand-card img {
    width: 220px;
  }

  address {
    font-size: 1rem;
  }

  .contact-card {
    align-items: flex-start;
    min-height: auto;
    padding: 24px;
  }

  .contact-avatar {
    width: 54px;
    height: 54px;
  }

  .footer-inner {
    width: calc(100% - 32px);
    min-height: 180px;
    flex-wrap: wrap;
    align-content: center;
    gap: 14px 24px;
  }

  .footer-inner img {
    width: 92px;
  }

  .footer-inner p {
    margin: 0;
  }

  .footer-inner p:last-child {
    width: 100%;
    margin-left: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
dth: 100%;
    margin-left: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
vior: auto;
  }
}
dth: 100%;
    margin-left: 0;
  }
}

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