:root {
  color-scheme: dark;
  --ink: #f3f0e8;
  --muted: #b9b7ad;
  --line: rgba(231, 226, 211, 0.16);
  --paper: #181b1d;
  --surface: #22272a;
  --surface-soft: #2a3032;
  --green: #73c5a3;
  --green-dark: #a2e0c5;
  --rust: #d78f6d;
  --steel: #9fc2d0;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.5;
}

a {
  color: inherit;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 5vw, 72px);
  background: rgba(24, 27, 29, 0.82);
  border-bottom: 1px solid rgba(231, 226, 211, 0.12);
  backdrop-filter: blur(18px);
}

.brand,
.nav-links,
.hero-actions,
.footer-links {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 750;
  text-decoration: none;
}

.brand-mark {
  display: block;
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
}

.nav-links {
  gap: clamp(14px, 3vw, 34px);
  color: var(--muted);
  font-size: 0.93rem;
}

.nav-links a,
.footer-links a {
  text-decoration: none;
}

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

.hero {
  position: relative;
  min-height: min(760px, 86svh);
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 128px clamp(20px, 5vw, 72px) 92px;
  isolation: isolate;
}

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

.hero-image {
  object-fit: cover;
  object-position: center;
  z-index: -3;
}

.hero-overlay {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(24, 27, 29, 0.94) 0%, rgba(24, 27, 29, 0.78) 42%, rgba(24, 27, 29, 0.32) 74%),
    linear-gradient(180deg, rgba(24, 27, 29, 0.18), rgba(24, 27, 29, 0.92));
}

.hero-content {
  width: min(660px, 100%);
}

.eyebrow,
.section-kicker,
.product-label {
  margin: 0 0 12px;
  color: var(--rust);
  font-size: 0.76rem;
  font-weight: 760;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 20px;
  font-size: clamp(4.8rem, 13vw, 10.5rem);
  line-height: 0.86;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 4vw, 3.7rem);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.45rem;
  line-height: 1.15;
}

.hero-copy {
  width: min(560px, 100%);
  margin-bottom: 30px;
  color: #d5d0c3;
  font-size: clamp(1.08rem, 2vw, 1.32rem);
}

.hero-actions {
  flex-wrap: wrap;
  gap: 12px;
}

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

.button-primary {
  background: var(--green);
  color: #13211c;
}

.button-primary:hover {
  background: var(--green-dark);
}

.button-secondary {
  background: rgba(243, 240, 232, 0.08);
  border-color: rgba(231, 226, 211, 0.2);
}

.button-secondary:hover {
  border-color: rgba(115, 197, 163, 0.5);
  color: var(--green-dark);
}

.section {
  padding: clamp(72px, 9vw, 124px) clamp(20px, 5vw, 72px);
}

.section-inner {
  width: min(1120px, 100%);
  margin: 0 auto;
}

.section-intro {
  padding-top: clamp(56px, 7vw, 84px);
}

.intro-grid,
.services-grid,
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 1.05fr);
  gap: clamp(30px, 7vw, 88px);
  align-items: start;
}

.intro-grid > p,
.contact-box p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.09rem;
}

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

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

.product-card {
  min-height: 310px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 32px;
  padding: clamp(24px, 4vw, 36px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, var(--surface-soft), var(--surface));
  box-shadow: var(--shadow);
}

.product-card p:not(.product-label) {
  max-width: 38rem;
  margin-bottom: 0;
  color: var(--muted);
}

.product-card-content {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.product-preview-trigger {
  width: 76px;
  height: 164px;
  display: block;
  padding: 0;
  border: 0;
  border-radius: 8px;
  background: transparent;
  cursor: zoom-in;
}

.product-preview-trigger:focus-visible {
  outline: 3px solid rgba(115, 197, 163, 0.82);
  outline-offset: 4px;
}

.product-preview-trigger:hover .product-preview {
  border-color: rgba(115, 197, 163, 0.68);
  transform: translateY(-2px);
}

.product-preview {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  border: 1px solid rgba(231, 226, 211, 0.16);
  border-radius: 8px;
  background: #f3f4f8;
  transition:
    border-color 160ms ease,
    transform 160ms ease;
}

.media-overlay {
  position: fixed;
  z-index: 80;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(44px, 0.16fr) minmax(0, 1fr) minmax(44px, 0.16fr);
  align-items: center;
  gap: clamp(10px, 3vw, 26px);
  padding: clamp(18px, 4vw, 44px);
  background: rgba(9, 11, 12, 0.9);
  backdrop-filter: blur(14px);
}

.media-overlay[hidden] {
  display: none;
}

.media-overlay-open {
  overflow: hidden;
}

.media-overlay-frame {
  min-width: 0;
  max-width: min(760px, 100%);
  max-height: calc(100svh - 88px);
  grid-column: 2;
  justify-self: center;
  display: grid;
  gap: 12px;
  margin: 0;
}

.media-overlay-image {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: calc(100svh - 150px);
  margin: 0 auto;
  border: 1px solid rgba(231, 226, 211, 0.2);
  border-radius: 8px;
  background: #f3f4f8;
  box-shadow: 0 30px 92px rgba(0, 0, 0, 0.52);
}

.media-overlay-caption {
  min-height: 1.4em;
  color: #d6d2c6;
  font-size: 0.96rem;
  text-align: center;
}

.media-overlay-close,
.media-overlay-nav {
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(231, 226, 211, 0.22);
  border-radius: 8px;
  background: rgba(243, 240, 232, 0.1);
  color: var(--ink);
  cursor: pointer;
}

.media-overlay-close:hover,
.media-overlay-nav:hover {
  border-color: rgba(115, 197, 163, 0.58);
  color: var(--green-dark);
}

.media-overlay-close:focus-visible,
.media-overlay-nav:focus-visible {
  outline: 3px solid rgba(115, 197, 163, 0.82);
  outline-offset: 4px;
}

.media-overlay-close {
  position: absolute;
  top: clamp(14px, 3vw, 28px);
  right: clamp(14px, 3vw, 28px);
  width: 44px;
  height: 44px;
  font-size: 2rem;
  line-height: 1;
}

.media-overlay-nav {
  width: clamp(44px, 6vw, 56px);
  height: clamp(48px, 8vw, 70px);
}

.media-overlay-nav::before {
  width: 14px;
  height: 14px;
  content: "";
  border-top: 2px solid currentColor;
  border-left: 2px solid currentColor;
}

.media-overlay-prev {
  grid-column: 1;
  justify-self: end;
}

.media-overlay-next {
  grid-column: 3;
  justify-self: start;
}

.media-overlay-prev::before {
  transform: rotate(-45deg);
}

.media-overlay-next::before {
  transform: rotate(135deg);
}

.text-link {
  color: var(--steel);
  font-weight: 730;
  text-decoration: none;
  overflow-wrap: anywhere;
}

.section-band {
  background: #202725;
  border-top: 1px solid rgba(115, 197, 163, 0.2);
  border-bottom: 1px solid rgba(115, 197, 163, 0.2);
}

.service-list {
  display: grid;
  gap: 12px;
}

.service-list p {
  margin: 0;
  padding: 16px 0;
  border-bottom: 1px solid rgba(231, 226, 211, 0.14);
  color: #d6d2c6;
  font-size: 1.06rem;
}

.contact-box {
  padding: clamp(24px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, var(--surface-soft), var(--surface));
}

.contact-email {
  display: inline-block;
  margin-top: 16px;
  color: var(--green-dark);
  font-size: clamp(1.35rem, 3vw, 2.2rem);
  font-weight: 760;
  text-decoration: none;
  overflow-wrap: anywhere;
}

.contact-phone {
  display: inline-block;
  margin-top: 8px;
  color: #d6d2c6;
  font-size: clamp(1.1rem, 2.2vw, 1.55rem);
  font-weight: 720;
  text-decoration: none;
}

.contact-phone:hover {
  color: var(--green-dark);
}

.site-footer {
  padding: 28px clamp(20px, 5vw, 72px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.92rem;
}

.footer-inner {
  width: min(1120px, 100%);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.site-footer p {
  margin: 0;
}

.footer-links {
  gap: 18px;
}

.legal-page {
  padding: 118px clamp(20px, 5vw, 72px) 72px;
}

.legal-content {
  width: min(780px, 100%);
  margin: 0 auto;
}

.legal-content h1 {
  margin-bottom: 24px;
  font-size: clamp(2.8rem, 8vw, 5.7rem);
  line-height: 0.95;
}

.legal-content p {
  color: var(--muted);
  font-size: 1.05rem;
}

.legal-list {
  margin: 28px 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.legal-list li {
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  color: #d6d2c6;
}

@media (max-width: 780px) {
  .site-header {
    position: absolute;
    align-items: flex-start;
  }

  .nav-links {
    display: none;
  }

  .hero {
    min-height: 720px;
    padding-top: 112px;
    align-items: start;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(24, 27, 29, 0.97) 0%, rgba(24, 27, 29, 0.84) 48%, rgba(24, 27, 29, 0.4) 100%),
      linear-gradient(90deg, rgba(24, 27, 29, 0.92), rgba(24, 27, 29, 0.2));
  }

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

  h1 {
    font-size: clamp(4.2rem, 22vw, 7rem);
  }

  .intro-grid,
  .services-grid,
  .contact-layout,
  .product-grid {
    grid-template-columns: 1fr;
  }

  .product-card {
    min-height: 260px;
    box-shadow: none;
  }

  .product-card-content {
    grid-template-columns: 66px minmax(0, 1fr);
  }

  .product-preview-trigger {
    width: 66px;
    height: 142px;
  }

  .media-overlay {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr auto;
    padding-top: 70px;
  }

  .media-overlay-frame {
    grid-column: 1 / -1;
    grid-row: 1;
  }

  .media-overlay-image {
    max-height: calc(100svh - 172px);
  }

  .media-overlay-prev,
  .media-overlay-next {
    grid-row: 2;
  }

  .media-overlay-prev {
    grid-column: 1;
  }

  .media-overlay-next {
    grid-column: 2;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}
