:root {
  --ink: #17201d;
  --muted: #56615c;
  --line: #d9e1dc;
  --surface: #f7f9f6;
  --surface-strong: #eef3ef;
  --white: #ffffff;
  --teal: #1f7a6b;
  --teal-dark: #12594e;
  --amber: #e7a93b;
  --copper: #a85f2b;
  --shadow: 0 22px 60px rgba(23, 32, 29, 0.14);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--surface);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

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

a {
  color: inherit;
}

button,
input,
textarea,
select {
  font: inherit;
}

.shell {
  width: calc(100% - 40px);
  max-width: 1120px;
  margin: 0 auto;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 14px;
  color: var(--white);
  background: var(--ink);
  transform: translateY(-140%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.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;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(18, 29, 26, 0.78);
  color: var(--white);
  backdrop-filter: blur(18px);
}

.site-header.is-scrolled {
  background: rgba(18, 29, 26, 0.94);
  box-shadow: 0 12px 32px rgba(10, 18, 16, 0.18);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  color: inherit;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.1);
  color: var(--amber);
  font-weight: 800;
}

.brand-copy {
  display: grid;
  min-width: 0;
}

.brand-name {
  overflow: hidden;
  font-size: 0.96rem;
  font-weight: 750;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.brand-line {
  overflow: hidden;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-menu a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 8px 12px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
  font-weight: 650;
  text-decoration: none;
}

.nav-menu a:hover,
.nav-menu a:focus-visible {
  color: var(--white);
  background: rgba(255, 255, 255, 0.11);
  outline: none;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  cursor: pointer;
}

.nav-toggle-line {
  display: block;
  width: 19px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.hero {
  position: relative;
  display: grid;
  min-height: 88svh;
  padding: 138px 0 72px;
  overflow: hidden;
  color: var(--white);
  background: #17201d;
}

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

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(12, 21, 18, 0.88), rgba(12, 21, 18, 0.58) 48%, rgba(12, 21, 18, 0.36)),
    linear-gradient(180deg, rgba(12, 21, 18, 0.36), rgba(12, 21, 18, 0.82));
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: end;
  max-width: 100%;
  min-height: calc(88svh - 210px);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--amber);
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
}

h1 {
  max-width: 820px;
  font-size: 5.45rem;
  font-weight: 820;
}

h2 {
  font-size: 3.45rem;
  font-weight: 790;
}

h3 {
  font-size: 1.12rem;
  font-weight: 760;
}

p {
  margin: 0;
  color: var(--muted);
}

.hero-lede {
  max-width: 690px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.12rem;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border: 1px solid transparent;
  color: inherit;
  font-weight: 760;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
}

.button-primary {
  background: var(--amber);
  color: #1d1608;
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #f0ba57;
  outline: none;
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: rgba(255, 255, 255, 0.16);
  outline: none;
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 840px;
  margin: 52px 0 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
}

.hero-facts div {
  min-width: 0;
  padding: 18px;
}

.hero-facts div + div {
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-facts dt {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-facts dd {
  margin: 5px 0 0;
  color: var(--white);
  font-weight: 760;
}

.section {
  padding: 104px 0;
}

.section-intro {
  padding: 48px 0;
  background: var(--white);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 42px;
  align-items: start;
}

.intro-grid p:last-child {
  font-size: 1.05rem;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 42px;
  text-align: center;
}

.section-heading.align-left {
  margin-right: 0;
  margin-left: 0;
  text-align: left;
}

.section-heading p:not(.eyebrow) {
  margin-top: 16px;
  font-size: 1.03rem;
}

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

.product-card {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 44px rgba(23, 32, 29, 0.08);
}

.product-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: var(--surface-strong);
}

.product-card-body {
  display: grid;
  gap: 14px;
  padding: 24px;
}

.product-card ul,
.check-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.product-card li,
.check-list li {
  position: relative;
  padding-left: 22px;
  color: var(--muted);
}

.product-card li::before,
.check-list li::before {
  position: absolute;
  top: 0.67em;
  left: 0;
  width: 8px;
  height: 8px;
  background: var(--teal);
  content: "";
  transform: translateY(-50%);
}

.section-band {
  background: var(--ink);
  color: var(--white);
}

.section-band p {
  color: rgba(255, 255, 255, 0.72);
}

.capability-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 56px;
  align-items: start;
}

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

.capability-list article {
  min-height: 210px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.capability-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 28px;
  background: var(--teal);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 820;
}

.capability-list h3 {
  margin-bottom: 10px;
}

.quality-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(320px, 0.74fr);
  gap: 42px;
  align-items: start;
}

.quality-panel {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.quality-panel h3 {
  margin-bottom: 20px;
}

.section-process {
  background: var(--surface-strong);
}

.process-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: process;
}

.process-list li {
  position: relative;
  min-height: 250px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.process-list span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-bottom: 34px;
  background: var(--copper);
  color: var(--white);
  font-weight: 820;
}

.process-list h3 {
  margin-bottom: 10px;
}

.contact-section {
  padding: 96px 0;
  background: var(--teal-dark);
  color: var(--white);
}

.contact-section p {
  color: rgba(255, 255, 255, 0.76);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  gap: 44px;
  align-items: center;
}

.contact-layout h2 {
  max-width: 760px;
}

.contact-layout > div > p:not(.eyebrow) {
  max-width: 700px;
  margin-top: 18px;
}

.contact-card {
  display: grid;
  gap: 16px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.16);
}

.contact-card a:not(.button) {
  color: var(--white);
  font-size: 1.08rem;
  font-weight: 760;
  word-break: break-word;
}

.contact-card .button {
  margin-top: 8px;
}

.site-footer {
  padding: 30px 0;
  background: #111815;
  color: var(--white);
}

.footer-layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-layout p {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.62);
}

.footer-layout nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px 18px;
}

.footer-layout a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
}

.footer-layout a:hover,
.footer-layout a:focus-visible {
  color: var(--white);
  outline: none;
}

@media (max-width: 980px) {
  .shell {
    width: calc(100% - 32px);
    max-width: 760px;
  }

  .nav-toggle {
    display: block;
  }

  .nav-menu {
    position: absolute;
    top: 74px;
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(18, 29, 26, 0.98);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.24);
  }

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

  .nav-menu a {
    min-height: 46px;
  }

  .hero {
    min-height: auto;
    padding: 124px 0 56px;
  }

  .hero-content {
    min-height: auto;
  }

  h1 {
    font-size: 3.7rem;
  }

  h2 {
    font-size: 2.7rem;
  }

  .hero-facts,
  .product-grid,
  .capability-layout,
  .quality-grid,
  .process-list,
  .contact-layout,
  .intro-grid {
    grid-template-columns: 1fr;
  }

  .hero-facts {
    max-width: 100%;
  }

  .hero-facts div + div {
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    border-left: 0;
  }

  .capability-list {
    grid-template-columns: 1fr;
  }

  .process-list li,
  .capability-list article {
    min-height: auto;
  }

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

  .footer-layout nav {
    justify-content: flex-start;
  }
}

@media (max-width: 620px) {
  .shell {
    width: calc(100% - 24px);
    max-width: 520px;
  }

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

  .brand-name {
    max-width: 210px;
    font-size: 0.88rem;
  }

  .brand-line {
    max-width: 210px;
  }

  .hero {
    padding-top: 116px;
  }

  .hero .eyebrow {
    font-size: 0.68rem;
    line-height: 1.35;
    white-space: normal;
  }

  .section {
    padding: 72px 0;
  }

  .section-intro {
    padding: 38px 0;
  }

  h1 {
    max-width: 100%;
    font-size: 1.96rem;
    line-height: 1.14;
  }

  h2 {
    font-size: 1.82rem;
    line-height: 1.16;
  }

  .hero-lede {
    max-width: 100%;
    font-size: 1rem;
    line-height: 1.55;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .button {
    min-height: 50px;
  }

  .product-card-body,
  .quality-panel,
  .contact-card,
  .capability-list article,
  .process-list li {
    padding: 20px;
  }
}

@media (max-width: 500px) {
  .shell {
    width: calc(100% - 24px);
    max-width: 366px;
    margin-left: 12px;
    margin-right: auto;
  }

  .nav {
    gap: 10px;
  }

  .brand-name,
  .brand-line {
    max-width: 184px;
  }

  .nav-menu {
    right: auto;
    width: calc(100% - 24px);
    max-width: 366px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
