:root {
  --bg: #f4efe7;
  --surface: #fffdf9;
  --ink: #2a2622;
  --muted: #6b645a;
  --line: #ddd4c6;
  --walnut: #4a3a2c;
  --header: 72px;
  --font: "Noto Sans", "Segoe UI", sans-serif;
  --serif: "Noto Serif", Georgia, serif;
  --wrap: 1140px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  font-weight: 400;
  font-size: 16.5px;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.22;
  letter-spacing: -0.01em;
  margin: 0 0 0.45em;
}
p { margin: 0 0 1em; }
ul { margin: 0; padding: 0; list-style: none; }

.skip { position: absolute; left: -999px; }
.skip:focus { left: 8px; top: 8px; background: #fff; padding: 8px 12px; z-index: 80; }
.wrap { width: min(var(--wrap), calc(100% - 48px)); margin-inline: auto; }

.topbar {
  background: var(--walnut);
  color: #e8dfd3;
  font-size: 0.8rem;
}
.topbar-inner {
  display: flex; gap: 18px; align-items: center; justify-content: center;
  min-height: 36px; flex-wrap: wrap;
}
.topbar a { color: #fff; }
.topbar-sep { width: 1px; height: 11px; background: #7a6a58; }

.site-header {
  position: sticky; top: 0; z-index: 40;
  background: rgba(255, 253, 249, 0.96);
  border-bottom: 1px solid var(--line);
}
.site-header.scrolled { background: var(--surface); }
.header-inner { min-height: var(--header); display: flex; align-items: center; gap: 28px; }
.brand { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.brand-mark { width: 36px; height: 36px; color: var(--walnut); display: grid; place-items: center; }
.brand-mark svg { width: 32px; height: 32px; }
.brand-text { display: flex; flex-direction: column; }
.brand-text strong { font-family: var(--serif); font-size: 1.15rem; line-height: 1.1; font-weight: 600; }
.brand-text small { color: var(--muted); font-size: 0.72rem; margin-top: 3px; }

.nav { display: flex; gap: 22px; margin-left: auto; }
.nav a { font-size: 0.93rem; color: #534c44; padding: 6px 0; }
.nav a:hover, .nav a[aria-current="page"] { color: var(--ink); }
.header-cta { display: flex; gap: 8px; }
.btn-icon { gap: 8px; }
.btn-icon img { width: 18px; height: 18px; object-fit: contain; }
.menu-btn { display: none; width: 40px; height: 40px; border: 0; background: transparent; padding: 10px; cursor: pointer; }
.menu-btn span { display: block; height: 1.5px; background: var(--ink); margin: 6px 0; }

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 44px; padding: 0 18px; border-radius: 4px; border: 1px solid transparent;
  font-size: 0.9rem; font-weight: 500;
}
.btn-gold { background: var(--walnut); color: #f8f3ec; }
.btn-gold:hover { background: #3a2d22; }
.btn-ghost { background: transparent; border-color: #b8ae9f; color: var(--ink); }
.btn-ghost:hover { border-color: var(--ink); }
.btn-dark { background: var(--ink); color: #f8f3ec; }
.btn-row { display: flex; flex-wrap: wrap; gap: 10px; }
.btn-wa {
  background: #fffdf9;
  color: #128c3e;
  border-color: #25d366;
  animation: pulse-wa 2.2s ease-out infinite;
}
.btn-wa:hover { background: #f3fff6; border-color: #128c3e; }
.btn-call-icon {
  color: #e53935;
  border-color: #e53935;
  animation: pulse-call 2.2s ease-out infinite;
}
.btn-call-icon:hover { border-color: #c62828; }

.hero {
  display: grid;
  grid-template-columns: minmax(300px, 42%) 1fr;
  min-height: min(680px, calc(100vh - 108px));
  background: var(--bg);
  border-bottom: 1px solid var(--line);
}
.hero-copy {
  color: var(--ink);
  padding: 56px clamp(28px, 5vw, 72px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-media { margin: 0; min-height: 100%; background: #d8d0c4; }
.hero-media img {
  width: 100%; height: 100%; object-fit: cover;
  min-height: min(680px, calc(100vh - 108px));
}

.kicker {
  font-size: 0.82rem;
  color: var(--muted);
  margin-bottom: 10px;
}
.hero h1 { font-size: clamp(2rem, 3.8vw, 3.15rem); max-width: 14ch; color: var(--ink); }
.hero p { max-width: 34rem; color: var(--muted); font-size: 1.02rem; }
.hero .btn-row { margin-top: 22px; }

.section { padding: 72px 0; }
.section-soft { background: #ebe4d6; }
.section-head { max-width: 40rem; margin-bottom: 32px; }
.section-head h2 { font-size: clamp(1.7rem, 3vw, 2.35rem); }
.lede { color: var(--muted); font-size: 1.02rem; }
.region-note {
  max-width: 40rem;
  margin: -8px 0 32px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

.trust {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--surface);
  border: 1px solid var(--line);
}
.trust-item { padding: 22px 24px; border-right: 1px solid var(--line); }
.trust-item:last-child { border-right: 0; }
.trust-item strong { display: block; font-family: var(--serif); font-size: 1.15rem; font-weight: 600; margin-bottom: 4px; }
.trust-item span { color: var(--muted); font-size: 0.9rem; }

.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.card {
  display: flex; flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--line);
}
.card-media { aspect-ratio: 4/3; overflow: hidden; background: #ddd6ca; }
.card-media img { width: 100%; height: 100%; object-fit: cover; }
.card-body { padding: 16px 18px 18px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.card-body h3 { font-size: 1.28rem; margin: 0; }
.card-body p { color: var(--muted); margin: 0; font-size: 0.94rem; }
.card-link {
  margin-top: 6px;
  color: var(--walnut);
  font-size: 0.88rem;
  font-weight: 500;
  width: fit-content;
}

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split img { width: 100%; height: min(520px, 70vw); object-fit: cover; }
.split ul { margin: 16px 0 22px; display: grid; gap: 10px; }
.split li {
  color: var(--muted);
  padding-left: 14px;
  position: relative;
}
.split li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 7px;
  height: 1px;
  background: var(--walnut);
}

.district-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.district-card {
  padding: 18px;
  min-height: 148px;
  display: flex; flex-direction: column; justify-content: space-between;
  background: var(--surface);
  border: 1px solid var(--line);
}
.district-card.featured { border-color: #c4b49a; }
.district-card h3 { font-size: 1.22rem; margin: 0 0 8px; }
.district-card p { margin: 0; font-size: 0.9rem; color: var(--muted); }
.district-card small { margin-top: 14px; color: var(--walnut); font-size: 0.8rem; font-weight: 500; }

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.step {
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 22px 20px;
}
.step h3 { font-size: 1.28rem; margin: 0 0 8px; }
.step p { color: var(--muted); margin: 0; font-size: 0.94rem; }

.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.gallery-grid a { display: block; }
.gallery-grid figure { margin: 0; }
.gallery-grid img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.gallery-grid figcaption {
  color: var(--muted);
  font-size: 0.82rem;
  padding: 8px 2px 0;
}

.quotes { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.quote {
  margin: 0;
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 22px 22px 18px;
}
.quote p { font-family: var(--serif); font-size: 1.12rem; color: var(--ink); font-weight: 400; }
.quote cite { font-style: normal; color: var(--muted); font-size: .86rem; }

.faq-list { display: grid; border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item button {
  width: 100%; text-align: left; background: none; border: 0; padding: 16px 0;
  display: block; cursor: pointer; font-size: 1.02rem; color: var(--ink);
}
.faq-item .faq-a { display: none; padding: 0 0 16px; color: var(--muted); }
.faq-item.open .faq-a { display: block; }

.cta-band {
  background: var(--surface);
  border: 1px solid var(--line);
  color: var(--ink);
  padding: 36px 40px;
  display: flex; justify-content: space-between; align-items: center; gap: 24px;
}
.cta-band h2 { color: var(--ink); font-size: clamp(1.6rem, 2.6vw, 2.1rem); margin: 0 0 8px; }
.cta-band p { margin: 0; color: var(--muted); }

.page-hero { padding: 48px 0 12px; }
.page-hero h1 { font-size: clamp(2rem, 3.8vw, 3.1rem); }
.page-hero .btn-row { margin-top: 18px; }

.prose { max-width: 42rem; }
.prose p, .prose li { color: var(--muted); }
.prose a { color: var(--ink); border-bottom: 1px solid #b9a48a; }
.prose h2 { font-size: 1.45rem; margin-top: 1.6em; }
.prose ul { margin: 0 0 1.2em; padding-left: 1.15em; list-style: disc; display: grid; gap: 6px; }
.article-layout { display: grid; grid-template-columns: 1.45fr .55fr; gap: 48px; align-items: start; }
.article-prose { max-width: 42rem; }
.article-aside { position: sticky; top: 100px; }
@media (max-width: 980px) {
  .article-layout { grid-template-columns: 1fr; }
  .article-aside { position: static; }
}

.form { display: grid; gap: 14px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
label { display: grid; gap: 6px; font-size: .86rem; color: var(--muted); }
input, select, textarea {
  width: 100%; border: 1px solid var(--line); background: var(--surface);
  padding: 11px 12px; color: var(--ink); outline: none; border-radius: 4px;
}
textarea { min-height: 130px; resize: vertical; }
input:focus, select:focus, textarea:focus { border-color: var(--walnut); }
.honeypot { position: absolute; left: -9999px; }

.alert { padding: 12px 0; margin-bottom: 14px; }
.alert-ok { color: #35502e; }
.alert-err { color: #6d2f24; }

.map-frame { border: 1px solid var(--line); width: 100%; height: 360px; filter: grayscale(.15); }

.contact-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 48px; }
.contact-card a { color: var(--ink); border-bottom: 1px solid #b9a48a; }

.chip {
  display: inline-block;
  padding: 8px 12px;
  border: 1px solid var(--line);
  background: var(--surface);
  font-size: 0.9rem;
}

.site-footer { background: #2b241c; color: #d4c9ba; padding: 56px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr .9fr .9fr 1fr; gap: 32px; }
.site-footer h2 { color: #f4ebe0; font-size: 1.05rem; font-weight: 600; }
.site-footer a:hover { color: #fff; }
.site-footer .brand-text strong,
.site-footer .brand-mark { color: #f4ebe0; }
.site-footer .brand-text small { color: #c2b6a6; }
.site-footer .btn-gold { background: #f4ebe0; color: #2b241c; }
.footer-brand p { color: #c2b6a6; max-width: 26rem; }
.footer-contact li { margin-bottom: 8px; }
.footer-districts { margin-top: 32px; padding-top: 20px; border-top: 1px solid #4a4036; }
.footer-districts p { font-size: .78rem; color: #a89c8c; margin: 14px 0 8px; }
.chip-row { display: flex; flex-wrap: wrap; gap: 8px 12px; }
.chip-row a { font-size: .88rem; color: #ddd2c2; }
.chip-row a:hover { color: #fff; }
.footer-bottom {
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  margin-top: 24px; padding-top: 16px; border-top: 1px solid #4a4036; font-size: .8rem; color: #a89c8c;
}

.float-cta {
  position: fixed; right: 16px; bottom: 16px; z-index: 50;
  display: flex; flex-direction: column; align-items: flex-end; gap: 10px;
}
.float-cta a {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  width: max-content; height: auto;
  border-radius: 999px;
  padding: 7px 14px 7px 8px; font-size: .85rem; font-weight: 500; line-height: 1;
  background: #fff; color: var(--ink);
  transition: transform .2s ease, box-shadow .2s ease;
}
.float-cta a:hover { transform: translateY(-2px); }
.float-cta img { width: 22px; height: 22px; object-fit: contain; display: block; flex: 0 0 auto; }
.float-call {
  color: #e53935;
  border: 1px solid #e53935;
  animation: pulse-call 2.2s ease-out infinite;
}
.float-wa {
  color: #128c3e;
  border: 1px solid #25d366;
  animation: pulse-wa 2.2s ease-out infinite;
}
@keyframes pulse-call {
  0% { box-shadow: 0 0 0 0 rgba(229, 57, 53, .45); }
  70% { box-shadow: 0 0 0 12px rgba(229, 57, 53, 0); }
  100% { box-shadow: 0 0 0 0 rgba(229, 57, 53, 0); }
}
@keyframes pulse-wa {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, .5); }
  70% { box-shadow: 0 0 0 12px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.lightbox { position: fixed; inset: 0; background: rgba(24,20,16,.88); display: none; place-items: center; z-index: 70; padding: 24px; }
.lightbox.open { display: grid; }
.lightbox img { max-width: min(1100px, 92vw); max-height: 88vh; }

@media (max-width: 980px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-media { order: -1; }
  .hero-media img { min-height: 42vh; }
  .hero-copy { padding: 32px 24px 40px; }
  .nav {
    display: none; position: absolute; left: 0; right: 0; top: 100%;
    background: var(--surface); flex-direction: column; padding: 12px 20px 20px; border-bottom: 1px solid var(--line);
  }
  .nav.open { display: flex; }
  .menu-btn { display: block; margin-left: auto; }
  .header-cta { display: none; }
  .trust, .cards, .district-grid, .steps, .gallery-grid, .quotes, .footer-grid, .split, .contact-grid, .form-row {
    grid-template-columns: 1fr 1fr;
  }
  .trust-item { border-right: 0; border-bottom: 1px solid var(--line); }
  .split, .contact-grid, .cta-band { display: flex; flex-direction: column; }
}

@media (max-width: 680px) {
  .wrap { width: min(100% - 28px, var(--wrap)); }
  .trust, .cards, .district-grid, .steps, .gallery-grid, .quotes, .footer-grid, .form-row {
    grid-template-columns: 1fr;
  }
  .section { padding: 52px 0; }
  .topbar { display: none; }
  .cta-band { padding: 24px 20px; }
  .float-cta { right: 10px; bottom: 10px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .float-call, .float-wa, .btn-wa, .btn-call-icon { animation: none; }
}
