html, body, #root { margin: 0; min-height: 100%; }
body { background: var(--ds-page); }

.site {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: #2a2320;
    font-size: 16px;
    line-height: 1.6;
}
.site h1, .site h2, .site h3 { color: #2a2320; line-height: 1.2; margin: 0 0 12px; }
.site h1 { font-size: 40px; letter-spacing: -0.02em; }
.site h2 { font-size: 27px; letter-spacing: -0.01em; }
.site h3 { font-size: 19px; }
.site p { margin: 0 0 14px; }
.site img { max-width: 100%; display: block; }

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.09em;
    font-size: 12.5px;
    font-weight: 700;
    color: #ba1f33;
    margin: 0 0 8px;
}
.lede { font-size: 18px; color: #5c524c; }

/* Header */
.site-header { background: #ba1f33; border-bottom: 4px solid #ffd700; padding: 12px 0; margin: -36px -36px 0; padding-left: 36px; padding-right: 36px; }
.site-header-inner { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.brand img { height: 64px; width: auto; display: block; border-radius: 6px; }
.site-nav { display: flex; flex-wrap: wrap; gap: 4px 18px; flex: 1; }
.site-nav a { color: #ffd9a3; text-decoration: none; font-size: 14.5px; font-weight: 600; padding: 6px 0; }
.site-nav a:hover { color: #fff; }
.site-nav a[aria-current="page"] { color: #fff; box-shadow: inset 0 -3px 0 #ffd700; }
.header-call { white-space: nowrap; }

/* Buttons */
.btn {
    display: inline-flex; align-items: center; justify-content: center;
    min-height: 44px; padding: 10px 20px; border-radius: 8px;
    font-weight: 700; font-size: 15px; text-decoration: none; cursor: pointer;
}
.btn-primary { background: #ba1f33; color: #fff; }
.btn-primary:hover { background: #931a2a; }
.btn-light { background: #fff; color: #8c1522; }
.btn-outline { border: 2px solid rgba(255,255,255,0.75); color: #fff; }
.btn-outline-dark { border: 2px solid #2a2320; color: #2a2320; }
.btn-yellow { background: #ffd700; color: #8c1522; }
.btn-yellow:hover { background: #f0c800; }
.cta-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* Hero */
.hero {
    display: grid; grid-template-columns: 1.05fr 1fr; gap: 32px;
    align-items: center; padding: 40px 0 32px;
}
.hero-photo { border-radius: 16px; width: 100%; height: 100%; max-height: 460px; object-fit: cover; }

/* Trust strip */
.trust-strip {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
    background: #fff3c2; border-radius: 14px; padding: 22px 26px; margin: 8px 0 8px;
    border: 1px solid #f5e3a1;
}
.trust-strip strong { display: block; color: #2a2320; font-size: 15.5px; }
.trust-strip span { color: #5c524c; font-size: 14px; }

/* Sections */
.section { padding: 44px 0 8px; }
.section-alt {
    background: #fff6d5; border: 1px solid #f5e3a1; border-radius: 16px;
    padding: 32px 28px 24px; margin-top: 40px;
}
.section-alt .feature-grid li, .section-alt .steps li { background: #fff; }
.section-intro { max-width: 640px; color: #5c524c; }

.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 18px; margin-top: 20px; }
.card { border: 1px solid #eee5d8; border-radius: 14px; overflow: hidden; background: #fff; }
.card img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; }
.card-body { padding: 16px 18px 18px; }
.card-body p { margin: 0; color: #5c524c; font-size: 14.5px; }

.feature-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px 20px;
    list-style: none; padding: 0; margin: 20px 0 0;
}
.feature-grid li {
    background: #fdf6e3; border: 1px solid #f3e5bf; border-radius: 10px; padding: 14px 16px 14px 42px;
    position: relative; font-weight: 600; color: #2a2320; font-size: 15px;
}
.feature-grid li::before {
    content: ""; position: absolute; left: 16px; top: 19px;
    width: 12px; height: 7px; border-left: 3px solid #ba1f33; border-bottom: 3px solid #ba1f33;
    transform: rotate(-45deg);
}

.area-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 14px; margin-top: 20px; }
.area-tile {
    display: block; border: 1px solid #eee5d8; border-radius: 12px; padding: 16px 18px;
    text-decoration: none; background: #fff;
}
.area-tile:hover { border-color: #ba1f33; }
.area-tile strong { display: block; color: #2a2320; font-size: 16.5px; }
.area-tile span { color: #5c524c; font-size: 13.5px; }

.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; list-style: none; padding: 0; margin: 20px 0 0; }
.steps li { border: 1px solid #eee5d8; border-radius: 12px; padding: 18px; background: #fff; }
.steps strong { display: block; color: #2a2320; margin-bottom: 6px; font-size: 16px; }
.steps span { color: #5c524c; font-size: 14.5px; }

/* CTA band */
.cta-band {
    background: #8c1522; color: #fff; border-radius: 16px;
    padding: 40px 32px; text-align: center; margin: 48px 0;
    border-bottom: 6px solid #ffd700;
}
.cta-band h2 { color: #fff; }
.cta-band p { color: #f6dcd0; max-width: 520px; margin: 0 auto 20px; }
.cta-band .cta-actions { justify-content: center; }
.cta-band a.btn-outline, .cta-band a.btn-outline:visited, .cta-band a.btn-outline:hover { color: #fff; border-color: rgba(255,255,255,0.8); }
.cta-band a.btn-light, .cta-band a.btn-light:visited { color: #8c1522; }

/* Contact options */
.contact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 14px; margin-top: 18px; }
.contact-tile {
    display: block; background: #fff; border: 1px solid #eee5d8; border-radius: 12px;
    padding: 18px; text-decoration: none;
}
.contact-tile:hover { border-color: #ba1f33; }
.contact-tile strong { display: block; color: #ba1f33; font-size: 17px; margin-bottom: 2px; }
.contact-tile span { color: #5c524c; font-size: 14px; }

/* Town pages */
.town-hero { padding: 36px 0 8px; max-width: 720px; }
.town-body { display: grid; grid-template-columns: 1.2fr 1fr; gap: 32px; padding: 24px 0 0; align-items: start; }
.town-body h2 { font-size: 21px; margin-top: 24px; }
.town-body h2:first-child { margin-top: 0; }
.town-photo { border-radius: 14px; width: 100%; object-fit: cover; aspect-ratio: 3 / 2; }
.check-list { list-style: none; padding: 0; margin: 0 0 8px; }
.check-list li { padding: 10px 0 10px 34px; position: relative; border-bottom: 1px solid #eee5d8; }
.check-list li::before {
    content: ""; position: absolute; left: 4px; top: 17px;
    width: 12px; height: 7px; border-left: 3px solid #ba1f33; border-bottom: 3px solid #ba1f33;
    transform: rotate(-45deg);
}
.check-list strong { color: #2a2320; }

/* Footer */
.site-footer {
    background: #8c1522; color: #f6dcd0;
    margin: 56px -36px -36px; padding: 40px 36px 20px;
    border-top: 6px solid #ffd700;
}
.site-footer-inner { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 28px; }
.footer-brand { font-size: 22px; font-weight: 800; color: #fff; margin: 0 0 8px; }
.footer-brand em { font-style: normal; color: #ffd700; }
.footer-heading { color: #fff; font-weight: 700; margin: 0 0 8px; font-size: 15px; }
.site-footer a { color: #f6dcd0; }
.footer-areas { display: flex; flex-direction: column; gap: 4px; }
.footer-areas a { text-decoration: none; }
.footer-areas a:hover { color: #fff; }
.footer-note {
    border-top: 1px solid rgba(255,255,255,0.25); margin-top: 28px; padding-top: 16px;
    font-size: 13px; color: #dfa9a0;
}

/* Responsive */
@media (max-width: 900px) {
    .site h1 { font-size: 31px; }
    .hero { grid-template-columns: 1fr; padding-top: 28px; }
    .hero-photo { max-height: 340px; }
    .town-body { grid-template-columns: 1fr; }
    .feature-grid { grid-template-columns: repeat(2, 1fr); }
    .site-footer-inner { grid-template-columns: 1fr; }
    .site-footer { margin: 48px -24px -24px; padding: 32px 24px 16px; }
}
@media (max-width: 760px) {
    .site-header { margin: -24px -24px 0; padding-left: 24px; padding-right: 24px; }
    .site-header-inner { flex-direction: column; align-items: stretch; gap: 10px; }
    .brand { align-self: flex-start; }
    .brand img { height: 52px; }
    .site-nav { gap: 2px 14px; }
    .section-alt { padding: 24px 18px 18px; }
}
@media (max-width: 640px) {
    .site h1 { font-size: 27px; }
    .trust-strip { grid-template-columns: 1fr; gap: 12px; }
    .steps { grid-template-columns: 1fr; }
    .feature-grid { grid-template-columns: 1fr; }
    .header-call { flex-basis: 100%; }
    .cta-band { padding: 30px 20px; }
}

/* Quote form */
.quote-form { max-width: 640px; margin-top: 18px; display: flex; flex-direction: column; gap: 14px; }
.quote-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.quote-form label { display: flex; flex-direction: column; gap: 6px; font-weight: 600; font-size: 14px; color: #2a2320; }
.quote-form input, .quote-form select, .quote-form textarea {
    font: inherit; font-weight: 400; padding: 11px 12px; border: 1px solid #ddd0bd;
    border-radius: 8px; background: #fff; color: #2a2320; min-height: 44px;
}
.quote-form input:focus, .quote-form select:focus, .quote-form textarea:focus { outline: 2px solid #ba1f33; outline-offset: 1px; }
.quote-form .btn { align-self: flex-start; }
.quote-note { font-size: 13.5px; color: #5c524c; margin: 0; }

/* FAQ */
.faq-list { max-width: 720px; margin-top: 16px; display: flex; flex-direction: column; gap: 10px; }
.faq-list details { border: 1px solid #eee5d8; border-radius: 10px; background: #fff; padding: 14px 18px; }
.faq-list summary { font-weight: 700; color: #2a2320; cursor: pointer; min-height: 28px; }
.faq-list details p { margin: 10px 0 2px; color: #5c524c; }
@media (max-width: 640px) { .quote-row { grid-template-columns: 1fr; } }

/* Standalone page shell (replaces the preview card) */
:root { --ds-page: #ffffff; }
.page { max-width: 1240px; margin: 0 auto; padding: 36px; box-sizing: border-box; overflow-x: hidden; }
@media (max-width: 900px) {
  .page { padding: 24px; }
  .site-header { margin: -24px -24px 0; padding-left: 24px; padding-right: 24px; }
}
