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

:root {
  color-scheme: light;
  --bg: #f6f1e8;
  --paper: rgba(255, 252, 247, 0.9);
  --paper-strong: #fffdf9;
  --ink: #1a2433;
  --muted: #4e5b6b;
  --line: rgba(26, 36, 51, 0.1);
  --deep: #142235;
  --deep-2: #1c314a;
  --river: #2f8f8c;
  --sun: #c8923e;
  --clay: #b46d54;
  --mist: #edf4f2;
  --sand: #efe4d1;
  --shadow: 0 24px 70px rgba(20, 34, 53, 0.1);
  --shadow-soft: 0 14px 34px rgba(20, 34, 53, 0.08);
  --wrap: 1180px;
  --radius: 28px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Manrope, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(200, 146, 62, 0.18), transparent 24%),
    radial-gradient(circle at 85% 12%, rgba(47, 143, 140, 0.12), transparent 18%),
    linear-gradient(180deg, #f8f4ec 0%, #f6f1e8 38%, #f9f6f1 100%);
  line-height: 1.68;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.28), transparent 68%);
  opacity: 0.3;
}

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

h1, h2, h3,
.brand strong,
.mockup-screen h2,
.stat-card strong {
  font-family: Fraunces, Georgia, serif;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(18px);
  background: rgba(250, 246, 239, 0.82);
  border-bottom: 1px solid rgba(26, 36, 51, 0.08);
}

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

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

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

.brand strong {
  display: block;
  font-size: 1.08rem;
  line-height: 1;
  letter-spacing: -0.02em;
}

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

.brand-mark-image {
  width: 56px;
  height: auto;
  display: block;
  flex: 0 0 auto;
  filter: drop-shadow(0 10px 18px rgba(20, 34, 53, 0.12));
  transition: transform 0.18s ease;
}

.brand:hover .brand-mark-image,
.brand:focus-visible .brand-mark-image {
  transform: translateY(-1px);
}

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

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

.nav a::after,
.footer-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.18s ease;
  opacity: 0.55;
}

.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(--deep);
  font-weight: 700;
}

.nav .nav-phone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 4px 0 2px;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--deep);
  color: white;
  font-weight: 700;
  white-space: nowrap;
  box-shadow: var(--shadow-soft);
}

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

.nav .nav-phone:hover,
.nav .nav-phone:focus-visible {
  background: var(--deep-2);
}

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

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

.hero::before,
.page-hero::before {
  content: "";
  position: absolute;
  inset: auto -8% 24% auto;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, rgba(47, 143, 140, 0.16), rgba(47, 143, 140, 0.02) 55%, transparent 72%),
    repeating-radial-gradient(circle at center, rgba(255, 255, 255, 0.2) 0 2px, transparent 2px 18px);
  pointer-events: none;
}

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

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

.eyebrow::before {
  content: "";
  width: 38px;
  height: 1px;
  background: currentColor;
  opacity: 0.78;
}

h1 {
  font-size: clamp(3rem, 6.1vw, 5.35rem);
  line-height: 0.95;
  letter-spacing: -0.055em;
  max-width: 11ch;
  margin-bottom: 20px;
  color: var(--deep);
}

.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 {
  color: var(--muted);
}

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

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--deep), var(--deep-2) 60%, var(--river));
  color: white;
  font-weight: 800;
  box-shadow: 0 18px 44px rgba(20, 34, 53, 0.18);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.button.secondary {
  background: rgba(255, 255, 255, 0.82);
  color: var(--deep);
  border: 1px solid rgba(20, 34, 53, 0.1);
  box-shadow: none;
}

.button:hover,
.service-link-card:hover,
.feature-card:hover,
.hero-points div:hover,
.mini-grid article: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 {
  background: var(--paper);
  border: 1px solid rgba(26, 36, 51, 0.08);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

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

.hero-points div {
  border-top: 3px solid rgba(47, 143, 140, 0.32);
}

.hero-points strong,
.stat-card strong {
  display: block;
  font-size: 1.12rem;
  margin-bottom: 6px;
  color: var(--deep);
}

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

.stat-card,
.sidebar-card {
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 251, 245, 0.92));
}

.mockup-card {
  padding: 18px;
  background:
    radial-gradient(circle at top right, rgba(47, 143, 140, 0.18), transparent 25%),
    linear-gradient(180deg, rgba(20, 34, 53, 0.98), rgba(28, 49, 74, 0.98));
  color: white;
}

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

.mockup-screen {
  padding: 20px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.1);
}

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

.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: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.chip {
  background: rgba(47, 143, 140, 0.18);
  color: #d4fffb;
  margin-bottom: 16px;
}

.card-kicker {
  background: rgba(47, 143, 140, 0.12);
  color: var(--river);
  margin-bottom: 12px;
}

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

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

.muted-section {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0.6));
  border-top: 1px solid rgba(26, 36, 51, 0.05);
  border-bottom: 1px solid rgba(26, 36, 51, 0.05);
}

.band {
  background:
    radial-gradient(circle at top right, rgba(47, 143, 140, 0.16), transparent 22%),
    linear-gradient(135deg, rgba(20, 34, 53, 0.99), rgba(26, 44, 67, 0.98));
  color: white;
}

.band .section-intro p,
.band .checklist div,
.band h2,
.band .eyebrow {
  color: inherit;
}

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

.location-strip strong,
.location-strip a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(26, 36, 51, 0.08);
  box-shadow: var(--shadow-soft);
}

.location-strip a {
  color: var(--deep);
  font-weight: 700;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.location-strip a:hover,
.location-strip a:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(47, 143, 140, 0.35);
  box-shadow: var(--shadow);
}

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

.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(--deep);
}

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

.feature-card h3,
.service-link-card h3,
.mini-grid h3,
.steps-grid h3,
.faq-list h3 {
  font-size: 1.26rem;
  line-height: 1.12;
  letter-spacing: -0.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, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.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(--sun);
  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;
}

.contact-card {
  padding: 28px;
}

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

.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: 0.92rem;
  font-weight: 700;
  color: var(--deep);
}

.field input,
.field textarea,
.field select {
  width: 100%;
  border: 1px solid rgba(20, 34, 53, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
  font: inherit;
  padding: 14px 16px;
}

.field textarea {
  resize: vertical;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.form-note,
.small-note {
  font-size: 0.95rem;
  color: var(--muted);
}

.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, 253, 249, 0.98), rgba(255, 249, 242, 0.88));
}

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

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

.inner-page .page-hero {
  padding-bottom: 42px;
}

.contact-page .page-hero {
  padding-top: 72px;
}

.contact-page .split-section {
  align-items: start;
}

.site-footer {
  padding: 34px 0 46px;
  border-top: 1px solid rgba(26, 36, 51, 0.08);
  background: linear-gradient(180deg, #f1e7d6, #f6f1e8);
}

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

.footer-brand {
  max-width: 380px;
}

.footer-logo {
  display: block;
  width: min(220px, 100%);
  height: auto;
  margin-bottom: 14px;
}

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

.contact-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(20, 34, 53, 0.06);
  border: 1px solid rgba(20, 34, 53, 0.08);
  color: var(--deep);
  font-weight: 800;
}

.contact-link.strong {
  background: linear-gradient(135deg, var(--deep), var(--deep-2) 60%, var(--river));
  color: white;
  border-color: transparent;
}

.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 {
    grid-template-columns: 1fr 1fr;
  }

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

  .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: 0.72rem;
  }

  .footer-logo {
    width: min(190px, 100%);
  }

  .nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 16px;
    left: 16px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    background: rgba(255, 253, 249, 0.96);
    border: 1px solid rgba(26, 36, 51, 0.08);
    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: 60px 0;
  }

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

  .field-grid.two-col {
    grid-template-columns: 1fr;
  }

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