:root{
  --bg:#fff;
  --fg:#111;
  --muted:#5a5a5a;
  --line:#eaeaea;
  --max:1100px;
  --pad:24px;
  --radius:14px;
  --shadow:0 10px 30px rgba(0,0,0,.06);
  --focus:0 0 0 3px rgba(0,0,0,.14);
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font:16px/1.55 system-ui,-apple-system,Segoe UI,Roboto,Helvetica,Arial,sans-serif;
  color:var(--fg);
  background:var(--bg);
}

img{ max-width:100%; height:auto; display:block; }
a{ color:inherit; text-decoration:none; }
a:focus-visible, button:focus-visible{ outline:none; box-shadow:var(--focus); border-radius:12px; }
.wrap{ max-width:var(--max); margin:0 auto; padding:0 var(--pad); }

/* Header */
header{
  position:sticky; top:0; z-index:10;
  background:rgba(255,255,255,.92);
  backdrop-filter:saturate(180%) blur(10px);
  border-bottom:1px solid var(--line);
}
.nav{
  display:flex; align-items:center; justify-content:space-between;
  padding:18px 0; gap:16px;
}
.brand{ display:flex; align-items:center; gap:12px; font-weight:650; letter-spacing:.2px; }
.brand img{width: auto;height: 64px;object-fit: contain;}
.menu{ display:flex; gap:18px; font-size:14px; letter-spacing:.2px; }
.menu a{ padding:8px 10px; border-radius:12px; color:var(--muted); }
.menu a:hover{ background:#f6f6f6; color:var(--fg); }
.menu a[aria-current="page"]{ background:#111; color:#fff; }

.hamburger{
  display:none;
  border:1px solid var(--line);
  background:#fff;
  border-radius:12px;
  padding:10px 12px;
  cursor:pointer;
}
.hamburger span{ display:block; width:20px; height:2px; background:#111; margin:4px 0; }

.drawer{
  display:none;
  border-top:1px solid var(--line);
  padding:10px 0 18px;
}
.drawer a{
  display:block;
  padding:12px 10px;
  border-radius:12px;
  color:var(--muted);
}
.drawer a:hover{ background:#f6f6f6; color:var(--fg); }
.drawer a[aria-current="page"]{ background:#111; color:#fff; }

/* Layout */
main{ padding:48px 0 56px; }
.kicker{
  color:var(--muted);
  font-size:13px;
  letter-spacing:.16em;
  text-transform:uppercase;
  margin:0 0 14px;
}
h1{
  margin:0 0 14px;
  font-size:clamp(34px,5vw,56px);
  line-height:1.05;
  letter-spacing:-.02em;
}
.lead{
  max-width:65ch;
  color:var(--muted);
  font-size:18px;
  margin:0 0 22px;
}

.hero{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:22px;
  align-items:center;
  padding:18px 0 10px;
}
.heroMedia{
  border-radius:var(--radius);
  overflow:hidden;
  border:1px solid var(--line);
  box-shadow:var(--shadow);
  background:#f6f6f6;
  min-height:240px;
}
.heroMedia img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.ctaRow{ display:flex; gap:12px; flex-wrap:wrap; }
.btn{
  display:inline-flex; align-items:center; gap:10px;
  border:1px solid #111;
  background:#111;
  color:#fff;
  padding:12px 16px;
  border-radius:999px;
  font-size:14px;
  letter-spacing:.2px;
  box-shadow:var(--shadow);
}
.btn:hover{ transform:translateY(-1px); }
.btn:active{ transform:translateY(0); }
.btn.secondary{
  background:#fff;
  color:#111;
}

.grid{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:22px;
  margin-top:28px;
}
.card{
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:22px;
  background:#fff;
  box-shadow:var(--shadow);
}
.card h2{ margin:0 0 10px; font-size:18px; letter-spacing:-.01em; }
.card p{ margin:0 0 10px; color:var(--muted); }

.list{
  margin:10px 0 0;
  padding:0;
  list-style:none;
  color:var(--muted);
}
.list li{
  padding:10px 0;
  border-top:1px solid var(--line);
}
.list a{ color:inherit; }
.list a:hover{ color:var(--fg); }

/* Products */
.productGrid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:18px;
  margin-top:22px;
}
.pTile{
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:16px;
  background:#fff;
  box-shadow:var(--shadow);
  display:flex;
  flex-direction:column;
  gap:10px;
  min-height:130px;
}
.pTile strong{ font-size:15px; }
.pTile span{ color:var(--muted); font-size:14px; }

/* Footer */
footer{
  border-top:1px solid var(--line);
  padding:24px 0 36px;
  color:var(--muted);
  font-size:14px;
}
.footerRow{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  flex-wrap:wrap;
}
.pill{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:10px 12px;
  border-radius:999px;
  border:1px solid var(--line);
  background:#fff;
}
.pill:hover{ background:#f6f6f6; color:var(--fg); }
.dot{ width:8px; height:8px; border-radius:999px; background:#111; display:inline-block; }

/* Responsive */
@media (max-width: 900px){
  .hero{ grid-template-columns:1fr; }
  .heroMedia{ min-height:220px; }
  .grid{ grid-template-columns:1fr; }
  .productGrid{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 860px){
  .menu{ display:none; }
  .hamburger{ display:inline-block; }
  .drawer.show{ display:block; }
}
@media (max-width: 520px){
  .productGrid{ grid-template-columns:1fr; }
  main{ padding:34px 0 46px; }
  :root{ --pad:18px; }
}