:root {
  --brand-primary: #1649ff;
  --brand-primary-hover: #103bd6;
  --brand-secondary: #001a34;
  --brand-accent: #ffd19c;
  --bg: #ffffff;
  --bg-alt: #f6f8fc;
  --surface: #ffffff;
  --surface-dark: #0b1628;
  --text: #0b1f35;
  --text-muted: #526174;
  --border: #dfe5ee;
  --cta: #1649ff;
  --cta-hover: #103bd6;
  --cta-text: #ffffff;
  --ppc-form-bg: #0b1220;
  --ppc-form-bg-alt: #111c2e;
  --ppc-form-text: #ffffff;
  --ppc-form-muted: rgba(255, 255, 255, 0.78);
  --ppc-form-border: rgba(255, 255, 255, 0.16);
  --review-star: #fbbc04;
  --shadow-soft: 0 10px 28px rgba(11, 31, 53, 0.09);
  --shadow-deep: 0 24px 60px rgba(0, 18, 38, 0.2);
  --radius-card: 8px;
  --radius-control: 6px;
  --wrap: 1180px;
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

body.modal-open,
body.menu-open { overflow: hidden; }

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
button,
input,
select,
textarea { font: inherit; }

h1,
h2,
h3,
p { margin-top: 0; }

h1,
h2,
h3 {
  color: var(--brand-secondary);
  letter-spacing: -0.03em;
  line-height: 1.1;
}

h1 { font-size: clamp(2.35rem, 5vw, 4.6rem); font-weight: 800; }
h2 { font-size: clamp(1.85rem, 3.2vw, 3.1rem); font-weight: 800; }
h3 { font-size: clamp(1.16rem, 1.7vw, 1.4rem); font-weight: 760; }

.wrap {
  width: min(calc(100% - 40px), var(--wrap));
  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;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  background: #fff;
  color: var(--brand-secondary);
  border: 2px solid var(--brand-primary);
  border-radius: var(--radius-control);
  transform: translateY(-150%);
}

.skip-link:focus { transform: translateY(0); }

:focus-visible {
  outline: 3px solid var(--brand-accent);
  outline-offset: 3px;
}

.eyebrow {
  margin-bottom: 14px;
  color: var(--brand-primary);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow-light { color: #cbd8ff; }

.btn {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border: 1px solid var(--cta);
  border-radius: var(--radius-control);
  background: var(--cta);
  color: var(--cta-text);
  font-weight: 780;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease;
}

.btn:hover { background: var(--cta-hover); border-color: var(--cta-hover); }
.btn-small { min-height: 42px; padding: 10px 15px; font-size: 0.92rem; }

.btn-outline {
  border-color: rgba(255, 255, 255, 0.65);
  background: transparent;
  color: #fff;
}

.btn-outline:hover { border-color: #fff; background: #fff; color: var(--brand-secondary); }

.btn-outline-dark {
  border: 1px solid var(--brand-secondary);
  background: transparent;
  color: var(--brand-secondary);
  cursor: pointer;
}

.btn-outline-dark:hover { background: var(--brand-secondary); color: #fff; }

.btn-light { border-color: #fff; background: #fff; color: var(--brand-primary); }
.btn-light:hover { border-color: var(--brand-accent); background: var(--brand-accent); color: var(--brand-secondary); }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--brand-primary);
  font-weight: 760;
  text-decoration: none;
}

.text-link:hover { text-decoration: underline; text-underline-offset: 4px; }

.utility-bar {
  background: var(--brand-secondary);
  color: #dfe8f4;
  font-size: 0.8rem;
}

.utility-inner {
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.utility-inner a { color: #fff; font-weight: 750; text-decoration: none; }

.site-header {
  position: relative;
  z-index: 40;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid var(--border);
}

.header-main {
  min-height: 88px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand img { width: auto; height: 66px; }

.brand-text {
  display: grid;
  min-width: 156px;
  line-height: 1;
  letter-spacing: -0.035em;
}

.brand-text strong {
  color: var(--brand-secondary);
  font-size: 1.15rem;
  font-weight: 850;
}

.brand-text span {
  margin-top: 4px;
  color: var(--brand-primary);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 1.7vw, 24px);
}

.site-nav a {
  padding: 10px 0;
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] { color: var(--brand-primary); }

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-actions > .tcm-phone {
  display: grid;
  color: var(--brand-secondary);
  font-size: 0.96rem;
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
}

.header-actions > .tcm-phone span {
  color: var(--text-muted);
  font-size: 0.7rem;
  font-weight: 680;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  place-content: center;
  gap: 5px;
  border: 1px solid var(--border);
  border-radius: var(--radius-control);
  background: #fff;
  cursor: pointer;
}

.menu-toggle > span:not(.sr-only) { width: 22px; height: 2px; background: var(--brand-secondary); }

.page-hero {
  overflow: hidden;
  background: linear-gradient(120deg, #06172b 0%, #0b2c5e 65%, #1649ff 140%);
  color: #fff;
}

.page-hero h1 { max-width: 13ch; margin-bottom: 22px; color: #fff; }

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 22px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
}

.breadcrumb a { color: #fff; text-underline-offset: 3px; }

.hero-grid {
  display: grid;
  min-height: 590px;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr);
  align-items: center;
  gap: clamp(40px, 7vw, 90px);
  padding: 62px 0 76px;
}

.hero-copy { position: relative; z-index: 2; }
.hero-lede { max-width: 63ch; margin-bottom: 28px; color: #dbe5f1; font-size: clamp(1.05rem, 1.6vw, 1.2rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 26px; }

.hero-bullets {
  display: grid;
  gap: 9px;
  max-width: 650px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-bullets li {
  position: relative;
  padding-left: 24px;
  color: rgba(255, 255, 255, 0.85);
}

.hero-bullets li::before {
  position: absolute;
  top: 0.62em;
  left: 2px;
  width: 8px;
  height: 8px;
  border: 2px solid var(--brand-accent);
  border-radius: 50%;
  content: "";
}

.hero-scene {
  position: relative;
  min-height: 410px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-card);
  background: #d9e7f5;
  box-shadow: var(--shadow-deep);
  isolation: isolate;
}

.hero-media {
  position: relative;
  min-height: 410px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-card);
  background: #d9e7f5;
  box-shadow: var(--shadow-deep);
}

.hero-media img {
  width: 100%;
  height: 100%;
  min-height: 410px;
  object-fit: cover;
  object-position: 68% center;
}

.hero-scene::before {
  position: absolute;
  inset: 0;
  z-index: -4;
  background: linear-gradient(#b8d4ee 0 55%, #8fb171 55% 100%);
  content: "";
}

.hero-scene > span {
  position: absolute;
  right: 18px;
  bottom: 18px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 999px;
  background: rgba(0, 26, 52, 0.76);
  color: #fff;
  font-size: 0.76rem;
  font-weight: 750;
}

.scene-sun {
  position: absolute;
  top: 38px;
  right: 54px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--brand-accent);
  opacity: 0.7;
}

.scene-home {
  position: absolute;
  right: 9%;
  bottom: 70px;
  width: 82%;
  height: 165px;
  background: #f3eee3;
  box-shadow: inset 0 -40px rgba(31, 47, 63, 0.08);
}

.scene-home::before,
.scene-home::after {
  position: absolute;
  bottom: 0;
  width: 54px;
  height: 86px;
  background: #365371;
  content: "";
}

.scene-home::before { left: 25%; }
.scene-home::after { right: 17%; background: #8eb2cf; }

.scene-roof {
  position: absolute;
  z-index: 2;
  right: 3%;
  bottom: 218px;
  width: 94%;
  height: 98px;
  transform: skewX(-22deg);
  border-bottom: 10px solid #455b70;
  background: repeating-linear-gradient(90deg, #64778b 0 15px, #566b7e 15px 30px);
  box-shadow: 0 14px 28px rgba(0, 26, 52, 0.22);
}

.scene-gutter {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 211px;
  width: 88%;
  height: 10px;
  border-radius: 0 0 8px 8px;
  background: #f5f8fb;
}

.scene-landscape { position: absolute; z-index: 3; bottom: 38px; border-radius: 50% 50% 35% 35%; background: #285d39; }
.scene-landscape-one { left: 2%; width: 120px; height: 105px; }
.scene-landscape-two { right: 1%; width: 96px; height: 86px; background: #477c42; }

.section { padding: clamp(70px, 9vw, 112px) 0; }
.section-alt { background: var(--bg-alt); }

.section-head { max-width: 720px; margin-bottom: 38px; }
.section-head h2 { margin-bottom: 16px; }
.section-head > p:last-child { max-width: 67ch; margin-bottom: 0; color: var(--text-muted); font-size: 1.06rem; }

.grid { display: grid; gap: 22px; }
.grid-services { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-cards { grid-template-columns: repeat(3, minmax(0, 1fr)); counter-reset: card; }

.service-card,
.card,
.review-card,
.gallery-card {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  background: var(--surface);
}

.service-card { display: flex; min-height: 100%; flex-direction: column; box-shadow: var(--shadow-soft); }

.service-visual {
  position: relative;
  min-height: 150px;
  overflow: hidden;
  background: linear-gradient(135deg, #dce8ff, #f4f7fd 58%, #c9d8ee);
}

.service-visual::before {
  position: absolute;
  right: -28px;
  bottom: -52px;
  width: 180px;
  height: 180px;
  border: 26px solid rgba(22, 73, 255, 0.14);
  border-radius: 50%;
  content: "";
}

.service-visual::after {
  position: absolute;
  top: 35px;
  left: 28px;
  width: 120px;
  height: 62px;
  transform: skewX(-24deg);
  border-bottom: 7px solid var(--brand-primary);
  background: rgba(0, 26, 52, 0.83);
  content: "";
}

.service-visual > span {
  position: absolute;
  z-index: 2;
  right: 16px;
  bottom: 13px;
  padding: 5px 9px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--brand-secondary);
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
}

.service-card-body { display: flex; flex: 1; flex-direction: column; padding: 24px; }
.service-card h3 { margin-bottom: 12px; }
.service-card h3 a { text-decoration: none; }
.service-card h3 a:hover { color: var(--brand-primary); }
.service-card p:not(.card-kicker) { color: var(--text-muted); }
.service-card .text-link { margin-top: auto; }

.card-kicker { margin-bottom: 7px; color: var(--brand-primary); font-size: 0.72rem; font-weight: 800; letter-spacing: 0.09em; text-transform: uppercase; }

.card { position: relative; padding: 30px; counter-increment: card; }
.card-index::before { display: block; margin-bottom: 26px; color: var(--brand-primary); font-size: 0.78rem; font-weight: 820; content: "0" counter(card); }
.card h3 { margin-bottom: 12px; }
.card h3 a { text-decoration: none; }
.card p { color: var(--text-muted); }

.trust-rail { border-bottom: 1px solid var(--border); background: #fff; }
.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.trust-item { min-height: 150px; display: flex; flex-direction: column; justify-content: center; padding: 26px 38px; border-right: 1px solid var(--border); }
.trust-item:first-child { border-left: 1px solid var(--border); }
.trust-item strong { color: var(--brand-primary); font-size: 1.75rem; line-height: 1.1; }
.trust-item span { margin-top: 7px; color: var(--brand-secondary); font-weight: 780; }
.trust-item small { margin-top: 5px; color: var(--text-muted); }

.steps-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; margin: 0; padding: 0; list-style: none; }
.steps-grid li { padding: 30px; border-top: 3px solid var(--brand-primary); background: #fff; box-shadow: var(--shadow-soft); }
.steps-grid li > span { display: inline-block; margin-bottom: 32px; color: var(--brand-primary); font-size: 0.82rem; font-weight: 820; }
.steps-grid h3 { margin-bottom: 12px; }
.steps-grid p { margin-bottom: 0; color: var(--text-muted); }

.feature-section { background: var(--brand-secondary); }
.feature-grid { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr); align-items: center; gap: clamp(40px, 8vw, 100px); }
.feature-section .section-head { margin: 0; }
.feature-section .section-head h2 { color: #fff; }
.feature-section .section-head p:last-child { color: #cbd7e4; }
.feature-panel { padding: 38px; border: 1px solid rgba(255, 255, 255, 0.14); background: rgba(255, 255, 255, 0.05); }
.feature-rule { display: block; width: 48px; height: 4px; margin-bottom: 28px; background: var(--brand-accent); }
.check-list { display: grid; gap: 16px; margin: 0; padding: 0; list-style: none; }
.check-list li { position: relative; padding-left: 28px; color: #fff; }
.check-list li::before { position: absolute; left: 0; color: var(--brand-accent); font-weight: 900; content: "\2713"; }

.area-section { background: var(--bg-alt); }
.area-grid { display: grid; grid-template-columns: 1fr minmax(360px, 0.8fr); align-items: center; gap: clamp(44px, 8vw, 100px); }
.area-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 16px 22px; }
.area-map { position: relative; min-height: 330px; overflow: hidden; border: 1px solid var(--border); border-radius: var(--radius-card); background: #dfe9f4; }
.area-map::before { position: absolute; inset: 35px 50px; transform: rotate(-5deg); border: 3px solid #8eacca; border-radius: 48% 36% 45% 37%; background: #f9fbfd; content: ""; }
.area-map::after { position: absolute; inset: 85px 90px; transform: rotate(11deg); border: 20px solid rgba(22, 73, 255, 0.08); border-radius: 52% 46% 42% 50%; content: ""; }
.area-map span { position: absolute; z-index: 3; top: 50%; left: 50%; transform: translate(-50%, -50%); color: var(--brand-secondary); font-weight: 820; }
.area-dot { position: absolute; z-index: 4; width: 14px; height: 14px; border: 4px solid #fff; border-radius: 50%; background: var(--brand-primary); box-shadow: 0 2px 10px rgba(0, 26, 52, 0.3); }
.dot-one { top: 38%; left: 35%; }
.dot-two { top: 62%; left: 57%; }
.dot-three { top: 30%; right: 24%; }

.reviews-section { background: #fff; }
.rating-summary { display: inline-flex; align-items: center; gap: 16px; margin: 0 0 30px; padding: 14px 18px; border: 1px solid var(--border); border-radius: var(--radius-card); }
.rating-summary > strong { color: var(--brand-secondary); font-size: 2.4rem; line-height: 1; }
.rating-summary > div { display: grid; }
.rating-summary span { color: var(--text-muted); font-size: 0.86rem; }
.stars { color: var(--review-star); font-size: 1rem; letter-spacing: 0.06em; }
.review-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.review-card { padding: 26px; box-shadow: 0 8px 22px rgba(11, 31, 53, 0.06); }
.review-meta { display: flex; justify-content: space-between; gap: 12px; margin-bottom: 14px; }
.review-meta > div { display: grid; }
.review-meta strong { color: var(--brand-secondary); }
.review-meta span { color: var(--text-muted); font-size: 0.78rem; }
.google-badge { align-self: start; padding: 4px 8px; border: 1px solid var(--border); border-radius: 999px; background: #fff; color: #3768b2 !important; font-weight: 760; }
.review-card blockquote { margin: 15px 0 0; color: var(--text); font-size: 0.97rem; }
.review-disclaimer { margin: 20px 0 0; color: var(--text-muted); font-size: 0.78rem; }

.faq-layout { display: grid; grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1.25fr); align-items: start; gap: clamp(36px, 8vw, 100px); }
.faq-layout .section-head { position: sticky; top: 30px; margin: 0; }
.faq-list { display: grid; border-top: 1px solid var(--border); }
.faq-list details { border-bottom: 1px solid var(--border); }
.faq-list summary { position: relative; padding: 23px 46px 23px 0; color: var(--brand-secondary); font-size: 1.05rem; font-weight: 760; cursor: pointer; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { position: absolute; top: 22px; right: 4px; color: var(--brand-primary); font-size: 1.35rem; content: "+"; }
.faq-list details[open] summary::after { content: "\2212"; }
.faq-list details div { padding: 0 44px 20px 0; color: var(--text-muted); }
.faq-list details p { margin: 0; }

.gallery-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; }
.gallery-card { display: grid; min-height: 260px; grid-template-columns: 0.72fr 1fr; }
.gallery-card > div:last-child { padding: 28px; }
.gallery-card h3 { margin-bottom: 12px; }
.gallery-card p { margin-bottom: 0; color: var(--text-muted); }
.gallery-scene { position: relative; min-height: 100%; overflow: hidden; background: linear-gradient(145deg, #dfe8f5, #bccde0); }
.gallery-scene::before { position: absolute; right: -30%; bottom: -8%; width: 150%; height: 54%; transform: rotate(-10deg); background: var(--brand-secondary); content: ""; }
.gallery-scene::after { position: absolute; right: -8%; bottom: 17%; width: 95%; height: 7px; background: var(--brand-primary); content: ""; }
.gallery-scene span { position: absolute; z-index: 3; top: 18px; left: 18px; color: var(--brand-primary); font-weight: 850; }
.gallery-scene-2::before,
.gallery-scene-5::before { background: #345d83; }
.gallery-scene-3::after,
.gallery-scene-6::after { background: var(--brand-accent); }

.cta-band { padding: clamp(58px, 8vw, 82px) 0; background: var(--brand-primary); color: #fff; }
.cta-inner { display: grid; grid-template-columns: minmax(0, 1.2fr) auto; align-items: center; gap: 42px; }
.cta-inner h2 { margin-bottom: 14px; color: #fff; }
.cta-inner p:not(.eyebrow) { max-width: 62ch; margin-bottom: 0; color: #e4ebff; }
.cta-actions { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 12px; }
.cta-band .btn:not(.btn-outline) { border-color: #fff; background: #fff; color: var(--brand-primary); }
.cta-band .btn:not(.btn-outline):hover { border-color: var(--brand-accent); background: var(--brand-accent); color: var(--brand-secondary); }

.contact-section { background: var(--bg-alt); }
.contact-grid { display: grid; grid-template-columns: minmax(300px, 0.78fr) minmax(420px, 1.22fr); align-items: start; gap: clamp(36px, 7vw, 86px); }
.contact-direct { display: grid; gap: 8px; margin: 28px 0; padding: 22px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.contact-direct > span { color: var(--text-muted); font-size: 0.82rem; font-weight: 700; text-transform: uppercase; }
.contact-direct > .tcm-phone { color: var(--brand-primary); font-size: 1.7rem; font-weight: 820; text-decoration: none; }
.contact-direct > a:not(.tcm-phone) { color: var(--brand-secondary); overflow-wrap: anywhere; }
.contact-direct address { color: var(--text-muted); font-style: normal; }

.contact-form-card.ghl-form-card-dark {
  padding: clamp(25px, 4vw, 42px);
  border: 1px solid var(--ppc-form-border);
  border-radius: var(--radius-card);
  background: var(--ppc-form-bg);
  color: var(--ppc-form-text);
  box-shadow: var(--shadow-deep);
}

.contact-form-card h2 { margin-bottom: 12px; color: #fff; }
.contact-form-card > p:not(.eyebrow) { color: var(--ppc-form-muted); }

.form-embed-wrap-dark,
.form-embed-wrap[data-form-kind="organic"] {
  position: relative;
  min-height: 620px;
  margin-top: 24px;
  overflow: hidden;
  border: 1px solid var(--ppc-form-border);
  border-radius: var(--radius-control);
  background: var(--ppc-form-bg-alt);
}

.form-embed-wrap iframe,
.booking-frame-wrap iframe {
  display: block;
  width: 100%;
  border: 0;
  background: var(--ppc-form-bg-alt);
}

.form-embed-placeholder-dark {
  min-height: 132px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 30px;
  color: var(--ppc-form-muted);
  text-align: center;
}

.loading-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--brand-primary); box-shadow: 0 0 0 6px rgba(22, 73, 255, 0.16); }

.booking-modal[hidden] { display: none; }
.booking-modal { position: fixed; z-index: 200; inset: 0; display: grid; place-items: center; padding: 22px; opacity: 0; transition: opacity 180ms ease; }
.booking-modal.is-open { opacity: 1; }
.booking-backdrop { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; background: rgba(1, 10, 21, 0.78); cursor: pointer; }
.booking-dialog { position: relative; width: min(100%, 1040px); max-height: calc(100vh - 44px); overflow: hidden; border: 1px solid rgba(255, 255, 255, 0.14); border-radius: var(--radius-card); background: var(--ppc-form-bg); box-shadow: var(--shadow-deep); }
.booking-header { min-height: 92px; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 20px 24px; border-bottom: 1px solid var(--ppc-form-border); }
.booking-header .eyebrow { margin-bottom: 4px; }
.booking-header h2 { margin: 0; color: #fff; font-size: clamp(1.35rem, 2.4vw, 2rem); }
.booking-close { width: 44px; height: 44px; flex: 0 0 auto; border: 1px solid var(--ppc-form-border); border-radius: 50%; background: transparent; color: #fff; font-size: 1.7rem; cursor: pointer; }
.booking-frame-wrap { height: min(800px, calc(100vh - 136px)); overflow: hidden; background: var(--ppc-form-bg-alt); }
.booking-placeholder { min-height: 320px; display: grid; place-items: center; padding: 40px; color: var(--ppc-form-muted); text-align: center; }
.booking-placeholder a { color: #fff; font-weight: 780; }

.legal-hero { padding: 70px 0; background: var(--brand-secondary); color: #dbe5f1; }
.legal-hero h1 { margin-bottom: 14px; color: #fff; }
.legal-hero p:last-child { margin: 0; }
.legal-content { max-width: 860px; padding-top: 64px; padding-bottom: 90px; }
.legal-content section { margin-top: 46px; scroll-margin-top: 24px; }
.legal-content h2 { margin-bottom: 16px; font-size: clamp(1.35rem, 2.3vw, 1.75rem); }
.legal-content h3 { margin: 28px 0 12px; }
.legal-content p,
.legal-content li { color: #38495c; }
.legal-content li + li { margin-top: 8px; }
.legal-date { color: var(--text-muted); font-size: 0.9rem; }
.legal-callout { margin: 22px 0; padding: 22px; border-left: 4px solid var(--brand-primary); background: var(--bg-alt); }
.legal-callout p { margin: 0; }

.redirect-page { min-height: 100vh; display: grid; place-content: center; justify-items: center; padding: 30px; background: var(--bg-alt); text-align: center; }
.redirect-page .brand-text { margin-bottom: 26px; text-align: center; }

.site-footer { padding-top: 70px; background: var(--brand-secondary); color: #c5d2df; }
.footer-grid { display: grid; grid-template-columns: 1.25fr 0.8fr 0.7fr 1fr; gap: clamp(30px, 5vw, 60px); padding-bottom: 60px; }
.site-footer h2 { margin-bottom: 18px; color: #fff; font-size: 1rem; letter-spacing: 0; }
.footer-intro p { max-width: 43ch; margin: 24px 0; }
.footer-brand .brand-text strong { color: #fff; }
.footer-brand .brand-text span { color: #9eb6ff; }
.footer-brand img { width: auto; height: 104px; }
.footer-links { display: grid; gap: 10px; }
.footer-links a,
.footer-contact a { color: #dbe5ef; text-decoration: none; }
.footer-links a:hover,
.footer-contact a:hover { color: #fff; text-decoration: underline; text-underline-offset: 3px; }
.footer-contact { display: grid; align-content: start; gap: 10px; }
.footer-contact h2 { margin-bottom: 8px; }
.footer-contact address { color: #c5d2df; font-style: normal; }
.footer-contact .tcm-phone { color: #fff; font-size: 1.15rem; font-weight: 800; }
.footer-contact p { color: #9fb0c0; font-size: 0.88rem; }
.footer-bottom { min-height: 72px; display: flex; align-items: center; justify-content: space-between; gap: 20px; border-top: 1px solid rgba(255, 255, 255, 0.12); font-size: 0.82rem; }
.footer-bottom nav { display: flex; gap: 18px; }
.footer-bottom a { color: #dbe5ef; }

@media (max-width: 1120px) {
  .header-main { grid-template-columns: auto auto 1fr; }
  .menu-toggle { display: grid; justify-self: end; }
  .site-nav { position: absolute; top: 100%; right: 20px; left: 20px; display: none; max-height: calc(100vh - 140px); align-items: stretch; overflow: auto; padding: 14px 20px; border: 1px solid var(--border); background: #fff; box-shadow: var(--shadow-deep); }
  .site-nav.is-open { display: grid; }
  .site-nav a { padding: 12px 4px; border-bottom: 1px solid var(--border); }
  .site-nav a:last-child { border-bottom: 0; }
  .header-actions { grid-column: 3; grid-row: 1; justify-self: end; }
  .header-actions > .tcm-phone { display: none; }
  .menu-toggle { grid-column: 2; grid-row: 1; }
  .grid-services { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-grid { grid-template-columns: 1.25fr 0.75fr 0.75fr; }
  .footer-contact { grid-column: 1 / -1; grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .footer-contact h2 { grid-column: 1 / -1; }
}

@media (max-width: 900px) {
  .hero-grid { min-height: auto; grid-template-columns: 1fr; padding: 48px 0 62px; }
  .hero-scene { min-height: 360px; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-item { min-height: 115px; border-right: 1px solid var(--border); border-bottom: 1px solid var(--border); border-left: 1px solid var(--border); }
  .grid-cards,
  .steps-grid,
  .review-grid { grid-template-columns: 1fr; }
  .feature-grid,
  .area-grid,
  .faq-layout,
  .contact-grid { grid-template-columns: 1fr; }
  .faq-layout .section-head { position: static; }
  .cta-inner { grid-template-columns: 1fr; }
  .cta-actions { justify-content: flex-start; }
  .contact-form-card { max-width: 760px; width: 100%; }
  .gallery-grid { grid-template-columns: 1fr; }
}

@media (max-width: 700px) {
  .wrap { width: min(calc(100% - 28px), var(--wrap)); }
  .utility-inner { min-height: 40px; justify-content: center; text-align: center; }
  .utility-inner > span { display: none; }
  .header-main { min-height: 76px; grid-template-columns: 1fr auto; gap: 10px; }
  .brand-text { min-width: 140px; }
  .brand-text strong { font-size: 1rem; }
  .menu-toggle { grid-column: 2; }
  .header-actions { display: none; }
  .site-nav { right: 14px; left: 14px; }
  h1 { font-size: clamp(2.2rem, 12vw, 3.35rem); }
  .breadcrumb { padding-top: 16px; }
  .hero-grid { gap: 36px; padding-top: 38px; }
  .hero-actions { display: grid; }
  .hero-actions .btn { width: 100%; }
  .hero-scene { min-height: 290px; }
  .hero-media,
  .hero-media img { min-height: 290px; }
  .scene-home { bottom: 44px; height: 118px; }
  .scene-roof { bottom: 145px; height: 72px; }
  .scene-gutter { bottom: 140px; }
  .scene-landscape { bottom: 20px; }
  .section { padding: 66px 0; }
  .grid-services { grid-template-columns: 1fr; }
  .service-visual { min-height: 140px; }
  .area-map { min-height: 260px; }
  .rating-summary { display: flex; width: 100%; }
  .gallery-card { grid-template-columns: 1fr; }
  .gallery-scene { min-height: 160px; }
  .cta-actions { display: grid; }
  .cta-actions .btn { width: 100%; }
  .contact-direct > .tcm-phone { font-size: 1.45rem; }
  .contact-form-card.ghl-form-card-dark { padding: 24px 18px; }
  .form-embed-wrap-dark,
  .form-embed-wrap[data-form-kind="organic"] { min-height: 820px; }
  .booking-modal { align-items: stretch; padding: 0; }
  .booking-dialog { width: 100%; max-height: 100dvh; overflow-y: auto; border: 0; border-radius: 0; }
  .booking-header { position: sticky; z-index: 3; top: 0; min-height: 82px; background: var(--ppc-form-bg); }
  .booking-frame-wrap { height: 1120px; overflow: visible; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-contact { grid-column: auto; grid-template-columns: 1fr; }
  .footer-contact h2 { grid-column: auto; }
  .footer-bottom { align-items: flex-start; flex-direction: column; justify-content: center; padding: 22px 0; }
  .footer-bottom nav { flex-wrap: wrap; }
}

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