:root {
  --green-950: #0b271b;
  --green-900: #103923;
  --green-800: #174d30;
  --green-700: #23633d;
  --lime: #76a923;
  --lime-bright: #8ac42b;
  --cream: #f6f0e6;
  --cream-2: #fbf8f2;
  --white: #ffffff;
  --ink: #17201a;
  --muted: #5e6861;
  --line: rgba(18, 61, 42, .16);
  --shadow: 0 24px 70px rgba(11, 39, 27, .13);
  --radius: 24px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream-2);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
}
body.menu-open { overflow: hidden; }
img { display: block; width: 100%; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
section[id] { scroll-margin-top: 110px; }

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0);
  white-space: nowrap; border: 0;
}
.skip-link {
  position: fixed;
  top: 10px; left: 10px;
  transform: translateY(-140%);
  z-index: 999;
  background: var(--white);
  padding: 10px 14px;
  border-radius: 8px;
}
.skip-link:focus { transform: translateY(0); }

.top-strip {
  background: var(--green-950);
  color: rgba(255,255,255,.83);
  font-size: .84rem;
}
.top-strip-inner {
  min-height: 34px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.top-strip a {
  color: var(--white);
  text-decoration: none;
  font-weight: 700;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251,248,242,.95);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(18,61,42,.08);
}
.nav-wrap {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.brand img {
  width: 58px;
  height: 58px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 8px 24px rgba(11,39,27,.15);
}
.brand span { display: grid; line-height: 1.08; }
.brand strong {
  font-family: Georgia, "Times New Roman", serif;
  color: var(--green-900);
  font-size: 1.25rem;
}
.brand small {
  margin-top: 5px;
  text-transform: uppercase;
  letter-spacing: .17em;
  font-size: .59rem;
  color: var(--muted);
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}
.main-nav a {
  text-decoration: none;
  font-size: .94rem;
  font-weight: 600;
  color: var(--green-950);
}
.main-nav a:hover { color: var(--lime); }
.main-nav .nav-cta {
  padding: 12px 20px;
  border-radius: 999px;
  color: var(--white);
  background: var(--green-900);
}
.main-nav .nav-cta:hover { background: var(--lime); color: var(--green-950); }
.menu-button {
  display: none;
  border: 0;
  background: transparent;
  padding: 8px;
}
.menu-button > span:not(.sr-only) {
  display: block;
  width: 26px;
  height: 2px;
  margin: 5px 0;
  background: var(--green-900);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 72px 0 80px;
  background:
    radial-gradient(circle at 15% 15%, rgba(118,169,35,.14), transparent 28%),
    linear-gradient(120deg, #fbf8f2 0%, #f2eadc 100%);
}
.hero::after {
  content: "";
  position: absolute;
  right: -130px; top: -180px;
  width: 510px; height: 510px;
  border: 1px solid rgba(118,169,35,.25);
  border-radius: 50%;
  box-shadow:
    0 0 0 55px rgba(118,169,35,.035),
    0 0 0 115px rgba(118,169,35,.025);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  gap: clamp(38px, 6vw, 84px);
  align-items: center;
  position: relative;
  z-index: 1;
}
.eyebrow {
  margin: 0 0 14px;
  color: var(--green-700);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .74rem;
  font-weight: 800;
}
.eyebrow.light { color: #b3dc71; }
h1, h2, h3 {
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.08;
  color: var(--green-950);
  margin-top: 0;
}
h1 {
  margin-bottom: 22px;
  font-size: clamp(3rem, 5.6vw, 5.6rem);
  letter-spacing: -.045em;
}
h1 span { color: var(--green-700); }
.hero-lead {
  max-width: 625px;
  margin: 0 0 30px;
  font-size: clamp(1.05rem, 1.4vw, 1.23rem);
  color: #48534c;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
}
.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 52px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, color .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary {
  color: var(--white);
  background: var(--green-900);
  box-shadow: 0 12px 30px rgba(16,57,35,.18);
}
.button-primary:hover { background: var(--lime); color: var(--green-950); }
.button-secondary {
  border-color: var(--line);
  color: var(--green-900);
  background: rgba(255,255,255,.55);
}
.button-secondary:hover { background: var(--white); }

.trust-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 42px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}
.trust-row div { display: grid; }
.trust-row strong { font-size: .92rem; color: var(--green-900); }
.trust-row span { font-size: .78rem; color: var(--muted); }

.hero-visual { position: relative; }
.hero-image-wrap {
  position: relative;
  height: min(650px, 70vh);
  min-height: 540px;
  border-radius: 200px 200px 30px 30px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.hero-image-wrap::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(11,39,27,.13), transparent 42%);
}
.hero-image-wrap img {
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}
.hero-badge {
  position: absolute;
  left: -38px; bottom: 42px;
  width: 178px; height: 178px;
  display: grid;
  place-content: center;
  text-align: center;
  padding: 20px;
  border-radius: 50%;
  color: var(--white);
  background: var(--green-900);
  border: 8px solid var(--cream-2);
  box-shadow: 0 18px 45px rgba(11,39,27,.25);
  transform: rotate(-7deg);
}
.hero-badge span {
  color: #bfe27f;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.3rem;
  line-height: 1;
}
.hero-badge strong { font-size: .78rem; line-height: 1.3; }

.quick-services {
  position: relative;
  z-index: 3;
  margin-top: -28px;
}
.quick-services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 13px;
  border-radius: 22px;
  background: var(--green-900);
  box-shadow: 0 18px 50px rgba(11,39,27,.2);
}
.quick-services-grid a {
  min-height: 76px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 13px;
  color: var(--white);
  text-decoration: none;
  border-right: 1px solid rgba(255,255,255,.16);
}
.quick-services-grid a:last-child { border-right: 0; }
.quick-services-grid a:hover { color: #c7e992; }
.service-icon {
  font-size: 1.7rem;
  font-family: Georgia, serif;
}

.section { padding: 112px 0; }
.section-heading { margin-bottom: 46px; }
.section-heading.centred {
  max-width: 790px;
  margin-inline: auto;
  text-align: center;
}
.section-heading h2, .why-copy h2, .areas-grid h2, .quote-intro h2 {
  margin-bottom: 17px;
  font-size: clamp(2.25rem, 4.4vw, 4.25rem);
  letter-spacing: -.035em;
}
.section-heading p, .areas-grid p, .quote-intro > p, .why-copy > p {
  color: var(--muted);
  font-size: 1.06rem;
}
.split-heading {
  display: grid;
  grid-template-columns: 1.1fr .7fr;
  gap: 70px;
  align-items: end;
}
.split-heading p { margin: 0; }

.services-section { background: var(--cream-2); }
.service-cards {
  display: grid;
  grid-template-columns: 1.2fr .9fr .9fr;
  gap: 20px;
}
.service-card {
  min-width: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 18px 48px rgba(11,39,27,.08);
}
.service-card img {
  height: 310px;
  object-fit: cover;
}
.service-card-featured img { object-position: 63% center; }
.service-card-content { padding: 28px 28px 30px; }
.card-kicker {
  margin: 0 0 6px;
  color: var(--lime);
  text-transform: uppercase;
  letter-spacing: .13em;
  font-size: .68rem;
  font-weight: 800;
}
.service-card h3 {
  margin-bottom: 12px;
  font-size: 2rem;
}
.service-card p { color: var(--muted); }
.service-card a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  color: var(--green-800);
  text-decoration: none;
  font-weight: 800;
}
.service-card a span { transition: transform .2s ease; }
.service-card a:hover span { transform: translateX(5px); }
.other-services {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 26px;
}
.other-services span {
  padding: 9px 15px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--green-800);
  background: rgba(255,255,255,.6);
  font-size: .88rem;
  font-weight: 700;
}

.work-section { background: var(--cream); }
.work-grid {
  display: grid;
  grid-template-columns: 1.35fr .65fr .65fr;
  grid-template-rows: 300px 300px;
  gap: 18px;
}
.work-grid figure {
  position: relative;
  overflow: hidden;
  margin: 0;
  border-radius: 22px;
  background: var(--green-950);
}
.work-grid figure:first-child { grid-row: 1 / 3; }
.work-grid figure:nth-child(2) { grid-column: 2 / 4; }
.work-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.work-grid .work-large img { object-position: center top; }
.work-grid figure:hover img { transform: scale(1.025); }
.work-grid figcaption {
  position: absolute;
  left: 16px; right: 16px; bottom: 16px;
  padding: 11px 14px;
  border-radius: 12px;
  color: var(--white);
  background: rgba(11,39,27,.78);
  backdrop-filter: blur(10px);
  font-size: .9rem;
  font-weight: 700;
}

.why-section {
  overflow: hidden;
  color: var(--white);
  background: var(--green-950);
}
.why-grid {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: clamp(45px, 7vw, 95px);
  align-items: center;
}
.why-image {
  height: 690px;
  overflow: hidden;
  border-radius: 240px 240px 30px 30px;
  box-shadow: 0 24px 70px rgba(0,0,0,.25);
}
.why-image img { height: 100%; object-fit: cover; }
.why-copy h2 { color: var(--white); }
.why-copy > p { color: rgba(255,255,255,.7); }
.benefit-list { margin-top: 36px; }
.benefit-list > div {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  padding: 19px 0;
  border-top: 1px solid rgba(255,255,255,.13);
}
.benefit-list > div:last-child { border-bottom: 1px solid rgba(255,255,255,.13); }
.benefit-list > div > span {
  color: #acd967;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
}
.benefit-list strong { font-size: 1.02rem; }
.benefit-list p {
  margin: 3px 0 0;
  color: rgba(255,255,255,.65);
  font-size: .9rem;
}

.areas-section { background: var(--cream-2); }
.areas-grid {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 70px;
  align-items: center;
}
.area-note {
  padding-left: 17px;
  border-left: 3px solid var(--lime);
  font-weight: 600;
}
.areas-image {
  position: relative;
  min-height: 530px;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.areas-image img { height: 100%; min-height: 530px; object-fit: cover; }
.areas-card {
  position: absolute;
  right: 22px; bottom: 22px;
  display: grid;
  min-width: 230px;
  padding: 18px 21px;
  border-radius: 16px;
  color: var(--white);
  background: rgba(11,39,27,.88);
  backdrop-filter: blur(12px);
}
.areas-card strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.65rem;
}
.areas-card span { font-size: .83rem; color: rgba(255,255,255,.75); }

.quote-section {
  color: var(--white);
  background:
    linear-gradient(120deg, rgba(11,39,27,.99), rgba(23,77,48,.96)),
    url("assets/cottage-windows.jpg") center/cover;
}
.quote-grid {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 65px;
  align-items: start;
}
.quote-intro h2 { color: var(--white); }
.quote-intro > p { color: rgba(255,255,255,.7); }
.contact-options { margin-top: 34px; }
.contact-options a {
  display: grid;
  padding: 17px 0;
  border-top: 1px solid rgba(255,255,255,.16);
  text-decoration: none;
}
.contact-options a:last-child { border-bottom: 1px solid rgba(255,255,255,.16); }
.contact-options span {
  color: #bde27d;
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .13em;
}
.contact-options strong {
  margin-top: 3px;
  overflow-wrap: anywhere;
}
.quote-form {
  padding: 34px;
  border-radius: var(--radius);
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 25px 80px rgba(0,0,0,.22);
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.form-grid label { display: grid; gap: 7px; }
.form-grid label > span {
  color: var(--green-950);
  font-size: .82rem;
  font-weight: 800;
}
.full-width { grid-column: 1 / -1; }
input, select, textarea {
  width: 100%;
  border: 1px solid rgba(18,61,42,.18);
  border-radius: 11px;
  color: var(--ink);
  background: #fbfaf7;
  outline: none;
}
input, select { height: 49px; padding: 0 13px; }
textarea { resize: vertical; min-height: 110px; padding: 12px 13px; }
input:focus, select:focus, textarea:focus {
  border-color: var(--lime);
  box-shadow: 0 0 0 3px rgba(118,169,35,.14);
}
.consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 19px 0;
  color: var(--muted);
  font-size: .8rem;
}
.consent input { width: 18px; height: 18px; flex: 0 0 18px; margin-top: 2px; }
.consent a { color: var(--green-700); font-weight: 700; }
.form-submit { width: 100%; border: 0; }
.form-note {
  margin: 11px 0 0;
  color: var(--muted);
  text-align: center;
  font-size: .74rem;
}
.form-status {
  display: none;
  margin-top: 15px;
  padding: 12px 14px;
  border-radius: 10px;
  background: #eef7e1;
  color: var(--green-900);
  font-size: .86rem;
}
.form-status.visible { display: block; }

.site-footer {
  padding: 56px 0 90px;
  color: rgba(255,255,255,.75);
  background: #071b12;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr .7fr;
  gap: 55px;
  padding-bottom: 38px;
}
.footer-grid > div { display: grid; align-content: start; gap: 8px; }
.footer-grid strong { color: var(--white); }
.footer-grid a { text-decoration: none; font-size: .9rem; overflow-wrap: anywhere; }
.footer-grid a:hover { color: #bde27d; }
.footer-brand {
  grid-template-columns: 74px 1fr;
  gap: 17px !important;
}
.footer-brand img {
  width: 74px; height: 74px;
  border-radius: 50%;
  object-fit: cover;
}
.footer-brand p { margin: 5px 0 0; font-size: .9rem; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 25px;
  padding-top: 25px;
  border-top: 1px solid rgba(255,255,255,.1);
  font-size: .78rem;
}
.mobile-quote-bar { display: none; }

@media (max-width: 980px) {
  .menu-button { display: block; }
  .main-nav {
    position: fixed;
    inset: 118px 0 auto 0;
    display: none;
    padding: 22px 20px 30px;
    flex-direction: column;
    align-items: stretch;
    background: var(--cream-2);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 18px 45px rgba(11,39,27,.12);
  }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 7px 10px; }
  .main-nav .nav-cta { text-align: center; }
  .hero-grid, .why-grid, .areas-grid, .quote-grid { grid-template-columns: 1fr; }
  .hero-copy { order: 1; }
  .hero-visual { order: 2; max-width: 620px; width: 100%; margin: 0 auto; }
  .hero-image-wrap { height: 640px; }
  .quick-services-grid { grid-template-columns: 1fr 1fr; }
  .quick-services-grid a:nth-child(2) { border-right: 0; }
  .quick-services-grid a:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.16); }
  .service-cards { grid-template-columns: 1fr 1fr; }
  .service-card-featured { grid-column: 1 / -1; }
  .split-heading { grid-template-columns: 1fr; gap: 15px; }
  .work-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 560px 300px 300px;
  }
  .work-grid figure:first-child { grid-column: 1 / 3; grid-row: 1; }
  .work-grid figure:nth-child(2) { grid-column: 1 / 3; grid-row: 2; }
  .why-image { height: 620px; max-width: 600px; width: 100%; margin: 0 auto; }
  .quote-grid { gap: 40px; }
  .footer-grid { grid-template-columns: 1.4fr 1fr; }
  .footer-grid > div:last-child { grid-column: 2; }
}

@media (max-width: 680px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .top-strip-inner { justify-content: center; }
  .top-strip-inner span { display: none; }
  .nav-wrap { min-height: 74px; }
  .brand img { width: 50px; height: 50px; }
  .brand strong { font-size: 1.02rem; }
  .brand small { font-size: .5rem; }
  .main-nav { inset: 108px 0 auto 0; }
  .hero { padding: 50px 0 65px; }
  h1 { font-size: clamp(2.6rem, 13vw, 4rem); }
  .trust-row { grid-template-columns: 1fr; gap: 10px; }
  .hero-image-wrap { min-height: 500px; height: 68vh; border-radius: 130px 130px 24px 24px; }
  .hero-badge {
    left: -5px; bottom: 20px;
    width: 135px; height: 135px;
    border-width: 6px;
  }
  .hero-badge span { font-size: 1.8rem; }
  .quick-services { margin-top: -18px; }
  .quick-services-grid { padding: 8px; }
  .quick-services-grid a { min-height: 68px; gap: 8px; font-size: .78rem; }
  .service-icon { font-size: 1.3rem; }
  .section { padding: 78px 0; }
  .section-heading h2, .why-copy h2, .areas-grid h2, .quote-intro h2 { font-size: 2.45rem; }
  .service-cards { grid-template-columns: 1fr; }
  .service-card-featured { grid-column: auto; }
  .service-card img { height: 290px; }
  .work-grid {
    grid-template-columns: 1fr;
    grid-template-rows: 530px 280px 280px 280px;
  }
  .work-grid figure:first-child,
  .work-grid figure:nth-child(2) { grid-column: 1; }
  .work-grid figure:first-child { grid-row: 1; }
  .work-grid figure:nth-child(2) { grid-row: 2; }
  .why-image { height: 530px; border-radius: 150px 150px 24px 24px; }
  .areas-grid { gap: 38px; }
  .areas-image, .areas-image img { min-height: 410px; }
  .quote-form { padding: 23px 18px; }
  .form-grid { grid-template-columns: 1fr; }
  .full-width { grid-column: auto; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-grid > div:last-child { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
  .site-footer { padding-bottom: 110px; }
  .mobile-quote-bar {
    position: fixed;
    z-index: 90;
    left: 12px; right: 12px; bottom: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 51px;
    border-radius: 999px;
    color: var(--white);
    background: var(--green-900);
    box-shadow: 0 12px 35px rgba(11,39,27,.28);
    text-decoration: none;
    font-weight: 800;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
  }
}
