/* Mount Dora Handyman — heritage-craft lake-town style sheet.
   Palette: forest green #2F4538, brass #B08D57, linen #EFE8DA.
   Headings: Fraunces (a "painted sign" serif with soft, hand-cut terminals).
   Body: Inter (quiet, legible sans). No CSS variables used in a way that
   would break older renderers is NOT a constraint here — this is a normal
   modern browser site — but we still keep the CSS plain and dependency-light.
*/
@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,500;9..144,600;9..144,700&family=Inter:wght@400;500;600;700&display=swap');

:root {
  --forest: #2F4538;
  --forest-dark: #202f26;
  --brass: #B08D57;
  --brass-light: #cba876;
  --linen: #EFE8DA;
  --linen-dark: #e4dac6;
  --ink: #211d15;
  --paper: #FBF8F2;
  --white: #ffffff;
  --line: #d9cfb8;
  --serif: 'Fraunces', Georgia, 'Times New Roman', serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --radius: 6px;
  --shadow: 0 1px 2px rgba(33,29,21,.06);
  --maxw: 1120px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--linen);
  line-height: 1.6;
  font-size: 17px;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--forest); text-decoration-color: var(--brass); text-underline-offset: 3px; }
a:hover { color: var(--brass); }
h1, h2, h3, h4 {
  font-family: var(--serif);
  color: var(--forest);
  line-height: 1.15;
  margin: 0 0 .5em;
  font-weight: 600;
}
h1 { font-size: clamp(2rem, 4.4vw, 2.9rem); font-weight: 700; }
h2 { font-size: clamp(1.5rem, 3vw, 2rem); }
h3 { font-size: 1.25rem; }
p { margin: 0 0 1.1em; max-width: 68ch; }
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.section { padding: 64px 0; }
.section--tight { padding: 40px 0; }
.section--linen { background: var(--linen); }
.section--paper { background: var(--paper); }
.section--forest { background: var(--forest); color: var(--linen); }
.section--forest h1, .section--forest h2, .section--forest h3 { color: var(--linen); }
.section--forest a { color: var(--brass-light); }
.center { text-align: center; }
.center p { margin-left: auto; margin-right: auto; }
.lede { font-size: 1.15rem; color: #40402f; max-width: 62ch; }
.section--forest .lede { color: #dcd6c4; }

/* Skip link */
.skip-link {
  position: absolute; left: -999px; top: 0; background: var(--forest); color: var(--linen);
  padding: 10px 16px; z-index: 200; border-radius: 0 0 6px 0;
}
.skip-link:focus { left: 0; }

/* Top bar */
.topbar {
  background: var(--forest-dark); color: var(--linen); font-size: .82rem;
}
.topbar .wrap { display: flex; justify-content: space-between; align-items: center; padding-top: 8px; padding-bottom: 8px; gap: 12px; flex-wrap: wrap;}
.topbar a { color: var(--brass-light); }

/* Header / nav */
header.site {
  background: var(--paper);
  border-bottom: 3px solid var(--brass);
  position: sticky; top: 0; z-index: 100;
}
header.site .wrap { display: flex; align-items: center; justify-content: space-between; padding-top: 14px; padding-bottom: 14px; gap: 20px; }
.wordmark { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.wordmark svg { display: block; }
.wordmark-text { font-family: var(--serif); font-weight: 700; font-size: 1.5rem; color: var(--forest); line-height: 1; }
.wordmark-text small { display: block; font-family: var(--sans); font-weight: 600; font-size: .58rem; letter-spacing: .14em; text-transform: uppercase; color: var(--brass); margin-top: 3px; }
nav.primary { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
nav.primary a { font-weight: 600; font-size: .93rem; color: var(--forest); text-decoration: none; }
nav.primary a:hover { color: var(--brass); }
.btn {
  display: inline-block; font-weight: 700; font-family: var(--sans);
  padding: 12px 22px; border-radius: var(--radius); text-decoration: none;
  border: 2px solid transparent; font-size: .95rem;
}
.btn-brass { background: var(--brass); color: var(--forest-dark); }
.btn-brass:hover { background: var(--brass-light); color: var(--forest-dark); }
.btn-outline { background: transparent; color: var(--linen); border-color: var(--linen); }
.btn-outline:hover { background: var(--linen); color: var(--forest); }
.btn-outline-dark { background: transparent; color: var(--forest); border-color: var(--forest); }
.btn-outline-dark:hover { background: var(--forest); color: var(--linen); }

/* Hero */
.hero { padding: 56px 0 60px; }
.hero .wrap { display: grid; grid-template-columns: 1.1fr .9fr; gap: 40px; align-items: center; }
.hero-eyebrow { font-weight: 700; letter-spacing: .12em; text-transform: uppercase; font-size: .78rem; color: var(--brass); margin-bottom: 10px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 22px; }
.hero-img { border-radius: 10px; overflow: hidden; border: 1px solid var(--line); }
.fig { margin: 28px 0; border: 1px solid var(--line); border-radius: 8px; overflow: hidden; background: var(--paper); max-width: 640px; }
.fig img { width: 100%; }

/* Cards / grids */
.grid { display: grid; gap: 22px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.card {
  background: var(--paper); border: 1px solid var(--line); border-radius: 8px;
  padding: 24px; box-shadow: var(--shadow);
}
.card h3 { margin-bottom: .35em; }
.card .icon { width: 40px; height: 40px; color: var(--brass); margin-bottom: 12px; }
.service-card p { margin-bottom: .6em; }
.service-scope { font-size: .85rem; color: #5a5744; margin: 0; }

/* Stat / housing-profile component ("what a house of this vintage usually needs") */
.statgrid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; border: 1px solid var(--line); border-radius: 8px; overflow: hidden; background: var(--paper); }
.statgrid > div { padding: 20px 14px; border-left: 1px solid var(--line); text-align: center; }
.statgrid > div:first-child { border-left: none; }
.stat-label { font-size: .68rem; text-transform: uppercase; letter-spacing: .08em; color: var(--brass); font-weight: 700; margin-bottom: 6px; }
.stat-value { font-family: var(--serif); font-weight: 700; font-size: 1.5rem; color: var(--forest); }
.stat-note { font-size: .78rem; color: #6b6753; margin-top: 6px; }

.era-table { width: 100%; border-collapse: collapse; font-size: .93rem; }
.era-table th, .era-table td { text-align: left; padding: 14px 16px; border-bottom: 1px solid var(--line); vertical-align: top; }
.era-table th { font-family: var(--serif); color: var(--forest); background: var(--linen-dark); font-size: .9rem; }
.era-table td.pct { font-weight: 700; color: var(--brass); white-space: nowrap; }
.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: 8px; }

.source-note {
  font-size: .82rem; color: #6b6753; background: var(--linen-dark); border-left: 3px solid var(--brass);
  padding: 10px 16px; border-radius: 0 6px 6px 0; margin-top: 14px;
}
.callout {
  background: #fbf2df; border: 1px solid var(--brass); border-radius: 8px; padding: 20px 22px; margin: 26px 0;
}
.callout h3 { margin-top: 0; }
.need {
  background: #f5e3c8; color: #6b4a1c; border: 1px dashed var(--brass); border-radius: 4px;
  padding: 1px 8px; font-weight: 700; font-size: .92em; white-space: nowrap;
}

/* FAQ */
.faq-item { border-bottom: 1px solid var(--line); padding: 18px 0; }
.faq-item summary {
  font-family: var(--serif); font-weight: 600; font-size: 1.08rem; color: var(--forest);
  cursor: pointer; list-style: none; display: flex; justify-content: space-between; gap: 16px; align-items: baseline;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-size: 1.4rem; color: var(--brass); font-weight: 700; }
.faq-item[open] summary::after { content: '\2212'; }
.faq-item .faq-answer { margin-top: 12px; }

/* Breadcrumbs */
.crumbs { font-size: .82rem; color: #6b6753; padding: 14px 0; }
.crumbs a { color: #6b6753; }
.crumbs a:hover { color: var(--brass); }

/* Lists */
ul.check { list-style: none; padding: 0; margin: 0 0 1.2em; }
ul.check li { padding-left: 30px; position: relative; margin-bottom: 10px; }
ul.check li::before { content: ''; position: absolute; left: 0; top: 6px; width: 16px; height: 16px; border-radius: 3px; background: var(--brass); }

table.pricing { width: 100%; border-collapse: collapse; }
table.pricing th, table.pricing td { padding: 12px 14px; border-bottom: 1px solid var(--line); text-align: left; }
table.pricing th { background: var(--linen-dark); font-family: var(--serif); color: var(--forest); }

.badge-row { display: flex; gap: 14px; flex-wrap: wrap; margin: 18px 0; }
.badge { display: inline-flex; align-items: center; gap: 8px; background: var(--paper); border: 1px solid var(--line); border-radius: 30px; padding: 8px 16px; font-size: .85rem; font-weight: 600; color: var(--forest); }
.badge svg { width: 16px; height: 16px; color: var(--brass); }

/* Footer */
footer.site { background: var(--forest-dark); color: #cfc8b3; padding: 48px 0 24px; }
footer.site a { color: #e7e0ca; }
footer.site h4 { color: var(--linen); font-family: var(--serif); font-size: 1.05rem; }
.foot-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1fr; gap: 32px; }
.foot-grid ul { list-style: none; margin: 0; padding: 0; }
.foot-grid li { margin-bottom: 8px; }
.foot-bottom { border-top: 1px solid #3a4b40; margin-top: 32px; padding-top: 20px; font-size: .8rem; color: #97917c; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; }

/* Neighborhood table */
.nbhd-card { border-bottom: 1px solid var(--line); padding: 18px 0; }
.nbhd-card:last-child { border-bottom: none; }
.nbhd-years { font-family: var(--serif); font-weight: 700; color: var(--brass); }

@media (max-width: 900px) {
  .hero .wrap { grid-template-columns: 1fr; }
  .grid-3, .grid-4, .grid-2 { grid-template-columns: 1fr 1fr; }
  .statgrid { grid-template-columns: repeat(2, 1fr); }
  .statgrid > div:nth-child(2n+1) { border-left: none; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  nav.primary { display: none; }
  header.site .wrap { justify-content: space-between; }
}
@media (max-width: 600px) {
  body { font-size: 16px; }
  .grid-3, .grid-4, .grid-2 { grid-template-columns: 1fr; }
  .statgrid { grid-template-columns: 1fr 1fr; }
  .foot-grid { grid-template-columns: 1fr; }
  .section { padding: 44px 0; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { text-align: center; }
}
