:root {
  --charcoal: #24302B;
  --green: #486A5A;
  --sage: #6F806F;
  --cream: #FAF8F4;
  --stone: #F4F0EA;
  --orange: #F28C28;
  --orange-dark: #C96F18;
  --slate: #5E6862;
  --white: #fff;
  --border: rgba(36, 48, 43, .12);
  --shadow: 0 18px 50px rgba(36, 48, 43, .14);
  --radius: 24px;
}

* { 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;
  background: var(--cream);
  color: var(--charcoal);
  line-height: 1.6;
}

img { max-width: 100%; display: block; }

a { color: inherit; }

.skip-link {
  position: absolute;
  left: -999px;
  top: 1rem;
  background: var(--charcoal);
  color: var(--cream);
  padding: .75rem 1rem;
  z-index: 99;
}

.skip-link:focus { left: 1rem; }

.topbar {
  background: var(--charcoal);
  color: rgba(250,248,244,.92);
  padding: .55rem 1rem;
  text-align: center;
  font-size: .95rem;
}

.topbar a { color: var(--cream); font-weight: 850; text-decoration: none; border-bottom: 1px solid rgba(250,248,244,.35); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(250,248,244,.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(36, 48, 43, .08);
}

.container {
  width: min(1120px, calc(100% - 2rem));
  margin-inline: auto;
}

.nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: .75rem;
  text-decoration: none;
  font-weight: 900;
  letter-spacing: -.035em;
  line-height: 1.1;
}

.brand-mark {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: var(--charcoal);
  color: var(--orange);
  font-weight: 950;
  box-shadow: 0 10px 22px rgba(36,48,43,.16);
}

.brand small {
  display: block;
  color: var(--slate);
  font-size: .84rem;
  font-weight: 800;
  letter-spacing: -.02em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-links a {
  text-decoration: none;
  font-weight: 800;
  font-size: .95rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  min-height: 48px;
  padding: .8rem 1.08rem;
  border-radius: 999px;
  background: var(--orange);
  color: var(--charcoal);
  border: 2px solid transparent;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 12px 24px rgba(242, 140, 40, .28);
}

.btn:hover { background: #ff9d3d; }

.btn.secondary {
  background: transparent;
  color: var(--charcoal);
  border-color: rgba(36, 48, 43, .18);
  box-shadow: none;
}

.btn.dark {
  background: var(--charcoal);
  color: var(--cream);
  box-shadow: 0 12px 24px rgba(36, 48, 43, .2);
}

section { padding: 4.7rem 0; }

.hero {
  min-height: 82vh;
  display: grid;
  align-items: end;
  background:
    linear-gradient(90deg, rgba(36,48,43,.88), rgba(36,48,43,.50) 45%, rgba(36,48,43,.08)),
    url("../assets/hero-clean-patio.webp") center/cover;
  color: var(--cream);
  padding: 5rem 0 4.5rem;
}

.hero .content { max-width: 780px; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  background: rgba(250,248,244,.13);
  border: 1px solid rgba(250,248,244,.22);
  border-radius: 999px;
  padding: .42rem .78rem;
  font-weight: 900;
  margin-bottom: 1rem;
}

h1, h2, h3 {
  line-height: 1.05;
  letter-spacing: -.055em;
  margin: 0 0 1rem;
}

h1 { font-size: clamp(2.55rem, 7vw, 5.4rem); max-width: 920px; }
h2 { font-size: clamp(2rem, 4.2vw, 3.4rem); max-width: 820px; }
h3 { font-size: 1.35rem; }

.lead {
  font-size: clamp(1.1rem, 2.2vw, 1.42rem);
  color: rgba(250,248,244,.88);
  max-width: 760px;
  margin: 0 0 1.3rem;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-top: 1.4rem;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
  margin-top: 1.25rem;
}

.hero-trust span {
  background: rgba(250,248,244,.14);
  border: 1px solid rgba(250,248,244,.22);
  border-radius: 999px;
  padding: .48rem .72rem;
  font-weight: 850;
}

.section-intro {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2rem;
}

.section-intro p {
  max-width: 500px;
  color: var(--slate);
  margin: 0;
  font-size: 1.06rem;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.35rem;
  box-shadow: 0 12px 34px rgba(36,48,43,.07);
}

.card p { color: var(--slate); margin-bottom: 0; }

.icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  margin-bottom: 1rem;
  background: rgba(242, 140, 40, .14);
  font-size: 1.35rem;
}

.stone { background: var(--stone); }

.feature-card {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 1rem;
  align-items: stretch;
  background: var(--white);
  border-radius: 34px;
  padding: 1rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.feature-card img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
  border-radius: 26px;
}

.feature-copy {
  padding: clamp(1rem, 4vw, 2rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
}

.list li {
  position: relative;
  padding: .35rem 0 .35rem 1.65rem;
  color: var(--slate);
}

.list li::before {
  content: "✓";
  color: var(--orange-dark);
  font-weight: 950;
  position: absolute;
  left: 0;
}

.price {
  font-size: 2.1rem;
  font-weight: 950;
  letter-spacing: -.06em;
  color: var(--green);
  margin: .35rem 0;
}

.proof-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.extra-proof { margin-top: 1rem; }

.photo-panel {
  position: relative;
  min-height: 430px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--charcoal);
}

.photo-panel img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
}

.label {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(36,48,43,.84);
  color: var(--cream);
  border-radius: 999px;
  padding: .44rem .76rem;
  font-weight: 900;
  z-index: 2;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .8rem;
}

.gallery figure {
  margin: 0;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  min-height: 230px;
  background: var(--charcoal);
  box-shadow: 0 10px 24px rgba(36,48,43,.09);
}

.gallery img {
  width: 100%;
  height: 100%;
  min-height: 230px;
  object-fit: cover;
  transition: transform .2s ease;
}

.gallery figure:hover img { transform: scale(1.03); }

.gallery figcaption {
  position: absolute;
  left: .75rem;
  right: .75rem;
  bottom: .75rem;
  background: rgba(36,48,43,.78);
  color: var(--cream);
  border-radius: 14px;
  padding: .55rem .7rem;
  font-weight: 850;
  font-size: .92rem;
}

.step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 1rem;
}

.step strong {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: var(--charcoal);
  color: var(--orange);
  font-size: 1.25rem;
}

.cta {
  background: var(--charcoal);
  color: var(--cream);
}

.cta-box {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 2rem;
  align-items: center;
}

.cta p { color: rgba(250,248,244,.82); }

.contact-card {
  background: rgba(250,248,244,.08);
  border: 1px solid rgba(250,248,244,.16);
  border-radius: 28px;
  padding: 1.25rem;
}

.contact-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 1px solid rgba(250,248,244,.14);
  padding: .9rem 0;
}

.contact-row:last-child { border-bottom: 0; }

footer {
  background: #18201d;
  color: rgba(250,248,244,.75);
  padding: 2rem 0;
  font-size: .95rem;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.service-area {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.warning {
  background: rgba(242, 140, 40, .12);
  border: 1px solid rgba(242, 140, 40, .24);
  border-radius: 20px;
  padding: 1rem;
  color: var(--charcoal);
}

@media (max-width: 940px) {
  .nav-links { display: none; }
  .grid-3, .grid-2, .feature-card, .proof-pair, .cta-box { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .section-intro { display: block; }
  .hero { min-height: 72vh; background-position: center; }
}

@media (max-width: 560px) {
  .container { width: min(100% - 1rem, 1120px); }
  .topbar { font-size: .86rem; }
  section { padding: 3.2rem 0; }
  .gallery { grid-template-columns: 1fr; }
  .photo-panel, .photo-panel img { min-height: 310px; }
  .feature-card img { min-height: 310px; }
  .brand small { display: none; }
}

/* North Leeds contact-first update */
.phone-topbar {
  font-size: 1rem;
}
.phone-topbar a {
  font-size: 1.08em;
}
.phone-btn {
  background: var(--orange);
  color: var(--charcoal);
}
.hero-phone,
.large-phone {
  font-size: 1.05rem;
  padding-inline: 1.25rem;
}
.service-highlight,
.quote-card {
  border-color: rgba(242, 140, 40, .34);
  box-shadow: 0 14px 36px rgba(242, 140, 40, .10);
}
.quote-band {
  background: var(--charcoal);
  color: var(--cream);
  padding: 3rem 0;
}
.quote-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.5rem;
  align-items: center;
}
.quote-panel p {
  color: rgba(250,248,244,.84);
  max-width: 760px;
  margin: 0;
}
.quote-panel h2 {
  color: var(--cream);
}
.faq {
  background: var(--cream);
}
.primary-contact-card .contact-row:first-child span {
  font-size: 1.35rem;
  font-weight: 950;
  color: var(--orange);
}
@media (max-width: 940px) {
  .quote-panel { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .phone-topbar { font-size: .92rem; }
  .hero-phone,
  .large-phone { width: 100%; }
  .actions .btn { width: 100%; }
}


/* Pressure washing SEO + reviews update */
.area-grid .card h3 { color: var(--charcoal); }
.reviews-preview { background: var(--cream); }
.review-callout { display: grid; grid-template-columns: 1fr auto; gap: 1.5rem; align-items: center; background: var(--white); border: 1px solid var(--border); border-radius: 28px; padding: clamp(1.2rem, 4vw, 2rem); box-shadow: 0 12px 34px rgba(36,48,43,.07); }
.review-callout p { color: var(--slate); margin-bottom: 0; }
.hero-small { min-height: 58vh; }
.review-placeholder small { display: block; margin-top: 1rem; color: var(--slate); font-weight: 800; }
.stars { color: var(--orange-dark); font-size: 1.2rem; letter-spacing: .08em; margin-bottom: .7rem; }
footer a { color: inherit; }
@media (max-width: 940px) { .review-callout { grid-template-columns: 1fr; } }
