:root {
  --forest: #082c26;
  --forest-soft: #15433c;
  --rust: #ce3b0e;
  --leaf: #61ce70;
  --cream: #fcf6dd;
  --sand: #efe6c3;
  --ink: #173630;
  --paper: #ffffff;
  --line: rgba(8, 44, 38, 0.12);
  --shadow: 0 24px 60px rgba(8, 44, 38, 0.12);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Roboto", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top, rgba(97, 206, 112, 0.08), transparent 35%),
    linear-gradient(180deg, #fdfbf2 0%, #f8f1d6 100%);
}

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

a {
  color: inherit;
}

button,
input {
  font: inherit;
}

.site-shell {
  min-height: 100vh;
}

.container {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(8, 44, 38, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
}

.brand-logo {
  width: 104px;
  height: 104px;
  object-fit: contain;
}

.phone-button,
.ghost-button,
.submit-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  text-decoration: none;
  transition:
    transform 160ms ease,
    background-color 160ms ease,
    color 160ms ease,
    border-color 160ms ease;
}

.phone-button {
  padding: 0.95rem 1.4rem;
  border: 0;
  background: var(--rust);
  color: var(--cream);
  font-weight: 500;
  box-shadow: 0 14px 30px rgba(206, 59, 14, 0.22);
}

.phone-button:hover,
.phone-button:focus-visible {
  transform: translateY(-1px);
  background: var(--leaf);
  color: #f3f7f3;
}

.ghost-button,
.submit-button {
  border: 1px solid rgba(252, 246, 221, 0.35);
  background: transparent;
  color: var(--cream);
  padding: 0.95rem 1.35rem;
}

.ghost-button:hover,
.ghost-button:focus-visible,
.submit-button:hover,
.submit-button:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(252, 246, 221, 0.7);
  background: rgba(252, 246, 221, 0.12);
}

.dark-ghost {
  border-color: rgba(8, 44, 38, 0.18);
  color: var(--forest);
}

.dark-ghost:hover,
.dark-ghost:focus-visible {
  border-color: rgba(8, 44, 38, 0.4);
  background: rgba(8, 44, 38, 0.06);
}

.hero-section {
  padding: 3.5rem 0 2rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 1.5rem;
  align-items: stretch;
}

.hero-copy,
.hero-panel {
  border-radius: 32px;
  overflow: hidden;
}

.hero-copy {
  position: relative;
  padding: clamp(2.25rem, 6vw, 4.5rem);
  color: var(--cream);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 50%),
    linear-gradient(180deg, rgba(8, 44, 38, 0.88), rgba(8, 44, 38, 0.98)),
    linear-gradient(120deg, #0b342d, #071e1a);
  box-shadow: var(--shadow);
}

.hero-copy::after {
  content: "";
  position: absolute;
  inset: auto -4rem -4rem auto;
  width: 18rem;
  height: 18rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(206, 59, 14, 0.34), transparent 70%);
  pointer-events: none;
}

.eyebrow {
  margin: 0 0 1rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--sand);
}

.eyebrow-dark {
  color: var(--rust);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Roboto Slab", serif;
  line-height: 1.1;
}

h1 {
  max-width: 22ch;
  font-size: clamp(1.4rem, 2vw, 2.15rem);
}

.hero-text {
  max-width: 32rem;
  margin: 1.25rem 0 0;
  font-size: clamp(0.98rem, 1.45vw, 1.1rem);
  line-height: 1.55;
  color: rgba(252, 246, 221, 0.9);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2rem;
}

.hero-phone {
  min-width: 9rem;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.4rem 0 0;
  padding: 0;
  list-style: none;
}

.hero-points li {
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  background: rgba(252, 246, 221, 0.12);
  border: 1px solid rgba(252, 246, 221, 0.16);
  color: rgba(252, 246, 221, 0.92);
  font-size: 0.92rem;
}

.hero-panel {
  padding: 2rem;
  background: linear-gradient(180deg, rgba(252, 246, 221, 0.96), rgba(239, 230, 195, 0.94));
  border: 1px solid rgba(8, 44, 38, 0.09);
  box-shadow: var(--shadow);
}

.rating-card {
  margin-bottom: 1.5rem;
  padding: 1rem 1.1rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(8, 44, 38, 0.12);
}

.rating-label {
  margin: 0;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--rust);
}

.rating-line {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.55rem;
  margin-top: 0.55rem;
  color: var(--forest);
  font-weight: 600;
}

.stars {
  letter-spacing: 0.12em;
  color: #c78b11;
}

.review-link {
  display: inline-flex;
  margin-top: 0.85rem;
  align-items: center;
  gap: 0.35rem;
  color: var(--forest);
  font-weight: 700;
  text-decoration-thickness: 2px;
  text-underline-offset: 0.18em;
}

.hero-panel h2 {
  font-size: clamp(1.55rem, 2.6vw, 2.2rem);
  color: var(--forest);
}

.hero-panel p,
.hero-panel li {
  font-size: 0.98rem;
  line-height: 1.58;
}

.hero-panel ul {
  margin: 0.85rem 0 0;
  padding-left: 1.1rem;
}

.focus-note {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(8, 44, 38, 0.14);
}

.focus-section {
  padding: 0 0 1rem;
}

.focus-card {
  padding: 1.1rem 1.4rem;
  border-left: 6px solid var(--rust);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 40px rgba(8, 44, 38, 0.08);
}

.focus-card p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.55;
}

.services-section {
  padding: 3.5rem 0;
}

.section-heading {
  max-width: 40rem;
}

.section-heading h2 {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  color: var(--forest);
}

.section-subtext {
  margin: 0.9rem 0 0;
  line-height: 1.6;
  font-size: 0.98rem;
}

.proof-section {
  padding: 1rem 0 0.5rem;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.proof-card {
  padding: 1.25rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--line);
  box-shadow: 0 18px 40px rgba(8, 44, 38, 0.08);
}

.proof-kicker {
  display: inline-block;
  margin-bottom: 0.75rem;
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--rust);
}

.proof-card h3,
.review-card h3,
.area-card h3 {
  font-size: 1.22rem;
  color: var(--forest);
}

.proof-card p,
.review-card p,
.area-card p {
  margin: 0.75rem 0 0;
  line-height: 1.58;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
  margin-top: 1.75rem;
}

.service-card {
  padding: 1.55rem;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 22px 50px rgba(8, 44, 38, 0.08);
}

.service-icon {
  width: 3.6rem;
  height: 3.6rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(206, 59, 14, 0.12), rgba(97, 206, 112, 0.18));
  color: var(--forest);
}

.service-icon svg {
  width: 1.7rem;
  height: 1.7rem;
  fill: currentColor;
}

.service-card h3 {
  margin-top: 1rem;
  font-size: 1.32rem;
  color: var(--forest);
}

.service-card p {
  margin: 0.85rem 0 0;
  line-height: 1.58;
}

.reviews-section {
  padding: 0.5rem 0 3.5rem;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
  margin-top: 1.75rem;
}

.review-card,
.area-card {
  padding: 1.45rem;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid var(--line);
  box-shadow: 0 22px 50px rgba(8, 44, 38, 0.08);
}

.stars-row {
  color: #c78b11;
  letter-spacing: 0.18em;
  font-size: 1rem;
}

.review-meta {
  font-size: 0.88rem;
  color: rgba(23, 54, 48, 0.72);
}

.coverage-section {
  padding: 0 0 3.5rem;
}

.coverage-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 1.4rem;
  align-items: start;
}

.coverage-copy {
  padding: 2rem;
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(97, 206, 112, 0.12), transparent 50%),
    rgba(255, 255, 255, 0.82);
  border: 1px solid var(--line);
  box-shadow: 0 20px 44px rgba(8, 44, 38, 0.08);
}

.coverage-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.contact-section {
  padding: 3rem 0 4rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 1.5rem;
  align-items: start;
}

.contact-copy {
  padding: 2rem;
  border-radius: 28px;
  color: var(--cream);
  background:
    linear-gradient(135deg, rgba(206, 59, 14, 0.14), transparent 46%),
    linear-gradient(180deg, #0b342d, #082c26);
  box-shadow: var(--shadow);
}

.contact-copy h2 {
  margin-top: 0.3rem;
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.contact-copy p {
  line-height: 1.7;
}

.contact-callout {
  margin: 1.4rem 0;
  padding: 1rem 1.2rem;
  border-radius: 22px;
  background: rgba(252, 246, 221, 0.12);
  border: 1px solid rgba(252, 246, 221, 0.16);
}

.callout-label {
  display: block;
  font-size: 0.84rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(252, 246, 221, 0.74);
}

.contact-callout a {
  display: inline-block;
  margin-top: 0.55rem;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  text-decoration: none;
}

.contact-disclaimer {
  color: rgba(252, 246, 221, 0.82);
}

.contact-points {
  margin: 1.2rem 0 0;
  padding-left: 1.1rem;
  line-height: 1.8;
  color: rgba(252, 246, 221, 0.92);
}

.contact-card {
  padding: 1.5rem;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(8, 44, 38, 0.1);
  box-shadow: var(--shadow);
}

.quote-form {
  display: grid;
  gap: 1rem;
}

.field {
  display: grid;
  gap: 0.45rem;
}

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

.field span {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--forest);
}

.field input {
  width: 100%;
  padding: 1rem 1.05rem;
  border: 1px solid rgba(8, 44, 38, 0.16);
  border-radius: 18px;
  background: #fffdf7;
  color: var(--forest);
}

.field input:focus {
  outline: 2px solid rgba(206, 59, 14, 0.18);
  border-color: rgba(206, 59, 14, 0.6);
}

.submit-button {
  width: 100%;
  border: 0;
  background: var(--rust);
  color: var(--cream);
  font-weight: 600;
  cursor: pointer;
}

.submit-button:disabled {
  cursor: wait;
  opacity: 0.8;
}

.form-response {
  margin-top: 1.25rem;
  padding: 1.25rem;
  border-radius: 22px;
  background: rgba(8, 44, 38, 0.04);
  border: 1px solid rgba(8, 44, 38, 0.1);
}

.form-response h3 {
  color: var(--forest);
}

.form-summary {
  margin: 1rem 0 0;
  padding: 1rem;
  border-radius: 16px;
  background: #fffdf7;
  border: 1px solid rgba(8, 44, 38, 0.08);
  white-space: pre-wrap;
  line-height: 1.55;
  color: var(--ink);
}

.response-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1rem;
}

.compact-phone {
  padding-inline: 1.1rem;
}

.site-footer {
  padding: 1.5rem 0 2.5rem;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.social-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.social-pills span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1rem;
  border-radius: 999px;
  color: var(--forest);
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(8, 44, 38, 0.12);
}

.footer-meta {
  text-align: right;
}

.footer-meta p {
  margin: 0;
}

.mobile-callbar {
  display: none;
}

@media (max-width: 960px) {
  .hero-grid,
  .contact-grid,
  .services-grid,
  .reviews-grid,
  .coverage-grid {
    grid-template-columns: 1fr;
  }

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

  .coverage-cards {
    grid-template-columns: 1fr 1fr;
  }

  .hero-section {
    padding-top: 2rem;
  }

  .hero-copy,
  .hero-panel,
  .contact-copy,
  .contact-card {
    border-radius: 24px;
  }
}

@media (max-width: 700px) {
  body {
    padding-bottom: calc(5.9rem + env(safe-area-inset-bottom));
  }

  .header-inner {
    justify-content: center;
    align-items: center;
    padding: 0.75rem 0 0.9rem;
  }

  .brand {
    display: flex;
    justify-content: center;
  }

  .brand-logo {
    width: 132px;
    height: 132px;
  }

  .phone-button,
  .ghost-button,
  .submit-button {
    width: 100%;
  }

  .site-header .phone-button:not(.mobile-callbutton) {
    display: none;
  }

  h1 {
    font-size: clamp(1.2rem, 5vw, 1.6rem);
  }

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

  .hero-points {
    flex-direction: column;
    align-items: flex-start;
  }

  .proof-grid,
  .coverage-cards {
    grid-template-columns: 1fr;
  }

  .footer-meta {
    text-align: left;
  }

  .mobile-callbar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 30;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.9rem;
    padding: 0.9rem 1rem calc(0.9rem + env(safe-area-inset-bottom));
    background: rgba(8, 44, 38, 0.96);
    border-top: 1px solid rgba(252, 246, 221, 0.12);
    box-shadow: 0 -18px 40px rgba(8, 44, 38, 0.22);
  }

  .mobile-callcopy {
    display: grid;
    gap: 0.2rem;
    color: var(--cream);
  }

  .mobile-calllabel {
    font-size: 0.74rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: rgba(252, 246, 221, 0.74);
  }

  .mobile-callbutton {
    width: auto;
    min-width: 8.25rem;
    padding-inline: 1.1rem;
    flex: 0 0 auto;
  }
}

/* Retained top-of-page polish from post-restore fixes. */
.site-header {
  overflow: visible;
  background:
    radial-gradient(circle at 20% 30%, rgba(97, 206, 112, 0.1), transparent 26%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(252, 246, 221, 0.84)),
    rgba(255, 255, 255, 0.82);
  border-bottom: 1px solid rgba(8, 44, 38, 0.06);
  box-shadow: 0 10px 24px rgba(8, 44, 38, 0.05);
}

.site-header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2rem;
  height: 2.5rem;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(252, 246, 221, 0.9), rgba(252, 246, 221, 0));
}

.header-inner {
  display: grid;
  gap: 0.6rem;
  padding: 0.42rem 0 0.55rem;
}

.header-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.header-utility {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.7rem 1rem;
  margin: 0;
  padding: 0.1rem 0 0;
  list-style: none;
}

.header-utility li {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  color: rgba(8, 44, 38, 0.7);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.header-utility li + li {
  position: relative;
}

.header-utility li + li::before {
  content: "";
  position: absolute;
  left: -0.58rem;
  top: 50%;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  transform: translateY(-50%);
  background: rgba(8, 44, 38, 0.22);
}

.brand-logo {
  width: 78px;
  height: 78px;
}

.hero-section {
  position: relative;
  padding: 1.6rem 0 2rem;
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 7rem;
  pointer-events: none;
  background:
    radial-gradient(circle at 22% 0%, rgba(97, 206, 112, 0.08), transparent 30%),
    linear-gradient(180deg, rgba(252, 246, 221, 0.76), rgba(252, 246, 221, 0));
}

h1 {
  max-width: 20ch;
  font-size: clamp(1.35rem, 1.95vw, 2.05rem);
}

.hero-text {
  max-width: 31rem;
  margin: 1.1rem 0 0;
  font-size: clamp(0.97rem, 1.35vw, 1.07rem);
}

.hero-actions {
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.hero-phone {
  min-width: 8.6rem;
}

@media (max-width: 960px) {
  .header-utility {
    display: none;
  }

  .hero-section {
    padding-top: 1.2rem;
  }
}

@media (max-width: 700px) {
  .header-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0.7rem 0 0.85rem;
  }

  .header-main {
    justify-content: center;
  }

  .brand-logo {
    width: 116px;
    height: 116px;
  }
}
