:root {
  --green-900: #0b3027;
  --green-800: #0d3d31;
  --green-700: #155843;
  --sage-100: #eef3e8;
  --sage-200: #dfe9d7;
  --gold-500: #d8c08a;
  --gold-600: #b99345;
  --cream: #fbf8ef;
  --white: #ffffff;
  --ink: #18211d;
  --muted: #5c665f;
  --line: #d9dfd4;
  --shadow: 0 18px 48px rgba(11, 48, 39, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

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

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

p {
  margin: 0 0 1rem;
  color: var(--muted);
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: 0;
}

h1 {
  font-size: 4.2rem;
}

h2 {
  font-size: 2.65rem;
}

h3 {
  font-size: 1.25rem;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 10000;
  padding: 0.75rem 1rem;
  background: var(--gold-500);
  color: var(--green-900);
  transform: translateY(-140%);
}

.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: fixed;
  inset: 0 0 auto;
  z-index: 999;
  transition: background 0.25s ease, box-shadow 0.25s ease;
}

.site-header.is-scrolled,
.site-header.menu-open {
  background: rgba(11, 48, 39, 0.96);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.16);
}

.nav-wrap {
  width: min(1180px, calc(100% - 2rem));
  height: 82px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: var(--white);
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 800;
  font-size: 1.15rem;
}

.brand img,
.footer-brand img {
  width: 54px;
  height: 54px;
  object-fit: cover;
  border-radius: 8px;
}

.site-menu,
.nav-actions {
  display: flex;
  align-items: center;
  gap: 1.45rem;
}

.site-menu a,
.phone-link {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.96rem;
  font-weight: 650;
}

.site-menu a:hover,
.site-menu .is-active,
.phone-link:hover {
  color: var(--gold-500);
}

.nav-dropdown {
  position: relative;
}

.dropdown-panel {
  position: absolute;
  top: calc(100% + 1rem);
  left: -1rem;
  min-width: 240px;
  padding: 0.75rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.dropdown-panel a {
  display: block;
  padding: 0.7rem 0.75rem;
  color: var(--green-900);
  border-radius: 6px;
}

.dropdown-panel a:hover {
  background: var(--sage-100);
  color: var(--green-700);
}

.nav-dropdown:hover .dropdown-panel,
.nav-dropdown:focus-within .dropdown-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  padding: 0.65rem;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--white);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.85rem 1.25rem;
  border-radius: 8px;
  border: 1px solid transparent;
  font-weight: 800;
  line-height: 1.1;
  text-align: center;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

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

.btn-primary {
  background: var(--gold-500);
  color: var(--green-900);
  border-color: var(--gold-500);
}

.btn-primary:hover {
  background: #e5cf99;
}

.btn-outline {
  border-color: var(--green-700);
  color: var(--green-800);
  background: transparent;
}

.btn-outline.light {
  border-color: rgba(255, 255, 255, 0.7);
  color: var(--white);
}

.btn-small {
  min-height: 42px;
  padding: 0.72rem 1rem;
}

.hero {
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--green-900);
}

.hero-home {
  min-height: 86vh;
  padding: 8rem 1rem 4rem;
}

.page-hero {
  min-height: 450px;
  padding: 8rem 1rem 4.5rem;
  background-image: var(--hero-image);
  background-position: center;
  background-size: cover;
}

.hero-video,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-video {
  object-fit: cover;
}

.hero-overlay {
  background: linear-gradient(180deg, rgba(8, 33, 27, 0.74), rgba(8, 33, 27, 0.66)), rgba(0, 0, 0, 0.25);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(980px, 100%);
  margin: 0 auto;
}

.hero-content.centered {
  text-align: center;
}

.hero-content p {
  max-width: 760px;
  margin: 1.35rem auto 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.2rem;
}

.hero-accent {
  color: var(--gold-500);
}

.hero-pill,
.section-label {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0.42rem 0.8rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
  background: rgba(216, 192, 138, 0.16);
  color: var(--gold-500);
}

.section-label {
  margin-bottom: 1rem;
  background: var(--sage-100);
  color: var(--green-700);
}

.section-label.light {
  background: rgba(255, 255, 255, 0.12);
  color: var(--gold-500);
}

.hero-actions,
.section-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.hero-content.centered .hero-actions {
  justify-content: center;
}

.hero-stats {
  width: min(640px, 100%);
  margin: 3.2rem auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}

.hero-stats div {
  padding: 1.05rem 0.7rem;
  border-right: 1px solid rgba(255, 255, 255, 0.22);
}

.hero-stats div:last-child {
  border-right: 0;
}

.hero-stats strong {
  display: block;
  font-size: 2.1rem;
  line-height: 1;
}

.hero-stats span {
  display: block;
  margin-top: 0.35rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  font-weight: 800;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 700;
}

.breadcrumbs a:hover {
  color: var(--gold-500);
}

.section {
  padding: 5.5rem 1rem;
}

.section-shell {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.section-shell.narrow {
  width: min(880px, 100%);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 2.25rem;
}

.section-heading h2 {
  margin-bottom: 1rem;
}

.surface-section,
.included-section {
  background: var(--cream);
}

.two-col {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.86fr);
  gap: 3.5rem;
}

.two-col.align-center {
  align-items: center;
}

.mini-grid,
.feature-grid,
.process-grid,
.trust-grid,
.expertise-grid,
.contact-info-grid,
.review-grid,
.local-note-grid {
  display: grid;
  gap: 1rem;
}

.mini-grid {
  grid-template-columns: repeat(2, 1fr);
  margin-top: 2rem;
}

.mini-grid article,
.feature-grid article,
.process-grid article,
.trust-grid article,
.expertise-grid article,
.contact-info-grid article,
.review-grid article,
.local-note-grid article,
.map-card,
.dark-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 1.35rem;
  background: var(--white);
}

.mini-grid h3,
.feature-grid h3,
.process-grid h3,
.trust-grid h3,
.expertise-grid h3,
.contact-info-grid h2,
.review-grid h3,
.local-note-grid h3,
.map-card h3,
.dark-panel h3 {
  margin-bottom: 0.65rem;
  color: var(--green-900);
}

.photo-frame {
  position: relative;
}

.photo-frame img,
.image-collage img,
.service-card img {
  width: 100%;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.photo-frame img {
  aspect-ratio: 5 / 4;
}

.photo-badge {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  max-width: calc(100% - 2rem);
  padding: 0.85rem 1rem;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.15);
}

.photo-badge strong,
.photo-badge span {
  display: block;
}

.photo-badge strong {
  color: var(--green-900);
}

.photo-badge span {
  color: var(--muted);
  font-size: 0.9rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.service-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 24px rgba(11, 48, 39, 0.08);
}

.service-card img {
  height: 240px;
  border-radius: 0;
  box-shadow: none;
}

.service-card div {
  padding: 1.25rem;
}

.service-card span {
  display: block;
  margin-bottom: 0.65rem;
  color: var(--gold-600);
  font-weight: 800;
}

.service-card h3 {
  min-height: 84px;
}

.service-card p {
  min-height: 104px;
  margin-top: 0.8rem;
}

.service-card a {
  display: inline-flex;
  margin-top: 0.5rem;
  color: var(--green-700);
  font-weight: 800;
}

.image-collage {
  position: relative;
  min-height: 500px;
}

.image-collage img:first-child {
  height: 430px;
}

.image-collage img:last-child {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 48%;
  height: 230px;
  border: 8px solid var(--white);
}

.check-list {
  display: grid;
  gap: 0.85rem;
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 1.9rem;
  color: var(--muted);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.42rem;
  width: 0.9rem;
  height: 0.9rem;
  border-radius: 999px;
  background: var(--gold-500);
  box-shadow: inset 0 0 0 4px var(--green-800);
}

.check-list.large {
  margin-top: 0;
  padding: 1.5rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.process-grid {
  grid-template-columns: repeat(4, 1fr);
}

.process-grid article {
  position: relative;
  min-height: 230px;
}

.process-grid span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 1rem;
  border-radius: 999px;
  background: var(--green-800);
  color: var(--gold-500);
  font-weight: 900;
}

.trust-grid,
.feature-grid {
  grid-template-columns: repeat(3, 1fr);
}

.expertise-grid {
  grid-template-columns: repeat(3, 1fr);
}

.reviews-section {
  background: var(--green-900);
  color: var(--white);
}

.reviews-section .section-heading p,
.review-grid p {
  color: rgba(255, 255, 255, 0.78);
}

.review-grid {
  grid-template-columns: repeat(3, 1fr);
}

.review-grid article {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
}

.review-grid h3 {
  color: var(--white);
}

.review-grid span {
  display: inline-flex;
  margin-top: 0.6rem;
  color: var(--gold-500);
  font-weight: 800;
}

.stars {
  margin-bottom: 0.75rem;
  color: var(--gold-500);
  font-weight: 900;
}

.local-note-grid {
  grid-template-columns: repeat(3, 1fr);
}

.dark-split {
  background: var(--green-900);
  color: var(--white);
}

.dark-split p,
.dark-panel p {
  color: rgba(255, 255, 255, 0.78);
}

.dark-panel {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
}

.dark-panel h3 {
  color: var(--gold-500);
}

.service-area-section {
  background: var(--sage-100);
}

.service-map-section {
  background: var(--sage-100);
}

.service-map-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.45fr) minmax(0, 1fr);
  gap: 1.5rem;
  align-items: stretch;
}

.area-picker {
  display: grid;
  gap: 0.75rem;
  align-content: start;
}

.area-picker button {
  width: 100%;
  min-height: 54px;
  padding: 0.85rem 1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--green-900);
  text-align: left;
  font: inherit;
  font-weight: 850;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.area-picker button:hover,
.area-picker button.is-active {
  background: var(--green-800);
  color: var(--white);
  border-color: var(--green-800);
}

.area-picker span {
  display: block;
}

.map-display {
  min-height: 520px;
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.map-copy {
  padding: 1.25rem;
  border-bottom: 1px solid var(--line);
}

.map-copy h3 {
  margin-bottom: 0.45rem;
  color: var(--green-900);
}

.map-copy p {
  margin: 0;
}

.map-display iframe {
  width: 100%;
  height: 100%;
  min-height: 390px;
  border: 0;
}

.area-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
}

.area-list li {
  padding: 0.55rem 0.8rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--green-800);
  font-weight: 800;
}

.map-card {
  align-self: start;
  background: var(--green-900);
  color: var(--white);
  border-color: var(--green-900);
}

.map-card h3 {
  color: var(--gold-500);
}

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

.faq-list {
  display: grid;
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 1.1rem 1.25rem;
}

.faq-list summary {
  cursor: pointer;
  color: var(--green-900);
  font-weight: 850;
}

.faq-list p {
  margin: 0.85rem 0 0;
}

.cta-band {
  padding: 4rem 1rem;
  background: var(--green-800);
  color: var(--white);
}

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

.cta-inner p {
  color: rgba(255, 255, 255, 0.78);
  margin-top: 0.8rem;
}

.quote-section {
  padding: 5.5rem 1rem;
  background: var(--cream);
}

.quote-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(380px, 1fr);
  gap: 2.25rem;
  align-items: start;
}

.contact-stack {
  display: grid;
  gap: 0.85rem;
  margin-top: 2rem;
}

.contact-stack a,
.contact-stack div {
  display: grid;
  gap: 0.2rem;
  padding: 1rem;
  border-radius: 8px;
  background: var(--white);
  border: 1px solid var(--line);
}

.contact-stack strong {
  color: var(--green-900);
}

.contact-stack span {
  color: var(--muted);
  overflow-wrap: anywhere;
}

.form-card {
  min-height: 735px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0.75rem;
  background: var(--white);
  box-shadow: var(--shadow);
}

.form-card iframe {
  min-height: 681px;
}

.form-fallback {
  margin: 0.6rem 0 0;
  font-size: 0.9rem;
}

.form-fallback a {
  color: var(--green-700);
  font-weight: 800;
}

.contact-info-grid {
  grid-template-columns: repeat(3, 1fr);
}

.site-footer {
  padding: 4rem 1rem 1.5rem;
  background: var(--green-900);
  color: var(--white);
}

.footer-grid {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.35fr 0.8fr 0.8fr 1fr;
  gap: 2rem;
}

.site-footer p,
.site-footer li {
  color: rgba(255, 255, 255, 0.72);
}

.site-footer h3 {
  margin-bottom: 1rem;
  color: var(--gold-500);
  font-size: 1rem;
}

.site-footer ul {
  display: grid;
  gap: 0.6rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer a:hover {
  color: var(--gold-500);
}

.footer-hours {
  margin-top: 1rem;
}

.footer-bottom {
  width: min(1180px, 100%);
  margin: 2.5rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.footer-bottom p {
  margin: 0;
}

@media (max-width: 1080px) {
  h1 {
    font-size: 3.35rem;
  }

  h2 {
    font-size: 2.2rem;
  }

  .site-menu,
  .nav-actions {
    gap: 1rem;
  }

  .service-grid,
  .trust-grid,
  .feature-grid,
  .expertise-grid,
  .contact-info-grid,
  .review-grid,
  .local-note-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 880px) {
  h1 {
    font-size: 2.6rem;
  }

  h2 {
    font-size: 1.9rem;
  }

  .nav-wrap {
    height: 74px;
  }

  .menu-toggle {
    display: block;
  }

  .site-menu {
    position: fixed;
    left: 1rem;
    right: 1rem;
    top: 82px;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    padding: 0.75rem;
    background: var(--green-900);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

  .site-menu.is-open {
    display: flex;
  }

  .site-menu a {
    padding: 0.85rem;
  }

  .dropdown-panel {
    position: static;
    visibility: visible;
    opacity: 1;
    transform: none;
    display: grid;
    gap: 0.1rem;
    min-width: 0;
    margin: 0.35rem 0 0.5rem;
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.12);
    box-shadow: none;
  }

  .dropdown-panel a {
    color: rgba(255, 255, 255, 0.82);
  }

  .nav-actions {
    margin-left: auto;
  }

  .phone-link {
    display: none;
  }

  .two-col,
  .quote-grid,
  .service-map-grid,
  .cta-inner,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .two-col {
    gap: 2.25rem;
  }

  .cta-inner {
    display: grid;
  }

  .quote-grid {
    gap: 2rem;
  }

  .hero-home {
    min-height: 84vh;
    padding-top: 7rem;
  }

  .hero-content p {
    font-size: 1.05rem;
  }
}

@media (max-width: 640px) {
  .section,
  .quote-section {
    padding: 4rem 1rem;
  }

  .brand span {
    max-width: 116px;
    line-height: 1.05;
  }

  .brand img {
    width: 46px;
    height: 46px;
  }

  .nav-actions .btn {
    display: none;
  }

  .hero-home {
    min-height: 76vh;
    padding-top: 6.5rem;
    padding-bottom: 2.5rem;
  }

  .page-hero {
    min-height: 420px;
  }

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

  .hero-actions .btn,
  .section-actions .btn,
  .cta-actions .btn {
    width: 100%;
  }

  .hero-stats {
    grid-template-columns: repeat(3, 1fr);
    max-width: 100%;
    margin-top: 2rem;
  }

  .hero-stats div {
    padding: 0.8rem 0.35rem;
    border-right: 1px solid rgba(255, 255, 255, 0.22);
    border-bottom: 0;
  }

  .hero-stats div:last-child {
    border-right: 0;
  }

  .hero-stats strong {
    font-size: 1.35rem;
  }

  .hero-stats span {
    font-size: 0.66rem;
  }

  .service-grid,
  .trust-grid,
  .feature-grid,
  .expertise-grid,
  .contact-info-grid,
  .review-grid,
  .local-note-grid,
  .mini-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .map-display {
    min-height: 470px;
  }

  .service-card h3,
  .service-card p {
    min-height: 0;
  }

  .image-collage {
    min-height: 0;
  }

  .image-collage img:first-child,
  .image-collage img:last-child {
    position: static;
    width: 100%;
    height: auto;
    border: 0;
    margin-top: 1rem;
  }

  .form-card {
    min-height: 715px;
    padding: 0.5rem;
  }

  .footer-bottom {
    flex-direction: column;
  }
}
