:root {
  --ink: #17324a;
  --muted: #5b7180;
  --sky: #dff3f7;
  --paper: #fffdf8;
  --mint: #dff0d3;
  --coral: #e8755f;
  --gold: #e7b84d;
  --line: #d7e4df;
  --shadow: 0 18px 50px rgba(31, 66, 78, .14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font: 16px/1.65 Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
a { color: inherit; }
.wrap { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }
.topbar {
  position: sticky; top: 0; z-index: 5;
  background: rgba(255,253,248,.94); border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}
.nav { min-height: 68px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 800; text-decoration: none; letter-spacing: .01em; }
.brand-icon { width: 34px; height: 34px; border-radius: 10px; object-fit: cover; box-shadow: 0 3px 10px rgba(31, 66, 78, .16); }
.nav-links { display: flex; gap: 22px; color: var(--muted); font-size: 14px; }
.nav-links a { text-decoration: none; }
.nav-links a:hover { color: var(--coral); }
.hero { background: var(--sky); padding: 76px 0 88px; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1fr .85fr; gap: 64px; align-items: center; }
.eyebrow { color: var(--coral); font-weight: 800; text-transform: uppercase; letter-spacing: .12em; font-size: 12px; }
h1, h2, h3 { line-height: 1.15; margin: 0 0 18px; letter-spacing: -.02em; }
h1 { max-width: 620px; font-size: clamp(42px, 6vw, 76px); }
h2 { font-size: clamp(30px, 4vw, 46px); }
h3 { font-size: 22px; }
.lede { max-width: 590px; color: var(--muted); font-size: 19px; }
.actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 46px; padding: 0 19px; border-radius: 8px; text-decoration: none; font-weight: 750; border: 1px solid var(--ink); }
.button.primary { color: #fff; background: var(--ink); }
.button.secondary { color: var(--ink); background: rgba(255,255,255,.55); }
.hero-shot { width: min(340px, 100%); margin: 0 auto; border: 8px solid #fff; border-radius: 24px; box-shadow: var(--shadow); transform: rotate(2deg); }
section { padding: 88px 0; }
.section-head { max-width: 680px; margin-bottom: 34px; }
.section-head p { color: var(--muted); }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.feature { border: 1px solid var(--line); border-radius: 8px; padding: 25px; background: #fff; }
.feature p { margin: 0; color: var(--muted); }
.icon { width: 46px; height: 46px; object-fit: contain; margin-bottom: 16px; }
.gallery { background: var(--mint); }
.shots { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; align-items: start; }
.shots img { width: 100%; border-radius: 10px; box-shadow: 0 10px 28px rgba(31,66,78,.16); background: #fff; }
.shots img:nth-child(2) { margin-top: 30px; }
.shots img:nth-child(3) { margin-top: 60px; }
.privacy-callout { display: grid; grid-template-columns: 1fr auto; gap: 30px; align-items: center; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 34px 0; }
.privacy-callout p { color: var(--muted); margin: 0; }
footer { padding: 28px 0 44px; color: var(--muted); font-size: 14px; }
.legal { padding: 64px 0 88px; }
.legal-shell { max-width: 820px; }
.legal-meta { color: var(--muted); margin-top: -8px; }
.legal h2 { margin-top: 42px; font-size: 28px; }
.legal li { margin: 8px 0; }
.notice { border-left: 4px solid var(--coral); background: #fff5ed; padding: 16px 20px; margin: 26px 0; }
@media (max-width: 800px) {
  .wrap { width: min(100% - 28px, 620px); }
  .nav { min-height: 60px; }
  .nav-links { gap: 12px; }
  .hero { padding: 52px 0 64px; }
  .hero-grid { grid-template-columns: 1fr; gap: 34px; }
  .hero-shot { width: min(300px, 84vw); }
  section { padding: 62px 0; }
  .feature-grid, .shots { grid-template-columns: 1fr; }
  .shots img:nth-child(2), .shots img:nth-child(3) { margin-top: 0; }
  .privacy-callout { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } .hero-shot { transform: none; } }
