/* =========================================================
   Wrenhall Heating — style.css
   Prefix: wh-
   Spacing scale: 2/4/8/16/24px compact
   Typography: editorial serif, large H1
   Buttons: text-link style with underline animation
   ========================================================= */

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: Georgia, Palatino, 'Times New Roman', serif;
  background: #f8f6f2;
  color: #1a1714;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font-family: inherit; }

/* ── CUSTOM PROPERTIES ── */
:root {
  --wh-bg: #f8f6f2;
  --wh-bg-alt: #edeae3;
  --wh-bg-dark: #1a1714;
  --wh-bg-mid: #2e2a25;
  --wh-accent: #b85c1a;
  --wh-accent-light: #d97b40;
  --wh-text: #1a1714;
  --wh-text-muted: #5a5248;
  --wh-text-light: #f0ece4;
  --wh-border: #d9d4cb;
  --wh-max: 1200px;
  --wh-pad-section: 56px;
  --wh-gap: 24px;
}

/* ── SKIP LINK ── */
.skip-link {
  position: absolute;
  top: -100px;
  left: 8px;
  z-index: 9999;
  background: var(--wh-accent);
  color: #fff;
  padding: 8px 16px;
  font-size: 0.9rem;
  border-radius: 2px;
  transition: top 0.2s;
}
.skip-link:focus { top: 8px; }

/* ── CONTAINER ── */
.container {
  width: 100%;
  max-width: var(--wh-max);
  margin-inline: auto;
  padding-inline: 24px;
}

/* ── HEADER ── */
.wh-header {
  background: var(--wh-bg);
  border-bottom: 1px solid var(--wh-border);
  padding: 16px 0;
}
.wh-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.wh-header__brand {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--wh-text);
  font-style: italic;
}

/* ── BUTTONS — text-link style ── */
.btn-cta {
  display: inline-block;
  font-family: Georgia, Palatino, 'Times New Roman', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--wh-accent);
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
  text-decoration-color: var(--wh-accent);
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  transition: color 0.2s, text-decoration-color 0.2s;
  line-height: 1.4;
}
.btn-cta:hover, .btn-cta:focus {
  color: var(--wh-accent-light);
  text-decoration-color: var(--wh-accent-light);
  outline: none;
}
.btn-cta:focus-visible {
  outline: 2px solid var(--wh-accent);
  outline-offset: 3px;
  border-radius: 2px;
}
.btn-cta--full {
  display: block;
  width: 100%;
  text-align: center;
}

/* ── HERO ── */
.wh-hero {
  position: relative;
  overflow: hidden;
  background: var(--wh-bg-dark);
}
.wh-hero__img-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.wh-hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  max-height: none;
  opacity: 0.45;
}
.wh-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,23,20,0.82) 0%, rgba(26,23,20,0.55) 60%, rgba(184,92,26,0.18) 100%);
}
.wh-hero__content {
  position: relative;
  z-index: 1;
  padding-top: 80px;
  padding-bottom: 80px;
  max-width: 760px;
}
.wh-hero__eyebrow {
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--wh-accent-light);
  margin-bottom: 16px;
  font-style: normal;
}
.wh-hero__heading {
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.15;
  color: #fff;
  margin-bottom: 24px;
  font-style: italic;
  letter-spacing: -0.02em;
}
.wh-hero__sub {
  font-size: 1.1rem;
  color: rgba(240,236,228,0.88);
  max-width: 620px;
  margin-bottom: 32px;
  line-height: 1.7;
}
.wh-hero__cta {
  font-size: 1.15rem;
  display: inline-block;
  margin-bottom: 16px;
  color: #fff;
  text-decoration-color: var(--wh-accent-light);
}
.wh-hero__cta:hover, .wh-hero__cta:focus {
  color: var(--wh-accent-light);
}
.wh-hero__reassure {
  font-size: 0.82rem;
  color: rgba(240,236,228,0.6);
  letter-spacing: 0.04em;
}

/* ── PROBLEM / SOLUTION ── */
.wh-problem {
  padding: var(--wh-pad-section) 0;
  background: var(--wh-bg);
  border-bottom: 1px solid var(--wh-border);
}
.wh-problem__inner {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 48px;
  align-items: start;
}
.wh-problem__heading {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  line-height: 1.25;
  margin-bottom: 20px;
  font-style: italic;
}
.wh-problem__body {
  font-size: 1rem;
  color: var(--wh-text-muted);
  margin-bottom: 16px;
}
.wh-problem__stat-stack {
  display: flex;
  flex-direction: column;
  gap: 2px;
  border-left: 3px solid var(--wh-accent);
  padding-left: 24px;
}
.wh-problem__stat {
  padding: 16px 0;
  border-bottom: 1px solid var(--wh-border);
}
.wh-problem__stat:last-child { border-bottom: none; }
.wh-problem__stat-num {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  font-style: italic;
  color: var(--wh-accent);
  line-height: 1.2;
}
.wh-problem__stat-label {
  display: block;
  font-size: 0.85rem;
  color: var(--wh-text-muted);
  margin-top: 2px;
}

/* ── PROCESS ── */
.wh-process {
  padding: var(--wh-pad-section) 0;
  background: var(--wh-bg-alt);
  border-bottom: 1px solid var(--wh-border);
}
.wh-process__heading {
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  font-style: italic;
  margin-bottom: 8px;
}
.wh-process__intro {
  font-size: 0.97rem;
  color: var(--wh-text-muted);
  margin-bottom: 40px;
  max-width: 560px;
}
.wh-process__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  counter-reset: steps;
}
.wh-process__step {
  background: var(--wh-bg);
  border: 1px solid var(--wh-border);
  padding: 24px;
  position: relative;
}
.wh-process__step-num {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  font-style: italic;
  color: var(--wh-border);
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: -0.04em;
}
.wh-process__step-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.3;
}
.wh-process__step-desc {
  font-size: 0.9rem;
  color: var(--wh-text-muted);
  line-height: 1.65;
}

/* ── MID-PAGE CTA ── */
.wh-midcta {
  background: var(--wh-accent);
  padding: 32px 0;
}
.wh-midcta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.wh-midcta__line {
  font-size: 1.15rem;
  font-style: italic;
  color: #fff;
}
.wh-midcta .btn-cta {
  color: #fff;
  text-decoration-color: rgba(255,255,255,0.7);
  font-size: 1.05rem;
}
.wh-midcta .btn-cta:hover {
  color: rgba(255,255,255,0.85);
  text-decoration-color: rgba(255,255,255,0.9);
}

/* ── BENEFITS ── */
.wh-benefits {
  padding: var(--wh-pad-section) 0;
  background: var(--wh-bg);
  border-bottom: 1px solid var(--wh-border);
}
.wh-benefits__heading {
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  font-style: italic;
  margin-bottom: 40px;
}
.wh-benefits__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--wh-border);
  border: 1px solid var(--wh-border);
}
.wh-benefit-card {
  background: var(--wh-bg);
  padding: 24px;
}
.wh-benefit-card__icon {
  display: block;
  color: var(--wh-accent);
  margin-bottom: 16px;
}
.wh-benefit-card__title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.3;
}
.wh-benefit-card__desc {
  font-size: 0.88rem;
  color: var(--wh-text-muted);
  line-height: 1.65;
}

/* ── PHOTO BAND ── */
.wh-photoband {
  position: relative;
  overflow: hidden;
  background: var(--wh-bg-dark);
  max-height: 420px;
}
.wh-photoband__img {
  width: 100%;
  height: 420px;
  max-height: 420px;
  object-fit: cover;
  object-position: center;
  opacity: 0.38;
  display: block;
}
.wh-photoband__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
}
.wh-photoband__pullquote {
  font-size: clamp(1.2rem, 2.5vw, 1.75rem);
  font-style: italic;
  color: #fff;
  max-width: 720px;
  line-height: 1.5;
  border-left: 4px solid var(--wh-accent);
  padding-left: 32px;
}

/* ── TESTIMONIALS ── */
.wh-testimonials {
  padding: var(--wh-pad-section) 0;
  background: var(--wh-bg-alt);
  border-bottom: 1px solid var(--wh-border);
}
.wh-testimonials__heading {
  font-size: clamp(1.4rem, 2.5vw, 1.85rem);
  font-style: italic;
  margin-bottom: 40px;
}
.wh-testimonials__track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.wh-testi {
  background: var(--wh-bg);
  border: 1px solid var(--wh-border);
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.wh-testi__quote {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--wh-text);
  margin-bottom: 20px;
  font-style: italic;
}
.wh-testi__attr {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.wh-testi__name {
  font-weight: 700;
  font-size: 0.88rem;
}
.wh-testi__loc {
  font-size: 0.8rem;
  color: var(--wh-text-muted);
}

/* ── TRUST STRIP ── */
.wh-trust {
  padding: 40px 0;
  background: var(--wh-bg-dark);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.wh-trust__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.wh-trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
  flex: 1 1 140px;
}
.wh-trust-item__icon {
  color: var(--wh-accent-light);
}
.wh-trust-item__label {
  font-size: 0.82rem;
  color: rgba(240,236,228,0.75);
  line-height: 1.4;
  max-width: 130px;
}

/* ── FAQ ── */
.wh-faq {
  padding: var(--wh-pad-section) 0;
  background: var(--wh-bg);
  border-bottom: 1px solid var(--wh-border);
}
.wh-faq__heading {
  font-size: clamp(1.4rem, 2.5vw, 1.85rem);
  font-style: italic;
  margin-bottom: 40px;
}
.wh-faq__list {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.wh-faq__item {
  border-bottom: 1px solid var(--wh-border);
  padding-bottom: 24px;
  margin-bottom: 24px;
}
.wh-faq__item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.wh-faq__q {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--wh-text);
}
.wh-faq__a {
  font-size: 0.92rem;
  color: var(--wh-text-muted);
  line-height: 1.7;
  max-width: 820px;
}

/* ── FORM ZONE ── */
.wh-formzone {
  padding: var(--wh-pad-section) 0 64px;
  background: var(--wh-bg-alt);
}
.form-zone {
  display: grid;
  grid-template-columns: 1fr 440px;
  gap: 48px;
  align-items: start;
}
.wh-formzone__heading {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-style: italic;
  margin-bottom: 16px;
  line-height: 1.2;
}
.wh-formzone__sub {
  font-size: 0.97rem;
  color: var(--wh-text-muted);
  margin-bottom: 24px;
  line-height: 1.65;
}
.wh-formzone__bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.wh-formzone__bullets li {
  font-size: 0.9rem;
  color: var(--wh-text-muted);
  padding-left: 20px;
  position: relative;
}
.wh-formzone__bullets li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 2px;
  background: var(--wh-accent);
}

/* ── INJECTED FORM BOX ── */
.form-box {
  background: var(--wh-bg);
  border: 1px solid var(--wh-border);
  padding: 32px;
}
.form-box__title {
  font-size: 1.1rem;
  font-style: italic;
  margin-bottom: 24px;
  color: var(--wh-text);
}
.form-box__privacy {
  font-size: 0.78rem;
  color: var(--wh-text-muted);
  margin-top: 16px;
  line-height: 1.5;
}

/* ── FIELD STYLES ── */
.field {
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.field__label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--wh-text);
  letter-spacing: 0.02em;
}
.field__required {
  color: var(--wh-accent);
  margin-left: 2px;
}
.field__input {
  font-family: Georgia, Palatino, 'Times New Roman', serif;
  font-size: 0.95rem;
  padding: 10px 12px;
  border: 1px solid var(--wh-border);
  background: var(--wh-bg);
  color: var(--wh-text);
  border-radius: 0;
  transition: border-color 0.2s;
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
}
.field__input:focus {
  outline: none;
  border-color: var(--wh-accent);
}
.field__error {
  font-size: 0.8rem;
  color: #c0392b;
  margin-top: 2px;
}
.name-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.phone-wrap {
  display: flex;
  gap: 8px;
  align-items: flex-start;
}
.phone-wrap__dial {
  font-family: Georgia, Palatino, 'Times New Roman', serif;
  font-size: 0.95rem;
  padding: 10px 8px;
  border: 1px solid var(--wh-border);
  background: var(--wh-bg-alt);
  color: var(--wh-text);
  width: 72px;
  flex-shrink: 0;
  -webkit-appearance: none;
  appearance: none;
}
.phone-wrap__number {
  flex: 1;
}

/* ── FORM MESSAGES ── */
.form-message {
  padding: 12px 16px;
  font-size: 0.9rem;
  margin-bottom: 16px;
  border-left: 3px solid transparent;
  line-height: 1.5;
}
.form-message--error {
  background: #fdf0ee;
  border-color: #c0392b;
  color: #8b2319;
}
.form-message--success {
  background: #eef6f0;
  border-color: #27803e;
  color: #1a5429;
}
.form-success {
  text-align: center;
  padding: 40px 24px;
}
.form-success__title {
  font-size: 1.4rem;
  font-style: italic;
  margin-bottom: 12px;
  color: var(--wh-text);
}
.form-success__msg {
  font-size: 0.95rem;
  color: var(--wh-text-muted);
  line-height: 1.65;
}

/* ── FOOTER ── */
.wh-footer {
  background: var(--wh-bg-dark);
  color: var(--wh-text-light);
  padding: 48px 0 32px;
  border-top: 3px solid var(--wh-accent);
}
.wh-footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
}
.wh-footer__brand {
  font-size: 1.2rem;
  font-weight: 700;
  font-style: italic;
  margin-bottom: 8px;
}
.wh-footer__tagline {
  font-size: 0.85rem;
  color: rgba(240,236,228,0.6);
  line-height: 1.5;
  margin-bottom: 24px;
  max-width: 280px;
}
.wh-footer__copy {
  font-size: 0.78rem;
  color: rgba(240,236,228,0.4);
  margin-top: 8px;
}
.wh-footer__col-heading {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(240,236,228,0.5);
  margin-bottom: 16px;
}
.wh-footer__links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.wh-footer__links li,
.wh-footer__links a {
  font-size: 0.88rem;
  color: rgba(240,236,228,0.72);
  line-height: 1.5;
  transition: color 0.15s;
}
.wh-footer__links a:hover {
  color: var(--wh-accent-light);
}

/* ── RESPONSIVE — TABLET ── */
@media (max-width: 1024px) {
  .wh-problem__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .wh-process__steps {
    grid-template-columns: 1fr;
  }
  .wh-benefits__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .wh-testimonials__track {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .form-zone {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .wh-footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .wh-footer__col--brand {
    grid-column: 1 / -1;
  }
  .wh-trust__inner {
    justify-content: center;
  }
}

/* ── RESPONSIVE — MOBILE ── */
@media (max-width: 768px) {
  :root {
    --wh-pad-section: 40px;
  }
  .wh-hero__content {
    padding-top: 56px;
    padding-bottom: 56px;
  }
  .wh-hero__heading {
    font-size: 2.2rem;
  }
  .wh-hero__sub {
    font-size: 1rem;
  }
  .wh-midcta__inner {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }
  .wh-benefits__grid {
    grid-template-columns: 1fr;
  }
  .wh-photoband__img {
    height: 280px;
    max-height: 280px;
  }
  .wh-photoband {
    max-height: 280px;
  }
  .wh-photoband__pullquote {
    font-size: 1.1rem;
    padding-left: 20px;
    border-left-width: 3px;
  }
  .wh-trust__inner {
    gap: 16px;
  }
  .wh-trust-item {
    flex: 1 1 120px;
  }
  .form-zone {
    grid-template-columns: 1fr;
  }
  .form-box {
    padding: 24px 16px;
  }
  .name-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .wh-footer__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .wh-footer__col--brand {
    grid-column: auto;
  }
  .wh-problem__stat-stack {
    padding-left: 16px;
  }
  .wh-testimonials__track {
    grid-template-columns: 1fr;
  }
}

/* ── Phone dial control (injected) ─────────────────────────────────── */
.phone-wrap { display: flex; gap: .5rem; align-items: stretch; }
.phone-wrap__number { flex: 1; min-width: 0; }
.dial { position: relative; flex: none; display: flex; }
.dial__display {
  display: inline-flex; align-items: center; gap: .4rem; width: 100%;
  padding: .7rem .6rem .7rem .7rem;
  border: 1.5px solid var(--clr-border, var(--color-border, #d9d4cc)); border-radius: 8px;
  background: var(--clr-bg, var(--color-bg, #f6f5f2)); color: var(--clr-text, var(--color-text, #1c1c1c));
  font-size: 1rem; line-height: 1.25; white-space: nowrap;
  pointer-events: none;                    /* clicks belong to the select on top */
  transition: border-color .15s, box-shadow .15s;
}
.dial__flag { font-size: 1.15rem; line-height: 1; }
.dial__flag:not(:empty) { min-width: 1.35em; text-align: center; }
.dial__code { font-weight: 700; font-variant-numeric: tabular-nums; }
.dial__caret { width: 15px; height: 15px; flex: none; color: var(--clr-text-muted, var(--color-text-muted, var(--color-label, #6b6b6b))); }
.dial__select {
  position: absolute; inset: 0; width: 100%; height: 100%;
  opacity: 0; cursor: pointer; border: 0; padding: 0; margin: 0;
  appearance: none; -webkit-appearance: none;
}
.dial:focus-within .dial__display { border-color: var(--clr-accent, var(--color-primary, #b4682f)); box-shadow: 0 0 0 3px rgba(0,0,0,.08); }


/* ── Outbound industry references (injected) ───────────────────────── */
.resources-section { padding-block: clamp(3rem, 7vw, 4.5rem); background: var(--clr-bg, var(--color-bg, #f6f5f2)); }
.resources-section .section-header { margin-bottom: 2rem; }
.resource-eyebrow { margin: 0 0 0.75rem; }
.resource-title { font-size: clamp(1.6rem, 4vw, 2.3rem); line-height: 1.15; margin: 0 0 0.75rem; color: var(--clr-brand, var(--color-heading, var(--color-text, #23303a))); }
.resource-intro { font-size: 1rem; line-height: 1.65; color: var(--clr-text-mid, var(--color-text-mid, #3d3d3d)); margin: 0; max-width: 68ch; }
.resource-group { margin-top: 2.5rem; }
.resource-group__title {
  font-size: 1.05rem; font-weight: 700; color: var(--clr-brand, var(--color-heading, var(--color-text, #23303a)));
  margin: 0 0 1.25rem; padding-bottom: 0.75rem; border-bottom: 1px solid var(--clr-border, var(--color-border, #d9d4cc));
}
.resource-grid {
  list-style: none; margin: 0; padding: 0; display: grid; gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.resource-card {
  background: var(--clr-surface, var(--color-surface, #ffffff)); border: 1px solid var(--clr-border, var(--color-border, #d9d4cc)); border-radius: 12px; padding: 1.35rem;
  transition: box-shadow .2s ease, transform .2s ease, border-color .2s ease;
}
.resource-card:hover { transform: translateY(-2px); border-color: var(--clr-accent, var(--color-primary, #b4682f)); box-shadow: 0 6px 22px rgba(0,0,0,.07); }
.resource-card__link {
  display: grid; grid-template-columns: 1fr auto; align-items: baseline;
  gap: .25rem .75rem; text-decoration: none; color: inherit;
}
.resource-card__name {
  grid-column: 1; font-weight: 700; font-size: 1.02rem; color: var(--clr-brand, var(--color-heading, var(--color-text, #23303a)));
  text-decoration: underline; text-decoration-color: var(--clr-accent, var(--color-primary, #b4682f));
  text-decoration-thickness: 2px; text-underline-offset: 3px;
}
.resource-card__meta {
  grid-column: 1; grid-row: 2; font-size: .78rem; color: var(--clr-text-muted, var(--color-text-muted, var(--color-label, #6b6b6b)));
  text-transform: uppercase; letter-spacing: .06em;
}
.resource-card__arrow { grid-column: 2; grid-row: 1 / span 2; align-self: center; color: var(--clr-accent, var(--color-primary, #b4682f)); font-size: 1.1rem; transition: transform .2s ease; }
.resource-card__link:hover .resource-card__arrow { transform: translateX(3px); }
.resource-card__desc { margin: .75rem 0 0; font-size: .92rem; line-height: 1.55; color: var(--clr-text-mid, var(--color-text-mid, #3d3d3d)); }
.resource-note { margin: 2rem 0 0; font-size: .85rem; line-height: 1.6; color: var(--clr-text-muted, var(--color-text-muted, var(--color-label, #6b6b6b))); max-width: 68ch; }
@media (min-width: 900px) { .resource-grid--three { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (max-width: 700px) { .resource-grid, .resource-grid--three, .resource-grid--two { grid-template-columns: 1fr; } .resource-group { margin-top: 2rem; } }

/* ── Form polish (injected) ────────────────────────────────────────── */
/* #form-message is the empty status container; several generated stylesheets
   give it a border/background, so it renders as a stray empty box until a
   message appears. */
.form-message:empty { display: none; }
/* Keep the number field wide enough that its placeholder is not clipped when
   the form sits in a narrow column beside the dial chip. */
.dial__display { padding-left: .55rem; padding-right: .5rem; gap: .3rem; }
.dial__caret { width: 13px; height: 13px; }
