/* =========================================================
   Home Painting Solutions — Theme Stylesheet
   1. Variables & reset      6. Process
   2. Buttons & helpers      7. Projects
   3. Header                 8. Testimonials / Brands
   4. Hero                   9. CTA / FAQ
   5. Services / Stats      10. Footer / Responsive
   ========================================================= */

/* ---------- 1. Variables & reset ---------- */
:root {
  --green-900: #1d3b2a;
  --green-800: #244733;
  --green-700: #2d5540;
  --orange: #e4622c;
  --orange-dk: #c8501f;
  --gold: #c69a5c;
  --cream: #faf6ef;
  --cream-2: #f3ede2;
  --white: #ffffff;
  --ink: #1f2a24;
  --muted: #6d7b72;
  --line: #e5ddd0;

  --font-body:
    "DM Sans", system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
  --font-head: "Fraunces", Georgia, "Times New Roman", serif;
  --font-script: "Caveat", cursive;

  --radius: 14px;
  --shadow: 0 10px 30px rgba(29, 59, 42, 0.08);
  --container: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}
button {
  font: inherit;
  cursor: pointer;
  border: 0;
  background: none;
  color: inherit;
}
h1,
h2,
h3,
h4 {
  font-family: var(--font-head);
  font-weight: 500;
  margin: 0 0 0.5em;
  line-height: 1.15;
}
p {
  margin: 0 0 1em;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 20px;
}
.section {
  padding-block: 80px;
}
.icon {
  width: 1em;
  height: 1em;
  fill: currentColor;
}

/* ---------- 2. Buttons & shared bits ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 24px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.2px;
  transition:
    background 0.25s,
    color 0.25s,
    transform 0.25s,
    border-color 0.25s;
  white-space: nowrap;
}
.btn:hover {
  transform: translateY(-2px);
}
.btn .icon {
  font-size: 15px;
}
.btn-primary {
  background: var(--orange);
  color: #fff;
}
.btn-primary:hover {
  background: var(--orange-dk);
}
.btn-dark {
  background: var(--green-900);
  color: #fff;
}
.btn-dark:hover {
  background: var(--green-700);
}
.btn-outline {
  border: 1px solid var(--green-900);
  color: var(--green-900);
}
.btn-outline:hover {
  background: var(--green-900);
  color: #fff;
}
.cta-section .btn-outline {
  border-color: #fff;
  color: #fff;
}
.cta-section .btn-outline:hover {
  background: #fff;
  color: var(--green-900);
}

.eyebrow,
.section-label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 14px;
  font-weight: 500;
}
.section-label {
  color: var(--gold);
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 30px;
  margin-bottom: 42px;
}
.section-head h2 {
  font-size: clamp(26px, 3.2vw, 38px);
  color: var(--green-900);
}
.section-head .section-text {
  color: var(--muted);
  max-width: 520px;
  margin: 0;
  font-size: 14px;
}
.section-head.centered {
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.section-head.centered .section-text {
  max-width: 560px;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--green-900);
  border-bottom: 1px solid var(--green-900);
  padding-bottom: 3px;
  transition:
    gap 0.25s,
    color 0.25s;
}
.link-arrow:hover {
  gap: 14px;
  color: var(--orange);
  border-color: var(--orange);
}
.link-arrow.small {
  border: 0;
  font-size: 12.5px;
  padding: 0;
}

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

/* ---------- 3. Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--cream);
  border-bottom: 1px solid transparent;
  transition:
    box-shadow 0.3s,
    border-color 0.3s,
    background 0.3s;
}
.site-header.is-stuck {
  box-shadow: 0 4px 20px rgba(29, 59, 42, 0.07);
  border-color: var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 28px;
  height: 74px;
}

/* Brand logo (assets/images/logo.webp, transparent gold mark).
   Sized by height only so the 2:1 artwork keeps its proportions. */
.logo {
  display: flex;
  align-items: center;
  flex: none;
  margin-right: auto;
}
.logo img {
  height: 56px;
  width: auto;
}
.logo-footer img {
  height: 84px;
}
@media (max-width: 900px) {
  .logo img {
    height: 46px;
  }
  .logo-footer img {
    height: 72px;
  }
}

.main-nav > ul {
  display: flex;
  align-items: center;
  gap: 26px;
}
.main-nav a {
  position: relative;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 8px 0;
  transition: color 0.2s;
}
.main-nav a:hover,
.main-nav a.is-active {
  color: var(--orange);
}
.caret {
  width: 6px;
  height: 6px;
  border-right: 1.6px solid currentColor;
  border-bottom: 1.6px solid currentColor;
  transform: rotate(45deg) translate(-2px, -2px);
}

.has-dropdown {
  position: relative;
}
.dropdown {
  position: absolute;
  top: 100%;
  left: -18px;
  min-width: 230px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 8px;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: 0.25s;
}
.has-dropdown:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown a {
  display: block;
  padding: 9px 12px;
  border-radius: 6px;
  font-size: 13.5px;
}
.dropdown a:hover {
  background: var(--cream-2);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}
.header-phone {
  display: flex;
  align-items: center;
  gap: 9px;
}
.phone-icon {
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  color: var(--orange);
}
.phone-icon svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}
.phone-text {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}
.phone-text strong {
  font-size: 13.5px;
  color: var(--green-900);
}
.phone-text small {
  font-size: 10.5px;
  color: var(--muted);
}

.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--green-900);
  border-radius: 2px;
  transition: 0.3s;
}
.nav-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ---------- 4. Hero ---------- */
.hero {
  background: var(--cream);
  overflow: hidden;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 40px;
  align-items: center;
  padding-block: 56px 64px;
}
.hero h1 {
  font-size: clamp(38px, 5.4vw, 62px);
  color: var(--green-900);
  margin-bottom: 20px;
}
.hero h1 .accent {
  color: var(--orange);
}
.hero-text {
  color: var(--muted);
  max-width: 440px;
  font-size: 14.5px;
}
.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 26px 0 40px;
}

.hero-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.hero-features li {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.hf-icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  background: rgba(228, 98, 44, 0.1);
  color: var(--orange);
  border-radius: 9px;
}
.hf-icon .icon {
  font-size: 17px;
}
.hf-text {
  font-size: 11.5px;
  font-weight: 500;
  line-height: 1.45;
  color: var(--green-900);
}

.hero-visual {
  position: relative;
}
.hero-img {
  width: 100%;
  height: 470px;
  object-fit: cover;
  border-radius: 200px 200px 18px 18px;
  background: linear-gradient(140deg, var(--cream-2), #dfe7de);
}
.hero-script {
  position: absolute;
  top: 46px;
  left: -22px;
  font-family: var(--font-script);
  font-size: 26px;
  line-height: 1.1;
  color: var(--green-900);
  background: var(--cream);
  padding: 10px 16px;
  border-radius: 12px;
  max-width: 170px;
  transform: rotate(-5deg);
}
.hero-badge {
  position: absolute;
  top: 60px;
  right: 34px;
  background: rgba(250, 246, 239, 0.92);
  color: var(--green-900);
  font-family: var(--font-head);
  font-size: 17px;
  line-height: 1.25;
  padding: 16px 20px;
  border-radius: 10px;
  box-shadow: var(--shadow);
}

/* ---------- 5. Services ---------- */
.services-section {
  background: var(--white);
}

.service-card {
  position: relative;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}
.sc-media {
  height: 165px;
  background: var(--cream-2);
  overflow: hidden;
}
.sc-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.service-card:hover .sc-media img {
  transform: scale(1.06);
}
.sc-badge {
  position: absolute;
  top: 140px;
  left: 18px;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  background: var(--orange);
  color: #fff;
  border-radius: 11px;
  box-shadow: 0 6px 16px rgba(228, 98, 44, 0.35);
}
.sc-badge .icon {
  font-size: 21px;
}
.sc-body {
  padding: 34px 20px 24px;
}
.sc-body h3 {
  font-size: 17px;
  color: var(--green-900);
}
.sc-body p {
  font-size: 13px;
  color: var(--muted);
  min-height: 60px;
}

/* ---------- Stats ---------- */
.stats-section {
  display: grid;
  grid-template-columns: 300px 1fr;
  background: var(--green-800);
  color: #fff;
}
.stats-media img {
  width: 100%;
  height: 100%;
  min-height: 210px;
  object-fit: cover;
}
.stats-content {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 44px 5vw 44px 40px;
}
.stats-script {
  font-family: var(--font-script);
  font-size: 24px;
  line-height: 1.2;
  color: var(--gold);
  margin: 0;
  flex: none;
}
.stats-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  flex: 1;
  text-align: center;
}
.st-icon {
  display: inline-grid;
  place-items: center;
  color: var(--gold);
  margin-bottom: 10px;
}
.st-icon .icon {
  font-size: 26px;
}
.st-value {
  display: block;
  font-family: var(--font-head);
  font-size: 30px;
  font-weight: 500;
}
.st-label {
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.72);
}

/* ---------- 6. Process ---------- */
.process-section {
  background: var(--cream);
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.process-step {
  position: relative;
}
.process-step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 33px;
  left: calc(50% + 52px);
  right: calc(-50% + 52px);
  border-top: 1.5px dashed var(--line);
}
.ps-icon {
  width: 66px;
  height: 66px;
  margin: 0 auto 16px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--cream-2);
  color: var(--green-900);
  border: 1px solid var(--line);
  transition: 0.3s;
}
.ps-icon .icon {
  font-size: 25px;
}
.process-step:hover .ps-icon {
  background: var(--orange);
  color: #fff;
  border-color: var(--orange);
}
.ps-no {
  display: block;
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--gold);
  margin-bottom: 8px;
}
.process-step h3 {
  font-size: 16px;
  color: var(--green-900);
}
.process-step p {
  font-size: 12.5px;
  color: var(--muted);
  margin: 0;
}

/* ---------- 7. Projects ---------- */
.projects-section {
  background: var(--white);
}
.project-card {
  display: block;
}
.pc-media {
  position: relative;
  height: 190px;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--cream-2);
  margin-bottom: 14px;
}
.pc-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.project-card:hover .pc-media img {
  transform: scale(1.07);
}
.pc-zoom {
  position: absolute;
  inset: auto 14px 14px auto;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  background: var(--orange);
  color: #fff;
  border-radius: 50%;
  opacity: 0;
  transform: translateY(10px);
  transition: 0.3s;
}
.project-card:hover .pc-zoom {
  opacity: 1;
  transform: translateY(0);
}
.project-card h3 {
  font-size: 15px;
  margin-bottom: 2px;
  color: var(--green-900);
}
.project-card p {
  font-size: 12.5px;
  color: var(--muted);
  margin: 0;
}

/* ---------- 8. Testimonials ---------- */
.testimonials-section {
  background: var(--cream);
}
.slider-nav {
  display: flex;
  gap: 10px;
}
.slider-btn {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  transition: 0.25s;
}
.slider-btn svg {
  width: 17px;
  height: 17px;
  fill: var(--green-900);
  transition: fill 0.25s;
}
.slider-btn:hover {
  background: var(--orange);
  border-color: var(--orange);
}
.slider-btn:hover svg {
  fill: #fff;
}

.testi-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 48px) / 3);
  gap: 24px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  padding-bottom: 6px;
  scrollbar-width: none;
}
.testi-track::-webkit-scrollbar {
  display: none;
}
.testi-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 24px;
  scroll-snap-align: start;
}
.tc-quote {
  color: var(--orange);
}
.tc-quote .icon {
  font-size: 26px;
}
.tc-text {
  font-size: 13.5px;
  color: var(--ink);
  margin: 10px 0 22px;
}
.tc-foot {
  display: flex;
  align-items: center;
  gap: 12px;
}
.tc-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--cream-2);
  flex: none;
}
.tc-person {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
  margin-right: auto;
}
.tc-person strong {
  font-size: 13.5px;
  color: var(--green-900);
}
.tc-person small {
  font-size: 11.5px;
  color: var(--muted);
}
.tc-stars {
  color: #f0a500;
  display: flex;
  gap: 2px;
}
.tc-stars .icon {
  font-size: 13px;
}

/* ---------- Brands ---------- */
.brands-section {
  background: var(--white);
}

/* Endless logo marquee. The track holds two identical copies of the
   list, so sliding it exactly -50% lands on a matching frame and the
   loop is invisible. Edges fade out via a mask. */
.brand-marquee {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent,
    #000 70px,
    #000 calc(100% - 70px),
    transparent
  );
  mask-image: linear-gradient(
    90deg,
    transparent,
    #000 70px,
    #000 calc(100% - 70px),
    transparent
  );
}
.brands-head {
  margin-bottom: 48px;
}
.brands-head h2 {
  color: var(--gold);
  font-size: clamp(30px, 3.6vw, 42px);
}

.brand-track {
  display: flex;
  width: max-content;
  gap: 36px;
  /* room for the cards to lift on hover without the mask clipping them */
  padding: 16px 0 22px;
  animation: brand-scroll 40s linear infinite;
}
.brand-marquee:hover .brand-track {
  animation-play-state: paused;
}

@keyframes brand-scroll {
  from {
    transform: translateX(0);
  }
  /* half the track = one full copy of the list, plus its trailing gap */
  to {
    transform: translateX(calc(-50% - 18px));
  }
}

.brand-track li {
  position: relative;
  flex: 0 0 200px;
  height: 160px;
  display: grid;
  place-items: center;
  background: #fff;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 8px 28px rgba(29, 59, 42, 0.09);
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}
.brand-track li:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 36px rgba(29, 59, 42, 0.14);
}
.brand-track img {
  max-height: 86px;
  max-width: 100%;
  width: auto;
  object-fit: contain;
  /* Some official logos ship as JPG/PNG on a white plate; multiply drops
     that white into the card so every logo sits flush. */
  mix-blend-mode: multiply;
}
.brand-fallback {
  font-family: var(--font-head);
  font-size: 24px;
  font-weight: 600;
  color: var(--green-900);
  text-align: center;
  letter-spacing: 0.01em;
}

@media (prefers-reduced-motion: reduce) {
  .brand-track {
    animation: none;
  }
  .brand-marquee {
    overflow-x: auto;
  }
}

/* ---------- 9. CTA ---------- */
.cta-section {
  padding-block: 0 0;
  background: var(--cream);
}
.cta-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  background: var(--green-800);
  color: #fff;
  border-radius: var(--radius);
  padding: 30px 36px;
  margin-bottom: 80px;
}
.cta-text h2 {
  font-size: 23px;
  margin-bottom: 4px;
}
.cta-text p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
}
.cta-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ---------- FAQ ---------- */
.faq-section {
  background: var(--cream);
  padding-top: 0;
}
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 24px;
}
.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
}
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  text-align: left;
  padding: 15px 18px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--green-900);
}
.faq-sign {
  position: relative;
  width: 13px;
  height: 13px;
  flex: none;
}
.faq-sign::before,
.faq-sign::after {
  content: "";
  position: absolute;
  background: var(--muted);
  transition: transform 0.3s;
}
.faq-sign::before {
  inset: 50% 0 auto 0;
  height: 1.5px;
  transform: translateY(-50%);
}
.faq-sign::after {
  inset: 0 50% 0 auto;
  width: 1.5px;
  transform: translateX(50%);
}
.faq-q[aria-expanded="true"] .faq-sign::after {
  transform: translateX(50%) rotate(90deg);
}
.faq-q[aria-expanded="true"] {
  color: var(--orange);
}
.faq-a {
  padding: 0 18px 16px;
}
.faq-a p {
  font-size: 13px;
  color: var(--muted);
  margin: 0;
}

/* ---------- 10. Footer ---------- */
.site-footer {
  background: var(--green-900);
  color: rgba(255, 255, 255, 0.78);
  padding-top: 60px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 36px;
  padding-bottom: 44px;
}
.footer-about p {
  font-size: 13px;
  margin: 18px 0 20px;
  max-width: 300px;
}
.footer-col h4 {
  font-size: 15.5px;
  color: #fff;
  margin-bottom: 18px;
}
.footer-links li + li,
.footer-contact li + li {
  margin-top: 10px;
}
.footer-links a {
  font-size: 13px;
  transition:
    color 0.2s,
    padding 0.2s;
}
.footer-links a:hover {
  color: var(--orange);
  padding-left: 4px;
}
.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
}
.fc-icon {
  flex: none;
  width: 16px;
  color: var(--orange);
}
.fc-icon svg {
  width: 15px;
  height: 15px;
  fill: currentColor;
}
.footer-contact a:hover {
  color: var(--orange);
}

.social-links {
  display: flex;
  gap: 9px;
}
.social-links a {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  transition: 0.25s;
}
.social-links svg {
  width: 15px;
  height: 15px;
  fill: #fff;
}
.social-links a:hover {
  background: var(--orange);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-block: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 12px;
}
.footer-bottom p {
  margin: 0;
}
.footer-legal {
  display: flex;
  gap: 22px;
}
.footer-legal a:hover {
  color: var(--orange);
}

.back-to-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 90;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  background: var(--orange);
  border-radius: 50%;
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px);
  transition: 0.3s;
}
.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top svg {
  width: 20px;
  height: 20px;
  fill: #fff;
}

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .brand-track li {
    flex-basis: 220px;
    height: 175px;
  }
  .stats-section {
    grid-template-columns: 1fr;
  }
  .stats-media img {
    height: 180px;
    min-height: 0;
  }
  .stats-content {
    flex-direction: column;
    align-items: flex-start;
    padding: 36px 20px;
    gap: 24px;
  }
  .testi-track {
    grid-auto-columns: calc((100% - 24px) / 2);
  }
}

@media (max-width: 900px) {
  .header-inner {
    height: 66px;
  }
  .nav-toggle {
    display: flex;
  }
  .header-phone {
    display: none;
  }
  .main-nav {
    position: fixed;
    inset: 66px 0 auto 0;
    background: #fff;
    border-top: 1px solid var(--line);
    padding: 12px 20px 22px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
  }
  .main-nav.is-open {
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: var(--shadow);
  }
  .main-nav > ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }
  .main-nav > ul > li {
    border-bottom: 1px solid var(--line);
  }
  .main-nav > ul > li > a {
    padding: 13px 0;
    justify-content: space-between;
  }
  .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    border: 0;
    box-shadow: none;
    padding: 0 0 10px 12px;
    display: none;
  }
  .has-dropdown.is-open .dropdown {
    display: block;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    padding-block: 36px 48px;
  }
  .hero-visual {
    order: -1;
  }
  .hero-img {
    height: 340px;
    border-radius: 150px 150px 16px 16px;
  }
  .hero-script {
    left: 0;
    font-size: 22px;
  }
  .hero-text {
    max-width: none;
  }
  .section {
    padding-block: 58px;
  }
  .section-head {
    flex-direction: column;
    align-items: flex-start;
  }
  .section-head.centered {
    align-items: center;
  }
  .faq-grid {
    grid-template-columns: 1fr;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
}

@media (max-width: 620px) {
  .grid-4 {
    grid-template-columns: 1fr;
  }
  .hero-features {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .stats-list {
    grid-template-columns: 1fr 1fr;
    gap: 22px;
  }
  .process-steps {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .process-step:not(:last-child)::after {
    display: none;
  }
  .brand-track li {
    flex-basis: 175px;
    height: 145px;
    padding: 22px;
  }
  .brand-track img {
    max-height: 64px;
  }
  .brand-track {
    gap: 22px;
  }
  .testi-track {
    grid-auto-columns: 88%;
  }
  .cta-inner {
    padding: 26px 22px;
    margin-bottom: 58px;
  }
  .footer-top {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    justify-content: flex-start;
  }
  .sc-body p {
    min-height: 0;
  }
}


/* =========================================================
   11. Contact page
   ========================================================= */

/* ---------- Full-bleed page banner ---------- */
.page-banner {
  position: relative;
  min-height: 560px;
  display: grid;
  place-items: center;
  overflow: hidden;
  text-align: center;
}
.pb-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pb-overlay {
  position: absolute;
  inset: 0;
  /* darker at the edges so the type stays readable on any photo */
  background:
    linear-gradient(180deg, rgba(20, 30, 24, 0.55), rgba(20, 30, 24, 0.3) 40%, rgba(20, 30, 24, 0.75)),
    radial-gradient(60% 55% at 50% 45%, transparent, rgba(20, 30, 24, 0.45));
}
.pb-inner {
  position: relative;
  z-index: 1;
  padding-block: 90px;
  color: #fff;
}
.page-banner h1 {
  font-size: clamp(34px, 5.6vw, 64px);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 20px;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
}
.pb-tagline {
  font-size: clamp(12px, 1.4vw, 14px);
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 32px;
}
.pb-tagline span {
  color: var(--gold);
  margin-inline: 8px;
}
.btn-pill {
  border-radius: 999px;
  padding: 15px 30px;
  background: var(--orange);
  color: #fff;
  text-transform: uppercase;
  font-size: 12.5px;
  letter-spacing: 0.1em;
}
.btn-pill:hover {
  background: var(--orange-dk);
}

.pb-scroll {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  color: #fff;
  animation: pb-bob 2.2s ease-in-out infinite;
}
.pb-scroll .icon {
  font-size: 20px;
}
.pb-scroll:hover {
  background: rgba(255, 255, 255, 0.15);
}
@keyframes pb-bob {
  0%, 100% { transform: translate(-50%, 0); }
  50%      { transform: translate(-50%, 6px); }
}

/* ---------- Contact channels ---------- */
.channels-section {
  background: var(--white);
}
.channel-card {
  display: block;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 22px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.channel-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: transparent;
}
.ch-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 16px;
  display: grid;
  place-items: center;
  background: var(--white);
  color: var(--orange);
  border-radius: 50%;
  box-shadow: 0 6px 16px rgba(228, 98, 44, 0.16);
}
.ch-icon .icon {
  font-size: 23px;
}
.channel-card h3 {
  font-size: 17px;
  color: var(--green-900);
  margin-bottom: 8px;
}
.ch-line {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--ink);
  margin: 0 0 2px;
}
.ch-note {
  font-size: 12px;
  color: var(--muted);
  margin: 10px 0 0;
}

/* ---------- Enquiry form ---------- */
.enquiry-section {
  background: var(--cream);
}
.enquiry-grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 48px;
  align-items: start;
}
.enquiry-aside h2 {
  font-size: clamp(24px, 3vw, 34px);
  color: var(--green-900);
}
.enquiry-aside .section-text {
  color: var(--muted);
  font-size: 14px;
}

.promise-list {
  margin: 28px 0;
  display: grid;
  gap: 14px;
}
.promise-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 13.5px;
  color: var(--ink);
}
.pl-icon {
  flex: none;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  background: rgba(228, 98, 44, 0.1);
  color: var(--orange);
  border-radius: 8px;
}
.pl-icon .icon {
  font-size: 15px;
}

.aside-call {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--green-800);
  color: #fff;
  border-radius: var(--radius);
  padding: 20px 22px;
}
.ac-icon {
  width: 42px;
  height: 42px;
  flex: none;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  color: var(--gold);
}
.aside-call small {
  display: block;
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.72);
}
.aside-call a {
  font-family: var(--font-head);
  font-size: 21px;
}
.aside-call a:hover {
  color: var(--gold);
}

.enquiry-form-wrap {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px;
  box-shadow: var(--shadow);
}
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.field {
  margin-bottom: 18px;
}
.field label {
  display: block;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--green-900);
  margin-bottom: 7px;
}
.field label span {
  color: var(--orange);
}
.field label small {
  color: var(--muted);
  font-weight: 400;
}
.field input,
.field textarea,
.field select {
  width: 100%;
  font: inherit;
  font-size: 14px;
  color: var(--ink);
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 9px;
  padding: 12px 14px;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}
.field textarea {
  resize: vertical;
  min-height: 110px;
}
.field input::placeholder,
.field textarea::placeholder {
  color: #9aa79f;
}
.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  background: var(--white);
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(228, 98, 44, 0.12);
}
.field.has-error input,
.field.has-error textarea {
  border-color: #d64545;
  background: #fdf5f5;
}
.field-msg {
  display: block;
  margin-top: 6px;
  font-size: 12px;
  color: #d64545;
}

/* native select arrow off, our own chevron on */
.select-wrap {
  position: relative;
}
.select-wrap select {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 40px;
  cursor: pointer;
}
.select-wrap .icon {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 18px;
  color: var(--muted);
  pointer-events: none;
}

.btn-block {
  width: 100%;
  justify-content: center;
  margin-top: 4px;
}
.form-note {
  font-size: 11.5px;
  color: var(--muted);
  text-align: center;
  margin: 14px 0 0;
}

/* honeypot -- off-screen rather than display:none, which some bots skip */
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-error {
  background: #fdf5f5;
  border: 1px solid #f0c9c9;
  color: #b13a3a;
  border-radius: 9px;
  padding: 12px 16px;
  font-size: 13px;
  margin-bottom: 22px;
}
.form-success {
  text-align: center;
  padding: 26px 10px;
}
.fs-icon {
  width: 62px;
  height: 62px;
  margin: 0 auto 18px;
  display: grid;
  place-items: center;
  background: rgba(45, 85, 64, 0.1);
  color: var(--green-700);
  border-radius: 50%;
}
.fs-icon .icon {
  font-size: 30px;
}
.form-success h3 {
  font-size: 22px;
  color: var(--green-900);
}
.form-success p {
  font-size: 13.5px;
  color: var(--muted);
  margin: 0;
}
.form-success a {
  color: var(--orange);
  font-weight: 500;
}

/* ---------- Map ---------- */
.map-section {
  background: var(--white);
  padding-bottom: 80px;
}
.map-inner {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 24px;
  align-items: stretch;
}
.map-card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px;
}
.map-card h3 {
  font-size: 20px;
  color: var(--green-900);
}
.map-address {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.8;
}
.map-hours {
  margin: 20px 0 22px;
  border-top: 1px solid var(--line);
}
.map-hours li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
}
.map-hours span {
  color: var(--muted);
}
.map-hours strong {
  color: var(--green-900);
  font-weight: 500;
}
.map-embed {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  min-height: 380px;
}
.map-embed iframe {
  width: 100%;
  height: 100%;
  min-height: 380px;
  border: 0;
  display: block;
}

/* ---------- Contact page responsive ---------- */
@media (max-width: 900px) {
  .page-banner {
    min-height: 440px;
  }
  .pb-inner {
    padding-block: 70px;
  }
  .enquiry-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .map-inner {
    grid-template-columns: 1fr;
  }
  .enquiry-form-wrap {
    padding: 26px 20px;
  }
}

@media (max-width: 620px) {
  .page-banner {
    min-height: 400px;
  }
  .field-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .pb-tagline span {
    margin-inline: 5px;
  }
}

/* ---------- Split FAQ (accordion left, photo right) ---------- */
.faq-split-section {
  background: var(--cream);
  padding-bottom: 0;
}
.faq-split {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 50px;
  align-items: center;
}
.faq-split-text h2 {
  font-size: clamp(26px, 3.2vw, 36px);
  color: var(--green-900);
  margin-bottom: 6px;
}
.faq-split-text .section-text {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 26px;
}
.faq-list {
  display: grid;
  gap: 12px;
}
/* .faq-item / .faq-q / .faq-a styles are shared with the home page,
   so the existing accordion script drives this list unchanged. */
.faq-split .faq-q {
  padding: 16px 20px;
}
.faq-split .faq-sign {
  width: 30px;
  height: 30px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: grid;
  place-items: center;
  transition: border-color 0.25s, background 0.25s;
}
.faq-split .faq-sign::before {
  inset: 50% 9px auto 9px;
}
.faq-split .faq-sign::after {
  inset: 9px 50% 9px auto;
}
.faq-split .faq-q:hover .faq-sign,
.faq-split .faq-q[aria-expanded="true"] .faq-sign {
  border-color: var(--orange);
  background: rgba(228, 98, 44, 0.08);
}
.faq-split .faq-q[aria-expanded="true"] .faq-sign::before,
.faq-split .faq-q[aria-expanded="true"] .faq-sign::after {
  background: var(--orange);
}

.faq-visual {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  align-self: stretch;
  min-height: 420px;
}
.faq-visual img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}
.faq-script {
  position: absolute;
  left: 30px;
  bottom: 40px;
  font-family: var(--font-script);
  font-size: clamp(30px, 3.6vw, 42px);
  line-height: 1.05;
  color: #fff;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.35);
}
.faq-swoosh {
  display: block;
  width: 150px;
  height: 22px;
  margin-top: 4px;
  color: var(--orange);
}

/* ---------- Full-width CTA band ---------- */
.cta-band {
  background: var(--green-900);
  color: #fff;
  /* The footer is the same dark green, so leave a cream gap below --
     without it the two blocks read as one slab. */
  margin-top: 80px;
  margin-bottom: 70px;
}
.cta-band-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-block: 40px;
}
.cb-text h2 {
  font-size: clamp(22px, 2.8vw, 31px);
  margin-bottom: 6px;
}
.cb-text p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
}

@media (max-width: 900px) {
  .faq-split {
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .faq-visual {
    order: -1;
    min-height: 300px;
  }
  .faq-visual img {
    min-height: 300px;
  }
  .cta-band {
    margin-top: 58px;
    margin-bottom: 50px;
  }
  .cta-band-inner {
    padding-block: 32px;
  }
}

/* =========================================================
   12. About page
   ========================================================= */

/* ---------- Shared handwritten note (also used on the FAQ) ---------- */
.script-note {
  font-family: var(--font-script);
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.1;
  color: var(--green-900);
}
.script-swoosh {
  display: block;
  width: 140px;
  height: 20px;
  margin-top: 2px;
  color: var(--orange);
}

/* ---------- Hero ---------- */
.about-hero {
  background: var(--cream);
  overflow: hidden;
}
.about-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 40px;
  align-items: center;
  padding-block: 40px 56px;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 12.5px;
  color: var(--muted);
  margin-bottom: 26px;
}
.breadcrumb a:hover {
  color: var(--orange);
}
.breadcrumb [aria-current] {
  color: var(--green-900);
  font-weight: 500;
}
.about-hero h1 {
  font-size: clamp(38px, 5vw, 58px);
  color: var(--green-900);
  margin-bottom: 14px;
}
.ah-lead {
  font-family: var(--font-head);
  font-size: clamp(19px, 2.2vw, 26px);
  line-height: 1.3;
  color: var(--green-900);
  margin-bottom: 18px;
}
.ah-text {
  font-size: 14px;
  color: var(--muted);
  max-width: 440px;
  margin-bottom: 28px;
}

.ah-visual {
  position: relative;
}
.ah-visual img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius);
  background: var(--cream-2);
}
.ah-script {
  position: absolute;
  right: -10px;
  bottom: 46px;
  text-align: left;
  background: var(--cream);
  padding: 12px 16px;
  border-radius: 12px;
}

/* ---------- Stats strip ---------- */
.about-stats {
  background: var(--cream-2);
  padding-block: 28px;
}
.as-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.as-list li {
  display: flex;
  align-items: center;
  gap: 14px;
}
.as-icon {
  width: 46px;
  height: 46px;
  flex: none;
  display: grid;
  place-items: center;
  color: var(--orange);
  border: 1px solid rgba(228, 98, 44, 0.35);
  border-radius: 12px;
}
.as-icon .icon {
  font-size: 22px;
}
.as-list strong {
  display: block;
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 600;
  color: var(--green-900);
  line-height: 1.1;
}
.as-label {
  font-size: 12.5px;
  color: var(--muted);
}

/* ---------- Our story ---------- */
.story-section {
  background: var(--cream);
}
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 54px;
  align-items: center;
}
.story-media img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: var(--radius);
  background: var(--cream-2);
}
.story-text h2 {
  font-size: clamp(27px, 3.4vw, 38px);
  color: var(--green-900);
  margin-bottom: 8px;
}
.story-lead {
  font-family: var(--font-head);
  font-size: 19px;
  color: var(--green-700);
  margin-bottom: 20px;
}
.story-text p {
  font-size: 13.5px;
  color: var(--muted);
}
.story-text .btn {
  margin-top: 12px;
}

/* ---------- Mission / vision / values ---------- */
.pillars-section {
  background: var(--cream);
  padding-top: 0;
}
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}
.pillar {
  display: flex;
  gap: 16px;
}
.pillar-icon {
  width: 48px;
  height: 48px;
  flex: none;
  display: grid;
  place-items: center;
  color: var(--orange);
  border: 1px solid rgba(228, 98, 44, 0.35);
  border-radius: 12px;
}
.pillar-icon .icon {
  font-size: 23px;
}
.pillar h3 {
  font-size: 18px;
  color: var(--green-900);
  margin-bottom: 8px;
}
.pillar p {
  font-size: 13px;
  color: var(--muted);
  margin: 0;
}

/* orange ticked list, shared by the pillars and the trust band */
.check-list {
  display: grid;
  gap: 9px;
}
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 13px;
  color: var(--ink);
}
.check-list .icon {
  flex: none;
  font-size: 16px;
  color: var(--orange);
  margin-top: 2px;
}

/* ---------- Why homeowners trust us ---------- */
.trust-section {
  display: grid;
  grid-template-columns: 300px 1fr 280px;
  align-items: center;
  gap: 40px;
  background: var(--cream-2);
  padding-right: 40px;
}
.trust-media img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}
.trust-body {
  padding-block: 44px;
}
.trust-body h2 {
  font-size: clamp(24px, 3vw, 33px);
  color: var(--green-900);
  margin-bottom: 6px;
}
.trust-lead {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 20px;
}
.trust-body .check-list li {
  font-size: 13.5px;
}
.trust-script {
  text-align: left;
}

/* ---------- About responsive ---------- */
@media (max-width: 1080px) {
  .trust-section {
    grid-template-columns: 240px 1fr;
    padding-right: 24px;
  }
  .trust-script {
    grid-column: 2;
    padding-bottom: 36px;
  }
  .trust-body {
    padding-bottom: 10px;
  }
}

@media (max-width: 900px) {
  .about-hero-inner {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .ah-visual {
    order: -1;
  }
  .ah-visual img {
    height: 320px;
  }
  .ah-script {
    right: 12px;
    bottom: 16px;
  }
  .as-list {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  .story-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .story-media img {
    height: 300px;
  }
  .pillars-grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }
  .trust-section {
    grid-template-columns: 1fr;
    gap: 0;
    padding-right: 0;
  }
  .trust-media img {
    min-height: 240px;
  }
  .trust-body {
    padding: 34px 20px 0;
  }
  .trust-script {
    padding: 18px 20px 36px;
  }
}

@media (max-width: 620px) {
  .as-list {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   13. Services page
   ========================================================= */

/* ---------- Hero ----------
   The artwork (cream wall on the left, orange brush strokes on the
   right) is the section background. The gradient below is a fallback
   that keeps the same left-to-right feel until the file is in place,
   so the heading never lands on bare white. */
.services-hero {
  background-color: var(--cream);
  /* image-set serves the 87KB WebP and falls back to the JPG */
  background-image: image-set(
    url("../images/services-hero.webp") type("image/webp"),
    url("../images/services-hero.jpg") type("image/jpeg")
  );
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
}
/* Older browsers that do not understand image-set still get the JPG. */
@supports not (background-image: image-set(url("x.webp") type("image/webp"))) {
  .services-hero {
    background-image: url("../images/services-hero.jpg");
  }
}
.services-hero-inner {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 30px;
  align-items: center;
  min-height: 380px;
  padding-block: 40px 52px;
}
.services-hero h1 {
  font-size: clamp(38px, 5.2vw, 60px);
  color: var(--green-900);
  margin-bottom: 14px;
}
.sh-lead {
  font-family: var(--font-head);
  font-size: clamp(19px, 2.3vw, 27px);
  line-height: 1.3;
  color: var(--green-900);
  margin-bottom: 16px;
}
.sh-text {
  font-size: 13.5px;
  color: var(--muted);
  max-width: 420px;
  margin: 0;
}
.sh-visual {
  display: flex;
  justify-content: flex-end;
  align-self: start;
  padding-top: 10px;
}
.sh-script {
  text-align: right;
  color: var(--green-900);
}
.sh-script .script-swoosh {
  margin-left: auto;
}

/* ---------- Service cards ---------- */
.service-list-section {
  background: var(--cream);
}
.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}
/* White circular badge, as on the reference, rather than the orange
   square used on the home page. */
.sc-badge.light {
  background: var(--white);
  color: var(--green-900);
  border-radius: 50%;
  box-shadow: 0 6px 16px rgba(29, 59, 42, 0.14);
}
.service-list-section .service-card {
  background: var(--white);
}
.service-list-section .sc-body p {
  min-height: 56px;
}

/* ---------- Why choose us ---------- */
.why-section {
  display: grid;
  grid-template-columns: minmax(230px, 26%) 1fr;
  align-items: center;
  background: var(--cream);
}
.why-media img {
  width: 100%;
  height: 100%;
  min-height: 330px;
  object-fit: cover;
  border-radius: 0 var(--radius) var(--radius) 0;
}
/* Capping the width keeps the handwritten note beside the list instead
   of drifting to the far edge on wide screens. */
.why-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(24px, 5vw, 70px);
  max-width: 920px;
  padding: 44px 40px;
}
.why-body {
  flex: 1;
}
.why-script {
  flex: none;
}
.why-body h2 {
  font-size: clamp(24px, 3vw, 32px);
  color: var(--green-900);
  margin-bottom: 20px;
}
/* filled circular ticks */
.check-list.round .icon {
  width: 22px;
  height: 22px;
  padding: 3px;
  background: var(--orange);
  color: #fff;
  border-radius: 50%;
  margin-top: 1px;
}
.check-list.round li {
  font-size: 13.5px;
  align-items: center;
  gap: 11px;
}
.why-script .script-note {
  color: var(--green-900);
}

/* ---------- Services responsive ---------- */
@media (max-width: 1080px) {
  .why-content {
    padding: 36px 24px;
    gap: 28px;
  }
}

@media (max-width: 900px) {
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
  .services-hero-inner {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .sh-visual {
    justify-content: flex-start;
    padding-top: 0;
  }
  .sh-script {
    text-align: left;
  }
  .sh-script .script-swoosh {
    margin-left: 0;
  }
  .why-section {
    grid-template-columns: 1fr;
  }
  .why-media img {
    min-height: 240px;
    border-radius: 0;
  }
  .why-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
    padding: 32px 20px 38px;
  }
}

@media (max-width: 620px) {
  .grid-3 {
    grid-template-columns: 1fr;
  }
  .service-list-section .sc-body p {
    min-height: 0;
  }
}

/* =========================================================
   14. Projects page
   ========================================================= */

/* ---------- Page header ---------- */
.projects-head {
  background: var(--cream);
  padding-block: 34px 44px;
}
.ph-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: end;
}
.projects-head h1 {
  font-size: clamp(38px, 5vw, 58px);
  color: var(--green-900);
  margin-bottom: 12px;
}
.ph-lead {
  font-family: var(--font-head);
  font-size: clamp(18px, 2.1vw, 25px);
  line-height: 1.3;
  color: var(--green-700);
  margin: 0;
}
.ph-text {
  font-size: 13.5px;
  color: var(--muted);
  margin: 0;
  padding-bottom: 6px;
}

/* ---------- Filter bar ---------- */
.gallery-section {
  background: var(--cream);
  padding-top: 20px;
}
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
}
.filter-btn {
  padding: 9px 20px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--white);
  font-size: 13px;
  font-weight: 500;
  color: var(--green-900);
  transition:
    background 0.25s,
    color 0.25s,
    border-color 0.25s;
}
.filter-btn:hover {
  border-color: var(--orange);
  color: var(--orange);
}
.filter-btn.is-active {
  background: var(--green-900);
  border-color: var(--green-900);
  color: #fff;
}
.filter-empty {
  text-align: center;
  color: var(--muted);
  font-size: 14px;
  padding-block: 30px 0;
}

/* ---------- Work cards ---------- */
.work-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(29, 59, 42, 0.06);
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}
.work-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(29, 59, 42, 0.13);
}
.wc-media {
  position: relative;
  height: 230px;
  overflow: hidden;
  background: var(--cream-2);
}
.wc-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}
.work-card:hover .wc-media img {
  transform: scale(1.07);
}
.wc-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--green-900);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 5px 12px;
  border-radius: 999px;
}
.wc-zoom {
  position: absolute;
  right: 14px;
  bottom: 14px;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  background: var(--orange);
  color: #fff;
  border-radius: 50%;
  opacity: 0;
  transform: translateY(10px);
  transition: 0.3s;
}
.work-card:hover .wc-zoom {
  opacity: 1;
  transform: translateY(0);
}
.wc-body {
  padding: 18px 20px 22px;
}
.wc-body h3 {
  font-size: 17px;
  color: var(--green-900);
  margin-bottom: 6px;
}
.wc-place {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  color: var(--muted);
  margin: 0 0 4px;
}
.wc-place .icon {
  font-size: 14px;
  color: var(--orange);
}
.wc-meta {
  font-size: 12px;
  color: var(--gold);
  margin: 0;
}

/* ---------- Impact band ---------- */
.impact-band {
  background: var(--green-800);
  color: #fff;
  padding-block: 34px;
}
.impact-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.impact-list strong {
  display: block;
  font-family: var(--font-head);
  font-size: 30px;
  font-weight: 500;
  color: var(--gold);
}
.impact-list span {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.75);
}

/* ---------- Case studies ---------- */
.case-section {
  background: var(--cream);
}
.case-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.case-row + .case-row {
  margin-top: 64px;
}
.case-row.is-reversed .case-media {
  order: 2;
}
.case-media {
  position: relative;
}
.case-media img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius);
  background: var(--cream-2);
}
.case-label {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--orange);
  color: #fff;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
}
.case-body h3 {
  font-size: clamp(22px, 2.7vw, 30px);
  color: var(--green-900);
  margin-bottom: 12px;
}
.case-text {
  font-size: 13.5px;
  color: var(--muted);
  margin-bottom: 22px;
}

.case-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 24px;
  margin: 0 0 24px;
  padding: 20px 0;
  border-block: 1px solid var(--line);
}
.case-facts dt {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2px;
}
.case-facts dd {
  margin: 0;
  font-size: 13px;
  color: var(--green-900);
  font-weight: 500;
}

.case-quote {
  position: relative;
  margin: 0;
  background: var(--white);
  border-radius: var(--radius);
  padding: 20px 22px;
  border-left: 3px solid var(--orange);
}
.case-quote .icon {
  font-size: 20px;
  color: var(--orange);
}
.case-quote p {
  font-size: 13.5px;
  color: var(--ink);
  margin: 6px 0 8px;
}
.case-quote cite {
  font-style: normal;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--muted);
}

/* ---------- Projects responsive ---------- */
@media (max-width: 900px) {
  .ph-grid {
    grid-template-columns: 1fr;
    gap: 18px;
    align-items: start;
  }
  .case-row {
    grid-template-columns: 1fr;
    gap: 26px;
  }
  .case-row.is-reversed .case-media {
    order: 0;
  }
  .case-row + .case-row {
    margin-top: 48px;
  }
  .case-media img {
    height: 300px;
  }
  .impact-list {
    grid-template-columns: 1fr 1fr;
    gap: 22px;
  }
}

@media (max-width: 620px) {
  .case-facts {
    grid-template-columns: 1fr;
  }
  .filter-btn {
    padding: 8px 16px;
    font-size: 12.5px;
  }
}

/* =========================================================
   15. Service detail pages
   ========================================================= */

.container.narrow {
  max-width: 820px;
}

/* ---------- Banner tweaks ---------- */
.service-banner {
  min-height: 420px;
}
.service-banner h1 {
  margin-bottom: 14px;
}
.breadcrumb.on-dark {
  justify-content: center;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 20px;
}
.breadcrumb.on-dark a:hover {
  color: #fff;
}
.breadcrumb.on-dark [aria-current] {
  color: var(--gold);
}

/* ---------- Overview ---------- */
.overview-section {
  background: var(--cream);
}
.overview-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 56px;
  align-items: start;
}
.ov-text h2 {
  font-size: clamp(24px, 3vw, 33px);
  color: var(--green-900);
  margin-bottom: 18px;
}
/* Capping the measure keeps lines readable instead of running the full
   width of a large monitor. */
.ov-text p {
  font-size: 14.5px;
  line-height: 1.8;
  color: var(--muted);
  max-width: 62ch;
}

/* Three benefit cards under the copy, so the column is not just text */
.highlight-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 34px;
}
.highlight-row li {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 20px 18px;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}
.highlight-row li:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.hl-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  background: rgba(228, 98, 44, 0.1);
  color: var(--orange);
  border-radius: 10px;
  margin-bottom: 12px;
}
.hl-icon .icon {
  font-size: 19px;
}
.highlight-row strong {
  display: block;
  font-family: var(--font-head);
  font-size: 15.5px;
  font-weight: 600;
  color: var(--green-900);
  margin-bottom: 4px;
}
.hl-text {
  font-size: 12.5px;
  line-height: 1.6;
  color: var(--muted);
}

/* ---------- Quick facts card ---------- */
.ov-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  position: sticky;
  top: 96px;
}
/* Price leads the card instead of sitting as the last row of a list */
.ov-price {
  background: var(--green-900);
  color: #fff;
  padding: 20px 24px;
  text-align: center;
}
.ov-price span {
  display: block;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 2px;
}
.ov-price strong {
  font-family: var(--font-head);
  font-size: 27px;
  font-weight: 600;
  color: var(--gold);
}
.ov-card-body {
  padding: 8px 22px 22px;
}
.fact-list {
  margin: 0 0 20px;
}
.fact-list > div {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
}
.fact-list > div:last-child {
  border-bottom: 0;
}
.fact-icon {
  flex: none;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  background: var(--cream);
  color: var(--orange);
  border-radius: 8px;
}
.fact-icon .icon {
  font-size: 15px;
}
.fact-list dt {
  font-size: 10.5px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1px;
}
.fact-list dd {
  margin: 0;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--green-900);
  line-height: 1.45;
}
.ov-call {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin-top: 12px;
  font-size: 13px;
  font-weight: 500;
  color: var(--green-900);
}
.ov-call .icon {
  font-size: 15px;
  color: var(--orange);
}
.ov-call:hover {
  color: var(--orange);
}
.ov-note {
  font-size: 11.5px;
  color: var(--muted);
  text-align: center;
  margin: 12px 0 0;
}

/* ---------- What's included ---------- */
.included-section {
  background: var(--white);
}
.included-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.included-grid li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 16px 18px;
  font-size: 13.5px;
  color: var(--ink);
}
.inc-icon {
  flex: none;
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  background: var(--orange);
  color: #fff;
  border-radius: 50%;
}
.inc-icon .icon {
  font-size: 15px;
}

/* ---------- Gallery ---------- */
.work-section {
  background: var(--cream);
}
.shot {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--cream-2);
}
.shot img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: transform 0.6s;
}
.shot:hover img {
  transform: scale(1.05);
}

/* ---------- Mini process ---------- */
.mini-process-section {
  background: var(--white);
}
.mini-process-section .process-step h3 {
  font-size: 15px;
  margin: 0;
}

/* ---------- Service FAQ ---------- */
.service-faq-section {
  background: var(--cream);
}
.service-faq-section .faq-list {
  display: grid;
  gap: 12px;
}
.service-faq-section .faq-q {
  padding: 16px 20px;
}

/* ---------- Related services ---------- */
.related-section {
  background: var(--white);
  padding-bottom: 0;
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}
.related-card {
  display: block;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 18px;
  transition:
    transform 0.3s,
    box-shadow 0.3s,
    border-color 0.3s;
}
.related-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  border-color: transparent;
}
.rc-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  background: var(--white);
  color: var(--orange);
  border-radius: 50%;
  margin-bottom: 14px;
  box-shadow: 0 5px 14px rgba(228, 98, 44, 0.16);
}
.rc-icon .icon {
  font-size: 20px;
}
.related-card h3 {
  font-size: 15px;
  color: var(--green-900);
  margin-bottom: 6px;
}
.related-card p {
  font-size: 12px;
  color: var(--muted);
  margin: 0 0 12px;
}
.rc-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 500;
  color: var(--orange);
}
.related-card:hover .rc-more {
  gap: 11px;
}

/* ---------- Service page responsive ---------- */
@media (max-width: 1080px) {
  .related-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .included-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .overview-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .ov-card {
    position: static;
  }
  .highlight-row {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 26px;
  }
  .highlight-row li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    flex-wrap: wrap;
    padding: 16px;
  }
  .hl-icon {
    margin-bottom: 0;
  }
  .highlight-row strong {
    flex: 1;
    min-width: 140px;
  }
  .hl-text {
    flex-basis: 100%;
  }
  .service-banner {
    min-height: 360px;
  }
  .shot img {
    height: 210px;
  }
}

@media (max-width: 620px) {
  .included-grid,
  .related-grid {
    grid-template-columns: 1fr;
  }
}
