:root {
  --ink: #17201d;
  --muted: #5a6861;
  --paper: #f7f7f2;
  --surface: #ffffff;
  --line: #dfe5de;
  --forest: #174c3a;
  --moss: #678b47;
  --safety: #d9a423;
  --roof: #9b3f2f;
  --electric: #315f89;
  --urgent: #b84a1d;
  --steel: #32433d;
  --shadow: 0 20px 50px rgba(23, 32, 29, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(247, 247, 242, 0.94);
  border-bottom: 1px solid rgba(23, 32, 29, 0.08);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: min(360px, 50vw);
  min-width: 0;
  text-decoration: none;
}

.brand-logo {
  width: 100%;
  height: auto;
  max-height: 86px;
  object-fit: contain;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  flex: 0 0 auto;
  color: #fff;
  background: var(--forest);
  border-radius: 8px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 1rem;
}

.brand small {
  color: var(--muted);
  font-size: 0.78rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--steel);
  font-size: 0.95rem;
}

.site-nav a {
  text-decoration: none;
}

.site-nav a:hover {
  color: var(--forest);
}

.nav-toggle {
  display: none;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--ink);
  padding: 9px 12px;
  border-radius: 8px;
  font: inherit;
}

.nav-toggle span {
  display: block;
  width: 15px;
  height: 2px;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 690px;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: var(--steel);
}

.hero img,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero img {
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  background: linear-gradient(90deg, rgba(16, 28, 24, 0.9) 0%, rgba(16, 28, 24, 0.69) 43%, rgba(16, 28, 24, 0.18) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(800px, calc(100% - 36px));
  margin-left: clamp(18px, 7vw, 96px);
  padding: 78px 0 104px;
  color: #fff;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--safety);
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
  font-size: 0.78rem;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(2.35rem, 4.8vw, 4.65rem);
  line-height: 1.02;
  letter-spacing: 0;
}

h2 {
  margin: 0 0 18px;
  font-size: clamp(2rem, 3.35vw, 3.05rem);
  line-height: 1.1;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 10px;
  font-size: 1.14rem;
  line-height: 1.25;
}

.hero-lead {
  max-width: 680px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.14rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 12px 20px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.button.primary {
  color: #111711;
  background: var(--safety);
}

.button.primary:hover {
  background: #e6b947;
}

.button.secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.1);
}

.button.secondary.dark {
  color: var(--forest);
  border-color: var(--line);
  background: var(--surface);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
}

.trust-strip div {
  padding: 24px clamp(18px, 4vw, 56px);
  background: var(--surface);
}

.trust-strip strong,
.trust-strip span {
  display: block;
}

.trust-strip span {
  color: var(--muted);
  font-size: 0.95rem;
}

.section {
  padding: clamp(64px, 9vw, 118px) clamp(18px, 5vw, 76px);
}

.intro {
  display: grid;
  grid-template-columns: minmax(240px, 0.72fr) minmax(0, 1.52fr);
  gap: clamp(34px, 6vw, 78px);
  align-items: start;
}

.section-copy,
.detail-copy {
  max-width: 650px;
}

.section-copy p:not(.eyebrow),
.detail-copy p,
.asbestos-copy p,
.split-section p,
.contact-copy p {
  color: var(--muted);
  margin: 0;
  font-size: 1.04rem;
}

.pillar-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.pillar-card {
  min-height: 320px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(23, 32, 29, 0.05);
}

.pillar-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.pillar-card > div {
  display: flex;
  min-height: 250px;
  flex: 1;
  flex-direction: column;
  padding: 26px;
}

.pillar-card p {
  margin: 0;
  color: var(--muted);
}

.pillar-card a {
  width: fit-content;
  margin-top: auto;
  padding-top: 24px;
  color: var(--forest);
  font-weight: 800;
  text-decoration-thickness: 3px;
  text-underline-offset: 5px;
}

.icon {
  display: inline-flex;
  margin-bottom: 22px;
  color: var(--moss);
  font-weight: 800;
}

.pillar-card.roof .icon {
  color: var(--roof);
}

.pillar-card.electric .icon {
  color: var(--electric);
}

.pillar-card.emergency {
  border-color: rgba(184, 74, 29, 0.35);
  box-shadow: 0 16px 38px rgba(184, 74, 29, 0.13);
}

.pillar-card.emergency > div {
  background: linear-gradient(180deg, #fff 0%, #fff7f1 100%);
}

.pillar-card.emergency .icon,
.emergency-tags span {
  color: var(--urgent);
}

.service-detail {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1fr);
  gap: clamp(32px, 6vw, 78px);
  align-items: center;
  background: #eef1e9;
}

.electric-detail {
  background: var(--paper);
}

.page-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(420px, 1fr);
  gap: clamp(28px, 5vw, 74px);
  align-items: center;
  padding: clamp(58px, 8vw, 96px) clamp(18px, 5vw, 76px);
  background: #eef1e9;
}

.page-hero-copy {
  max-width: 720px;
}

.page-hero-copy h1 {
  color: var(--ink);
  font-size: clamp(2.25rem, 4.5vw, 4.2rem);
}

.page-hero-copy p:not(.eyebrow) {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 1.1rem;
}

.page-hero img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.emergency-hero {
  background: #fff3ea;
}

.detail-list,
.audience-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.detail-list span,
.audience-list span {
  padding: 12px 15px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--steel);
  font-weight: 700;
}

.asbestos-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.74fr);
  gap: clamp(36px, 6vw, 84px);
  align-items: center;
  color: #fff;
  background: var(--forest);
}

.asbestos-copy p {
  color: rgba(255, 255, 255, 0.78);
  max-width: 760px;
}

.text-link {
  display: inline-flex;
  margin-top: 28px;
  color: #fff;
  font-weight: 800;
  text-decoration-color: var(--safety);
  text-decoration-thickness: 3px;
  text-underline-offset: 6px;
}

.asbestos-points {
  display: grid;
  gap: 1px;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  overflow: hidden;
}

.asbestos-points div {
  padding: 24px;
  background: rgba(255, 255, 255, 0.08);
}

.asbestos-points strong,
.asbestos-points span {
  display: block;
}

.asbestos-points span {
  color: rgba(255, 255, 255, 0.76);
  margin-top: 5px;
}

.process {
  background: #eef1e9;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin: 38px 0 0;
  padding: 0;
  list-style: none;
}

.steps li {
  position: relative;
  min-height: 250px;
  padding: 26px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.steps span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 26px;
  color: var(--forest);
  background: #e7efe3;
  border-radius: 50%;
  font-weight: 800;
}

.steps p {
  margin: 0;
  color: var(--muted);
}

.split-section,
.landing-map {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr);
  gap: clamp(32px, 6vw, 80px);
  align-items: center;
}

.url-list {
  display: grid;
  gap: 12px;
}

.url-list a,
.url-list code {
  display: block;
  padding: 16px;
  color: var(--forest);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 800;
  text-decoration: none;
}

.url-list a:hover {
  border-color: var(--forest);
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(320px, 1fr);
  gap: clamp(34px, 7vw, 90px);
  padding: clamp(64px, 9vw, 118px) clamp(18px, 5vw, 76px);
  background: #18231f;
  color: #fff;
}

.contact-copy p {
  color: rgba(255, 255, 255, 0.74);
}

.contact-lines {
  display: grid;
  gap: 10px;
  margin-top: 28px;
  font-size: 1.2rem;
  font-weight: 800;
}

.contact-lines a {
  width: fit-content;
  text-decoration-color: var(--safety);
  text-underline-offset: 5px;
}

.contact-lines .whatsapp-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  margin-top: 6px;
  padding: 10px 14px;
  color: #102018;
  background: #d9f2d5;
  border: 1px solid rgba(23, 76, 58, 0.2);
  border-radius: 8px;
  font-size: 1rem;
  text-decoration: none;
}

.emergency-phone {
  display: grid;
  gap: 6px;
  width: fit-content;
  margin-top: 30px;
  padding: 18px 20px;
  color: #111711;
  background: var(--safety);
  border-radius: 8px;
  box-shadow: 0 18px 38px rgba(217, 164, 35, 0.24);
}

.emergency-phone span {
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.emergency-phone a {
  font-size: clamp(1.7rem, 4vw, 2.45rem);
  font-weight: 900;
  text-decoration: none;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 24px;
  background: var(--surface);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--steel);
  font-size: 0.93rem;
  font-weight: 800;
}

.contact-form .full {
  grid-column: 1 / -1;
}

.hp-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid #cbd5cd;
  border-radius: 8px;
  padding: 10px 12px;
  color: var(--ink);
  background: #fbfcf8;
  font: inherit;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(217, 164, 35, 0.32);
  border-color: var(--safety);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(18px, 5vw, 76px);
  color: #d7ded8;
  background: #101713;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: #fff;
  font-weight: 800;
}

.callout-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  color: #fff;
  background: var(--forest);
}

.callout-band h2 {
  max-width: 900px;
  margin-bottom: 0;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
}

.emergency-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr);
  gap: clamp(32px, 6vw, 80px);
  align-items: center;
  background: #fff8f0;
}

.why-section {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1fr);
  gap: clamp(32px, 6vw, 80px);
  align-items: start;
  background: var(--surface);
}

.why-grid {
  display: grid;
  gap: 14px;
}

.why-grid article {
  padding: 22px;
  background: #f5f7f1;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.why-grid strong,
.why-grid span {
  display: block;
}

.why-grid span {
  margin-top: 6px;
  color: var(--muted);
}

.proof-section {
  background: #eef1e9;
}

.proof-section .section-copy {
  margin-bottom: 34px;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.proof-grid article {
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(23, 32, 29, 0.05);
}

.proof-grid img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.proof-grid div {
  padding: 20px;
}

.proof-grid strong,
.proof-grid span {
  display: block;
}

.proof-grid span {
  margin-top: 6px;
  color: var(--muted);
}

@media (max-width: 1220px) {
  .pillar-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pillar-card {
    min-height: auto;
  }
}

@media (max-width: 920px) {
  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    right: 18px;
    display: none;
    min-width: min(280px, calc(100vw - 36px));
    padding: 12px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: grid;
  }

  .hero {
    min-height: 650px;
  }

  .hero-overlay {
    background: linear-gradient(90deg, rgba(16, 28, 24, 0.92) 0%, rgba(16, 28, 24, 0.78) 66%, rgba(16, 28, 24, 0.45) 100%);
  }

  .trust-strip,
  .intro,
  .page-hero,
  .service-detail,
  .asbestos-band,
  .split-section,
  .landing-map,
  .emergency-section,
  .why-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .proof-grid {
    grid-template-columns: 1fr;
  }

  .callout-band {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 620px) {
  .site-header {
    padding: 12px 14px;
  }

  .brand small {
    display: none;
  }

  .brand {
    width: min(240px, 58vw);
  }

  .hero {
    min-height: 720px;
  }

  .hero img {
    object-position: 62% center;
  }

  .hero-content {
    width: calc(100% - 28px);
    margin: 0 14px;
    padding: 58px 0 70px;
  }

  h1 {
    font-size: clamp(2rem, 13vw, 3.05rem);
  }

  .hero-actions,
  .button,
  .emergency-phone,
  .contact-form {
    width: 100%;
  }

  .button {
    padding-inline: 14px;
  }

  .trust-strip,
  .pillar-grid,
  .steps,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .page-hero {
    padding-top: 44px;
  }

  .page-hero img {
    aspect-ratio: 4 / 3;
  }

  .steps li {
    min-height: auto;
  }

  .contact-form label,
  .contact-form .full {
    grid-column: 1;
  }

  .site-footer {
    display: grid;
  }
}
