:root {
  --font-display: "Bodoni Moda", Georgia, serif;
  --font-body: "Segoe UI", Arial, sans-serif;
  --green: #4b5239;
  --green-deep: #303522;
  --green-soft: #e3e7d8;
  --tan: #c69a76;
  --tan-deep: #9c6d4d;
  --cream: #fffaf3;
  --sand: #f3eadc;
  --white: #ffffff;
  --ink: #151512;
  --muted: #625f55;
  --border: #ddd1bf;
  --shadow: 0 14px 35px rgba(21, 21, 18, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--font-body);
  line-height: 1.6;
}

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

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

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

h1,
h2,
h3 {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  font-size: 4.2rem;
}

h2 {
  font-size: 3.25rem;
}

h3 {
  font-size: 1.34rem;
}

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

.narrow {
  width: min(850px, calc(100% - 32px));
}

.center {
  text-align: center;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 10000;
  padding: 10px 14px;
  background: var(--green);
  color: var(--white);
  transform: translateY(-150%);
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: background 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
  border-bottom: 1px solid transparent;
}

.site-header.scrolled,
.site-header.menu-open {
  background: rgba(255, 250, 243, 0.96);
  border-color: rgba(75, 82, 57, 0.18);
  box-shadow: 0 10px 30px rgba(21, 21, 18, 0.08);
  backdrop-filter: blur(14px);
}

.nav-wrap {
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-weight: 800;
  font-size: 1.22rem;
}

.site-header.scrolled .brand,
.site-header.menu-open .brand {
  color: var(--green-deep);
}

.brand-mark {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  background: rgba(255, 250, 243, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 8px;
  overflow: hidden;
}

.brand-mark img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

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

.nav-links > a,
.nav-dropdown > button,
.phone-link {
  color: rgba(255, 255, 255, 0.92);
  font: inherit;
  font-size: 0.95rem;
  font-weight: 650;
  padding: 10px 12px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.site-header.scrolled .nav-links > a,
.site-header.scrolled .nav-dropdown > button,
.site-header.scrolled .phone-link,
.site-header.menu-open .nav-links > a,
.site-header.menu-open .nav-dropdown > button,
.site-header.menu-open .phone-link {
  color: var(--green-deep);
}

.nav-links a:hover,
.nav-dropdown > button:hover,
.phone-link:hover {
  color: var(--tan);
}

.nav-dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 245px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: var(--shadow);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: 180ms ease;
}

.dropdown-menu a {
  display: block;
  padding: 10px 12px;
  color: var(--ink);
  font-size: 0.92rem;
  border-radius: 6px;
}

.dropdown-menu a:hover {
  background: var(--sand);
  color: var(--green);
}

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--white);
}

.site-header.scrolled .menu-toggle,
.site-header.menu-open .menu-toggle {
  border-color: var(--border);
  background: var(--white);
}

.site-header.scrolled .menu-toggle span,
.site-header.menu-open .menu-toggle span {
  background: var(--green-deep);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border-radius: 8px;
  border: 2px solid transparent;
  font-weight: 800;
  line-height: 1.1;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
}

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

.btn-small {
  min-height: 40px;
  padding: 9px 14px;
  background: var(--tan);
  color: var(--ink);
}

.btn-primary {
  background: var(--green);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--green-deep);
}

.btn-light {
  background: var(--cream);
  color: var(--green-deep);
}

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

.btn-outline-light:hover {
  background: var(--white);
  color: var(--green-deep);
}

.btn-outline-dark {
  border-color: var(--green);
  color: var(--green-deep);
}

.btn-outline-dark:hover {
  background: var(--green);
  color: var(--white);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 26px;
}

.button-row.centered {
  justify-content: center;
}

.home-hero,
.sub-hero {
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}

.home-hero {
  min-height: 78svh;
  padding-top: 78px;
}

.sub-hero {
  min-height: 430px;
  padding-top: 78px;
}

.hero-media,
.hero-media img,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  z-index: -1;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 38%;
}

.hero-overlay {
  background: linear-gradient(90deg, rgba(21, 21, 18, 0.76), rgba(48, 53, 34, 0.58), rgba(21, 21, 18, 0.35));
}

.hero-content {
  padding: 92px 0 76px;
}

.home-hero .hero-content {
  padding: 70px 0 34px;
}

.home-content {
  max-width: 850px;
  margin-left: max(16px, calc((100vw - 1180px) / 2));
}

.hero-kicker,
.eyebrow {
  margin: 0 0 14px;
  color: var(--tan);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-content h1,
.hero-content p,
.breadcrumbs,
.breadcrumbs a,
.breadcrumbs strong {
  color: var(--white);
}

.hero-content > p:not(.hero-kicker) {
  max-width: 760px;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.05rem, 2vw, 1.26rem);
}

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

.breadcrumbs span {
  color: rgba(255, 255, 255, 0.54);
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 28px;
}

.hero-stats div {
  min-width: 128px;
  padding: 13px 16px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.11);
  backdrop-filter: blur(10px);
}

.hero-stats strong,
.hero-stats span {
  display: block;
  color: var(--white);
}

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

.hero-stats span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.78rem;
  font-weight: 750;
  text-transform: uppercase;
}

.info-bar {
  background: var(--green);
  color: var(--white);
}

.info-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.8fr 1.3fr 1fr;
  gap: 18px;
  padding: 16px 0;
  align-items: center;
}

.info-grid a,
.info-grid p {
  margin: 0;
  color: var(--white);
  font-weight: 700;
}

.info-grid span {
  display: block;
  margin-bottom: 2px;
  color: var(--tan);
  font-size: 0.72rem;
  text-transform: uppercase;
  font-weight: 900;
}

.section {
  padding: clamp(66px, 9vw, 112px) 0;
}

.section-muted {
  background: var(--sand);
}

.map-section {
  background:
    linear-gradient(135deg, rgba(242, 229, 207, 0.92), rgba(255, 250, 243, 0.96)),
    var(--cream);
}

.accent-section {
  background: var(--green-deep);
}

.accent-section h2,
.accent-section h3,
.accent-section p {
  color: var(--white);
}

.accent-section .eyebrow {
  color: var(--tan);
}

.section-heading {
  max-width: 780px;
  margin: 0 auto 42px;
}

.section-heading p:not(.eyebrow) {
  margin-top: 14px;
  font-size: 1.05rem;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
  gap: clamp(32px, 6vw, 74px);
  align-items: center;
}

.split.reverse {
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1fr);
}

.split.reverse > :first-child {
  order: 2;
}

.split.reverse > :last-child {
  order: 1;
}

.check-list {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.check-list p {
  display: flex;
  gap: 12px;
  margin: 0;
  color: var(--ink);
  font-weight: 700;
}

.check-list span {
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
  margin-top: 4px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: inset 0 0 0 5px var(--green-soft);
}

.image-stack {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 16px;
  align-items: end;
}

.image-stack > div,
.framed-image,
.service-image,
.gallery-item,
.map-frame {
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--white);
  box-shadow: var(--shadow);
}

.image-stack > div:first-child {
  aspect-ratio: 4 / 5;
}

.image-stack > div:last-child {
  aspect-ratio: 3 / 4;
  transform: translateY(28px);
}

.image-stack img,
.framed-image img,
.service-image img,
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.framed-image {
  aspect-ratio: 4 / 5;
}

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

.service-card,
.value-grid article,
.mini-card {
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 22px rgba(21, 21, 18, 0.07);
  overflow: hidden;
}

.service-image {
  display: block;
  aspect-ratio: 4 / 3;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.service-copy {
  padding: 22px;
}

.service-copy h3 {
  margin-bottom: 10px;
}

.service-copy p {
  font-size: 0.96rem;
}

.text-link {
  display: inline-flex;
  margin-top: 8px;
  color: var(--green);
  font-weight: 850;
}

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

.feature-grid div {
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.value-grid article,
.mini-card {
  padding: 24px;
}

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

.gallery-item {
  aspect-ratio: 4 / 3;
}

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

.process-grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.process-grid div {
  padding: 24px;
  border-left: 3px solid var(--tan);
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 10px 22px rgba(21, 21, 18, 0.07);
}

.process-grid span {
  color: var(--tan-deep);
  font-weight: 900;
}

.process-grid h3 {
  margin: 10px 0 8px;
}

.stat-band {
  padding: 42px 0;
  background: var(--green);
}

.stats-four {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  text-align: center;
}

.stats-four strong,
.stats-four span {
  display: block;
  color: var(--white);
}

.stats-four strong {
  font-size: 2rem;
}

.stats-four span {
  color: rgba(255, 255, 255, 0.76);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.78rem;
}

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

.feature-list li {
  padding: 16px 18px;
  border-radius: 8px;
  background: var(--white);
  border: 1px solid var(--border);
  font-weight: 750;
}

.faq-list {
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--white);
  overflow: hidden;
  box-shadow: 0 10px 22px rgba(21, 21, 18, 0.07);
}

.faq-list details {
  border-bottom: 1px solid var(--border);
  padding: 0 22px;
}

.faq-list details:last-child {
  border-bottom: 0;
}

.faq-list summary {
  cursor: pointer;
  padding: 20px 0;
  font-weight: 850;
  color: var(--ink);
}

.faq-list p {
  padding-bottom: 20px;
}

.cta-band {
  background: var(--green);
}

.cta-band h2,
.cta-band p {
  color: var(--white);
}

.cta-band p {
  max-width: 720px;
  margin: 16px auto 0;
}

.quote-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
  gap: 28px;
  align-items: start;
}

.quote-embed {
  position: relative;
  height: auto;
  min-height: 681px;
  overflow: visible;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--white);
  box-shadow: var(--shadow);
}

.quote-loading {
  position: absolute;
  z-index: 3;
  top: 22px;
  left: 18px;
  right: 18px;
  padding: 12px 16px;
  border-radius: 8px;
  background: rgba(255, 250, 243, 0.94);
  color: var(--green-deep);
  font-weight: 850;
  text-align: center;
  pointer-events: none;
}

.quote-embed.form-ready .quote-loading {
  display: none;
}

.quote-embed iframe {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 681px;
  min-height: 681px;
  border-radius: 8px;
}

.form-fallback {
  margin: 10px 0 0;
  font-size: 0.9rem;
  text-align: center;
}

.form-fallback a {
  color: var(--green);
  font-weight: 850;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact-panel {
  padding: 26px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--white);
  box-shadow: 0 10px 22px rgba(21, 21, 18, 0.07);
}

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

.contact-list li {
  display: grid;
  gap: 2px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}

.contact-list span {
  color: var(--tan-deep);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-list a,
.contact-list strong {
  color: var(--ink);
  font-weight: 800;
}

.panel-actions {
  display: grid;
  gap: 10px;
}

.hours-table {
  margin: 24px 0;
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}

.hours-table div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 16px;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

.hours-table div:last-child {
  border-bottom: 0;
}

.map-frame {
  aspect-ratio: 4 / 3;
}

.map-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.map-showcase {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1.18fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}

.map-copy {
  max-width: 560px;
}

.location-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0 0;
}

.location-pills span {
  padding: 9px 12px;
  border: 1px solid rgba(75, 82, 57, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.68);
  color: var(--green-deep);
  font-size: 0.86rem;
  font-weight: 850;
}

.compact-hours {
  max-width: 520px;
  margin: 24px 0;
}

.compact-hours div {
  padding: 11px 14px;
}

.map-shell {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border: 1px solid rgba(75, 82, 57, 0.22);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 24px 60px rgba(21, 21, 18, 0.16);
}

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

.map-caption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px 16px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 8px;
  background: rgba(255, 250, 243, 0.94);
  box-shadow: 0 16px 34px rgba(21, 21, 18, 0.12);
}

.map-caption strong {
  color: var(--ink);
}

.map-caption span {
  color: var(--green-deep);
  font-weight: 750;
}

.site-footer {
  background: var(--ink);
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 0.8fr 1fr;
  gap: 36px;
  padding: 58px 0 38px;
}

.footer-logo {
  width: 210px;
  height: auto;
  margin-bottom: 18px;
  background: rgba(255, 250, 243, 0.94);
  border-radius: 8px;
  padding: 8px;
}

.site-footer h3 {
  margin-bottom: 14px;
  color: var(--tan);
  font-size: 0.9rem;
  text-transform: uppercase;
}

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

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

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

.footer-bottom {
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom p {
  margin: 0;
  font-size: 0.9rem;
}

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

  h2 {
    font-size: 2.65rem;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links,
  .nav-actions {
    display: none;
  }

  .site-header.menu-open .nav-links {
    position: absolute;
    display: grid;
    left: 16px;
    right: 16px;
    top: 86px;
    gap: 4px;
    padding: 16px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: var(--cream);
    box-shadow: var(--shadow);
  }

  .site-header.menu-open .nav-actions {
    position: absolute;
    left: 32px;
    right: 32px;
    top: 346px;
    display: flex;
    justify-content: space-between;
    padding-top: 12px;
    border-top: 1px solid var(--border);
  }

  .nav-dropdown > button {
    width: 100%;
    text-align: left;
  }

  .dropdown-menu {
    position: static;
    display: grid;
    min-width: 0;
    margin: 4px 0 8px;
    padding: 4px;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
  }

  .info-grid,
  .split,
  .split.reverse,
  .map-showcase,
  .quote-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .split.reverse > :first-child,
  .split.reverse > :last-child {
    order: initial;
  }

  .service-grid,
  .gallery-grid,
  .process-grid,
  .process-grid.three,
  .stats-four {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-content {
    margin-left: auto;
  }
}

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

  h2 {
    font-size: 2.15rem;
  }

  h3 {
    font-size: 1.24rem;
  }

  .container {
    width: min(100% - 24px, 1180px);
  }

  .home-hero {
    min-height: 82svh;
  }

  .hero-content {
    padding: 72px 0 52px;
  }

  .home-hero .hero-content {
    padding: 44px 0 22px;
  }

  .button-row,
  .button-row.centered {
    align-items: stretch;
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .hero-stats,
  .image-stack,
  .service-grid,
  .feature-grid,
  .value-grid,
  .gallery-grid,
  .process-grid,
  .process-grid.three,
  .stats-four,
  .related-grid {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    display: none;
  }

  .hero-stats div {
    width: 100%;
  }

  .image-stack > div:last-child {
    transform: none;
  }

  .info-grid {
    gap: 10px;
  }

  .quote-embed {
    min-height: 720px;
  }

  .quote-embed iframe {
    height: 720px;
    min-height: 720px;
  }

  .map-shell,
  .map-shell iframe {
    min-height: 390px;
  }

  .map-caption {
    position: static;
    border-radius: 0;
    border-left: 0;
    border-right: 0;
    border-bottom: 0;
  }

  .location-pills {
    display: grid;
  }

  .hours-table div {
    display: grid;
  }

  .brand span:last-child {
    font-size: 1rem;
  }
}
