@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Manrope:wght@600;700;800&display=swap');

:root {
  color-scheme: light;
  --bg: #f4eee4;
  --bg-2: #eef3ee;
  --paper: rgba(255, 255, 255, 0.9);
  --paper-strong: #ffffff;
  --ink: #172025;
  --muted: #59666b;
  --line: rgba(47, 107, 87, 0.14);
  --line-strong: rgba(47, 107, 87, 0.24);
  --brand: #2f6b57;
  --brand-2: #7a8368;
  --brand-deep: #18332d;
  --gold: #c76e45;
  --gold-soft: #dfab8e;
  --mist: #eef3ee;
  --shadow: 0 24px 60px rgba(24, 51, 45, 0.12);
  --shadow-soft: 0 16px 34px rgba(24, 51, 45, 0.08);
  --radius: 28px;
  --wrap: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(199, 110, 69, 0.18), transparent 28%),
    radial-gradient(circle at 85% 10%, rgba(122, 131, 104, 0.16), transparent 24%),
    linear-gradient(180deg, #fbf8f2 0%, #f4eee4 42%, #eef3ee 100%);
  line-height: 1.7;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(47, 107, 87, 0.032) 1px, transparent 1px),
    linear-gradient(90deg, rgba(47, 107, 87, 0.032) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,.22), transparent 72%);
}

a { color: inherit; text-decoration: none; }
p, h1, h2, h3 { margin-top: 0; }
img { max-width: 100%; display: block; }

h1, h2, h3,
.brand strong,
.stat-card strong,
.mockup-screen h2 {
  font-family: "Manrope", Inter, ui-sans-serif, system-ui, sans-serif;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(250, 247, 241, 0.9);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}

.site-header::after {
  content: "";
  display: block;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(199, 110, 69, 0.88), transparent);
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 0 14px;
}

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

.brand-copy { min-width: 0; }

.brand strong {
  display: block;
  font-size: 1.05rem;
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: var(--brand-deep);
}

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

.brand-mark-image {
  width: 54px;
  height: auto;
  flex: 0 0 auto;
  filter: drop-shadow(0 12px 22px rgba(47, 107, 87, 0.18));
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 600;
}

.nav a,
.footer-links a {
  position: relative;
}

.nav a::after,
.footer-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--brand-2));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .18s ease;
}

.nav a:hover::after,
.footer-links a:hover::after,
.nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.nav a[aria-current="page"] {
  color: var(--brand-deep);
}

.nav .nav-phone,
.button,
.contact-link.strong {
  color: #fffaf4;
  background: linear-gradient(135deg, #d78962, var(--gold));
  border: 1px solid rgba(199, 110, 69, 0.78);
  box-shadow: 0 16px 36px rgba(199, 110, 69, 0.2);
}

.nav .nav-phone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  font-weight: 800;
  white-space: nowrap;
}

.nav .nav-phone::after { display: none; }

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.84);
  border-radius: 999px;
  padding: 10px 14px;
  font: inherit;
  color: var(--brand-deep);
}

.hero,
.page-hero {
  position: relative;
  overflow: clip;
  padding: 68px 0 48px;
}

.hero {
  background:
    radial-gradient(circle at 78% 20%, rgba(199, 110, 69, 0.2), transparent 22%),
    linear-gradient(135deg, rgba(24, 51, 45, 0.98), rgba(47, 107, 87, 0.95) 62%, rgba(122, 131, 104, 0.9) 100%);
  color: white;
}

.page-hero {
  background:
    radial-gradient(circle at top right, rgba(199, 110, 69, 0.12), transparent 20%),
    linear-gradient(180deg, rgba(238, 243, 238, 0.94), rgba(244, 238, 228, 0.84));
}

.hero::before,
.page-hero::before {
  content: "";
  position: absolute;
  inset: auto -120px -120px auto;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,.12), transparent 68%);
  pointer-events: none;
}

.hero-grid,
.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(320px, 0.94fr);
  gap: 34px;
  align-items: start;
}

.hero-grid-compact {
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
  gap: 26px;
  align-items: center;
}

.hero-main-copy {
  max-width: 640px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .76rem;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 18px;
}

.page-hero .eyebrow,
.section .eyebrow { color: var(--brand); }

.eyebrow::before {
  content: "";
  width: 34px;
  height: 2px;
  background: currentColor;
  opacity: .8;
}

h1 {
  font-size: clamp(2.7rem, 5.2vw, 4.6rem);
  line-height: .97;
  letter-spacing: -.06em;
  margin-bottom: 18px;
  max-width: 10.5ch;
}

.hero h1,
.hero .hero-copy,
.hero .lead,
.hero .hero-points span,
.hero .hero-points strong,
.hero .stat-card p,
.hero .stat-card strong,
.hero .mini-grid p,
.hero .mini-grid h3,
.hero .mockup-screen,
.hero .mockup-screen h2 {
  color: white;
}

.hero-copy,
.lead,
.section-intro p,
.sidebar-card p,
.feature-card p,
.service-link-card p,
.steps-grid p,
.faq-list p,
.mini-grid p,
.checklist div,
.bullet-list li,
.site-footer p,
.location-strip span,
.stat-card p,
.form-note,
.small-note {
  color: var(--muted);
}

.hero-copy,
.lead,
.section-intro p {
  font-size: 1.02rem;
  max-width: 63ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 22px 0 0;
}

.button,
.contact-link,
.location-strip a,
.location-strip strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.button.secondary,
.contact-link,
.location-strip a,
.location-strip strong {
  background: rgba(255,255,255,.94);
  color: var(--brand-deep);
  border: 1px solid rgba(47, 107, 87, 0.14);
  box-shadow: var(--shadow-soft);
}

.button:hover,
.button:focus-visible,
.service-link-card:hover,
.feature-card:hover,
.hero-points div:hover,
.mini-grid article:hover,
.contact-link:hover,
.location-strip a:hover {
  transform: translateY(-2px);
}

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

.hero-points div,
.stat-card,
.mockup-card,
.sidebar-card,
.feature-card,
.service-link-card,
.faq-list article,
.steps-grid article,
.mini-grid article {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.hero-points div,
.mini-grid article,
.steps-grid article,
.feature-card,
.service-link-card,
.faq-list article {
  padding: 24px;
  background: var(--paper);
}

.hero .hero-points div,
.hero .mini-grid article,
.hero .stat-card {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.14);
  box-shadow: 0 18px 40px rgba(10, 14, 36, 0.22);
}

.hero-points div {
  border-top: 3px solid rgba(199, 110, 69, 0.82);
}

.hero-points strong,
.stat-card strong {
  display: block;
  font-size: 1.08rem;
  margin-bottom: 6px;
}

.hero-panel {
  display: grid;
  gap: 14px;
}

.hero-panel-compact {
  align-content: start;
}

.hero-stat-card {
  max-width: none;
  justify-self: stretch;
  padding: 22px;
}

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

.hero-summary-grid-panel {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 0;
}

.hero-summary-grid article {
  padding: 16px 16px 14px;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.08);
  box-shadow: 0 18px 40px rgba(10, 14, 36, 0.18);
}

.hero-summary-grid-panel article {
  padding: 14px 14px 13px;
  min-height: 96px;
}

.hero-summary-grid-panel article:last-child {
  grid-column: 1 / -1;
}

.hero-summary-grid strong,
.hero-summary-grid span {
  display: block;
  color: white;
}

.hero-summary-grid strong {
  font-size: .96rem;
  line-height: 1.05;
  margin-bottom: 7px;
}

.hero-summary-grid span {
  font-size: .9rem;
  line-height: 1.4;
  color: rgba(255,255,255,.82);
}

.hero-summary-grid-panel strong {
  font-size: .9rem;
  margin-bottom: 6px;
}

.hero-summary-grid-panel span {
  font-size: .84rem;
  line-height: 1.32;
}

.stat-card,
.sidebar-card,
.contact-card {
  padding: 26px;
  background: linear-gradient(180deg, rgba(255,255,255,.98), rgba(247,244,238,.94));
}

.hero .stat-card {
  background: linear-gradient(180deg, rgba(255,255,255,.14), rgba(255,255,255,.07));
}

.mockup-card {
  padding: 18px;
  color: white;
  background:
    radial-gradient(circle at top right, rgba(199, 110, 69, 0.24), transparent 26%),
    linear-gradient(180deg, rgba(24, 51, 45, 0.99), rgba(47, 107, 87, 0.96));
}

.mockup-top {
  height: 14px;
  width: 100%;
  border-radius: 999px;
  background: rgba(255,255,255,.15);
  margin-bottom: 18px;
}

.mockup-screen {
  padding: 22px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.04));
  border: 1px solid rgba(255,255,255,.12);
}

.mockup-screen h2 {
  font-size: 1.92rem;
  line-height: 1.02;
  margin-bottom: 16px;
  max-width: 12ch;
}

.mockup-screen ul,
.bullet-list {
  margin: 0;
  padding-left: 18px;
}

.mockup-screen li,
.bullet-list li { margin: 0 0 8px; }

.chip,
.card-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.chip {
  background: rgba(199, 110, 69, .2);
  color: #fff1e6;
  margin-bottom: 16px;
}

.card-kicker {
  background: rgba(47, 107, 87, .1);
  color: var(--brand);
  margin-bottom: 12px;
}

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

.section {
  position: relative;
  padding: 84px 0;
}

.muted-section {
  background: linear-gradient(180deg, rgba(238, 243, 238, 0.82), rgba(255, 255, 255, 0.72));
  border-top: 1px solid rgba(47, 107, 87, 0.08);
  border-bottom: 1px solid rgba(47, 107, 87, 0.08);
}

.band {
  background:
    radial-gradient(circle at top right, rgba(199, 110, 69, 0.18), transparent 22%),
    linear-gradient(135deg, rgba(24, 51, 45, 0.99), rgba(47, 107, 87, 0.96));
  color: white;
}

.band .section-intro h2,
.band .section-intro p,
.band .checklist div,
.band h2,
.band h3,
.band p,
.band li,
.band strong { color: #f7fbff; }

.band .eyebrow {
  color: rgba(255,255,255,.82);
}

.band .section-intro p,
.band .checklist div,
.band li {
  color: rgba(247,251,255,.86);
}

.band .button.secondary,
.band .contact-link {
  background: rgba(255,255,255,.96);
  color: var(--brand-deep);
  border-color: rgba(255,255,255,.2);
}

.location-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 14px;
  font-size: .96rem;
}

.location-strip a,
.location-strip strong {
  min-height: 40px;
  padding: 0 14px;
}

.section-intro { margin-bottom: 32px; }

.section-intro h2,
.sidebar-card h2,
.feature-card h2,
.page-hero h1,
.faq-list h3,
.feature-card h3,
.service-link-card h3,
.mini-grid h3,
.steps-grid h3 {
  color: var(--brand-deep);
}

.section-intro h2,
.sidebar-card h2,
.feature-card h2,
.page-hero h1 {
  font-size: clamp(2.2rem, 3.4vw, 3.4rem);
  line-height: 1;
  letter-spacing: -.05em;
  margin-bottom: 14px;
}

.feature-card h3,
.service-link-card h3,
.mini-grid h3,
.steps-grid h3,
.faq-list h3 {
  font-size: 1.24rem;
  line-height: 1.14;
  letter-spacing: -.03em;
  margin-bottom: 12px;
}

.section-intro.narrow { max-width: 760px; }

.card-grid { display: grid; gap: 20px; }
.three-up { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.two-up { grid-template-columns: repeat(2, minmax(0, 1fr)); }

.checklist {
  display: grid;
  gap: 14px;
}

.checklist div {
  padding: 18px 20px;
  border-radius: 20px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
}

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

.steps-grid span {
  display: inline-block;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 12px;
}

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

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 20px;
}

.alt-card {
  background: linear-gradient(180deg, rgba(238, 243, 238, 0.98), rgba(255,255,255,0.96));
}

.contact-form {
  display: grid;
  gap: 16px;
  margin-top: 20px;
}

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

.field span {
  font-size: .92rem;
  font-weight: 700;
  color: var(--brand-deep);
}

.field input,
.field textarea,
.field select {
  width: 100%;
  border: 1px solid rgba(47, 107, 87, 0.16);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.98);
  color: var(--ink);
  font: inherit;
  padding: 14px 16px;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: 2px solid rgba(199, 110, 69, 0.22);
  border-color: rgba(47, 107, 87, 0.35);
}

.field textarea { resize: vertical; }
.form-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.contact-stack { display: grid; gap: 12px; margin: 20px 0; }

.service-link-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: linear-gradient(180deg, rgba(255,255,255,.98), rgba(238, 243, 238, .84));
}

.service-link-card span {
  margin-top: auto;
  color: var(--brand);
  font-weight: 800;
}

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

.inner-page .page-hero { padding-bottom: 44px; }
.contact-page .page-hero { padding-top: 74px; }
.contact-page .split-section { align-items: start; }

.site-footer {
  padding: 36px 0 48px;
  border-top: 1px solid rgba(255,255,255,0.08);
  background: linear-gradient(180deg, #18332d 0%, #2b5648 100%);
  color: rgba(255,255,255,.92);
}

.site-footer .small-note,
.site-footer p,
.site-footer a:not(.contact-link) { color: rgba(255,255,255,.74); }

.footer-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.footer-brand { max-width: 420px; }
.footer-logo {
  display: block;
  width: min(280px, 100%);
  height: auto;
  margin-bottom: 16px;
}

.footer-brand p { margin-bottom: 16px; }

.contact-link {
  min-height: 42px;
  padding: 0 16px;
  font-weight: 800;
}

.contact-link.strong {
  border-color: rgba(199, 110, 69, 0.88);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: flex-start;
}

@media (max-width: 1040px) {
  .hero-grid,
  .split-section,
  .three-up,
  .contact-grid,
  .service-links,
  .steps-grid,
  .two-up,
  .faq-list,
  .hero-summary-grid,
  .hero-summary-grid-panel {
    grid-template-columns: 1fr 1fr;
  }

  .hero-grid,
  .hero-grid-compact,
  .split-section {
    grid-template-columns: 1fr;
  }

  .hero-main-copy {
    max-width: none;
  }

  .hero-stat-card {
    max-width: none;
    justify-self: stretch;
  }

  .hero-summary-grid-panel article:last-child {
    grid-column: auto;
  }

  .hero-points { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .brand-mark-image { width: 48px; }
  .brand small { font-size: .72rem; }
  .footer-logo { width: min(220px, 100%); }

  .nav {
    position: absolute;
    top: calc(100% + 10px);
    right: 16px;
    left: 16px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    background: rgba(255,255,255,.98);
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: 18px;
    box-shadow: var(--shadow);
  }

  .nav.open { display: flex; }
  .nav .nav-phone { width: 100%; }

  h1 { max-width: 12ch; }

  .hero,
  .page-hero,
  .section { padding: 64px 0; }

  .mini-grid,
  .three-up,
  .two-up,
  .contact-grid,
  .service-links,
  .steps-grid,
  .faq-list,
  .hero-summary-grid,
  .hero-summary-grid-panel { grid-template-columns: 1fr; }

  .field-grid.two-col { grid-template-columns: 1fr; }
  .footer-row { flex-direction: column; }
}
