:root {
  color-scheme: light;
  --ink: #101317;
  --muted: #5b6470;
  --paper: #f6f7f2;
  --surface: #ffffff;
  --line: #d8ddd7;
  --green: #1d5f4a;
  --green-dark: #103b30;
  --gold: #d8b35b;
  --red: #ad2f25;
  --shadow: 0 18px 48px rgba(16, 19, 23, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.55;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

a {
  color: inherit;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 56px);
  color: #fff;
  background: linear-gradient(180deg, rgba(16, 19, 23, 0.74), rgba(16, 19, 23, 0.18));
  backdrop-filter: blur(10px);
}

.brand,
nav {
  display: flex;
  align-items: center;
}

.brand {
  text-decoration: none;
}

.brand img {
  width: auto;
  height: clamp(58px, 8vw, 88px);
  border-radius: 6px;
  filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.42));
}

nav {
  gap: clamp(12px, 2vw, 28px);
  font-weight: 700;
  font-size: 0.94rem;
}

nav a {
  text-decoration: none;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff;
}

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

.hero > picture img {
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(16, 19, 23, 0.86), rgba(16, 19, 23, 0.46), rgba(16, 19, 23, 0.12)),
    linear-gradient(0deg, rgba(16, 19, 23, 0.82), rgba(16, 19, 23, 0.06) 55%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(790px, calc(100% - 36px));
  margin: 0 auto;
  padding: 130px 0 12vh;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0;
  font-weight: 800;
  font-size: 0.82rem;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.05;
}

h1 {
  font-size: clamp(2.5rem, 8vw, 6.2rem);
  max-width: 760px;
}

h2 {
  font-size: clamp(2rem, 4.5vw, 4.4rem);
}

h3 {
  font-size: 1.28rem;
}

.hero-copy {
  max-width: 650px;
  margin: 22px 0 0;
  font-size: clamp(1.04rem, 2vw, 1.3rem);
  color: rgba(255, 255, 255, 0.88);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 800;
  text-decoration: none;
}

.button.primary {
  background: var(--red);
  color: #fff;
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.56);
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
}

.button.ghost {
  border-color: rgba(29, 95, 74, 0.38);
  color: var(--green);
  background: rgba(255, 255, 255, 0.72);
}

.trust-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--green-dark);
  color: #fff;
}

.trust-bar span {
  display: grid;
  min-height: 72px;
  place-items: center;
  padding: 14px;
  text-align: center;
  font-weight: 800;
  background: var(--green);
}

.section {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(64px, 9vw, 110px) 0;
}

.intro,
.local-seo,
.cta {
  display: grid;
  grid-template-columns: 1fr 0.86fr;
  gap: clamp(28px, 6vw, 80px);
  align-items: center;
}

.intro p,
.local-seo p,
.section-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 1.06rem;
}

.section-heading {
  max-width: 800px;
  margin-bottom: 30px;
}

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

.service-card,
.review-card,
.process-grid article,
.faq-grid article,
.contact-panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(16, 19, 23, 0.06);
}

.service-card {
  padding: 28px;
}

.faq-grid article {
  padding: 24px;
}

.review-card {
  padding: 26px;
}

.stars {
  margin-bottom: 14px;
  color: var(--gold);
  font-size: 1.2rem;
  letter-spacing: 0;
}

.review-card blockquote {
  margin: 0;
  color: var(--ink);
  font-size: 1rem;
}

.reviewer {
  margin: 18px 0 0;
  color: var(--green);
  font-weight: 900;
}

.review-meta {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.review-card p:not(.reviewer):not(.review-meta) {
  margin-bottom: 0;
  color: var(--muted);
}

.review-button {
  margin-top: 22px;
  background: var(--green);
  color: #fff;
}

.faq-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.service-card.featured {
  border-color: rgba(29, 95, 74, 0.4);
  box-shadow: var(--shadow);
}

.service-card p {
  color: var(--muted);
}

.service-card ul {
  margin: 22px 0 0;
  padding-left: 18px;
  font-weight: 700;
}

.booking-band {
  background: #e6ebe2;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.booking-shell {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(64px, 9vw, 110px) 0;
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: clamp(28px, 6vw, 72px);
  align-items: start;
}

.booking-intro {
  padding-top: 8px;
}

.booking-intro p:not(.eyebrow) {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.06rem;
}

.booking-form {
  position: relative;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid rgba(29, 95, 74, 0.18);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.booking-form label {
  display: grid;
  gap: 7px;
  min-width: 0;
  color: var(--ink);
  font-weight: 800;
}

.form-grid label > span,
.honey-field > span {
  color: var(--muted);
  text-transform: uppercase;
  font-size: 0.76rem;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 12px 13px;
  color: var(--ink);
  background: #fbfcfa;
  font: inherit;
}

.booking-form textarea {
  min-height: 112px;
  resize: vertical;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  outline: 3px solid rgba(216, 179, 91, 0.34);
  border-color: var(--green);
}

.wide-field {
  grid-column: 1 / -1;
}

.consent-line {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 18px;
  color: var(--muted);
  font-weight: 700;
}

.consent-line input {
  width: 18px;
  min-width: 18px;
  height: 18px;
  min-height: 18px;
  margin-top: 3px;
  accent-color: var(--green);
}

.honey-field {
  position: absolute;
  left: -100vw;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

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

.form-status.error {
  color: var(--red);
}

.comparison {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  aspect-ratio: 16 / 9;
  border-radius: 8px;
  background: #111;
  box-shadow: var(--shadow);
}

.comparison-img,
.before-wrap {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.comparison-img {
  object-fit: cover;
}

.before-wrap {
  overflow: hidden;
  width: 50%;
}

.before-wrap .before {
  width: calc(100vw - 36px);
  max-width: 1180px;
}

.comparison-range {
  position: absolute;
  z-index: 3;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: ew-resize;
}

.comparison-handle {
  position: absolute;
  z-index: 2;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 3px;
  background: #fff;
  transform: translateX(-50%);
  box-shadow: 0 0 0 999px rgba(255, 255, 255, 0);
}

.comparison-handle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 46px;
  height: 46px;
  border: 3px solid #fff;
  border-radius: 50%;
  background: rgba(16, 19, 23, 0.55);
  transform: translate(-50%, -50%);
}

.comparison-label {
  position: absolute;
  z-index: 4;
  top: 18px;
  padding: 7px 10px;
  border-radius: 4px;
  background: rgba(16, 19, 23, 0.74);
  color: #fff;
  font-weight: 800;
  font-size: 0.88rem;
}

.before-label {
  left: 18px;
}

.after-label {
  right: 18px;
}

.process {
  width: 100%;
  max-width: none;
  background: var(--green-dark);
  color: #fff;
  padding-left: max(18px, calc((100vw - 1180px) / 2));
  padding-right: max(18px, calc((100vw - 1180px) / 2));
}

.process .section-heading p,
.process-grid p {
  color: rgba(255, 255, 255, 0.72);
}

.process-grid article {
  padding: 26px;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: none;
}

.process-grid span {
  display: block;
  margin-bottom: 34px;
  color: var(--gold);
  font-weight: 900;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 18px;
}

figure {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--surface);
  border: 1px solid var(--line);
}

figure.wide {
  grid-row: span 2;
}

figure img {
  aspect-ratio: 4 / 3;
  height: 100%;
  object-fit: cover;
}

figcaption {
  padding: 12px 14px;
  color: var(--muted);
  font-size: 0.94rem;
}

.local-seo {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.cta {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(64px, 9vw, 110px) 0;
}

.contact-panel {
  padding: 28px;
}

.phone {
  display: block;
  margin-bottom: 10px;
  color: var(--green);
  font-size: clamp(1.6rem, 4vw, 3rem);
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
}

.contact-panel p {
  margin: 0 0 22px;
  color: var(--muted);
}

footer {
  padding: 28px 18px;
  background: var(--ink);
  color: rgba(255, 255, 255, 0.72);
  text-align: center;
}

footer p {
  margin: 0;
}

@media (max-width: 860px) {
  .site-header {
    position: absolute;
    align-items: flex-start;
  }

  .brand img {
    height: 58px;
    max-width: 76vw;
  }

  nav {
    display: none;
  }

  .hero {
    min-height: 88vh;
  }

  .trust-bar,
  .service-grid,
  .process-grid,
  .faq-grid,
  .review-grid,
  .gallery-grid,
  .booking-shell,
  .intro,
  .local-seo,
  .cta {
    grid-template-columns: 1fr;
  }

  .trust-bar span {
    min-height: 58px;
  }

  .comparison {
    min-height: 280px;
    aspect-ratio: 4 / 5;
  }

  .before-wrap .before {
    width: calc(100vw - 36px);
    height: 100%;
  }

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

@media (max-width: 520px) {
  .hero-content {
    width: min(100% - 28px, 790px);
    padding-bottom: 8vh;
  }

  .button {
    width: 100%;
  }

  .section,
  .booking-shell,
  .cta {
    width: min(100% - 28px, 1180px);
  }

  .service-card,
  .process-grid article,
  .booking-form,
  .contact-panel {
    padding: 22px;
  }
}
