:root {
  --ink: #111827;
  --muted: #5b6575;
  --line: #dfe5ec;
  --paper: #ffffff;
  --soft: #f3f7f9;
  --deep: #102526;
  --accent: #16a37d;
  --accent-dark: #0b6b58;
  --warm: #f2aa4c;
  --shadow: 0 20px 50px rgba(17, 24, 39, 0.12);
}

* {
  box-sizing: border-box;
}

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

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

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 88px;
  padding: 0 5vw;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(223, 229, 236, 0.85);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 1.48rem;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  color: #fff;
  background: var(--deep);
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  flex: 1;
  min-width: 0;
}

.site-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 142px;
  min-height: 48px;
  padding: 0 12px;
  color: #24313d;
  font-size: 1.05rem;
  font-weight: 750;
  border-radius: 8px;
  text-align: center;
  white-space: nowrap;
  isolation: isolate;
  transition: color 180ms ease;
}

.site-nav a::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  background: rgba(22, 163, 125, 0.1);
  opacity: 0;
  transition: opacity 180ms ease;
}

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--accent-dark);
}

.site-nav a:hover::before,
.site-nav a.is-active::before {
  opacity: 1;
}

.site-nav .nav-cta {
  margin-left: 6px;
}

.online-buy {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-left: 12px;
}

.online-buy-toggle {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 150px;
  min-height: 46px;
  border: 0;
  border-radius: 8px;
  background: rgba(22, 163, 125, 0.1);
  color: var(--accent-dark);
  padding: 12px 32px 12px 14px;
  font: inherit;
  font-size: 1.05rem;
  font-weight: 850;
  cursor: pointer;
  transition: background-color 180ms ease, color 180ms ease;
}

.online-buy-toggle:hover,
.online-buy.is-open .online-buy-toggle {
  color: #fff;
  background: var(--accent-dark);
}

.online-buy-toggle::after {
  content: "";
  position: absolute;
  right: 13px;
  top: 50%;
  display: block;
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-60%) rotate(45deg);
}

.online-buy-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  z-index: 30;
  display: grid;
  width: 150px;
  min-width: 0;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(-6px);
  pointer-events: none;
  transition: opacity 160ms ease, transform 160ms ease;
}

.online-buy.is-open .online-buy-menu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.online-buy-menu button {
  display: flex;
  align-items: center;
  gap: 11px;
  width: 100%;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: var(--ink);
  padding: 11px 12px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  text-align: left;
}

.online-buy-menu button:hover {
  background: var(--soft);
}

.online-buy-menu img {
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  border-radius: 6px;
}

.language-switch {
  display: inline-flex;
  align-items: center;
  position: relative;
  gap: 8px;
}

.control-icon {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.online-buy-icon {
  color: var(--accent-dark);
}

.language-switch .control-icon {
  color: #657386;
}

.language-switch select {
  min-height: 46px;
  width: 138px;
  min-width: 138px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  color: #344253;
  padding: 8px 30px 8px 11px;
  font: inherit;
  font-size: 0.95rem;
  font-weight: 850;
  cursor: pointer;
}

.language-switch select:focus {
  outline: 2px solid rgba(22, 163, 125, 0.25);
  border-color: var(--accent-dark);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 11px 15px;
  font-weight: 750;
}

.hero {
  position: relative;
  min-height: 680px;
  display: grid;
  align-items: end;
  overflow: hidden;
}

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

.hero-carousel img {
  opacity: 0;
  transform: scale(1.03);
  transition: opacity 900ms ease, transform 5800ms ease;
}

.hero-carousel img.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero-overlay {
  background: linear-gradient(90deg, rgba(10, 24, 27, 0.86), rgba(10, 24, 27, 0.42) 52%, rgba(10, 24, 27, 0.12));
}

.hero-content {
  position: relative;
  width: min(760px, 90vw);
  margin: 0 0 86px 5vw;
  color: #fff;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero .eyebrow,
.page-hero .eyebrow {
  color: #7eedcd;
}

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

h1 {
  margin-bottom: 18px;
  font-size: clamp(3rem, 8vw, 6.4rem);
  line-height: 0.95;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.18rem;
  line-height: 1.25;
}

.hero-content p:not(.eyebrow),
.page-hero p,
.page-title p,
.product-summary p,
.contact-layout > div > p {
  max-width: 680px;
  color: #e2ebed;
  font-size: 1.14rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 0;
  border-radius: 8px;
  font-weight: 800;
  cursor: pointer;
}

.button.primary {
  color: #071516;
  background: var(--warm);
}

.button.secondary {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.button.dark {
  color: #fff;
  background: var(--deep);
}

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

.hero-dots {
  position: absolute;
  right: 5vw;
  bottom: 78px;
  z-index: 2;
  display: flex;
  gap: 10px;
}

.hero-dots button {
  width: 34px;
  height: 4px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.42);
  cursor: pointer;
  transition: width 180ms ease, background-color 180ms ease;
}

.hero-dots button.is-active {
  width: 52px;
  background: var(--warm);
}

.strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
}

.stats div {
  padding: 30px 5vw;
  background: #fff;
}

.stats strong {
  display: block;
  margin-bottom: 4px;
  font-size: 2.2rem;
  line-height: 1;
}

.stats span {
  color: var(--muted);
  font-weight: 650;
}

.section {
  padding: 88px 5vw;
}

.muted {
  background: var(--soft);
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 58px;
  align-items: start;
}

.two-column > div > p,
.split-band p,
.info-card p,
.product-card span,
.timeline p,
.news-grid p,
.faq p,
.contact-box,
.spec-table dd {
  color: var(--muted);
}

.feature-grid,
.cards,
.product-grid,
.news-grid {
  display: grid;
  gap: 22px;
}

.feature-grid {
  grid-template-columns: repeat(2, 1fr);
}

.feature-grid article,
.info-card,
.product-card,
.news-grid article {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.feature-grid img,
.news-grid img {
  width: 100%;
  height: 260px;
}

.feature-grid h3,
.feature-grid p,
.news-grid div {
  padding: 0 20px;
}

.feature-grid h3 {
  padding-top: 20px;
}

.feature-grid p {
  padding-bottom: 22px;
}

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

.section-heading.inline {
  max-width: none;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
}

.text-link {
  color: var(--accent-dark);
  font-weight: 850;
  border-bottom: 2px solid currentColor;
}

.cards.three {
  grid-template-columns: repeat(3, 1fr);
}

.cards.four {
  grid-template-columns: repeat(4, 1fr);
}

.info-card {
  padding: 28px;
}

.info-card span,
.news-grid span {
  display: inline-block;
  margin-bottom: 28px;
  color: var(--accent-dark);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.split-band {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 42px;
  align-items: center;
}

.split-band.reverse {
  grid-template-columns: 0.95fr 1.05fr;
  padding: 0;
}

.split-band img {
  width: 100%;
  height: 520px;
  border-radius: 8px;
}

.product-grid {
  grid-template-columns: repeat(3, 1fr);
}

.product-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
}

.product-card img {
  width: 100%;
  height: 250px;
}

.product-card div {
  padding: 20px;
  flex: 1;
}

.product-card p {
  margin-bottom: 6px;
  color: var(--accent-dark);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.product-card a {
  display: block;
  padding: 15px 20px;
  border-top: 1px solid var(--line);
  font-weight: 850;
}

.product-card.wide {
  min-height: 0;
}

.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 62px 5vw;
  color: #fff;
  background: var(--deep);
}

.cta-band p {
  max-width: 680px;
  color: #c7d7d7;
}

.page-hero {
  position: relative;
  display: grid;
  align-items: end;
  min-height: 480px;
  overflow: hidden;
  color: #fff;
}

.page-hero.compact {
  min-height: 420px;
}

.page-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  filter: brightness(0.55);
}

.page-hero div {
  position: relative;
  width: min(820px, 90vw);
  margin: 0 0 58px 5vw;
}

.page-hero h1,
.page-title h1,
.product-summary h1,
.contact-layout h1 {
  font-size: clamp(2.6rem, 5vw, 4.8rem);
  line-height: 1;
}

.page-title {
  padding: 82px 5vw 26px;
}

.page-title p,
.product-summary p,
.contact-layout > div > p {
  color: var(--muted);
}

.product-list {
  padding-top: 70px;
}

.product-detail {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 52px;
  align-items: center;
  padding: 82px 5vw;
}

.product-media img {
  width: 100%;
  height: 620px;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.spec-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0 30px;
}

.spec-pills span {
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  font-weight: 750;
}

.spec-table h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.spec-table dl {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.spec-table div {
  padding: 22px;
  background: #fff;
}

.spec-table dt {
  margin-bottom: 6px;
  font-weight: 850;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
}

.timeline article {
  padding: 28px;
  background: #fff;
}

.timeline span {
  display: inline-block;
  margin-bottom: 42px;
  color: var(--accent-dark);
  font-weight: 900;
}

.faq {
  max-width: 920px;
  margin: 0 auto;
}

.faq details {
  border-top: 1px solid var(--line);
  padding: 24px 0;
}

.faq details:last-child {
  border-bottom: 1px solid var(--line);
}

.faq summary {
  cursor: pointer;
  font-size: 1.25rem;
  font-weight: 850;
}

.news-grid {
  grid-template-columns: repeat(3, 1fr);
}

.news-grid h3 {
  font-size: 1.35rem;
}

.news-grid div {
  padding-top: 22px;
  padding-bottom: 24px;
}

.news-grid span {
  margin-bottom: 12px;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 52px;
  align-items: start;
  padding: 88px 5vw;
}

.contact-box {
  display: grid;
  gap: 8px;
  margin-top: 34px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}

.contact-box strong {
  color: var(--ink);
}

.quote-form {
  display: grid;
  gap: 16px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.quote-form label {
  display: grid;
  gap: 7px;
  color: #253241;
  font-weight: 800;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  border: 1px solid #cfd8e3;
  border-radius: 8px;
  padding: 12px 13px;
  font: inherit;
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: var(--accent-dark);
  font-weight: 750;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 34px;
  padding: 54px 5vw;
  color: #d5dfdf;
  background: #071516;
}

.site-footer .brand {
  color: #fff;
}

.site-footer .brand-mark {
  background: var(--accent);
}

.site-footer h4 {
  margin: 0 0 14px;
  color: #fff;
}

.site-footer a,
.site-footer span,
.site-footer p {
  display: block;
  margin: 0 0 8px;
  color: #b7c5c6;
}

@media (max-width: 1360px) {
  .site-header {
    min-height: 76px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px 5vw 18px;
    background: #fff;
    border-bottom: 1px solid var(--line);
  }

  .site-nav a {
    width: 100%;
    min-height: 46px;
  }

  .language-switch {
    margin-left: auto;
    margin-right: 10px;
  }

  .online-buy {
    order: 3;
    width: 100%;
    margin: 10px 0 0;
  }

  .online-buy-toggle {
    width: calc(100% - 26px);
    justify-content: center;
  }

  .online-buy-menu {
    position: static;
    display: none;
    min-width: 0;
    margin-top: 8px;
    box-shadow: none;
    opacity: 1;
    transform: none;
    pointer-events: auto;
  }

  .online-buy.is-open .online-buy-menu {
    display: grid;
  }

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

  .site-nav .nav-cta {
    margin-left: 0;
    text-align: center;
  }

  .hero {
    min-height: 610px;
  }

  .hero-content {
    margin-bottom: 58px;
  }

  .hero-dots {
    bottom: 36px;
    left: 5vw;
    right: auto;
  }

  .strip,
  .two-column,
  .feature-grid,
  .cards.three,
  .cards.four,
  .split-band,
  .split-band.reverse,
  .product-grid,
  .product-detail,
  .timeline,
  .news-grid,
  .contact-layout,
  .site-footer {
    grid-template-columns: 1fr 1fr;
  }

  .two-column,
  .product-detail,
  .contact-layout {
    gap: 34px;
  }

  .product-media img {
    height: 460px;
  }
}

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

  .hero-overlay {
    background: linear-gradient(180deg, rgba(10, 24, 27, 0.25), rgba(10, 24, 27, 0.9));
  }

  .brand {
    font-size: 1.3rem;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .language-switch select {
    width: 122px;
    min-width: 122px;
    max-width: 38vw;
    font-size: 0.84rem;
  }

  .hero-dots button {
    width: 25px;
  }

  .hero-dots button.is-active {
    width: 38px;
  }

  .section,
  .product-detail,
  .contact-layout {
    padding: 58px 5vw;
  }

  .strip,
  .two-column,
  .feature-grid,
  .cards.three,
  .cards.four,
  .split-band,
  .split-band.reverse,
  .product-grid,
  .product-detail,
  .timeline,
  .news-grid,
  .contact-layout,
  .site-footer,
  .spec-table dl {
    grid-template-columns: 1fr;
  }

  .section-heading.inline,
  .cta-band {
    align-items: flex-start;
    flex-direction: column;
  }

  .stats div {
    padding: 22px 5vw;
  }

  .split-band img,
  .product-media img {
    height: 360px;
  }

  .page-hero.compact {
    min-height: 380px;
  }
}
