:root {
  --ink: #08263d;
  --ink-soft: #29485d;
  --teal: #35c7bf;
  --lime: #c7f15a;
  --paper: #f4f7f4;
  --white: #ffffff;
  --line: rgba(8, 38, 61, 0.16);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.6;
}
a { color: inherit; }

.site-header {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 18px clamp(24px, 6vw, 88px);
  background: rgba(244, 247, 244, 0.94);
  border-bottom: 1px solid var(--line);
}
.brand { display: flex; align-items: center; gap: 13px; text-decoration: none; font-family: Manrope, sans-serif; font-weight: 800; }
.brand-mark { display: grid; place-items: center; width: 46px; height: 46px; border-radius: 13px; color: var(--teal); background: var(--ink); font-size: 24px; }
nav { display: flex; align-items: center; gap: clamp(16px, 3vw, 38px); }
nav a { text-decoration: none; font-weight: 600; }
.nav-contact { padding: 10px 18px; border: 1px solid var(--ink); border-radius: 999px; }

main { overflow: hidden; }
.hero {
  min-height: 650px;
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(310px, .65fr);
  gap: clamp(40px, 8vw, 120px);
  align-items: center;
  padding: clamp(72px, 10vw, 132px) clamp(24px, 8vw, 120px);
  background:
    radial-gradient(circle at 8% 15%, rgba(53,199,191,.17), transparent 28%),
    linear-gradient(135deg, #f7faf6 0%, #edf4f1 100%);
}
.eyebrow, .section-label { margin: 0 0 16px; font-size: 13px; font-weight: 800; letter-spacing: .2em; text-transform: uppercase; color: #437064; }
h1, h2, h3 { font-family: Manrope, sans-serif; line-height: 1.08; letter-spacing: -.045em; }
h1 { max-width: 850px; margin: 0; font-size: clamp(54px, 8.5vw, 118px); }
.lede { max-width: 720px; margin: 28px 0 38px; color: var(--ink-soft); font-size: clamp(19px, 2vw, 26px); }
.primary-action { display: inline-flex; gap: 18px; align-items: center; padding: 15px 22px; border-radius: 12px; color: var(--ink); background: var(--lime); text-decoration: none; font-weight: 800; }
.hero-panel { padding: 38px; border-radius: 28px; color: var(--white); background: var(--ink); box-shadow: 0 30px 70px rgba(8,38,61,.18); transform: rotate(1.5deg); }
.hero-panel p { margin: 6px 0 28px; font-family: Manrope, sans-serif; font-size: clamp(24px, 3vw, 38px); font-weight: 700; line-height: 1.15; }
.hero-panel p:last-child { margin-bottom: 0; color: var(--lime); }
.panel-number { color: var(--teal); font-size: 13px; font-weight: 800; letter-spacing: .16em; }

.statement, .work-section, .product-section, .contact-section { padding: clamp(76px, 10vw, 140px) clamp(24px, 8vw, 120px); }
.statement { display: grid; grid-template-columns: .6fr 1.5fr; gap: 32px 70px; background: var(--white); }
.statement .section-label { grid-row: span 2; }
.statement h2, .section-heading h2, .product-section h2, .contact-section h2 { margin: 0; font-size: clamp(38px, 5.5vw, 74px); }
.statement > p:last-child { max-width: 800px; margin: 0; color: var(--ink-soft); font-size: 20px; }
.work-section { background: var(--ink); color: var(--white); }
.work-section .section-label { color: var(--teal); }
.section-heading { display: flex; justify-content: space-between; align-items: end; gap: 30px; margin-bottom: 58px; }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid rgba(255,255,255,.22); }
.service-grid article { padding: 42px 34px 18px 0; }
.service-grid article + article { padding-left: 34px; border-left: 1px solid rgba(255,255,255,.22); }
.service-icon { display: grid; place-items: center; width: 42px; height: 42px; margin-bottom: 56px; border: 1px solid var(--teal); border-radius: 50%; color: var(--teal); font-weight: 700; }
.service-grid h3 { margin: 0 0 14px; font-size: 27px; letter-spacing: -.03em; }
.service-grid p { margin: 0; color: #c4d3dc; }

.product-section { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: end; background: var(--lime); }
.product-section .section-label { color: #355e45; }
.product-section h2 { font-size: clamp(72px, 11vw, 150px); }
.product-mantra { margin: 6px 0 0; font-family: Manrope, sans-serif; font-weight: 700; font-size: 20px; }
.product-section > p { max-width: 670px; margin: 0 0 12px; font-size: 21px; }
.contact-section { text-align: center; background: var(--white); }
.contact-section .section-label { margin-bottom: 24px; }
.contact-section h2 { max-width: 850px; margin: 0 auto 36px; }
.contact-section a { display: inline-flex; gap: 14px; font-weight: 800; font-size: clamp(18px, 2.4vw, 28px); text-decoration-thickness: 2px; text-underline-offset: 7px; }
footer { display: flex; justify-content: space-between; gap: 20px; padding: 28px clamp(24px, 8vw, 120px); color: #637b86; border-top: 1px solid var(--line); font-size: 14px; }

@media (max-width: 780px) {
  .site-header { align-items: flex-start; }
  .brand { max-width: 190px; line-height: 1.15; }
  nav a:not(.nav-contact) { display: none; }
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-panel { transform: none; }
  .statement { grid-template-columns: 1fr; }
  .statement .section-label { grid-row: auto; }
  .service-grid, .product-section { grid-template-columns: 1fr; }
  .service-grid article + article { padding-left: 0; border-left: 0; border-top: 1px solid rgba(255,255,255,.22); }
  .service-icon { margin-bottom: 24px; }
  .section-heading { display: block; }
  footer { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
