:root {
  --bg: #f3f7f6;
  --ink: #134e4a;
  --muted: #4b6b67;
  --teal: #0f766e;
  --teal-dark: #0b3d39;
  --card: #ffffff;
  --line: #d5e3df;
  --accent: #ccfbf1;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font: 17px/1.55 "Segoe UI", system-ui, sans-serif;
  color: var(--ink);
  background: var(--bg);
}
a { color: var(--teal); }
img { max-width: 100%; height: auto; }
.wrap { width: min(1100px, calc(100% - 40px)); margin: 0 auto; }
header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: color-mix(in srgb, var(--bg) 92%, white);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: inherit;
  text-decoration: none;
  font-weight: 750;
}
.brand img { width: 40px; height: 40px; border-radius: 10px; }
.nav-links { display: flex; gap: 18px; flex-wrap: wrap; }
.nav-links a { text-decoration: none; color: var(--muted); font-weight: 600; }
.hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
  padding: 56px 0 32px;
}
h1 { font-size: clamp(2rem, 4vw, 3.1rem); line-height: 1.15; margin: 0 0 12px; }
.lede { font-size: 1.15rem; color: var(--muted); margin: 0 0 24px; }
.actions { display: flex; gap: 12px; flex-wrap: wrap; }
.btn {
  display: inline-block;
  background: var(--teal);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  padding: 12px 18px;
  border-radius: 12px;
}
.btn.ghost {
  background: transparent;
  color: var(--teal);
  border: 1px solid var(--line);
}
.hero-art {
  background: var(--teal-dark);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 24px 50px rgba(15, 118, 110, .18);
}
.hero-art img { display: block; width: 100%; }
.section { padding: 48px 0; }
h2 { font-size: 1.7rem; margin: 0 0 18px; }
.grid { display: grid; gap: 16px; }
@media (min-width: 720px) {
  .cols-3 { grid-template-columns: repeat(3, 1fr); }
  .shots { grid-template-columns: repeat(5, 1fr); }
}
.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px;
}
.card h3 { margin: 0 0 8px; font-size: 1.05rem; }
.card p { margin: 0; color: var(--muted); }
.shots img {
  border-radius: 16px;
  border: 1px solid var(--line);
  background: #fff;
}
.note {
  background: var(--accent);
  border-radius: 16px;
  padding: 16px 18px;
}
footer {
  border-top: 1px solid var(--line);
  padding: 28px 0 40px;
  color: var(--muted);
  font-size: .95rem;
}
.foot { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.legal h1 { font-size: 2rem; }
.legal h2 { margin-top: 28px; font-size: 1.2rem; }
.legal ul { padding-left: 1.2rem; }
.legal { padding-bottom: 64px; }
.legal p { max-width: 72ch; }
@media (max-width: 800px) {
  .hero { grid-template-columns: 1fr; padding-top: 28px; }
  .shots { grid-template-columns: repeat(2, 1fr); }
  .nav-links { font-size: .9rem; gap: 12px; }
}
