:root {
  --ink: #111719;
  --ink-soft: #182124;
  --paper: #ffffff;
  --paper-warm: #f6f4f1;
  --line: #d8dcda;
  --muted: #5e686b;
  --copper: #bd6f49;
  --copper-dark: #9a5535;
  --shadow: 0 20px 55px rgba(4, 13, 16, 0.19);
  --serif: "Libre Caslon Display", Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;
  color-scheme: light;
  scroll-behavior: smooth;
}

* { box-sizing: border-box; }

html { scroll-padding-top: 82px; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

.svg-defs { position: absolute; width: 0; height: 0; overflow: hidden; }

.site-header {
  position: relative;
  z-index: 20;
  width: 100%;
  color: #fff;
  background: rgba(17, 23, 25, 0.98);
  border-bottom: 1px solid rgba(255,255,255,.18);
}

.header-inner {
  min-height: 78px;
  max-width: 1380px;
  margin: 0 auto;
  padding: 12px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #fff;
  text-decoration: none;
}

.brand-mark {
  font-family: var(--serif);
  font-size: 2.35rem;
  line-height: 1;
  letter-spacing: -.08em;
}

.brand-copy { display: flex; flex-direction: column; line-height: 1.15; }
.brand-copy strong { font-family: var(--serif); font-weight: 400; font-size: 1.08rem; }
.brand-copy small { margin-top: 4px; color: #bcc3c1; font-size: .72rem; }

.header-actions, .header-phone, .hero-actions, .final-cta-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.header-phone { color: #fff; font-weight: 700; text-decoration: none; }
.header-phone svg, .button svg { width: 19px; height: 19px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.mobile-call { display: none; }

.button {
  min-height: 48px;
  padding: 12px 22px;
  border: 1px solid transparent;
  border-radius: 3px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 700;
  line-height: 1.1;
  text-decoration: none;
  cursor: pointer;
  transition: background .2s ease, color .2s ease, border-color .2s ease, transform .2s ease;
}

.button:hover { transform: translateY(-1px); }
.button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible, summary:focus-visible, a:focus-visible { outline: 3px solid rgba(189,111,73,.5); outline-offset: 3px; }
.button-copper { color: #fff; background: var(--copper); border-color: var(--copper); }
.button-copper:hover { background: var(--copper-dark); border-color: var(--copper-dark); }
.button-outline { color: #fff; background: transparent; border-color: rgba(255,255,255,.72); }
.button-outline:hover { background: #fff; color: var(--ink); }

.hero {
  min-height: 650px;
  display: grid;
  grid-template-columns: minmax(420px, 42%) minmax(0, 58%);
  background: var(--ink);
  color: #fff;
  overflow: hidden;
}

.hero-copy {
  padding: clamp(60px, 7vw, 105px) clamp(38px, 6vw, 96px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.eyebrow {
  margin: 0 0 16px;
  color: #d0d4d2;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.eyebrow-dark { color: var(--copper-dark); }

h1, h2, h3, p { overflow-wrap: break-word; }

h1, h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -.035em;
}

h1 { max-width: 700px; font-size: clamp(3rem, 4.6vw, 5.25rem); line-height: .98; }
h2 { font-size: clamp(2rem, 3vw, 3.3rem); line-height: 1.05; }

.hero-lede { max-width: 650px; margin: 26px 0 20px; color: #d8dedd; font-size: 1.12rem; }
.hero-points { list-style: none; padding: 0; margin: 0 0 30px; display: grid; gap: 12px; }
.hero-points li { position: relative; padding-left: 25px; }
.hero-points li::before { content: "•"; position: absolute; left: 4px; color: var(--copper); font-size: 1.6rem; line-height: .8; }

.hero-visual { position: relative; min-height: 650px; }
.hero-image-wrap { display: block; width: 100%; height: 100%; }
.hero-image { display: block; width: 100%; height: 100%; object-fit: cover; object-position: center; }

.service-form {
  position: absolute;
  z-index: 2;
  top: 36px;
  right: clamp(24px, 4vw, 64px);
  width: min(410px, calc(100% - 48px));
  padding: 26px;
  color: var(--ink);
  background: rgba(255,255,255,.98);
  border-radius: 5px;
  box-shadow: var(--shadow);
}

.form-kicker { margin: 0 0 4px; color: var(--copper-dark); font-size: .7rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.form-heading h2 { font-size: 1.65rem; line-height: 1.08; }
.form-heading { margin-bottom: 16px; }
.field-row { display: grid; gap: 12px; }
.field-row-two { grid-template-columns: 1fr 1fr; }
label { display: grid; gap: 5px; margin-bottom: 12px; font-size: .83rem; font-weight: 700; }
input, select, textarea {
  width: 100%;
  border: 1px solid #cdd3d1;
  border-radius: 3px;
  background: #fff;
  color: var(--ink);
  padding: 10px 11px;
  font-weight: 400;
  line-height: 1.2;
}
textarea { resize: vertical; }
.form-submit { width: 100%; }
.consent-copy { margin: 10px 0 0; color: #555f61; font-size: .66rem; line-height: 1.34; }
.consent-copy a { font-weight: 700; }
.form-status { display: none; margin: 10px 0 0; padding: 10px; border-radius: 3px; background: #fff0e8; color: #753b25; font-size: .78rem; font-weight: 700; }
.form-status.is-visible { display: block; }
.form-status.is-success { background: #e9f6ed; color: #1f6336; }
.form-status.is-error { background: #fff0e8; color: #753b25; }
.form-submit:disabled { cursor: wait; opacity: .72; transform: none; }

.service-types {
  position: relative;
  z-index: 4;
  max-width: 1100px;
  margin: -1px auto 0;
  padding: 20px 24px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  background: #fff;
}

.service-types a {
  min-height: 42px;
  padding: 6px 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
  text-decoration: none;
  font-size: .9rem;
  font-weight: 700;
  border-right: 1px solid var(--line);
}
.service-types a:last-child { border-right: 0; }
.service-types svg, .problem-card svg { width: 29px; height: 29px; flex: 0 0 auto; fill: none; stroke: currentColor; stroke-width: 1.55; stroke-linecap: round; stroke-linejoin: round; }

.section { max-width: 1180px; margin: 0 auto; padding: 78px 30px; }
.section-heading { max-width: 780px; margin: 0 auto 40px; text-align: center; }
.section-heading h2 { margin-bottom: 10px; }
.section-heading p { margin: 0; color: var(--muted); }
.compact-heading { margin-bottom: 28px; }
.compact-heading h2 { font-size: clamp(1.9rem, 2.5vw, 2.8rem); }

.problems-section { padding-top: 60px; }
.problem-grid { display: grid; grid-template-columns: repeat(6, 1fr); border: 1px solid var(--line); }
.problem-card { min-height: 210px; padding: 28px 18px; text-align: center; border-right: 1px solid var(--line); background: #fff; }
.problem-card:last-child { border-right: 0; }
.problem-card svg { width: 38px; height: 38px; margin-bottom: 16px; }
.problem-card h3 { margin: 0 0 8px; font-family: var(--serif); font-size: 1.28rem; font-weight: 400; }
.problem-card p { margin: 0; color: var(--muted); font-size: .89rem; }

.diagnosis-section { padding: 78px 30px; color: #fff; background: linear-gradient(118deg, #111719, #1b2528); }
.diagnosis-inner { max-width: 850px; margin: 0 auto; }
.diagnosis-inner > p:not(.eyebrow) { max-width: 720px; color: #d6dddb; font-size: 1.08rem; }
.diagnosis-inner ul { list-style: none; padding: 0; margin: 25px 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.diagnosis-inner li { position: relative; padding: 15px 16px 15px 42px; border: 1px solid rgba(255,255,255,.18); }
.diagnosis-inner li::before { content: "✓"; position: absolute; left: 16px; color: var(--copper); font-weight: 700; }
.diagnosis-inner a { color: #e38d61; font-weight: 700; text-underline-offset: 4px; }

.brands-section { padding-bottom: 60px; }
.brand-grid { display: grid; grid-template-columns: repeat(8, 1fr); align-items: center; }
.brand-grid span { padding: 12px 16px; text-align: center; font-family: var(--serif); font-size: 1.24rem; border-right: 1px solid var(--line); }
.brand-grid span:last-child { border-right: 0; }
.section-note { margin: 22px 0 0; color: var(--muted); text-align: center; font-size: .8rem; }

.faq-section { max-width: 980px; padding-top: 40px; }
.accordion-list { border-top: 1px solid var(--line); }
details { border-bottom: 1px solid var(--line); }
summary { position: relative; padding: 19px 52px 19px 4px; list-style: none; cursor: pointer; font-weight: 700; }
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; position: absolute; right: 10px; top: 50%; translate: 0 -50%; font-size: 1.5rem; font-weight: 400; }
details[open] summary::after { content: "–"; }
details p { margin: -2px 50px 20px 4px; color: var(--muted); }

.areas-section { max-width: 1080px; padding-top: 36px; }
.area-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; }
.area-grid article { padding: 22px; border: 1px solid var(--line); background: var(--paper-warm); }
.area-grid h3 { margin: 0 0 4px; font-family: var(--serif); font-size: 1.28rem; font-weight: 400; }
.area-grid p { margin: 0; color: var(--muted); font-size: .87rem; }

.final-cta {
  padding: 54px max(30px, calc((100% - 1120px) / 2));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  color: #fff;
  background: var(--ink);
}
.final-cta h2 { font-size: clamp(2rem, 3vw, 3.25rem); }
.final-cta p:not(.eyebrow) { margin: 10px 0 0; color: #d0d7d5; }
.final-cta-actions { flex: 0 0 auto; }

.site-footer {
  max-width: 1180px;
  margin: 0 auto;
  padding: 28px 30px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 30px;
  color: var(--muted);
  font-size: .72rem;
}
.footer-brand { display: flex; align-items: center; gap: 12px; color: var(--ink); }
.footer-brand > span:last-child { display: flex; flex-direction: column; }
.footer-brand strong { font-family: var(--serif); font-size: .95rem; font-weight: 400; }
.footer-brand small { color: var(--muted); }
.brand-mark-dark { color: var(--ink); font-size: 2rem; }
.site-footer p { max-width: 600px; margin: 0; }
.site-footer nav { display: flex; gap: 18px; }

@media (max-width: 1120px) {
  .hero { grid-template-columns: 38% 62%; }
  .hero-copy { padding-inline: 40px; }
  .hero-copy h1 { font-size: 3.35rem; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .service-form { right: 24px; width: min(390px, calc(100% - 48px)); }
  .problem-grid { grid-template-columns: repeat(3, 1fr); }
  .problem-card { border-bottom: 1px solid var(--line); }
  .problem-card:nth-child(3) { border-right: 0; }
  .problem-card:nth-child(n+4) { border-bottom: 0; }
  .brand-grid { grid-template-columns: repeat(4, 1fr); }
  .brand-grid span { border-bottom: 1px solid var(--line); }
  .brand-grid span:nth-child(4) { border-right: 0; }
}

@media (max-width: 760px) {
  html { scroll-padding-top: 64px; }
  body { font-size: 16px; }
  .header-inner { min-height: 64px; padding: 8px 14px; gap: 10px; }
  .brand { gap: 8px; }
  .brand-mark { font-size: 1.85rem; }
  .brand-copy strong { font-size: .8rem; }
  .brand-copy small { font-size: .58rem; }
  .header-phone, .header-cta { display: none; }
  .mobile-call { min-height: 42px; padding: 10px 16px; display: inline-flex; }

  .hero { min-height: 0; display: block; background: var(--ink); }
  .hero-copy { display: none; }
  .hero-visual { min-height: 0; display: flex; flex-direction: column; }
  .service-form {
    position: relative;
    top: auto;
    right: auto;
    order: 1;
    width: calc(100% - 20px);
    margin: 0 10px;
    padding: 15px 14px 14px;
    border-radius: 0 0 5px 5px;
    box-shadow: 0 15px 34px rgba(5,13,16,.2);
  }
  .form-kicker { display: none; }
  .form-heading { margin-bottom: 10px; }
  .form-heading h2 { font-size: 1.3rem; }
  .field-row-two { grid-template-columns: 1fr 1fr; gap: 8px; }
  label { margin-bottom: 8px; gap: 3px; }
  input, select, textarea { padding: 9px 10px; }
  textarea { min-height: 62px; }
  .form-submit { min-height: 45px; }
  .consent-copy { font-size: .72rem; line-height: 1.35; }
  .hero-image-wrap { display: none; }

  .service-types {
    padding: 10px;
    grid-template-columns: repeat(6, 1fr);
    gap: 4px;
  }
  .service-types a { min-height: 52px; padding: 7px 6px; gap: 5px; border: 1px solid var(--line); font-size: .71rem; }
  .service-types a:nth-child(1), .service-types a:nth-child(2), .service-types a:nth-child(3) { grid-column: span 2; }
  .service-types a:nth-child(4), .service-types a:nth-child(5) { grid-column: span 3; }
  .service-types svg { width: 23px; height: 23px; }

  .section { padding: 48px 14px; }
  .section-heading { margin-bottom: 25px; }
  .section-heading .eyebrow { display: none; }
  .section-heading h2 { font-size: 2rem; }
  .section-heading p { font-size: .9rem; }
  .problems-section { padding-top: 36px; }
  .problem-grid { grid-template-columns: repeat(2, 1fr); }
  .problem-card { min-height: 150px; padding: 19px 10px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line) !important; }
  .problem-card:nth-child(2n) { border-right: 0; }
  .problem-card:nth-last-child(-n+2) { border-bottom: 0 !important; }
  .problem-card svg { width: 31px; height: 31px; margin-bottom: 9px; }
  .problem-card h3 { font-size: 1.03rem; }
  .problem-card p { font-size: .78rem; line-height: 1.35; }

  .diagnosis-section { padding: 42px 20px; }
  .diagnosis-inner h2 { font-size: 1.9rem; }
  .diagnosis-inner > p:not(.eyebrow) { font-size: .93rem; }
  .diagnosis-inner ul { grid-template-columns: 1fr; margin: 20px 0; gap: 8px; }
  .diagnosis-inner li { padding: 9px 10px 9px 36px; border: 0; }
  .diagnosis-inner li::before { left: 9px; }

  .brands-section { padding-block: 46px 38px; }
  .compact-heading h2 { font-size: 1.9rem; }
  .brand-grid { grid-template-columns: repeat(2, 1fr); }
  .brand-grid span { padding: 11px 8px; font-size: 1.12rem; border: 0; border-bottom: 1px solid var(--line); }
  .brand-grid span:nth-child(odd) { border-right: 1px solid var(--line); }
  .brand-grid span:last-child { border-right: 0; }

  .faq-section { padding-top: 25px; }
  summary { min-height: 58px; padding: 16px 48px 16px 4px; display: flex; align-items: center; }
  details p { margin: -2px 28px 20px 4px; font-size: .9rem; }

  .areas-section { padding-top: 28px; }
  .area-grid { grid-template-columns: 1fr; gap: 8px; }
  .area-grid article { padding: 16px; }

  .final-cta { padding: 42px 16px; align-items: stretch; flex-direction: column; gap: 26px; text-align: center; }
  .final-cta h2 { font-size: 2.1rem; }
  .final-cta-actions { display: grid; gap: 9px; }
  .final-cta-actions .button { width: 100%; }

  .site-footer { padding: 24px 16px 30px; grid-template-columns: 1fr auto; gap: 18px; }
  .site-footer p { grid-column: 1 / -1; grid-row: 2; }
  .site-footer nav { justify-self: end; }
}

@media (max-width: 380px) {
  .brand-copy strong { font-size: .72rem; }
  .brand-copy small { display: none; }
  .mobile-call { padding-inline: 13px; }
  .service-form { width: calc(100% - 12px); margin-inline: 6px; }
  .consent-copy { font-size: .68rem; }
}

@media (prefers-reduced-motion: reduce) {
  :root { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; }
}
