
:root {
  --brand: #A52424;
  --brand-dark: #7A1C1C;
  --brand-light: #F8E8E8;
  --ink: #1a1a1a;
  --ink-2: #3a3a3a;
  --paper: #ffffff;
  --soft: #F6F4F1;
  --border: #E8E2DA;
  --radius: 14px;
  --radius-lg: 22px;
  --container: 1180px;
  --shadow-sm: 0 1px 2px rgba(20, 12, 12, 0.04), 0 1px 3px rgba(20, 12, 12, 0.06);
  --shadow-md: 0 6px 18px rgba(20, 12, 12, 0.08), 0 2px 6px rgba(20, 12, 12, 0.05);
  --shadow-lg: 0 18px 50px rgba(122, 28, 28, 0.18), 0 4px 12px rgba(20, 12, 12, 0.06);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--brand); text-decoration: none; transition: color 0.18s ease; }
a:hover { color: var(--brand-dark); }

h1, h2, h3, h4 {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--ink);
  line-height: 1.12;
  margin: 0 0 0.5em;
}
h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); letter-spacing: -0.02em; }
h3 { font-size: 1.3rem; }
p { margin: 0 0 1em; color: var(--ink-2); }

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

/* ============== HEADER / NAV ============== */
.site-header {
  position: fixed; top: 14px; left: 0; right: 0; z-index: 60;
  display: flex; justify-content: center; pointer-events: none;
}
.nav-pill {
  display: inline-flex; align-items: center; gap: 28px;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(18px) saturate(180%);
  -webkit-backdrop-filter: blur(18px) saturate(180%);
  border: 1px solid rgba(0, 0, 0, 0.06);
  padding: 8px 12px 8px 18px;
  border-radius: 999px;
  box-shadow: var(--shadow-md);
  pointer-events: auto;
  width: fit-content;
  max-width: calc(100vw - 24px);
}
.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-logo img { height: 30px; width: auto; }
.nav-logo-text { font-weight: 800; font-size: 0.98rem; color: var(--ink); letter-spacing: -0.01em; }
.nav-links { display: flex; gap: 22px; align-items: center; margin: 0 16px; }
.nav-links a { color: var(--ink); font-weight: 600; font-size: 0.92rem; letter-spacing: -0.005em; }
.nav-links a:hover { color: var(--brand); }
.nav-cta {
  background: var(--brand); color: #fff; padding: 10px 18px;
  border-radius: 999px; font-weight: 700; font-size: 0.9rem;
  display: inline-flex; align-items: center; gap: 6px;
  box-shadow: 0 4px 12px rgba(165, 36, 36, 0.25);
}
.nav-cta:hover { background: var(--brand-dark); color: #fff; }
.mobile-menu-toggle {
  display: none;
  width: 36px; height: 36px; border-radius: 999px;
  background: transparent; border: none; padding: 0; cursor: pointer;
  align-items: center; justify-content: center;
}
.mobile-menu-toggle span {
  display: block; width: 18px; height: 2px; background: var(--ink); border-radius: 1px;
  position: relative;
}
.mobile-menu-toggle span::before,
.mobile-menu-toggle span::after {
  content: ""; position: absolute; left: 0; right: 0; height: 2px; background: var(--ink); border-radius: 1px;
}
.mobile-menu-toggle span::before { top: -6px; }
.mobile-menu-toggle span::after { top: 6px; }

@media (min-width: 1024px) {
  .mobile-menu-toggle { display: none !important; }
}
@media (max-width: 1023px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .mobile-menu-toggle { display: inline-flex; }
}

/* Mobile drawer */
.mobile-drawer {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: min(380px, 88vw); background: var(--paper);
  z-index: 70; transform: translateX(100%); transition: transform 0.32s ease;
  display: flex; flex-direction: column; padding: 70px 28px 28px;
  box-shadow: -8px 0 32px rgba(0,0,0,0.18);
}
.mobile-drawer.open { transform: translateX(0); }
.mobile-drawer a { font-size: 1.2rem; padding: 14px 0; border-bottom: 1px solid var(--border); color: var(--ink); font-weight: 600; }
.mobile-drawer .drawer-close {
  position: absolute; top: 16px; right: 16px; width: 40px; height: 40px;
  border-radius: 999px; background: var(--soft); border: none; font-size: 1.4rem; cursor: pointer;
}
.mobile-drawer .drawer-phone {
  margin-top: 24px; background: var(--brand); color: #fff; padding: 14px;
  border-radius: 14px; text-align: center; font-weight: 700; font-size: 1.1rem;
}
.drawer-backdrop {
  position: fixed; inset: 0; background: rgba(0,0,0,0.4); z-index: 65;
  opacity: 0; pointer-events: none; transition: opacity 0.32s ease;
}
.drawer-backdrop.open { opacity: 1; pointer-events: auto; }

/* ============== HERO ============== */
.hero {
  padding: 140px 0 80px;
  background: radial-gradient(ellipse at 50% 0%, var(--brand-light) 0%, var(--paper) 60%);
  text-align: center; position: relative; overflow: hidden;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(165, 36, 36, 0.08); color: var(--brand);
  font-weight: 700; font-size: 0.82rem; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 8px 16px; border-radius: 999px; margin-bottom: 24px;
}
.hero h1 { max-width: 920px; margin: 0 auto 22px; }
.hero-subtitle {
  max-width: 640px; margin: 0 auto 36px;
  font-size: clamp(1.05rem, 1.6vw, 1.2rem); color: var(--ink-2);
  line-height: 1.55;
}
.hero-ctas { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 44px; }
.btn-primary, .btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 16px 28px; border-radius: 999px; font-weight: 700; font-size: 1rem;
  transition: all 0.18s ease; cursor: pointer; border: none;
}
.btn-primary {
  background: var(--brand); color: #fff;
  box-shadow: 0 8px 22px rgba(165, 36, 36, 0.3);
}
.btn-primary:hover { background: var(--brand-dark); color: #fff; transform: translateY(-1px); box-shadow: 0 12px 28px rgba(165, 36, 36, 0.36); }
.btn-secondary {
  background: var(--ink); color: #fff;
}
.btn-secondary:hover { background: #000; color: #fff; transform: translateY(-1px); }

.hero-trust {
  display: flex; gap: 32px; justify-content: center; align-items: center; flex-wrap: wrap;
  padding-top: 24px; border-top: 1px solid var(--border); max-width: 760px; margin: 0 auto;
}
.hero-trust-item { display: flex; align-items: center; gap: 10px; font-size: 0.92rem; color: var(--ink-2); font-weight: 500; }
.hero-trust-item strong { color: var(--ink); font-weight: 700; }
.hero-trust-stars { color: #F5A623; font-size: 1rem; letter-spacing: 1px; }

/* ============== SECTION CHROME ============== */
section { padding: 80px 0; }
.section-heading { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.section-eyebrow {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--brand); font-weight: 700; font-size: 0.8rem; letter-spacing: 0.08em;
  text-transform: uppercase; margin-bottom: 14px;
}
.section-eyebrow::before { content: ""; width: 6px; height: 6px; background: var(--brand); border-radius: 999px; }
.section-heading h2 { margin-bottom: 12px; }
.section-heading p { font-size: 1.05rem; }

.bg-soft { background: var(--soft); }
.bg-brand-dark { background: var(--ink); color: #fff; }
.bg-brand-dark h2, .bg-brand-dark h3 { color: #fff; }
.bg-brand-dark p { color: rgba(255,255,255,0.78); }

/* ============== BADGE ROW (trust) ============== */
.trust-strip {
  background: var(--soft); padding: 36px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.trust-strip-inner {
  display: flex; flex-wrap: wrap; gap: 40px; justify-content: center; align-items: center;
}
.trust-badge { display: flex; flex-direction: column; align-items: center; gap: 8px; text-align: center; }
.trust-badge img { height: 72px; width: auto; opacity: 0.92; }
.trust-badge-label { font-size: 0.78rem; color: var(--ink-2); font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; }
.trust-licence { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.trust-licence-num { font-weight: 800; color: var(--ink); font-size: 0.95rem; font-family: 'Inter', sans-serif; }

/* ============== HOW IT WORKS ============== */
.how-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.how-card {
  background: var(--paper); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 32px 28px; position: relative;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}
.how-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); border-color: rgba(165,36,36,0.18); }
.how-card-num {
  position: absolute; top: 24px; right: 26px;
  font-size: 1.3rem; font-weight: 800; color: rgba(0,0,0,0.07); letter-spacing: -0.05em;
}
.how-card-icon {
  width: 56px; height: 56px; border-radius: 16px;
  background: var(--brand-light); color: var(--brand);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
}
.how-card h3 { margin-bottom: 8px; }
.how-card p { margin: 0; font-size: 0.96rem; line-height: 1.55; }

.how-cta-card {
  background: var(--ink); color: #fff; padding: 32px 28px; border-radius: var(--radius-lg);
  display: flex; flex-direction: column; justify-content: space-between;
}
.how-cta-card h3 { color: #fff; font-size: 1.4rem; line-height: 1.2; margin-bottom: 24px; }
.how-cta-card a {
  background: var(--brand); color: #fff; padding: 12px 22px; border-radius: 999px;
  font-weight: 700; align-self: flex-start; display: inline-flex; align-items: center; gap: 6px;
}
.how-cta-card a:hover { background: #fff; color: var(--brand); }

@media (max-width: 820px) {
  .how-grid { grid-template-columns: 1fr; }
}

/* ============== SERVICES GRID ============== */
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.service-card {
  background: var(--paper); border: 1px solid var(--border); border-radius: var(--radius-lg);
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}
.service-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); border-color: rgba(165,36,36,0.2); }
.service-card .img-wrap { aspect-ratio: 1 / 1; overflow: hidden; background: var(--soft); }
.service-card .img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.service-card:hover .img-wrap img { transform: scale(1.04); }
.service-card-body { padding: 22px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.service-card-head { display: flex; align-items: baseline; justify-content: space-between; gap: 8px; margin-bottom: 8px; }
.service-card-head h3 { font-size: 1.12rem; margin: 0; }
.service-card-price {
  font-weight: 800; color: var(--brand); font-size: 1.1rem; white-space: nowrap;
}
.service-card-blurb { font-size: 0.94rem; color: var(--ink-2); margin: 0 0 16px; flex: 1; }
.service-card-link {
  color: var(--ink); font-weight: 700; font-size: 0.92rem;
  display: inline-flex; align-items: center; gap: 6px;
}
.service-card-link:hover { color: var(--brand); }
.service-card-link::after { content: "→"; transition: transform 0.18s ease; }
.service-card-link:hover::after { transform: translateX(3px); }

@media (max-width: 900px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 580px) { .services-grid { grid-template-columns: 1fr; } }

/* ============== ABOUT / OWNER ============== */
.about-band {
  background: var(--ink); color: #fff; padding: 100px 0;
}
.about-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 60px; align-items: center; }
.about-band h2 { color: #fff; font-size: clamp(2rem, 4vw, 2.8rem); margin-bottom: 24px; }
.about-band p { color: rgba(255,255,255,0.78); font-size: 1.05rem; line-height: 1.65; }
.about-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 32px; }
.about-stat {
  border-left: 3px solid var(--brand); padding-left: 16px;
}
.about-stat-num { font-size: 2.2rem; font-weight: 800; color: #fff; line-height: 1; letter-spacing: -0.03em; }
.about-stat-label { font-size: 0.84rem; color: rgba(255,255,255,0.65); text-transform: uppercase; letter-spacing: 0.06em; margin-top: 6px; }

.about-visual {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
  border-radius: var(--radius-lg); padding: 50px 40px;
  display: flex; flex-direction: column; gap: 20px;
  box-shadow: 0 30px 60px rgba(165,36,36,0.25);
}
.about-visual-card {
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.14);
  border-radius: 16px; padding: 20px 22px;
  display: flex; align-items: center; gap: 16px;
  backdrop-filter: blur(6px);
}
.about-visual-card-icon {
  width: 44px; height: 44px; border-radius: 12px; background: rgba(255,255,255,0.18);
  display: flex; align-items: center; justify-content: center; color: #fff; flex-shrink: 0;
}
.about-visual-card-body strong { display: block; color: #fff; font-size: 1rem; font-weight: 700; margin-bottom: 2px; }
.about-visual-card-body span { color: rgba(255,255,255,0.75); font-size: 0.88rem; }

@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-stats { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 560px) { .about-stats { grid-template-columns: 1fr 1fr; } }

/* ============== AREAS ============== */
.areas-band { background: var(--soft); padding: 80px 0; }
.areas-list {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; max-width: 880px; margin: 32px auto 0;
}
.area-chip {
  background: var(--paper); border: 1px solid var(--border); border-radius: 999px;
  padding: 10px 18px; text-align: center; font-size: 0.92rem; font-weight: 600; color: var(--ink-2);
}
.area-chip:hover { border-color: var(--brand); color: var(--brand); }
@media (max-width: 720px) { .areas-list { grid-template-columns: repeat(2, 1fr); } }

/* ============== REVIEWS / GBP TIER 2 ============== */
.reviews-section { padding: 80px 0; background: var(--paper); }
.gr-summary {
  max-width: 540px; margin: 0 auto;
  background: var(--paper); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 40px 32px; text-align: center; box-shadow: var(--shadow-sm);
}
.gr-g-mark {
  width: 56px; height: 56px; margin: 0 auto 20px;
  display: block;
}
.gr-rating-row { display: flex; align-items: center; justify-content: center; gap: 12px; margin-bottom: 12px; }
.gr-rating-num { font-size: 3rem; font-weight: 800; color: var(--ink); letter-spacing: -0.04em; line-height: 1; }
.gr-stars { color: #F5A623; font-size: 1.6rem; letter-spacing: 2px; }
.gr-count { color: var(--ink-2); font-size: 0.95rem; margin-bottom: 24px; }
.gr-cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--ink); color: #fff; padding: 12px 22px; border-radius: 999px;
  font-weight: 700; font-size: 0.92rem;
}
.gr-cta:hover { background: var(--brand); color: #fff; }

/* ============== FAQ ============== */
.faq-section { background: var(--soft); padding: 80px 0; }
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item {
  background: var(--paper); border: 1px solid var(--border); border-radius: 14px;
  margin-bottom: 14px; padding: 0; overflow: hidden;
}
.faq-item summary {
  list-style: none; cursor: pointer; padding: 22px 24px;
  font-weight: 700; font-size: 1.02rem; color: var(--ink);
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; font-size: 1.5rem; font-weight: 400; color: var(--brand); flex-shrink: 0;
  transition: transform 0.22s ease;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-answer { padding: 0 24px 22px; color: var(--ink-2); line-height: 1.65; }
.faq-answer p { margin: 0; }

/* ============== CONTACT ============== */
.contact-band { padding: 100px 0; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.contact-info h2 { margin-bottom: 18px; }
.contact-info .lede { font-size: 1.08rem; color: var(--ink-2); margin-bottom: 32px; line-height: 1.6; }
.contact-list { list-style: none; padding: 0; margin: 0; }
.contact-list li {
  display: flex; align-items: flex-start; gap: 16px; padding: 18px 0;
  border-bottom: 1px solid var(--border);
}
.contact-list li:last-child { border-bottom: none; }
.contact-list-icon {
  width: 42px; height: 42px; border-radius: 12px; background: var(--brand-light); color: var(--brand);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-list-body strong { display: block; font-weight: 700; color: var(--ink); margin-bottom: 2px; font-size: 0.92rem; }
.contact-list-body span, .contact-list-body a { color: var(--ink-2); font-size: 0.96rem; }
.contact-list-body a:hover { color: var(--brand); }

.contact-form {
  background: var(--soft); border-radius: var(--radius-lg); padding: 36px 32px;
}
.contact-form h3 { margin: 0 0 8px; font-size: 1.4rem; }
.contact-form .lede { color: var(--ink-2); font-size: 0.96rem; margin-bottom: 24px; }
.form-field { margin-bottom: 14px; }
.form-field label { display: block; font-size: 0.84rem; font-weight: 600; color: var(--ink); margin-bottom: 6px; }
.form-field input, .form-field textarea, .form-field select {
  width: 100%; padding: 12px 14px; border: 1px solid var(--border); border-radius: 10px;
  font-family: inherit; font-size: 1rem; color: var(--ink); background: var(--paper);
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}
.form-field input:focus, .form-field textarea:focus, .form-field select:focus {
  outline: none; border-color: var(--brand); box-shadow: 0 0 0 3px rgba(165,36,36,0.12);
}
.form-field textarea { resize: vertical; min-height: 110px; }
.form-submit {
  width: 100%; background: var(--brand); color: #fff; border: none;
  padding: 14px 24px; border-radius: 999px; font-weight: 700; font-size: 1rem; cursor: pointer;
  transition: background 0.18s ease;
}
.form-submit:hover { background: var(--brand-dark); }
.form-disclaimer { font-size: 0.78rem; color: var(--ink-2); margin-top: 12px; text-align: center; }

@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; gap: 40px; } }

/* ============== FOOTER ============== */
.site-footer {
  background: var(--ink); color: rgba(255,255,255,0.75); padding: 72px 0 28px;
}
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
.footer-brand img { height: 44px; width: auto; margin-bottom: 16px; filter: brightness(0) invert(1); }
.footer-brand p { font-size: 0.92rem; color: rgba(255,255,255,0.65); line-height: 1.6; }
.footer-col h4 { color: #fff; font-size: 0.9rem; margin-bottom: 18px; text-transform: uppercase; letter-spacing: 0.05em; }
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { color: rgba(255,255,255,0.7); font-size: 0.92rem; }
.footer-col a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1); padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap;
  font-size: 0.84rem; color: rgba(255,255,255,0.55);
}
.footer-credit a { color: rgba(255,255,255,0.85); font-weight: 600; }
.footer-credit a:hover { color: #fff; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 36px; height: 36px; border-radius: 999px; background: rgba(255,255,255,0.08);
  display: inline-flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.78);
}
.footer-social a:hover { background: var(--brand); color: #fff; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 540px) { .footer-grid { grid-template-columns: 1fr; } }

/* ============== MOBILE STICKY CTA ============== */
.mobile-cta-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 50;
  display: none; box-shadow: 0 -4px 12px rgba(0,0,0,0.08);
}
.mobile-cta-bar a {
  flex: 1; padding: 14px 0; text-align: center; color: #fff; font-weight: 700; font-size: 0.95rem;
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.mobile-cta-call { background: var(--brand); }
.mobile-cta-msg { background: #0a0a0a; }
@media (max-width: 1023px) {
  .mobile-cta-bar { display: flex; }
  body { padding-bottom: 56px; }
}

/* ============== SERVICE DETAIL PAGE ============== */
.service-hero {
  padding: 140px 0 60px; background: var(--soft);
}
.service-hero-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 50px; align-items: center; }
.service-hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--brand); font-weight: 700; font-size: 0.82rem;
  letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 18px;
}
.service-hero h1 { font-size: clamp(2rem, 4vw, 3.2rem); margin-bottom: 16px; }
.service-hero .price-row { display: flex; align-items: baseline; gap: 12px; margin-bottom: 20px; }
.service-hero .price { font-size: 2rem; font-weight: 800; color: var(--brand); letter-spacing: -0.02em; }
.service-hero .price-note { font-size: 0.9rem; color: var(--ink-2); }
.service-hero p { font-size: 1.08rem; line-height: 1.6; }
.service-hero-img {
  border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg);
  aspect-ratio: 1 / 1; background: var(--paper);
}
.service-hero-img img { width: 100%; height: 100%; object-fit: cover; }

.service-detail { padding: 80px 0; }
.service-detail-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 48px; }
.service-detail-main h2 { font-size: 1.7rem; margin-top: 36px; margin-bottom: 14px; }
.service-detail-main h2:first-child { margin-top: 0; }
.service-detail-main p { font-size: 1rem; line-height: 1.7; }
.service-detail-main ul { padding-left: 22px; margin: 0 0 1em; }
.service-detail-main li { margin-bottom: 8px; color: var(--ink-2); line-height: 1.6; }
.pests-row { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; }
.pest-chip {
  background: var(--brand-light); color: var(--brand); font-weight: 600; font-size: 0.88rem;
  padding: 6px 14px; border-radius: 999px;
}

.sidebar-card {
  background: var(--soft); border-radius: var(--radius-lg); padding: 28px;
  margin-bottom: 20px;
}
.sidebar-card h3 { font-size: 1.1rem; margin: 0 0 12px; }
.sidebar-card .quote-btn {
  display: block; background: var(--brand); color: #fff; padding: 12px;
  border-radius: 12px; text-align: center; font-weight: 700; margin-top: 12px;
}
.sidebar-card .quote-btn:hover { background: var(--brand-dark); color: #fff; }
.sidebar-licence { font-size: 0.86rem; }
.sidebar-licence dt { color: var(--ink-2); font-weight: 500; }
.sidebar-licence dd { font-weight: 700; color: var(--ink); margin: 2px 0 10px; }

@media (max-width: 900px) {
  .service-hero-grid { grid-template-columns: 1fr; }
  .service-detail-grid { grid-template-columns: 1fr; }
}

/* ============== ABOUT PAGE ============== */
.about-page-hero {
  padding: 140px 0 60px; background: var(--soft);
}
.about-page-hero h1 { max-width: 760px; }
.about-content { padding: 60px 0 80px; }
.about-content-grid { display: grid; grid-template-columns: 1fr 2fr; gap: 60px; }
.about-owner-card {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
  border-radius: var(--radius-lg); padding: 40px 32px; color: #fff;
  position: sticky; top: 100px;
}
.about-owner-card h2 { color: #fff; font-size: 1.4rem; margin-bottom: 6px; }
.about-owner-card .role { font-size: 0.9rem; color: rgba(255,255,255,0.85); margin-bottom: 20px; }
.about-owner-card .creds { list-style: none; padding: 0; margin: 0; }
.about-owner-card .creds li {
  padding: 10px 0; border-top: 1px solid rgba(255,255,255,0.18);
  font-size: 0.9rem; color: rgba(255,255,255,0.92);
}
.about-owner-card .creds li:first-child { border-top: none; }
.about-body p { font-size: 1.05rem; line-height: 1.75; margin-bottom: 1.2em; }
.about-body h2 { margin-top: 40px; margin-bottom: 14px; }
@media (max-width: 900px) {
  .about-content-grid { grid-template-columns: 1fr; }
  .about-owner-card { position: static; }
}

/* ============== FAQ PAGE ============== */
.faq-page-hero {
  padding: 140px 0 50px; background: var(--soft); text-align: center;
}
.faq-page-hero h1 { max-width: 720px; margin: 0 auto 16px; }
.faq-page-hero p { max-width: 600px; margin: 0 auto; font-size: 1.05rem; }
.faq-page-content { padding: 60px 0 80px; }
.faq-page-grid { display: grid; grid-template-columns: 280px 1fr; gap: 50px; }
.faq-toc { position: sticky; top: 100px; align-self: start; }
.faq-toc h3 { font-size: 0.84rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-2); margin: 0 0 14px; }
.faq-toc ul { list-style: none; padding: 0; margin: 0; }
.faq-toc a {
  display: block; padding: 8px 12px; border-radius: 8px; color: var(--ink-2);
  font-size: 0.92rem; transition: background 0.18s ease, color 0.18s ease;
}
.faq-toc a:hover { background: var(--soft); color: var(--brand); }
.faq-page-section h2 { font-size: 1.4rem; margin: 0 0 18px; padding-top: 24px; }
.faq-page-section:first-child h2 { padding-top: 0; }

@media (max-width: 900px) {
  .faq-page-grid { grid-template-columns: 1fr; }
  .faq-toc { position: static; }
}

/* ============== 404 PAGE ============== */
.error-page {
  min-height: 60vh; display: flex; align-items: center; justify-content: center;
  padding: 140px 0 80px; text-align: center;
}
.error-card h1 { font-size: clamp(3rem, 8vw, 5rem); margin-bottom: 12px; color: var(--brand); }
.error-card p { font-size: 1.1rem; margin-bottom: 28px; }
.error-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ============== UTILITIES ============== */
.text-center { text-align: center; }
.no-mobile { display: block; }
@media (max-width: 1023px) { .no-mobile { display: none; } }
