:root {
  --honey: #f4b942;
  --honey-deep: #be7412;
  --cream: #fff9eb;
  --sage: #6e8b64;
  --teal: #0f5d5e;
  --charcoal: #1f2724;
  --ink: #26302d;
  --muted: #66736f;
  --line: #dde4dc;
  --white: #ffffff;
  --rose: #9c4f55;
  --shadow: 0 18px 45px rgba(31, 39, 36, 0.14);
  --radius: 8px;
  --wrap: 1160px;
  --header-height: 88px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

:focus-visible {
  outline: 3px solid rgba(244, 185, 66, 0.85);
  outline-offset: 3px;
}

.wrap {
  width: min(var(--wrap), calc(100% - 40px));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 100;
  transform: translateY(-160%);
  background: var(--charcoal);
  color: var(--white);
  padding: 10px 14px;
  border-radius: var(--radius);
}

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

.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;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.93);
  border-bottom: 1px solid rgba(221, 228, 220, 0.86);
  backdrop-filter: blur(16px);
}

.top-strip {
  background: var(--charcoal);
  color: var(--white);
  font-size: 0.92rem;
}

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

.strip-inner a {
  color: var(--honey);
  font-weight: 800;
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand strong {
  display: block;
  font-size: 1.02rem;
  color: var(--charcoal);
  line-height: 1.1;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  margin-top: 2px;
}

.brand-mark {
  width: 45px;
  height: 45px;
  display: grid;
  place-items: center;
  flex: 0 0 45px;
  background: var(--cream);
  border: 1px solid rgba(244, 185, 66, 0.45);
  border-radius: var(--radius);
}

.brand-mark svg {
  width: 32px;
  height: 32px;
}

.brand-mark path:first-child {
  fill: var(--honey);
  stroke: var(--charcoal);
  stroke-width: 2.2;
  stroke-linejoin: round;
}

.brand-mark path:last-child {
  fill: none;
  stroke: var(--charcoal);
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-links a {
  padding: 10px 12px;
  color: #32403b;
  font-weight: 700;
  border-radius: var(--radius);
}

.nav-links a:hover {
  background: #edf4ec;
}

.nav-links .nav-call {
  background: var(--honey);
  color: var(--charcoal);
  border: 1px solid #dba134;
  margin-left: 4px;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span:not(.sr-only) {
  width: 20px;
  height: 2px;
  background: var(--charcoal);
}

.hero {
  position: relative;
  min-height: clamp(620px, 82vh, 760px);
  isolation: isolate;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-media picture,
.hero-media img {
  width: 100%;
  height: 100%;
}

.hero-media picture {
  display: block;
}

.hero-media img {
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(251, 252, 248, 0.98) 0%, rgba(251, 252, 248, 0.86) 38%, rgba(251, 252, 248, 0.22) 72%, rgba(251, 252, 248, 0.1) 100%),
    linear-gradient(0deg, rgba(31, 39, 36, 0.2), rgba(31, 39, 36, 0.04));
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 570px) 1fr;
  padding: 72px 0 90px;
}

.hero-copy {
  max-width: 570px;
}

.eyebrow {
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  margin: 0 0 10px;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  color: var(--charcoal);
  font-size: clamp(3rem, 7vw, 5.9rem);
  line-height: 0.95;
  font-weight: 900;
}

h2 {
  margin: 0;
  color: var(--charcoal);
  font-size: clamp(2rem, 4vw, 3.45rem);
  line-height: 1.02;
  font-weight: 900;
}

h3 {
  margin: 0;
  color: var(--charcoal);
  line-height: 1.18;
  font-size: 1.18rem;
}

.hero-lede {
  margin: 22px 0 0;
  max-width: 520px;
  color: #33413d;
  font-size: clamp(1.13rem, 2vw, 1.4rem);
}

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

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  padding: 13px 18px;
  font-weight: 900;
  line-height: 1;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button svg {
  width: 18px;
  height: 18px;
}

.button path {
  fill: currentColor;
}

.button:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(31, 39, 36, 0.16);
}

.primary {
  background: var(--honey);
  color: var(--charcoal);
  border-color: #d89c2f;
}

.secondary {
  background: rgba(255, 255, 255, 0.88);
  color: var(--charcoal);
  border-color: rgba(31, 39, 36, 0.22);
}

.secondary.dark {
  background: var(--white);
  border-color: var(--line);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 530px;
  margin: 34px 0 0;
}

.hero-stats div {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(221, 228, 220, 0.86);
  border-radius: var(--radius);
  padding: 14px 16px;
}

.hero-stats dt {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-stats dd {
  margin: 2px 0 0;
  color: var(--charcoal);
  font-size: 1.2rem;
  font-weight: 900;
}

.intro-band {
  background: var(--teal);
  color: var(--white);
  padding: 42px 0;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.75fr);
  gap: 38px;
  align-items: center;
}

.intro-band .eyebrow {
  color: var(--honey);
}

.intro-band h2 {
  color: var(--white);
  font-size: clamp(1.7rem, 3.2vw, 2.85rem);
}

.intro-band p:last-child {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.08rem;
}

.section {
  padding: 92px 0;
}

.section-heading {
  display: grid;
  gap: 12px;
  max-width: 760px;
  margin-bottom: 34px;
}

.section-heading p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

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

.service-card,
.price-card,
.boundary-list article,
.contact-card,
.request-form,
.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.service-card {
  padding: 24px;
  min-height: 246px;
  box-shadow: 0 9px 30px rgba(31, 39, 36, 0.06);
}

.card-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  background: #edf5ed;
  color: var(--teal);
  margin-bottom: 18px;
}

.card-icon svg {
  width: 25px;
  height: 25px;
}

.card-icon path {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card p,
.price-card p,
.text-panel p,
.pricing-copy p,
.area-copy p,
.boundary-list p,
.contact-copy p,
.faq-list p {
  color: var(--muted);
}

.service-card p {
  margin: 10px 0 0;
}

.split-section,
.area-section {
  padding: 92px 0;
  background: #eef6ef;
}

.split-grid,
.area-grid,
.contact-grid,
.pricing-grid,
.boundary-grid,
.faq-grid {
  display: grid;
  gap: 44px;
  align-items: center;
}

.split-grid,
.area-grid {
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.88fr);
}

.area-grid {
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.02fr);
}

.image-panel {
  align-self: center;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: #dce5dc;
}

.image-panel img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.image-panel picture {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 2;
}

.text-panel {
  max-width: 580px;
}

.text-panel p {
  font-size: 1.08rem;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 26px 0 0;
  display: grid;
  gap: 12px;
}

.check-list li {
  position: relative;
  padding-left: 34px;
  font-weight: 800;
  color: var(--charcoal);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--honey);
  box-shadow: inset 0 0 0 6px var(--cream);
  border: 1px solid #d89c2f;
}

.pricing {
  background: #fbfcf8;
}

.pricing-grid {
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
}

.pricing-copy {
  align-self: start;
}

.pricing-copy p {
  font-size: 1.06rem;
}

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

.price-card {
  padding: 24px;
  min-height: 340px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  box-shadow: 0 9px 30px rgba(31, 39, 36, 0.06);
}

.price-card.featured {
  background: var(--charcoal);
  color: var(--white);
  border-color: var(--charcoal);
}

.price-card.featured h3,
.price-card.featured .price {
  color: var(--white);
}

.price-card.featured p {
  color: rgba(255, 255, 255, 0.78);
}

.label {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 9px;
  background: var(--honey);
  color: var(--charcoal);
  border-radius: var(--radius);
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.label.muted {
  background: #edf5ed;
  color: var(--teal);
}

.price {
  margin: 16px 0 8px;
  color: var(--charcoal);
  font-size: 2.75rem;
  line-height: 1;
  font-weight: 900;
}

.price span {
  font-size: 1rem;
  color: inherit;
}

.price-card .button {
  margin-top: auto;
  width: 100%;
}

.pricing-note {
  grid-column: 1 / -1;
  margin: -16px 0 0;
  color: var(--muted);
  font-size: 0.98rem;
}

.process {
  background: var(--cream);
}

.process-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  counter-reset: steps;
}

.process-list li {
  padding: 26px;
  background: var(--white);
  border: 1px solid rgba(219, 161, 52, 0.34);
  border-radius: var(--radius);
}

.process-list span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  background: var(--honey);
  border-radius: var(--radius);
  font-weight: 900;
  color: var(--charcoal);
  margin-bottom: 18px;
}

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

.area-section {
  background: #eaf1f3;
}

.area-copy p {
  font-size: 1.08rem;
}

.area-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.area-list a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(15, 93, 94, 0.28);
  background: rgba(255, 255, 255, 0.78);
  color: var(--teal);
  border-radius: var(--radius);
  padding: 8px 12px;
  font-weight: 900;
}

.boundaries {
  background: #fbfcf8;
}

.boundary-grid {
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
}

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

.boundary-list article {
  padding: 26px;
  border-top: 5px solid var(--teal);
}

.boundary-list article:last-child {
  border-top-color: var(--rose);
}

.boundary-list p {
  margin-bottom: 0;
}

.contact {
  background: var(--teal);
  color: var(--white);
}

.contact-grid {
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 1.14fr);
}

.contact .eyebrow {
  color: var(--honey);
}

.contact h2 {
  color: var(--white);
}

.contact-copy p {
  color: rgba(255, 255, 255, 0.83);
  font-size: 1.08rem;
}

.contact-card {
  margin-top: 28px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.24);
  display: grid;
  gap: 4px;
}

.contact-card strong {
  color: var(--honey);
  text-transform: uppercase;
  font-size: 0.78rem;
}

.contact-card a {
  font-size: clamp(1.65rem, 4vw, 2.6rem);
  font-weight: 900;
  color: var(--white);
}

.contact-card span {
  color: rgba(255, 255, 255, 0.75);
}

.request-form {
  padding: 26px;
  background: var(--white);
  color: var(--charcoal);
  box-shadow: var(--shadow);
  display: grid;
  gap: 16px;
}

.request-form label {
  display: grid;
  gap: 7px;
  color: var(--charcoal);
  font-weight: 900;
}

.field-pair {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.request-form input,
.request-form select,
.request-form textarea {
  width: 100%;
  border: 1px solid #cfd8cf;
  border-radius: var(--radius);
  padding: 12px 13px;
  color: var(--ink);
  background: #fbfcf8;
  resize: vertical;
}

.form-button {
  width: 100%;
}

.form-status,
.noscript-note {
  min-height: 22px;
  margin: 0;
  color: var(--teal);
  font-weight: 800;
}

.faq {
  background: #fbfcf8;
}

.faq-grid {
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  align-items: start;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-list details {
  overflow: hidden;
}

.faq-list summary {
  cursor: pointer;
  padding: 19px 22px;
  font-weight: 900;
  color: var(--charcoal);
}

.faq-list p {
  margin: 0;
  padding: 0 22px 20px;
}

.site-footer {
  background: var(--charcoal);
  color: rgba(255, 255, 255, 0.78);
  padding: 44px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) repeat(2, minmax(170px, 0.55fr));
  gap: 30px;
  align-items: start;
}

.footer-brand strong {
  color: var(--white);
}

.footer-brand small,
.site-footer p {
  color: rgba(255, 255, 255, 0.68);
}

.site-footer h2 {
  color: var(--honey);
  font-size: 0.86rem;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.site-footer a {
  display: block;
  color: rgba(255, 255, 255, 0.86);
  margin-top: 7px;
  font-weight: 800;
}

.copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  margin-top: 34px;
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  font-size: 0.9rem;
}

.copyright a {
  margin: 0;
  color: var(--honey);
}

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

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

  .nav-links.is-open {
    display: flex;
  }

  .nav-links .nav-call {
    margin-left: 0;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    padding: 78px 0 84px;
  }

  .hero-overlay {
    background:
      linear-gradient(0deg, rgba(251, 252, 248, 0.96) 0%, rgba(251, 252, 248, 0.78) 70%, rgba(251, 252, 248, 0.58) 100%),
      linear-gradient(90deg, rgba(31, 39, 36, 0.18), rgba(31, 39, 36, 0.02));
  }

  .intro-grid,
  .split-grid,
  .area-grid,
  .pricing-grid,
  .boundary-grid,
  .contact-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

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

  .process-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .wrap {
    width: min(100% - 28px, var(--wrap));
  }

  .strip-inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 2px;
    padding: 8px 0;
  }

  .nav {
    min-height: 68px;
  }

  .nav-links {
    top: 118px;
    left: 14px;
    right: 14px;
  }

  .brand strong {
    font-size: 0.94rem;
  }

  .brand small {
    display: none;
  }

  .hero-media img {
    object-position: center;
  }

  .hero-grid {
    padding: 58px 0 66px;
  }

  h1 {
    font-size: clamp(2.75rem, 18vw, 4.6rem);
  }

  h2 {
    font-size: clamp(1.85rem, 10vw, 2.55rem);
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .hero-stats,
  .service-grid,
  .price-cards,
  .boundary-list,
  .field-pair,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-stats div,
  .service-card,
  .price-card,
  .process-list li,
  .boundary-list article,
  .request-form {
    padding: 20px;
  }

  .section,
  .split-section,
  .area-section {
    padding: 68px 0;
  }

  .price-card {
    min-height: 0;
  }

  .image-panel {
    width: 100%;
    margin-inline: auto;
  }

  .image-panel picture {
    aspect-ratio: 4 / 3;
  }

  .image-panel img {
    object-position: center;
  }

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
