:root {
  --black: #020202;
  --ink: #080808;
  --muted: #4f4f4f;
  --soft: #f7f7f5;
  --white: #ffffff;
  --line: #dedede;
  --yellow: #f7c21b;
  --yellow-deep: #efb600;
  --shadow: 0 18px 42px rgba(0, 0, 0, 0.11);
  --soft-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
  --radius: 10px;
  --pill: 999px;
  --header-h: 88px;
  --container: 1120px;
  font-family: "Inter", "Segoe UI", Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Inter", "Segoe UI", Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.58;
}

body.nav-open,
body.modal-open,
body.quote-modal-open {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

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

h1,
h2,
h3 {
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  margin-bottom: 22px;
  font-size: clamp(2.7rem, 4.3vw, 4.45rem);
  font-weight: 800;
}

h2 {
  font-size: clamp(2rem, 3vw, 2.75rem);
  font-weight: 800;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.08rem;
  font-weight: 800;
}

p {
  margin-bottom: 18px;
}

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

.site-header {
  position: sticky;
  z-index: 60;
  top: 0;
  display: flex;
  align-items: center;
  min-height: var(--header-h);
  padding: 14px clamp(28px, 4vw, 60px);
  color: var(--white);
  background: var(--black);
}

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

.brand img {
  width: clamp(230px, 22vw, 310px);
  max-height: none;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2vw, 34px);
  margin-left: auto;
  font-size: 0.98rem;
  font-weight: 700;
}

.site-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: var(--white);
  white-space: nowrap;
}

.site-nav a:not(.enquire-button)::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 3px;
  height: 3px;
  background: transparent;
  content: "";
}

.site-nav a.is-active::after,
.site-nav a:hover::after {
  background: var(--yellow);
}

.site-nav .social-link {
  justify-content: center;
  min-width: 26px;
  font-weight: 900;
}

.site-nav .social-link::after {
  display: none;
}

.social-icon {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.enquire-button {
  min-height: 48px;
  padding: 0 26px;
  color: var(--ink) !important;
  background: var(--white);
  border-radius: var(--pill);
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.08);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  margin-left: auto;
  padding: 11px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 12px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--white);
  border-radius: 2px;
}

.split-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.03fr);
  align-items: stretch;
  min-height: 512px;
  background: var(--white);
}

body[data-page="home"] .split-hero {
  grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
  width: min(100%, 1500px);
  min-height: clamp(540px, 45vw, 670px);
  margin: 0 auto;
}

body:not([data-page="home"]) .split-hero {
  width: min(100%, 1500px);
  min-height: clamp(500px, 42vw, 650px);
  margin: 0 auto;
}

.split-hero .hero-image {
  min-height: 420px;
  overflow: hidden;
}

.split-hero .hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

body[data-page="home"] .split-hero .hero-image img {
  object-position: center center;
}

.split-hero .hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(54px, 6vw, 86px) clamp(32px, 6vw, 78px);
}

body[data-page="home"] .split-hero .hero-copy {
  padding: clamp(58px, 5vw, 92px) clamp(42px, 5.2vw, 88px);
}

body:not([data-page="home"]) .split-hero .hero-copy {
  padding: clamp(54px, 4.8vw, 84px) clamp(36px, 5vw, 76px);
}

body[data-page="home"] .split-hero .hero-copy h1 {
  max-width: 720px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 3.45vw, 4.05rem);
  line-height: 1.05;
}

.split-hero .hero-copy p {
  max-width: 610px;
  font-size: 1.03rem;
}

body:not([data-page="home"]) .split-hero .hero-copy p {
  max-width: 650px;
}

body[data-page="home"] .split-hero .hero-copy p {
  max-width: 710px;
  font-size: clamp(1.08rem, 1.15vw, 1.22rem);
  line-height: 1.65;
}

.about-hero,
.services-hero,
.gallery-hero {
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1fr);
}

.about-hero .hero-copy {
  padding-left: clamp(32px, 5vw, 54px);
}

.accent-line,
.section-rule {
  display: block;
  width: 40px;
  height: 3px;
  margin-bottom: 28px;
  background: var(--yellow);
}

.section-rule {
  width: 44px;
  margin: 14px auto 0;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin: 22px 0 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 166px;
  min-height: 50px;
  padding: 0 28px;
  border: 2px solid var(--ink);
  border-radius: var(--pill);
  font-weight: 800;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease;
}

.button:hover,
.project-card button:hover,
.text-link:hover,
.footer-button:hover,
.send-button:hover {
  transform: translateY(-2px);
}

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

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

.trust-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  align-items: center;
  max-width: 670px;
  width: 100%;
  font-size: 0.82rem;
  font-weight: 800;
}

body[data-page="home"] .trust-row {
  max-width: 740px;
  gap: 22px;
  font-size: 0.93rem;
}

.trust-row span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 36px;
}

body[data-page="home"] .trust-row span {
  gap: 13px;
  min-height: 44px;
}

.mini-icon {
  position: relative;
  display: inline-block;
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
}

body[data-page="home"] .trust-row .mini-icon {
  transform: scale(1.16);
  transform-origin: center;
}

.mini-icon::before,
.mini-icon::after {
  position: absolute;
  content: "";
}

.mini-icon.shield::before {
  inset: 3px 6px;
  border: 2px solid var(--ink);
  border-radius: 6px 6px 10px 10px;
  transform: perspective(20px) rotateX(-8deg);
}

.mini-icon.shield::after {
  left: 11px;
  top: 9px;
  width: 7px;
  height: 4px;
  border-left: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  transform: rotate(-45deg);
}

.mini-icon.home::before {
  left: 4px;
  bottom: 4px;
  width: 18px;
  height: 15px;
  border: 2px solid var(--ink);
  border-top: 0;
}

.mini-icon.home::after {
  left: 4px;
  top: 4px;
  width: 17px;
  height: 17px;
  border-left: 2px solid var(--ink);
  border-top: 2px solid var(--ink);
  transform: rotate(45deg);
}

.mini-icon.pin::before {
  left: 7px;
  top: 2px;
  width: 13px;
  height: 13px;
  border: 2px solid var(--ink);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
}

.mini-icon.pin::after {
  left: 12px;
  top: 7px;
  width: 4px;
  height: 4px;
  background: var(--ink);
  border-radius: 50%;
}

.section {
  padding: 70px 0;
}

.section.compact {
  padding: 44px 0;
}

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

.section-title.center {
  text-align: center;
}

.icon-card-grid,
.reason-grid,
.choose-grid,
.project-grid {
  display: grid;
  gap: 24px;
}

.icon-card-grid.six {
  grid-template-columns: repeat(6, 1fr);
}

.icon-card-grid.four,
.reason-grid {
  grid-template-columns: repeat(4, 1fr);
}

.icon-card-grid.three,
.project-grid.three {
  grid-template-columns: repeat(3, 1fr);
}

.icon-card,
.project-card,
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--soft-shadow);
}

.icon-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 145px;
  padding: 22px 16px;
  text-align: center;
}

.icon-card p {
  max-width: 260px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 0.93rem;
}

.service-summary {
  min-height: 150px;
}

.feature-icon {
  position: relative;
  display: block;
  width: 58px;
  height: 58px;
  margin: 0 auto 12px;
}

.feature-icon::before,
.feature-icon::after {
  position: absolute;
  content: "";
}

.feature-icon.roller::before {
  left: 12px;
  top: 8px;
  width: 32px;
  height: 11px;
  background: var(--yellow);
  border: 3px solid var(--ink);
  border-radius: 3px;
}

.feature-icon.roller::after {
  left: 26px;
  top: 19px;
  width: 10px;
  height: 31px;
  border-left: 3px solid var(--ink);
  border-bottom: 3px solid var(--ink);
  border-radius: 0 0 0 8px;
}

.feature-icon.house::before {
  left: 13px;
  bottom: 8px;
  width: 30px;
  height: 25px;
  border: 3px solid var(--ink);
  border-top: 0;
}

.feature-icon.house::after {
  left: 12px;
  top: 11px;
  width: 30px;
  height: 30px;
  border-left: 3px solid var(--ink);
  border-top: 3px solid var(--ink);
  transform: rotate(45deg);
}

.feature-icon.building::before {
  left: 13px;
  top: 10px;
  width: 30px;
  height: 40px;
  border: 3px solid var(--ink);
}

.feature-icon.building::after {
  left: 22px;
  top: 18px;
  width: 4px;
  height: 4px;
  background: var(--ink);
  box-shadow: 12px 0 0 var(--ink), 0 11px 0 var(--ink), 12px 11px 0 var(--ink), 0 22px 0 var(--ink);
}

.feature-icon.door::before {
  left: 18px;
  top: 8px;
  width: 24px;
  height: 42px;
  border: 3px solid var(--ink);
}

.feature-icon.door::after {
  right: 18px;
  top: 28px;
  width: 4px;
  height: 4px;
  background: var(--ink);
  border-radius: 50%;
}

.feature-icon.brush::before {
  left: 12px;
  top: 10px;
  width: 15px;
  height: 28px;
  background: var(--yellow);
  border: 3px solid var(--ink);
  border-radius: 4px;
  transform: rotate(30deg);
}

.feature-icon.brush::after {
  left: 30px;
  top: 28px;
  width: 8px;
  height: 24px;
  background: var(--ink);
  border-radius: 6px;
  transform: rotate(30deg);
}

.feature-icon.paint::before {
  left: 14px;
  top: 14px;
  width: 30px;
  height: 28px;
  background: var(--yellow);
  border: 3px solid var(--ink);
  border-radius: 4px 4px 10px 10px;
}

.feature-icon.paint::after {
  left: 20px;
  top: 8px;
  width: 20px;
  height: 12px;
  border: 3px solid var(--ink);
  border-bottom: 0;
  border-radius: 50% 50% 0 0;
}

.feature-icon.clock::before {
  inset: 8px;
  border: 3px solid var(--ink);
  border-radius: 50%;
}

.feature-icon.clock::after {
  left: 29px;
  top: 17px;
  width: 12px;
  height: 16px;
  border-left: 3px solid var(--yellow);
  border-bottom: 3px solid var(--yellow);
}

.feature-icon.sparkle::before {
  left: 17px;
  top: 12px;
  width: 22px;
  height: 22px;
  background: var(--yellow);
  transform: rotate(45deg) skew(8deg, 8deg);
}

.feature-icon.sparkle::after {
  right: 9px;
  top: 6px;
  width: 12px;
  height: 12px;
  background: var(--yellow);
  transform: rotate(45deg);
}

.feature-icon.chat::before,
.feature-icon.swatch::before {
  inset: 10px;
  border: 3px solid var(--ink);
  border-radius: 50%;
}

.feature-icon.chat::after {
  left: 19px;
  top: 27px;
  width: 5px;
  height: 5px;
  background: var(--yellow);
  border-radius: 50%;
  box-shadow: 9px 0 0 var(--yellow), 18px 0 0 var(--yellow);
}

.feature-icon.swatch::after {
  left: 18px;
  top: 15px;
  width: 10px;
  height: 30px;
  background: var(--yellow);
  border: 3px solid var(--ink);
  box-shadow: 14px 0 0 var(--white), 14px 0 0 3px var(--ink);
}

.reason-grid article,
.choose-grid article {
  padding: 8px 24px;
  text-align: center;
  border-right: 1px solid var(--line);
}

.reason-grid article:last-child,
.choose-grid article:last-child {
  border-right: 0;
}

.reason-grid p,
.choose-grid p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.choose-grid {
  grid-template-columns: repeat(5, 1fr);
}

.project-grid.gallery {
  grid-template-columns: repeat(3, 1fr);
}

.project-card {
  overflow: hidden;
}

.project-card img {
  width: 100%;
  aspect-ratio: 2.1 / 1;
  object-fit: cover;
}

.project-card div {
  padding: 15px 18px 18px;
}

.project-card h3 {
  margin-bottom: 6px;
}

.project-card p {
  margin-bottom: 4px;
  font-size: 0.92rem;
}

.project-card button,
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 30px;
  padding: 0;
  color: var(--ink);
  background: transparent;
  border: 0;
  font-weight: 800;
  transition: transform 160ms ease;
}

.project-card button span,
.text-link span {
  color: var(--yellow-deep);
  font-size: 1.25rem;
}

.quote-band {
  padding: 34px 0 42px;
  background: var(--white);
}

.quote-band .container {
  padding: 28px clamp(24px, 4vw, 70px);
  text-align: center;
  background: #f8f7f4;
  border-radius: 12px;
  box-shadow: inset 0 0 34px rgba(0, 0, 0, 0.035);
}

.quote-band p {
  max-width: 760px;
  margin: 0 auto 12px;
  font-size: clamp(1.25rem, 2vw, 1.62rem);
  font-weight: 800;
  line-height: 1.28;
}

.quote-band span {
  color: var(--yellow);
  font-size: 2.5rem;
  line-height: 0;
}

.site-footer {
  padding: 44px 0 24px;
  color: var(--white);
  background: var(--black);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.9fr 1.35fr;
  gap: 48px;
  align-items: center;
}

.site-footer h2 {
  margin-bottom: 10px;
  font-size: 1.45rem;
}

.site-footer p {
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.86);
}

.site-footer a {
  color: inherit;
}

.site-footer p a,
.site-footer cite {
  color: var(--yellow);
  font-style: normal;
}

.footer-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: min(300px, 100%);
  min-height: 44px;
  color: var(--ink) !important;
  background: var(--white);
  border-radius: var(--pill);
  font-weight: 800;
  transition: transform 160ms ease;
}

.site-footer address {
  display: grid;
  gap: 10px;
  padding: 0 48px;
  border-left: 1px solid rgba(255, 255, 255, 0.28);
  border-right: 1px solid rgba(255, 255, 255, 0.28);
  font-style: normal;
  font-size: 1.05rem;
}

.site-footer blockquote {
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.22rem;
  line-height: 1.38;
}

.site-footer cite {
  display: block;
  margin-top: 10px;
  font-weight: 800;
}

.copyright {
  width: min(var(--container), calc(100% - 64px));
  margin: 36px auto 0;
  text-align: center;
  color: rgba(255, 255, 255, 0.82);
}

.service-detail {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 52px;
  align-items: center;
  padding: 28px 0;
  border-top: 2px solid #1d1d1d;
}

.service-detail.reverse {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}

.carousel {
  position: relative;
}

.carousel-window {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1.72 / 1;
  background: var(--soft);
  border-radius: 16px;
}

.carousel-window img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 220ms ease;
}

.carousel-window img.is-active {
  opacity: 1;
}

.carousel-arrow,
.small-arrow,
.floating-arrow,
.modal-arrow,
.modal-close {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 50%;
  box-shadow: var(--soft-shadow);
  font-size: 1.1rem;
  font-weight: 900;
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.carousel-prev {
  left: 14px;
}

.carousel-next {
  right: 14px;
}

.carousel-dots,
.testimonial-dots,
.modal-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 14px;
}

.carousel-dots button,
.testimonial-dots span,
.modal-dots button {
  width: 10px;
  height: 10px;
  padding: 0;
  background: #d4d4d4;
  border: 0;
  border-radius: 50%;
}

.carousel-dots button.is-active,
.testimonial-dots span.is-active,
.modal-dots button.is-active {
  background: var(--yellow);
}

.service-heading-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: start;
}

.service-heading-row h2 {
  margin-bottom: 18px;
  color: var(--yellow-deep);
}

.carousel-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 800;
}

.small-arrow {
  width: 36px;
  height: 36px;
}

.service-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
}

.service-text p,
.service-text li {
  color: var(--muted);
  font-size: 0.94rem;
}

.service-text ul,
.tick-list {
  padding-left: 20px;
  margin-top: 0;
}

.service-text .text-link {
  margin-top: 8px;
}

.spotlight-card {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 34px;
  align-items: center;
  margin-top: 26px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--soft-shadow);
}

.spotlight-card img {
  width: 100%;
  height: 100%;
  min-height: 240px;
  object-fit: cover;
}

.spotlight-card div {
  padding: 26px 30px 26px 0;
}

.spotlight-card h2 {
  margin-bottom: 10px;
  font-size: 1.75rem;
}

.spotlight-card .kicker {
  margin-bottom: 6px;
  font-weight: 800;
}

.tick-list li::marker {
  color: var(--yellow-deep);
}

.testimonials-page {
  min-height: calc(100vh - var(--header-h));
  padding: 78px 0 58px;
}

.testimonial-heading {
  display: grid;
  grid-template-columns: 1.1fr 0.8fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 54px;
}

.testimonial-heading h1,
.contact-info h1 {
  margin-bottom: 16px;
}

.testimonial-heading p {
  max-width: 610px;
  font-size: 1.12rem;
}

.rating-panel {
  justify-self: end;
  max-width: 360px;
}

.rating-panel strong {
  display: inline-block;
  margin-right: 12px;
  font-size: 3.2rem;
  line-height: 1;
}

.stars {
  color: var(--yellow);
  letter-spacing: 2px;
  white-space: nowrap;
}

.rating-panel .stars {
  font-size: 1.95rem;
}

.testimonial-carousel {
  position: relative;
}

.testimonial-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 78px) / 4);
  gap: 26px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.testimonial-track::-webkit-scrollbar {
  display: none;
}

.testimonial-card {
  min-height: 320px;
  padding: 34px 32px;
  scroll-snap-align: start;
}

.testimonial-card > p {
  min-height: 138px;
  margin: 18px 0 22px;
  line-height: 1.65;
}

.testimonial-card .section-rule {
  margin: 0 0 28px;
}

.client {
  display: flex;
  align-items: center;
  gap: 14px;
}

.client img {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  object-fit: cover;
}

.client strong,
.client span {
  display: block;
}

.client span {
  color: var(--muted);
}

.floating-arrow {
  position: absolute;
  top: 42%;
  z-index: 2;
}

.floating-arrow.prev {
  left: 24px;
}

.floating-arrow.next {
  right: 24px;
}

.testimonial-dots {
  margin-top: 34px;
}

.contact-page {
  padding: 78px 0 62px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.2fr 0.85fr;
  gap: 52px;
  align-items: start;
}

.contact-info {
  padding-right: 28px;
  border-right: 1px solid var(--line);
}

.contact-info > p {
  max-width: 420px;
  font-size: 1.06rem;
}

.contact-list {
  display: grid;
  gap: 24px;
  margin-top: 32px;
}

.contact-list article {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 16px;
  align-items: start;
}

.contact-list h2 {
  margin-bottom: 4px;
  font-size: 1rem;
}

.contact-list p {
  margin-bottom: 2px;
}

.contact-icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  color: var(--yellow);
  background: #fbf3dc;
  border-radius: 50%;
}

.contact-icon::before {
  font-weight: 900;
  content: "";
}

.contact-icon.phone::before {
  content: "T";
}

.contact-icon.mail::before {
  content: "M";
}

.contact-icon.location::before {
  content: "P";
}

.contact-icon.hours::before {
  content: "H";
}

.contact-form {
  display: grid;
  gap: 16px;
}

.contact-form h2 {
  margin-bottom: 2px;
  font-size: 1.75rem;
}

.contact-form > p {
  margin-bottom: 18px;
}

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

.contact-form label {
  display: grid;
  gap: 7px;
}

.contact-form label span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  min-height: 54px;
  padding: 14px 18px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid #d1d1d1;
  border-radius: 7px;
  outline: 0;
}

.contact-form textarea {
  min-height: 158px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--yellow-deep);
  box-shadow: 0 0 0 4px rgba(247, 194, 27, 0.18);
}

.contact-form input[name="name"]::placeholder,
.contact-form input[name="phone"]::placeholder,
.contact-form input[name="email"]::placeholder,
.contact-form input[name="subject"]::placeholder,
.contact-form textarea::placeholder {
  color: #777;
}

.send-button {
  min-height: 54px;
  color: var(--ink);
  background: var(--yellow);
  border: 0;
  border-radius: 7px;
  font-weight: 900;
  transition: transform 160ms ease;
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: var(--muted);
  font-weight: 800;
}

.contact-photo {
  overflow: hidden;
  border-radius: 10px;
}

.contact-photo img {
  width: 100%;
  height: 542px;
  object-fit: cover;
}

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

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

.quote-options-modal {
  position: fixed;
  z-index: 110;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(0, 0, 0, 0.72);
}

.quote-options-panel {
  position: relative;
  width: min(480px, 100%);
  padding: 42px 36px 36px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.quote-options-panel .accent-line {
  margin-bottom: 18px;
}

.quote-options-panel h2 {
  max-width: 360px;
  margin-bottom: 28px;
  font-size: clamp(1.7rem, 4vw, 2.15rem);
}

.quote-options-close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 50%;
  box-shadow: var(--soft-shadow);
  font-size: 1.25rem;
  font-weight: 900;
}

.quote-options-actions {
  display: grid;
  gap: 14px;
}

.quote-option-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 14px 18px;
  border: 2px solid var(--ink);
  border-radius: var(--pill);
  font-size: 1.02rem;
  font-weight: 900;
  text-align: center;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease;
}

.quote-option-button:hover {
  transform: translateY(-2px);
}

.quote-option-primary {
  color: var(--white);
  background: var(--black);
}

.quote-option-secondary {
  color: var(--ink);
  background: var(--white);
}

.project-modal {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 72px 92px;
  background: rgba(0, 0, 0, 0.72);
}

.modal-panel {
  position: relative;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 42px;
  width: min(1240px, 100%);
  max-height: calc(100vh - 112px);
  padding: 30px 26px 52px 40px;
  overflow: auto;
  background: var(--white);
  border-radius: 22px;
}

.modal-close {
  position: absolute;
  top: 24px;
  left: 22px;
  z-index: 2;
}

.modal-copy {
  padding-top: 60px;
}

.modal-copy .kicker {
  margin-bottom: 18px;
  color: var(--yellow-deep);
  font-weight: 800;
}

.modal-copy h2 {
  margin-bottom: 26px;
  font-size: clamp(2rem, 3vw, 3rem);
}

.modal-copy p {
  margin-bottom: 34px;
}

.modal-facts {
  display: grid;
  gap: 26px;
  margin: 0;
}

.modal-facts > div {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 12px;
}

.modal-facts dt {
  font-weight: 900;
}

.modal-facts dd {
  margin: 4px 0 0;
  color: var(--muted);
}

.fact-icon {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  color: var(--yellow);
  font-weight: 900;
}

.modal-gallery {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 10px;
}

.modal-gallery img {
  width: 100%;
  height: 100%;
  min-height: 160px;
  object-fit: cover;
  border-radius: 6px;
}

.modal-gallery img:nth-child(1),
.modal-gallery img:nth-child(2) {
  grid-column: span 6;
  min-height: 300px;
}

.modal-gallery img:nth-child(3) {
  grid-column: span 4;
}

.modal-gallery img:nth-child(4) {
  grid-column: span 3;
}

.modal-gallery img:nth-child(5) {
  grid-column: span 5;
}

.modal-gallery img:nth-child(6) {
  grid-column: span 5;
}

.modal-gallery img:nth-child(7) {
  grid-column: span 7;
}

.modal-dots {
  grid-column: 2;
  margin-top: 18px;
}

.modal-arrow {
  position: fixed;
  top: 50%;
  z-index: 101;
  transform: translateY(-50%);
}

.modal-arrow.prev {
  left: 24px;
}

.modal-arrow.next {
  right: 24px;
}

@media (max-width: 1180px) {
  .site-header {
    padding-left: 22px;
    padding-right: 22px;
  }

  .site-nav {
    gap: 16px;
    font-size: 0.88rem;
  }

  .enquire-button {
    padding: 0 18px;
  }

  .icon-card-grid.six {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .testimonial-track {
    grid-auto-columns: calc((100% - 26px) / 2);
  }

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

  .contact-photo {
    grid-column: 1 / -1;
  }

  .contact-photo img {
    height: 360px;
  }
}

@media (max-width: 900px) {
  :root {
    --header-h: 78px;
  }

  .container {
    width: min(100% - 36px, var(--container));
  }

  .site-header {
    min-height: var(--header-h);
  }

  .brand img {
    width: min(240px, calc(100vw - 120px));
    max-height: none;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    top: var(--header-h);
    left: 12px;
    right: 12px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    max-height: calc(100vh - var(--header-h) - 20px);
    padding: 14px;
    overflow: auto;
    background: var(--black);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 16px;
    box-shadow: var(--shadow);
  }

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

  .site-nav a {
    justify-content: space-between;
    min-height: 48px;
    padding: 0 8px;
  }

  .site-nav a:not(.enquire-button)::after {
    display: none;
  }

  .site-nav .social-link {
    justify-content: flex-start;
  }

  .enquire-button {
    justify-content: center !important;
    margin-top: 10px;
  }

  .split-hero,
  .about-hero,
  .services-hero,
  .gallery-hero,
  .service-detail,
  .service-detail.reverse,
  .spotlight-card,
  .testimonial-heading,
  .contact-grid,
  .footer-grid,
  .modal-panel {
    grid-template-columns: 1fr;
  }

  body[data-page="home"] .split-hero {
    grid-template-columns: 1fr;
    width: 100%;
    min-height: auto;
  }

  body:not([data-page="home"]) .split-hero {
    grid-template-columns: 1fr;
    width: 100%;
    min-height: auto;
  }

  .split-hero .hero-copy {
    padding: 44px 24px 52px;
  }

  body[data-page="home"] .split-hero .hero-copy {
    padding: 44px 24px 52px;
  }

  body:not([data-page="home"]) .split-hero .hero-copy {
    padding: 44px 24px 52px;
  }

  .split-hero .hero-image {
    min-height: 330px;
  }

  .about-hero .hero-image {
    order: -1;
  }

  .icon-card-grid.four,
  .reason-grid,
  .choose-grid,
  .project-grid.gallery,
  .project-grid.three,
  .icon-card-grid.three {
    grid-template-columns: repeat(2, 1fr);
  }

  .reason-grid article,
  .choose-grid article {
    border-right: 0;
  }

  .service-detail {
    gap: 28px;
    padding: 32px 0;
  }

  .service-detail.reverse .carousel {
    order: -1;
  }

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

  .spotlight-card div {
    padding: 0 24px 26px;
  }

  .rating-panel {
    justify-self: start;
  }

  .contact-info {
    padding-right: 0;
    border-right: 0;
  }

  .site-footer address {
    padding: 26px 0;
    border-left: 0;
    border-right: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.22);
    border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  }

  .project-modal {
    padding: 54px 18px;
  }

  .quote-options-panel {
    padding: 38px 24px 26px;
    border-radius: 16px;
  }

  .modal-panel {
    max-height: calc(100vh - 74px);
    padding: 26px 18px 54px;
  }

  .modal-copy {
    padding-top: 52px;
  }

  .modal-gallery img:nth-child(n) {
    grid-column: span 6;
    min-height: 170px;
  }

  .modal-dots {
    grid-column: 1;
  }

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

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

@media (max-width: 640px) {
  body {
    font-size: 15px;
  }

  h1 {
    font-size: clamp(2.35rem, 11vw, 3.05rem);
  }

  body[data-page="home"] .split-hero .hero-copy h1 {
    font-size: clamp(2.45rem, 10.5vw, 3.05rem);
  }

  h2 {
    font-size: clamp(1.7rem, 8vw, 2.2rem);
  }

  .container {
    width: min(100% - 28px, var(--container));
  }

  .section {
    padding: 52px 0;
  }

  .section.compact {
    padding: 34px 0;
  }

  .button-row {
    gap: 12px;
  }

  .button,
  .footer-button {
    width: 100%;
  }

  .trust-row,
  .icon-card-grid.six,
  .icon-card-grid.four,
  .reason-grid,
  .choose-grid,
  .project-grid.gallery,
  .project-grid.three,
  .icon-card-grid.three,
  .form-row {
    grid-template-columns: 1fr;
  }

  .testimonial-track {
    grid-auto-columns: 100%;
  }

  .trust-row {
    gap: 8px;
  }

  .icon-card {
    min-height: 132px;
  }

  .service-heading-row {
    flex-direction: column;
  }

  .carousel-meta {
    width: 100%;
    justify-content: space-between;
  }

  .small-arrow {
    display: none;
  }

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

  .floating-arrow {
    display: none;
  }

  .contact-page,
  .testimonials-page {
    padding: 52px 0;
  }

  .contact-list article {
    grid-template-columns: 50px 1fr;
  }

  .contact-icon {
    width: 50px;
    height: 50px;
  }

  .modal-gallery {
    grid-template-columns: 1fr;
  }

  .modal-gallery img:nth-child(n) {
    grid-column: auto;
    min-height: 190px;
  }
}
