:root {
  --ink: #17231b;
  --ink-soft: #324238;
  --cream: #f7f2e7;
  --paper: #fffdf7;
  --green: #67c54b;
  --green-dark: #286c2d;
  --orange: #ff6b35;
  --yellow: #f4c542;
  --line: rgba(23, 35, 27, 0.18);
  --shadow: 0 20px 60px rgba(23, 35, 27, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: "Trebuchet MS", "Segoe UI", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  content: "";
  pointer-events: none;
  opacity: 0.22;
  background-image: radial-gradient(rgba(23, 35, 27, 0.16) 0.65px, transparent 0.65px);
  background-size: 5px 5px;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.025em;
}

h1 {
  font-size: clamp(4.2rem, 9vw, 8.6rem);
}

h2 {
  font-size: clamp(3rem, 6vw, 5.4rem);
}

h3 {
  font-size: clamp(1.55rem, 2.5vw, 2.1rem);
}

.shell {
  width: min(1220px, calc(100% - 40px));
  margin-inline: auto;
}

.announcement {
  background: var(--ink);
  color: var(--cream);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.announcement-inner {
  display: flex;
  min-height: 36px;
  align-items: center;
  justify-content: space-between;
}

.announcement-proof {
  color: var(--yellow);
}

.site-header {
  position: relative;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  background: rgba(247, 242, 231, 0.96);
}

.header-inner {
  display: grid;
  min-height: 90px;
  align-items: center;
  grid-template-columns: 1fr auto auto;
  gap: 34px;
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-self: start;
}

.brand-logo {
  display: block;
  width: 270px;
  height: auto;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 0.84rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.desktop-nav a {
  border-bottom: 2px solid transparent;
}

.desktop-nav a:hover {
  border-color: var(--orange);
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 2px solid var(--ink);
  padding: 0 23px;
  box-shadow: 5px 5px 0 var(--ink);
  font-size: 0.86rem;
  font-weight: 900;
  letter-spacing: 0.045em;
  text-transform: uppercase;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.button:hover {
  box-shadow: 2px 2px 0 var(--ink);
  transform: translate(3px, 3px);
}

.button-primary {
  background: var(--orange);
}

.button-call {
  min-height: 48px;
  background: var(--green);
  color: white;
}

.button-light {
  border-color: var(--cream);
  background: var(--cream);
  box-shadow: 5px 5px 0 var(--orange);
  color: var(--ink);
}

.button-dark {
  background: var(--ink);
  box-shadow: 5px 5px 0 var(--orange);
  color: white;
}

.text-link {
  border-bottom: 2px solid var(--ink);
  font-weight: 900;
}

.mobile-nav {
  display: none;
}

.hero {
  overflow: hidden;
}

.hero-grid {
  display: grid;
  min-height: 690px;
  align-items: center;
  grid-template-columns: 0.92fr 1.08fr;
  gap: clamp(40px, 6vw, 90px);
  padding-block: 72px;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 20px;
  color: var(--green-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow-light {
  color: var(--yellow);
}

.hero h1 {
  margin-bottom: 26px;
  text-transform: uppercase;
}

.hero h1 span {
  color: var(--green);
  -webkit-text-stroke: 2px var(--ink);
  text-shadow: 5px 5px 0 var(--yellow);
}

.hero-summary {
  max-width: 670px;
  margin-bottom: 32px;
  color: var(--ink-soft);
  font-size: clamp(1.18rem, 2vw, 1.5rem);
  line-height: 1.45;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 36px;
}

.hero-proof span,
.about-points span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 13px;
  background: rgba(255, 255, 255, 0.48);
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-visual {
  position: relative;
  min-height: 590px;
  border: 3px solid var(--ink);
  box-shadow: 16px 16px 0 var(--yellow);
  transform: rotate(1.5deg);
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-sticker {
  position: absolute;
  right: -18px;
  bottom: 28px;
  display: flex;
  width: 180px;
  height: 180px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border: 3px solid var(--ink);
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 8px 8px 0 var(--ink);
  text-align: center;
  transform: rotate(-8deg);
}

.hero-sticker strong {
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 1.65rem;
  font-weight: 400;
  text-transform: uppercase;
}

.hero-sticker span {
  font-size: 0.78rem;
  font-weight: 900;
}

.ticker {
  overflow: hidden;
  border-block: 2px solid var(--ink);
  background: var(--green);
}

.ticker div {
  display: flex;
  min-width: max-content;
  justify-content: center;
  gap: 26px;
  padding: 15px 24px;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 1.45rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.ticker i {
  color: var(--yellow);
  font-style: normal;
}

.section {
  padding-block: 115px;
}

.section-heading {
  display: grid;
  align-items: end;
  grid-template-columns: 1.4fr 0.6fr;
  gap: 60px;
  margin-bottom: 55px;
}

.section-heading h2 {
  max-width: 830px;
  margin-bottom: 0;
}

.section-heading > p {
  margin: 0;
  color: var(--ink-soft);
}

.services-section {
  background: var(--paper);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 2px solid var(--ink);
}

.service-card {
  position: relative;
  display: grid;
  min-height: 235px;
  grid-template-columns: 50px 1fr;
  gap: 18px;
  border-bottom: 2px solid var(--ink);
  padding: 34px 58px 34px 18px;
  transition: background 160ms ease;
}

.service-card:nth-child(odd) {
  border-right: 2px solid var(--ink);
}

.service-card:hover {
  background: var(--yellow);
}

.service-number {
  color: var(--green-dark);
  font-size: 0.8rem;
  font-weight: 900;
}

.service-card h3 {
  margin-bottom: 15px;
  font-size: 2.25rem;
  text-transform: uppercase;
}

.service-card p {
  margin: 0;
  color: var(--ink-soft);
}

.card-arrow {
  position: absolute;
  right: 20px;
  top: 26px;
  font-size: 2rem;
}

.process-section {
  background: var(--green-dark);
  color: var(--cream);
}

.process-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(70px, 10vw, 160px);
}

.process-intro h2 {
  color: white;
}

.process-intro > p:not(.eyebrow) {
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.78);
}

.process-list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, 0.32);
}

.process-list li {
  display: grid;
  grid-template-columns: 68px 1fr;
  gap: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.32);
  padding: 28px 0;
}

.process-list li > span {
  color: var(--yellow);
  font-weight: 900;
}

.process-list h3 {
  margin-bottom: 8px;
  font-size: 1.8rem;
  text-transform: uppercase;
}

.process-list p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.work-section {
  background: var(--paper);
}

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

.work-grid figure {
  position: relative;
  overflow: hidden;
  margin: 0;
  border: 2px solid var(--ink);
  background: #ddd;
}

.work-grid img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 260ms ease;
}

.work-grid figure:hover img {
  transform: scale(1.035);
}

.work-grid figcaption {
  position: absolute;
  right: 12px;
  bottom: 12px;
  border: 2px solid var(--ink);
  padding: 6px 10px;
  background: var(--cream);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.work-large {
  grid-column: span 2;
  grid-row: span 2;
}

.work-wide {
  grid-column: span 2;
}

.work-footer {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  margin-top: 28px;
}

.about-section {
  background: var(--yellow);
}

.about-grid {
  display: grid;
  align-items: center;
  grid-template-columns: 0.7fr 1.3fr;
  gap: clamp(55px, 9vw, 130px);
}

.about-photo {
  position: relative;
  display: grid;
  min-height: 420px;
  place-items: center;
  border: 3px solid var(--ink);
  background: var(--green);
  box-shadow: 14px 14px 0 var(--ink);
}

.about-photo img {
  width: 260px;
  height: 260px;
  image-rendering: auto;
  object-fit: contain;
}

.about-badge {
  position: absolute;
  right: -26px;
  bottom: 28px;
  max-width: 230px;
  border: 2px solid var(--ink);
  padding: 13px;
  background: var(--orange);
  box-shadow: 5px 5px 0 var(--ink);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
  transform: rotate(-3deg);
}

.about-copy h2 {
  margin-bottom: 30px;
}

.about-lead {
  font-size: 1.35rem;
  font-weight: 800;
}

.about-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.about-points span {
  background: rgba(255, 255, 255, 0.5);
}

.areas-section {
  background: var(--cream);
}

.areas-grid {
  display: grid;
  align-items: center;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 90px;
}

.areas-grid h2 {
  margin-bottom: 28px;
}

.areas-grid .button {
  margin-top: 18px;
}

.suburb-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-content: center;
}

.suburb-cloud span {
  border: 2px solid var(--ink);
  padding: 9px 13px;
  background: var(--paper);
  box-shadow: 3px 3px 0 var(--ink);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  transform: rotate(var(--tilt, -1deg));
}

.suburb-cloud span:nth-child(3n) {
  --tilt: 2deg;
  background: var(--yellow);
}

.suburb-cloud span:nth-child(5n) {
  --tilt: -2deg;
  background: #d9efd4;
}

.faq-section {
  background: var(--paper);
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 100px;
}

.faq-list {
  border-top: 2px solid var(--ink);
}

.faq-list details {
  border-bottom: 2px solid var(--ink);
}

.faq-list summary {
  display: flex;
  cursor: pointer;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 0;
  font-weight: 900;
  list-style: none;
}

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

.faq-list summary span {
  color: var(--green-dark);
  font-size: 1.8rem;
}

.faq-list details[open] summary span {
  transform: rotate(45deg);
}

.faq-list details p {
  padding: 0 40px 25px 0;
  color: var(--ink-soft);
}

.quote-section {
  padding-block: 100px;
  background: var(--ink);
  color: var(--cream);
}

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

.quote-intro h2 {
  color: white;
}

.quote-intro > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.74);
}

.contact-stack {
  display: grid;
  gap: 10px;
  margin: 35px 0;
}

.contact-stack a {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
  padding: 14px 0;
}

.contact-stack span {
  color: var(--yellow);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.microcopy {
  font-size: 0.8rem;
}

.quote-card {
  min-height: 520px;
  border: 3px solid var(--ink);
  padding: 22px;
  background: var(--paper);
  box-shadow: 14px 14px 0 var(--green);
  color: var(--ink);
}

.quote-card iframe {
  display: block;
  width: 100%;
  min-height: 740px;
  border: 0;
}

.form-placeholder {
  display: grid;
  min-height: 440px;
  place-content: center;
  gap: 8px;
  text-align: center;
}

.form-placeholder strong {
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 2rem;
  font-weight: 400;
  text-transform: uppercase;
}

.form-placeholder span {
  color: var(--ink-soft);
  font-size: 0.85rem;
}

.footer {
  padding: 80px 0 30px;
  background: var(--green);
  color: var(--ink);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 0.75fr 0.75fr;
  gap: 70px;
}

.footer h2 {
  margin-bottom: 20px;
}

.footer h3 {
  margin-bottom: 20px;
  font-size: 1.5rem;
  text-transform: uppercase;
}

.footer ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 0.9rem;
  font-weight: 800;
}

.footer a:hover {
  text-decoration: underline;
}

.footer-lead .button {
  margin-top: 12px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  border-top: 1px solid rgba(23, 35, 27, 0.35);
  margin-top: 65px;
  padding-top: 24px;
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
}

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

.breadcrumbs {
  display: flex;
  gap: 10px;
  padding-top: 28px;
  color: var(--ink-soft);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.breadcrumbs a {
  text-decoration: underline;
}

.service-hero {
  border-bottom: 2px solid var(--ink);
}

.service-hero-grid {
  display: grid;
  min-height: 610px;
  align-items: center;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  padding-block: 55px 80px;
}

.service-hero h1 {
  margin-bottom: 28px;
  font-size: clamp(3.8rem, 7vw, 6.8rem);
  text-transform: uppercase;
}

.service-hero-image {
  position: relative;
  min-height: 510px;
  border: 3px solid var(--ink);
  box-shadow: 14px 14px 0 var(--yellow);
}

.service-hero-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 100;
  padding: 10px 14px;
  background: var(--paper);
  color: var(--ink);
  font-weight: 900;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.service-detail-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 90px;
}

.service-detail h2 {
  margin-bottom: 35px;
}

.service-detail p {
  color: var(--ink-soft);
}

.inclusion-card {
  align-self: start;
  border: 3px solid var(--ink);
  padding: 32px;
  background: var(--yellow);
  box-shadow: 10px 10px 0 var(--ink);
}

.inclusion-card > span {
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.inclusion-card ul {
  display: grid;
  gap: 14px;
  margin: 25px 0;
  padding: 0;
  list-style: none;
}

.inclusion-card li {
  position: relative;
  border-bottom: 1px solid rgba(23, 35, 27, 0.28);
  padding: 0 0 14px 24px;
  font-weight: 800;
}

.inclusion-card li::before {
  position: absolute;
  left: 0;
  color: var(--green-dark);
  content: "✓";
}

.inclusion-card p {
  margin: 0;
  font-size: 0.86rem;
}

.promise-band {
  padding-block: 55px;
  background: var(--green-dark);
  color: white;
}

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

.promise-grid div {
  display: grid;
  gap: 6px;
  border-left: 2px solid var(--yellow);
  padding-left: 18px;
}

.promise-grid strong {
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
  text-transform: uppercase;
}

.promise-grid span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
}

.related-section {
  background: var(--cream);
}

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

.related-grid a {
  min-height: 220px;
  border: 2px solid var(--ink);
  padding: 28px;
  background: var(--paper);
  box-shadow: 7px 7px 0 var(--ink);
}

.related-grid a:hover {
  background: var(--yellow);
}

.related-grid span,
.related-grid b {
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
}

.related-grid h3 {
  margin: 38px 0 45px;
  font-size: 2.1rem;
  text-transform: uppercase;
}

.area-hero {
  padding: 35px 0 100px;
  border-bottom: 2px solid var(--ink);
}

.area-hero .shell {
  max-width: 980px;
  margin-left: max(20px, calc((100vw - 1220px) / 2));
}

.area-hero h1 {
  max-width: 1000px;
  margin: 20px 0 30px;
  font-size: clamp(4rem, 8vw, 7.5rem);
  text-transform: uppercase;
}

.area-hero .button {
  margin-top: 15px;
}

.area-clusters {
  background: var(--paper);
}

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

.cluster-grid > div {
  border: 2px solid var(--ink);
  padding: 25px;
  background: var(--cream);
  box-shadow: 6px 6px 0 var(--ink);
}

.cluster-grid h3 {
  color: var(--green-dark);
  font-size: 1.7rem;
  text-transform: uppercase;
}

.cluster-grid ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.cluster-grid li {
  border-top: 1px solid var(--line);
  padding-top: 8px;
}

.area-note {
  max-width: 900px;
  margin: 38px 0 0;
  border-left: 5px solid var(--green);
  padding: 18px 22px;
  background: var(--cream);
}

.local-services {
  background: var(--yellow);
}

.service-link-list {
  border-top: 2px solid var(--ink);
}

.service-link-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 2px solid var(--ink);
  padding: 20px 5px;
}

.service-link-list a:hover {
  padding-inline: 16px;
  background: rgba(255, 255, 255, 0.4);
}

.service-link-list span {
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 2rem;
  text-transform: uppercase;
}

.service-link-list b {
  font-size: 0.75rem;
  text-transform: uppercase;
}

.not-found {
  min-height: 620px;
  padding-block: 130px;
}

.not-found h1 {
  margin-bottom: 25px;
}

.not-found .button {
  margin-top: 20px;
}

@media (max-width: 1000px) {
  .desktop-nav,
  .header-call {
    display: none;
  }

  .header-inner {
    grid-template-columns: 1fr auto;
  }

  .mobile-nav {
    position: relative;
    display: block;
  }

  .mobile-nav summary {
    cursor: pointer;
    border: 2px solid var(--ink);
    padding: 10px 14px;
    font-size: 0.78rem;
    font-weight: 900;
    list-style: none;
    text-transform: uppercase;
  }

  .mobile-nav summary::-webkit-details-marker {
    display: none;
  }

  .mobile-nav-panel {
    position: absolute;
    right: 0;
    display: grid;
    width: min(290px, calc(100vw - 40px));
    border: 2px solid var(--ink);
    margin-top: 8px;
    padding: 14px;
    background: var(--paper);
    box-shadow: 8px 8px 0 var(--ink);
  }

  .mobile-nav-panel a {
    border-bottom: 1px solid var(--line);
    padding: 12px 5px;
    font-weight: 900;
  }

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

  .hero-visual {
    min-height: 520px;
  }

  .process-grid,
  .quote-grid,
  .faq-grid,
  .service-detail-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .areas-grid,
  .about-grid {
    grid-template-columns: 1fr 1fr;
    gap: 55px;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .promise-grid,
  .cluster-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 700px) {
  body {
    padding-bottom: 58px;
    font-size: 16px;
  }

  .shell {
    width: min(100% - 26px, 1220px);
  }

  .announcement {
    font-size: 0.64rem;
  }

  .header-inner {
    min-height: 76px;
    gap: 14px;
  }

  .brand-logo {
    width: min(205px, calc(100vw - 105px));
  }

  .hero-grid {
    min-height: auto;
    gap: 45px;
    padding-block: 60px;
  }

  .hero h1 {
    font-size: clamp(3.8rem, 20vw, 5.2rem);
  }

  .hero h1 span {
    -webkit-text-stroke: 1.5px var(--ink);
    text-shadow: 3px 3px 0 var(--yellow);
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 18px;
  }

  .hero-actions .text-link {
    align-self: center;
  }

  .hero-visual {
    min-height: 420px;
    margin-right: 7px;
    box-shadow: 9px 9px 0 var(--yellow);
  }

  .hero-sticker {
    right: -4px;
    bottom: 18px;
    width: 130px;
    height: 130px;
  }

  .hero-sticker strong {
    font-size: 1.2rem;
  }

  .ticker div {
    justify-content: flex-start;
    font-size: 1.15rem;
  }

  .section {
    padding-block: 78px;
  }

  .section-heading {
    margin-bottom: 38px;
  }

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

  .service-card:nth-child(odd) {
    border-right: 0;
  }

  .service-card {
    min-height: 205px;
    padding-left: 5px;
  }

  .service-card h3 {
    font-size: 1.85rem;
  }

  .process-list li {
    grid-template-columns: 46px 1fr;
  }

  .work-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 340px 210px 250px;
  }

  .work-large {
    grid-column: span 2;
    grid-row: span 1;
  }

  .work-wide {
    grid-column: span 2;
  }

  .work-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .about-grid,
  .areas-grid {
    grid-template-columns: 1fr;
  }

  .about-photo {
    min-height: 350px;
    margin-right: 10px;
  }

  .about-photo img {
    width: 230px;
    height: 230px;
  }

  .about-badge {
    right: -5px;
  }

  .faq-grid {
    gap: 35px;
  }

  .quote-grid {
    gap: 45px;
  }

  .quote-card {
    min-height: 430px;
    margin-right: 10px;
    padding: 10px;
    box-shadow: 9px 9px 0 var(--green);
  }

  .quote-card iframe {
    min-height: 780px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .mobile-call-bar {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 30;
    display: flex;
    min-height: 58px;
    align-items: center;
    justify-content: center;
    border-top: 2px solid var(--ink);
    background: var(--orange);
    font-weight: 900;
    text-transform: uppercase;
  }

  .service-hero-grid {
    gap: 45px;
    padding-bottom: 65px;
  }

  .service-hero h1,
  .area-hero h1 {
    font-size: clamp(3.6rem, 17vw, 5rem);
  }

  .service-hero-image {
    min-height: 380px;
    margin-right: 10px;
    box-shadow: 9px 9px 0 var(--yellow);
  }

  .promise-grid,
  .related-grid,
  .cluster-grid {
    grid-template-columns: 1fr;
  }

  .area-hero .shell {
    margin-inline: auto;
  }

  .contact-stack a {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .service-link-list span {
    font-size: 1.45rem;
  }
}
