:root {
  --ink: #172d3b;
  --muted: #5e7080;
  --aqua: #d6eeee;
  --aqua-strong: #c4e5e4;
  --paper: #f7fbfb;
  --white: #ffffff;
  --line: #d9e7e7;
  --shadow: 0 24px 70px rgba(23, 45, 59, 0.14);
  --radius: 28px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.55;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(20px, 5vw, 72px);
  background: rgba(247, 251, 251, 0.9);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(23, 45, 59, 0.08);
}
.brand img { width: 220px; }
nav { display: flex; gap: 22px; font-weight: 700; font-size: 0.95rem; }
nav a { text-decoration: none; color: var(--muted); }
nav a:hover { color: var(--ink); }

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  padding: clamp(48px, 7vw, 92px) clamp(20px, 5vw, 72px) 36px;
}
.hero-copy { max-width: 650px; }
.eyebrow {
  margin: 0 0 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--muted);
}
h1, h2, h3, p { margin-top: 0; }
h1 {
  font-size: clamp(2.5rem, 6vw, 5.7rem);
  line-height: 0.96;
  letter-spacing: -0.06em;
  margin-bottom: 24px;
}
h2 {
  font-size: clamp(2rem, 4vw, 3.75rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
  margin-bottom: 18px;
}
h3 {
  font-size: 1.1rem;
  line-height: 1.2;
  margin-bottom: 8px;
}
.lead { font-size: clamp(1.1rem, 2vw, 1.35rem); color: var(--muted); margin-bottom: 32px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.button:hover { transform: translateY(-2px); }
.primary { background: var(--ink); color: var(--white); box-shadow: 0 12px 28px rgba(23, 45, 59, .22); }
.secondary { border: 2px solid var(--ink); color: var(--ink); background: rgba(255,255,255,.55); }
.compact { white-space: nowrap; }
.hero-image {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 10px solid var(--white);
}
.hero-image img { width: 100%; height: clamp(360px, 44vw, 620px); object-fit: cover; object-position: center; }

.intro-card, .section, .contact-section {
  margin: 28px clamp(20px, 5vw, 72px);
}
.intro-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: clamp(24px, 4vw, 44px);
  background: var(--aqua);
  border-radius: var(--radius);
  box-shadow: 0 18px 48px rgba(23, 45, 59, .08);
}
.intro-card p { max-width: 900px; color: var(--muted); margin-bottom: 0; }
.intro-card h2 { font-size: clamp(1.8rem, 3vw, 3rem); }

.section { padding: clamp(48px, 7vw, 92px) 0; }
.split {
  display: grid;
  grid-template-columns: minmax(240px, .75fr) minmax(0, 1.25fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: start;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.feature-grid article {
  min-height: 210px;
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: 0 12px 34px rgba(23, 45, 59, .06);
}
.icon {
  width: 48px;
  height: 48px;
  display: inline-grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 50%;
  background: var(--aqua);
  font-weight: 900;
}
.feature-grid p, .process-step p, .commitment-list p, .contact-section p { color: var(--muted); margin-bottom: 0; }

.process-section {
  background: var(--white);
  border-radius: var(--radius);
  padding-left: clamp(24px, 4vw, 54px);
  padding-right: clamp(24px, 4vw, 54px);
  box-shadow: 0 18px 50px rgba(23, 45, 59, .08);
}
.section-heading { max-width: 760px; margin-bottom: 32px; }
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.process-step {
  padding: 24px;
  border-radius: 22px;
  background: var(--paper);
  border: 1px solid var(--line);
}
.process-step span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 20px;
  background: var(--aqua-strong);
  border-radius: 14px;
  font-weight: 900;
  font-size: 1.2rem;
}

.customer-experience {
  display: grid;
  grid-template-columns: minmax(280px, .85fr) minmax(0, 1.15fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
}
.experience-copy ol {
  list-style: none;
  padding: 0;
  margin: 26px 0 0;
  display: grid;
  gap: 16px;
}
.experience-copy li {
  padding: 18px 20px;
  border-left: 8px solid var(--aqua-strong);
  background: var(--white);
  border-radius: 0 18px 18px 0;
  box-shadow: 0 8px 22px rgba(23, 45, 59, .05);
  color: var(--muted);
}
.experience-copy strong { color: var(--ink); }
.machine-gallery { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.machine-gallery img {
  width: 100%;
  height: min(520px, 52vw);
  object-fit: cover;
  border-radius: 24px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.commitment {
  display: grid;
  grid-template-columns: minmax(280px, .9fr) minmax(0, 1.1fr);
  gap: 24px;
}
.owner-card, .commitment-list {
  border-radius: var(--radius);
  padding: clamp(24px, 4vw, 42px);
}
.owner-card {
  background: var(--aqua);
  display: grid;
  gap: 24px;
  align-content: start;
}
.owner-card img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 50%;
  border: 8px solid rgba(255,255,255,.6);
}
.owner-card h2 { font-size: clamp(1.9rem, 3vw, 3rem); }
.commitment-list { background: var(--ink); color: var(--white); }
.commitment-list h2 { font-size: clamp(2rem, 3.2vw, 3.25rem); }
.commitment-list div { padding: 20px 0; border-top: 1px solid rgba(255,255,255,.16); }
.commitment-list p { color: rgba(255,255,255,.72); }

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: 24px;
  align-items: center;
  padding: clamp(32px, 6vw, 64px);
  border-radius: var(--radius);
  background: var(--aqua);
}
.contact-card {
  display: grid;
  gap: 12px;
  padding: 28px;
  background: var(--white);
  border-radius: 24px;
  font-weight: 800;
  box-shadow: 0 12px 32px rgba(23, 45, 59, .08);
}
.contact-card a { text-decoration: none; }
.contact-card span { color: var(--muted); }

footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 36px clamp(20px, 5vw, 72px);
  color: var(--muted);
}
footer img { width: 190px; }
footer p { margin: 0; text-align: right; }

@media (max-width: 900px) {
  .site-header { align-items: flex-start; }
  nav { display: none; }
  .brand img { width: 190px; }
  .hero, .split, .customer-experience, .commitment, .contact-section { grid-template-columns: 1fr; }
  .hero { padding-top: 36px; }
  .intro-card { align-items: flex-start; flex-direction: column; }
  .process-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .machine-gallery img { height: 420px; }
  footer { flex-direction: column; align-items: flex-start; }
  footer p { text-align: left; }
}

@media (max-width: 600px) {
  .feature-grid, .process-grid, .machine-gallery { grid-template-columns: 1fr; }
  .hero-image img { height: 320px; }
  .machine-gallery img { height: 360px; }
  .button { width: 100%; }
}
