
:root {
  --ink: #10201f;
  --muted: #60706c;
  --line: #dce6e0;
  --primary: #245c55;
  --primary-dark: #123a35;
  --blue: #1f8ed1;
  --sky: #dff5ff;
  --sage: #dfe9d5;
  --sand: #c9a177;
  --cream: #f7f4ed;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(16, 32, 31, .14);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: #fff;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}
a { color: inherit; }
img { max-width: 100%; height: auto; display: block; }
.site-header {
  position: fixed;
  top: 18px;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  justify-content: center;
  pointer-events: none;
}
.nav-pill {
  pointer-events: auto;
  display: inline-flex;
  align-items: center;
  gap: 28px;
  width: fit-content;
  margin: 0 auto;
  padding: 10px 12px 10px 18px;
  border: 1px solid rgba(255,255,255,.68);
  background: rgba(255,255,255,.84);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
  border-radius: 999px;
}
.brand img { width: 112px; height: auto; }
.nav-links { display: flex; gap: 22px; margin: 0; align-items: center; }
.nav-links a, .drawer-links a {
  text-decoration: none;
  color: var(--ink);
  font-weight: 700;
  font-size: 14px;
}
.nav-cta, .btn {
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  font-weight: 800;
  box-shadow: 0 8px 22px rgba(36,92,85,.18);
  white-space: nowrap;
}
.nav-cta, .btn.primary { background: var(--primary); color: #fff; }
.btn.secondary { background: #fff; color: var(--primary-dark); border-color: var(--line); }
.btn.light { background: #fff; color: var(--primary-dark); }
.mobile-menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: #fff;
  padding: 11px;
}
.mobile-menu-toggle span { display: block; height: 2px; background: var(--ink); margin: 5px 0; }
.mobile-drawer {
  position: fixed;
  inset: 0;
  background: #fff;
  z-index: 70;
  padding: 24px;
  transform: translateY(-105%);
  transition: transform .25s ease;
  display: flex;
  flex-direction: column;
  gap: 32px;
  pointer-events: auto;
}
.mobile-drawer.open { transform: translateY(0); }
.drawer-head { display: flex; align-items: center; justify-content: space-between; }
.drawer-head img { width: 140px; }
.drawer-close {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  font-size: 22px;
}
.drawer-links { display: grid; gap: 18px; font-size: 28px; }
.drawer-links a { font-size: clamp(24px, 9vw, 42px); }
.drawer-cta { color: var(--blue) !important; }
.drawer-contact { margin-top: auto; display: grid; gap: 8px; color: var(--muted); }
.hero {
  min-height: 92vh;
  padding: 136px clamp(20px, 5vw, 72px) 70px;
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(360px, .9fr);
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
  background:
    linear-gradient(90deg, rgba(255,255,255,.96), rgba(255,255,255,.78)),
    linear-gradient(180deg, var(--sky), #fff 55%);
}
.home-hero { padding-bottom: 96px; }
.sub-hero {
  min-height: 74vh;
  background: linear-gradient(135deg, #fff 0%, var(--sky) 48%, var(--sage) 100%);
}
.hero-copy { max-width: 760px; }
.eyebrow {
  display: inline-block;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 12px;
}
h1, h2, h3 { line-height: 1.05; margin: 0; letter-spacing: 0; }
h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(48px, 7vw, 118px);
  font-weight: 700;
}
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 4vw, 64px);
  font-weight: 700;
}
h3 { font-size: 22px; }
p { color: var(--muted); margin: 0; }
.hero-lede {
  margin-top: 22px;
  font-size: clamp(18px, 2vw, 24px);
  max-width: 660px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.proof-rail {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 34px;
  max-width: 560px;
}
.proof-rail div {
  border-left: 3px solid var(--blue);
  padding: 12px 14px;
  background: rgba(255,255,255,.72);
  box-shadow: 0 8px 28px rgba(16,32,31,.08);
}
.proof-rail strong { display: block; font-size: 26px; }
.proof-rail span { display: block; color: var(--muted); font-weight: 700; font-size: 13px; }
.hero-media {
  display: grid;
  grid-template-columns: 1fr .58fr;
  gap: 14px;
  min-width: 0;
}
.hero-media.single { display: block; }
.hero-main img, .hero-stack img, .hero-media.single img, .contact-card, .map-card {
  width: 100%;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}
.hero-main img { aspect-ratio: 4 / 5; height: auto; }
.hero-stack { display: grid; gap: 14px; align-content: end; }
.hero-stack img { aspect-ratio: 1 / 1; }
.hero-media.single img { aspect-ratio: 4 / 3; background: #fff; object-fit: contain; padding: 24px; }
.quick-form-band {
  margin: -72px auto 0;
  width: min(1180px, calc(100% - 40px));
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: .55fr 1fr;
  gap: 24px;
  padding: 24px;
  background: var(--primary-dark);
  color: #fff;
  border-radius: 8px;
  box-shadow: var(--shadow);
}
.quick-form-copy p, .quick-form-copy h2, .footer-cta h2 { color: #fff; }
.section { padding: clamp(70px, 9vw, 120px) clamp(20px, 5vw, 72px); }
.section-inner, .section-heading, .split, .service-grid, .process-grid, .gallery-grid, .faq-grid, .area-map, .footer-grid, .footer-cta, .footer-bottom {
  width: min(1180px, 100%);
  margin: 0 auto;
}
.section-heading { display: grid; gap: 14px; margin-bottom: 36px; max-width: 920px; }
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.service-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 10px 34px rgba(16,32,31,.08);
}
.service-card img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.service-card div { padding: 20px; display: grid; gap: 10px; }
.service-card span { color: var(--blue); font-size: 12px; font-weight: 900; text-transform: uppercase; }
.service-card a { font-weight: 900; color: var(--primary); text-decoration: none; }
.reviews-band { background: var(--sage); padding: 74px clamp(20px,5vw,72px); }
.reviews-layout {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 36px;
  align-items: center;
}
.gr-summary {
  background: #fff;
  border-radius: 8px;
  padding: 24px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: center;
  box-shadow: var(--shadow);
}
.gr-g {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--line);
  color: #4285f4;
  font-weight: 900;
  font-size: 30px;
}
.gr-summary strong { font-size: 40px; line-height: 1; }
.stars { color: #f6b400; letter-spacing: 0; }
.gr-summary a {
  grid-column: 1 / -1;
  background: var(--primary);
  color: #fff;
  padding: 12px 16px;
  border-radius: 999px;
  text-align: center;
  text-decoration: none;
  font-weight: 900;
}
.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .85fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}
.split.reverse { grid-template-columns: minmax(320px, .85fr) minmax(0, 1fr); }
.check-list { display: grid; gap: 12px; margin: 22px 0 0; padding: 0; list-style: none; }
.check-list li { padding-left: 30px; position: relative; color: var(--ink); font-weight: 700; }
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .45em;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: inset 0 0 0 4px #fff;
  border: 1px solid var(--blue);
}
.badge-panel, .image-collage {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.badge-panel img, .image-collage img {
  width: 100%;
  object-fit: cover;
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}
.badge-panel img { aspect-ratio: 4/3; object-fit: contain; padding: 18px; }
.image-collage img { aspect-ratio: 4/3; }
.image-collage.tight img:nth-child(2), .badge-panel img:nth-child(3) { grid-column: span 2; }
.tan-section { background: var(--cream); }
.testimonial-grid { display: grid; gap: 14px; margin-top: 20px; }
figure {
  margin: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 10px 34px rgba(16,32,31,.08);
}
blockquote { margin: 0; font-size: 18px; color: var(--ink); }
figcaption { margin-top: 12px; color: var(--muted); font-weight: 800; }
.area-map {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 24px;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  border-radius: 8px;
}
.area-map a {
  display: inline-flex;
  padding: 12px 16px;
  background: rgba(255,255,255,.12);
  color: #fff;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 999px;
  text-decoration: none;
  font-weight: 900;
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.process-grid > div {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  background: #fff;
}
.process-grid strong { color: var(--blue); font-size: 34px; }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 18px 20px;
}
summary { cursor: pointer; font-weight: 900; color: var(--ink); }
details p { margin-top: 12px; }
.contact-card, .map-card {
  background: var(--primary-dark);
  color: #fff;
  padding: clamp(24px, 4vw, 44px);
}
.contact-card strong { font-size: clamp(34px, 6vw, 76px); line-height: 1; }
.contact-card p { color: rgba(255,255,255,.82); margin-top: 18px; }
.contact-form {
  display: grid;
  gap: 12px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  box-shadow: var(--shadow);
}
.quick-form-band .contact-form {
  grid-template-columns: repeat(4, minmax(0,1fr)) auto;
  box-shadow: none;
  align-items: end;
}
.contact-form label { display: grid; gap: 6px; color: var(--ink); font-weight: 800; font-size: 13px; }
input, select, textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 14px;
  font: inherit;
  color: var(--ink);
  background: #fff;
}
.gallery-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.gallery-grid figure { padding: 0; overflow: hidden; }
.gallery-grid img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.gallery-grid figcaption { padding: 14px 16px 18px; margin: 0; }
.map-card {
  min-height: 380px;
  display: grid;
  align-content: center;
  gap: 18px;
  background:
    linear-gradient(135deg, rgba(18,58,53,.96), rgba(31,142,209,.82)),
    var(--primary-dark);
}
.map-card span { font-family: Georgia, "Times New Roman", serif; font-size: clamp(42px, 7vw, 82px); line-height: 1; }
.map-card div {
  display: inline-flex;
  width: fit-content;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.18);
}
.map-card small { color: rgba(255,255,255,.78); font-size: 16px; }
.site-footer { background: var(--primary-dark); color: #fff; padding: 0 clamp(20px,5vw,72px) 28px; }
.footer-cta {
  transform: translateY(-50%);
  background: var(--sand);
  color: #fff;
  border-radius: 8px;
  padding: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 34px;
  margin-top: -28px;
}
.footer-logo { width: 150px; background: #fff; border-radius: 8px; padding: 8px; margin-bottom: 16px; }
.footer-grid p, .footer-bottom, .footer-grid a { color: rgba(255,255,255,.76); }
.footer-grid h3 { color: #fff; font-size: 16px; margin-bottom: 12px; }
.footer-grid ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 9px; }
.footer-grid a { text-decoration: none; }
.footer-credit-line a { color: #fff; font-weight: 900; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.18);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px;
  padding-top: 22px;
  margin-top: 34px;
  font-size: 13px;
}
.mobile-sticky-cta { display: none; }
@media (min-width: 1024px) {
  .mobile-menu-toggle { display: none !important; }
}
@media (max-width: 1023px) {
  .site-header { top: 10px; padding: 0 12px; }
  .nav-pill { width: calc(100vw - 24px); justify-content: space-between; border-radius: 999px; }
  .nav-links, .nav-cta { display: none; }
  .mobile-menu-toggle { display: block; }
  .hero, .sub-hero {
    min-height: auto;
    grid-template-columns: 1fr;
    padding: 112px 20px 54px;
  }
  .hero-media { grid-template-columns: 1fr 1fr; }
  .quick-form-band { margin-top: 0; width: 100%; border-radius: 0; grid-template-columns: 1fr; }
  .quick-form-band .contact-form { grid-template-columns: 1fr 1fr; }
  .quick-form-band .contact-form label:nth-child(4), .quick-form-band .contact-form button { grid-column: span 2; }
  .service-grid, .reviews-layout, .split, .split.reverse, .process-grid, .footer-grid { grid-template-columns: 1fr 1fr; }
  .faq-grid, .gallery-grid { grid-template-columns: 1fr; }
  .footer-cta { transform: none; margin: 0 0 42px; }
  .footer-grid { margin-top: 0; }
}
@media (max-width: 640px) {
  body { padding-bottom: 62px; }
  .brand img { width: 100px; }
  h1 { font-size: clamp(44px, 15vw, 68px); }
  h2 { font-size: clamp(31px, 10vw, 46px); }
  .hero-media { grid-template-columns: 1fr; }
  .proof-rail, .quick-form-band .contact-form, .service-grid, .reviews-layout, .split, .split.reverse, .process-grid, .footer-grid { grid-template-columns: 1fr; }
  .quick-form-band .contact-form label:nth-child(4), .quick-form-band .contact-form button { grid-column: auto; }
  .badge-panel, .image-collage { grid-template-columns: 1fr; }
  .image-collage.tight img:nth-child(2), .badge-panel img:nth-child(3) { grid-column: auto; }
  .section { padding: 64px 20px; }
  .hero-actions .btn { flex: 1 1 130px; }
  .footer-cta { display: grid; }
  .mobile-sticky-cta {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 80;
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 58px;
    box-shadow: 0 -8px 22px rgba(0,0,0,.14);
  }
  .mobile-sticky-cta a {
    display: grid;
    place-items: center;
    color: #fff;
    text-decoration: none;
    font-weight: 900;
  }
  .mobile-sticky-cta a:first-child { background: var(--primary); }
  .mobile-sticky-cta a:last-child { background: #0a0a0a; }
}
