:root {
  --bg: #07110f;
  --panel: #0e1b18;
  --panel-soft: #142520;
  --text: #f4f8f5;
  --muted: #b9c7c0;
  --line: rgba(255, 255, 255, 0.14);
  --accent: #1560bd;
  --accent-strong: #2f7fe0;
  --ink: #ffffff;
  --max: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.6;
}

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

a {
  color: inherit;
}

.site-header {
  position: fixed;
  z-index: 10;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100% - 32px, var(--max));
  margin: 16px auto 0;
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(7, 17, 15, 0.74);
  backdrop-filter: blur(18px);
}

.brand {
  text-decoration: none;
  text-transform: lowercase;
  letter-spacing: 0.34em;
  font-weight: 700;
}

.brand span {
  display: inline-block;
  padding-left: 0.34em;
}

.nav {
  display: flex;
  gap: 22px;
  color: var(--muted);
  font-size: 0.9rem;
}

.nav a {
  text-decoration: none;
}

.nav a:hover,
.text-link:hover {
  color: var(--accent);
}

.hero {
  position: relative;
  min-height: 88vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 144px 20px 88px;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media {
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(7, 17, 15, 0.92), rgba(7, 17, 15, 0.42)),
    linear-gradient(0deg, var(--bg), rgba(7, 17, 15, 0.08) 42%);
}

.hero-content {
  position: relative;
  width: min(100%, var(--max));
  margin: 0 auto;
}

.eyebrow,
.section-label,
.product-kicker {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  font-size: clamp(4rem, 14vw, 10rem);
  line-height: 0.9;
  letter-spacing: 0;
  text-transform: lowercase;
}

.hero p:not(.eyebrow) {
  max-width: 670px;
  margin: 28px 0 0;
  color: #dce8e1;
  font-size: clamp(1.15rem, 2vw, 1.55rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 0 18px;
  font-weight: 700;
  text-decoration: none;
}

.button-primary {
  background: var(--accent);
  color: var(--ink);
}

.button-primary:hover {
  background: var(--accent-strong);
}

.button-secondary {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.06);
}

.section {
  width: min(100% - 40px, var(--max));
  margin: 0 auto;
  padding: 92px 0;
}

.intro-grid,
.contact {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 64px;
  align-items: start;
}

.intro h2,
.contact h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 4.25rem);
  line-height: 1.05;
  letter-spacing: 0;
}

.intro-copy p,
.contact p,
.product p {
  color: var(--muted);
}

.intro-copy p:first-child {
  margin-top: 0;
  color: var(--text);
  font-size: 1.18rem;
}

.products {
  display: grid;
  gap: 24px;
  padding-top: 0;
}

.product {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 360px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.product-image-link {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 320px;
  padding: clamp(28px, 5vw, 64px);
  background: #ffffff;
}

.product-image-link img {
  width: 100%;
  height: auto;
  max-height: 240px;
  object-fit: contain;
  transition: transform 180ms ease;
}

.product-image-link:hover img {
  transform: scale(1.02);
}

.product-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(28px, 5vw, 56px);
}

.product h3 {
  margin: 0;
  font-size: clamp(1.7rem, 3vw, 3rem);
  line-height: 1.1;
  letter-spacing: 0;
}

.text-link {
  width: fit-content;
  margin-top: 14px;
  color: var(--text);
  font-weight: 700;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.contact {
  width: min(100% - 40px, var(--max));
  margin-bottom: 38px;
  border-top: 1px solid var(--line);
}

.contact .button {
  margin-top: 20px;
}

address {
  margin: 0;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  color: var(--muted);
  font-style: normal;
}

address strong {
  color: var(--text);
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  width: min(100% - 40px, var(--max));
  margin: 0 auto;
  padding: 28px 0 42px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.92rem;
}

.site-footer img {
  width: 42px;
  height: auto;
}

.footer-links {
  display: flex;
  gap: 16px;
}

.footer-links a {
  color: var(--muted);
}

.footer-links a:hover {
  color: var(--text);
}

.legal-page {
  width: min(100% - 40px, 880px);
  margin: 0 auto;
  padding: 148px 0 72px;
}

.legal-content {
  padding: clamp(28px, 5vw, 56px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.legal-content h1 {
  margin: 0 0 34px;
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  line-height: 1;
  letter-spacing: 0;
}

.legal-content h2 {
  margin: 34px 0 10px;
  font-size: 1.1rem;
  letter-spacing: 0;
}

.legal-content p {
  color: var(--muted);
}

.legal-content a {
  color: var(--text);
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

@media (max-width: 760px) {
  .site-header {
    width: min(100% - 24px, var(--max));
    margin-top: 12px;
  }

  .nav {
    gap: 14px;
  }

  .hero {
    min-height: 82vh;
    padding: 118px 20px 72px;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(7, 17, 15, 0.94), rgba(7, 17, 15, 0.62)),
      linear-gradient(0deg, var(--bg), rgba(7, 17, 15, 0.1) 42%);
  }

  .section,
  .contact,
  .site-footer {
    width: min(100% - 28px, var(--max));
  }

  .section {
    padding: 64px 0;
  }

  .intro-grid,
  .contact,
  .product {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .products {
    padding-top: 0;
  }

  .product-image-link {
    min-height: 220px;
    padding: 24px;
  }

  .product-body {
    padding: 28px;
  }

  .legal-page {
    width: min(100% - 28px, 880px);
    padding-top: 124px;
  }
}
