:root {
  --ink: #18222a;
  --muted: #5d6a70;
  --line: #d9e3e0;
  --paper: #fbfdfb;
  --mist: #eef7f2;
  --teal: #167f86;
  --green: #4f8f5b;
  --coral: #d85d52;
  --gold: #c79032;
  --navy: #24384a;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(24, 34, 42, .14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
}

a { color: inherit; text-decoration: none; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 12px clamp(16px, 3vw, 38px);
  background: rgba(251, 253, 251, .94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 220px;
}
.brand-mark {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: var(--teal);
  color: var(--white);
  font-weight: 800;
}
.brand strong, .brand small { display: block; }
.brand small { color: var(--muted); font-size: 12px; }

.site-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px;
}
.site-nav a {
  padding: 8px 10px;
  border-radius: 6px;
  color: var(--muted);
  font-size: 14px;
}
.site-nav a:hover, .site-nav a.active {
  background: var(--mist);
  color: var(--teal);
}
.header-call {
  white-space: nowrap;
  padding: 9px 12px;
  border: 1px solid var(--teal);
  border-radius: 6px;
  color: var(--teal);
  font-weight: 700;
}
.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
}
.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: 86vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding: 120px clamp(20px, 6vw, 74px) 64px;
}
.hero-image, .hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero-image { object-fit: cover; }
.hero-overlay {
  background: linear-gradient(90deg, rgba(14, 23, 28, .76) 0%, rgba(14, 23, 28, .46) 44%, rgba(14, 23, 28, .12) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
  color: var(--white);
}
.eyebrow {
  margin: 0 0 10px;
  color: var(--teal);
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
  font-size: 13px;
}
.hero .eyebrow { color: #9af1dc; }
h1, h2, h3, p { margin-top: 0; }
h1 {
  margin-bottom: 18px;
  max-width: 720px;
  font-size: clamp(42px, 7vw, 86px);
  line-height: .98;
  letter-spacing: 0;
}
h2 {
  margin-bottom: 14px;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.05;
  letter-spacing: 0;
}
h3 { margin-bottom: 8px; font-size: 20px; }
.hero-copy {
  max-width: 620px;
  font-size: 20px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 26px 0 18px;
}
.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 46px;
  padding: 12px 18px;
  border-radius: 6px;
  border: 1px solid transparent;
  font-weight: 800;
  cursor: pointer;
}
.primary { background: var(--teal); color: var(--white); }
.urgent { background: var(--coral); color: var(--white); }
.outline { border-color: var(--line); background: var(--white); color: var(--ink); }
.small { min-height: 38px; padding: 8px 12px; font-size: 14px; }
.hero-phone {
  display: inline-block;
  font-weight: 800;
  color: var(--white);
}

.band, .page-section {
  padding: 76px clamp(20px, 6vw, 74px);
}
.compact { background: var(--mist); }
.section-heading {
  max-width: 820px;
  margin-bottom: 28px;
}
.feature-grid, .service-grid, .plan-grid, .three-column, .price-grid {
  display: grid;
  gap: 16px;
}
.feature-grid {
  grid-template-columns: repeat(6, minmax(120px, 1fr));
}
.feature-grid article, .service-grid article, .plan-grid article, .three-column article, .price-grid article {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 8px 24px rgba(24, 34, 42, .06);
}
.feature-grid span {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 12px;
  border-radius: 8px;
  background: #fff3df;
  color: var(--gold);
  font-weight: 800;
}
.feature-grid h3 { font-size: 16px; margin-bottom: 0; }
.services { background: #fffaf2; }
.service-grid { grid-template-columns: repeat(3, 1fr); }
.photo-band {
  padding: 76px clamp(20px, 6vw, 74px);
  background: var(--white);
}
.photo-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.photo-grid figure {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--paper);
  box-shadow: 0 8px 24px rgba(24, 34, 42, .08);
}
.photo-grid img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}
.photo-grid figcaption {
  padding: 14px 16px;
  color: var(--muted);
  font-weight: 800;
}
.quote-band {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
}
blockquote {
  margin: 0;
  padding: 42px clamp(20px, 6vw, 74px);
  background: var(--navy);
  color: var(--white);
  font-size: 22px;
  font-weight: 700;
}
cite {
  display: block;
  margin-top: 12px;
  color: #b9d6cd;
  font-size: 15px;
  font-style: normal;
}
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: center;
}
.split p:not(.eyebrow) { font-size: 20px; color: var(--muted); }
.value-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.value-list span {
  padding: 18px;
  border-left: 4px solid var(--green);
  background: var(--white);
  box-shadow: 0 8px 24px rgba(24, 34, 42, .06);
  font-weight: 800;
}
.two-column {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .85fr);
  gap: 34px;
}
.check-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}
.check-list li {
  padding: 15px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}
.check-list li::before { content: "+ "; color: var(--green); font-weight: 900; }
.steps {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.steps li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px;
  border-radius: 8px;
  background: var(--mist);
  font-weight: 800;
}
.steps span {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--teal);
  color: var(--white);
}
.wellness { background: #f5f7fb; }
.plan-grid { grid-template-columns: repeat(3, 1fr); }
.plan-grid ul, .price-grid ul { padding-left: 18px; margin-bottom: 0; }
.featured { border-color: var(--teal) !important; box-shadow: var(--shadow) !important; }
.three-column { grid-template-columns: repeat(3, 1fr); }
.emergency {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  align-items: center;
  background: var(--coral);
  color: var(--white);
}
.emergency .eyebrow { color: #ffe4cd; }
.emergency-call {
  min-width: 260px;
  padding: 24px;
  border-radius: 8px;
  background: rgba(255,255,255,.16);
  text-align: center;
}
.emergency-call strong { font-size: 24px; }
.article-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}
.article-list a {
  min-height: 120px;
  display: flex;
  align-items: flex-end;
  padding: 18px;
  border-radius: 8px;
  background: var(--navy);
  color: var(--white);
  font-weight: 800;
}
.pricing { background: var(--mist); }
.price-grid { grid-template-columns: repeat(4, 1fr); }
.price-grid strong {
  color: var(--teal);
  font-size: 22px;
}
.center-note { text-align: center; margin-top: 22px; color: var(--muted); }
.faq-list {
  display: grid;
  gap: 10px;
  max-width: 900px;
}
details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 16px 18px;
}
summary { cursor: pointer; font-weight: 800; }
details p { margin: 10px 0 0; color: var(--muted); }
.contact {
  display: grid;
  grid-template-columns: .8fr 1fr;
  gap: 40px;
  background: #fffaf2;
}
.contact-info a { color: var(--teal); font-weight: 800; }
.contact-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.contact-form label {
  display: grid;
  gap: 7px;
  font-weight: 800;
}
.contact-form label:nth-child(5),
.contact-form label:nth-child(6),
.contact-form button,
.form-message { grid-column: 1 / -1; }
input, select {
  width: 100%;
  min-height: 46px;
  padding: 11px 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  font: inherit;
  background: var(--white);
}
.form-message { min-height: 24px; margin: 0; color: var(--green); font-weight: 800; }
.ai-assistant {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 25;
}
.ai-toggle {
  width: 56px;
  height: 56px;
  border: 0;
  border-radius: 50%;
  background: var(--teal);
  color: var(--white);
  font-weight: 900;
  box-shadow: var(--shadow);
  cursor: pointer;
}
.ai-panel {
  position: absolute;
  right: 0;
  bottom: 68px;
  width: min(280px, calc(100vw - 36px));
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}
.ai-panel .button { width: 100%; margin-top: 8px; }
.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding: 28px clamp(20px, 6vw, 74px);
  background: var(--ink);
  color: var(--white);
}

@media (max-width: 1050px) {
  .site-header { grid-template-columns: auto auto; }
  .nav-toggle { display: block; justify-self: end; }
  .site-nav {
    display: none;
    grid-column: 1 / -1;
    justify-content: flex-start;
  }
  .site-nav.open { display: flex; }
  .header-call { grid-column: 1 / -1; width: fit-content; }
  .feature-grid, .service-grid, .photo-grid, .plan-grid, .three-column, .price-grid, .article-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .two-column, .split, .contact { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
  .hero { min-height: 82vh; padding: 104px 20px 44px; }
  .hero-overlay { background: linear-gradient(180deg, rgba(14, 23, 28, .44), rgba(14, 23, 28, .78)); }
  .hero-copy { font-size: 17px; }
  .button, .hero-actions .button { width: 100%; }
  .feature-grid, .service-grid, .photo-grid, .plan-grid, .three-column, .price-grid, .article-list, .check-list, .value-list, .quote-band, .contact-form {
    grid-template-columns: 1fr;
  }
  .emergency { grid-template-columns: 1fr; }
  .emergency-call { min-width: 0; }
  .brand { min-width: 0; }
  .brand small { display: none; }
  .band, .page-section, .photo-band { padding: 56px 20px; }
  blockquote { padding: 32px 20px; }
}
