:root {
  --ink: #111827;
  --evergreen: #23395f;
  --teal: #2f5f7a;
  --water: #d8c3a6;
  --stone: #f6f4f0;
  --brass: #b87522;
  --mist: #eef3f7;
  --white: #ffffff;
  --muted: #66716d;
  --shadow: 0 18px 45px rgba(17, 24, 39, 0.14);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  line-height: 1.55;
  background: var(--white);
}

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

a {
  color: inherit;
}

.site-header,
.ppc-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
  padding: 14px clamp(18px, 4vw, 64px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(23, 60, 54, 0.12);
  backdrop-filter: blur(14px);
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 800;
  min-width: 190px;
}

.logo img {
  width: 158px;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 0.92rem;
}

.site-nav a {
  text-decoration: none;
  color: var(--evergreen);
}

.phone-link,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 4px;
  border: 1px solid transparent;
  font-weight: 800;
  text-decoration: none;
}

.phone-link {
  color: var(--evergreen);
  border-color: rgba(23, 60, 54, 0.22);
  white-space: nowrap;
}

.btn {
  background: var(--brass);
  color: var(--white);
}

.btn.secondary {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.58);
}

.btn.dark {
  background: var(--evergreen);
}

.hero {
  min-height: min(760px, calc(100vh - 76px));
  display: grid;
  align-items: end;
  padding: clamp(80px, 13vw, 140px) clamp(20px, 5vw, 72px) clamp(48px, 7vw, 88px);
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(11, 22, 40, 0.84), rgba(17, 24, 39, 0.48) 55%, rgba(17, 24, 39, 0.18)),
    var(--hero-image) center / cover no-repeat;
}

.ppc-hero {
  min-height: 720px;
  align-items: center;
}

.hero-inner {
  width: min(820px, 100%);
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--water);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.06;
  letter-spacing: 0;
}

h1 {
  margin: 0;
  font-size: clamp(2.7rem, 7vw, 6.8rem);
  max-width: 950px;
}

h2 {
  margin: 0 0 18px;
  font-size: clamp(2rem, 4vw, 4rem);
}

h3 {
  margin: 0 0 10px;
  font-size: 1.35rem;
}

.hero p {
  max-width: 720px;
  margin: 22px 0 0;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}

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

.band {
  padding: clamp(54px, 8vw, 110px) clamp(20px, 5vw, 72px);
}

.band.stone {
  background: var(--stone);
}

.band.dark {
  color: var(--white);
  background: var(--evergreen);
}

.inner {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.lead {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.08rem;
}

.dark .lead {
  color: rgba(255, 255, 255, 0.75);
}

.trust-grid,
.card-grid,
.feature-grid,
.review-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.trust-item,
.card,
.review {
  padding: 24px;
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.trust-item strong {
  display: block;
  color: var(--evergreen);
  font-size: 1.7rem;
}

.card-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card {
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.card a {
  color: var(--teal);
  font-weight: 800;
  text-decoration: none;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
  gap: clamp(26px, 6vw, 72px);
  align-items: center;
}

.split img,
.gallery img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  border-radius: 8px;
}

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

.feature {
  padding: 18px 0;
  border-top: 1px solid rgba(23, 60, 54, 0.16);
  font-weight: 800;
}

.process {
  counter-reset: step;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.process .card {
  min-height: 180px;
}

.process .card::before {
  counter-increment: step;
  content: "0" counter(step);
  color: var(--brass);
  font-weight: 900;
}

.area-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.area-list span {
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--mist);
  color: var(--evergreen);
  font-weight: 800;
}

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

.review {
  min-height: 260px;
}

.review p {
  margin-top: 0;
}

.review small {
  color: var(--muted);
  font-weight: 800;
}

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

.faq-list details {
  padding: 22px 0;
  border-bottom: 1px solid rgba(23, 60, 54, 0.16);
}

.faq-list summary {
  cursor: pointer;
  font-weight: 900;
  color: var(--evergreen);
}

.legal-page {
  max-width: 920px;
}

.legal-section {
  margin-top: 28px;
}

.legal-section h2 {
  font-size: clamp(1.18rem, 2vw, 1.55rem);
  margin-bottom: 8px;
}

.legal-section p {
  margin: 0 0 12px;
  color: var(--muted);
  line-height: 1.75;
}

.legal-section a {
  color: var(--evergreen);
  font-weight: 800;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 32px;
  align-items: start;
}

.form-panel {
  padding: clamp(22px, 4vw, 34px);
  border-radius: 8px;
  background: #0f1724;
  color: var(--white);
  box-shadow: var(--shadow);
}

.form-shell {
  min-height: 460px;
  display: grid;
  align-content: center;
  gap: 14px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.04);
}

.skeleton {
  height: 14px;
  border-radius: 99px;
  background: linear-gradient(90deg, rgba(255,255,255,.12), rgba(255,255,255,.28), rgba(255,255,255,.12));
}

.skeleton.short {
  width: 58%;
}

.ppc-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 440px);
  gap: clamp(24px, 5vw, 58px);
  align-items: center;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.ppc-card {
  background: rgba(15, 23, 36, 0.96);
  color: var(--white);
  border-radius: 8px;
  padding: 26px;
  box-shadow: var(--shadow);
}

.scheduler-option {
  display: grid;
  gap: 10px;
  margin: 18px 0;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.05);
}

.scheduler-option span,
.scheduler-option small {
  color: rgba(255, 255, 255, 0.78);
}

.ppc-bullets {
  display: grid;
  gap: 12px;
  margin: 24px 0;
  padding: 0;
  list-style: none;
}

.ppc-bullets li {
  padding-left: 24px;
  position: relative;
}

.ppc-bullets li::before {
  content: "";
  width: 8px;
  height: 8px;
  position: absolute;
  left: 0;
  top: 0.65em;
  border-radius: 999px;
  background: var(--water);
}

.site-footer,
.ppc-footer {
  padding: 38px clamp(20px, 5vw, 72px);
  color: rgba(255, 255, 255, 0.78);
  background: #0f1724;
}

.footer-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 24px;
}

.booking-modal {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: none;
  padding: 24px;
  background: rgba(8, 20, 18, 0.72);
}

.booking-modal.is-open {
  display: grid;
  place-items: center;
}

.booking-dialog {
  width: min(980px, 100%);
  max-height: min(860px, 92vh);
  overflow: hidden;
  border-radius: 8px;
  background: var(--white);
}

.booking-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  border-bottom: 1px solid rgba(23, 60, 54, 0.16);
}

.booking-close {
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 999px;
  background: var(--mist);
  color: var(--evergreen);
  font-size: 24px;
  cursor: pointer;
}

.booking-frame {
  min-height: 720px;
  display: grid;
  place-items: center;
  color: var(--muted);
}

@media (max-width: 900px) {
  .site-header {
    position: relative;
    align-items: flex-start;
    flex-direction: column;
  }

  .site-nav {
    flex-wrap: wrap;
  }

  .trust-grid,
  .card-grid,
  .feature-grid,
  .review-grid,
  .process,
  .gallery,
  .split,
  .contact-grid,
  .ppc-layout,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    display: grid;
  }

  .hero {
    min-height: auto;
    padding-top: 72px;
  }
}

@media (max-width: 540px) {
  .site-nav {
    display: none;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn,
  .phone-link {
    width: 100%;
  }

  .booking-modal {
    padding: 10px;
  }

  .booking-dialog {
    max-height: 94vh;
    overflow: auto;
  }

  .booking-frame {
    min-height: 820px;
  }
}
