:root {
  --ivory: #f8f3e8;
  --ivory-2: #fffaf0;
  --paper: #fcf8ef;
  --forest: #143526;
  --forest-2: #0c2219;
  --charcoal: #20231f;
  --brown: #4b3426;
  --muted: #6e665a;
  --line: #d8cbb8;
  --line-strong: #bca886;
  --brass: #b57a22;
  --clay: #9d5f3f;
  --shadow: 0 18px 50px rgba(28, 24, 18, 0.12);
  --radius: 8px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ivory);
  color: var(--charcoal);
  font-size: 16px;
  line-height: 1.6;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(rgba(248, 243, 232, 0.9), rgba(248, 243, 232, 0.9)),
    url("/images/background-texture.png") center / 760px auto;
  opacity: 0.55;
}

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

a {
  color: inherit;
}

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

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

h1 {
  max-width: 760px;
  font-size: clamp(2.65rem, 7vw, 5.75rem);
  color: var(--ivory-2);
}

h2 {
  font-size: clamp(1.75rem, 3vw, 3rem);
  color: var(--forest);
}

h3 {
  font-size: 1.2rem;
  color: var(--forest);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(216, 203, 184, 0.85);
  background: rgba(252, 248, 239, 0.94);
  backdrop-filter: blur(16px);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 22px;
  width: min(1180px, calc(100% - 32px));
  min-height: 74px;
  margin: 0 auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--forest);
  font-size: 1.35rem;
  font-weight: 700;
  white-space: nowrap;
}

.brand-logo {
  width: 34px;
  height: 34px;
  object-fit: contain;
  flex: 0 0 auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-left: auto;
  font-size: 0.88rem;
  color: #2b342e;
}

.site-nav a,
.footer-links a,
.related-links a {
  text-decoration: none;
}

.site-nav a:hover,
.footer-links a:hover,
.related-links a:hover {
  color: var(--brass);
}

.phone-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 6px;
  background: var(--forest);
  color: #fff7e8;
  text-decoration: none;
  font-weight: 700;
}

.menu-toggle {
  display: none;
  margin-left: auto;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: transparent;
  color: var(--forest);
  padding: 8px 10px;
}

.breadcrumbs {
  width: min(1180px, calc(100% - 32px));
  margin: 18px auto -2px;
  color: var(--muted);
  font-size: 0.9rem;
}

.breadcrumbs a {
  text-decoration: none;
  color: var(--forest);
}

.breadcrumbs span {
  margin-left: 8px;
}

.hero {
  width: min(1240px, calc(100% - 28px));
  margin: 14px auto 0;
  min-height: 580px;
  border: 1px solid rgba(216, 203, 184, 0.72);
  border-radius: var(--radius);
  overflow: hidden;
  background-image: var(--hero-image);
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow);
}

.service-hero {
  min-height: 520px;
}

.hero-overlay {
  display: grid;
  grid-template-columns: minmax(0, 710px) minmax(260px, 1fr);
  align-items: center;
  gap: 34px;
  min-height: inherit;
  padding: clamp(30px, 5vw, 58px);
  background:
    linear-gradient(90deg, rgba(8, 28, 21, 0.9) 0%, rgba(12, 34, 25, 0.78) 34%, rgba(12, 34, 25, 0.25) 62%, rgba(12, 34, 25, 0.02) 100%),
    linear-gradient(0deg, rgba(10, 24, 18, 0.28), transparent 45%);
}

.service-hero .hero-overlay {
  grid-template-columns: minmax(0, 780px);
  align-items: center;
}

.hero-copy {
  max-width: 690px;
  color: #fff8ea;
}

.hero-copy p:not(.eyebrow) {
  max-width: 620px;
  margin-top: 18px;
  font-size: clamp(1.04rem, 1.6vw, 1.24rem);
}

.eyebrow {
  margin-bottom: 12px;
  color: var(--brass);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #d5ab65;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 800;
}

.btn.primary {
  background: linear-gradient(180deg, #c18c34, var(--brass));
  color: #fff8e8;
}

.btn.secondary {
  border-color: rgba(255, 248, 232, 0.72);
  background: rgba(12, 34, 25, 0.46);
  color: #fff8e8;
}

.btn.full {
  width: 100%;
  border: 0;
}

.lead-form,
.side-panel,
.legal-block,
.content-block,
.service-card,
.steps article,
.safety-strip,
.cta-band {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 250, 240, 0.88);
}

.lead-form {
  padding: clamp(18px, 3vw, 28px);
  color: var(--charcoal);
  box-shadow: 0 14px 30px rgba(20, 19, 16, 0.12);
}

.compact-form {
  max-width: 520px;
  margin-left: auto;
}

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

.compact-form .compact-urgency {
  grid-column: 1 / -1;
}

.compact-form textarea {
  min-height: 108px;
}

.lead-form h2 {
  font-size: clamp(1.55rem, 2vw, 2rem);
}

.form-head p:last-child,
.form-fallback,
.content-block p,
.side-panel p,
.steps p,
.service-card p,
.legal-block p,
.section-head p:last-child,
.lede {
  color: var(--muted);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 14px;
}

label,
legend {
  display: grid;
  gap: 6px;
  color: #4f463c;
  font-size: 0.88rem;
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  min-height: 42px;
  border: 1px solid #d9cbb8;
  border-radius: 6px;
  background: rgba(255, 253, 248, 0.92);
  color: var(--charcoal);
  padding: 9px 11px;
  font: inherit;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid rgba(181, 122, 34, 0.25);
  border-color: var(--brass);
}

fieldset {
  margin: 14px 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px;
}

.check-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-top: 8px;
}

.check-grid label,
.consent {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-weight: 600;
}

.check-grid input,
.consent input {
  width: auto;
  min-height: 0;
  margin-top: 5px;
}

.honeypot {
  position: absolute;
  left: -9999px;
}

.form-status {
  min-height: 24px;
  margin: 12px 0;
  color: var(--forest);
  font-weight: 700;
}

.section {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(42px, 6vw, 66px) 0;
}

.home-services {
  padding-top: clamp(28px, 4vw, 42px);
  padding-bottom: clamp(22px, 3vw, 32px);
}

.section.narrow {
  max-width: 860px;
}

.section-head {
  max-width: 760px;
  margin-bottom: 22px;
}

.section-title-rule {
  display: grid;
  grid-template-columns: auto minmax(80px, 1fr) auto;
  align-items: center;
  gap: 18px;
  max-width: 760px;
  margin-bottom: 18px;
}

.section-title-rule.centered {
  grid-template-columns: minmax(90px, 1fr) auto minmax(90px, 1fr) 34px;
  max-width: 640px;
  margin: 0 auto 24px;
}

.section-title-rule.how-title {
  max-width: 720px;
  margin-bottom: 18px;
}

.section-title-rule h2 {
  font-size: clamp(1.95rem, 3vw, 2.7rem);
}

.section-title-rule::after {
  content: "";
  height: 1px;
  background: var(--line-strong);
  opacity: 0.72;
}

.section-title-rule.centered::before {
  content: "";
  height: 1px;
  background: var(--line-strong);
  opacity: 0.72;
}

.section-title-rule span {
  position: relative;
  width: 34px;
  height: 18px;
}

.section-title-rule span::before,
.section-title-rule span::after {
  content: "";
  position: absolute;
  top: 8px;
  width: 16px;
  height: 1px;
  background: var(--line-strong);
}

.section-title-rule span::before {
  left: 0;
  transform: rotate(-34deg);
}

.section-title-rule span::after {
  right: 0;
  transform: rotate(34deg);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.service-card {
  display: grid;
  align-content: start;
  min-height: 100%;
  overflow: hidden;
  padding: 20px 14px 18px;
  color: var(--charcoal);
  text-decoration: none;
  box-shadow: none;
}

.service-icon {
  display: inline-grid;
  place-items: center;
  width: 92px;
  height: 82px;
  margin: 0 auto 9px;
  border: 0;
  border-radius: 0;
  background: transparent;
  overflow: hidden;
}

.service-icon svg {
  width: 72px;
  height: 68px;
  fill: none;
  stroke: var(--forest);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-icon.generated img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.service-card > span:not(.service-icon) {
  color: var(--forest);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.08rem;
  font-weight: 700;
  text-align: center;
}

.service-card p {
  max-width: 150px;
  margin: 8px auto 0;
  font-size: 0.82rem;
  line-height: 1.38;
  text-align: center;
}

.texture {
  width: 100%;
  max-width: none;
  padding-left: max(16px, calc((100% - 1180px) / 2));
  padding-right: max(16px, calc((100% - 1180px) / 2));
  background:
    linear-gradient(rgba(255, 250, 240, 0.86), rgba(255, 250, 240, 0.86)),
    url("/images/background-texture.png") center / 780px auto;
  border-block: 1px solid rgba(216, 203, 184, 0.65);
}

.how-section {
  padding-top: 8px;
  padding-bottom: clamp(28px, 4vw, 44px);
}

.how-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 250, 240, 0.72);
  padding: 24px 30px;
}

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

.steps article {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  align-items: center;
  gap: 18px;
  padding: 0;
  border: 0;
  background: transparent;
}

.step-icon {
  display: inline-grid;
  place-items: center;
  width: 68px;
  height: 68px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  color: var(--forest);
  background: rgba(255, 253, 248, 0.48);
  overflow: hidden;
}

.step-icon img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.steps h3 {
  margin-bottom: 5px;
  font-size: 1.12rem;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 430px);
  gap: clamp(24px, 5vw, 56px);
  align-items: start;
}

.content-block {
  margin-bottom: 14px;
  padding: 22px;
}

.content-block h2 {
  margin-bottom: 14px;
  font-size: clamp(1.35rem, 2vw, 2rem);
}

.content-block p + p {
  margin-top: 12px;
}

ul {
  margin: 0;
  padding-left: 20px;
}

li + li {
  margin-top: 8px;
}

.safety-strip {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 0 0 14px;
  padding: 14px 16px;
  color: var(--brown);
}

.safety-strip span {
  display: inline-grid;
  flex: 0 0 auto;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: #b98228;
  color: #fff8e8;
  font-weight: 900;
}

.safety-strip p {
  color: var(--brown);
  font-size: 0.96rem;
  line-height: 1.45;
}

.side-panel {
  position: sticky;
  top: 98px;
  overflow: hidden;
}

.side-panel img {
  width: 100%;
  aspect-ratio: 1.45;
  object-fit: cover;
}

.side-panel h2,
.side-panel p,
.side-panel .cta-row {
  margin-inline: 22px;
}

.side-panel h2 {
  margin-top: 22px;
  font-size: 1.6rem;
}

.side-panel p {
  margin-top: 10px;
}

.side-panel .cta-row {
  margin-bottom: 22px;
}

.related-links {
  display: grid;
  gap: 10px;
}

.related-links a {
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  color: var(--forest);
  font-weight: 800;
}

.faq {
  padding-top: 0;
}

details {
  border-top: 1px solid var(--line);
  padding: 18px 0;
}

details:last-child {
  border-bottom: 1px solid var(--line);
}

summary {
  cursor: pointer;
  color: var(--forest);
  font-weight: 900;
}

details p {
  max-width: 780px;
  margin-top: 10px;
  color: var(--muted);
}

.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 52px;
  padding: 24px;
}

.legal-page {
  padding-top: 44px;
}

.legal-page h1 {
  color: var(--forest);
}

.legal-page .lede {
  margin-top: 18px;
  font-size: 1.1rem;
}

.legal-block {
  margin-top: 14px;
  padding: 22px;
}

.legal-block h2 {
  margin-bottom: 10px;
  font-size: 1.55rem;
}

.request-layout {
  padding-top: 44px;
}

.request-layout h1 {
  color: var(--forest);
}

.request-layout .lead-form {
  position: sticky;
  top: 98px;
}

.site-footer {
  background: var(--forest-2);
  color: #f8eedc;
  padding: 42px 0 76px;
}

.footer-grid,
.footer-bottom {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr 1fr;
  gap: 40px;
}

.site-footer .brand,
.site-footer h2 {
  color: #fff8e8;
}

.site-footer h2 {
  margin-bottom: 14px;
  font-size: 1.25rem;
}

.site-footer p,
.footer-bottom {
  color: rgba(248, 238, 220, 0.72);
}

.footer-phone {
  display: inline-flex;
  margin-top: 18px;
  color: #fff8e8;
  font-weight: 900;
  text-decoration: none;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 16px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 30px;
  padding-top: 14px;
  border-top: 1px solid rgba(248, 238, 220, 0.16);
  font-size: 0.88rem;
}

.mobile-sticky {
  display: none;
}

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

  .menu-toggle {
    display: inline-flex;
  }

  .site-nav.open {
    position: absolute;
    top: 74px;
    right: 16px;
    display: grid;
    width: min(320px, calc(100vw - 32px));
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--paper);
    box-shadow: var(--shadow);
  }

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

  .hero-overlay,
  .split,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .steps {
    grid-template-columns: 1fr;
  }

  .hero-form,
  .side-panel,
  .request-layout .lead-form {
    position: static;
  }
}

@media (max-width: 720px) {
  body {
    padding-bottom: 74px;
  }

  .header-inner {
    min-height: 64px;
  }

  .brand {
    font-size: 1.12rem;
  }

  .phone-pill {
    display: none;
  }

  .hero {
    width: 100%;
    min-height: 490px;
    margin-top: 0;
    border-inline: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .service-hero {
    min-height: 520px;
  }

  .hero-overlay {
    align-items: center;
    padding: 56px 18px 28px;
    background:
      linear-gradient(180deg, rgba(8, 28, 21, 0.94) 0%, rgba(8, 28, 21, 0.78) 42%, rgba(8, 28, 21, 0.5) 100%),
      linear-gradient(90deg, rgba(8, 28, 21, 0.62), transparent);
  }

  h1 {
    font-size: clamp(2.35rem, 13vw, 3.4rem);
  }

  .hero-copy p:not(.eyebrow) {
    font-size: 1rem;
  }

  .hero-form {
    display: none;
  }

  .cta-row,
  .cta-band,
  .footer-bottom {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .section {
    width: min(100% - 28px, 1180px);
    padding: 34px 0;
  }

  .home-services {
    padding-top: 26px;
    padding-bottom: 22px;
  }

  .how-section {
    padding-top: 4px;
    padding-bottom: 28px;
  }

  .service-grid,
  .form-grid,
  .footer-links {
    grid-template-columns: 1fr;
  }

  .content-block,
  .lead-form,
  .legal-block,
  .steps article {
    padding: 16px;
  }

  .how-panel {
    padding: 20px 16px;
  }

  .how-panel .steps article {
    grid-template-columns: 58px minmax(0, 1fr);
    padding: 0;
  }

  .step-icon {
    width: 52px;
    height: 52px;
  }

  .step-icon svg {
    width: 29px;
    height: 29px;
  }

  .section-title-rule.centered,
  .section-title-rule.how-title {
    grid-template-columns: minmax(35px, 1fr) auto minmax(35px, 1fr) 24px;
    gap: 10px;
  }

  .safety-strip.compact,
  .safety-strip {
    gap: 9px;
    padding: 10px 12px;
  }

  .safety-strip span {
    width: 21px;
    height: 21px;
    font-size: 0.78rem;
  }

  .safety-strip p {
    font-size: 0.84rem;
    line-height: 1.34;
  }

  .mobile-sticky {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 30;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 10px;
    background: rgba(12, 34, 25, 0.96);
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.24);
  }

  .mobile-sticky a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    border-radius: 6px;
    color: #fff8e8;
    text-decoration: none;
    font-size: 0.92rem;
    font-weight: 900;
  }

  .mobile-sticky a:first-child {
    border: 1px solid rgba(255, 248, 232, 0.45);
  }

  .mobile-sticky a:last-child {
    background: var(--brass);
  }
}
