:root {
  --ink: #172018;
  --muted: #5c665b;
  --paper: #f7f6f1;
  --soft: #ece8dd;
  --line: #d7d0bf;
  --green: #254b2b;
  --green-2: #3f7048;
  --gold: #b89451;
  --white: #fffdf8;
  --shadow: 0 18px 55px rgba(23, 32, 24, .16);
  font-family: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.55;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 3px solid rgba(184, 148, 81, .9);
  outline-offset: 3px;
}
p { margin: 0 0 1rem; color: var(--muted); }
h1, h2, h3 { margin: 0; line-height: 1.08; letter-spacing: 0; }
h1 { font-size: clamp(2.55rem, 6vw, 5.8rem); max-width: 980px; }
h2 { font-size: clamp(2rem, 4vw, 3.6rem); max-width: 900px; }
h3 { font-size: 1.28rem; }

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 246, 241, .92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(215, 208, 191, .72);
}

.nav {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.25rem;
}
.brand img { width: 42px; height: 42px; }
.brand-text { display: grid; gap: 2px; }
.brand span { color: var(--muted); font-size: .86rem; font-weight: 500; }
.brand-subtitle {
  display: flex;
  align-items: center;
  gap: 6px;
  line-height: 1.15;
}
.brand .brand-stars {
  color: var(--gold);
  font-size: .78rem;
  letter-spacing: .04em;
  text-shadow: 0 1px 0 rgba(255, 253, 248, .65);
}

.navlinks {
  display: flex;
  align-items: center;
  gap: 16px;
  color: #394238;
  font-size: .98rem;
}
.navlinks a:not(.btn) {
  position: relative;
  padding: 8px 0;
}
.navlinks a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .18s ease;
}
.navlinks a:not(.btn):hover::after,
.navlinks a:not(.btn):focus-visible::after {
  transform: scaleX(1);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  background: var(--green);
  color: var(--white);
  border: 1px solid var(--green);
  font-weight: 750;
  border-radius: 4px;
  box-shadow: none;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
}
.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(23, 32, 24, .18);
}
.btn.secondary {
  background: transparent;
  color: var(--ink);
  border-color: rgba(23, 32, 24, .28);
}
.btn.gold {
  background: var(--gold);
  border-color: var(--gold);
  color: #17140d;
}
.hero .btn.secondary,
.subhero .btn.secondary,
.cta .btn.secondary {
  background: var(--gold);
  border-color: var(--gold);
  color: #17140d;
}

.hero {
  min-height: calc(100vh - 72px);
  display: grid;
  align-items: end;
  position: relative;
  overflow: hidden;
  background: #1d271d;
}
.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 58%;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,.08), rgba(0,0,0,.72)),
    linear-gradient(90deg, rgba(8,20,10,.78), rgba(8,20,10,.14));
}
.hero-inner {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 80px 0 58px;
  color: var(--white);
}
.eyebrow {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  color: #efe7d5;
  font-weight: 750;
  margin-bottom: 22px;
  text-transform: uppercase;
  font-size: .78rem;
  letter-spacing: .08em;
}
.eyebrow::before {
  content: "";
  width: 48px;
  height: 3px;
  background: var(--gold);
}
.star-rating {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 20px;
  padding: 9px 14px;
  border: 1px solid rgba(243, 211, 124, .56);
  border-radius: 999px;
  background: rgba(14, 24, 14, .44);
  color: var(--white);
  box-shadow: 0 10px 26px rgba(0, 0, 0, .18);
}
.star-rating span {
  color: #f3d37c;
  font-size: 1rem;
  letter-spacing: .08em;
  line-height: 1;
}
.star-rating strong {
  font-size: .9rem;
  line-height: 1.2;
}
.hero .star-rating {
  margin-left: clamp(220px, 42vw, 520px);
}
.hero p {
  color: rgba(255,253,248,.86);
  max-width: 720px;
  font-size: clamp(1.08rem, 2vw, 1.35rem);
  margin-top: 24px;
}
.hero .hero-note {
  max-width: 620px;
  margin-top: 16px;
  padding-left: 14px;
  border-left: 4px solid var(--gold);
  color: rgba(255,253,248,.92);
  font-size: 1rem;
}
.actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 30px; }
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 56px;
  max-width: 920px;
  background: rgba(255,255,255,.18);
}
.stat {
  background: rgba(14, 24, 14, .48);
  padding: 18px;
}
.stat strong { display: block; font-size: 1.35rem; color: var(--white); }
.stat span { color: rgba(255,253,248,.72); font-size: .94rem; }
.scroll-cue {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  position: fixed;
  right: max(20px, calc((100vw - 1180px) / 2));
  bottom: 24px;
  margin-top: 0;
  color: var(--white);
  font-weight: 850;
  z-index: 2;
  opacity: 1;
  transition: opacity .18s ease, transform .18s ease;
}
body.scrolled .scroll-cue {
  opacity: 0;
  pointer-events: none;
}
.scroll-cue span {
  border-bottom: 2px solid var(--gold);
  padding-bottom: 3px;
}
.scroll-cue b {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.42);
  border-radius: 50%;
  background: rgba(14, 24, 14, .48);
  animation: cue-bounce 1.7s ease-in-out infinite;
}

@keyframes cue-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(5px); }
}

section { padding: 88px 0; }
.compact-section { padding: 48px 0; }
.wrap { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }
.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(260px, .65fr);
  gap: 48px;
  align-items: end;
  margin-bottom: 42px;
}
.section-head p { font-size: 1.08rem; }

.proof-strip {
  background: var(--green);
  color: var(--white);
  padding: 28px 0;
}
.proof-strip .wrap {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.proof-strip strong { display: block; font-size: 1.05rem; }
.proof-strip span { color: rgba(255,255,255,.72); font-size: .94rem; }

.trust-grid,
.quote-grid,
.job-grid {
  display: grid;
  gap: 18px;
}
.trust-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.quote-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.job-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.trust-card,
.quote-card,
.job-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 24px;
}
.trust-card h3,
.quote-card h3,
.job-card h3 {
  font-size: 1.12rem;
}
.trust-card p,
.quote-card p,
.job-card p {
  margin: 12px 0 0;
}
.quote-card {
  background: #e9e4d8;
}
.job-card {
  min-height: 190px;
}

.before-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}
.ba {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  background: #dde2d7;
  border-radius: 6px;
  box-shadow: var(--shadow);
}
.ba:hover {
  box-shadow: 0 22px 70px rgba(23, 32, 24, .22);
}
.ba img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ba .after {
  clip-path: inset(0 0 0 50%);
}
.ba input {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: ew-resize;
  z-index: 3;
}
.ba .divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 4px;
  background: #f3d37c;
  z-index: 2;
}
.ba .divider::after {
  content: "↔";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 50px;
  height: 50px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #f3d37c;
  color: #16140d;
  font-weight: 900;
}
.ba-label {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 4;
  display: flex;
  gap: 8px;
}
.tag {
  background: rgba(23, 32, 24, .78);
  color: var(--white);
  padding: 6px 10px;
  border-radius: 3px;
  font-weight: 800;
  font-size: .82rem;
}
.tag.after-tag { background: rgba(37, 75, 43, .88); }
.ba-copy {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 80px 22px 22px;
  color: var(--white);
  z-index: 4;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,.78));
}
.ba-copy p { color: rgba(255,255,255,.78); margin: 8px 0 0; }

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.service {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 24px;
  min-height: 230px;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.service:hover {
  transform: translateY(-2px);
  border-color: rgba(37, 75, 43, .38);
  box-shadow: 0 16px 38px rgba(23, 32, 24, .12);
}
.service p { margin-top: 12px; }
.service a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  margin-top: 14px;
  padding: 0 14px;
  color: var(--white);
  background: var(--green);
  border: 1px solid var(--green);
  border-radius: 4px;
  font-weight: 850;
}
.service a::after { content: "→"; }
.service-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  margin-top: 26px;
  padding: 26px;
  background: var(--green);
  color: var(--white);
  border-radius: 6px;
}
.service-cta h3 {
  font-size: clamp(1.35rem, 2.4vw, 2rem);
}
.service-cta p {
  max-width: 780px;
  margin: 10px 0 0;
  color: rgba(255,255,255,.78);
}

.gallery {
  display: grid;
  grid-template-columns: 1.2fr .8fr .8fr;
  gap: 14px;
}
.gallery img {
  width: 100%;
  height: 290px;
  object-fit: cover;
  border-radius: 6px;
}
.gallery img:first-child { height: 594px; grid-row: span 2; }

.areas {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.area {
  background: #e9e4d8;
  border-radius: 6px;
  padding: 28px;
}
.area .btn.secondary {
  background: var(--green);
  border-color: var(--green);
  color: var(--white);
}
.area ul { margin: 18px 0 0; padding-left: 20px; color: var(--muted); }

.process {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}
.step {
  background: var(--white);
  padding: 24px;
}
.step b { color: var(--gold); font-size: 1.6rem; }

.split-panel {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(320px, 1fr);
  gap: 42px;
  align-items: start;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 34px;
}
.split-panel h2 {
  font-size: clamp(1.85rem, 3vw, 3rem);
}
.split-panel p {
  margin-top: 18px;
  font-size: 1.08rem;
}
.photo-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.photo-list li {
  display: grid;
  gap: 5px;
  border-left: 4px solid var(--gold);
  background: var(--paper);
  padding: 16px 18px;
}
.photo-list strong {
  font-size: 1.05rem;
}
.photo-list span {
  color: var(--muted);
}

.faq details {
  border-top: 1px solid var(--line);
  padding: 18px 0;
}
.faq details:last-child { border-bottom: 1px solid var(--line); }
.faq summary {
  cursor: pointer;
  font-weight: 800;
  font-size: 1.08rem;
  list-style-position: outside;
}
.faq summary:hover { color: var(--green); }
.faq p { margin-top: 10px; max-width: 850px; }

.price-list {
  display: grid;
  gap: 12px;
}
.price-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 160px;
  gap: 18px;
  align-items: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 20px 22px;
}
.price-item p { margin: 8px 0 0; }
.price-item strong {
  text-align: right;
  font-size: 1.18rem;
  color: var(--green);
}

.cta {
  background: var(--green);
  color: var(--white);
}
.cta h2 {
  margin-bottom: 24px;
}
.cta p { color: rgba(255,255,255,.78); max-width: 760px; font-size: 1.14rem; }
.cta .actions {
  margin-top: 28px;
}
.cta-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 42px;
  align-items: center;
}
.contact-box {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
  padding: 24px;
  border-radius: 6px;
}
.contact-box a {
  display: block;
  font-size: 1.45rem;
  font-weight: 850;
  margin: 8px 0;
}
.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}
.social-links a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid rgba(255,255,255,.26);
  border-radius: 4px;
  color: var(--white);
  font-weight: 800;
}
.contact-save {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 148px;
  gap: 18px;
  align-items: center;
  max-width: 600px;
  margin-top: 24px;
  padding: 18px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 6px;
  background: rgba(255,255,255,.08);
}
.contact-save strong {
  display: block;
  color: var(--white);
  font-size: 1.08rem;
}
.contact-save p {
  margin: 7px 0 14px;
  font-size: .98rem;
}
.contact-save img {
  width: 148px;
  height: 148px;
  padding: 8px;
  border-radius: 6px;
  background: var(--white);
}
.contact-save .btn.secondary {
  min-height: 42px;
}

.quote-form {
  max-width: 760px;
  margin-top: 24px;
  padding: 22px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 6px;
  background: rgba(255,255,255,.08);
}
.quote-form .form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.quote-form label {
  display: grid;
  gap: 7px;
  color: var(--white);
  font-weight: 750;
}
.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 4px;
  padding: 10px 12px;
  background: rgba(255,255,255,.96);
  color: var(--ink);
  font: inherit;
}
.quote-form textarea {
  resize: vertical;
  min-height: 112px;
}
.quote-form > label,
.quote-form .btn {
  margin-top: 14px;
}
.quote-form p {
  margin: 12px 0 0;
  font-size: .98rem;
}

footer {
  background: #121711;
  color: rgba(255,255,255,.78);
  padding: 38px 0;
}
footer .wrap {
  display: grid;
  grid-template-columns: minmax(320px, 1.25fr) minmax(220px, .55fr) minmax(260px, .75fr);
  gap: 24px;
  align-items: start;
}
footer a { color: var(--white); }
.footer-brand {
  display: grid;
  gap: 7px;
  max-width: 720px;
}
.footer-brand strong {
  color: var(--white);
  font-size: 1.08rem;
}
.footer-stars {
  color: var(--gold);
  font-size: 1.05rem;
  font-weight: 900;
  letter-spacing: .08em;
  line-height: 1;
}
.footer-brand span:last-child {
  max-width: 650px;
}

.cookie-banner {
  position: fixed;
  left: max(20px, calc((100vw - 1180px) / 2));
  right: max(20px, calc((100vw - 1180px) / 2));
  bottom: 22px;
  z-index: 120;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 18px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 6px;
  background: #172018;
  color: var(--white);
  box-shadow: 0 18px 55px rgba(0,0,0,.28);
}
.cookie-banner[hidden] { display: none; }
.cookie-banner strong {
  display: block;
  margin-bottom: 5px;
  color: var(--white);
}
.cookie-banner p {
  margin: 0;
  max-width: 760px;
  color: rgba(255,255,255,.78);
  font-size: .96rem;
}
.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cookie-actions .btn {
  min-height: 44px;
}

.mobile-call {
  display: none;
}

.subhero {
  padding: 90px 0 58px;
  background: var(--green);
  color: var(--white);
}
.subhero p { color: rgba(255,255,255,.78); max-width: 780px; font-size: 1.12rem; margin-top: 18px; }
.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 42px;
  align-items: start;
}
.text-block {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 30px;
}
.text-block h2 {
  margin-bottom: 20px;
}
.text-block h2 + p {
  margin-top: 0;
}
.text-block + .text-block { margin-top: 18px; }
.side-panel {
  position: sticky;
  top: 96px;
  background: #e9e4d8;
  border-radius: 6px;
  padding: 24px;
}
.side-panel ul { padding-left: 20px; color: var(--muted); }

@media (max-width: 880px) {
  .nav { min-height: 64px; }
  .navlinks { display: none; }
  .hero {
    min-height: 760px;
    align-items: start;
  }
  .hero-inner {
    padding: 14px 0 96px;
  }
  .hero .star-rating {
    margin-left: 0;
  }
  .hero-stats, .proof-strip .wrap, .before-grid, .service-grid, .service-cta, .areas, .process, .cta-grid, .section-head, .content-grid, .price-item, .trust-grid, .quote-grid, .job-grid, .split-panel {
    grid-template-columns: 1fr;
  }
  body { padding-bottom: 74px; }
  .price-item strong { text-align: left; }
  .ba { min-height: 520px; }
  .gallery { grid-template-columns: 1fr; }
  .gallery img, .gallery img:first-child { height: 330px; grid-row: auto; }
  .contact-save { grid-template-columns: 1fr; }
  .contact-save img { display: none; }
  .quote-form .form-grid { grid-template-columns: 1fr; }
  .scroll-cue { display: none; }
  .mobile-call {
    position: fixed;
    left: 16px;
    right: 16px;
    bottom: 14px;
    z-index: 80;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    border-radius: 6px;
    background: var(--gold);
    color: #17140d;
    font-weight: 900;
    box-shadow: 0 14px 34px rgba(23, 32, 24, .28);
    opacity: 0;
    pointer-events: none;
    transform: translateY(18px);
    transition: opacity .18s ease, transform .18s ease;
  }
  body.scrolled .mobile-call {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
  section { padding: 64px 0; }
  .side-panel { position: static; }
  footer .wrap { grid-template-columns: 1fr; }
  .cookie-banner {
    left: 12px;
    right: 12px;
    bottom: 12px;
    grid-template-columns: 1fr;
  }
  .cookie-actions { justify-content: stretch; }
  .cookie-actions .btn { width: 100%; }
}
