:root {
  --bb: #A4194A;
  --bb-dark: #7e1238;
  --ink: #1b1320;
  --muted: #5c5460;
  --line: #eadfe4;
  --paper: #fffafb;
}
* { box-sizing: border-box; }
html, body { margin: 0; font-family: "Source Sans 3", sans-serif; color: var(--ink); background: var(--paper); }
a { color: var(--bb); }
.wrap { width: min(1100px, calc(100% - 40px)); margin: 0 auto; }
header {
  background: #fff;
  border-bottom: 1px solid var(--line);
  position: sticky; top: 0; z-index: 5;
}
.nav {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  padding: 14px 0;
  gap: 12px 16px;
}
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--ink); font-weight: 800; }
.brand-logo { width: 36px; height: 36px; border-radius: 10px; object-fit: cover; background: var(--bb); }
.logo { width: 36px; height: 36px; border-radius: 10px; background: var(--bb); color: #fff; display: grid; place-items: center; }
nav { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 4px 0; }
nav a { margin-left: 14px; text-decoration: none; color: var(--muted); font-weight: 600; }
nav a.active, nav a:hover { color: var(--bb); }
.lang-wrap {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  justify-self: end;
  grid-column: 3;
  grid-row: 1;
}
.lang-wrap select { min-width: 148px; padding: 8px 10px; }
@media (max-width: 900px) {
  .nav {
    grid-template-columns: 1fr auto;
    grid-template-areas: "brand lang" "links links";
  }
  .brand { grid-area: brand; }
  .lang-wrap { grid-area: lang; }
  nav { grid-area: links; justify-content: flex-start; }
  nav a { margin-left: 0; margin-right: 14px; }
}
.page-form { display: flex; flex-direction: column; align-items: center; text-align: center; }
.page-form .lede { margin: 0 auto 10px; font-size: 16px; }
.page-form form { margin: 0; width: 100%; text-align: left; gap: 8px; }
.page-form select, .page-form input, .page-form textarea, .page-form button { width: 100%; }
.page-contact { padding: 28px 0 40px; }
.page-contact h1 { margin: 0 0 6px; font-size: 28px; }
.form-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 18px 46px rgba(27,19,32,.08);
  padding: 22px 22px 18px;
  width: min(480px, 100%);
  text-align: center;
}
.form-card form { text-align: left; }
.form-card-wide { width: min(640px, 100%); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 14px; }
@media (max-width: 640px) { .form-grid { grid-template-columns: 1fr; } }
.optional { font-weight: 600; color: var(--muted); font-size: 12px; }
.field-error { margin: -4px 0 0; font-size: 13px; color: #b42318; font-weight: 600; }
input.invalid, textarea.invalid { border-color: #b42318; }
.btn-send { display: inline-flex; align-items: center; justify-content: center; min-height: 44px; gap: 8px; }
.btn-send[disabled] { opacity: .75; cursor: wait; }
.btn-spinner {
  width: 18px; height: 18px; border-radius: 50%;
  border: 2px solid rgba(255,255,255,.35); border-top-color: #fff;
  animation: bbspin .7s linear infinite;
}
@keyframes bbspin { to { transform: rotate(360deg); } }
.translate-status {
  position: fixed; right: 16px; bottom: 16px; z-index: 20;
  background: var(--ink); color: #fff; font-weight: 700; font-size: 13px;
  padding: 8px 12px; border-radius: 999px;
}
.shot-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 22px; padding: 12px 0 48px; align-items: start; }
.shot-card img, .product-shot { width: 100%; border-radius: 18px; border: 1px solid var(--line); display: block; background: #fff; }
.shot-card h3 { margin: 12px 0 6px; }
.section { padding: 12px 0 28px; }
.section h2 { margin: 0 0 10px; }
.split { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 28px; align-items: center; padding: 12px 0 40px; }
.stat-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 16px; padding: 8px 0 36px; }
.stat { background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 18px; text-align: center; }
.stat strong { display: block; font-size: 28px; color: var(--bb); }
.btn {
  display: inline-block; background: var(--bb); color: #fff !important; text-decoration: none;
  padding: 11px 16px; border-radius: 999px; font-weight: 700;
}
.hero { padding: 72px 0 40px; }
.hero h1 { font-size: clamp(36px, 6vw, 58px); line-height: 1.05; margin: 0 0 16px; }
.hero p { font-size: 20px; color: var(--muted); max-width: 640px; }
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 18px; padding: 12px 0 64px; }
.card { background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 22px; }
.card h3 { margin: 0 0 8px; }
.page { padding: 48px 0 72px; }
.page h1 { margin-top: 0; }
form { display: grid; gap: 12px; max-width: 480px; }
form label { font-weight: 700; font-size: 14px; }
input, textarea {
  border: 1px solid var(--line); border-radius: 12px; padding: 12px; font: inherit;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 24px; }
.btn-ghost { background: #fff; color: var(--bb) !important; border: 1px solid var(--line); }
.lede { font-size: 18px; color: var(--muted); max-width: 720px; }
ol.steps { padding-left: 20px; }
ol.steps li { margin: 10px 0; }
footer { border-top: 1px solid var(--line); padding: 28px 0; color: var(--muted); }
.ok { color: #067647; font-weight: 700; }
.err { color: #b42318; font-weight: 700; }
.photo-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 12px; margin: 24px 0; }
.photo-row img { width: 100%; height: 180px; object-fit: cover; border-radius: 14px; border: 1px solid var(--line); }
.county-results { list-style: none; padding: 0; max-width: 720px; }
.county-results li { border-bottom: 1px solid var(--line); }
.county-results a { display: block; padding: 10px 0; text-decoration: none; color: var(--ink); font-weight: 600; }
.county-results a:hover { color: var(--bb); }
#county-search { max-width: 480px; margin-bottom: 12px; }
select {
  border: 1px solid var(--line); border-radius: 12px; padding: 12px; font: inherit; background: #fff;
}
button.btn { border: 0; cursor: pointer; font: inherit; }
