:root {
  --ink: #17232a;
  --muted: #52616a;
  --deep: #143234;
  --green: #087b72;
  --mint: #d9f3ee;
  --accent: #ed7655;
  --paper: #f3f7f6;
  --line: #d5dfdc;
  --white: #ffffff;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
}
a { color: inherit; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { letter-spacing: 0; }

.site-header {
  position: sticky;
  z-index: 10;
  top: 0;
  display: flex;
  width: 100%;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  padding: 14px clamp(20px, 6vw, 96px);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  white-space: nowrap;
}

.brand-logo {
  display: block;
  width: auto;
  height: 34px;
  object-fit: contain;
}

.site-nav { display: flex; gap: 28px; align-items: center; }
.site-nav a, .header-contact {
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}
.header-contact {
  padding: 10px 15px;
  color: var(--white);
  background: var(--green);
  border-radius: 4px;
}

.hero {
  position: relative;
  display: grid;
  min-height: 610px;
  overflow: hidden;
  color: var(--white);
  background: var(--deep);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  width: min(860px, 100%);
  padding: clamp(28px, 4vw, 52px) clamp(24px, 7vw, 112px) clamp(58px, 7vw, 88px);
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero-image {
  object-fit: cover;
  object-position: center 24%;
}
.hero-overlay { background: linear-gradient(90deg, rgba(11, 35, 35, 0.88) 0%, rgba(11, 35, 35, 0.68) 46%, rgba(11, 35, 35, 0.2) 100%); }
.hero-brand {
  display: inline-flex;
  width: min(290px, 72%);
  margin-bottom: 20px;
  padding: 8px 10px;
  background: var(--white);
  border-radius: 4px;
}
.hero-brand img {
  display: block;
  width: 100%;
  height: auto;
}

.eyebrow {
  margin-bottom: 14px;
  color: var(--mint);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}
.eyebrow-dark { color: var(--green); }

h1 {
  max-width: 650px;
  margin-bottom: 20px;
  font-size: clamp(42px, 5.2vw, 68px);
  line-height: 1.04;
}
h2 {
  margin-bottom: 0;
  font-size: clamp(30px, 3.5vw, 50px);
  line-height: 1.1;
}
h3 { margin-bottom: 9px; font-size: 20px; line-height: 1.2; }

.hero-copy {
  max-width: 565px;
  margin-bottom: 28px;
  color: #dce9e6;
  font-size: 19px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 20px; align-items: center; }
.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 4px;
  cursor: pointer;
  font: inherit;
  font-size: 15px;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
}
.button-primary { color: var(--white); background: var(--green); }
.button-primary:hover { background: #05635c; }
.text-link { color: var(--white); font-size: 15px; font-weight: 700; text-decoration: none; }
.text-link span { padding-left: 6px; color: var(--accent); }

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  padding: 28px 0 0;
  margin: 28px 0 0;
  border-top: 1px solid var(--line);
  color: #d5e2df;
  font-size: 14px;
  list-style: none;
}
.hero-points li::before { content: "•"; padding-right: 7px; color: var(--mint); }

.capability-bar {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  padding: 26px clamp(24px, 7vw, 112px);
  background: var(--deep);
}
.capability-bar div { display: grid; gap: 3px; padding-right: 20px; }
.capability-bar strong { color: var(--white); font-size: 15px; }
.capability-bar span { color: #b8d0cc; font-size: 13px; }

.section { padding: clamp(66px, 9vw, 116px) clamp(24px, 7vw, 112px); }
.intro {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.75fr);
  gap: clamp(34px, 8vw, 122px);
  align-items: end;
  background: var(--white);
}
.intro-copy { max-width: 500px; margin: 0; color: var(--muted); font-size: 18px; }
.section-heading {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  align-items: end;
  margin-bottom: 34px;
}
.solution-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.solution {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
}
.solution img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
.solution-body {
  display: flex;
  min-height: 230px;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
}
.solution-body p:last-child { margin-bottom: 0; color: var(--muted); }
.solution-index {
  width: fit-content;
  margin-bottom: 42px;
  padding: 5px 8px;
  color: var(--accent);
  background: #fff0ec;
  border-radius: 3px;
  font-size: 13px;
  font-weight: 700;
}

.section-dark { color: var(--white); background: var(--deep); }
.section-dark .eyebrow { color: var(--mint); }
.process-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
  padding: 0;
  margin: 0;
  list-style: none;
}
.process-list li { padding-top: 18px; border-top: 2px solid rgba(217, 243, 238, 0.48); }
.process-list span { display: block; margin-bottom: 30px; color: var(--mint); font-size: 14px; font-weight: 700; }
.process-list p { margin-bottom: 0; color: #c8d8d5; }

.factory-showcase { background: var(--white); }
.factory-showcase .section-heading > p {
  max-width: 360px;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
}
.factory-video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 6px;
  background: var(--deep);
}

.quote-section {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(38px, 8vw, 126px);
  padding: clamp(66px, 9vw, 116px) clamp(24px, 7vw, 112px);
  color: var(--white);
  background: #17615c;
}
.quote-section .eyebrow { color: var(--mint); }
.quote-copy p:not(.eyebrow) { max-width: 470px; color: #d3e3e0; font-size: 18px; }
.contact-line {
  display: inline-block;
  padding-bottom: 3px;
  border-bottom: 1px solid var(--mint);
  color: var(--mint);
  font-size: 17px;
  font-weight: 700;
  text-decoration: none;
}
.quote-form { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; align-content: start; }
.quote-form label { display: grid; gap: 8px; color: var(--white); font-size: 14px; font-weight: 700; }
input, select, textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px;
  border: 1px solid transparent;
  border-radius: 4px;
  color: var(--ink);
  background: var(--white);
  font: inherit;
  font-weight: 400;
}
textarea { min-height: 116px; resize: vertical; }
input:focus, select:focus, textarea:focus { outline: 3px solid var(--mint); outline-offset: 2px; }
.form-full { grid-column: 1 / -1; }
.form-note { margin: 0; color: #d3e3e0; font-size: 13px; }

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px 32px;
  align-items: center;
  padding: 34px clamp(24px, 7vw, 112px);
  color: var(--white);
  background: #122426;
}
.site-footer p { margin: 0; color: #b8c9c6; }
.site-footer > a:not(.brand) { color: var(--mint); font-weight: 700; }
.copyright { grid-column: 2; text-align: right; }

@media (max-width: 780px) {
  .site-header { min-height: 64px; padding: 12px 20px; }
  .site-nav { display: none; }
  .header-contact { padding: 9px 11px; font-size: 13px; }
  .brand-logo { height: 29px; }
  .hero-content { padding: 62px 24px 54px; }
  .hero-brand { width: min(250px, 78%); margin-bottom: 18px; }
  h1 { font-size: 42px; }
  .hero-copy { font-size: 17px; }
  .capability-bar, .intro, .solution-grid, .process-list, .quote-section, .quote-form { grid-template-columns: 1fr; }
  .capability-bar { gap: 0; padding: 14px 24px; }
  .capability-bar div { padding: 12px 0; border-bottom: 1px solid rgba(217, 243, 238, 0.18); }
  .capability-bar div:last-child { border-bottom: 0; }
  .section-heading { display: block; }
  .section-heading > p:last-child { margin-top: 16px; }
  .process-list { gap: 24px; }
  .process-list span { margin-bottom: 16px; }
  .site-footer { grid-template-columns: 1fr; }
  .copyright { grid-column: auto; text-align: left; }
}
