:root {
  color-scheme: light;
  --ink: #17201d;
  --muted: #5c6863;
  --line: #dbe4df;
  --bg: #f7faf8;
  --panel: #ffffff;
  --teal: #0f766e;
  --teal-dark: #0b4f4a;
  --amber: #f59e0b;
  --red: #b42318;
  --blue: #1d4ed8;
  --shadow: 0 18px 50px rgba(23, 32, 29, 0.12);
}

* {
  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: var(--bg);
  line-height: 1.6;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 46px;
  height: 42px;
  color: #fff;
  font-weight: 800;
  background: var(--teal);
  border-radius: 8px;
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  color: var(--muted);
  font-size: 12px;
}

nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-size: 15px;
}

nav a:hover {
  color: var(--teal-dark);
}

.header-call,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 18px;
  font-weight: 800;
  border-radius: 8px;
}

.header-call,
.button.primary {
  color: #fff;
  background: var(--red);
}

.button.secondary {
  color: var(--teal-dark);
  background: #d9f2ee;
}

.button.ghost {
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
  gap: clamp(24px, 5vw, 68px);
  align-items: center;
  min-height: calc(100vh - 72px);
  padding: clamp(56px, 8vw, 110px) clamp(18px, 4vw, 56px) 72px;
  background:
    linear-gradient(135deg, rgba(15, 118, 110, 0.12), rgba(245, 158, 11, 0.08)),
    var(--bg);
}

.hero-content {
  max-width: 780px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--teal-dark);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: clamp(42px, 7vw, 82px);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 21px;
}

.hero-copy {
  max-width: 690px;
  color: #33413c;
  font-size: clamp(17px, 2vw, 21px);
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0;
}

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.trust-list li {
  padding: 9px 12px;
  color: var(--teal-dark);
  font-weight: 800;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.promise-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  background: #fff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.promise-item {
  display: grid;
  gap: 4px;
  padding: 22px;
  background: #f7faf8;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.promise-item strong {
  color: var(--teal-dark);
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.1;
}

.promise-item span {
  color: var(--muted);
  font-weight: 800;
}

.service-panel {
  display: grid;
  gap: 14px;
  padding: 26px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.service-panel strong {
  display: block;
  font-size: 28px;
  line-height: 1.1;
}

.service-panel span,
.service-panel p {
  display: block;
  margin: 0;
  color: var(--muted);
}

.service-panel a {
  color: var(--red);
  font-weight: 900;
}

.section,
.contact-section {
  padding: 76px clamp(18px, 4vw, 56px);
}

.intro {
  display: grid;
  grid-template-columns: minmax(240px, 0.8fr) minmax(280px, 1.2fr);
  gap: 34px;
  background: #fff;
}

.intro p:last-child,
.areas > p {
  color: var(--muted);
  font-size: 18px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 26px;
}

.quick-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: -8px 0 26px;
}

.quick-links a {
  padding: 10px 13px;
  color: var(--teal-dark);
  font-weight: 900;
  background: #eef7f4;
  border: 1px solid #cce6df;
  border-radius: 8px;
}

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

article,
blockquote {
  margin: 0;
  padding: 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

article p,
blockquote p,
details p {
  color: var(--muted);
}

.why-section {
  background: #fff;
}

.why-grid article {
  background: #f7faf8;
}

.problem-band {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  color: #fff;
  background: var(--teal-dark);
}

.problem-band .eyebrow,
.problem-band h2 {
  color: #fff;
}

.symptom-tags,
.problem-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.symptom-tags span,
.problem-list span {
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  color: var(--teal-dark);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.25;
  background: #f3f6fb;
  border: 1px solid #dde6f2;
  border-radius: 999px;
}

.areas {
  background: #fff;
}

.appointment-section {
  background: #fff;
}

.appointment-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  max-width: 980px;
  padding: 22px;
  background: #f7faf8;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.appointment-form label {
  display: grid;
  gap: 7px;
  color: var(--teal-dark);
  font-size: 14px;
  font-weight: 900;
}

.appointment-form input,
.appointment-form select,
.appointment-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  color: var(--ink);
  font: inherit;
  background: #fff;
  border: 1px solid #cfdad5;
  border-radius: 8px;
  outline: none;
}

.appointment-form textarea {
  resize: vertical;
}

.appointment-form input:focus,
.appointment-form select:focus,
.appointment-form textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(15, 118, 110, 0.14);
}

.appointment-form .full {
  grid-column: 1 / -1;
}

.area-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 26px;
}

.area-grid a {
  display: grid;
  gap: 8px;
  padding: 18px;
  color: var(--teal-dark);
  font-weight: 900;
  background: #eef7f4;
  border: 1px solid #cce6df;
  border-radius: 8px;
}

.area-grid a span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.45;
}

.reviews {
  background: #f0f5f2;
}

blockquote {
  display: grid;
  gap: 16px;
}

cite {
  color: var(--teal-dark);
  font-style: normal;
  font-weight: 900;
}

.faq {
  background: #fff;
}

details {
  max-width: 960px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

summary {
  cursor: pointer;
  font-size: 19px;
  font-weight: 900;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) auto;
  gap: 28px;
  align-items: center;
  color: #fff;
  background: #20312c;
}

.contact-section .eyebrow,
.contact-section p {
  color: #d8e9e2;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1.1fr);
  gap: 24px;
  padding: 24px clamp(18px, 4vw, 56px) 90px;
  color: var(--muted);
  background: #fff;
  border-top: 1px solid var(--line);
}

.site-footer p {
  margin: 0;
}

.footer-summary {
  display: grid;
  gap: 10px;
  align-content: start;
}

.footer-summary a {
  color: var(--teal-dark);
  font-weight: 900;
}

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

.business-info div {
  display: grid;
  gap: 2px;
}

.business-info dt {
  color: var(--teal-dark);
  font-size: 13px;
  font-weight: 900;
}

.business-info dd {
  margin: 0;
  color: var(--muted);
}

.business-info a {
  color: inherit;
}

.legal-page {
  max-width: 980px;
  min-height: 62vh;
  background: #fff;
}

.legal-page p {
  color: var(--muted);
  font-size: 18px;
}

.mobile-cta {
  position: fixed;
  right: 14px;
  bottom: 14px;
  left: 14px;
  z-index: 30;
  display: none;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.mobile-cta a {
  display: grid;
  min-height: 48px;
  place-items: center;
  color: #fff;
  font-weight: 900;
  background: var(--red);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.mobile-cta a + a {
  background: var(--teal);
}

.mobile-cta a:nth-child(2) {
  background: var(--blue);
}

@media (max-width: 980px) {
  nav {
    display: none;
  }

  .hero,
  .intro,
  .problem-band,
  .contact-section,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .why-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .promise-band {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .review-grid,
  .why-grid,
  .area-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 620px) {
  .site-header {
    padding: 10px 14px;
  }

  .brand {
    gap: 8px;
  }

  .brand-mark {
    width: 40px;
    height: 38px;
  }

  .brand small {
    font-size: 11px;
  }

  .header-call {
    display: none;
  }

  .hero {
    min-height: auto;
    gap: 18px;
    padding: 24px 16px 28px;
  }

  h1 {
    margin-bottom: 10px;
    font-size: 36px;
    line-height: 1.02;
  }

  h2 {
    margin-bottom: 10px;
    font-size: 28px;
  }

  h3 {
    font-size: 19px;
  }

  p {
    margin-bottom: 12px;
  }

  .hero-copy {
    font-size: 17px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin: 16px 0 14px;
  }

  .trust-list,
  .symptom-tags,
  .problem-list {
    gap: 8px;
  }

  .trust-list li,
  .symptom-tags span,
  .problem-list span {
    padding: 8px 11px;
    font-size: 13px;
  }

  .service-panel {
    gap: 10px;
    padding: 16px;
  }

  .service-panel strong {
    font-size: 22px;
  }

  .promise-item,
  article,
  blockquote {
    padding: 16px;
  }

  .service-grid,
  .why-grid {
    grid-template-columns: 1fr;
  }

  .promise-band,
  .appointment-form {
    grid-template-columns: 1fr;
  }

  .intro {
    gap: 18px;
  }

  .promise-band,
  .problem-band,
  .contact-section {
    gap: 16px;
  }

  .appointment-form {
    padding: 16px;
    gap: 12px;
  }

  .section,
  .contact-section {
    padding: 32px 16px;
  }

  .section-heading {
    margin-bottom: 18px;
  }

  .quick-links {
    gap: 8px;
    margin: -4px 0 18px;
  }

  .quick-links a {
    padding: 8px 10px;
    font-size: 14px;
  }

  .service-grid,
  .review-grid,
  .why-grid {
    gap: 12px;
  }

  .area-grid {
    gap: 10px;
    margin-top: 18px;
  }

  .area-grid a {
    padding: 14px;
  }

  details {
    padding: 14px 0;
  }

  summary {
    font-size: 17px;
  }

  .business-info {
    grid-template-columns: 1fr;
  }

  .site-footer {
    gap: 18px;
    padding: 22px 16px 76px;
  }

  .mobile-cta {
    display: grid;
    right: 10px;
    bottom: 10px;
    left: 10px;
    gap: 8px;
  }

  .mobile-cta a {
    min-height: 44px;
    font-size: 14px;
  }
}
