/* =========================================================
   TYPOGRAPHY SYSTEM
   editorial / urban / restrained
========================================================= */

/* =========================================================
   GLOBAL TYPE
========================================================= */

body {
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: -0.01em;
}

p {
  margin: 0;
  max-width: 58ch;

  color: var(--ink-soft);

  font-size: clamp(1rem, 1.1vw, 1.08rem);
  line-height: 1.78;
  letter-spacing: -0.012em;
}

.zone-recovery p,
.zone-recovery li,
.zone-recovery dt,
.zone-recovery dd {
  color: rgba(255,255,255,0.82);
}

/* =========================================================
   HEADINGS
========================================================= */

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;

  font-weight: 600;

  color: var(--ink);

  text-wrap: balance;
}

.zone-recovery h1,
.zone-recovery h2,
.zone-recovery h3,
.zone-recovery h4 {
  color: var(--white);
}

/* =========================================================
   HERO
========================================================= */

.hero h1 {
  max-width: 10ch;

  font-size:
    clamp(4rem, 9vw, 9rem);

  line-height: 0.9;

  letter-spacing: -0.08em;

  font-weight: 620;
}

.hero-text {
  margin-top: 34px;

  max-width: 52ch;

  font-size:
    clamp(1.06rem, 1.25vw, 1.3rem);

  line-height: 1.75;

  color: var(--muted);
}

/* =========================================================
   SECTION TITLES
========================================================= */

.section-head h2,
.split-copy h2,
.intro-grid h2,
.faq-section h2 {
  max-width: 14ch;

  font-size:
    clamp(2.2rem, 4vw, 4.6rem);

  line-height: 0.98;

  letter-spacing: -0.055em;

  font-weight: 610;
}

.services-section h2 {
  max-width: 11ch;
}

.recovery-section h2 {
  max-width: 13ch;
}

.commercial-section h2 {
  max-width: 14ch;
}

/* =========================================================
   SERVICE TITLES
========================================================= */

.service-copy h3,
.faq-grid h3 {
  font-size:
    clamp(1.25rem, 1.8vw, 2rem);

  line-height: 1.06;

  letter-spacing: -0.04em;

  font-weight: 590;
}

.service-copy h3 {
  margin-top: 12px;
  margin-bottom: 18px;
}

/* =========================================================
   EYEBROWS
========================================================= */

.eyebrow,
.section-label,
.summary-label,
.intro-grid span,
.service-copy span,
.split-copy .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  margin-bottom: 22px;

  color: var(--muted);

  font-size: 11px;

  font-weight: 620;

  letter-spacing: 0.18em;

  text-transform: uppercase;
}

.zone-recovery .eyebrow,
.zone-recovery .section-label,
.zone-recovery .summary-label {
  color: rgba(255,255,255,0.58);
}

/* =========================================================
   NAVIGATION
========================================================= */

.main-nav a {
  position: relative;

  color: var(--ink-soft);

  font-size: 13px;

  font-weight: 560;

  letter-spacing: 0.08em;

  text-transform: uppercase;
}

.main-nav a::after {
  content: "";

  position: absolute;
  left: 0;
  bottom: -7px;

  width: 100%;
  height: 1px;

  background: var(--ink);

  transform: scaleX(0);
  transform-origin: left;

  transition: transform var(--transition-fast);
}

.main-nav a:hover::after {
  transform: scaleX(1);
}

/* =========================================================
   BUTTONS
========================================================= */

.button,
button,
.mode-option {
  font-size: 13px;

  font-weight: 600;

  letter-spacing: 0.08em;

  text-transform: uppercase;
}

/* =========================================================
   FORMS
========================================================= */

label,
legend {
  color: var(--ink-soft);

  font-size: 12px;

  font-weight: 620;

  letter-spacing: 0.08em;

  text-transform: uppercase;
}

legend {
  margin-bottom: 26px;
}

label {
  display: block;
  margin-bottom: 12px;
}

input,
select,
textarea {
  color: var(--ink);

  font-size: 15px;

  line-height: 1.5;
}

textarea {
  line-height: 1.7;
}

/* =========================================================
   ESTIMATE SUMMARY
========================================================= */

.summary-price {
  font-size:
    clamp(2.4rem, 5vw, 5rem);

  line-height: 0.94;

  letter-spacing: -0.07em;

  font-weight: 620;
}

.summary-time {
  margin-top: 16px;

  color: var(--muted);

  font-size: 1rem;

  letter-spacing: 0.02em;
}

.estimate-summary dt {
  color: var(--muted);

  font-size: 11px;

  font-weight: 620;

  letter-spacing: 0.16em;

  text-transform: uppercase;
}

.estimate-summary dd {
  margin: 10px 0 0;

  color: var(--ink);

  font-size: 1rem;

  font-weight: 560;
}

.zone-recovery .estimate-summary dd {
  color: var(--white);
}

/* =========================================================
   FAQ
========================================================= */

.faq-grid p {
  margin-top: 16px;
}

/* =========================================================
   CONTACT
========================================================= */

.contact-links {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-links a {
  width: fit-content;

  color: var(--ink);

  font-size:
    clamp(1.1rem, 1.4vw, 1.4rem);

  font-weight: 560;

  letter-spacing: -0.03em;

  border-bottom:
    1px solid transparent;

  transition:
    border-color var(--transition-fast),
    opacity var(--transition-fast);
}

.contact-links a:hover {
  border-color: var(--ink);
}

/* =========================================================
   HEADER
========================================================= */

.header-phone,
.lang-toggle {
  color: var(--ink-soft);

  font-size: 12px;

  font-weight: 600;

  letter-spacing: 0.08em;

  text-transform: uppercase;
}

/* =========================================================
   FOOTER
========================================================= */

.site-footer p {
  color: var(--muted);

  font-size: 12px;

  letter-spacing: 0.08em;

  text-transform: uppercase;
}

/* =========================================================
   DARK ZONES
========================================================= */

.zone-recovery .main-nav a,
.zone-recovery .header-phone,
.zone-recovery .lang-toggle,
.zone-recovery label,
.zone-recovery legend {
  color: rgba(255,255,255,0.74);
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 1100px) {

  .hero h1 {
    max-width: 11ch;

    font-size:
      clamp(3.4rem, 11vw, 7rem);
  }

  .section-head h2,
  .split-copy h2,
  .intro-grid h2 {
    font-size:
      clamp(2rem, 6vw, 4rem);
  }
}

@media (max-width: 760px) {

  body {
    font-size: 15px;
  }

  p {
    max-width: 100%;

    font-size: 1rem;

    line-height: 1.72;
  }

  .hero h1 {
    max-width: 100%;

    font-size:
      clamp(2.8rem, 15vw, 5rem);

    line-height: 0.94;
  }

  .hero-text {
    margin-top: 26px;

    font-size: 1rem;
  }

  .section-head h2,
  .split-copy h2,
  .intro-grid h2,
  .faq-section h2 {
    max-width: 100%;

    font-size:
      clamp(2rem, 9vw, 3rem);

    line-height: 1;
  }

  .summary-price {
    font-size:
      clamp(2.2rem, 12vw, 4rem);
  }

  .contact-links a {
    font-size: 1.06rem;
  }
}

@media (max-width: 480px) {

  .eyebrow,
  .section-label,
  .summary-label,
  .intro-grid span,
  .service-copy span {
    margin-bottom: 18px;

    font-size: 10px;

    letter-spacing: 0.16em;
  }

  .main-nav a {
    font-size: 12px;
  }

  .button,
  button,
  .mode-option {
    font-size: 12px;
  }

  .hero h1 {
    letter-spacing: -0.065em;
  }
}