:root {
  --bg: #ffffff;
  --bg-alt: #f6f5f1;
  --ink: #1a1d1c;
  --ink-soft: #4a5250;
  --line: #e6e4dc;
  --brand: #1f4d3f;
  --brand-dark: #163628;
  --accent: #c69214;
  --accent-dark: #9a710f;
  --danger: #b23a1f;
  --radius: 4px;
  --max: 1120px;
  --gap: clamp(16px, 3vw, 32px);
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
  font-size: 17px;
  padding-bottom: 72px;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--brand); }
a:hover { color: var(--brand-dark); }
h1, h2, h3 { font-family: Georgia, "Times New Roman", serif; line-height: 1.2; color: var(--ink); margin: 1.4em 0 0.5em; }
h1 { font-size: clamp(28px, 5vw, 42px); }
h2 { font-size: clamp(22px, 3.6vw, 30px); border-bottom: 2px solid var(--accent); padding-bottom: 6px; display: inline-block; }
h3 { font-size: clamp(19px, 2.8vw, 22px); }
p, ul, ol { margin: 0 0 1em; }
ul, ol { padding-left: 1.4em; }
li { margin-bottom: 0.35em; }
hr { border: 0; border-top: 1px solid var(--line); margin: 2em 0; }

.container { max-width: var(--max); margin: 0 auto; padding: 0 var(--gap); }

/* ---------- Header ---------- */
.site-header {
  background: var(--brand);
  color: #fff;
  padding: 10px 0;
  position: sticky; top: 0; z-index: 40;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}
.site-header .container {
  display: flex; align-items: center; gap: 16px; justify-content: space-between;
}
.brand-mark {
  font-family: Georgia, serif;
  font-weight: 700;
  font-size: 20px;
  color: #fff;
  text-decoration: none;
  line-height: 1.1;
}
.brand-mark .accent { color: var(--accent); }
.brand-mark small {
  display: block; font-size: 11px; letter-spacing: 0.08em;
  text-transform: uppercase; opacity: 0.85; font-weight: 400;
  font-family: -apple-system, "Segoe UI", sans-serif;
}
.header-phone {
  background: var(--accent);
  color: var(--ink);
  padding: 10px 16px;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  white-space: nowrap;
}
.header-phone:hover { background: var(--accent-dark); color: #fff; }
.header-phone::before { content: "\260E  "; }

/* ---------- Nav ---------- */
.site-nav {
  background: var(--brand-dark);
  border-top: 1px solid rgba(255,255,255,0.08);
}
.site-nav ul {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-wrap: wrap; justify-content: center;
}
.site-nav a {
  color: #fff; text-decoration: none; padding: 12px 16px;
  display: block; font-size: 14px; letter-spacing: 0.03em;
}
.site-nav a:hover, .site-nav a[aria-current="page"] {
  background: var(--brand); color: var(--accent);
}

/* ---------- Hero ---------- */
.hero {
  background: linear-gradient(180deg, var(--brand-dark) 0%, var(--brand) 100%);
  color: #fff;
  padding: 48px 0 40px;
}
.hero h1 { color: #fff; margin-top: 0; }
.hero p { font-size: 18px; opacity: 0.94; max-width: 640px; }
.hero .lead { color: #fff; }
.hero .cta-row {
  display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px;
}
.btn {
  display: inline-block; padding: 14px 22px; border-radius: var(--radius);
  text-decoration: none; font-weight: 700; font-size: 16px;
  transition: transform 0.06s;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--accent); color: var(--ink); }
.btn-primary:hover { background: var(--accent-dark); color: #fff; }
.btn-ghost { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.7); }
.btn-ghost:hover { background: rgba(255,255,255,0.1); color: #fff; }

/* ---------- Sections ---------- */
main { padding: 24px 0 40px; }
section { margin: 32px 0; }
.lead { font-size: 19px; color: var(--ink-soft); }

.card {
  background: var(--bg-alt);
  border-left: 4px solid var(--accent);
  padding: 20px 24px;
  border-radius: var(--radius);
  margin: 24px 0;
}
.callout {
  background: #fff8e2;
  border: 1px solid #ecd68a;
  padding: 16px 20px;
  border-radius: var(--radius);
}

/* ---------- Grid ---------- */
.grid-3 {
  display: grid; gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  margin: 24px 0;
}
.tile {
  background: #fff; border: 1px solid var(--line);
  padding: 20px; border-radius: var(--radius);
}
.tile h3 { margin-top: 0; }
.tile a { font-weight: 700; }

/* ---------- Map ---------- */
.map-wrap {
  position: relative;
  width: 100%;
  max-width: 640px;
  padding-bottom: 50%;
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  margin: 24px auto;
}
.map-wrap iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: 0;
}
.map-caption {
  color: #555;
  font-size: 0.95rem;
  margin: 8px 0 0;
}

/* ---------- Form ---------- */
.lead-form {
  background: var(--bg-alt);
  padding: 24px; border-radius: var(--radius);
  border: 1px solid var(--line);
}
.lead-form h3 { margin-top: 0; }
.lead-form label { display: block; font-weight: 600; margin: 10px 0 4px; font-size: 14px; }
.lead-form input, .lead-form textarea, .lead-form select {
  width: 100%; padding: 12px; border: 1px solid var(--line);
  border-radius: var(--radius); font-size: 16px;
  font-family: inherit; background: #fff;
}
.lead-form textarea { min-height: 90px; resize: vertical; }
.lead-form button {
  margin-top: 14px; width: 100%; padding: 14px;
  background: var(--brand); color: #fff; border: 0;
  border-radius: var(--radius); font-size: 17px; font-weight: 700;
  cursor: pointer;
}
.lead-form button:hover { background: var(--brand-dark); }
.consent { font-size: 12px; color: var(--ink-soft); margin-top: 10px; }

/* ---------- FAQ ---------- */
.faq details {
  border: 1px solid var(--line);
  padding: 14px 18px; border-radius: var(--radius);
  margin-bottom: 10px; background: #fff;
}
.faq summary {
  font-weight: 700; cursor: pointer; font-size: 17px;
  list-style: none; position: relative; padding-right: 24px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; position: absolute; right: 0; top: -2px;
  font-size: 24px; color: var(--accent);
}
.faq details[open] summary::after { content: "\2013"; }
.faq details[open] { background: var(--bg-alt); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink); color: #d5d3c9; padding: 32px 0 80px;
  font-size: 14px; margin-top: 40px;
}
.site-footer h4 { color: var(--accent); margin: 0 0 10px; font-family: Georgia, serif; }
.site-footer a { color: #d5d3c9; text-decoration: none; }
.site-footer a:hover { color: var(--accent); }
.footer-grid {
  display: grid; gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid li { margin-bottom: 6px; }
.footer-legal {
  border-top: 1px solid #333; margin-top: 24px; padding-top: 16px;
  color: #8f8d82; font-size: 12px;
}

/* ---------- Sticky call bar ---------- */
.call-bar {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: var(--accent); color: var(--ink);
  height: 56px; display: flex; align-items: center; justify-content: center;
  gap: 12px; font-weight: 700; text-decoration: none; font-size: 17px;
  z-index: 50; box-shadow: 0 -2px 8px rgba(0,0,0,0.15);
  border-top: 3px solid var(--accent-dark);
}
.call-bar:hover { background: var(--accent-dark); color: #fff; }
.call-bar::before { content: "\260E"; font-size: 20px; }

/* ---------- Breadcrumb ---------- */
.crumb {
  font-size: 13px; color: var(--ink-soft); margin: 12px 0 0;
}
.crumb a { color: var(--ink-soft); }
.crumb a:hover { color: var(--brand); }

/* ---------- Responsive ---------- */
@media (max-width: 640px) {
  .header-phone { font-size: 14px; padding: 8px 12px; }
  .brand-mark { font-size: 17px; }
  .brand-mark small { display: none; }
  .hero { padding: 32px 0 24px; }
  h2 { display: block; }
  .site-nav a { padding: 10px 12px; font-size: 13px; }
}
