:root {
  --ink: #111114;
  --muted: #5f6067;
  --soft: #f5f5f6;
  --line: #dedee3;
  --white: #ffffff;
  --pink: #ff4fa3;
  --pink-dark: #ce2378;
  --charcoal: #202126;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

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

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

a {
  color: inherit;
  text-decoration: none;
  overflow-wrap: anywhere;
}

.container {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: 0;
  min-width: 0;
}

.brand img {
  width: 78px;
  height: 61px;
  object-fit: contain;
}

.brand span {
  max-width: 210px;
  line-height: 1.05;
  overflow-wrap: anywhere;
}

.nav-toggle {
  display: none;
}

.nav-toggle-label {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  background: var(--white);
  cursor: pointer;
}

.nav-toggle-label span,
.nav-toggle-label span::before,
.nav-toggle-label span::after {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--ink);
  content: "";
  position: relative;
}

.nav-toggle-label span::before {
  position: absolute;
  top: -6px;
}

.nav-toggle-label span::after {
  position: absolute;
  top: 6px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 700;
}

.nav-links a[aria-current="page"] {
  color: var(--ink);
}

.nav-links a:hover {
  color: var(--pink-dark);
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--ink);
  padding: 12px 18px;
  font-weight: 800;
  line-height: 1;
  text-align: center;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  border-color: var(--pink);
  background: var(--pink);
  color: var(--white);
}

.button-primary:hover {
  border-color: var(--pink-dark);
  background: var(--pink-dark);
}

.button-secondary {
  background: var(--white);
  color: var(--ink);
}

.button-secondary:hover {
  border-color: var(--pink);
  color: var(--pink-dark);
}

.hero {
  min-height: calc(100vh - 76px);
  display: grid;
  align-items: end;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.48) 48%, rgba(0, 0, 0, 0.1)),
    url("./hero-ward-rolloff.jpg") center / cover no-repeat;
}

.hero-wide {
  min-height: 420px;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.76), rgba(0, 0, 0, 0.36)),
    var(--city-hero-image, url("./hero-wide.jpg")) center / cover no-repeat;
}

.hero-inner {
  padding: 88px 0 70px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 18px;
  color: inherit;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 26px;
  height: 3px;
  background: var(--pink);
  content: "";
}

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

h1 {
  max-width: 810px;
  margin-bottom: 22px;
  font-size: clamp(3rem, 7vw, 6.9rem);
  line-height: 0.92;
  letter-spacing: 0;
}

.hero p {
  max-width: 630px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.05rem, 2vw, 1.3rem);
}

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

.hero .button-secondary {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.72);
}

.pricing-highlights {
  transform: translateY(-34px);
}

.rate-strip {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 1fr) auto;
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.11);
}

.rate-cell {
  min-height: 92px;
  padding: 20px;
  background: var(--white);
}

.rate-cell strong {
  display: block;
  margin-bottom: 5px;
  font-size: 0.94rem;
}

.rate-cell span {
  color: var(--muted);
  font-size: 0.92rem;
}

.rate-cell.action {
  display: flex;
  align-items: center;
}

.section {
  padding: 84px 0;
}

.section-soft {
  background: var(--soft);
}

.section-dark {
  background: var(--charcoal);
  color: var(--white);
}

.section-kicker {
  color: var(--pink-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section-dark .section-kicker {
  color: #ff8cc3;
}

.section-title {
  max-width: 760px;
  margin: 9px 0 18px;
  font-size: clamp(2rem, 4vw, 4.1rem);
  line-height: 1;
  letter-spacing: 0;
}

.section-lede {
  max-width: 690px;
  color: var(--muted);
  font-size: 1.08rem;
}

.reservation-contact {
  display: grid;
  gap: 4px;
}

.reservation-contact strong {
  color: var(--ink);
}

.reservation-contact a[href^="mailto:"] {
  overflow-wrap: normal;
  word-break: normal;
}

.section-dark .section-lede,
.section-dark p {
  color: rgba(255, 255, 255, 0.74);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.75fr);
  gap: 58px;
  align-items: center;
}

.image-panel {
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--soft);
}

.image-panel img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 38px;
}

.feature-card,
.step-card,
.pricing-panel,
.form-panel {
  border: 1px solid var(--line);
  background: var(--white);
}

.feature-card {
  min-height: 220px;
  padding: 26px;
}

.feature-card h3,
.step-card h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.feature-card p,
.step-card p,
.pricing-panel p {
  color: var(--muted);
}

.marker {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  margin-bottom: 26px;
  background: var(--ink);
  color: var(--white);
  font-weight: 900;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 38px;
  counter-reset: step;
}

.step-card {
  min-height: 250px;
  padding: 28px;
}

.step-card::before {
  counter-increment: step;
  content: "0" counter(step);
  display: block;
  margin-bottom: 34px;
  color: var(--pink-dark);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.use-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 28px;
  padding: 0;
  list-style: none;
}

.use-list li {
  border-left: 4px solid var(--pink);
  padding: 14px 16px;
  background: var(--white);
  font-weight: 800;
}

.section-dark .use-list li {
  background: rgba(255, 255, 255, 0.08);
}

.pricing-layout,
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 1.1fr);
  gap: 30px;
  align-items: start;
}

.pricing-panel {
  padding: 34px;
}

.spec-graphic {
  margin-top: 2rem;
}

.spec-graphic img {
  display: block;
  width: 100%;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: var(--white);
}

.price-callout {
  margin: 0 0 20px;
  font-size: clamp(2rem, 5vw, 4.6rem);
  font-weight: 900;
  line-height: 0.96;
}

.included-list,
.material-list {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.included-list li,
.material-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: var(--muted);
}

.included-list li::before,
.material-list li::before {
  flex: 0 0 auto;
  width: 10px;
  height: 10px;
  margin-top: 7px;
  background: var(--pink);
  content: "";
}

.material-list.not li::before {
  background: var(--ink);
}

.materials {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 38px;
}

.material-box {
  padding: 28px;
  border: 1px solid var(--line);
  background: var(--white);
}

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

.area-card {
  min-height: 190px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--line);
  padding: 24px;
  background: var(--white);
}

.area-card h3 {
  margin-bottom: 10px;
  font-size: 1.35rem;
}

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

.area-card .button {
  align-self: flex-start;
  margin-top: 18px;
}

.local-panel {
  border: 1px solid var(--line);
  background: var(--white);
}

.service-map {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  min-height: 260px;
  border-bottom: 1px solid var(--line);
  background: var(--soft);
}

.service-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  pointer-events: none;
}

.service-radius-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  place-items: start center;
  /* Google zoom 9 near Liberty Hill: 15 miles is about 184 CSS px across. */
  width: 184px;
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  border: 3px solid rgba(209, 38, 105, 0.92);
  border-radius: 50%;
  background: rgba(209, 38, 105, 0.14);
  box-shadow: 0 0 0 999px rgba(255, 255, 255, 0.08);
  pointer-events: none;
}

.service-radius-circle span {
  margin-top: 14px;
  border: 1px solid rgba(209, 38, 105, 0.28);
  border-radius: 999px;
  padding: 6px 10px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.service-map-pin {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 18px;
  transform: translate(-50%, -50%);
  border: 3px solid var(--white);
  border-radius: 50%;
  background: var(--pink);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  pointer-events: none;
}

.local-panel img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-bottom: 1px solid var(--line);
}

.local-panel-body {
  padding: 24px;
}

.local-panel-body p {
  color: var(--muted);
}

.image-credit {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.35;
}

.image-credit a {
  color: var(--pink-dark);
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
}

.breadcrumbs a {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 0.22em;
}

.city-list {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.city-list li {
  border-left: 4px solid var(--pink);
  padding: 12px 14px;
  background: var(--soft);
  color: var(--muted);
  font-weight: 700;
}

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

.seo-card {
  border: 1px solid var(--line);
  padding: 24px;
  background: var(--white);
}

.seo-card h3 {
  margin-bottom: 10px;
}

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

.nearby-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.nearby-links a {
  border: 1px solid var(--line);
  padding: 9px 12px;
  background: var(--white);
  color: var(--ink);
  font-weight: 800;
}

.nearby-links a:hover {
  border-color: var(--pink);
  color: var(--pink-dark);
}

.faq-list {
  display: grid;
  gap: 14px;
  margin-top: 32px;
}

.faq-list details {
  border: 1px solid var(--line);
  padding: 18px 20px;
  background: var(--white);
}

.faq-list summary {
  cursor: pointer;
  font-weight: 900;
}

.faq-list p {
  margin: 12px 0 0;
  color: var(--muted);
}

.form-panel {
  padding: 30px;
  min-width: 0;
}

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

.field {
  display: grid;
  gap: 7px;
}

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

label {
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

input,
select,
textarea {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  min-height: 48px;
  border: 1px solid #cfcfd6;
  border-radius: 0;
  padding: 12px 13px;
  color: var(--ink);
  font: inherit;
  background: var(--white);
}

textarea {
  min-height: 132px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid rgba(255, 79, 163, 0.35);
  border-color: var(--pink);
}

.form-note {
  margin-top: 14px;
  color: var(--muted);
  font-size: 0.92rem;
}

.trust-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 44px;
  background: var(--line);
  border: 1px solid var(--line);
}

.trust-item {
  padding: 24px;
  background: var(--white);
}

.trust-item strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1.7rem;
  line-height: 1;
}

.trust-item span {
  color: var(--muted);
  font-size: 0.92rem;
}

.cta-band {
  padding: 58px 0;
  background: var(--ink);
  color: var(--white);
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cta-inner h2 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(1.9rem, 4vw, 3.4rem);
  line-height: 1;
}

.site-footer {
  padding: 44px 0;
  color: rgba(255, 255, 255, 0.72);
  background: #0b0b0d;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(210px, 1.15fr) minmax(120px, 0.7fr) minmax(170px, 0.9fr) minmax(300px, 1.35fr);
  gap: 32px;
}

.footer-logo {
  width: 96px;
  height: auto;
  padding: 9px 11px;
  margin-bottom: 14px;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.22);
}

.footer-flag {
  width: 72px;
  height: auto;
  margin: 0 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-grid h3 {
  margin-bottom: 10px;
  color: var(--white);
  font-size: 1rem;
}

.footer-grid p,
.footer-grid a {
  color: rgba(255, 255, 255, 0.72);
}

.footer-grid a:hover {
  color: var(--white);
}

.stack {
  display: grid;
  gap: 8px;
}

.footer-contact p {
  display: grid;
  gap: 8px;
  margin-bottom: 0;
}

.footer-contact a {
  width: max-content;
  max-width: 100%;
  overflow-wrap: normal;
  word-break: normal;
}

.footer-contact a[href^="mailto:"] {
  white-space: nowrap;
  font-size: 0.9rem;
}

@media (max-width: 1080px) {
  .footer-grid {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 1fr);
  }
}

@media (max-width: 900px) {
  .nav-toggle-label {
    display: inline-flex;
  }

  .nav-links {
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 14px 20px 20px;
    border-bottom: 1px solid var(--line);
    background: var(--white);
  }

  .nav-links a {
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
  }

  .nav-links .button {
    margin-top: 14px;
  }

  .nav-toggle:checked ~ .nav-links {
    display: flex;
  }

  .rate-strip,
  .feature-grid,
  .steps,
  .area-grid,
  .seo-grid,
  .pricing-layout,
  .contact-layout,
  .materials,
  .trust-bar,
  .footer-grid,
  .split {
    grid-template-columns: 1fr;
  }

  .rate-cell.action {
    align-items: stretch;
  }

  .rate-cell.action .button {
    width: 100%;
  }

  .cta-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(var(--max), calc(100% - 28px));
  }

  .brand img {
    width: 62px;
    height: 48px;
  }

  .brand span {
    max-width: 160px;
    font-size: 0.94rem;
  }

  .hero {
    min-height: 680px;
  }

  .hero-wide {
    min-height: 480px;
  }

  .hero-inner {
    padding: 60px 0 48px;
  }

  h1 {
    font-size: clamp(2.45rem, 13vw, 3.5rem);
    line-height: 0.96;
  }

  .hero p {
    font-size: 1.02rem;
  }

  .section-title,
  .cta-inner h2 {
    font-size: clamp(1.85rem, 10vw, 2.45rem);
    line-height: 1.05;
  }

  .section {
    padding: 62px 0;
  }

  .pricing-highlights {
    transform: none;
    padding-top: 14px;
  }

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

  .form-panel {
    width: 100%;
  }

  .form-panel .hero-actions {
    display: grid;
  }

  .form-panel .button {
    width: 100%;
  }

  .reservation-contact a[href^="mailto:"],
  .footer-contact a[href^="mailto:"] {
    font-size: 0.86rem;
    white-space: nowrap;
  }

  .pricing-panel,
  .form-panel,
  .feature-card,
  .step-card,
  .material-box {
    padding: 22px;
  }
}


/* Elementor compatibility: the imported static sections keep their original layout while remaining editable in the builder. */
.elementor-widget:not(:last-child) {
  margin-bottom: 0;
}

.elementor-section .elementor-container {
  max-width: none;
}

.elementor-column-gap-default > .elementor-column > .elementor-element-populated,
.elementor-column-gap-no > .elementor-column > .elementor-element-populated {
  padding: 0;
}

.elementor-widget-html .elementor-widget-container > section {
  width: 100%;
}
