:root {
  --teal: #0f766e;
  --teal-dark: #015650;
  --teal-ink: #073b36;
  --sand: #c4a35a;
  --paper: #f6f4ef;
  --cream: #fffbf4;
  --ink: #10211e;
  --muted: #4a5c58;
  --line: #d9d4c8;
  --card: #fbf8f2;
  --max: 1080px;
  --radius: 20px;
}

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

img { max-width: 100%; height: auto; display: block; }
a { color: var(--teal); }
a:hover { color: var(--teal-ink); }

.skip {
  position: absolute;
  left: -999px;
  top: 0;
  background: #fff;
  padding: 8px 12px;
  z-index: 20;
}
.skip:focus { left: 8px; }

.wrap {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(246, 244, 239, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 68px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--ink);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
}
.brand img { width: 36px; height: 36px; border-radius: 10px; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a { text-decoration: none; color: var(--muted); font-weight: 600; }
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--teal-dark); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 650;
  border: 0;
}
.btn-primary {
  background: var(--teal);
  color: #fff;
}
.btn-primary:hover { background: var(--teal-dark); color: #fff; }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
}

.hero {
  padding: 56px 0 24px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}
.kicker {
  color: var(--teal);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
  margin: 0 0 12px;
}
h1, h2, h3 { letter-spacing: -0.03em; line-height: 1.15; margin: 0 0 12px; }
h1 { font-size: clamp(2.1rem, 4vw, 3.4rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); }
.lede {
  font-size: 1.15rem;
  color: var(--muted);
  margin: 0 0 24px;
  max-width: 38rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-art {
  display: flex;
  justify-content: center;
}
.phone {
  width: min(280px, 100%);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 24px 50px rgba(16, 33, 30, 0.18);
  border: 8px solid #15201d;
  background: #15201d;
}

section { padding: 64px 0; }
.section-copy { max-width: 40rem; margin-bottom: 28px; }

.grid-3, .grid-2 {
  display: grid;
  gap: 16px;
}
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: 1fr 1fr; }
.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
}
.card h3 { font-size: 1.15rem; }
.card p { margin: 0; color: var(--muted); }

.shots {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.shots figure {
  margin: 0;
  background: var(--card);
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
}
.shots img { width: 100%; }
.shots figcaption {
  padding: 10px 12px 14px;
  font-size: 0.92rem;
  color: var(--muted);
}

.pro {
  background: var(--teal-dark);
  color: var(--cream);
  border-radius: 28px;
  padding: 36px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
  align-items: center;
}
.pro h2, .pro p { color: var(--cream); }
.pro p { opacity: 0.9; }
.pro ul { margin: 0; padding-left: 1.1rem; }
.pro li { margin: 8px 0; }

.site-footer {
  border-top: 1px solid var(--line);
  padding: 28px 0 40px;
  color: var(--muted);
  font-size: 0.95rem;
}
.footer-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}
.footer-row a { color: var(--muted); text-decoration: none; font-weight: 600; }
.footer-row a:hover { color: var(--teal-dark); }

.policy {
  padding: 40px 0 72px;
  max-width: 760px;
}
.policy h1 { margin-bottom: 8px; }
.updated { color: var(--muted); margin-bottom: 28px; }
.policy h2 { margin-top: 32px; font-size: 1.25rem; }
.policy p, .policy li { color: var(--ink); }
.policy ul { padding-left: 1.2rem; }

@media (max-width: 860px) {
  .hero, .pro, .grid-3, .grid-2, .shots { grid-template-columns: 1fr; }
  .shots { grid-template-columns: 1fr 1fr; }
  .hero { padding-top: 32px; }
  .nav-links .hide-sm { display: none; }
}

@media (max-width: 520px) {
  .shots { grid-template-columns: 1fr; }
  .wrap { width: min(var(--max), calc(100% - 28px)); }
}
