:root {
  --asphalt: #111418;
  --asphalt-2: #20252b;
  --road: #f6c344;
  --road-dark: #c18b08;
  --steel: #59636e;
  --concrete: #f4f2ec;
  --surface: #ffffff;
  --line: #ded9cf;
  --muted: #5f6872;
  --brand-green: #a3cd3a;
  --brand-green-dark: #7ea826;
  --green: #496f55;
  --green-dark: #284131;
  --whatsapp: #25d366;
  --whatsapp-dark: #128c7e;
  --shadow: 0 20px 60px rgba(17, 20, 24, 0.14);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", Arial, sans-serif;
  color: var(--asphalt);
  background: var(--concrete);
  line-height: 1.6;
  letter-spacing: 0;
}

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

a {
  color: inherit;
}

.container {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(17, 20, 24, 0.08);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 22px;
  min-height: 78px;
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  flex: 0 0 auto;
}

.brand-mark {
  display: block;
  width: 178px;
}

.brand-mark img,
.footer-logo img {
  width: 100%;
  height: auto;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-left: auto;
  font-size: 0.9rem;
  font-weight: 800;
}

.site-nav a {
  text-decoration: none;
  color: var(--asphalt-2);
}

.site-nav .nav-cta,
.header-call {
  padding: 0.7rem 1rem;
  border-radius: var(--radius);
  background: var(--asphalt);
  color: white;
  text-decoration: none;
}

.header-call {
  background: var(--road);
  color: var(--asphalt);
  font-weight: 900;
  white-space: nowrap;
}

.mobile-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: white;
  border-radius: var(--radius);
  padding: 10px;
}

.mobile-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--asphalt);
}

.hero {
  position: relative;
  min-height: calc(100vh - 78px);
  display: grid;
  align-items: end;
  color: white;
  overflow: hidden;
}

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

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(17,20,24,0.86) 0%, rgba(17,20,24,0.62) 43%, rgba(17,20,24,0.12) 100%),
    linear-gradient(180deg, rgba(17,20,24,0.1) 0%, rgba(17,20,24,0.72) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 42px;
  align-items: end;
  padding: 72px 0 44px;
}

.hero-copy {
  max-width: 760px;
}

.hero h1 {
  margin: 0 0 18px;
  font-family: "Archivo", Arial, sans-serif;
  font-size: clamp(3rem, 6vw, 6.3rem);
  line-height: 0.9;
  letter-spacing: 0;
}

.hero p {
  margin: 0;
  max-width: 680px;
  font-size: clamp(1.05rem, 1.5vw, 1.28rem);
  color: rgba(255, 255, 255, 0.88);
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.85rem 1.15rem;
  border-radius: var(--radius);
  border: 0;
  text-decoration: none;
  font-weight: 900;
  font-size: 0.95rem;
  cursor: pointer;
}

.btn-primary {
  background: var(--road);
  color: var(--asphalt);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.12);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.legal-wrap .btn-secondary {
  background: var(--asphalt);
  color: white;
}

.hero-proof {
  display: grid;
  gap: 10px;
}

.hero-proof div {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  padding: 16px;
  backdrop-filter: blur(10px);
}

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

.hero-proof strong {
  font-family: "Archivo", Arial, sans-serif;
  font-size: 1.1rem;
}

.hero-proof span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
}

.quick-strip {
  background: var(--road);
  color: var(--asphalt);
}

.quick-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
}

.quick-grid span {
  padding: 18px 12px;
  text-align: center;
  font-weight: 900;
  border-left: 1px solid rgba(17, 20, 24, 0.16);
}

.section {
  padding: 84px 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 30px;
}

.section-kicker {
  margin: 0 0 8px;
  text-transform: uppercase;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  color: var(--road-dark);
}

h2 {
  margin: 0 0 12px;
  font-family: "Archivo", Arial, sans-serif;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 8px;
  font-family: "Archivo", Arial, sans-serif;
  line-height: 1.05;
}

.section-heading p,
.split-layout p,
.area-layout p {
  color: var(--muted);
  font-size: 1.02rem;
}

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

.service-card,
.process-step {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: 0 14px 35px rgba(17, 20, 24, 0.07);
}

.service-icon,
.process-step span {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  background: var(--asphalt);
  color: var(--road);
  font-weight: 900;
  margin-bottom: 24px;
}

.service-card p,
.process-step p {
  margin: 0;
  color: var(--muted);
}

.work-types-section {
  background: #e9e5da;
}

.work-type-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.work-type {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(17, 20, 24, 0.1);
  box-shadow: var(--shadow);
}

.work-type--wide {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  min-height: 360px;
}

.work-type-media,
.work-type-media picture,
.work-type-media img {
  width: 100%;
  height: 100%;
}

.work-type-media img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.work-type--wide .work-type-media img {
  aspect-ratio: auto;
}

.work-type-body {
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 24px;
}

.work-type-body span {
  color: var(--road-dark);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.work-type-body p {
  margin: 0;
  color: var(--muted);
}

.work-type-body a {
  margin-top: 8px;
  color: var(--asphalt);
  font-weight: 900;
  text-decoration-thickness: 3px;
  text-decoration-color: var(--road);
}

.btn-outline {
  background: transparent;
  color: var(--asphalt);
  border: 2px solid var(--asphalt);
}

.btn-outline:hover {
  background: var(--asphalt);
  color: white;
}

.services-overview {
  padding-bottom: 36px;
}

.service-jump-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.service-jump {
  display: grid;
  gap: 6px;
  padding: 22px 22px 20px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 35px rgba(17, 20, 24, 0.06);
  color: var(--asphalt);
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.service-jump:hover {
  transform: translateY(-2px);
  border-color: var(--road);
  box-shadow: 0 18px 40px rgba(17, 20, 24, 0.12);
}

.service-jump__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: var(--radius);
  background: var(--asphalt);
  color: var(--road);
  font-family: "Archivo", Arial, sans-serif;
  font-weight: 900;
  margin-bottom: 4px;
}

.service-jump__title {
  font-family: "Archivo", Arial, sans-serif;
  font-weight: 800;
  font-size: 1.05rem;
  line-height: 1.18;
}

.service-jump__meta {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: 0.02em;
}

.service-feature {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 42px;
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-top: 32px;
}

.service-feature--reverse {
  grid-template-columns: 1fr 1.1fr;
}

.service-feature--reverse .service-feature__media {
  order: 2;
}

.service-feature__media {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 360px;
}

.service-feature__media,
.service-feature__media picture,
.service-feature__media img {
  width: 100%;
  height: 100%;
}

.service-feature__media img {
  object-fit: cover;
  display: block;
}

.service-feature__badge {
  position: absolute;
  top: 18px;
  left: 18px;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--road);
  color: var(--asphalt);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  box-shadow: 0 6px 16px rgba(17, 20, 24, 0.2);
}

.service-feature__body {
  padding: 38px 40px 38px 0;
}

.service-feature--reverse .service-feature__body {
  padding: 38px 0 38px 40px;
}

.service-feature__body h3 {
  font-size: clamp(1.6rem, 2.4vw, 2.25rem);
  margin: 4px 0 12px;
}

.service-feature__lede {
  margin: 0 0 18px;
  color: var(--asphalt-2);
  font-size: 1.04rem;
}

.service-feature__points {
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.service-feature__points li {
  position: relative;
  padding-left: 26px;
  font-size: 0.97rem;
  color: var(--asphalt-2);
  line-height: 1.55;
}

.service-feature__points li::before {
  content: "";
  position: absolute;
  top: 9px;
  left: 0;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--brand-green);
  box-shadow: inset 0 0 0 3px var(--asphalt);
}

.service-feature__points strong {
  color: var(--asphalt);
}

.service-feature__match {
  margin: 0 0 24px;
  padding: 18px 18px 16px;
  background: var(--concrete);
  border: 1px dashed var(--line);
  border-radius: var(--radius);
}

.service-feature__match > span {
  display: block;
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--road-dark);
  margin-bottom: 10px;
}

.service-feature__match ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.service-feature__match li {
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--line);
  color: var(--asphalt-2);
  font-size: 0.85rem;
  font-weight: 700;
}

.service-feature__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

@media (max-width: 920px) {
  .service-jump-grid {
    grid-template-columns: 1fr 1fr;
  }

  .service-feature,
  .service-feature--reverse {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .service-feature--reverse .service-feature__media {
    order: 0;
  }

  .service-feature__media {
    min-height: 240px;
  }

  .service-feature__media img {
    aspect-ratio: 4 / 3;
  }

  .service-feature__body,
  .service-feature--reverse .service-feature__body {
    padding: 28px 24px 32px;
  }
}

@media (max-width: 640px) {
  .service-jump-grid {
    grid-template-columns: 1fr;
  }
}

.gallery-grid figure {
  margin: 0;
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(17, 20, 24, 0.1);
  box-shadow: var(--shadow);
}

.gallery-grid figcaption {
  padding: 12px 14px;
  font-size: 0.86rem;
  font-weight: 900;
}

.text-link {
  display: inline-flex;
  color: var(--asphalt);
  font-weight: 900;
  text-decoration-thickness: 3px;
  text-decoration-color: var(--road);
}

.proof-section {
  background: var(--asphalt);
  color: white;
}

.proof-section .section-heading p {
  color: rgba(255, 255, 255, 0.72);
}

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

.gallery-grid img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.gallery-grid figure {
  color: var(--asphalt);
}

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

.area-section {
  background:
    linear-gradient(135deg, rgba(246,195,68,0.18), transparent 42%),
    var(--surface);
}

.area-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 38px;
  align-items: start;
}

.area-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.area-list span {
  padding: 0.58rem 0.78rem;
  border-radius: var(--radius);
  background: var(--concrete);
  border: 1px solid var(--line);
  font-weight: 800;
  color: var(--asphalt-2);
}

.quote-section {
  padding: 84px 0;
  background: var(--green-dark);
  color: white;
}

.quote-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 42px;
  align-items: start;
}

.quote-copy p {
  color: rgba(255, 255, 255, 0.78);
}

.contact-panel {
  display: grid;
  gap: 10px;
  margin: 28px 0;
}

.contact-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px;
  border-radius: var(--radius);
  color: white;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.1);
}

.contact-icon {
  min-width: 46px;
  padding: 5px 8px;
  text-align: center;
  border-radius: 6px;
  background: var(--brand-green);
  color: var(--asphalt);
  font-size: 0.72rem;
  font-weight: 900;
}

.mini-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.mini-proof span {
  padding: 7px 10px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
  font-size: 0.84rem;
  font-weight: 800;
}

.quote-form {
  background: white;
  color: var(--asphalt);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow);
}

.quote-form label {
  display: grid;
  gap: 7px;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--steel);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.78rem 0.85rem;
  font: inherit;
  color: var(--asphalt);
  background: #fbfaf6;
}

.quote-form textarea {
  resize: vertical;
}

.quote-form > * + * {
  margin-top: 14px;
}

.form-submit {
  width: 100%;
  min-height: 52px;
  border: 0;
  border-radius: var(--radius);
  background: var(--road);
  color: var(--asphalt);
  font-weight: 900;
  font-size: 1rem;
  cursor: pointer;
}

.form-submit:disabled {
  opacity: 0.65;
  cursor: wait;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
}

.honeypot {
  position: absolute;
  left: -10000px;
}

.site-footer {
  background: var(--asphalt);
  color: white;
  padding: 54px 0 92px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 28px;
}

.footer-logo {
  width: 170px;
  padding: 10px;
  background: white;
  border-radius: var(--radius);
  margin-bottom: 16px;
}

.site-footer p {
  color: rgba(255, 255, 255, 0.72);
}

.site-footer a {
  color: white;
}

.footer-bottom {
  width: min(1160px, calc(100% - 32px));
  margin: 34px auto 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  display: flex;
  gap: 18px;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.86rem;
}

.mobile-cta-bar {
  display: none;
}

.legal-page {
  padding: 92px 0;
  background: var(--concrete);
}

.legal-wrap {
  max-width: 780px;
  background: white;
  border-radius: var(--radius);
  padding: 40px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.legal-wrap h1 {
  margin: 0 0 18px;
  font-family: "Archivo", Arial, sans-serif;
  font-size: clamp(2.2rem, 5vw, 4.5rem);
  line-height: 0.95;
}

.thank-you-actions {
  display: flex;
  gap: 12px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.thank-you-page {
  min-height: 58vh;
}

@media (max-width: 920px) {
  .header-call {
    display: none;
  }

  .mobile-toggle {
    display: block;
    margin-left: auto;
  }

  .site-nav {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 84px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    background: white;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  .site-nav.active {
    display: flex;
  }

  .site-nav a {
    padding: 12px;
  }

  .hero-content,
  .area-layout,
  .quote-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 760px;
  }

  .hero-content {
    padding-top: 180px;
  }

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

  .quick-grid,
  .service-grid,
  .gallery-grid,
  .process-grid,
  .work-type-grid {
    grid-template-columns: 1fr 1fr;
  }

  .work-type--wide {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .work-type--wide .work-type-media img {
    aspect-ratio: 4 / 3;
  }

  .mobile-cta-bar {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 60;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 8px;
    overflow: visible;
  }

  .mobile-cta-bar a {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 12px 8px;
    text-align: center;
    text-decoration: none;
    font-weight: 900;
    font-size: 0.92rem;
    border-radius: 12px;
    color: white;
    box-shadow: 0 10px 24px rgba(17, 20, 24, 0.28);
  }

  .mobile-cta-bar a svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
  }

  .mobile-cta-bar .call {
    background: var(--brand-green);
    color: var(--asphalt);
  }

  .mobile-cta-bar .whatsapp {
    background: var(--whatsapp);
    color: white;
  }

  .mobile-cta-bar .quote {
    background: var(--road);
    color: var(--asphalt);
  }
}

@media (max-width: 640px) {
  .brand-mark {
    width: 142px;
  }

  .hero {
    min-height: 720px;
  }

  .hero h1 {
    font-size: clamp(2.1rem, 9.5vw, 3.2rem);
    line-height: 1.02;
  }

  .quick-grid,
  .service-grid,
  .gallery-grid,
  .process-grid,
  .work-type-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  .section,
  .quote-section {
    padding: 58px 0;
  }

  .quote-form,
  .legal-wrap {
    padding: 20px;
  }

  .footer-bottom {
    display: block;
  }
}

/* === Brand hero (opus-brand pattern) === */
.brand-hero {
  position: relative;
  isolation: isolate;
  min-height: calc(100vh - 78px);
  color: white;
  display: grid;
  align-items: center;
  overflow: hidden;
}

.brand-hero__media,
.brand-hero__image,
.brand-hero__image picture,
.brand-hero__image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.brand-hero__image {
  opacity: 0;
  transition: opacity 260ms ease;
}

.brand-hero__image.is-active {
  opacity: 1;
}

.brand-hero__image img {
  object-fit: cover;
  object-position: center 25%;
}

.brand-hero__scrim {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(95deg, rgba(17, 20, 24, 0.88) 0%, rgba(17, 20, 24, 0.7) 32%, rgba(17, 20, 24, 0.18) 62%, rgba(17, 20, 24, 0) 100%),
    linear-gradient(180deg, rgba(17, 20, 24, 0.05) 0%, rgba(17, 20, 24, 0.45) 100%);
}

.brand-hero__content {
  position: relative;
  z-index: 1;
  max-width: 760px;
  padding: 100px 0 80px;
}

.brand-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 16px;
  border-radius: 999px;
  background: rgba(163, 205, 58, 0.16);
  border: 1px solid rgba(163, 205, 58, 0.5);
  color: var(--brand-green);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.brand-hero__eyebrow .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand-green);
  box-shadow: 0 0 0 4px rgba(163, 205, 58, 0.28);
}

.brand-hero__content h1 {
  margin: 0 0 18px;
  font-family: "Archivo", Arial, sans-serif;
  font-size: clamp(2.4rem, 5.2vw, 4.6rem);
  line-height: 0.98;
  letter-spacing: -0.005em;
  color: white;
}

.brand-hero__content h1 em {
  display: inline;
  font-style: normal;
  color: var(--brand-green);
  position: relative;
}

.brand-hero__sub {
  margin: 0 0 28px;
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.92);
  max-width: 640px;
}

.brand-hero__sub b {
  color: white;
  font-weight: 800;
}

.brand-hero__badges {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin: 0 0 26px;
}

.brand-badge {
  padding: 14px 14px 13px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 10px;
  backdrop-filter: blur(6px);
  display: grid;
  gap: 2px;
}

.brand-badge strong {
  font-family: "Archivo", Arial, sans-serif;
  font-size: 1rem;
  color: white;
  font-weight: 800;
  line-height: 1.15;
}

.brand-badge span {
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.82rem;
  line-height: 1.3;
}

.brand-hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 22px;
}

.brand-hero__ctas .btn {
  padding: 0.95rem 1.3rem;
  min-height: 54px;
  font-size: 1rem;
}

.btn-ghost-light {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(6px);
}

.btn-ghost-light:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.6);
}

.brand-hero__seal {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.84rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.78);
}

.brand-hero__seal svg {
  width: 18px;
  height: 18px;
  color: var(--road);
  flex-shrink: 0;
}

/* === Trust ribbon === */
.trust-ribbon {
  background: var(--asphalt);
  color: white;
  padding: 16px 0;
  border-bottom: 3px solid var(--road);
}

.trust-ribbon__row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  align-items: center;
  justify-content: center;
  font-size: 0.92rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.82);
}

.trust-ribbon__row b {
  color: var(--brand-green);
  font-weight: 800;
}

.dot-sep {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  flex-shrink: 0;
}

@media (max-width: 920px) {
  .brand-hero__badges {
    grid-template-columns: 1fr 1fr;
  }

  .brand-hero__content {
    padding: 80px 0 60px;
    max-width: 100%;
  }

  .brand-hero__media img {
    object-position: 70% center;
  }

  .brand-hero__scrim {
    background:
      linear-gradient(180deg, rgba(17, 20, 24, 0.72) 0%, rgba(17, 20, 24, 0.86) 100%);
  }

  .trust-ribbon__row {
    justify-content: flex-start;
  }

  .dot-sep {
    display: none;
  }
}

@media (max-width: 640px) {
  .brand-hero {
    min-height: 0;
  }

  .brand-hero__content {
    padding: 64px 0 40px;
  }

  .brand-hero__content h1 {
    font-size: clamp(2rem, 9vw, 2.6rem);
    line-height: 1.05;
  }

  .brand-hero__sub {
    font-size: 0.98rem;
    margin-bottom: 22px;
  }

  .brand-hero__badges {
    display: none;
  }

  .brand-hero__seal {
    display: none;
  }

  .brand-hero__ctas .btn {
    width: 100%;
  }

  .brand-hero__scrim {
    background:
      linear-gradient(180deg, rgba(17, 20, 24, 0.6) 0%, rgba(17, 20, 24, 0.9) 100%);
  }
}

/* === Old hero refresh (left as fallback if used elsewhere) === */
.hero-eyebrow {
  display: inline-block;
  margin: 0 0 14px;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(246, 195, 68, 0.18);
  border: 1px solid rgba(246, 195, 68, 0.4);
  color: var(--road);
  font-size: 0.74rem !important;
  font-weight: 900 !important;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  max-width: max-content;
}

.hero-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
  margin-top: 22px;
}

.hero-trust-row span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.93rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.92);
}

.hero-trust-row span > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--road);
  color: var(--asphalt);
  font-size: 0.78rem;
  font-weight: 900;
}

/* === Why Mothetho band === */
.why-section {
  background: var(--surface);
  padding: 88px 0 72px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.why-card {
  position: relative;
  padding: 28px 24px 26px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 14px 35px rgba(17, 20, 24, 0.06);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.why-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 48px rgba(17, 20, 24, 0.12);
}

.why-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: var(--asphalt);
  color: var(--road);
  margin-bottom: 18px;
}

.why-card__icon svg {
  width: 26px;
  height: 26px;
}

.why-card h3 {
  font-size: 1.12rem;
  margin: 0 0 8px;
}

.why-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.55;
}

/* === Owner / company trust section === */
.owner-section {
  background: linear-gradient(180deg, var(--concrete) 0%, var(--surface) 100%);
}

.owner-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 56px;
  align-items: center;
}

.owner-media {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.owner-media,
.owner-media picture,
.owner-media img {
  width: 100%;
  height: 100%;
}

.owner-media img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

.owner-media__tag {
  position: absolute;
  top: 18px;
  left: 18px;
  padding: 9px 14px;
  background: var(--asphalt);
  color: var(--brand-green);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 999px;
  box-shadow: 0 8px 20px rgba(17, 20, 24, 0.22);
}

.owner-body h2 {
  margin-top: 8px;
}

.owner-lede {
  font-size: 1.05rem;
  color: var(--asphalt-2);
  margin: 0 0 22px;
}

.check-list {
  list-style: none;
  margin: 0 0 26px;
  padding: 0;
  display: grid;
  gap: 14px;
}

.check-list li {
  position: relative;
  padding-left: 38px;
  color: var(--asphalt-2);
  line-height: 1.55;
}

.check-list li::before {
  content: "";
  position: absolute;
  top: 4px;
  left: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--asphalt);
}

.check-list li::after {
  content: "";
  position: absolute;
  top: 10px;
  left: 7px;
  width: 10px;
  height: 5px;
  border-left: 2px solid var(--brand-green);
  border-bottom: 2px solid var(--brand-green);
  transform: rotate(-45deg);
}

.check-list strong {
  color: var(--asphalt);
}

.owner-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* === Proof / gallery captions === */
.gallery-grid figcaption {
  display: grid;
  gap: 6px;
}

.gallery-tag {
  display: inline-block;
  width: max-content;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--road);
  color: var(--asphalt);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* === FAQ section === */
.faq-section {
  background: var(--surface);
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 56px;
  align-items: start;
}

.faq-intro h2 {
  margin-top: 8px;
}

.faq-intro p {
  color: var(--muted);
  font-size: 1.02rem;
}

.faq-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-list details {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(17, 20, 24, 0.04);
  overflow: hidden;
}

.faq-list details[open] {
  border-color: var(--asphalt);
  box-shadow: 0 14px 32px rgba(17, 20, 24, 0.1);
}

.faq-list summary {
  cursor: pointer;
  list-style: none;
  padding: 18px 22px 18px 20px;
  font-family: "Archivo", Arial, sans-serif;
  font-weight: 800;
  font-size: 1.02rem;
  color: var(--asphalt);
  position: relative;
  padding-right: 50px;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--road);
  color: var(--asphalt);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1.15rem;
  line-height: 1;
}

.faq-list details[open] summary::after {
  content: "\2212";
  background: var(--asphalt);
  color: var(--road);
}

.faq-list details p {
  margin: 0;
  padding: 0 22px 20px;
  color: var(--asphalt-2);
  font-size: 0.96rem;
  line-height: 1.6;
}

/* === Area / service map === */
.area-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: center;
}

.area-visual {
  display: grid;
  gap: 18px;
}

.area-map {
  position: relative;
  background:
    radial-gradient(circle at 60% 50%, rgba(246, 195, 68, 0.18), transparent 60%),
    var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 18px;
  box-shadow: 0 18px 40px rgba(17, 20, 24, 0.06);
}

.area-map svg {
  width: 100%;
  height: auto;
  display: block;
  max-height: 280px;
}

/* === Final CTA banner === */
.final-cta-section {
  background: var(--road);
  color: var(--asphalt);
  padding: 60px 0;
}

.final-cta {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: center;
}

.final-cta .section-kicker {
  color: var(--asphalt);
  opacity: 0.7;
}

.final-cta h2 {
  margin: 0 0 10px;
  font-size: clamp(1.9rem, 3.4vw, 3rem);
}

.final-cta p {
  margin: 0;
  color: rgba(17, 20, 24, 0.78);
  font-size: 1rem;
}

.final-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.btn-dark {
  background: var(--asphalt);
  color: white;
}

.btn-outline-dark {
  background: transparent;
  color: var(--asphalt);
  border: 2px solid var(--asphalt);
}

.btn-outline-dark:hover {
  background: var(--asphalt);
  color: white;
}

/* === Desktop sticky quote CTA === */
.desktop-sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 50;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  border-radius: 999px;
  background: var(--asphalt);
  color: var(--road);
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 16px 38px rgba(17, 20, 24, 0.28);
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.desktop-sticky-cta.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.desktop-sticky-cta:hover {
  background: var(--road);
  color: var(--asphalt);
}

.desktop-sticky-cta svg {
  width: 18px;
  height: 18px;
}

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

  .owner-layout,
  .faq-layout,
  .final-cta,
  .area-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .final-cta__actions {
    justify-content: flex-start;
  }

  .area-map svg {
    max-height: 240px;
  }

  .desktop-sticky-cta {
    display: none;
  }
}

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

  .hero-trust-row {
    gap: 10px 16px;
  }

  .hero-trust-row span {
    font-size: 0.86rem;
  }
}
