/*
Theme Name: DRC Builders
Theme URI: https://drcbuilders.co.uk/
Author: DRC Builders
Description: A clean, responsive custom theme for DRC Builders in Clacton-on-Sea.
Version: 1.0.14
Requires at least: 6.4
Requires PHP: 7.4
Text Domain: drc-builders
*/

@font-face {
  font-family: "Archivo Local";
  src: url("assets/fonts/archivo.woff2") format("woff2");
  font-display: swap;
}

@font-face {
  font-family: "Roboto Condensed Local";
  src: url("assets/fonts/roboto-condensed.woff2") format("woff2");
  font-display: swap;
}

:root {
  --font-body: "Archivo Local", Arial, Helvetica, sans-serif;
  --font-heading: "Roboto Condensed Local", Arial, sans-serif;
  --cream: #f5f2e9;
  --paper: #fbf9f3;
  --charcoal: #191b18;
  --charcoal-soft: #242721;
  --ink: #242620;
  --muted: #65675f;
  --olive: #718047;
  --olive-dark: #5f6c3b;
  --line: #ded9cc;
  --white: #fff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 78px;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body), Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

body,
button,
a {
  -webkit-font-smoothing: antialiased;
}

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

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

svg {
  display: block;
}

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

.site-header {
  position: relative;
  z-index: 20;
  height: 78px;
  background: var(--charcoal);
  color: var(--white);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 210px;
  line-height: 1;
}

.brand-logo {
  width: 184px;
  height: auto;
  filter: brightness(0) invert(1);
}

.brand-mark {
  width: 43px;
  height: 43px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.55);
  font-family: var(--font-heading), Arial, sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.brand-copy strong {
  font-family: var(--font-heading), Arial, sans-serif;
  font-size: 18px;
  line-height: 1;
  letter-spacing: 0.01em;
}

.brand-copy small {
  color: rgba(255, 255, 255, 0.62);
  font-size: 8px;
  letter-spacing: 0.24em;
}

.desktop-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 27px;
}

.desktop-nav a {
  position: relative;
  padding: 28px 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
  font-weight: 600;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 20px;
  left: 0;
  height: 1px;
  background: var(--olive);
  transform: scaleX(0);
  transition: transform 180ms ease;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  transform: scaleX(1);
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 12px 22px;
  border: 1px solid var(--olive);
  border-radius: 3px;
  background: var(--olive);
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

.button svg,
.service-card a svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.button:hover {
  border-color: var(--olive-dark);
  background: var(--olive-dark);
  transform: translateY(-1px);
}

.button:focus-visible,
a:focus-visible,
summary:focus-visible {
  outline: 3px solid #b5c47a;
  outline-offset: 3px;
}

.button-small {
  min-height: 40px;
  padding: 10px 17px;
  font-size: 12px;
}

.header-cta {
  white-space: nowrap;
}

.mobile-menu {
  display: none;
  margin-left: auto;
}

.mobile-menu summary {
  width: 44px;
  height: 44px;
  display: grid;
  cursor: pointer;
  list-style: none;
  place-content: center;
  gap: 5px;
}

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

.mobile-menu summary span {
  width: 23px;
  height: 2px;
  background: var(--white);
}

.mobile-menu nav {
  position: absolute;
  top: 78px;
  right: 0;
  left: 0;
  display: grid;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  background: var(--charcoal);
  padding: 18px 24px 24px;
}

.mobile-menu nav a {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 12px 0;
  color: rgba(255, 255, 255, 0.88);
}

.hero {
  position: relative;
  min-height: 470px;
  display: grid;
  overflow: hidden;
  align-items: center;
  background: #31342d;
  color: var(--white);
}

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

.hero > img {
  object-fit: cover;
  object-position: center 58%;
}

.inner-hero {
  padding: 64px 0 60px;
  background: var(--charcoal-soft);
  color: var(--white);
}

.inner-hero .container { max-width: 920px; margin-left: max(24px, calc((100% - 1240px) / 2)); }
.inner-hero h1 { max-width: 850px; margin: 0; font-family: var(--font-heading), Arial, sans-serif; font-size: clamp(42px, 5vw, 60px); line-height: 1; letter-spacing: -0.04em; }
.inner-hero p:last-child { max-width: 680px; margin: 18px 0 0; color: rgba(255,255,255,.76); font-size: 17px; }

.service-detail-hero { padding: 62px 0; background: var(--charcoal-soft); color: var(--white); }
.service-detail-hero-inner { display: grid; grid-template-columns: 180px 1fr; gap: 48px; align-items: center; }
.service-detail-icon { aspect-ratio: 1; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.18); background: var(--paper); }
.service-detail-icon img { width: 100%; height: 100%; object-fit: contain; }
.service-detail-hero .back-link { display: inline-block; margin-bottom: 28px; color: rgba(255,255,255,.72); border-bottom: 1px solid rgba(255,255,255,.35); }
.service-detail-hero h1 { margin: 0; font-family: var(--font-heading), Arial, sans-serif; font-size: clamp(42px, 5vw, 60px); line-height: 1; letter-spacing: -.04em; }
.service-detail-hero div > p:last-of-type { max-width: 720px; color: rgba(255,255,255,.76); font-size: 18px; }
.service-detail-tags { margin-top: 25px; }
.service-detail-tags li { border-color: rgba(255,255,255,.22); color: rgba(255,255,255,.82); }
.service-project-grid { grid-template-columns: repeat(3, 1fr); }
.service-project-grid .project:first-child { grid-column: auto; aspect-ratio: 4 / 3; }

.service-intro-section { background: var(--paper); }
.service-intro-grid { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(300px, .75fr); gap: 72px; align-items: start; }
.service-intro-copy h2 { max-width: 760px; margin: 0 0 24px; font-family: var(--font-heading), Arial, sans-serif; font-size: clamp(34px, 4vw, 50px); line-height: 1.05; letter-spacing: -.035em; }
.service-intro-copy p { max-width: 760px; color: var(--muted); font-size: 17px; line-height: 1.75; }
.service-intro-copy .text-link { display: inline-block; margin-top: 10px; color: var(--olive-dark); font-weight: 700; border-bottom: 1px solid currentColor; }
.service-includes { padding: 34px; background: var(--cream); border-top: 4px solid var(--olive); }
.service-includes h3 { margin: 0 0 20px; font-family: var(--font-heading), Arial, sans-serif; font-size: 28px; }
.service-includes ul { display: grid; gap: 13px; margin: 0; padding: 0; list-style: none; }
.service-includes li { position: relative; padding-left: 24px; color: var(--ink); line-height: 1.45; }
.service-includes li::before { content: ""; position: absolute; top: .38em; left: 2px; width: 7px; height: 11px; border-right: 2px solid var(--olive-dark); border-bottom: 2px solid var(--olive-dark); transform: rotate(45deg); }
.service-process-section { background: var(--cream); }
.service-process-heading { max-width: 700px; margin-bottom: 34px; }
.service-process-heading h2 { margin: 0; font-family: var(--font-heading), Arial, sans-serif; font-size: clamp(32px, 4vw, 46px); letter-spacing: -.035em; }
.service-process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.service-process-card { min-height: 220px; padding: 30px; background: var(--paper); border: 1px solid var(--line); }
.service-process-card span { display: inline-grid; width: 38px; height: 38px; place-items: center; margin-bottom: 32px; border-radius: 50%; background: var(--charcoal); color: var(--white); font-weight: 800; }
.service-process-card h3 { margin: 0 0 12px; font-family: var(--font-heading), Arial, sans-serif; font-size: 25px; }
.service-process-card p { margin: 0; color: var(--muted); line-height: 1.65; }
.empty-project-state { padding: 48px; border: 1px solid var(--line); background: var(--paper); text-align: center; }
.empty-project-state p { margin: 0 0 24px; color: var(--muted); }

.hero-shade {
  background:
    linear-gradient(90deg, rgba(12, 15, 10, 0.86) 0%, rgba(12, 15, 10, 0.64) 35%, rgba(12, 15, 10, 0.1) 70%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0));
}

.hero-inner {
  position: relative;
  z-index: 1;
  padding: 62px 0;
}

.eyebrow {
  margin: 0 0 14px;
  color: #c6d091;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--olive-dark);
}

.hero h1,
h2,
h3 {
  font-family: var(--font-heading), Arial, sans-serif;
}

.hero h1 {
  max-width: 790px;
  margin: 0;
  font-size: clamp(44px, 5vw, 64px);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 0.99;
}

.hero-copy {
  max-width: 580px;
  margin: 19px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 18px;
  line-height: 1.65;
}

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

.text-link {
  border-bottom: 1px solid rgba(255, 255, 255, 0.6);
  padding: 5px 0;
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
}

.trust-strip {
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

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

.trust-grid > div {
  min-height: 84px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid var(--line);
  padding: 15px 26px;
}

.trust-grid > div:first-child {
  border-left: 1px solid var(--line);
}

.trust-grid strong {
  font-family: var(--font-heading), Arial, sans-serif;
  font-size: 17px;
}

.trust-grid span {
  color: var(--muted);
  font-size: 13px;
}

.section {
  padding: 68px 0;
}

.split-intro { display: grid; grid-template-columns: 1.05fr .95fr; gap: 60px; align-items: center; }
.split-intro h2 { margin: 0; font-size: clamp(36px, 4vw, 50px); line-height: 1.05; letter-spacing: -.035em; }
.split-intro > div:last-child { color: var(--muted); font-size: 17px; }
.split-intro .button { margin-top: 18px; }

.home-intro-photo {
  position: relative;
  min-height: 350px;
  display: block;
  overflow: hidden;
  background: var(--charcoal);
}

.home-intro-photo::after {
  position: absolute;
  inset: 45% 0 0;
  background: linear-gradient(0deg, rgba(12,15,10,.78), transparent);
  content: "";
}

.home-intro-photo img { width: 100%; height: 100%; position: absolute; inset: 0; object-fit: cover; transition: transform 350ms ease; }
.home-intro-photo:hover img { transform: scale(1.025); }
.home-intro-photo span { position: absolute; z-index: 1; right: 25px; bottom: 22px; left: 25px; color: var(--white); font-size: 13px; font-weight: 800; }
.home-intro-copy p:not(.eyebrow) { max-width: 530px; line-height: 1.75; }
.home-service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.home-service-card {
  min-height: 150px;
  display: grid;
  grid-template-columns: 108px 1fr;
  align-items: center;
  gap: 18px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.38);
  padding: 18px;
  transition: border-color 180ms ease, transform 180ms ease, background 180ms ease;
}

.home-photo-showcase {
  display: grid;
  grid-template-columns: 1.08fr .92fr 1fr;
  min-height: 390px;
  background: var(--charcoal);
}

.home-showcase-photo {
  position: relative;
  min-height: 390px;
  display: block;
  overflow: hidden;
  border-right: 1px solid rgba(255,255,255,.22);
}

.home-showcase-photo:last-child { border-right: 0; }
.home-showcase-photo::after { position: absolute; inset: 35% 0 0; background: linear-gradient(0deg, rgba(10,12,9,.88), transparent); content: ""; }
.home-showcase-photo img { width: 100%; height: 100%; position: absolute; inset: 0; object-fit: cover; transition: transform 350ms ease; }
.home-showcase-photo:hover img { transform: scale(1.035); }
.home-showcase-photo span { position: absolute; z-index: 1; right: 30px; bottom: 28px; left: 30px; color: var(--white); font-family: var(--font-heading), Arial, sans-serif; font-size: 25px; font-weight: 700; line-height: 1.08; }
.home-showcase-photo small { display: block; margin-bottom: 8px; color: #d6dfa5; font-family: var(--font-body), Arial, sans-serif; font-size: 10px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }

.home-service-card:hover,
.home-service-card:focus-visible {
  border-color: #aab38b;
  background: rgba(255, 255, 255, 0.68);
  transform: translateY(-2px);
}

.home-service-card img {
  width: 108px;
  height: 92px;
  object-fit: cover;
  mix-blend-mode: multiply;
}

.home-service-card h3 {
  margin: 0;
  font-size: 18px;
  line-height: 1.18;
}

.home-service-card p {
  margin: 8px 0 12px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.home-service-card span {
  color: var(--olive-dark);
  font-size: 12px;
  font-weight: 800;
}

.home-project-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.home-project-link {
  min-height: 122px;
  display: grid;
  grid-template-columns: 96px 1fr;
  align-items: center;
  gap: 18px;
  border: 1px solid var(--line);
  background: var(--cream);
  padding: 12px;
  transition: border-color 180ms ease, transform 180ms ease;
}

.home-project-link:hover,
.home-project-link:focus-visible {
  border-color: var(--olive);
  transform: translateY(-2px);
}

.home-project-link img {
  width: 96px;
  height: 96px;
  object-fit: cover;
}

.home-project-link > div {
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.home-project-link span {
  color: var(--olive-dark);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.home-project-link strong {
  margin-top: 5px;
  font-family: var(--font-heading), Arial, sans-serif;
  font-size: 17px;
  line-height: 1.18;
}

.home-project-link em {
  margin-top: 10px;
  color: var(--olive-dark);
  font-size: 11px;
  font-style: normal;
  font-weight: 800;
}

.compact-project-heading {
  margin-bottom: 32px;
}

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

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

.section-heading h2,
.projects-heading h2,
.areas-layout h2,
.contact-inner h2 {
  margin: 0;
  font-size: clamp(34px, 3.6vw, 46px);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.05;
}

.section-heading > p:last-child {
  margin: 19px auto 0;
  color: var(--muted);
}

.heading-line {
  width: 42px;
  height: 3px;
  display: block;
  margin: 20px auto 0;
  background: var(--olive);
}

.heading-line.left {
  margin-right: 0;
  margin-left: 0;
}

.heading-line.light {
  margin: 22px 0 28px;
  background: #c2ce87;
}

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

.service-card h2 { margin: 0; font-size: 25px; line-height: 1.15; }

.meet-dan { display: grid; grid-template-columns: .8fr 1.2fr; gap: 56px; align-items: start; }
.owner-placeholder { min-height: 480px; display: grid; place-items: center; border: 1px solid var(--line); background: linear-gradient(145deg, #e3dfd3, #f7f4ec); color: var(--muted); text-align: center; }
.owner-placeholder::before { content: "DRC"; position: absolute; font-family: var(--font-heading), Arial, sans-serif; font-size: 92px; font-weight: 700; color: rgba(113,128,71,.09); }
.owner-placeholder span { position: relative; padding: 16px; font-size: 13px; letter-spacing: .12em; text-transform: uppercase; }
.owner-copy h2, .contact-card h2 { margin: 0 0 28px; font-size: clamp(38px, 5vw, 56px); line-height: 1.05; letter-spacing: -.035em; }
.owner-copy p:not(.eyebrow) { color: var(--muted); font-size: 16.5px; }

.experience-highlight {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  margin: -10px 0 24px;
  border-left: 3px solid var(--olive);
  padding-left: 16px;
  color: var(--olive-dark);
}

.experience-highlight strong {
  font-family: var(--font-heading), Arial, sans-serif;
  font-size: 32px;
  line-height: 1;
}

.experience-highlight span {
  color: var(--muted);
  font-size: 14px;
}

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

.service-overview-card {
  min-height: 210px;
  display: grid;
  grid-template-columns: 150px 1fr;
  align-items: center;
  gap: 24px;
  border: 1px solid var(--line);
  background: var(--paper);
  padding: 22px;
  transition: border-color 180ms ease, transform 180ms ease;
}

.service-overview-card:hover,
.service-overview-card:focus-visible {
  border-color: var(--olive);
  transform: translateY(-2px);
}

.service-overview-card img {
  width: 150px;
  height: 130px;
  object-fit: cover;
  mix-blend-mode: multiply;
}

.service-overview-card h2 {
  margin: 0;
  font-size: 23px;
  line-height: 1.1;
}

.service-overview-card p {
  margin: 10px 0;
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.55;
}

.service-overview-card span {
  display: block;
  color: var(--muted);
  font-size: 11px;
}

.service-overview-card strong {
  display: inline-block;
  margin-top: 13px;
  color: var(--olive-dark);
  font-size: 12px;
}

.review-page-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.review-page-card { margin: 0; padding: 30px; border: 1px solid var(--line); background: var(--paper); }
.review-page-card .stars { color: var(--olive); letter-spacing: .14em; }
.review-page-card > p { color: var(--ink); }
.review-page-card footer { display: flex; flex-direction: column; margin-top: 24px; }
.review-page-card footer span { color: var(--muted); font-size: 12px; }

.contact-page-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.contact-card { padding: 46px; border: 1px solid var(--line); background: var(--paper); }
.contact-card .button { margin: 22px 0 18px; }
.contact-detail { display: block; margin: 5px 0; color: var(--olive-dark); font-weight: 700; }
.contact-card small { display: block; color: var(--muted); }
.area-list { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 20px; padding: 0; list-style: none; }
.area-list li { border-bottom: 1px solid var(--line); padding: 9px 0; }

.contact-form-section {
  border-top: 1px solid var(--line);
  background: var(--paper);
}

.contact-form-layout {
  display: grid;
  grid-template-columns: minmax(0, .72fr) minmax(0, 1.28fr);
  gap: 72px;
  align-items: start;
}

.contact-form-intro h2 {
  margin: 0 0 24px;
  font-size: clamp(38px, 5vw, 56px);
  line-height: 1.05;
  letter-spacing: -.035em;
}

.contact-form-intro > p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.7;
}

.contact-form-reassurance {
  margin-top: 28px;
  border-left: 3px solid var(--olive);
  padding-left: 18px;
  color: var(--ink) !important;
  font-weight: 700;
}

.contact-enquiry-form {
  position: relative;
  border: 1px solid var(--line);
  background: #fff;
  padding: 42px;
}

.contact-form-heading {
  margin: 0 0 24px;
  color: var(--olive-dark);
  font-family: var(--font-heading), Arial, sans-serif;
  font-size: 25px;
  font-weight: 700;
  letter-spacing: -.02em;
}

.contact-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.contact-form-grid label {
  display: flex;
  flex-direction: column;
  gap: 9px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
}

.contact-form-grid label > span { color: var(--olive-dark); }
.contact-form-full { grid-column: 1 / -1; }

.contact-form-grid input,
.contact-form-grid select,
.contact-form-grid textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 0;
  background: #fff;
  padding: 14px 15px;
  color: var(--ink);
  font: inherit;
  font-weight: 400;
}

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

.contact-form-grid input:focus,
.contact-form-grid select:focus,
.contact-form-grid textarea:focus {
  border-color: var(--olive-dark);
  outline: 2px solid rgba(94, 100, 66, .18);
  outline-offset: 1px;
}

.contact-consent {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin: 22px 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}

.contact-consent input { width: 18px; height: 18px; margin: 1px 0 0; flex: 0 0 auto; accent-color: var(--olive-dark); }
.contact-enquiry-form .button { border: 0; cursor: pointer; }
.contact-enquiry-form > small { display: block; margin-top: 14px; color: var(--muted); }

.contact-notice {
  margin-bottom: 24px;
  border-left: 4px solid;
  padding: 15px 17px;
  font-size: 13px;
  line-height: 1.55;
}

.contact-notice-success { border-color: #56713c; background: #edf3e8; color: #304421; }
.contact-notice-error { border-color: #a34736; background: #f8ebe8; color: #67291d; }

.contact-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.reviews-section {
  border-top: 1px solid var(--line);
  background: var(--paper);
}

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

.review-carousel {
  min-height: 370px;
}

.review-card {
  min-height: 295px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.42);
  padding: 30px;
}

.review-stars {
  color: var(--olive);
  font-size: 16px;
  letter-spacing: 0.13em;
}

.review-card blockquote {
  margin: 20px 0 26px;
  color: #45473f;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 16px;
  line-height: 1.72;
}

.review-card footer {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.review-card footer strong {
  color: var(--ink);
  font-size: 14px;
}

.review-card footer span {
  color: var(--muted);
  font-size: 12px;
}

.review-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 24px;
}

.review-controls > button {
  width: 42px;
  height: 42px;
  display: grid;
  cursor: pointer;
  place-items: center;
  border: 1px solid #c8c3b7;
  border-radius: 50%;
  background: transparent;
  color: var(--olive-dark);
  font-size: 19px;
  transition:
    border-color 180ms ease,
    background 180ms ease,
    color 180ms ease;
}

.review-controls > button:hover,
.review-controls > button:focus-visible {
  border-color: var(--olive);
  background: var(--olive);
  color: var(--white);
}

.review-dots {
  display: flex;
  align-items: center;
  gap: 8px;
}

.review-dots button {
  width: 8px;
  height: 8px;
  cursor: pointer;
  border: 0;
  border-radius: 50%;
  background: #c8c3b7;
  padding: 0;
  transition:
    width 180ms ease,
    border-radius 180ms ease,
    background 180ms ease;
}

.review-dots button.active {
  width: 25px;
  border-radius: 8px;
  background: var(--olive);
}

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

.service-card {
  min-height: 430px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.36);
  padding: 30px 24px 25px;
  transition:
    border-color 180ms ease,
    transform 180ms ease;
}

.service-card:hover {
  border-color: #aab38b;
  transform: translateY(-3px);
}

.service-illustration {
  width: 176px;
  height: 148px;
  margin: -8px 0 20px -8px;
}

.service-illustration img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  mix-blend-mode: multiply;
}

.service-card h3 {
  margin: 0;
  font-size: 19px;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.service-card p {
  margin: 12px 0 20px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}

.service-tags li {
  border: 1px solid #cfd3bd;
  border-radius: 2px;
  background: rgba(111, 124, 67, 0.07);
  padding: 6px 9px;
  color: var(--olive-dark);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.2;
}

.service-card a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: auto;
  color: var(--olive-dark);
  font-size: 13px;
  font-weight: 800;
}

.service-card a svg {
  width: 15px;
}

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

.projects-heading {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: end;
  gap: 80px;
  margin-bottom: 44px;
}

.projects-heading > p {
  margin: 0 0 2px;
  color: var(--muted);
}

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

.project:first-child {
  grid-column: span 2;
  aspect-ratio: 8 / 3;
}

.project {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  margin: 0;
  background: #444;
}

.project img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.project:hover img {
  transform: scale(1.025);
}

.project:focus-visible {
  outline: 3px solid var(--olive);
  outline-offset: 3px;
}

.project::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(11, 13, 10, 0.82), transparent 55%);
  pointer-events: none;
}

.project figcaption {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  padding: 28px;
  color: var(--white);
}

.project figcaption span {
  color: #c7d28c;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.project figcaption strong {
  margin-top: 4px;
  font-family: var(--font-heading), Arial, sans-serif;
  font-size: 20px;
}

.project figcaption em {
  margin-top: 9px;
  font-size: 11px;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.08em;
  opacity: 0;
  text-transform: uppercase;
  transform: translateY(6px);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.project:hover figcaption em,
.project:focus-visible figcaption em {
  opacity: 1;
  transform: translateY(0);
}

.centered-action {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}

.button-outline {
  border-color: var(--olive-dark);
  background: transparent;
  color: var(--olive-dark);
}

.button-outline:hover {
  color: var(--white);
}

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

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

.reassurance-card {
  position: relative;
  min-height: 230px;
  overflow: hidden;
  border: 1px solid var(--line);
  padding: 33px;
}

.card-number {
  position: absolute;
  top: 18px;
  right: 22px;
  color: rgba(113, 128, 71, 0.16);
  font-family: var(--font-heading), Arial, sans-serif;
  font-size: 56px;
  font-weight: 700;
  line-height: 1;
}

.reassurance-card h3 {
  position: relative;
  margin: 19px 0 11px;
  font-size: 23px;
}

.reassurance-card h3::before {
  content: "";
  position: absolute;
  top: -19px;
  left: 0;
  width: 29px;
  height: 2px;
  background: var(--olive);
}

.reassurance-card p {
  margin: 0;
  color: var(--muted);
}

.about-section {
  display: grid;
  min-height: 610px;
  grid-template-columns: 1fr 1fr;
  background: var(--charcoal-soft);
  color: var(--white);
}

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

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

.about-copy {
  max-width: 660px;
  align-self: center;
  padding: 78px clamp(44px, 7vw, 100px);
}

.about-copy h2 {
  max-width: 560px;
  margin: 0;
  font-size: clamp(38px, 4.5vw, 58px);
  letter-spacing: -0.04em;
  line-height: 1.04;
}

.about-copy > p:not(.eyebrow) {
  max-width: 590px;
  color: rgba(255, 255, 255, 0.72);
}

.about-copy .button {
  margin-top: 17px;
}

.button-light {
  border-color: var(--cream);
  background: var(--cream);
  color: var(--charcoal);
}

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

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

.areas-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: center;
  gap: 90px;
}

.areas-intro {
  max-width: 470px;
  margin-top: 24px;
  color: var(--muted);
}

.area-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px 28px;
}

.area-grid > div {
  display: flex;
  align-items: center;
  gap: 11px;
  border-bottom: 1px solid var(--line);
  padding: 0 0 12px;
  font-weight: 650;
}

.area-grid svg {
  width: 20px;
  flex: 0 0 20px;
  fill: none;
  stroke: var(--olive);
  stroke-width: 1.8;
}

.contact-section {
  background: var(--olive-dark);
  color: var(--white);
  padding: 54px 0;
}

.contact-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 60px;
}

.contact-inner h2 {
  max-width: 690px;
}

.contact-inner > div:first-child > p:last-child {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.74);
}

.contact-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 11px;
}

.contact-actions small {
  color: rgba(255, 255, 255, 0.65);
}

.contact-email {
  border-bottom: 1px solid rgba(255, 255, 255, 0.6);
  color: var(--white);
  font-weight: 700;
}

.site-footer {
  background: var(--charcoal);
  color: rgba(255, 255, 255, 0.7);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.45fr 0.75fr 0.9fr 0.9fr;
  gap: 70px;
  padding-top: 52px;
  padding-bottom: 44px;
}

.footer-grid > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.footer-brand {
  color: var(--white);
  margin-bottom: 10px;
}

.footer-grid p {
  max-width: 300px;
  margin: 0;
  line-height: 1.75;
}

.footer-grid h3 {
  margin: 0 0 11px;
  color: var(--white);
  font-size: 16px;
}

.footer-grid a,
.footer-grid span,
.footer-grid p {
  font-size: 13px;
}

.footer-grid a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.11);
  padding-top: 22px;
  padding-bottom: 24px;
  color: rgba(255, 255, 255, 0.46);
  font-size: 12px;
}

.project-page {
  min-height: 100vh;
  background: var(--cream);
}

.project-nav {
  margin-left: auto;
}

.project-page-hero {
  padding: 88px 0 82px;
  background: var(--charcoal-soft);
  color: var(--white);
}

.project-page-hero .back-link {
  display: inline-block;
  margin-bottom: 38px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.45);
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 700;
}

.project-page-hero h1 {
  max-width: 850px;
  margin: 0;
  font-family: var(--font-heading), Arial, sans-serif;
  font-size: clamp(46px, 6vw, 78px);
  letter-spacing: -0.04em;
  line-height: 1;
}

.project-page-hero > .container > p:last-child {
  max-width: 710px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.73);
  font-size: 17px;
}

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

.project-gallery-heading {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: end;
  gap: 60px;
  margin-bottom: 38px;
}

.project-gallery-heading h2 {
  margin: 0;
  font-size: clamp(34px, 4vw, 50px);
  letter-spacing: -0.03em;
}

.project-gallery-heading > p {
  margin: 0 0 5px;
  color: var(--muted);
  text-align: right;
}

.project-carousel {
  max-width: 980px;
  margin: 0 auto;
}

.project-carousel-stage {
  position: relative;
  display: block;
  overflow: hidden;
  background: #e5e1d7;
  touch-action: pan-y;
}

.project-carousel-stage > img {
  width: 100%;
  height: auto;
  max-height: none;
  display: block;
  object-fit: contain;
}

.project-carousel-stage .photo-stage,
.gallery-counter {
  position: absolute;
  right: 14px;
  bottom: 14px;
  border-radius: 2px;
  background: rgba(25, 27, 24, 0.84);
  color: var(--white);
  padding: 7px 11px;
  font-size: 11px;
  font-weight: 700;
}

.project-carousel-stage .photo-stage {
  top: 14px;
  right: auto;
  bottom: auto;
  left: 14px;
  background: var(--olive);
  color: var(--white);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.project-carousel-stage .photo-stage.before {
  background: var(--charcoal);
}

.gallery-counter {
  right: 14px;
  bottom: 14px;
}

.gallery-arrow {
  position: absolute;
  top: 50%;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 50%;
  background: rgba(25, 27, 24, 0.76);
  color: var(--white);
  cursor: pointer;
  transform: translateY(-50%);
  transition: background 180ms ease, transform 180ms ease;
  z-index: 2;
}

.gallery-arrow:hover {
  background: var(--olive);
  transform: translateY(-50%) scale(1.04);
}

.gallery-arrow:focus-visible,
.gallery-thumbnails button:focus-visible {
  outline: 3px solid #b5c47a;
  outline-offset: 3px;
}

.gallery-arrow span {
  margin-top: -5px;
  font-family: Arial, sans-serif;
  font-size: 46px;
  font-weight: 300;
  line-height: 1;
}

.gallery-arrow-previous {
  left: 20px;
}

.gallery-arrow-next {
  right: 20px;
}

.gallery-thumbnails {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(82px, 110px));
  justify-content: center;
  gap: 10px;
  margin-top: 14px;
}

.gallery-thumbnails button {
  overflow: hidden;
  aspect-ratio: 4 / 3;
  padding: 0;
  border: 3px solid transparent;
  background: #ddd8cc;
  cursor: pointer;
  opacity: 0.64;
  transition: border-color 180ms ease, opacity 180ms ease;
}

.gallery-thumbnails button:hover,
.gallery-thumbnails button.active {
  border-color: var(--olive);
  opacity: 1;
}

.gallery-thumbnails img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.gallery-swipe-hint {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 13px;
  text-align: center;
}

.before-gallery-section {
  margin-top: 72px;
  padding-top: 58px;
  border-top: 1px solid var(--line);
}

.before-heading {
  margin-bottom: 28px;
}

.project-page-footer {
  background: var(--charcoal);
  color: rgba(255, 255, 255, 0.66);
  padding: 24px 0;
}

.project-page-footer .container {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 12px;
}

.project-page-footer a {
  color: var(--white);
}


.home-review-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--charcoal-soft);
  padding: 54px 0;
  color: var(--white);
}

.home-review-inner {
  position: relative;
  display: block;
  text-align: center;
}

.home-review-slides { min-height: 185px; }

.home-review-slide {
  display: none;
  max-width: 850px;
  margin: 0;
  margin-inline: auto;
}

.home-review-slide.active { display: block; }

.home-review-slide p {
  margin: 13px 0 17px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(22px, 3vw, 34px);
  line-height: 1.35;
}

.home-review-slide footer {
  color: rgba(255, 255, 255, .68);
  font-size: 13px;
  font-style: normal;
}

.home-review-controls {
  display: flex;
  justify-content: center;
  gap: 9px;
  margin: 22px 0 18px;
}

.home-review-controls button {
  width: 9px;
  height: 9px;
  cursor: pointer;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, .3);
  padding: 0;
}

.home-review-controls button.active {
  width: 28px;
  border-radius: 10px;
  background: #c6d091;
}

.home-review-inner > a {
  color: #dce4b4;
  font-size: 13px;
  font-weight: 800;
  border-bottom: 1px solid rgba(220, 228, 180, .55);
}

.home-enquiry-form .contact-form-grid textarea { min-height: 125px; }
.home-enquiry-section { position: relative; overflow: hidden; border-top: 0; background: var(--charcoal); }
.home-enquiry-section > .container { position: relative; z-index: 2; }
.home-enquiry-background,
.home-enquiry-shade { position: absolute; inset: 0; width: 100%; height: 100%; }
.home-enquiry-background { object-fit: cover; object-position: center; }
.home-enquiry-shade { z-index: 1; background: linear-gradient(90deg, rgba(18,22,16,.9) 0%, rgba(18,22,16,.78) 46%, rgba(18,22,16,.44) 100%); }
.home-enquiry-section .contact-form-intro h2 { color: var(--white); }
.home-enquiry-section .contact-form-intro > p:not(.eyebrow) { color: rgba(255,255,255,.78); }
.home-enquiry-section .contact-form-intro .eyebrow { color: #d6dfa5; }
.home-enquiry-section .contact-form-reassurance { border-color: #c6d091; color: var(--white) !important; }
.mobile-call-bar { display: none; }

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

.home-advice-card {
  display: grid;
  grid-template-columns: 210px 1fr;
  align-items: center;
  gap: 30px;
  border: 1px solid var(--line);
  background: var(--cream);
  padding: 16px;
  transition: border-color 180ms ease, transform 180ms ease;
}

.home-advice-card:hover,
.home-advice-card:focus-visible {
  border-color: var(--olive);
  transform: translateY(-2px);
}

.home-advice-card img {
  width: 210px;
  height: 145px;
  object-fit: cover;
}

.home-advice-card h2 {
  margin: 3px 0 8px;
  font-family: var(--font-heading), Arial, sans-serif;
  font-size: clamp(27px, 3vw, 38px);
  line-height: 1.02;
  letter-spacing: -.03em;
}

.home-advice-card p:not(.eyebrow) {
  margin: 0 0 9px;
  color: var(--muted);
  font-size: 14px;
}

.home-advice-card span {
  color: var(--olive-dark);
  font-size: 13px;
  font-weight: 800;
}

.article-overview-card {
  width: 100%;
  height: 177px;
  max-width: 980px;
  margin: 0 auto;
}

.articles-list {
  display: grid;
  gap: 18px;
}

.home-article {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(340px, .88fr);
  min-height: 430px;
  padding: 0;
  border: 1px solid var(--line);
  background: var(--cream);
}

.home-article-image {
  min-height: 430px;
  overflow: hidden;
}

.home-article-image img,
.article-index-image img,
.article-split-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-article-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(38px, 5vw, 72px);
}

.home-article-copy h2 {
  max-width: 500px;
  margin: 10px 0 20px;
  font-family: var(--font-heading), Arial, sans-serif;
  font-size: clamp(38px, 4vw, 58px);
  line-height: .98;
  letter-spacing: -.035em;
}

.home-article-copy > p:not(.eyebrow) {
  max-width: 490px;
  margin: 0 0 30px;
  color: var(--muted);
  font-size: 17px;
}

.articles-index {
  background: var(--paper);
}

.article-index-card {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr);
  border: 1px solid var(--line);
  background: var(--cream);
}

.article-index-image {
  min-height: 520px;
  overflow: hidden;
}

.article-index-image img {
  transition: transform 400ms ease;
}

.article-index-image:hover img {
  transform: scale(1.025);
}

.article-index-card > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(38px, 5vw, 70px);
}

.article-index-card h2 {
  margin: 10px 0 22px;
  font-family: var(--font-heading), Arial, sans-serif;
  font-size: clamp(40px, 4vw, 60px);
  line-height: .98;
  letter-spacing: -.04em;
}

.article-index-card h2 a:hover {
  color: var(--olive-dark);
}

.article-index-card > div > p:not(.eyebrow) {
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 17px;
}

.article-card-meta,
.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.article-card-meta {
  margin-bottom: 30px;
}

.article-split-hero {
  display: grid;
  grid-template-columns: minmax(470px, 47%) minmax(0, 53%);
  min-height: 480px;
  background: var(--paper);
}

.article-split-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 42px clamp(32px, 4vw, 62px);
}

.article-back-link {
  margin-bottom: 24px;
  color: var(--olive-dark);
  font-size: 14px;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.article-split-copy h1 {
  max-width: 700px;
  margin: 7px 0 18px;
  font-family: var(--font-heading), Arial, sans-serif;
  font-size: clamp(43px, 4.4vw, 60px);
  line-height: .95;
  letter-spacing: -.05em;
}

.article-split-copy > p:not(.eyebrow) {
  max-width: 600px;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
}

.article-title-line {
  width: 58px;
  height: 3px;
  margin: 23px 0 17px;
  background: var(--olive);
}

.article-split-image {
  min-height: 480px;
  margin: 0;
  overflow: hidden;
  background: var(--charcoal);
}

.article-guide-nav {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--charcoal);
  color: var(--white);
}

.article-guide-nav .container {
  min-height: 62px;
  display: flex;
  align-items: center;
  gap: 34px;
  overflow-x: auto;
  white-space: nowrap;
}

.article-guide-nav strong {
  color: #cbd694;
  font-family: var(--font-heading), Arial, sans-serif;
  font-size: 18px;
}

.article-guide-nav a {
  color: rgba(255,255,255,.76);
  font-size: 14px;
}

.article-guide-nav a:hover {
  color: var(--white);
}

.article-body {
  background: var(--paper);
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 760px);
  justify-content: center;
  align-items: start;
}

.article-sidebar {
  position: sticky;
  top: 32px;
  display: flex;
  flex-direction: column;
  border-top: 3px solid var(--olive);
  padding-top: 20px;
}

.article-sidebar strong {
  margin-bottom: 15px;
  font-family: var(--font-heading), Arial, sans-serif;
  font-size: 21px;
}

.article-sidebar a {
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

.article-sidebar a:hover {
  color: var(--olive-dark);
}

.article-copy {
  min-width: 0;
  font-size: 17px;
  line-height: 1.72;
}

.article-copy > p:first-child {
  margin-top: 0;
  font-size: 21px;
  line-height: 1.55;
}

.article-copy h2 {
  scroll-margin-top: 36px;
  margin: 60px 0 18px;
  font-family: var(--font-heading), Arial, sans-serif;
  font-size: clamp(35px, 3.5vw, 46px);
  line-height: 1;
  letter-spacing: -.035em;
}

.article-copy h3 {
  margin: 38px 0 10px;
  font-family: var(--font-heading), Arial, sans-serif;
  font-size: 28px;
  line-height: 1.05;
}

.article-copy p {
  margin: 0 0 20px;
}

.article-copy ul {
  margin: 8px 0 28px;
  padding-left: 24px;
}

.article-copy li {
  margin: 7px 0;
  padding-left: 5px;
}

.article-copy a:not(.button) {
  color: var(--olive-dark);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.article-copy blockquote {
  margin: 30px 0;
  padding: 19px 24px;
  border-left: 4px solid var(--olive);
  background: var(--cream);
  font-family: var(--font-heading), Arial, sans-serif;
  font-size: 25px;
  line-height: 1.25;
}

.article-faq {
  border-top: 1px solid var(--line);
}

.article-faq details {
  border-bottom: 1px solid var(--line);
  padding: 0;
}

.article-faq summary {
  position: relative;
  cursor: pointer;
  list-style: none;
  padding: 23px 42px 23px 0;
  font-family: var(--font-heading), Arial, sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.15;
}

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

.article-faq summary::after {
  content: "+";
  position: absolute;
  top: 18px;
  right: 4px;
  color: var(--olive);
  font-size: 32px;
  font-weight: 400;
}

.article-faq details[open] summary::after {
  content: "−";
}

.article-faq details > p {
  padding-right: 38px;
}

.article-cta {
  margin: 62px -24px 34px;
  padding: clamp(34px, 5vw, 50px);
  background: var(--charcoal);
  color: var(--white);
}

.article-cta h2 {
  margin: 9px 0 20px;
  color: var(--white);
}

.article-cta > p:not(.eyebrow) {
  color: rgba(255,255,255,.75);
}

.article-cta > div {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.article-cta .button-light {
  border-color: rgba(255,255,255,.45);
  background: transparent;
}

.article-disclaimer {
  margin-top: 42px !important;
  padding: 24px;
  border: 1px solid var(--line);
  background: var(--cream);
  color: var(--muted);
  font-size: 14px;
}

.article-byline {
  margin-top: 28px !important;
  color: var(--muted);
  font-size: 14px;
}

@media (max-width: 1080px) {
  .article-split-hero {
    grid-template-columns: minmax(390px, 46%) minmax(0, 54%);
  }

  .article-layout {
    grid-template-columns: minmax(0, 760px);
    justify-content: center;
    gap: 0;
  }
  .desktop-nav {
    gap: 18px;
  }

  .desktop-nav a {
    font-size: 12px;
  }

  .header-cta {
    display: none;
  }

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

  .service-card {
    min-height: 420px;
  }

  .footer-grid {
    gap: 35px;
  }
}

@media (max-width: 820px) {
  .container {
    width: min(100% - 36px, 720px);
  }

  .site-header {
    height: 70px;
  }

  .desktop-nav {
    display: none;
  }

  .mobile-menu {
    display: block;
  }

  .mobile-menu nav {
    top: 70px;
  }

  .hero {
    min-height: 500px;
  }

  .hero > img {
    object-position: 60% center;
  }

  .hero-shade {
    background: rgba(13, 16, 11, 0.67);
  }

  .hero h1 {
    font-size: clamp(45px, 9vw, 65px);
  }

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

  .trust-grid > div {
    border-bottom: 1px solid var(--line);
  }

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

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

  .review-carousel {
    min-height: 0;
  }

  .projects-heading,
  .areas-layout,
  .contact-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

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

  .project:first-child {
    grid-column: span 2;
    aspect-ratio: 8 / 3;
  }

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

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

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

  .about-copy {
    max-width: none;
    padding: 70px 36px;
  }

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

  .project-gallery-heading {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .project-gallery-heading > p {
    text-align: left;
  }

}

@media (max-width: 560px) {
  .container {
    width: min(100% - 28px, 520px);
  }

  .brand {
    min-width: 0;
  }

  .brand-mark {
    width: 39px;
    height: 39px;
  }

  .brand-copy strong {
    font-size: 16px;
  }

  .hero {
    min-height: 610px;
  }

  .hero-inner {
    padding: 82px 0 70px;
  }

  .hero h1 {
    font-size: 43px;
  }

  .hero h1 br {
    display: none;
  }

  .hero-copy {
    font-size: 16px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
  }

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

  .trust-grid > div {
    min-height: 85px;
    border-left: 1px solid var(--line);
    padding: 16px 24px;
  }

  .section {
    padding: 70px 0;
  }

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

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

  .service-card {
    min-height: 390px;
  }

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

  .project:first-child {
    grid-column: auto;
    aspect-ratio: 4 / 3;
  }

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

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

  .about-copy {
    padding: 62px 24px;
  }

  .contact-inner {
    gap: 24px;
  }

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

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

  .project-page-hero {
    padding: 65px 0 58px;
  }

  .project-page-hero .back-link {
    margin-bottom: 28px;
  }

  .project-carousel-stage {
    aspect-ratio: 4 / 3;
  }

  .gallery-arrow {
    width: 44px;
    height: 44px;
  }

  .gallery-arrow span {
    font-size: 40px;
  }

  .gallery-arrow-previous {
    left: 10px;
  }

  .gallery-arrow-next {
    right: 10px;
  }

  .gallery-thumbnails {
    grid-template-columns: repeat(auto-fit, minmax(62px, 78px));
  }

  .project-page-footer .container {
    align-items: flex-start;
    flex-direction: column;
  }

}

@media (max-width: 900px) {
  .split-intro,
  .meet-dan,
  .contact-page-grid,
  .contact-form-layout { grid-template-columns: 1fr; gap: 42px; }
  .home-service-grid,
  .home-project-list { grid-template-columns: 1fr 1fr; }
  .review-page-grid { grid-template-columns: 1fr 1fr; }
  .owner-placeholder { min-height: 440px; }
  .service-detail-hero-inner { grid-template-columns: 160px 1fr; gap: 38px; }
  .service-project-grid { grid-template-columns: 1fr 1fr; }
  .service-intro-grid { gap: 40px; }
  .service-overview-grid { grid-template-columns: 1fr; }
  .service-overview-card { min-height: 180px; }
  .home-photo-showcase { grid-template-columns: 1fr 1fr; }
  .home-showcase-photo:first-child { grid-column: 1 / -1; }
  .home-enquiry-shade { background: rgba(18,22,16,.78); }
}

@media (max-width: 560px) {
  .section { padding: 54px 0; }
  .inner-hero { padding: 52px 0 48px; }
  .inner-hero .container { margin: 0 auto; }
  .inner-hero h1 { font-size: 40px; }
  .home-service-grid,
  .home-project-list,
  .review-page-grid { grid-template-columns: 1fr !important; }
  .home-service-card { grid-template-columns: 88px 1fr; padding: 14px; }
  .home-service-card img { width: 88px; height: 78px; }
  .home-project-link { grid-template-columns: 82px 1fr; }
  .home-project-link img { width: 82px; height: 82px; }
  .home-intro-photo { min-height: 260px; }
  .home-photo-showcase { grid-template-columns: 1fr; }
  .home-showcase-photo,
  .home-showcase-photo:first-child { min-height: 285px; grid-column: auto; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.22); }
  .home-showcase-photo:last-child { border-bottom: 0; }
  .contact-card { padding: 30px 24px; }
  .contact-enquiry-form { padding: 30px 24px; }
  .contact-form-grid { grid-template-columns: 1fr; }
  .contact-form-full { grid-column: auto; }
  .area-list { grid-template-columns: 1fr; }
  .owner-placeholder { min-height: 360px; }
  .service-detail-hero { padding: 62px 0; }
  .service-detail-hero-inner { grid-template-columns: 1fr; gap: 32px; }
  .service-detail-icon { width: 140px; }
  .service-project-grid { grid-template-columns: 1fr; }
  .service-intro-grid,
  .service-process-grid { grid-template-columns: 1fr; }
  .service-includes { padding: 28px; }
  .service-process-card { min-height: 0; }
  .service-overview-card { grid-template-columns: 92px 1fr; gap: 14px; min-height: 0; padding: 14px; }
  .service-overview-card img { width: 92px; height: 84px; }
  .service-overview-card p { display: none; }
  .service-overview-card h2 { font-size: 19px; }
  .experience-highlight { align-items: flex-start; flex-direction: column; gap: 4px; }
  .home-review-strip { padding: 44px 0; }
  .home-review-slides { min-height: 230px; }
  .home-review-slide p { font-size: 22px; }
  .home-advice-card { grid-template-columns: 88px 1fr; gap: 14px; padding: 12px; }
  .home-advice-card img { width: 88px; height: 96px; }
  .home-advice-card h2 { font-size: 23px; }
  .home-advice-card p:not(.eyebrow) { display: none; }
  .home-advice-card .eyebrow { font-size: 9px; letter-spacing: .1em; }
  .article-overview-card { height: 140px; }

  main { padding-bottom: 68px; }

  .mobile-call-bar {
    position: fixed;
    z-index: 50;
    right: 0;
    bottom: 0;
    left: 0;
    min-height: 68px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    border-top: 1px solid rgba(255,255,255,.2);
    background: var(--olive-dark);
    padding: 12px 22px;
    color: var(--white);
    box-shadow: 0 -8px 24px rgba(0,0,0,.18);
  }

  .mobile-call-bar span { font-size: 12px; font-weight: 700; }
  .mobile-call-bar strong { font-size: 17px; white-space: nowrap; }
}

@media (max-width: 820px) {
  .home-article,
  .article-index-card,
  .article-split-hero {
    grid-template-columns: 1fr;
  }

  .home-article-image,
  .article-index-image {
    min-height: 390px;
  }

  .article-split-copy {
    padding: 48px 36px;
  }

  .article-split-copy h1 {
    font-size: clamp(43px, 8vw, 56px);
  }

  .article-split-image {
    min-height: 340px;
  }

  .article-layout {
    grid-template-columns: 1fr;
  }

  .article-sidebar {
    position: static;
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 24px;
  }

  .article-sidebar strong {
    grid-column: 1 / -1;
  }

  .article-cta {
    margin-right: 0;
    margin-left: 0;
  }
}

@media (max-width: 560px) {
  .home-article-image,
  .article-index-image {
    min-height: 270px;
  }

  .home-article-copy,
  .article-index-card > div {
    padding: 34px 24px 40px;
  }

  .home-article-copy h2,
  .article-index-card h2 {
    font-size: 39px;
  }

  .article-split-copy {
    padding: 46px 22px 52px;
  }

  .article-back-link {
    margin-bottom: 28px;
  }

  .article-split-copy h1 {
    font-size: 45px;
    line-height: .95;
  }

  .article-split-copy > p:not(.eyebrow) {
    font-size: 16px;
  }

  .article-split-image {
    min-height: 310px;
  }

  .article-guide-nav .container {
    min-height: 66px;
    gap: 24px;
  }

  .article-sidebar {
    grid-template-columns: 1fr;
  }

  .article-copy {
    font-size: 16.5px;
    line-height: 1.7;
  }

  .article-copy > p:first-child {
    font-size: 20px;
  }

  .article-copy h2 {
    margin-top: 58px;
    font-size: 38px;
  }

  .article-copy h3 {
    font-size: 27px;
  }

  .article-copy blockquote {
    padding: 20px;
    font-size: 24px;
  }

  .article-faq summary {
    font-size: 21px;
  }

  .article-cta {
    padding: 34px 24px;
  }

  .article-cta > div {
    align-items: stretch;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}


/* Compact project page headers */
.project-page-hero {
  padding: 58px 0 54px;
}

.project-page-hero .back-link {
  margin-bottom: 24px;
}

.project-page-hero h1 {
  max-width: 780px;
  font-size: clamp(38px, 4.5vw, 60px);
  line-height: 1.04;
}

.project-page-hero > .container > p:last-child {
  margin-top: 18px;
}

@media (max-width: 700px) {
  .project-page-hero {
    padding: 44px 0 40px;
  }

  .project-page-hero .back-link {
    margin-bottom: 20px;
  }

  .project-page-hero h1 {
    font-size: clamp(34px, 10vw, 46px);
  }
}


/* Compact review invitation */
.review-invitation {
  padding: 38px 0;
}

.review-invitation .contact-inner {
  gap: 32px;
}

.review-invitation h2 {
  margin-bottom: 8px;
  font-size: clamp(30px, 3vw, 42px);
}

.review-invitation p {
  max-width: 760px;
}

@media (max-width: 700px) {
  .review-invitation {
    padding: 30px 0;
  }

  .review-invitation .contact-inner {
    gap: 22px;
  }
}


/* Slim review invitation strip */
.review-invitation {
  padding: 24px 0;
  border-bottom: 1px solid rgba(25, 27, 24, 0.1);
  background: #e9e4d6;
  color: var(--ink);
}

.review-invitation .contact-inner {
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: center;
}

.review-invitation .eyebrow {
  margin-bottom: 6px;
  color: #657638;
}

.review-invitation p {
  max-width: 820px;
  margin: 0;
  color: var(--muted);
}

.review-invitation .button {
  white-space: nowrap;
}

@media (max-width: 700px) {
  .review-invitation {
    padding: 22px 0;
  }

  .review-invitation .contact-inner {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}


/* High-contrast review invitation text */
.review-invitation,
.review-invitation .eyebrow,
.review-invitation p {
  color: #111111;
}

.review-invitation .contact-inner p {
  color: #111111 !important;
}


/* Full-screen project photo viewer */
.project-carousel-stage > img.project-lightbox-trigger {
  cursor: zoom-in;
}

body.project-lightbox-open {
  overflow: hidden;
  touch-action: none;
}

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

.project-lightbox {
  position: fixed;
  inset: 0;
  z-index: 999999;
  display: block;
  background: rgba(8, 9, 8, 0.97);
  color: #ffffff;
}

.project-lightbox-frame {
  position: relative;
  display: flex;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  align-items: center;
  justify-content: center;
  padding: max(58px, env(safe-area-inset-top)) 58px max(58px, env(safe-area-inset-bottom));
}

.project-lightbox-image {
  display: block;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  user-select: none;
  -webkit-user-drag: none;
}

.project-lightbox-close,
.project-lightbox-arrow {
  position: absolute;
  z-index: 2;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.62);
  color: #ffffff;
  font: inherit;
  cursor: pointer;
}

.project-lightbox-close {
  top: max(12px, env(safe-area-inset-top));
  right: 14px;
  font-size: 32px;
  line-height: 1;
}

.project-lightbox-arrow {
  top: 50%;
  transform: translateY(-50%);
  font-size: 40px;
  line-height: 1;
}

.project-lightbox-previous {
  left: 10px;
}

.project-lightbox-next {
  right: 10px;
}

.project-lightbox-counter {
  position: absolute;
  bottom: max(16px, env(safe-area-inset-bottom));
  left: 50%;
  padding: 7px 12px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.62);
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
}

@media (max-width: 700px) {
  .project-carousel-stage > img.project-lightbox-trigger {
    cursor: pointer;
  }

  .project-lightbox-frame {
    padding: max(58px, env(safe-area-inset-top)) 8px max(58px, env(safe-area-inset-bottom));
  }

  .project-lightbox-arrow {
    top: auto;
    bottom: max(12px, env(safe-area-inset-bottom));
    transform: none;
  }

  .project-lightbox-previous {
    left: 14px;
  }

  .project-lightbox-next {
    right: 14px;
  }
}
