@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Poppins:wght@700;800&display=swap');

:root {
  --accent: #b5541f;
  --accent-dark: #7a3712;
  --accent-light: #fbeee3;
  --text: #1a1a2e;
  --text-muted: #6b7280;
  --bg: #ffffff;
  --bg-alt: #f8fafc;
  --border: #e5e7eb;
  --shadow: 0 4px 16px rgba(0,0,0,.07);
  --shadow-lg: 0 20px 40px rgba(0,0,0,.13);
  --radius: 10px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', -apple-system, sans-serif; color: var(--text); line-height: 1.65; font-size: 16px; }
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; }

nav {
  background: var(--accent);
  padding: .9rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: .75rem;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(0,0,0,.18);
}
nav .logo { color: #fff; font-family: 'Poppins', sans-serif; font-size: 1.2rem; font-weight: 800; letter-spacing: -.3px; }
nav .logo a { color: inherit; text-decoration: none; }
nav ul { list-style: none; display: flex; gap: 1.2rem; flex-wrap: wrap; align-items: center; }
nav ul li a { color: rgba(255,255,255,.88); font-size: .9rem; font-weight: 500; transition: color .2s; }
nav ul li a:hover { color: #fff; text-decoration: none; }
.nav-cta { background: #fff; color: var(--accent) !important; padding: .45rem 1.1rem; border-radius: 6px; font-weight: 700 !important; font-size: .88rem !important; }
.nav-phone { color: #fff !important; font-weight: 700 !important; font-size: .9rem !important; }

.hero {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
  background: linear-gradient(160deg, #b5541f 0%, #7a3712 100%);
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(.55);
  transform: scale(1.03);
}
.hero::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(0,0,0,.15) 0%, rgba(0,0,0,.4) 100%);
}
.local-photos { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1rem; margin-top: 1.5rem; }
.local-photos img { width: 100%; height: 220px; object-fit: cover; border-radius: var(--radius); }
.photo-disclaimer { font-size: .8rem; color: var(--text-muted); margin-top: .5rem; text-align: center; }
.hero-content { position: relative; z-index: 1; max-width: 740px; padding: 2.5rem 1.5rem; }
.hero h1 { font-family: 'Poppins', sans-serif; font-size: 2.5rem; line-height: 1.18; margin-bottom: 1rem; text-shadow: 0 2px 8px rgba(0,0,0,.25); }
.hero p { font-size: 1.12rem; margin-bottom: 1.8rem; opacity: .95; }
.btn { display: inline-block; padding: .9rem 2.2rem; border-radius: 7px; font-weight: 700; font-size: 1rem; cursor: pointer; border: none; transition: transform .15s, box-shadow .15s, opacity .15s; text-decoration: none !important; }
.btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,.22); opacity: 1; }
.btn-primary { background: #f90; color: #000; }
.btn-secondary { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,.8); margin-left: .6rem; }

section { padding: 4.5rem 2rem; }
.container { max-width: 1100px; margin: 0 auto; }
.section-label { text-transform: uppercase; letter-spacing: 1.5px; font-size: .75rem; font-weight: 700; color: var(--accent); margin-bottom: .5rem; }
h2 { font-family: 'Poppins', sans-serif; font-size: 2rem; line-height: 1.2; margin-bottom: .75rem; color: var(--text); }
.section-intro { font-size: 1.08rem; color: var(--text-muted); margin-bottom: 2.5rem; max-width: 650px; }

.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 1.5rem; }
.card { background: #fff; border-radius: var(--radius); padding: 1.8rem 1.6rem; border: 1px solid var(--border); box-shadow: var(--shadow); transition: transform .2s, box-shadow .2s; }
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.card-icon { font-size: 2rem; margin-bottom: .75rem; display: block; }
.card h3 { font-size: 1.1rem; font-weight: 700; color: var(--accent-dark); margin-bottom: .5rem; }
.card p { font-size: .95rem; color: var(--text-muted); line-height: 1.6; }
.card a.card-link { display:inline-block; margin-top:.6rem; font-weight:700; font-size:.9rem; }

.how-section { background: var(--bg-alt); }
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 2rem; margin-top: 2.5rem; }
.step { text-align: center; padding: 1.5rem; }
.step-icon { font-size: 2.4rem; margin-bottom: 1rem; display: block; }
.step-num { width: 36px; height: 36px; border-radius: 50%; background: var(--accent); color: #fff; font-size: .85rem; font-weight: 800; display: flex; align-items: center; justify-content: center; margin: 0 auto .75rem; }
.step h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: .4rem; color: var(--text); }
.step p { font-size: .92rem; color: var(--text-muted); }

.operator-card { display:flex; gap:1.25rem; align-items:flex-start; max-width: 860px; margin: 2rem auto 0; padding: 1.5rem; background:#fff; border:1px solid #e5e7eb; border-radius:12px; box-shadow:0 2px 12px rgba(0,0,0,.06); }
.operator-card .avatar { width:64px; height:64px; border-radius:50%; background: var(--accent-dark); color:#fff; font-weight:800; font-size:1.4rem; display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.operator-card p { margin:0 0 .5rem; font-size:.97rem; }
.operator-card .small { font-size:.85rem; color:#6b7280; }
@media (max-width:540px) { .operator-card { flex-direction:column; } }

.gbp-strip { text-align:center; padding: 1.5rem 1rem; background:#f8fafc; border-top:1px solid #e5e7eb; border-bottom:1px solid #e5e7eb; }
.gbp-strip a { font-weight:700; color:#1a56db; margin: 0 .75rem; }

.trust { background: var(--accent); color: #fff; }
.trust h2 { color: #fff; }
.trust .section-intro { color: rgba(255,255,255,.75); }
.trust-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; text-align: center; }
.trust-item { padding: 1rem; }
.trust-item .num { font-family: 'Poppins', sans-serif; font-size: 3rem; font-weight: 800; color: #f90; line-height: 1; margin-bottom: .35rem; }
.trust-item p { font-size: .95rem; color: rgba(255,255,255,.82); }

.plain-answer { max-width: 760px; margin: 0 auto 2rem; padding: 1.25rem 1.5rem; background: #fffbeb; border-left: 4px solid #f90; border-radius: 8px; font-size: 1.05rem; line-height: 1.6; }
.plain-answer strong { display:block; margin-bottom:.35rem; }

.local-section { background: var(--bg-alt); }
.neigh-grid { display:grid; grid-template-columns: repeat(auto-fit, minmax(240px,1fr)); gap:1.25rem; margin-top:1.5rem; }
.neigh-grid .card h3 { font-size:1.02rem; }
.neigh-grid .card p { font-size:.93rem; }

.checklist { list-style:none; padding:0; margin:1rem 0 0; }
.checklist li { padding:.4rem 0 .4rem 1.75rem; position:relative; line-height:1.5; }
.checklist li:before { content:"\2713"; position:absolute; left:0; color:#1a6b3c; font-weight:800; }

.cta-banner { background: linear-gradient(135deg, var(--accent-dark) 0%, var(--accent) 100%); color: #fff; text-align: center; padding: 4rem 2rem; }
.cta-banner h2 { font-family: 'Poppins', sans-serif; font-size: 2rem; margin-bottom: .75rem; color: #fff; }
.cta-banner p { font-size: 1.1rem; margin-bottom: 2rem; opacity: .88; }
.cta-banner .btn-primary { font-size: 1.1rem; padding: 1rem 2.5rem; }
.cta-banner .btn-secondary { border-color: rgba(255,255,255,.6); }

.faq-list { margin-top: 1.5rem; }
.faq-item { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); margin-bottom: .75rem; padding: 1.1rem 1.4rem; }
.faq-item h3 { font-size: 1rem; font-weight: 700; margin-bottom: .4rem; color: var(--text); }
.faq-item p { font-size: .95rem; color: var(--text-muted); line-height: 1.65; }

.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.5rem; margin-top: 2rem; }
.blog-card { border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: box-shadow .2s; }
.blog-card:hover { box-shadow: var(--shadow-lg); }
.blog-card-body { padding: 1.4rem; }
.blog-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--accent-dark); margin-bottom: .4rem; }

.form-section { background: #f8fafc; padding: 60px 16px; }
.form-section h2 { text-align: center; margin-bottom: 10px; }
.form-section .section-intro { text-align: center; color: #6b7280; margin: 0 auto 32px; }
.form-wrap { max-width: 600px; margin: 0 auto; background: #fff; border-radius: 16px; padding: 36px 28px; box-shadow: 0 4px 24px rgba(0,0,0,0.08); border: 1px solid #e5e7eb; }
@media (max-width: 540px) { .form-wrap { padding: 28px 18px; border-radius: 12px; } .form-section { padding: 40px 12px; } }
form label { display: block; font-size: 0.88rem; font-weight: 600; color: #374151; margin-bottom: 6px; margin-top: 18px; }
form label:first-of-type { margin-top: 0; }
form input[type="text"], form input[type="email"], form input[type="tel"], form select, form textarea { display: block; width: 100%; padding: 13px 14px; font-size: 16px; font-family: inherit; color: #111827; background: #fff; border: 1.5px solid #d1d5db; border-radius: 8px; outline: none; transition: border-color 0.2s, box-shadow 0.2s; -webkit-appearance: none; appearance: none; }
form input:focus, form select:focus, form textarea:focus { border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-light); }
form select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236b7280' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px; }
form textarea { min-height: 110px; resize: vertical; }
form .btn-primary, form button[type="submit"] { display: block; width: 100%; margin-top: 24px; padding: 15px; font-size: 1.05rem; font-weight: 700; font-family: inherit; color: #fff; background: var(--accent); border: none; border-radius: 8px; cursor: pointer; transition: background 0.2s; -webkit-appearance: none; }
form .btn-primary:hover, form button[type="submit"]:hover { background: var(--accent-dark); }

footer { background: #111; color: #9ca3af; padding: 3rem 2rem 1.5rem; font-size: .9rem; text-align:center; }
footer p { margin-bottom: .4rem; }
footer a { color: #9ca3af; }
footer a:hover { color: #fff; }

.about-wrap { max-width: 820px; margin: 0 auto; }
.about-wrap h2 { margin-top: 2.5rem; }
.about-wrap p { line-height: 1.65; }
.partner-box { margin-top:1.5rem; padding:1.5rem; border:1.5px dashed #cbd5e1; border-radius:12px; background:#f8fafc; }

.hours-bar { background:#f5f5f5; text-align:center; padding:6px 16px; font-size:0.82rem; color:#555; border-bottom:1px solid #e0e0e0; }
.hours-bar a { color: var(--accent-dark); font-weight:600; }

@media (max-width: 768px) {
  .hero h1 { font-size: 1.85rem; }
  h2 { font-size: 1.6rem; }
  .grid-3 { grid-template-columns: 1fr; }
  nav ul { gap: .75rem; }
  section { padding: 3rem 1.2rem; }
  .cta-banner { padding: 3rem 1.2rem; }
}
@media (max-width: 480px) {
  .hero h1 { font-size: 1.55rem; }
  nav { padding: .8rem 1rem; }
  .nav-phone { display: none; }
}
