/* LocalPic — large type, high contrast, comfortable for 50+ */
:root {
  --bg: #f6f3ec;
  --surface: #ffffff;
  --text: #1a1a1a;
  --muted: #4a4a4a;
  --primary: #1c3d5a;
  --primary-hover: #153047;
  --accent: #c43c3c;
  --accent-hover: #a83232;
  --border: #c8c2b4;
  --ok: #1e6b3a;
  --shadow: 0 10px 30px rgba(40, 35, 25, 0.1);
  --radius: 16px;
  --tap: 52px;
  font-family: "Segoe UI", system-ui, -apple-system, "Helvetica Neue", sans-serif;
  font-size: 19px;
  line-height: 1.5;
}

* { box-sizing: border-box; }
html, body { margin: 0; min-height: 100%; background: var(--bg); color: var(--text); }
img { max-width: 100%; height: auto; }
a { color: var(--primary); font-weight: 600; }
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible {
  outline: 3px solid #1c5a9e;
  outline-offset: 2px;
}

.skip {
  position: absolute; left: -999px; top: 0;
  background: #000; color: #fff; padding: 0.75rem 1rem; z-index: 100;
}
.skip:focus { left: 0.5rem; top: 0.5rem; }

.wrap { width: min(1080px, calc(100% - 2rem)); margin: 0 auto; }

.site-header {
  background: var(--surface);
  border-bottom: 2px solid var(--border);
  position: sticky; top: 0; z-index: 20;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.header-inner {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 0.75rem; padding: 0.85rem 0;
}
.logo {
  font-size: 1.45rem; font-weight: 800; color: var(--primary); text-decoration: none;
  letter-spacing: -0.02em;
}
.nav { display: flex; flex-wrap: wrap; gap: 0.35rem 0.85rem; }
.nav a {
  text-decoration: none; color: var(--text); font-weight: 700;
  padding: 0.45rem 0.65rem; border-radius: 999px; min-height: 44px;
  display: inline-flex; align-items: center;
}
.nav a:hover, .nav a.active { background: #e8f0f8; color: var(--primary); }

.hero {
  padding: 2.5rem 0 1.5rem;
}
.hero-grid {
  display: grid; gap: 1.75rem;
  grid-template-columns: 1.2fr 0.9fr; align-items: center;
}
@media (max-width: 800px) {
  .hero-grid { grid-template-columns: 1fr; }
}
.hero h1 {
  margin: 0 0 0.75rem; font-size: clamp(1.9rem, 4vw, 2.6rem);
  line-height: 1.15; color: var(--primary);
}
.lead { font-size: 1.2rem; color: var(--muted); margin: 0 0 1.25rem; max-width: 38ch; }
.hero-card {
  background: var(--surface); border: 2px solid var(--border); border-radius: var(--radius);
  padding: 1.25rem; box-shadow: var(--shadow);
}
.hero-card img { width: 100%; border-radius: 12px; background: #e8e4da; }

.btn-row { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 1rem; }

.btn {
  min-height: var(--tap); border: 2px solid transparent; border-radius: 999px;
  padding: 0.75rem 1.4rem; font-size: 1.05rem; font-weight: 800; cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center; text-decoration: none;
  font-family: inherit;
}
.btn:disabled { opacity: 0.5; cursor: not-allowed; }
.btn-primary { background: var(--accent); color: #fff; border-color: var(--accent); }
.btn-primary:hover:not(:disabled) { background: var(--accent-hover); }
.btn-secondary { background: var(--primary); color: #fff; border-color: var(--primary); }
.btn-secondary:hover:not(:disabled) { background: var(--primary-hover); }
.btn-ghost { background: var(--surface); color: var(--text); border-color: var(--border); }
.btn-ghost:hover:not(:disabled) { background: #fff; }

.section { padding: 1.5rem 0 2.5rem; }
.section h2 { margin: 0 0 0.75rem; font-size: 1.65rem; color: var(--primary); }
.section p { color: var(--muted); }

.cards {
  display: grid; gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  margin-top: 1.25rem;
}
.card {
  background: var(--surface); border: 2px solid var(--border); border-radius: var(--radius);
  padding: 1.25rem 1.2rem; box-shadow: var(--shadow);
}
.card h3 { margin: 0 0 0.5rem; font-size: 1.2rem; color: var(--primary); }
.card p { margin: 0; }

.quote {
  background: #fff8e6; border: 2px solid #e0c070; border-radius: var(--radius);
  padding: 1.25rem 1.35rem; margin: 1rem 0;
}
.quote p { margin: 0 0 0.5rem; color: var(--text); font-size: 1.1rem; }
.quote cite { color: var(--muted); font-style: normal; font-weight: 700; }

.panel {
  background: var(--surface); border: 2px solid var(--border); border-radius: var(--radius);
  padding: 1.5rem; box-shadow: var(--shadow); max-width: 640px;
}
.panel h1 { margin: 0 0 0.5rem; color: var(--primary); font-size: 1.8rem; }
.panel .lead { font-size: 1.1rem; }

.field { margin: 1rem 0; }
.field label { display: block; font-weight: 800; margin-bottom: 0.35rem; }
.field .hint { color: var(--muted); font-size: 0.95rem; margin: 0.25rem 0 0.5rem; }
.field input[type="number"],
.field input[type="text"],
.field input[type="email"],
.field select {
  width: 100%; min-height: var(--tap); font: inherit; padding: 0.65rem 0.85rem;
  border: 2px solid var(--border); border-radius: 12px; background: #faf8f3;
}
.price-tag { font-size: 1.5rem; font-weight: 800; color: var(--primary); margin: 0.5rem 0 1rem; }

.alert {
  padding: 1rem 1.15rem; border-radius: 12px; border: 2px solid #e0c070;
  background: #fff8e6; margin: 1rem 0; font-weight: 600;
}
.alert.error { background: #fdecea; border-color: #d07070; }
.alert.ok { background: #e8f5e9; border-color: #6aab72; }

.product-row {
  display: flex; justify-content: space-between; gap: 1rem; align-items: center;
  padding: 0.85rem 0; border-bottom: 1px solid var(--border);
}
.product-row:last-child { border-bottom: 0; }
.qty { width: 5.5rem; }

.steps { counter-reset: step; list-style: none; padding: 0; margin: 1rem 0 0; }
.steps li {
  counter-increment: step; position: relative; padding: 0.75rem 0 0.75rem 3.2rem;
  border-bottom: 1px solid var(--border);
}
.steps li::before {
  content: counter(step); position: absolute; left: 0; top: 0.65rem;
  width: 2.4rem; height: 2.4rem; border-radius: 50%; background: var(--primary); color: #fff;
  display: grid; place-items: center; font-weight: 800;
}

.site-footer {
  margin-top: 2rem; background: var(--primary); color: #e8eef4; padding: 1.75rem 0;
}
.site-footer a { color: #fff; }
.footer-inner p { margin: 0.35rem 0; }
.fine { opacity: 0.85; font-size: 0.95rem; }

.badge-secure {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-weight: 700; color: var(--ok); margin-top: 0.75rem;
}
