:root {
  --teal: #45c4bf;
  --teal-dark: #27aaa4;
  --ink: #20242a;
  --muted: #68727a;
  --line: #e5e9eb;
  --soft: #f5f5f5;
  --white: #ffffff;
  --footer: #202321;
  --shadow: 0 22px 34px rgba(0, 0, 0, 0.2);
  --heading-font: "Titillium Web", sans-serif;
  --heading-weight: 700;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Poppins, Arial, sans-serif;
  background: var(--white);
}

body.has-open-modal {
  overflow: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--heading-font);
  font-weight: var(--heading-weight);
}

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

.site-header {
  position: relative;
  z-index: 30;
}

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

button,
input,
textarea {
  font: inherit;
}

.container {
  width: min(100% - 40px, 1115px);
  margin-inline: auto;
}

.utility-bar {
  background: var(--teal);
  color: var(--white);
  font-size: 12px;
  font-weight: 500;
}

.utility-inner {
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.utility-contact {
  display: flex;
  align-items: center;
  gap: 54px;
}

.utility-contact a,
.utility-contact span {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.bar-icon {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  fill: currentColor;
}

.social-links,
.footer-social {
  display: flex;
  align-items: center;
  gap: 18px;
}

.social-links a,
.footer-social a {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  color: currentColor;
  border: 2px solid currentColor;
  border-radius: 50%;
  padding: 5px;
}

.footer-social a {
  width: 26px;
  height: 26px;
  color: var(--white);
  border-width: 1px;
  padding: 5px;
}

.social-links svg,
.footer-social svg {
  width: 100%;
  height: 100%;
  display: block;
  fill: currentColor;
}

.main-nav {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 20;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
}

.nav-inner {
  min-height: 94px;
  display: grid;
  grid-template-columns: 245px 1fr 230px;
  align-items: center;
  gap: 20px;
}

.brand,
.footer-brand {
  color: var(--teal);
  font-size: 18px;
  font-weight: 800;
  line-height: 0.9;
  text-transform: uppercase;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand img {
  width: 157px;
  height: auto;
}

.brand span {
  display: none;
}

.menu {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 25px;
  font-family: var(--heading-font);
  font-size: 16px;
  font-weight: var(--heading-weight);
  text-transform: uppercase;
}

.nav-call {
  display: grid;
  grid-template-columns: 58px auto;
  grid-template-rows: auto auto;
  column-gap: 15px;
  row-gap: 0;
  align-items: center;
  justify-self: end;
  min-width: 0;
  padding-left: 0;
  color: #727982;
  font-family: var(--heading-font);
  font-size: 16px;
  font-weight: var(--heading-weight);
  line-height: 0.9;
}

.nav-call-icon {
  grid-row: 1 / 3;
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.nav-call span {
  display: block;
  font-weight: inherit;
}

.nav-call strong {
  display: block;
  color: var(--ink);
  font-size: 16px;
  font-weight: inherit;
  margin-top: -5px;
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 453px;
  overflow: visible;
  z-index: 1;
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.74), rgba(0, 0, 0, 0.30) 50%, rgba(0, 0, 0, 0.12)),
    rgba(0, 0, 0, 0.12);
}

.hero-inner {
  position: relative;
  min-height: 453px;
  display: grid;
  grid-template-columns: 1fr 380px;
  align-items: start;
  gap: 56px;
  padding-top: 43px;
}

.hero-copy {
  max-width: 500px;
  color: var(--white);
}

.hero-copy h1 {
  margin: 18px 0 36px;
  font-size: clamp(44px, 4.8vw, 58px);
  line-height: 0.98;
  letter-spacing: 0;
}

.hero-copy h1 span {
  display: block;
  color: var(--teal);
}

.hero-copy ul {
  margin: 0 0 38px;
  padding: 0;
  list-style: none;
  font-size: 13px;
  font-weight: 400;
}

.hero-copy li {
  margin-bottom: 9px;
}

.hero-copy li::before {
  content: "✓";
  color: var(--teal);
  margin-right: 8px;
}

.hero-actions {
  display: flex;
  gap: 16px;
}

.button {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  gap: 10px;
  padding: 0 34px;
  font-family: Poppins, Arial, sans-serif;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.hero-actions .button::after {
  content: "→";
  font-size: 22px;
  line-height: 1;
}

.button-primary {
  background: var(--teal);
  color: var(--white);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--white);
  color: var(--teal);
  box-shadow: inset 0 0 0 2px var(--teal);
}

.button-light {
  background: var(--white);
  color: var(--teal-dark);
}

.button-light:hover,
.button-light:focus-visible {
  background: var(--teal);
  color: var(--white);
}

.quote-card {
  position: relative;
  z-index: 2;
  margin-bottom: -96px;
  padding: 30px 31px 34px;
  background: #f8f8f8;
  box-shadow: 0 34px 48px rgba(0, 0, 0, 0.24);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 12px;
}

/* Desktop: name, address, message and chrome items span full width;
   email and phone auto-place into the two columns (side by side) */
.quote-card h2,
.qf-name,
.qf-address,
.qf-message,
.quote-card .cf-turnstile-container,
.quote-card .form-message,
.quote-card .button {
  grid-column: 1 / -1;
}

.quote-card h2,
.contact-form h2 {
  margin: 0 0 18px;
  font-size: 27px;
  line-height: 1.05;
}

label {
  display: block;
}

label span {
  display: block;
  margin-bottom: 5px;
  color: #a4aaae;
  font-size: 10px;
  font-weight: 700;
}

input,
textarea {
  width: 100%;
  border: 0;
  background: var(--white);
  color: var(--ink);
  font-size: 12px;
  margin-bottom: 13px;
  padding: 13px 14px;
  outline-color: var(--teal);
}

textarea {
  resize: vertical;
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.quote-card .button,
.contact-form .button {
  width: 100%;
}

.section {
  padding: 78px 0;
}

.hero + .section {
  padding-top: 150px;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 54px;
}

.about-image {
  min-height: 356px;
}

.about-image {
  aspect-ratio: 1 / 1;
  min-height: 0;
}

.section-copy {
  max-width: 500px;
}

.eyebrow {
  display: block;
  margin-bottom: 8px;
  color: var(--teal);
  font-size: 11px;
  font-weight: 700;
}

.section h2,
.contact-form h2 {
  color: var(--ink);
  font-size: 31px;
  line-height: 1.1;
}

.section h2 {
  margin: 0 0 22px;
}

p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.8;
}

.services,
.reviews {
  background: var(--soft);
}

.section-heading {
  max-width: 620px;
  margin: 0 auto 42px;
  text-align: center;
}

.services .container {
  width: min(100% - 96px, 980px);
}

.service-carousel {
  position: relative;
  width: min(100%, 896px);
  margin-inline: auto;
  overflow: visible;
  isolation: isolate;
}

.service-viewport {
  overflow: hidden;
}

.service-track {
  position: relative;
  display: flex;
  gap: 20px;
  overflow: visible;
  transition: transform 500ms ease;
}

.carousel-arrow {
  content: "";
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 0;
  background: var(--teal);
  border-radius: 50%;
  transform: translateY(-50%);
  cursor: pointer;
}

.carousel-arrow::before {
  font-family: Arial, sans-serif;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  color: var(--white);
}

.carousel-arrow-prev {
  left: -42px;
}

.carousel-arrow-prev::before {
  content: "<<";
}

.carousel-arrow-next {
  right: -42px;
}

.carousel-arrow-next::before {
  content: ">>";
}

.service-card {
  flex: 0 0 calc((100% - 20px) / 2);
  min-height: 420px;
  padding: 28px 28px 0;
  background: var(--white);
  text-align: center;
}

.service-card + .service-card {
  border-left: 0;
}

.service-icon {
  width: 54px;
  height: 62px;
  object-fit: contain;
  margin: 0 auto 17px;
}

.service-card h3 {
  margin: 0 0 16px;
  color: var(--teal);
  font-size: 16px;
}

.service-card p {
  min-height: 120px;
  max-width: 390px;
  margin: 0 auto 18px;
  font-size: 12px;
  line-height: 1.65;
}

.service-card a {
  display: inline-block;
  margin-bottom: 25px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.service-card a::before {
  content: "→ ";
  font-size: 15px;
  line-height: 0;
}

.service-image {
  height: 190px;
  margin-inline: -28px;
  background-position: center 42%;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  padding-top: 20px;
}

.carousel-dot {
  width: 9px;
  height: 9px;
  border: 0;
  border-radius: 50%;
  background: #d1d1d1;
  padding: 0;
  cursor: pointer;
}

.carousel-dot.is-active {
  background: #171d22;
}

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

.project-card {
  position: relative;
  aspect-ratio: 1 / 1;
  min-height: 0;
  background-position: center 46%;
}

.project-card span {
  position: absolute;
  left: 0;
  bottom: 18px;
  min-width: 165px;
  padding: 12px 18px;
  background: #171d22;
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
}

.project-card span::after {
  content: "";
  position: absolute;
  top: 0;
  right: -8px;
  width: 8px;
  height: 100%;
  background: var(--teal);
}

.review-content h2 {
  margin-bottom: 28px;
}

.review-content {
  text-align: center;
}

.review-content .testimonial {
  text-align: left;
}

.testimonial {
  background: var(--white);
  padding: 38px 46px 42px;
}

.facebook-mark {
  width: 40px;
  height: 40px;
  margin-bottom: 19px;
  object-fit: contain;
}

.testimonial h3 {
  margin: 0 0 12px;
  font-size: 15px;
}

.stars {
  color: #f2a51a;
  letter-spacing: 3px;
  font-size: 13px;
}

.testimonial p {
  max-width: 520px;
  color: #3d4247;
  font-size: 12px;
}

.facebook-feed {
  --facebook-scale: 1;
  --facebook-height: 620px;
  --facebook-header-crop: 92px;
  --facebook-crop-offset: 92px;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  overflow: visible;
}

.facebook-custom-header {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.facebook-custom-header img {
  width: 54px;
  height: 54px;
  flex: 0 0 auto;
  object-fit: contain;
}

.facebook-custom-header .eyebrow {
  margin-bottom: 2px;
}

.facebook-custom-header h2 {
  margin: 0;
  font-size: 22px;
}

.facebook-custom-header a {
  display: inline-block;
  margin-top: 4px;
  color: var(--teal-dark);
  font-size: 12px;
  font-weight: 700;
}

.facebook-frame {
  width: 100%;
  height: calc((var(--facebook-height) - var(--facebook-header-crop)) * var(--facebook-scale));
  overflow: hidden;
  background: var(--white);
}

.facebook-feed iframe {
  position: relative;
  top: calc(var(--facebook-crop-offset) * -1);
  display: block;
  width: 500px;
  max-width: none;
  height: var(--facebook-height);
  min-height: 0;
  border: 0;
  background: var(--soft);
  transform: scale(var(--facebook-scale));
  transform-origin: top left;
}

.contact-band {
  padding: 54px 0;
  background: var(--teal);
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 36px;
  align-items: start;
  padding: 40px;
  background: #f8f8f8;
}

.contact-form h2 {
  max-width: 380px;
}

.contact-methods {
  display: grid;
  gap: 22px;
  padding-top: 126px;
}

.contact-methods a,
.contact-methods > span {
  position: relative;
  min-height: 82px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 18px 24px 18px 76px;
  background: var(--white);
  transition: color 180ms ease;
}

.contact-methods a:hover strong,
.contact-methods a:focus-visible strong,
.contact-methods a:hover span:not(.contact-icon),
.contact-methods a:focus-visible span:not(.contact-icon) {
  color: var(--teal);
}

.contact-icon {
  position: absolute;
  left: 25px;
  top: 50%;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  background: var(--teal);
  color: var(--white);
  border-radius: 50%;
  transform: translateY(-50%);
}

.contact-icon svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.contact-methods strong {
  margin-bottom: 5px;
  color: var(--ink);
  font-size: 17px;
}

.contact-methods > span > span:not(.contact-icon),
.contact-methods a > span:not(.contact-icon) {
  color: var(--muted);
  font-size: 13px;
}

.site-footer {
  background: var(--footer);
  color: var(--white);
  padding: 36px 0 28px;
}

.footer-top,
.footer-main,
.footer-bottom {
  display: grid;
  align-items: center;
}

.footer-top {
  grid-template-columns: 1fr auto;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--teal);
}

.footer-brand img {
  width: 108px;
  height: auto;
}

.footer-main {
  grid-template-columns: 1fr 1fr 170px;
  gap: 80px;
  padding: 38px 0 32px;
  border-bottom: 1px solid var(--teal);
}

.footer-main h2 {
  margin: 0 0 18px;
  font-size: 15px;
  font-family: var(--heading-font);
  font-weight: var(--heading-weight);
}

.footer-main p,
.footer-main a,
.footer-bottom p,
.footer-bottom a {
  color: #cbd2d2;
  font-size: 12px;
  line-height: 1.7;
}

.footer-main a {
  position: relative;
  display: block;
  padding-left: 16px;
}

.footer-links a::before {
  content: "»";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--teal);
  font-weight: 800;
}

.footer-logo {
  width: 115px;
  justify-self: center;
}

.footer-bottom {
  grid-template-columns: 1fr auto;
  padding-top: 22px;
}

.footer-bottom div {
  display: flex;
  gap: 20px;
}

.policy-modal[hidden] {
  display: none;
}

.policy-modal {
  position: fixed;
  inset: 0;
  z-index: 20;
  display: grid;
  place-items: center;
  padding: 24px;
}

.policy-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(23, 29, 34, 0.72);
}

.policy-modal-panel {
  position: relative;
  z-index: 1;
  width: min(100%, 640px);
  max-height: min(720px, calc(100vh - 48px));
  overflow: auto;
  background: #f8f8f8;
  padding: 42px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}

.policy-modal-panel h2 {
  margin: 10px 0 22px;
  font-size: 30px;
}

.policy-modal-panel p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.8;
}

.policy-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border: 0;
  background: var(--teal);
  color: var(--white);
  font: 600 24px/1 var(--body-font);
  cursor: pointer;
}

.policy-modal-close:hover,
.policy-modal-close:focus-visible {
  background: var(--ink);
}

.image-slot {
  background-color: #d7dddc;
  background-image: linear-gradient(135deg, #7b8d8b, #c6cfcc);
  background-position: center;
  background-size: cover;
}

.ken-burns {
  background-size: 112%;
  animation: kenBurns 5s ease-out infinite;
}

@keyframes kenBurns {
  from {
    background-size: 112%;
  }

  to {
    background-size: 100%;
  }
}

.form-message {
  margin: 0 0 10px;
  padding: 10px 14px;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.5;
}

.form-message[data-type="error"] {
  background: #fef2f2;
  color: #c0392b;
}

.form-message[data-type="info"] {
  background: #f0faf9;
  color: var(--teal-dark);
}

.cf-turnstile-container {
  margin-bottom: 13px;
}

.enquiry-success-panel {
  text-align: center;
}

.enquiry-success-panel h2 {
  color: var(--teal);
}

.policy-modal-panel h3 {
  margin: 22px 0 8px;
  font-size: 15px;
  color: var(--ink);
}

.policy-modal-panel h4 {
  margin: 16px 0 6px;
  font-size: 13px;
  color: var(--teal-dark);
}

.policy-modal-panel ul {
  margin: 0 0 12px;
  padding-left: 18px;
}

.policy-modal-panel li {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
  margin-bottom: 4px;
}

.policy-modal-panel a {
  color: var(--teal-dark);
  text-decoration: underline;
}

.policy-meta {
  font-size: 11px;
  color: var(--muted);
  margin-bottom: 18px;
}

/* ---------------------------------------------------------------------------
   Cookie consent banner
   --------------------------------------------------------------------------- */

.cookie-consent {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 1200;
  display: grid;
  justify-items: end;
  gap: 0.6rem;
  width: min(380px, calc(100% - 2rem));
  pointer-events: none;
}

.cookie-consent.resolved {
  bottom: 0;
  gap: 0;
}

.cookie-consent-tab,
.cookie-consent-panel {
  pointer-events: auto;
}

.cookie-consent-tab {
  order: 2;
  appearance: none;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  padding: 0.65rem 1.2rem;
  background: var(--teal);
  color: var(--white);
  font-family: Poppins, Arial, sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.28);
  cursor: pointer;
  transition: transform 0.3s ease, background 0.2s;
}

.cookie-consent.resolved .cookie-consent-tab {
  border-radius: 12px 12px 0 0;
  border-bottom: none;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.22);
  transform: translateY(calc(100% - 22px));
}

.cookie-consent.resolved .cookie-consent-tab:hover,
.cookie-consent.resolved .cookie-consent-tab:focus-visible,
.cookie-consent.resolved.open .cookie-consent-tab {
  transform: translateY(0);
}

.cookie-consent-tab:hover,
.cookie-consent-tab:focus-visible {
  background: var(--teal-dark);
}

.cookie-consent-panel {
  order: 1;
  display: none;
  padding: 1rem 1.15rem 1.15rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  background: var(--ink);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
}

.cookie-consent.resolved .cookie-consent-panel {
  border-radius: 16px 16px 0 0;
  border-bottom: none;
}

.cookie-consent.open .cookie-consent-panel {
  display: block;
}

.cookie-consent-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.85rem;
}

.cookie-consent-head h2 {
  margin: 0;
  color: var(--white);
  font-family: var(--heading-font);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.2;
}

.cookie-consent-close {
  appearance: none;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  background: transparent;
  color: var(--white);
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.18s ease, border-color 0.18s ease;
}

.cookie-consent-close:hover,
.cookie-consent-close:focus-visible {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.4);
}

.cookie-consent-panel p {
  margin-bottom: 0.85rem;
  font-size: 0.82rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.75);
}

.cookie-consent-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
}

.cookie-consent-btn {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  padding-inline: 1rem;
  font-family: Poppins, Arial, sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease;
}

.cookie-consent-btn-accept {
  background: var(--teal);
  color: var(--white);
}

.cookie-consent-btn-accept:hover,
.cookie-consent-btn-accept:focus-visible {
  background: var(--teal-dark);
}

.cookie-consent-btn-deny {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: rgba(255, 255, 255, 0.8);
}

.cookie-consent-btn-deny:hover,
.cookie-consent-btn-deny:focus-visible {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.cookie-consent-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 0.75rem;
  font-size: 0.78rem;
  font-weight: 700;
}

.cookie-consent-links a {
  color: var(--teal);
  text-decoration: underline;
}

.cookie-consent-links a:hover,
.cookie-consent-links a:focus-visible {
  color: var(--white);
}

@media (max-width: 900px) {
  .container {
    width: min(100% - 30px, 640px);
  }

  .utility-inner {
    justify-content: space-between;
    gap: 12px;
  }

  .utility-inner .social-links {
    display: none;
  }

  .utility-contact {
    gap: 14px;
  }

  .nav-inner {
    min-height: 62px;
    grid-template-columns: 120px 1fr 40px;
  }

  .brand img {
    width: 92px;
  }

  .brand span {
    display: none;
  }

  .menu-toggle {
    width: 40px;
    height: 40px;
    display: grid;
    align-content: center;
    gap: 5px;
    justify-self: end;
    border: 0;
    background: transparent;
    padding: 0;
  }

  .menu-toggle span {
    width: 24px;
    height: 2px;
    display: block;
    margin-inline: auto;
    background: var(--ink);
  }

  .menu {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--white);
    border-top: 1px solid var(--line);
  }

  .menu.is-open {
    display: flex;
  }

  .menu a {
    padding: 15px 24px;
    border-bottom: 1px solid var(--line);
  }

  .nav-call {
    display: none;
  }

  .hero {
    min-height: 0;
  }

  .hero + .section {
    padding-top: 54px;
  }

  .hero-inner {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 22px;
    padding-block: 28px 30px;
  }

  .hero-copy h1 {
    max-width: 330px;
    font-size: 35px;
  }

  .hero-copy ul {
    font-size: 11px;
  }

  .quote-card {
    margin-bottom: 0;
    padding: 24px 20px;
  }

  .quote-card,
  .field-grid,
  .split,
  .service-track,
  .contact-panel,
  .footer-main,
  .footer-bottom {
    grid-template-columns: 1fr;
  }

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

  .section {
    padding: 54px 0;
  }

  .about-image {
    min-height: 335px;
  }

  .about .split {
    grid-template-columns: minmax(210px, 0.8fr) minmax(0, 1fr);
    gap: 30px;
  }

  .about .about-image {
    min-height: 0;
    aspect-ratio: 4 / 5;
  }

  .about .section-copy {
    max-width: none;
  }

  .about .section-copy p {
    font-size: 12px;
    line-height: 1.65;
  }

  .section h2,
  .contact-form h2 {
    font-size: 26px;
  }

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

  .services .container {
    width: min(100% - 30px, 640px);
  }

  .service-track {
    gap: 18px;
  }

  .service-carousel {
    width: min(100%, 564px);
  }

  .carousel-arrow-prev {
    left: -42px;
  }

  .carousel-arrow-next {
    right: -42px;
  }

  .service-card {
    flex-basis: calc((100% - 18px) / 2);
    min-height: 390px;
    padding: 24px 20px 0;
    background: var(--white);
  }

  .service-card + .service-card {
    border-left: 0;
  }

  .service-card p {
    min-height: 142px;
    font-size: 11px;
    line-height: 1.6;
  }

  .service-card h3 {
    font-size: 15px;
  }

  .service-image {
    height: 170px;
    margin-inline: -20px;
  }

  .service-icon {
    width: 54px;
    height: 62px;
  }

  .reviews .split {
    align-items: start;
    gap: 28px;
  }

  .reviews .review-content {
    order: 1;
  }

  .reviews .facebook-feed {
    order: 2;
  }

  .testimonial {
    padding: 24px 20px;
  }

  .contact-band {
    padding: 32px 0;
  }

  .contact-panel {
    gap: 28px;
    padding: 24px 18px;
  }

  .contact-form {
    order: 2;
  }

  .contact-methods {
    order: 1;
    padding-top: 0;
  }

  .footer-main {
    gap: 24px;
  }

  .footer-logo {
    justify-self: start;
  }

  .footer-bottom {
    gap: 10px;
  }

  .footer-bottom div {
    flex-wrap: wrap;
  }

  .policy-modal {
    padding: 16px;
  }

  .policy-modal-panel {
    max-height: calc(100vh - 32px);
    padding: 34px 22px 28px;
  }

  .policy-modal-panel h2 {
    font-size: 24px;
  }
}

@media (min-width: 521px) and (max-width: 900px) {
  .container {
    width: min(100% - 42px, 820px);
  }

  .utility-bar {
    font-size: 14px;
  }

  .utility-inner {
    min-height: 56px;
  }

  .utility-inner .social-links {
    display: flex;
  }

  .utility-contact {
    flex: 1;
    justify-content: space-between;
    gap: 22px;
  }

  .utility-contact a,
  .utility-contact span {
    gap: 10px;
    white-space: nowrap;
  }

  .bar-icon {
    width: 24px;
    height: 24px;
  }

  .social-links a {
    width: 38px;
    height: 38px;
  }

  .nav-inner {
    min-height: 100px;
    grid-template-columns: 145px minmax(210px, 1fr) 48px;
    gap: 18px;
  }

  .brand img {
    width: 128px;
  }

  .brand {
    grid-column: 1;
    grid-row: 1;
  }

  .nav-call {
    grid-column: 2;
    grid-row: 1;
    min-width: 0;
    display: grid;
    width: max-content;
    justify-self: center;
    padding-left: 0;
    font-size: 18px;
  }

  .menu-toggle {
    grid-column: 3;
    grid-row: 1;
  }

  .nav-call-icon {
    width: 48px;
    height: 48px;
  }

  .nav-call strong {
    font-size: 18px;
  }

  .menu-toggle {
    width: 48px;
    height: 48px;
    background: #f1f1f1;
    border-radius: 5px;
  }

  .menu-toggle span {
    width: 27px;
    height: 4px;
    border-radius: 999px;
  }

  .service-carousel {
    width: min(100%, 660px);
  }

  /* Hero form: restore 2-col grid and let all four fields auto-place
     (name+email row 1, phone+address row 2) */
  .quote-card {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .qf-name,
  .qf-address {
    grid-column: auto;
  }

  /* Bottom contact form: restore field-grids to 2 columns */
  .contact-form .field-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-main {
    grid-template-columns: 1fr 1fr 170px;
    gap: 40px;
  }

  .footer-logo {
    justify-self: center;
  }
}

@media (min-width: 521px) and (max-width: 700px) {
  .nav-inner {
    grid-template-columns: 118px minmax(0, 1fr) 44px;
    gap: 14px;
  }

  .brand img {
    width: 108px;
  }

  .nav-call {
    width: 100%;
    padding-left: 0;
    text-align: center;
    font-size: 16px;
    display: block;
  }

  .nav-call-icon {
    display: none;
  }

  .nav-call strong {
    font-size: 20px;
  }

  .menu-toggle {
    width: 44px;
    height: 44px;
  }
}

@media (max-width: 520px) {
  .facebook-feed {
    --facebook-height: 680px;
  }

  .utility-inner {
    font-size: 10px;
  }

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

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

  .about .about-image {
    aspect-ratio: 1 / 1;
  }

  .about .section-copy p {
    font-size: 13px;
    line-height: 1.8;
  }

  .service-carousel {
    width: min(100%, 360px);
  }

  .carousel-arrow-prev {
    left: 8px;
  }

  .carousel-arrow-next {
    right: 8px;
  }

  .service-card {
    flex-basis: 100%;
    min-height: 0;
    padding: 28px 18px 0;
  }

  .service-card p {
    min-height: 0;
    font-size: 13px;
  }

  .service-card h3 {
    font-size: 22px;
  }

  .service-image {
    height: 185px;
    margin-inline: -18px;
  }

  .hero-actions {
    gap: 10px;
  }

  .button {
    padding-inline: 18px;
  }

  .quote-card h2 {
    font-size: 22px;
  }

  .section-heading h2 {
    font-size: 25px;
  }

  .project-card span {
    min-width: 135px;
    bottom: 12px;
    padding: 10px 13px;
    font-size: 11px;
  }

}
