:root {
  --ink: #17211d;
  --forest: #244d3e;
  --forest-deep: #16352a;
  --clay: #b45e39;
  --sand: #f6f2eb;
  --cream: #fffdf9;
  --mist: #e3ebe4;
  --line: #d7ddd6;
  --muted: #637068;
  --shadow: 0 18px 48px rgba(21, 36, 29, .10);
  --round: 20px;
  --serif: Georgia, 'Times New Roman', serif;
  --sans: 'Aptos', 'Segoe UI', Arial, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-width: 320px;
  background: var(--sand);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
}

body.menu-open { overflow: hidden; }

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

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

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

button { cursor: pointer; }

:focus-visible {
  outline: 3px solid #c97c47;
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: -60px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: 6px;
  background: var(--cream);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.skip-link:focus { top: 16px; }

.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-shell { overflow-x: clip; }

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

.utility-bar {
  background: var(--forest-deep);
  color: #eef6ef;
  font-size: .86rem;
}

.utility-bar .container {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.utility-bar a { font-weight: 700; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid rgba(215, 221, 214, .92);
  background: rgba(255, 253, 249, .96);
  backdrop-filter: blur(12px);
}

.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.wordmark {
  display: inline-flex;
  flex-direction: column;
  gap: 0;
  flex: 0 0 auto;
  color: var(--forest-deep);
  letter-spacing: -.025em;
}

.wordmark strong {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1.05;
}

.wordmark span {
  margin-top: 2px;
  color: var(--clay);
  font-size: .64rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-left: auto;
}

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

.nav-links a {
  color: #405049;
  font-size: .93rem;
  font-weight: 700;
  white-space: nowrap;
}

.nav-links a:hover, .nav-links a[aria-current='page'] { color: var(--forest); }

.mobile-nav-call { display: none; }

.btn {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 11px 18px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: .94rem;
  font-weight: 800;
  line-height: 1.15;
  text-align: center;
  transition: transform .16s ease, background-color .16s ease, border-color .16s ease;
}

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

.btn-primary { background: var(--forest); color: #fff; }
.btn-primary:hover { background: var(--forest-deep); }

.btn-clay { background: var(--clay); color: #fff; }
.btn-clay:hover { background: #984624; }

.btn-outline { border-color: var(--forest); color: var(--forest); background: transparent; }
.btn-outline:hover { background: var(--mist); }

.btn-light { background: var(--cream); color: var(--forest-deep); }
.btn-light:hover { background: #f4ede4; }

.desktop-call-link { display: inline-flex; align-items: center; min-height: 46px; padding: 10px 0; color: var(--forest-deep); font-size: .86rem; font-weight: 850; text-decoration: underline; text-decoration-color: rgba(29,82,59,.45); text-decoration-thickness: 1px; text-underline-offset: .34em; }
.desktop-call-link:hover { color: var(--forest); text-decoration-color: currentColor; transform: translateY(-1px); }
.desktop-call-link--light { color: #fff; text-decoration-color: rgba(255,255,255,.58); }
.desktop-call-link--light:hover { color: #fff; }

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--cream);
  color: var(--forest-deep);
}

.menu-toggle > span:first-child,
.menu-toggle::before,
.menu-toggle::after {
  display: block;
  width: 19px;
  height: 2px;
  margin: 0 auto;
  border-radius: 2px;
  background: currentColor;
  content: '';
  transition: transform .18s ease, opacity .18s ease;
}

.menu-toggle::before { transform: translateY(-6px); }
.menu-toggle::after { transform: translateY(4px); }
.menu-toggle[aria-expanded='true'] > span:first-child { opacity: 0; }
.menu-toggle[aria-expanded='true']::before { transform: translateY(0) rotate(45deg); }
.menu-toggle[aria-expanded='true']::after { transform: translateY(-2px) rotate(-45deg); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 15px;
  color: var(--clay);
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 24px;
  height: 1px;
  background: currentColor;
  content: '';
}

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

h1, h2, h3 { color: var(--forest-deep); }

h1 {
  max-width: 12ch;
  margin-bottom: 22px;
  font-family: var(--serif);
  font-size: clamp(3rem, 6vw, 5.35rem);
  font-weight: 600;
  letter-spacing: -.055em;
  line-height: .98;
}

h2 {
  margin-bottom: 16px;
  font-family: var(--serif);
  font-size: clamp(2.1rem, 4vw, 3.2rem);
  font-weight: 600;
  letter-spacing: -.045em;
  line-height: 1.02;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.13rem;
  letter-spacing: -.02em;
  line-height: 1.2;
}

.lede {
  max-width: 54ch;
  margin-bottom: 28px;
  color: #4e5c55;
  font-size: clamp(1.05rem, 1.6vw, 1.22rem);
}

.hero-home {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(360px, .96fr);
  align-items: stretch;
  gap: clamp(28px, 5vw, 76px);
  padding: clamp(50px, 8vw, 100px) 0 48px;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 22px 0;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 20px; }

.hero-visual {
  min-height: 560px;
  position: relative;
  overflow: hidden;
  border-radius: var(--round);
  background: #d9d6d0;
  box-shadow: var(--shadow);
}

.hero-visual img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
  object-position: 72% 52%;
}

.hero-label {
  position: absolute;
  right: 18px;
  bottom: 18px;
  max-width: 195px;
  padding: 13px 15px;
  border: 1px solid rgba(255, 255, 255, .6);
  border-radius: 14px;
  background: rgba(22, 53, 42, .92);
  color: #fff;
  font-size: .86rem;
  font-weight: 700;
  line-height: 1.3;
}

.trust-strip {
  margin: 0 0 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--cream);
}

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

.trust-item {
  min-height: 106px;
  display: grid;
  align-content: center;
  gap: 3px;
  padding: 22px 26px;
}

.trust-item + .trust-item { border-left: 1px solid var(--line); }
.trust-item strong { color: var(--forest); font-family: var(--serif); font-size: 1.48rem; line-height: 1; }
.trust-item span { color: var(--muted); font-size: .9rem; font-weight: 650; }

.section { padding: clamp(64px, 9vw, 112px) 0; }
.section-soft { background: var(--mist); }
.section-dark { background: var(--forest-deep); color: #edf4ed; }
.section-dark h2, .section-dark h3 { color: #fff; }
.section-dark .eyebrow { color: #e9a979; }

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 30px;
  margin-bottom: 35px;
}

.section-head p { max-width: 52ch; margin: 0; color: var(--muted); }

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

.service-card {
  min-height: 216px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--cream);
  box-shadow: 0 8px 24px rgba(19, 33, 27, .04);
}

.service-card h3 { margin: 0 0 6px; }
.service-card p { margin: 0; color: #59665f; font-size: .95rem; }
.service-card a { margin-top: 14px; color: var(--forest); font-size: .9rem; font-weight: 800; }
.service-card a:hover { color: var(--clay); }

.split-feature {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(340px, 1.08fr);
  align-items: center;
  gap: clamp(32px, 7vw, 94px);
}

.split-feature.reverse { grid-template-columns: minmax(340px, 1.08fr) minmax(0, .92fr); }
.split-feature.reverse .photo-card { order: 2; }

.photo-card {
  overflow: hidden;
  border-radius: var(--round);
  background: #d8ddd7;
  box-shadow: var(--shadow);
}

.photo-card img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  object-position: center;
}

.copy-stack > *:last-child { margin-bottom: 0; }
.copy-stack p { color: #526057; }
.section-dark .copy-stack p { color: #ccdbce; }

.check-list, .simple-list {
  display: grid;
  gap: 11px;
  padding: 0;
  margin: 23px 0 29px;
  list-style: none;
}

.check-list li {
  display: grid;
  grid-template-columns: 21px minmax(0, 1fr);
  gap: 10px;
  color: #394b41;
}

.check-list li::before {
  content: '•';
  color: var(--clay);
  font-size: 1.6rem;
  line-height: .75;
}

.page-hero {
  padding: clamp(54px, 8vw, 98px) 0 clamp(54px, 8vw, 90px);
  background: var(--cream);
}

.page-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, .95fr);
  align-items: end;
  gap: clamp(28px, 7vw, 92px);
}

.page-hero h1 { margin-bottom: 0; }
.page-hero .lede { margin: 0; }

.page-tag {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 116px;
  padding: 22px;
  border-radius: 16px;
  background: var(--mist);
  color: var(--forest);
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2.4vw, 1.8rem);
  line-height: 1.12;
  text-align: center;
}

.editorial-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, .8fr);
  gap: 20px;
}

.editorial-image {
  min-height: 520px;
  overflow: hidden;
  border-radius: var(--round);
}

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

.info-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
  padding: clamp(28px, 4vw, 48px);
  border-radius: var(--round);
  background: var(--forest);
  color: #edf5ee;
}

.info-card h2 { color: #fff; }
.info-card p { color: #cfdfd1; }
.info-card .btn { align-self: flex-start; }

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

.detail-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--cream);
}

.detail-card p { margin: 0; color: var(--muted); }

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

.step { padding: 0 4px; }
.step-number { display: inline-flex; align-items: center; justify-content: center; width: 34px; height: 34px; margin-bottom: 14px; border-radius: 50%; background: #e5a373; color: var(--forest-deep); font-size: .82rem; font-weight: 900; }
.step p { margin: 0; color: #ccdbce; }

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, .84fr) minmax(380px, 1.16fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: start;
}

.contact-stack { display: grid; gap: 16px; }

.contact-card {
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--cream);
}

.contact-card small { display: block; margin-bottom: 4px; color: var(--clay); font-size: .73rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.contact-card strong { display: block; color: var(--forest-deep); font-size: 1.05rem; line-height: 1.3; }
.contact-card p { margin: 8px 0 0; color: var(--muted); }
.contact-card a { color: var(--forest); font-weight: 800; }

.hours { width: 100%; border-collapse: collapse; margin-top: 11px; color: #4d5d54; font-size: .95rem; }
.hours td { padding: 7px 0; border-bottom: 1px solid #e8ece7; }
.hours td:last-child { text-align: right; font-weight: 750; }

.request-panel {
  padding: clamp(26px, 4vw, 46px);
  border-radius: var(--round);
  background: var(--forest-deep);
  color: #ebf4ec;
  box-shadow: var(--shadow);
}

.request-panel h2 { color: #fff; }
.request-panel > p { color: #c9dbcc; }

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

.form-field { display: grid; gap: 7px; }
.form-field.full { grid-column: 1 / -1; }

label { color: #eff6f0; font-size: .9rem; font-weight: 800; }

input, select, textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  border: 1px solid rgba(226, 238, 228, .46);
  border-radius: 9px;
  outline: none;
  background: #fbfdf9;
  color: var(--ink);
}

textarea { min-height: 120px; resize: vertical; }
input:focus, select:focus, textarea:focus { border-color: #e7a06e; box-shadow: 0 0 0 3px rgba(231, 160, 110, .25); }

.form-submit { margin-top: 20px; }

.form-status {
  margin-top: 16px;
  padding: 15px;
  border: 1px solid rgba(231, 160, 110, .6);
  border-radius: 10px;
  background: rgba(255, 255, 255, .08);
  color: #fff;
  font-weight: 700;
}

[hidden] { display: none !important; }

.location-band { background: var(--mist); }

.location-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, .9fr);
  gap: 30px;
  align-items: center;
}

.direction-box {
  padding: 28px;
  border: 1px solid #cbd8ce;
  border-radius: 16px;
  background: var(--cream);
}

.direction-box strong { color: var(--forest); font-family: var(--serif); font-size: 1.45rem; }
.direction-box p { margin: 8px 0 20px; color: var(--muted); }

.site-footer { padding: 52px 0 88px; background: #132a21; color: #d9e7db; }

.footer-grid {
  display: grid;
  grid-template-columns: minmax(200px, 1.25fr) repeat(2, minmax(150px, .7fr));
  gap: 40px;
}

.footer-brand { color: #fff; }
.footer-brand strong { color: #fff; }
.footer-brand p { max-width: 30ch; margin: 13px 0 0; color: #b7cabe; }
.footer-col h3 { color: #fff; font-size: .88rem; letter-spacing: .08em; text-transform: uppercase; }
.footer-col a { display: block; margin: 9px 0; color: #c7d9cb; font-size: .93rem; }
.footer-col a:hover { color: #fff; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 39px;
  padding-top: 18px;
  border-top: 1px solid rgba(218, 235, 220, .18);
  color: #a9bfae;
  font-size: .82rem;
}

.mobile-actions { display: none; }

@media (max-width: 980px) {
  .site-nav { gap: 14px; }
  .nav-links { gap: 13px; }
  .header-cta { padding-inline: 14px; }
  .service-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hero-home { grid-template-columns: minmax(0, 1fr) minmax(310px, .78fr); gap: 34px; }
  .hero-visual { min-height: 510px; }
}

@media (max-width: 780px) {
  body { padding-bottom: 72px; }
  .container { width: min(100% - 34px, 1160px); }
  .utility-bar .container { justify-content: center; min-height: 35px; }
  .utility-bar .location-utility { display: none; }
  .header-inner { min-height: 68px; }
  .site-nav { margin-left: 0; }
  .menu-toggle { display: inline-block; }
  .header-cta { display: none; }
  .nav-links {
    position: absolute;
    top: 68px;
    right: 0;
    left: 0;
    display: grid;
    gap: 2px;
    padding: 16px 17px 21px;
    border-bottom: 1px solid var(--line);
    background: var(--cream);
    box-shadow: 0 16px 28px rgba(14, 36, 26, .12);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity .17s ease, transform .17s ease;
  }
  .nav-links.is-open { opacity: 1; pointer-events: auto; transform: translateY(0); }
  .nav-links a { padding: 13px 4px; border-bottom: 1px solid #e6eae5; font-size: 1rem; }
  .nav-links .mobile-nav-call { display: inline-flex; margin-top: 12px; padding: 13px 18px; border-radius: 999px; background: var(--forest); color: #fff; justify-content: center; }
  .hero-home, .page-hero-inner, .split-feature, .split-feature.reverse, .contact-grid, .location-inner { grid-template-columns: 1fr; }
  .hero-home { padding: 48px 0 38px; gap: 28px; }
  .hero-copy { padding: 0; }
  .hero-visual { min-height: 470px; order: 2; }
  .hero-label { right: 14px; bottom: 14px; }
  .trust-grid, .steps { grid-template-columns: 1fr; }
  .trust-item { min-height: 0; padding: 17px 5px; }
  .trust-item + .trust-item { border-top: 1px solid var(--line); border-left: 0; }
  .section-head { display: block; margin-bottom: 28px; }
  .section-head h2 { margin-bottom: 13px; }
  .split-feature.reverse .photo-card { order: 0; }
  .photo-card img { min-height: 340px; }
  .page-hero { padding: 58px 0 56px; }
  .page-hero-inner { gap: 25px; }
  .page-tag { min-height: 0; padding: 17px 20px; justify-content: flex-start; text-align: left; }
  .editorial-grid, .two-col { grid-template-columns: 1fr; }
  .editorial-image { min-height: 400px; }
  .info-card { min-height: 310px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 27px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { display: block; }
  .footer-bottom span { display: block; margin-bottom: 6px; }
  .mobile-actions {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 45;
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-top: 1px solid rgba(19, 42, 33, .22);
    background: var(--cream);
    box-shadow: 0 -8px 20px rgba(15, 39, 28, .09);
  }
  .mobile-actions a { min-height: 61px; display: grid; place-items: center; color: var(--forest-deep); font-size: .91rem; font-weight: 900; }
  .mobile-actions a + a { border-left: 1px solid var(--line); background: var(--forest); color: #fff; }
  .contact-page .mobile-actions { display: none; }
}

@media (max-width: 560px) {
  h1 { font-size: clamp(2.65rem, 13vw, 3.65rem); }
  .lede { font-size: 1.03rem; }
  .hero-actions { display: grid; grid-template-columns: 1fr; }
  .hero-actions .btn, .hero-actions .desktop-call-link { width: 100%; }
  .hero-visual { min-height: 440px; }
  .hero-visual img { object-position: 69% 52%; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 0; padding: 23px; }
  .photo-card img { min-height: 300px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-field.full { grid-column: auto; }
  .contact-card, .detail-card, .direction-box { padding: 22px; }
  .request-panel { padding: 26px 21px; }
  .request-panel { padding-bottom: 98px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}
/* Desktop phone numbers remain readable text; mobile restores tap-to-call. */
@media (min-width: 781px) {
  a[data-phone-desktop="true"] {
    display: inline !important;
    color: inherit !important;
    background: transparent !important;
    border: 0 !important;
    border-color: transparent !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    font: inherit !important;
    letter-spacing: inherit !important;
    line-height: inherit !important;
    text-decoration: none !important;
    text-transform: none !important;
    padding: 0 !important;
    min-width: 0 !important;
    min-height: 0 !important;
    pointer-events: none !important;
    cursor: default !important;
  }
  a[data-phone-desktop="true"]::before,
  a[data-phone-desktop="true"]::after,
  a[data-phone-desktop="true"] [aria-hidden="true"] {
    content: none !important;
    display: none !important;
  }
}

/* Small-screen polish: make the pale header feel anchored and preserve comfortable text widths. */
.site-header { box-shadow: 0 4px 18px rgba(14, 36, 26, .07); }
@media (max-width: 780px) {
  .menu-toggle {
    border-color: rgba(22, 53, 42, .24);
    background: var(--mist);
    box-shadow: 0 2px 8px rgba(14, 36, 26, .06);
  }
  .nav-links a,
  .footer-grid > * { min-width: 0; }
  .nav-links a,
  .footer-col a,
  .footer-col p { overflow-wrap: anywhere; }
}
@media (max-width: 390px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-grid > * { grid-column: auto; }
  .mobile-actions a { min-width: 0; padding-inline: 8px; font-size: .82rem; }
}
