@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:wght@400;500;600;700;800&family=Newsreader:opsz,wght@6..72,400..700&display=swap");

:root {
  --paper: #f7f3eb;
  --ink: #1d1916;
  --muted: #6e655d;
  --line: #d8cec1;
  --tomato: #c7442e;
  --cobalt: #075da8;
  --citron: #c5ce3b;
  --plum: #6e3459;
  --shadow: 0 28px 80px rgba(29, 25, 22, 0.16);
  font-family: "IBM Plex Sans", "Avenir Next", Avenir, "Helvetica Neue", Helvetica, sans-serif;
  color: var(--ink);
  background: var(--paper);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(90deg, rgba(199, 68, 46, 0.08), transparent 26%, transparent 72%, rgba(7, 93, 168, 0.08)),
    var(--paper);
}

.answer-hero > *,
.form-wrap > * {
  min-width: 0;
}

a {
  color: inherit;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 54px);
  background: rgba(247, 243, 235, 0.92);
  border-bottom: 1px solid rgba(29, 25, 22, 0.08);
  backdrop-filter: blur(18px);
}

.brand-mark {
  display: grid;
  gap: 1px;
  text-decoration: none;
  text-transform: uppercase;
  line-height: 1;
  font-size: 0.72rem;
}

.brand-mark strong {
  font-family: "Newsreader", Georgia, "Times New Roman", serif;
  font-size: 1.05rem;
  font-weight: 500;
  text-transform: none;
}

nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 26px);
  font-size: 0.78rem;
  text-transform: uppercase;
}

nav a {
  color: rgba(29, 25, 22, 0.76);
  text-decoration: none;
}

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

.nav-cta {
  padding: 11px 14px;
  background: var(--ink);
  color: var(--paper);
}

.nav-cta:hover {
  background: var(--tomato);
  color: var(--paper);
}

.nav-phone {
  color: var(--cobalt);
  font-weight: 800;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.social-links a {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  padding: 10px 13px;
  border: 1px solid var(--line);
  background: rgba(255, 250, 242, 0.74);
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
}

.social-links a:hover {
  border-color: var(--tomato);
  color: var(--tomato);
}

.static-main {
  min-height: 100svh;
}

.answer-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.74fr);
  gap: clamp(34px, 7vw, 100px);
  align-items: center;
  padding: clamp(70px, 10vw, 150px) clamp(20px, 5vw, 76px);
  border-bottom: 1px solid var(--line);
}

.answer-hero.compact {
  grid-template-columns: 1fr;
  max-width: 1120px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--tomato);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

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

h1,
h2 {
  font-family: "Newsreader", Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 0.96;
  max-width: 100%;
  overflow-wrap: normal;
  text-wrap: balance;
  word-break: normal;
}

h1 {
  max-width: 980px;
  margin-bottom: 28px;
  font-size: clamp(2.7rem, 7.5vw, 8.2rem);
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(2rem, 4vw, 4.7rem);
}

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

p,
li,
dd {
  color: var(--muted);
  line-height: 1.72;
}

dl,
dd {
  margin: 0;
}

.lead {
  max-width: 760px;
  color: var(--ink);
  font-size: clamp(1.15rem, 1.9vw, 1.55rem);
  line-height: 1.45;
}

.hero-panel {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.hero-panel div {
  padding: clamp(22px, 3vw, 34px);
  background: #fffaf2;
}

.hero-panel span {
  color: var(--cobalt);
  font-family: "Newsreader", Georgia, "Times New Roman", serif;
  font-size: clamp(1.6rem, 3vw, 2.6rem);
}

.hero-panel p {
  margin: 14px 0 0;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 13px 18px;
  border: 1px solid var(--ink);
  font-size: 0.78rem;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
}

.button.primary {
  background: var(--ink);
  color: var(--paper);
}

.button.secondary {
  background: transparent;
}

.section {
  padding: clamp(70px, 10vw, 150px) clamp(20px, 5vw, 76px);
}

.section-heading {
  max-width: 980px;
  margin-bottom: clamp(38px, 6vw, 72px);
}

.answer-grid,
.signal-grid,
.sitemap-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.answer-card,
.signal-card,
.sitemap-grid section {
  min-height: 260px;
  padding: clamp(22px, 4vw, 38px);
  background: #fffaf2;
}

.media-card img {
  aspect-ratio: 4 / 5;
  margin-bottom: 18px;
  object-fit: cover;
}

.answer-card span,
.signal-card span {
  display: inline-block;
  margin-bottom: 42px;
  color: var(--tomato);
  font-family: "Newsreader", Georgia, "Times New Roman", serif;
  font-size: 2rem;
}

.faq-section {
  background: #fffaf2;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.faq-list {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.faq-item {
  padding: clamp(24px, 4vw, 42px);
  background: var(--paper);
}

.faq-item h3 {
  max-width: 960px;
  font-family: "Newsreader", Georgia, "Times New Roman", serif;
  font-size: clamp(1.45rem, 2.2vw, 2.5rem);
  font-weight: 500;
  line-height: 1.12;
}

.faq-item p {
  max-width: 900px;
  margin-bottom: 0;
  color: var(--ink);
  font-size: 1.05rem;
}

.definition-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.definition-list div {
  padding: clamp(24px, 4vw, 40px);
  background: var(--paper);
}

.definition-list dt {
  margin-bottom: 12px;
  color: var(--ink);
  font-weight: 800;
}

.form-wrap {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(360px, 0.9fr);
  gap: clamp(34px, 7vw, 92px);
  align-items: start;
  padding: clamp(70px, 10vw, 140px) clamp(20px, 5vw, 76px);
}

.contact-form {
  display: grid;
  gap: 18px;
  padding: clamp(22px, 4vw, 40px);
  background: #fffaf2;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

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

label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-weight: 800;
  font-size: 0.86rem;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  padding: 12px 13px;
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink);
  font: inherit;
}

textarea {
  min-height: 170px;
  resize: vertical;
}

.honeypot {
  position: absolute;
  left: -100vw;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 28px clamp(20px, 5vw, 76px);
  background: var(--ink);
  color: var(--paper);
}

.site-footer p,
.site-footer a {
  margin: 0;
  color: rgba(247, 243, 235, 0.82);
}

.site-footer p:last-child {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

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

  .answer-hero,
  .form-wrap {
    grid-template-columns: 1fr;
  }

  .answer-grid,
  .signal-grid,
  .sitemap-grid,
  .definition-list {
    grid-template-columns: 1fr 1fr;
  }
}

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

  h1 {
    font-size: clamp(2.35rem, 11.6vw, 3.35rem);
    line-height: 1;
  }

  h2 {
    font-size: clamp(1.9rem, 9.5vw, 2.9rem);
    line-height: 1;
  }

  .answer-hero,
  .section,
  .form-wrap {
    padding-left: 20px;
    padding-right: 20px;
  }

  .answer-hero {
    gap: 26px;
    padding-top: 42px;
    padding-bottom: 52px;
  }

  .answer-hero img {
    max-height: 520px;
    object-fit: cover;
  }

  .section,
  .form-wrap {
    padding-top: 54px;
    padding-bottom: 54px;
  }

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

  .answer-grid,
  .signal-grid,
  .sitemap-grid,
  .definition-list,
  .field-grid {
    grid-template-columns: 1fr;
  }

  .answer-card,
  .signal-card,
  .sitemap-grid section {
    min-height: auto;
    padding: 24px;
  }

  .answer-card span,
  .signal-card span {
    margin-bottom: 24px;
  }

  .media-card img {
    aspect-ratio: 4 / 3;
    max-height: 360px;
  }

  .faq-item {
    padding: 24px;
  }

  .faq-item h3 {
    font-size: clamp(1.35rem, 7vw, 1.85rem);
  }

  .faq-item p,
  .lead {
    font-size: 1rem;
    line-height: 1.58;
  }

  .definition-list div {
    padding: 24px;
  }

  .button-row {
    display: grid;
    gap: 10px;
  }

  .site-footer {
    display: grid;
  }
}
