:root {
  --ink: #17121f;
  --ink-2: #251936;
  --purple: #5f3794;
  --purple-2: #8f63cf;
  --peach: #ffb184;
  --orange: #f47a3d;
  --cream: #fff7ec;
  --paper: #fffaf3;
  --muted: #6f647a;
  --line: rgba(95, 55, 148, 0.18);
  --shadow: 0 22px 60px rgba(26, 16, 42, 0.16);
  --radius: 24px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 12%, rgba(255,177,132,.35), transparent 27%),
    radial-gradient(circle at 82% 2%, rgba(143,99,207,.34), transparent 24%),
    linear-gradient(180deg, #fff9f1 0%, #f7eefb 42%, #fffaf3 100%);
  line-height: 1.55;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background-image:
    linear-gradient(120deg, rgba(95,55,148,.055) 1px, transparent 1px),
    radial-gradient(circle, rgba(244,122,61,.12) 1.4px, transparent 1.6px);
  background-size: 60px 60px, 28px 28px;
  opacity: .75;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
p { margin: 0 0 1rem; }
h1, h2, h3 { margin: 0; line-height: 1.05; letter-spacing: -0.04em; }
h1 { font-size: clamp(3rem, 8vw, 6.4rem); }
h2 { font-size: clamp(2.15rem, 5vw, 4rem); }
h3 { font-size: 1.25rem; }

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--ink);
  color: #fff;
  padding: .75rem 1rem;
  z-index: 100;
}
.skip-link:focus { left: 1rem; top: 1rem; }

.topbar {
  color: #fff;
  background: linear-gradient(90deg, var(--ink), #2b1744);
  font-size: .92rem;
}
.topbar-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: .55rem 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.topbar a { color: #fff; opacity: .96; }
.topbar span { color: rgba(255,255,255,.72); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 250, 243, .84);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(95,55,148,.14);
}
.nav {
  max-width: var(--max);
  margin: 0 auto;
  padding: .85rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.brand {
  display: flex;
  align-items: center;
  gap: .8rem;
  min-width: max-content;
  font-weight: 900;
  letter-spacing: -0.03em;
}
.brand img { width: 52px; height: 52px; object-fit: contain; }
.brand small { display: block; font-size: .75rem; color: var(--muted); font-weight: 700; letter-spacing: .02em; }
.nav-links {
  display: flex;
  align-items: center;
  gap: .2rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.nav-links a {
  padding: .55rem .72rem;
  border-radius: 999px;
  color: #392a49;
  font-weight: 800;
  font-size: .94rem;
}
.nav-links a:hover { background: rgba(95,55,148,.1); }
.nav-links .quote-link { background: var(--ink); color: #fff; }

.container { max-width: var(--max); margin: 0 auto; padding: 0 1rem; }
.section { padding: 5.25rem 0; }
.section-tight { padding: 3.5rem 0; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  color: var(--purple);
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .11em;
  font-size: .78rem;
  margin-bottom: .8rem;
}
.lead { font-size: clamp(1.08rem, 2vw, 1.35rem); color: #4a3d56; max-width: 720px; }
.muted { color: var(--muted); }

.hero { padding: 4.25rem 0 3.5rem; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  align-items: center;
  gap: clamp(2rem, 5vw, 4.5rem);
}
.hero-card {
  padding: clamp(1.3rem, 3vw, 2rem);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 10px);
  background:
    linear-gradient(135deg, rgba(255,255,255,.78), rgba(255,247,236,.92)),
    radial-gradient(circle at 0 0, rgba(255,177,132,.42), transparent 32%);
  box-shadow: var(--shadow);
}
.hero-title strong {
  display: block;
  color: var(--purple);
  text-shadow: 0 1px 0 rgba(255,255,255,.5);
}
.hero-actions { display: flex; gap: .8rem; flex-wrap: wrap; margin: 1.6rem 0 1.25rem; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: .88rem 1.08rem;
  border-radius: 999px;
  font-weight: 950;
  border: 2px solid transparent;
  box-shadow: 0 10px 24px rgba(31, 19, 48, .12);
}
.btn-primary { background: linear-gradient(135deg, var(--purple), var(--ink-2)); color: #fff; }
.btn-secondary { background: #fff; color: var(--ink); border-color: var(--line); }
.btn-warm { background: linear-gradient(135deg, var(--peach), var(--orange)); color: #1e102a; }
.btn:hover { transform: translateY(-1px); }
.hero-note {
  display: flex;
  gap: .65rem;
  flex-wrap: wrap;
  color: var(--muted);
  font-weight: 750;
  font-size: .95rem;
}
.hero-media {
  position: relative;
}
.hero-media::before {
  content: "";
  position: absolute;
  inset: -18px;
  background: linear-gradient(135deg, rgba(95,55,148,.22), rgba(255,177,132,.28));
  border-radius: 36px;
  transform: rotate(-2deg);
  z-index: -1;
}
.hero-media img {
  width: 100%;
  aspect-ratio: 1.22 / 1;
  object-fit: cover;
  border-radius: 30px;
  border: 8px solid rgba(255,255,255,.9);
  box-shadow: var(--shadow);
}
.hero-badge {
  position: absolute;
  left: -22px;
  bottom: -26px;
  width: min(160px, 33vw);
  padding: .35rem;
  background: #fff;
  border-radius: 999px;
  box-shadow: 0 18px 45px rgba(25,16,42,.25);
  border: 1px solid var(--line);
}
.hero-badge img { border-radius: 999px; aspect-ratio: 1; object-fit: contain; border: none; box-shadow: none; }

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .9rem;
}
.trust-item {
  padding: 1rem;
  border-radius: 18px;
  background: rgba(255,255,255,.78);
  border: 1px solid var(--line);
  font-weight: 900;
  box-shadow: 0 8px 25px rgba(31, 19, 48, .06);
}
.trust-item span { display: block; color: var(--muted); font-weight: 700; font-size: .9rem; margin-top: .12rem; }

.split {
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.card, .price-card, .plain-card {
  background: rgba(255,255,255,.78);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.15rem;
  box-shadow: 0 12px 30px rgba(31,19,48,.07);
}
.card-icon {
  width: 42px; height: 42px;
  display: grid; place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(95,55,148,.14), rgba(255,177,132,.24));
  color: var(--purple);
  font-weight: 950;
  margin-bottom: .75rem;
}
.card p, .price-card p, .plain-card p { color: var(--muted); margin: .55rem 0 0; }

.steps { counter-reset: step; display: grid; gap: .9rem; }
.step {
  counter-increment: step;
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1rem;
  background: var(--ink);
  color: #fff;
  border-radius: 22px;
  box-shadow: var(--shadow);
}
.step::before {
  content: counter(step);
  width: 44px; height: 44px;
  border-radius: 999px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--peach), var(--orange));
  color: var(--ink);
  font-weight: 950;
}
.step p { color: rgba(255,255,255,.76); margin: .35rem 0 0; }

.pricing-panel {
  background:
    linear-gradient(135deg, rgba(37,25,54,.97), rgba(95,55,148,.94)),
    url('assets/brand-banner.jpg');
  background-size: cover;
  background-position: center;
  color: #fff;
  border-radius: 34px;
  padding: clamp(1.4rem, 4vw, 2.4rem);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.pricing-panel .eyebrow { color: var(--peach); }
.pricing-panel .lead { color: rgba(255,255,255,.76); }
.price-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: .9rem; margin-top: 1.6rem; }
.price-card {
  background: rgba(255,255,255,.095);
  border-color: rgba(255,255,255,.16);
  color: #fff;
  box-shadow: none;
}
.price-card b { font-size: clamp(1.45rem, 3vw, 2.25rem); display: block; letter-spacing: -0.05em; }
.price-card p { color: rgba(255,255,255,.72); font-size: .95rem; }
.price-note { margin-top: 1rem; color: rgba(255,255,255,.76); font-size: .95rem; }

.pill-list { display: flex; gap: .6rem; flex-wrap: wrap; padding: 0; margin: 1rem 0 0; list-style: none; }
.pill-list li {
  border: 1px solid var(--line);
  background: rgba(255,255,255,.75);
  border-radius: 999px;
  padding: .55rem .82rem;
  font-weight: 850;
  color: #3d2f4b;
}
.warning-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: .75rem; list-style: none; padding: 0; margin: 1rem 0 0; }
.warning-list li {
  background: rgba(244,122,61,.1);
  border: 1px solid rgba(244,122,61,.24);
  border-radius: 16px;
  padding: .8rem;
  font-weight: 800;
}

.area-card {
  min-height: 390px;
  border-radius: 34px;
  background:
    radial-gradient(circle at 70% 20%, rgba(255,177,132,.5), transparent 23%),
    radial-gradient(circle at 28% 78%, rgba(143,99,207,.5), transparent 28%),
    linear-gradient(135deg, #2d1c45, #5f3794);
  color: #fff;
  padding: clamp(1.4rem, 4vw, 2.1rem);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.area-card::before {
  content: "";
  position: absolute;
  inset: 24px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 28px;
}
.area-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .65rem; margin-top: 1.4rem; position: relative; }
.area-list a, .area-list span {
  padding: .78rem .85rem;
  border-radius: 16px;
  background: rgba(255,255,255,.13);
  border: 1px solid rgba(255,255,255,.16);
  font-weight: 900;
}
.area-card p { color: rgba(255,255,255,.78); position: relative; }
.area-card h2 { position: relative; }

.gallery { display: grid; grid-template-columns: 1.2fr .8fr; gap: 1rem; align-items: stretch; }
.gallery-card {
  background: rgba(255,255,255,.78);
  border: 1px solid var(--line);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.gallery-card img { width: 100%; height: 100%; object-fit: cover; }
.gallery-card figcaption { padding: .85rem 1rem; color: var(--muted); font-weight: 750; }
.gallery-stack { display: grid; gap: 1rem; }
.gallery-stack img { aspect-ratio: 1.25 / .72; }
.founder img { aspect-ratio: 1.25 / 1; object-position: center 30%; }

.faq { display: grid; gap: .75rem; }
details {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255,255,255,.78);
  padding: 1rem 1.1rem;
  box-shadow: 0 8px 24px rgba(31,19,48,.055);
}
summary { cursor: pointer; font-weight: 950; }
details p { color: var(--muted); margin: .7rem 0 0; }

.contact-panel {
  display: grid;
  grid-template-columns: 1fr .9fr;
  gap: 1.4rem;
  background: var(--ink);
  color: #fff;
  border-radius: 34px;
  padding: clamp(1.4rem, 4vw, 2.3rem);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.contact-panel .lead { color: rgba(255,255,255,.76); }
.contact-methods { display: grid; gap: .7rem; }
.contact-methods a {
  padding: .9rem 1rem;
  border-radius: 18px;
  background: rgba(255,255,255,.095);
  border: 1px solid rgba(255,255,255,.12);
  font-weight: 900;
}
.mini-form {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 24px;
  padding: 1rem;
}
.mini-form label { display: block; font-weight: 900; margin-top: .8rem; }
.mini-form input, .mini-form textarea {
  width: 100%;
  margin-top: .35rem;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.92);
  padding: .8rem;
  font: inherit;
}
.mini-form button { width: 100%; margin-top: 1rem; border: 0; cursor: pointer; }
.form-note { font-size: .85rem; color: rgba(255,255,255,.62); margin-top: .7rem; }

.site-footer {
  margin-top: 4rem;
  padding: 2rem 0 7rem;
  color: var(--muted);
}
.footer-grid { display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; border-top: 1px solid var(--line); padding-top: 1.2rem; }
.footer-grid a { font-weight: 850; color: var(--ink); }

.mobile-cta {
  display: none;
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: .9rem;
  z-index: 60;
  gap: .7rem;
}
.mobile-cta a { flex: 1; }

.page-hero { padding: 4rem 0 2rem; }
.page-card {
  background: rgba(255,255,255,.82);
  border: 1px solid var(--line);
  border-radius: 32px;
  padding: clamp(1.4rem, 4vw, 2.4rem);
  box-shadow: var(--shadow);
}
.simple-content { max-width: 850px; }
.simple-content ul { margin-top: .4rem; }
.simple-content li { margin-bottom: .4rem; }

@media (max-width: 980px) {
  .hero-grid, .split, .contact-panel { grid-template-columns: 1fr; }
  .cards, .price-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-strip { grid-template-columns: repeat(2, 1fr); }
  .nav { align-items: flex-start; }
  .nav-links { display: none; }
  .gallery { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .topbar-inner { justify-content: center; text-align: center; }
  .hero { padding-top: 2.25rem; }
  .cards, .price-grid, .warning-list, .area-list { grid-template-columns: 1fr; }
  .trust-strip { grid-template-columns: 1fr; }
  .hero-actions .btn { width: 100%; }
  .hero-badge { width: 118px; left: 14px; bottom: -22px; }
  .section { padding: 3.6rem 0; }
  .mobile-cta { display: flex; }
  .brand img { width: 46px; height: 46px; }
}

/* Revision: integrated hero highlights, combined services/take section, service area map */
.hero-highlights {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .7rem;
  margin-top: 1.15rem;
}
.hero-highlights div {
  padding: .78rem .85rem;
  border-radius: 18px;
  background: rgba(255,255,255,.74);
  border: 1px solid var(--line);
  box-shadow: 0 8px 22px rgba(31,19,48,.055);
}
.hero-highlights strong {
  display: block;
  color: var(--ink);
  font-weight: 950;
  letter-spacing: -.02em;
}
.hero-highlights span {
  display: block;
  color: var(--muted);
  font-weight: 750;
  font-size: .9rem;
  margin-top: .1rem;
}
.service-stack { display: grid; gap: 1rem; }
.services-cards { grid-template-columns: repeat(2, 1fr); }
.accepted-card, .not-accepted-card { margin-top: 0; }
.map-card {
  margin: 1.15rem 0 0;
  background: rgba(255,255,255,.82);
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(31,19,48,.07);
}
.map-card img {
  width: 100%;
  aspect-ratio: 1.42 / 1;
  object-fit: cover;
}
.map-card figcaption {
  padding: .78rem .95rem;
  color: var(--muted);
  font-weight: 750;
}
@media (max-width: 980px) {
  .services-cards { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .hero-highlights, .services-cards { grid-template-columns: 1fr; }
}


/* Revision v3: simpler section titles, cleaner services/service-area formatting, safer surcharge language */
.section-heading h2,
.pricing-panel h2,
.contact-panel h2 {
  margin-bottom: .85rem;
}
.section-heading-wide {
  max-width: 890px;
  margin-bottom: 1.35rem;
}
.section-actions {
  display: flex;
  gap: .8rem;
  flex-wrap: wrap;
  margin-top: 1.25rem;
}
.section-actions-left { justify-content: flex-start; }
.service-layout {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 1rem;
  align-items: stretch;
}
.service-panel {
  background: rgba(255,255,255,.82);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.2rem;
  box-shadow: 0 12px 30px rgba(31,19,48,.07);
}
.service-panel-main { grid-row: span 2; }
.service-panel h3 { margin-bottom: .9rem; }
.service-list-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .8rem;
}
.service-list-grid div {
  padding: .9rem;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(95,55,148,.075), rgba(255,177,132,.13));
  border: 1px solid rgba(95,55,148,.14);
}
.service-list-grid strong {
  display: block;
  font-weight: 950;
  color: var(--ink);
  margin-bottom: .22rem;
}
.service-list-grid span {
  display: block;
  color: var(--muted);
  font-weight: 700;
  font-size: .96rem;
}
.compact-pills { margin-top: 0; }
.caution-panel {
  background: linear-gradient(135deg, rgba(255,177,132,.18), rgba(255,255,255,.82));
}
.caution-panel p { color: var(--muted); }
.charge-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: .9rem;
}
.charge-card {
  background: rgba(255,255,255,.82);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 1rem;
  box-shadow: 0 10px 26px rgba(31,19,48,.06);
}
.charge-card h3 { font-size: 1.08rem; letter-spacing: -.03em; }
.charge-card p { color: var(--muted); margin: .45rem 0 0; font-weight: 700; }
.note-box {
  margin-top: 1rem;
  padding: 1rem;
  border-radius: 18px;
  background: rgba(95,55,148,.08);
  border: 1px solid rgba(95,55,148,.16);
  color: #3d2f4b;
  font-weight: 750;
}
.danger-note {
  background: rgba(244,122,61,.12);
  border-color: rgba(244,122,61,.28);
}
.service-area-layout {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 1.1rem;
  align-items: stretch;
}
.service-map { margin: 0; }
.service-map img {
  aspect-ratio: 1.16 / 1;
  object-position: center;
}
.area-overview {
  background: rgba(255,255,255,.82);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 1.2rem;
  box-shadow: 0 12px 30px rgba(31,19,48,.07);
}
.area-overview h3 { margin-bottom: .9rem; }
.town-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: .65rem;
}
.town-grid a,
.town-grid span {
  padding: .78rem .85rem;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(95,55,148,.09), rgba(255,177,132,.13));
  border: 1px solid rgba(95,55,148,.14);
  font-weight: 900;
  color: #392a49;
}
.contact-panel .section-heading { margin-bottom: 0; }
@media (max-width: 1100px) {
  .charge-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 980px) {
  .service-layout,
  .service-area-layout { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .service-list-grid,
  .charge-grid,
  .town-grid { grid-template-columns: 1fr; }
  .section-actions .btn { width: 100%; }
}

/* Revision v5: homepage quality pass */
.hero-v5 { padding-top: 4.7rem; }
.hero-card-v5 .lead { max-width: 780px; }
.hero-media-v5 img { aspect-ratio: 1.18 / 1; object-position: center; }
.trust-band { padding-top: 0; }
.trust-grid-v5 {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: .9rem;
}
.trust-grid-v5 > div {
  padding: 1rem;
  border-radius: 20px;
  background: rgba(255,255,255,.82);
  border: 1px solid var(--line);
  box-shadow: 0 10px 26px rgba(31,19,48,.06);
}
.trust-grid-v5 strong {
  display: block;
  font-weight: 950;
  letter-spacing: -.03em;
  color: var(--ink);
}
.trust-grid-v5 span {
  display: block;
  color: var(--muted);
  font-weight: 740;
  font-size: .94rem;
  margin-top: .15rem;
}
.process-v5 .section-actions { margin-top: 1.1rem; }
.steps-v5 .step { background: linear-gradient(135deg, var(--ink), #2d1c45); }
.service-layout-v5 { grid-template-columns: 1.32fr .78fr; }
.service-panel-feature {
  background:
    linear-gradient(135deg, rgba(255,255,255,.88), rgba(255,247,236,.9)),
    radial-gradient(circle at 0 0, rgba(255,177,132,.22), transparent 32%);
}
.pricing-panel-v5 {
  background:
    linear-gradient(135deg, rgba(31,18,45,.97), rgba(95,55,148,.94)),
    radial-gradient(circle at 70% 0%, rgba(255,177,132,.18), transparent 32%),
    url('assets/brand-banner.jpg');
  background-size: cover;
  background-position: center;
}
.pricing-header-v5 {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
}
.pricing-header-v5 .btn { min-width: 170px; }
.price-grid-v5 .price-card {
  display: flex;
  flex-direction: column;
  min-height: 178px;
}
.price-grid-v5 .price-card b { margin: .35rem 0 .15rem; }
.pricing-note-v5 {
  margin-top: 1rem;
  padding: 1rem;
  border-radius: 18px;
  background: rgba(255,255,255,.11);
  border: 1px solid rgba(255,255,255,.16);
  color: rgba(255,255,255,.82);
  font-weight: 760;
}
.pricing-note-v5 strong { color: #fff; }
.charge-grid-v5 .charge-card {
  background: rgba(255,255,255,.84);
}
.service-area-layout-v5 { grid-template-columns: 1.08fr .92fr; }
.area-overview-v5 .note-box { margin-top: 1rem; }
.proof-grid-v5 {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  grid-template-rows: auto auto;
  gap: 1rem;
  align-items: stretch;
}
.proof-main-v5 { grid-row: span 2; }
.proof-main-v5 img { aspect-ratio: 1.35 / .72; object-fit: cover; }
.proof-grid-v5 > .gallery-card:not(.proof-main-v5) img { aspect-ratio: 1.3 / .78; object-fit: cover; }
.proof-card-v5 {
  background: rgba(255,255,255,.82);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 1.15rem;
  box-shadow: var(--shadow);
}
.proof-card-v5 p { color: var(--muted); font-weight: 720; margin-top: .55rem; }
.proof-card-v5 .btn { margin-top: .65rem; box-shadow: none; }
.reviews-v5 .card p { color: var(--muted); }
.contact-panel-v5 {
  background:
    radial-gradient(circle at 80% 0%, rgba(255,177,132,.18), transparent 32%),
    linear-gradient(135deg, var(--ink), #2e1c49);
}
.mobile-cta { grid-template-columns: repeat(3, 1fr); }
.mobile-cta .btn { min-width: 0; padding-left: .65rem; padding-right: .65rem; }
@media (max-width: 1100px) {
  .trust-grid-v5 { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .pricing-header-v5 { flex-direction: column; }
  .pricing-header-v5 .btn { width: 100%; }
}
@media (max-width: 980px) {
  .service-layout-v5,
  .service-area-layout-v5,
  .proof-grid-v5 { grid-template-columns: 1fr; }
  .proof-main-v5 { grid-row: auto; }
}
@media (max-width: 640px) {
  .hero-v5 { padding-top: 2.25rem; }
  .trust-grid-v5 { grid-template-columns: 1fr; }
  .hero-highlights div { padding: .74rem; }
  .proof-main-v5 img,
  .proof-grid-v5 > .gallery-card:not(.proof-main-v5) img { aspect-ratio: 1.25 / .82; }
}

/* Revision v6: clearer pricing cards, stronger surcharges, service-area cleanup, consistent CTAs */
.section-actions-center {
  justify-content: center;
  text-align: center;
}
.compact-section-actions { margin-top: 1rem; }
.pricing-panel-v6 .pricing-actions-v6 { margin-top: 1rem; }
.price-grid-v6 {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-items: stretch;
}
.price-grid-v6 .price-from-card {
  position: relative;
  overflow: hidden;
  min-height: 205px;
  padding: 1.15rem;
  border-color: rgba(255,255,255,.22);
  background:
    linear-gradient(180deg, rgba(255,255,255,.15), rgba(255,255,255,.075));
}
.price-from-card .from-label {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: .25rem .55rem;
  border-radius: 999px;
  background: rgba(255,177,132,.95);
  color: #1e102a;
  font-size: .76rem;
  text-transform: uppercase;
  letter-spacing: .09em;
  font-weight: 950;
  margin-bottom: .7rem;
}
.price-from-card h3 { font-size: 1.05rem; letter-spacing: -.025em; }
.price-from-card b {
  font-size: clamp(2.15rem, 4.4vw, 3.2rem);
  line-height: .95;
  margin: .25rem 0 .65rem;
}
.price-from-card p {
  margin-top: auto;
  font-size: .92rem;
}
.charge-grid-v6 .charge-card {
  border-color: rgba(95,55,148,.18);
}
.charge-grid-v6 .charge-card h3 { min-height: 2.35em; }
.danger-note strong { color: #2b1744; }
.service-area-layout-v6 {
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, .95fr);
  align-items: stretch;
}
.area-overview-v6 {
  display: grid;
  gap: .8rem;
  background: rgba(255,255,255,.86);
}
.area-card-block {
  padding: .95rem;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(95,55,148,.07), rgba(255,177,132,.11));
  border: 1px solid rgba(95,55,148,.13);
}
.area-card-block h3 { margin-bottom: .35rem; }
.area-card-block p { color: var(--muted); font-weight: 740; margin: 0; }
.primary-area-block {
  background: linear-gradient(135deg, rgba(95,55,148,.13), rgba(255,177,132,.18));
}
.area-note-card {
  background: rgba(255,250,243,.9);
}
.town-grid-v6 a,
.town-grid-v6 span {
  display: block;
  text-align: center;
}
.card-actions {
  gap: .65rem;
  margin-top: .9rem;
}
.card-actions .btn {
  box-shadow: none;
}
@media (max-width: 1100px) {
  .price-grid-v6 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .price-grid-v6 .price-from-card:last-child { grid-column: 1 / -1; }
}
@media (max-width: 980px) {
  .service-area-layout-v6 { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .price-grid-v6 { grid-template-columns: 1fr; }
  .price-grid-v6 .price-from-card:last-child { grid-column: auto; }
  .section-actions-center .btn,
  .section-actions-left .btn { width: 100%; }
}

/* Revision v7: simpler homepage flow, reduced hero/trust clutter, cleaner services and surcharges */
.hero-highlights-v7 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.process-v7 .lead,
.section-heading-compact-v7 .lead {
  max-width: 760px;
}
.steps-v7 .step p {
  margin-top: .35rem;
}
.service-simple-grid-v7 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1rem;
  align-items: stretch;
}
.service-simple-grid-v7 .service-panel-main,
.service-simple-grid-v7 .service-panel {
  grid-row: auto;
}
.clean-list-v7 {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--muted);
  font-weight: 750;
}
.clean-list-v7 li + li {
  margin-top: .55rem;
}
.small-cta-row-v7 {
  margin-top: 1rem;
  padding: 1rem;
  border-radius: 20px;
  background: rgba(255,255,255,.74);
  border: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.small-cta-row-v7 p {
  margin: 0;
  color: var(--muted);
  font-weight: 800;
}
.small-cta-row-v7 .section-actions {
  margin-top: 0;
}
.surcharge-box-v7 {
  background: rgba(255,255,255,.84);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 1.15rem;
  box-shadow: 0 12px 30px rgba(31,19,48,.07);
}
.surcharge-box-v7 h3 {
  margin-bottom: .85rem;
}
.charge-list-v7 {
  margin: 0;
  padding-left: 1.1rem;
  columns: 2;
  column-gap: 2rem;
  color: var(--muted);
  font-weight: 760;
}
.charge-list-v7 li {
  break-inside: avoid;
  margin-bottom: .72rem;
}
.compact-note-v7 {
  max-width: 980px;
}
.area-overview-v7 {
  align-content: start;
}
.service-area-layout-v7 .service-map img {
  aspect-ratio: 1.25 / 1;
}
@media (max-width: 980px) {
  .hero-highlights-v7,
  .service-simple-grid-v7 {
    grid-template-columns: 1fr;
  }
  .charge-list-v7 {
    columns: 1;
  }
}
@media (max-width: 640px) {
  .small-cta-row-v7 .section-actions,
  .small-cta-row-v7 .btn {
    width: 100%;
  }
}


/* Revision v11: each homepage section sits in its own rounded panel */
#main > section {
  position: relative;
}

#main > section > .container {
  position: relative;
  background: linear-gradient(180deg, rgba(255,255,255,.78), rgba(255,250,243,.88));
  border: 1px solid rgba(95,55,148,.12);
  border-radius: 34px;
  box-shadow: 0 18px 46px rgba(31,19,48,.08);
  backdrop-filter: blur(10px);
  padding-top: clamp(1.35rem, 3vw, 2rem);
  padding-bottom: clamp(1.35rem, 3vw, 2rem);
}

#main > section.hero > .container {
  background: linear-gradient(180deg, rgba(255,255,255,.66), rgba(255,250,243,.82));
}

/* Sections that already have their own prominent inner panel */
#main > section#pricing > .container,
#main > section#contact > .container {
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  backdrop-filter: none;
  padding-top: 0;
  padding-bottom: 0;
}

/* Keep inner dark panels clean inside the new section-shell system */
#main > section#pricing .pricing-panel,
#main > section#contact .contact-panel {
  box-shadow: 0 18px 46px rgba(31,19,48,.12);
}

@media (max-width: 640px) {
  #main > section > .container {
    border-radius: 24px;
    padding-top: 1.1rem;
    padding-bottom: 1.1rem;
  }
}


/* Revision v12: restore pricing and contact panel contrast after section-shell change */
#main > section#pricing > .container.pricing-panel {
  background:
    linear-gradient(135deg, rgba(31,18,45,.97), rgba(95,55,148,.94)),
    radial-gradient(circle at 70% 0%, rgba(255,177,132,.18), transparent 32%),
    url('assets/brand-banner.jpg');
  background-size: cover;
  background-position: center;
  color: #fff;
  border-radius: 34px;
  border: 0;
  box-shadow: 0 18px 46px rgba(31,19,48,.12);
  padding: clamp(1.4rem, 4vw, 2.4rem);
}

#main > section#contact > .container.contact-panel {
  background:
    radial-gradient(circle at 80% 0%, rgba(255,177,132,.18), transparent 32%),
    linear-gradient(135deg, var(--ink), #2e1c49);
  color: #fff;
  border-radius: 34px;
  border: 0;
  box-shadow: 0 18px 46px rgba(31,19,48,.12);
  padding: clamp(1.4rem, 4vw, 2.3rem);
}

#main > section#pricing .pricing-panel .lead,
#main > section#contact .contact-panel .lead {
  color: rgba(255,255,255,.76);
}


/* Revision v13: visual polish pass */
:root {
  --shadow: 0 18px 50px rgba(26, 16, 42, 0.13);
  --shadow-soft: 0 12px 32px rgba(31,19,48,.075);
  --section-shell: rgba(255, 250, 243, .86);
  --section-border: rgba(95,55,148,.13);
}

body {
  background:
    radial-gradient(circle at 10% 8%, rgba(255,177,132,.28), transparent 28%),
    radial-gradient(circle at 90% 4%, rgba(143,99,207,.25), transparent 26%),
    radial-gradient(circle at 12% 72%, rgba(95,55,148,.10), transparent 25%),
    linear-gradient(180deg, #fff9f1 0%, #f6eefb 45%, #fffaf3 100%);
}

body::before { opacity: .45; }

.section { padding: clamp(2.7rem, 5vw, 4.6rem) 0; }
.section-tight { padding: clamp(2.25rem, 4vw, 3.35rem) 0; }

#main > section > .container {
  background:
    linear-gradient(180deg, rgba(255,255,255,.75), var(--section-shell)),
    radial-gradient(circle at 0 0, rgba(255,177,132,.10), transparent 28%);
  border: 1px solid var(--section-border);
  border-radius: 32px;
  box-shadow: var(--shadow-soft);
  padding-left: clamp(1rem, 3vw, 2rem);
  padding-right: clamp(1rem, 3vw, 2rem);
  overflow: hidden;
}

#main > section.hero > .container {
  background: transparent;
  border: 0;
  box-shadow: none;
  padding-top: 0;
  padding-bottom: 0;
  overflow: visible;
}

#main > section#pricing > .container.pricing-panel,
#main > section#contact > .container.contact-panel {
  overflow: hidden;
}

.site-header {
  box-shadow: 0 8px 26px rgba(31,19,48,.055);
}

.nav { padding: .7rem 1rem; }
.brand img { width: 48px; height: 48px; }
.nav-links a { font-size: .9rem; }

.hero { padding: clamp(2.6rem, 5vw, 4.6rem) 0 clamp(2.3rem, 4vw, 3.4rem); }
.hero-grid { align-items: stretch; }
.hero-card {
  min-height: 520px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: 34px;
  box-shadow: 0 22px 60px rgba(31,19,48,.13);
}
.hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  background: radial-gradient(circle at 100% 0%, rgba(255,177,132,.16), transparent 33%);
}
.hero-card > * { position: relative; }
.hero-title { max-width: 760px; }
.hero-title strong { color: #60349a; }
.hero-actions { margin-top: 1.45rem; }
.hero-note { margin-top: .25rem; }
.hero-highlights-v7 { gap: .65rem; }
.hero-highlights div {
  background: rgba(255,255,255,.64);
  box-shadow: none;
}
.hero-media { display: flex; min-height: 520px; }
.hero-media::before { inset: -12px; border-radius: 34px; }
.hero-media img {
  height: 100%;
  min-height: 520px;
  object-position: center;
  border-width: 7px;
  box-shadow: 0 22px 58px rgba(31,19,48,.14);
}
.hero-badge {
  width: min(136px, 28vw);
  left: -10px;
  bottom: -20px;
  box-shadow: 0 14px 38px rgba(25,16,42,.18);
}

.btn {
  transition: transform .16s ease, box-shadow .16s ease, background .16s ease;
  letter-spacing: -.01em;
}
.btn:hover { box-shadow: 0 14px 30px rgba(31,19,48,.16); }
.btn:focus-visible {
  outline: 3px solid rgba(255,177,132,.75);
  outline-offset: 3px;
}
.btn-primary { background: linear-gradient(135deg, #5f3794, #251936); }
.btn-warm { background: linear-gradient(135deg, #ffbd92, #f47a3d); }

.section-heading { margin-bottom: 1.1rem; }
.section-heading h2 { max-width: 850px; }
.section-heading .lead { margin-bottom: 0; }
.lead { line-height: 1.45; }

.steps-v7 {
  gap: .75rem;
}
.steps-v7 .step {
  border-radius: 20px;
  padding: .9rem;
  box-shadow: 0 10px 26px rgba(31,19,48,.10);
}
.steps-v7 .step p { font-size: .96rem; }

.service-simple-grid-v7 {
  grid-template-columns: 1.04fr 1fr .96fr;
}
.service-panel {
  background: rgba(255,255,255,.72);
  box-shadow: var(--shadow-soft);
}
.service-panel h3 { margin-bottom: .7rem; }
.service-panel-feature {
  background: linear-gradient(135deg, rgba(255,255,255,.88), rgba(255,247,236,.84));
}
.pill-list li {
  background: rgba(255,255,255,.66);
  font-size: .94rem;
  padding: .48rem .7rem;
}
.small-cta-row-v7 {
  background: linear-gradient(135deg, rgba(95,55,148,.075), rgba(255,177,132,.13));
  box-shadow: none;
}

#pricing { padding-top: clamp(2.7rem, 5vw, 4.8rem); }
#main > section#pricing > .container.pricing-panel {
  border-radius: 32px;
  background:
    linear-gradient(135deg, rgba(29,17,43,.98), rgba(88,48,143,.95)),
    radial-gradient(circle at 74% 0%, rgba(255,177,132,.20), transparent 34%),
    url('assets/brand-banner.jpg');
  background-size: cover;
  background-position: center;
}
.pricing-header-v5 { align-items: center; }
.price-grid-v6 { gap: .75rem; }
.price-grid-v6 .price-from-card {
  min-height: 190px;
  border-radius: 20px;
  padding: 1rem;
}
.price-from-card b { font-size: clamp(2rem, 3.8vw, 2.8rem); }
.pricing-note-v5 { background: rgba(255,255,255,.10); }

.surcharge-box-v7 {
  box-shadow: var(--shadow-soft);
  background: rgba(255,255,255,.74);
}
.charge-list-v7 { font-size: .98rem; }
.compact-note-v7 {
  background: rgba(255,177,132,.16);
  border-color: rgba(244,122,61,.24);
}

.service-area-layout-v7 {
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
  gap: 1rem;
}
.map-card {
  box-shadow: var(--shadow-soft);
}
.service-map img {
  border-bottom: 1px solid rgba(95,55,148,.10);
}
.area-overview-v7 {
  background: rgba(255,255,255,.72);
  box-shadow: var(--shadow-soft);
}
.area-card-block {
  background: rgba(255,255,255,.62);
}
.primary-area-block {
  background: linear-gradient(135deg, rgba(95,55,148,.13), rgba(255,177,132,.16));
}
.town-grid a:hover {
  background: linear-gradient(135deg, rgba(95,55,148,.16), rgba(255,177,132,.18));
}

.proof-grid-v5 {
  gap: .9rem;
}
.gallery-card,
.proof-card-v5,
details,
.review-panel-v13,
.mini-form,
.contact-methods a {
  box-shadow: var(--shadow-soft);
}
.proof-card-v5 {
  background: rgba(255,255,255,.72);
}
.gallery-card img { transition: transform .22s ease; }
.gallery-card:hover img { transform: scale(1.015); }

.review-panel-v13 {
  background: rgba(255,255,255,.76);
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: 1.25rem;
  align-self: start;
}
.review-panel-v13 p {
  color: var(--muted);
  font-weight: 740;
  margin: .55rem 0 1rem;
}
.review-panel-v13 .btn { box-shadow: none; }

#main > section#contact > .container.contact-panel {
  border-radius: 32px;
  background:
    radial-gradient(circle at 82% 0%, rgba(255,177,132,.20), transparent 33%),
    linear-gradient(135deg, #17121f, #2e1c49);
}
.contact-methods a,
.mini-form {
  background: rgba(255,255,255,.075);
}
.contact-methods a:hover { background: rgba(255,255,255,.12); }
.mini-form input,
.mini-form textarea {
  border-color: rgba(255,255,255,.18);
}

.site-footer { margin-top: 2.5rem; }
.footer-grid {
  background: rgba(255,255,255,.42);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 1.15rem;
}

@media (max-width: 1100px) {
  .hero-card,
  .hero-media,
  .hero-media img { min-height: 460px; }
}

@media (max-width: 980px) {
  .hero-card,
  .hero-media,
  .hero-media img { min-height: auto; }
  .hero-media img { aspect-ratio: 1.22 / .82; }
  .service-simple-grid-v7,
  .service-area-layout-v7 { grid-template-columns: 1fr; }
  .hero-card { padding: 1.35rem; }
}

@media (max-width: 640px) {
  .topbar span { display: none; }
  .topbar-inner { gap: .35rem; }
  .hero-card { border-radius: 26px; }
  .hero-highlights-v7 { grid-template-columns: 1fr; }
  #main > section > .container { border-radius: 24px; }
  #main > section#pricing > .container.pricing-panel,
  #main > section#contact > .container.contact-panel { border-radius: 24px; }
  .pricing-header-v5 .btn { width: 100%; }
  .footer-grid { margin-bottom: 4.8rem; }
}

/* Revision v14: cleaner hero image, no logo bubble overlay, customer-ready proof/review text */
.hero-media::before {
  inset: -10px;
  border-radius: 30px;
  transform: none;
  background: linear-gradient(135deg, rgba(95,55,148,.16), rgba(255,177,132,.20));
}

.hero-media img,
.hero-media-v5 img {
  aspect-ratio: 1.62 / 1;
  object-fit: cover;
  object-position: center;
  border-radius: 26px;
  border-width: 6px;
}

.hero-badge {
  display: none;
}

.review-panel-v13 h3,
.proof-card-v5 h3 {
  margin-bottom: .45rem;
}

@media (max-width: 980px) {
  .hero-media img,
  .hero-media-v5 img {
    aspect-ratio: 1.55 / 1;
  }
}

@media (max-width: 640px) {
  .hero-media::before {
    inset: -6px;
    border-radius: 24px;
  }

  .hero-media img,
  .hero-media-v5 img {
    aspect-ratio: 1.35 / 1;
    border-radius: 22px;
    border-width: 5px;
  }
}


/* Revision v15: wider desktop hero equipment image */
@media (min-width: 981px) {
  .hero-grid {
    grid-template-columns: .96fr 1.04fr;
    align-items: center;
  }

  .hero-card {
    min-height: 0;
  }

  .hero-media {
    min-height: 0;
    align-self: center;
  }

  .hero-media img,
  .hero-media-v5 img {
    height: auto;
    min-height: 0;
    width: 100%;
    aspect-ratio: 1.9 / 1;
    object-fit: cover;
    object-position: center;
  }
}

/* Revision v16: rebalance desktop hero image and slightly reduce hero headline */
@media (min-width: 981px) {
  .hero-grid {
    grid-template-columns: .9fr 1.1fr;
    gap: clamp(1.8rem, 3.5vw, 3.4rem);
  }

  .hero-card {
    min-height: 0;
    padding: clamp(1.4rem, 2.4vw, 2.1rem);
  }

  .hero-title {
    font-size: clamp(2.75rem, 5.75vw, 5.6rem);
  }

  .hero-media {
    min-height: 0;
    align-self: center;
  }

  .hero-media::before {
    inset: -12px;
    border-radius: 32px;
  }

  .hero-media img,
  .hero-media-v5 img {
    width: 100%;
    height: auto;
    min-height: 0;
    aspect-ratio: 1.72 / 1;
    object-fit: cover;
    object-position: center;
    border-radius: 28px;
  }
}

@media (min-width: 1180px) {
  .hero-title {
    font-size: clamp(3rem, 5.2vw, 5.35rem);
  }
}


/* Revision v17: Deep Wizard Purple + Cream + Peach colour scheme */
:root {
  --purple: #5f3794;
  --purple-2: #8f63cf;
  --peach: #ffb184;
  --orange: #f47a3d;
  --cream: #fff6ea;
  --paper: #fff9f0;
  --ink: #1d1428;
  --ink-2: #2b1744;
  --muted: #6f647a;
  --line: rgba(95,55,148,.16);
  --shadow: 0 18px 50px rgba(12, 7, 23, 0.24);
  --shadow-soft: 0 12px 32px rgba(12, 7, 23, 0.14);
  --section-shell: rgba(255, 246, 234, .92);
  --section-border: rgba(231, 189, 90, .18);
}

body {
  color: var(--ink);
  background:
    radial-gradient(circle at 16% 8%, rgba(231,189,90,.12), transparent 18%),
    radial-gradient(circle at 84% 16%, rgba(95,55,148,.22), transparent 24%),
    radial-gradient(circle at 8% 78%, rgba(255,177,132,.08), transparent 18%),
    linear-gradient(180deg, #321c4f 0%, #24113a 46%, #1b0e2c 100%);
}

body::before {
  opacity: .78;
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%20width%3D%27220%27%20height%3D%27220%27%20viewBox%3D%270%200%20220%20220%27%3E%0A%3Cg%20stroke%3D%27%23F7E2A0%27%20stroke-opacity%3D%27.22%27%20stroke-linecap%3D%27round%27%20fill%3D%27none%27%3E%0A%20%20%3Cpath%20d%3D%27M36%2020%20L36%2034%20M29%2027%20L43%2027%20M31%2022%20L41%2032%20M41%2022%20L31%2032%27%20stroke-width%3D%271.4%27/%3E%0A%20%20%3Cpath%20d%3D%27M166%2054%20L166%2068%20M159%2061%20L173%2061%20M161%2056%20L171%2066%20M171%2056%20L161%2066%27%20stroke-width%3D%271.2%27/%3E%0A%20%20%3Cpath%20d%3D%27M72%20138%20L72%20150%20M66%20144%20L78%20144%20M68%20140%20L76%20148%20M76%20140%20L68%20148%27%20stroke-width%3D%271.2%27/%3E%0A%20%20%3Cpath%20d%3D%27M186%20164%20L186%20176%20M180%20170%20L192%20170%20M182%20166%20L190%20174%20M190%20166%20L182%20174%27%20stroke-width%3D%271.1%27/%3E%0A%20%20%3Ccircle%20cx%3D%27112%27%20cy%3D%2792%27%20r%3D%271.2%27%20fill%3D%27%23F7E2A0%27%20fill-opacity%3D%27.18%27%20stroke%3D%27none%27/%3E%0A%20%20%3Ccircle%20cx%3D%2724%27%20cy%3D%27118%27%20r%3D%271.0%27%20fill%3D%27%23F7E2A0%27%20fill-opacity%3D%27.16%27%20stroke%3D%27none%27/%3E%0A%20%20%3Ccircle%20cx%3D%27142%27%20cy%3D%27188%27%20r%3D%271.0%27%20fill%3D%27%23F7E2A0%27%20fill-opacity%3D%27.16%27%20stroke%3D%27none%27/%3E%0A%3C/g%3E%3C/svg%3E");
  background-size: 220px 220px;
  background-repeat: repeat;
  background-position: 0 0;
}

a { color: inherit; }

.topbar {
  background: linear-gradient(90deg, #180d27, #2b1744);
  color: #fff9f0;
}
.topbar span { color: rgba(255,249,240,.76); }
.topbar a { color: #fff9f0; }

.site-header {
  background: rgba(255, 246, 234, .88);
  border-bottom: 1px solid rgba(231,189,90,.16);
}

.nav-links a { color: #342245; }
.nav-links a:hover { background: rgba(95,55,148,.12); }
.nav-links .quote-link {
  background: linear-gradient(135deg, #5f3794, #2b1744);
  color: #fff;
}

#main > section > .container {
  background:
    linear-gradient(180deg, rgba(255,250,243,.94), var(--section-shell)),
    radial-gradient(circle at 0 0, rgba(255,177,132,.11), transparent 26%);
  border-color: var(--section-border);
}

.hero-card {
  background:
    linear-gradient(135deg, rgba(255,249,240,.96), rgba(255,241,223,.95)),
    radial-gradient(circle at 0 0, rgba(255,177,132,.16), transparent 32%);
}
.hero-title strong { color: #5d3392; }
.hero-highlights div {
  background: rgba(255,248,239,.86);
  border-color: rgba(231,189,90,.16);
}

.btn-primary {
  background: linear-gradient(135deg, #6a3ea3, #2b1744);
  color: #fff;
}
.btn-secondary {
  background: #fff8ee;
  color: #2b1744;
  border-color: rgba(95,55,148,.16);
}
.btn-warm {
  background: linear-gradient(135deg, #ffc29f, #f47a3d);
  color: #24113a;
}
.btn:hover { box-shadow: 0 14px 30px rgba(12,7,23,.22); }

.step {
  background: linear-gradient(135deg, #251338, #44256c);
}
.step::before {
  background: linear-gradient(135deg, #ffd1b0, #f0b44d);
  color: #24113a;
}

.service-panel,
.map-card,
.area-overview-v7,
.surcharge-box-v7,
.review-panel-v13,
.proof-card-v5,
details,
.footer-grid,
.small-cta-row-v7 {
  background: rgba(255, 248, 239, .88);
  border-color: rgba(95,55,148,.14);
}

.service-panel-feature {
  background: linear-gradient(135deg, rgba(255,250,243,.96), rgba(255,241,223,.92));
}
.pill-list li,
.area-card-block,
.town-grid a,
.town-grid span {
  background: rgba(255, 245, 233, .92);
}
.small-cta-row-v7 {
  background: linear-gradient(135deg, rgba(255,246,234,.96), rgba(255,238,219,.94));
}
.compact-note-v7 {
  background: rgba(255, 198, 159, .26);
  border-color: rgba(244,122,61,.24);
}

#main > section#pricing > .container.pricing-panel {
  background:
    linear-gradient(135deg, rgba(26,14,42,.98), rgba(74,43,114,.96)),
    radial-gradient(circle at 74% 0%, rgba(255,177,132,.22), transparent 34%),
    url('assets/brand-banner.jpg');
  background-size: cover;
  background-position: center;
}
.price-grid-v6 .price-from-card {
  background: linear-gradient(180deg, rgba(255,255,255,.16), rgba(255,255,255,.08));
  border-color: rgba(255,255,255,.20);
}
.price-from-card .from-label {
  background: rgba(255, 196, 142, .98);
}
.pricing-note-v5 { background: rgba(255,255,255,.11); }

#main > section#contact > .container.contact-panel {
  background:
    radial-gradient(circle at 82% 0%, rgba(255,177,132,.20), transparent 33%),
    linear-gradient(135deg, #1a0e2a, #432766);
}
.contact-methods a,
.mini-form {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.14);
}
.contact-methods a:hover { background: rgba(255,255,255,.12); }

.footer-grid {
  background: rgba(255, 246, 234, .78);
  border-color: rgba(231,189,90,.18);
}
.footer-grid a { color: #2b1744; }

@media (max-width: 640px) {
  body::before { opacity: .58; }
  .site-header { background: rgba(255,246,234,.92); }
}


/* Revision v18: subtler 4-point stars */
body::before {
  opacity: .34;
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%20width%3D%27320%27%20height%3D%27320%27%20viewBox%3D%270%200%20320%20320%27%3E%0A%3Cg%20stroke%3D%27%23F7E2A0%27%20stroke-linecap%3D%27round%27%20fill%3D%27none%27%3E%0A%20%20%3Cpath%20d%3D%27M72%2054%20L72%2072%20M63%2063%20L81%2063%20M66%2057%20L78%2069%20M78%2057%20L66%2069%27%20stroke-width%3D%271.5%27%20stroke-opacity%3D%27.18%27/%3E%0A%20%20%3Cpath%20d%3D%27M244%20206%20L244%20222%20M236%20214%20L252%20214%20M239%20209%20L249%20219%20M249%20209%20L239%20219%27%20stroke-width%3D%271.35%27%20stroke-opacity%3D%27.14%27/%3E%0A%3C/g%3E%3C/svg%3E");
  background-size: 320px 320px;
  background-repeat: repeat;
  background-position: 0 0;
}

@media (max-width: 640px) {
  body::before {
    opacity: .26;
    background-size: 300px 300px;
  }
}


/* Revision v19: subtle separation for dark pricing and contact panels */
#main > section#pricing > .container.pricing-panel,
#main > section#contact > .container.contact-panel {
  border: 1px solid rgba(255, 241, 220, 0.18);
  box-shadow:
    0 0 0 1px rgba(231, 189, 90, 0.10),
    0 18px 52px rgba(7, 3, 16, 0.30);
  position: relative;
}

#main > section#pricing > .container.pricing-panel::before,
#main > section#contact > .container.contact-panel::before {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: inherit;
  border: 1px solid rgba(255, 235, 200, 0.08);
  pointer-events: none;
}

@media (max-width: 640px) {
  #main > section#pricing > .container.pricing-panel::before,
  #main > section#contact > .container.contact-panel::before {
    inset: 8px;
  }
}

/* Revision v21: Formspree quote form integration */
.honeypot-field {
  position: absolute !important;
  left: -9999px !important;
  opacity: 0 !important;
  height: 0 !important;
  width: 0 !important;
  pointer-events: none !important;
}

.form-status {
  min-height: 1.35rem;
  margin: .85rem 0 0;
  color: rgba(255,255,255,.78);
  font-weight: 800;
}

.form-status-success {
  color: #ffe3ad;
}

.form-status-error {
  color: #ffc3b8;
}

.mini-form button[disabled] {
  opacity: .72;
  cursor: wait;
  transform: none;
}

/* Revision v23: simple SEO service/location pages and bottom homepage links */
.seo-links-card,
.seo-related-card,
.seo-contact-card {
  background: rgba(255, 248, 239, .88);
  border: 1px solid rgba(95,55,148,.14);
  border-radius: 26px;
  box-shadow: var(--shadow-soft);
}

.seo-link-grid,
.seo-mini-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.seo-link-grid h3,
.seo-mini-grid h3 {
  margin-bottom: .65rem;
}

.seo-link-grid ul,
.seo-mini-grid ul {
  margin: 0;
  padding-left: 1.1rem;
}

.seo-link-grid li,
.seo-mini-grid li {
  margin-bottom: .45rem;
  color: var(--muted);
  font-weight: 760;
}

.seo-link-grid a,
.seo-mini-grid a {
  color: #3b2460;
  font-weight: 900;
  text-decoration: none;
}

.seo-link-grid a:hover,
.seo-mini-grid a:hover {
  text-decoration: underline;
}

@media (max-width: 760px) {
  .seo-link-grid,
  .seo-mini-grid {
    grid-template-columns: 1fr;
  }
}

/* Revision v24: expanded real proof gallery */
.proof-grid-v24 {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: .9rem;
  align-items: stretch;
}

.proof-grid-v24 .gallery-card img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
}

.proof-grid-v24 .proof-feature-v24 {
  grid-row: span 2;
}

.proof-grid-v24 .proof-feature-v24 img {
  min-height: 540px;
}

.proof-grid-v24 .proof-card-v5 {
  min-height: 260px;
}

@media (max-width: 980px) {
  .proof-grid-v24 {
    grid-template-columns: 1fr;
  }

  .proof-grid-v24 .proof-feature-v24 {
    grid-row: auto;
  }

  .proof-grid-v24 .gallery-card img,
  .proof-grid-v24 .proof-feature-v24 img {
    min-height: auto;
    aspect-ratio: 1.25 / .82;
  }
}

/* Revision v25: flatter proof gallery and real Google review cards */
.proof-grid-v25 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .9rem;
}

.proof-grid-v25 .gallery-card img {
  width: 100%;
  aspect-ratio: 1.42 / 1;
  object-fit: contain;
  background: #fff8ee;
}

.review-grid-v25 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .9rem;
}

.review-card-v25 {
  background: rgba(255, 248, 239, .9);
  border: 1px solid rgba(95,55,148,.14);
  border-radius: 24px;
  padding: 1.1rem;
  box-shadow: var(--shadow-soft);
}

.review-card-v25 .stars {
  color: #d9a23f;
  letter-spacing: .08em;
  font-weight: 950;
  margin-bottom: .7rem;
}

.review-card-v25 p {
  color: var(--ink);
  font-weight: 760;
  margin: 0 0 .9rem;
}

.review-card-v25 strong {
  color: var(--muted);
  font-weight: 900;
}

@media (max-width: 980px) {
  .review-grid-v25 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .proof-grid-v25 {
    grid-template-columns: 1fr;
  }

  .proof-grid-v25 .gallery-card img {
    aspect-ratio: 1.18 / 1;
  }
}

/* Revision v26: owner photos added to proof section */
.owner-proof-v26 {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: .9rem;
  align-items: stretch;
  margin-bottom: .9rem;
}

.owner-copy-v26 {
  background: rgba(255, 248, 239, .9);
  border: 1px solid rgba(95,55,148,.14);
  border-radius: 24px;
  padding: 1.15rem;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.owner-copy-v26 p {
  color: var(--muted);
  font-weight: 760;
  margin: .65rem 0 0;
}

.owner-photo-pair-v26 {
  display: grid;
  grid-template-columns: 1fr .72fr;
  gap: .9rem;
}

.owner-photo-pair-v26 .gallery-card img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  object-position: center;
}

.owner-photo-pair-v26 .gallery-card:nth-child(2) img {
  object-position: center top;
}

@media (max-width: 980px) {
  .owner-proof-v26,
  .owner-photo-pair-v26 {
    grid-template-columns: 1fr;
  }

  .owner-photo-pair-v26 .gallery-card img {
    min-height: auto;
    aspect-ratio: 1.12 / 1;
  }

  .owner-photo-pair-v26 .gallery-card:nth-child(2) img {
    aspect-ratio: .82 / 1;
  }
}

/* Revision v27: owner shovel photo added to hero without breaking layout */
.hero-media-v27 {
  align-self: center;
}

.hero-media-v27::before {
  inset: -10px;
  border-radius: 32px;
}

.hero-photo-duo-v27 {
  width: 100%;
  display: grid;
  grid-template-columns: .72fr 1fr;
  gap: .75rem;
  align-items: stretch;
}

.hero-photo-duo-v27 figure {
  margin: 0;
  overflow: hidden;
  border-radius: 28px;
  border: 6px solid rgba(255, 246, 234, .92);
  box-shadow: 0 22px 58px rgba(31,19,48,.14);
  background: #fff8ee;
}

.hero-photo-duo-v27 img,
.hero-media-v27 .hero-photo-duo-v27 img {
  width: 100%;
  height: 100%;
  min-height: 0;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  object-fit: cover;
}

.hero-owner-card-v27 img {
  aspect-ratio: .78 / 1;
  object-position: center top;
}

.hero-equipment-card-v27 img {
  aspect-ratio: 1.2 / 1;
  object-position: center;
}

@media (min-width: 981px) {
  .hero-media-v27,
  .hero-media-v27 .hero-photo-duo-v27 {
    min-height: 0;
  }

  .hero-media-v27 .hero-photo-duo-v27 img {
    min-height: 0;
  }
}

@media (max-width: 980px) {
  .hero-photo-duo-v27 {
    grid-template-columns: .82fr 1fr;
  }

  .hero-owner-card-v27 img {
    aspect-ratio: .85 / 1;
  }

  .hero-equipment-card-v27 img {
    aspect-ratio: 1.05 / 1;
  }
}

@media (max-width: 640px) {
  .hero-photo-duo-v27 {
    grid-template-columns: 1fr;
  }

  .hero-owner-card-v27 img {
    aspect-ratio: .9 / 1;
  }

  .hero-equipment-card-v27 img {
    aspect-ratio: 1.35 / 1;
  }

  .hero-photo-duo-v27 figure {
    border-radius: 22px;
    border-width: 5px;
  }
}

/* Revision v28: fix hero portrait crop/squish */
.hero-photo-duo-v27 {
  grid-template-columns: minmax(210px, .56fr) minmax(320px, 1fr);
  align-items: stretch;
}

.hero-owner-card-v27 {
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(180deg, rgba(255,248,239,.96), rgba(255,238,219,.92));
}

.hero-equipment-card-v27 {
  background: #fff8ee;
}

.hero-media-v27 .hero-owner-card-v27 img {
  object-fit: contain;
  object-position: center center;
  aspect-ratio: auto;
  padding: .25rem;
  background: transparent;
}

.hero-media-v27 .hero-equipment-card-v27 img {
  object-fit: cover;
  object-position: center;
  aspect-ratio: 1.36 / 1;
}

@media (min-width: 981px) {
  .hero-grid {
    grid-template-columns: .88fr 1.12fr;
  }

  .hero-photo-duo-v27 {
    min-height: 430px;
  }

  .hero-owner-card-v27 img {
    max-height: 430px;
  }

  .hero-equipment-card-v27 img {
    min-height: 430px;
  }
}

@media (max-width: 980px) {
  .hero-photo-duo-v27 {
    grid-template-columns: minmax(190px, .62fr) minmax(280px, 1fr);
  }

  .hero-owner-card-v27 img {
    max-height: 400px;
  }
}

@media (max-width: 640px) {
  .hero-photo-duo-v27 {
    grid-template-columns: 1fr;
  }

  .hero-owner-card-v27 img {
    max-height: 520px;
    width: auto;
    margin: 0 auto;
  }

  .hero-equipment-card-v27 img {
    aspect-ratio: 1.35 / 1;
    min-height: 0;
  }
}

/* Revision v29: force full owner portrait visibility in hero */
.hero-media-v27 .hero-photo-duo-v27 {
  display: grid;
  grid-template-columns: minmax(220px, .62fr) minmax(320px, 1fr);
  gap: .75rem;
  align-items: stretch;
}

.hero-media-v27 .hero-owner-card-v27 {
  display: grid;
  place-items: center;
  min-height: 430px;
  background: linear-gradient(180deg, rgba(255,248,239,.96), rgba(255,238,219,.92));
}

.hero-media-v27 .hero-owner-card-v27 img {
  width: auto !important;
  height: auto !important;
  max-width: 100% !important;
  max-height: 430px !important;
  min-height: 0 !important;
  aspect-ratio: auto !important;
  object-fit: contain !important;
  object-position: center center !important;
  display: block;
  padding: .2rem;
}

.hero-media-v27 .hero-equipment-card-v27 img {
  width: 100% !important;
  height: 100% !important;
  min-height: 430px !important;
  aspect-ratio: auto !important;
  object-fit: cover !important;
  object-position: center center !important;
}

@media (max-width: 980px) {
  .hero-media-v27 .hero-photo-duo-v27 {
    grid-template-columns: minmax(210px, .62fr) minmax(280px, 1fr);
  }

  .hero-media-v27 .hero-owner-card-v27 {
    min-height: 390px;
  }

  .hero-media-v27 .hero-owner-card-v27 img {
    max-height: 390px !important;
  }

  .hero-media-v27 .hero-equipment-card-v27 img {
    min-height: 390px !important;
  }
}

@media (max-width: 720px) {
  .hero-media-v27 .hero-photo-duo-v27 {
    grid-template-columns: 1fr;
  }

  .hero-media-v27 .hero-owner-card-v27 {
    min-height: auto;
  }

  .hero-media-v27 .hero-owner-card-v27 img {
    width: auto !important;
    max-width: 100% !important;
    max-height: 560px !important;
  }

  .hero-media-v27 .hero-equipment-card-v27 img {
    min-height: 0 !important;
    height: auto !important;
    aspect-ratio: 1.45 / 1 !important;
  }
}

/* Revision v30: simplified hero owner photo showcase */
.hero-media-v30 {
  min-height: 0;
}

.hero-owner-showcase-v30 {
  width: min(100%, 390px);
  margin: 0 auto;
  overflow: hidden;
  border-radius: 30px;
  border: 7px solid rgba(255,246,234,.92);
  background: linear-gradient(180deg, rgba(255,248,239,.98), rgba(255,238,219,.94));
  box-shadow: 0 22px 58px rgba(31,19,48,.16);
  display: grid;
  place-items: center;
}

.hero-owner-showcase-v30 img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 560px;
  min-height: 0;
  aspect-ratio: auto;
  object-fit: contain;
  object-position: center center;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  padding: .3rem;
}

/* Revision v31: more compact hero copy with portrait and equipment stack */
.hero-media-stack-v31 {
  width: min(100%, 405px);
  display: grid;
  gap: .7rem;
  margin: 0 auto;
}

.hero-owner-showcase-v31,
.hero-equipment-strip-v31 {
  margin: 0;
  overflow: hidden;
  border: 6px solid rgba(255,246,234,.92);
  box-shadow: 0 20px 50px rgba(31,19,48,.15);
}

.hero-owner-showcase-v31 {
  border-radius: 28px;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, rgba(255,248,239,.98), rgba(255,238,219,.94));
}

.hero-owner-showcase-v31 img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 410px;
  min-height: 0;
  aspect-ratio: auto;
  object-fit: contain;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.hero-equipment-strip-v31 {
  border-radius: 22px;
}

.hero-equipment-strip-v31 img {
  width: 100%;
  height: auto;
  min-height: 0;
  aspect-ratio: 2.15 / 1;
  object-fit: cover;
  object-position: center;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}
