:root {
  --ink: #080b11;
  --navy: #0b1f3a;
  --navy-deep: #061225;
  --navy-soft: #16345d;
  --steel: #59718f;
  --muted: #627083;
  --line: rgba(8, 11, 17, 0.14);
  --paper: #f4f7fb;
  --white: #ffffff;
  --panel: #ebf0f6;
  --shadow: 0 24px 70px rgba(6, 18, 37, 0.18);
  --radius: 8px;
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(8, 11, 17, 0.04) 1px, transparent 1px),
    linear-gradient(rgba(8, 11, 17, 0.035) 1px, transparent 1px),
    var(--paper);
  background-size: 44px 44px;
  font-family: ui-sans-serif, "Avenir Next", "Segoe UI", Helvetica, sans-serif;
  line-height: 1.45;
}

body.nav-open {
  overflow: hidden;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

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

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: 5.8rem;
  line-height: 0.9;
}

h2 {
  margin-bottom: 16px;
  font-size: 3.7rem;
  line-height: 0.98;
}

h3 {
  margin-bottom: 9px;
  font-size: 1.1rem;
  line-height: 1.15;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 48px;
  color: var(--white);
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled,
body.nav-open .site-header {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 10px 36px rgba(6, 18, 37, 0.12);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  background: var(--white);
  border-radius: 14px;
  box-shadow: 0 12px 28px rgba(6, 18, 37, 0.22);
  overflow: hidden;
}

.brand-mark img {
  display: block;
  width: 100%;
  height: 100%;
}

.brand-copy {
  display: grid;
  gap: 0;
  line-height: 1;
}

.brand-copy strong {
  font-size: 1.34rem;
  font-weight: 950;
}

.brand-copy small {
  margin-top: 4px;
  color: currentColor;
  opacity: 0.72;
  font-size: 0.74rem;
  font-weight: 850;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 0.94rem;
  font-weight: 800;
}

.site-nav a,
.contact-menu summary {
  position: relative;
}

.site-nav a:not(.nav-cta)::after {
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  content: "";
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.site-nav a:not(.nav-cta):hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.contact-menu {
  position: relative;
}

.contact-menu summary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  list-style: none;
}

.contact-menu summary::-webkit-details-marker {
  display: none;
}

.contact-menu summary::after {
  content: "+";
  font-size: 0.85rem;
  line-height: 1;
}

.contact-menu[open] summary::after {
  content: "-";
}

.contact-dropdown {
  position: absolute;
  top: calc(100% + 16px);
  right: 0;
  z-index: 24;
  display: grid;
  gap: 6px;
  min-width: 230px;
  padding: 10px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.contact-dropdown a {
  display: block;
  padding: 10px 12px;
  background: var(--panel);
  border-radius: var(--radius);
  font-weight: 900;
}

.contact-dropdown a::after {
  display: none;
}

.nav-cta {
  padding: 10px 15px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.54);
  border-radius: 999px;
}

.site-header.is-scrolled .nav-cta,
body.nav-open .site-header .nav-cta {
  color: var(--white);
  background: var(--navy);
  border-color: var(--navy);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  color: inherit;
  background: transparent;
  border: 1px solid currentColor;
  border-radius: 50%;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 92svh;
  display: grid;
  align-items: end;
  padding: 132px 64px 42px;
  color: var(--white);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(6, 18, 37, 0.96), rgba(6, 18, 37, 0.78) 34%, rgba(6, 18, 37, 0.22) 70%),
    linear-gradient(0deg, rgba(6, 18, 37, 0.65), transparent 42%),
    url("assets/lintwell-hero-photo.png");
  background-position: center;
  background-size: cover;
  transform: scale(1.012);
}

.hero-content {
  position: relative;
  width: min(760px, 100%);
}

.hero h1 {
  max-width: 680px;
  font-size: 5.25rem;
  line-height: 0.86;
}

.hero h1 span {
  display: block;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--steel);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow,
.final-cta .eyebrow {
  color: #c6d7eb;
}

.hero-copy {
  max-width: 620px;
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.83);
  font-size: 1.18rem;
}

.hero-fire-note {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  width: min(620px, 100%);
  margin: 0 0 26px;
  padding: 14px 16px;
  color: var(--white);
  background: rgba(6, 18, 37, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-left: 4px solid #c6d7eb;
  border-radius: var(--radius);
  backdrop-filter: blur(14px);
}

.hero-fire-note strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.28rem;
  line-height: 0.9;
}

.hero-fire-note p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.94rem;
  font-weight: 800;
  line-height: 1.28;
}

.hero-actions,
.final-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 950;
  line-height: 1;
  transition: transform 150ms ease, box-shadow 150ms ease, background 150ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  color: var(--white);
  background: var(--navy-soft);
  box-shadow: 0 16px 34px rgba(6, 18, 37, 0.28);
}

.button.secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.34);
}

.button.light {
  color: var(--navy);
  background: var(--white);
  box-shadow: 0 16px 34px rgba(6, 18, 37, 0.22);
}

.button-icon {
  display: grid;
  width: 23px;
  height: 23px;
  place-items: center;
  color: var(--navy);
  background: var(--white);
  border-radius: 50%;
  font-size: 0.9rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(620px, 100%);
  margin: 44px 0 0;
  padding: 1px;
  background: rgba(255, 255, 255, 0.28);
  border-radius: var(--radius);
  overflow: hidden;
}

.hero-stats div {
  padding: 16px;
  background: rgba(8, 11, 17, 0.56);
  backdrop-filter: blur(12px);
}

.hero-stats dt {
  margin-bottom: 5px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.74rem;
  font-weight: 850;
  text-transform: uppercase;
}

.hero-stats dd {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
  font-weight: 800;
}

.quote-band {
  display: grid;
  grid-template-columns: minmax(240px, 0.33fr) minmax(0, 1fr);
  gap: 28px;
  width: min(1380px, calc(100% - 24px));
  margin: -28px auto 0;
  padding: 36px;
  position: relative;
  z-index: 3;
  scroll-margin-top: 150px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.section-heading.compact {
  margin: 0;
}

.section-heading.compact h2 {
  font-size: 2.35rem;
}

.section-heading.compact p:last-child {
  font-size: 0.94rem;
  line-height: 1.38;
  margin-bottom: 0;
}

.quote-form {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  column-gap: 14px;
  row-gap: 8px;
  align-self: start;
  align-items: start;
}

.quote-form > label {
  grid-column: span 1;
}

.quote-actions {
  grid-column: 3 / span 2;
  grid-row: 2;
  align-self: end;
}

.plan-label {
  grid-column: 1 / span 2;
  grid-row: 2;
}

label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 950;
  text-transform: uppercase;
}

select,
input,
textarea {
  min-width: 0;
  width: 100%;
  min-height: 58px;
  padding: 0 16px;
  color: var(--ink);
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-size: 1rem;
  outline: none;
}

.plan-label select {
  color: var(--white);
  background: var(--navy);
  border-color: var(--navy);
  font-weight: 950;
}

textarea {
  height: 58px;
  min-height: 58px;
  padding-top: 14px;
  overflow-y: auto;
  resize: none;
}

.details-field {
  height: 58px;
  min-height: 58px;
  font-size: 0.93rem;
  font-weight: 950;
  line-height: 1.18;
  overflow-y: hidden;
}

select:focus,
input:focus,
textarea:focus {
  border-color: var(--navy-soft);
  box-shadow: 0 0 0 3px rgba(22, 52, 93, 0.14);
}

.address-field {
  position: relative;
  display: block;
}

.address-suggestions {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  z-index: 80;
  display: grid;
  gap: 4px;
  max-height: 252px;
  margin: 0;
  padding: 6px;
  overflow-y: auto;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  font-family: Inter, Arial, sans-serif;
  text-transform: none;
}

.address-suggestions[hidden] {
  display: none;
}

.address-suggestion {
  display: grid;
  gap: 2px;
  width: 100%;
  padding: 11px 12px;
  text-align: left;
  color: var(--muted);
  background: transparent;
  border: 0;
  border-radius: 6px;
  font: inherit;
  line-height: 1.25;
  cursor: pointer;
}

.address-suggestion:hover,
.address-suggestion.is-active {
  background: var(--panel);
}

.address-suggestion-main {
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 950;
}

.address-suggestion-secondary {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 750;
}

.quote-submit {
  width: 100%;
  border: 0;
  cursor: pointer;
}

.quote-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.quote-actions .button {
  min-height: 58px;
  padding-inline: 16px;
}

.quote-actions .button.secondary {
  color: var(--ink);
  background: var(--panel);
  border-color: var(--line);
}

.section {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding: 110px 0 0;
}

.section-heading {
  max-width: 790px;
  margin-bottom: 34px;
}

.section-heading p {
  max-width: 670px;
  color: var(--muted);
  font-size: 1.04rem;
}

.services-grid,
.pricing-grid,
.signs-grid,
.faq-grid {
  display: grid;
  gap: 14px;
}

.services-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.pricing-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.pricing-grid-simple {
  grid-template-columns: minmax(280px, 460px);
}

.pricing-section {
  scroll-margin-top: 120px;
}

.pricing-section .section-heading {
  max-width: 820px;
}

.pricing-offer {
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
  padding: 16px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(11, 31, 58, 0.98), rgba(22, 52, 93, 0.94)),
    var(--navy);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  box-shadow: 0 20px 54px rgba(6, 18, 37, 0.22);
}

.pricing-offer span {
  display: block;
  margin-bottom: 4px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.74rem;
  font-weight: 950;
  text-transform: uppercase;
}

.pricing-offer strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  line-height: 1.02;
}

.pricing-offer .button {
  flex: 0 0 auto;
  white-space: nowrap;
}

.pricing-section .pricing-grid {
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: 16px;
  align-items: stretch;
}

.signs-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.faq-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.services-grid article,
.signs-grid article,
.price-card,
.proof-summary article,
.proof-photo-card,
.steps-list article,
.faq-grid article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.84);
}

.services-grid article {
  min-height: 238px;
  padding: 20px;
}

.signs-grid article {
  min-height: 174px;
  padding: 18px;
}

.signs-grid span {
  display: inline-block;
  margin-bottom: 34px;
  color: var(--steel);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.15rem;
  font-weight: 800;
  line-height: 0.9;
}

.signs-grid h3 {
  margin-bottom: 0;
}

.service-icon,
.price-size,
.proof-label {
  width: fit-content;
  padding: 6px 9px;
  color: var(--white);
  background: var(--navy);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 950;
  line-height: 1;
  text-transform: uppercase;
}

.service-icon {
  display: inline-block;
  margin-bottom: 42px;
  color: var(--navy);
  background: #dce6f2;
}

.services-grid p,
.price-card p,
.steps-list p,
.proof-summary p,
.proof-photo-card p,
.faq-grid p {
  color: var(--muted);
}

.price-card {
  min-height: 262px;
  display: flex;
  flex-direction: column;
  padding: 22px;
}

.price-card.featured {
  color: var(--white);
  background: var(--navy);
  border-color: transparent;
  box-shadow: 0 18px 50px rgba(6, 18, 37, 0.24);
}

.price-card.featured p {
  color: rgba(255, 255, 255, 0.78);
}

.price-card strong {
  margin-top: 6px;
  margin-bottom: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.7rem, 6vw, 4.45rem);
  line-height: 1;
}

.price-card strong span {
  margin-left: 6px;
  font-family: ui-sans-serif, "Avenir Next", "Segoe UI", Helvetica, sans-serif;
  font-size: 0.98rem;
  font-weight: 900;
}

.price-size {
  margin-bottom: 24px;
}

.featured .price-size {
  color: var(--navy);
  background: var(--white);
}

.price-card ul {
  display: grid;
  gap: 9px;
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}

.price-card li {
  position: relative;
  padding-left: 22px;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 800;
}

.price-card li::before {
  position: absolute;
  left: 0;
  top: 0.52em;
  width: 9px;
  height: 9px;
  content: "";
  background: var(--steel);
  border-radius: 50%;
  transform: translateY(-50%);
}

.price-card.featured li {
  color: rgba(255, 255, 255, 0.84);
}

.price-card.featured li::before {
  background: var(--white);
}

.price-card .button {
  width: 100%;
  margin-top: auto;
}

.pricing-section .price-card:not(.featured) .button.secondary {
  color: var(--navy);
  background: var(--panel);
  border-color: var(--line);
}

.standard-card {
  background: rgba(255, 255, 255, 0.92);
}

.pricing-addons {
  display: grid;
  grid-template-columns: minmax(230px, 0.34fr) minmax(0, 1fr);
  gap: 18px;
  margin-top: 18px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.66);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.pricing-addons h3 {
  margin-bottom: 8px;
  font-size: 1.5rem;
}

.addon-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.addon-grid article {
  min-height: 178px;
  padding: 15px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.addon-grid span {
  display: inline-block;
  margin-bottom: 18px;
  padding: 6px 8px;
  color: var(--navy);
  background: #dce6f2;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 950;
  line-height: 1;
  text-transform: uppercase;
}

.addon-grid h4 {
  margin: 0 0 8px;
  font-size: 1rem;
  line-height: 1.12;
}

.addon-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 760;
  line-height: 1.35;
}

.split-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding: 92px 0 0;
}

.split-section .section-heading {
  max-width: 790px;
  margin-bottom: 0;
}

.sticky-heading {
  position: static;
  top: auto;
  align-self: start;
}

.steps-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.steps-list article {
  min-height: 188px;
  padding: 20px;
}

.steps-list span {
  display: inline-block;
  margin-bottom: 24px;
  color: var(--steel);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.45rem;
  line-height: 0.8;
}

.service-strip {
  display: flex;
  width: 100%;
  gap: 1px;
  margin: 82px 0 0;
  color: var(--white);
  background: var(--ink);
  overflow-x: auto;
}

.split-section + .proof-section {
  padding-top: 86px;
}

.service-strip span {
  flex: 0 0 auto;
  padding: 18px 38px;
  background: rgba(255, 255, 255, 0.06);
  font-weight: 900;
  white-space: nowrap;
}

.proof-layout {
  display: grid;
  grid-template-columns: minmax(240px, 0.72fr) minmax(0, 1.28fr);
  gap: 18px;
  align-items: start;
}

.proof-summary {
  display: grid;
  gap: 10px;
}

.proof-label {
  color: var(--navy);
  background: #dce6f2;
}

.proof-summary article {
  min-height: 76px;
  padding: 12px 14px;
  border-color: rgba(22, 52, 93, 0.2);
  box-shadow: 0 10px 24px rgba(6, 18, 37, 0.06);
}

.proof-summary h3,
.proof-photo-card h3 {
  margin-bottom: 0;
}

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

.proof-photo-card {
  min-height: 0;
  padding: 10px;
  border-color: rgba(22, 52, 93, 0.28);
  box-shadow: 0 16px 34px rgba(6, 18, 37, 0.08);
}

.photo-comparison {
  position: relative;
  display: grid;
  min-height: 0;
  aspect-ratio: 16 / 10;
  margin-bottom: 12px;
  overflow: hidden;
  background: var(--ink);
  border-radius: var(--radius);
}

.photo-comparison img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.single-photo img {
  aspect-ratio: 16 / 10;
}

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

.split-photo figure {
  position: relative;
  min-width: 0;
  height: 100%;
  margin: 0;
  overflow: hidden;
}

.paired-source figure img {
  position: absolute;
  top: 0;
  width: 200%;
  max-width: none;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.paired-source .source-before img {
  left: 0;
}

.paired-source .source-after img {
  left: -100%;
}

.lint-screen-crop.paired-source figure img {
  top: -8%;
  width: 400%;
  height: 116%;
}

.lint-screen-crop.paired-source .source-before img {
  left: 0;
}

.lint-screen-crop.paired-source .source-after img {
  left: -300%;
}

.split-photo figcaption {
  position: absolute;
  left: 8px;
  bottom: 16px;
  padding: 5px 8px;
  color: var(--white);
  background: rgba(8, 11, 17, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 999px;
  font-size: 0.62rem;
  font-weight: 950;
  line-height: 1;
  text-transform: uppercase;
}

.proof-photo-card p {
  margin-bottom: 0;
  font-size: 0.82rem;
  font-weight: 950;
  text-transform: uppercase;
}

.faq-grid article {
  padding: 20px;
  min-height: 178px;
}

.area-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 880px;
}

.area-list span {
  padding: 10px 14px;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-weight: 950;
}

.final-cta {
  flex-direction: column;
  justify-content: center;
  width: min(var(--max), calc(100% - 36px));
  margin: 110px auto 0;
  min-height: 390px;
  padding: 72px;
  color: var(--white);
  text-align: center;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 42%),
    linear-gradient(135deg, var(--navy), var(--ink));
  border-radius: var(--radius);
}

.final-cta h2 {
  max-width: 760px;
  margin-bottom: 4px;
}

.final-cta p {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.78);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding: 34px 0 90px;
  color: var(--muted);
}

.site-footer strong {
  color: var(--ink);
}

.site-footer p {
  margin: 4px 0 0;
}

.site-footer a {
  color: var(--navy);
  font-weight: 950;
}

.mobile-quote-bar {
  display: none;
}

@media (max-width: 1040px) {
  .site-header {
    padding-inline: 24px;
  }

  .services-grid,
  .signs-grid,
  .pricing-grid {
    grid-template-columns: 1fr 1fr;
  }

  .quote-form {
    grid-template-columns: 1fr 1fr;
  }

  .quote-form > label {
    grid-column: span 1;
  }

  .quote-actions {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .plan-label {
    grid-column: 1 / -1;
    grid-row: auto;
  }
}

@media (max-width: 940px) {
  h1 {
    font-size: 4.2rem;
  }

  .hero h1 {
    font-size: 4.2rem;
  }

  h2 {
    font-size: 3rem;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: 94px 18px auto;
    display: grid;
    gap: 0;
    padding: 10px;
    color: var(--ink);
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transform: translateY(-16px);
    opacity: 0;
    pointer-events: none;
    transition: transform 160ms ease, opacity 160ms ease;
  }

  body.nav-open .site-nav {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav a {
    padding: 14px;
  }

  .contact-menu.nav-cta {
    padding: 0;
  }

  .contact-menu summary {
    display: flex;
    justify-content: space-between;
    padding: 14px;
  }

  .contact-dropdown {
    position: static;
    min-width: 0;
    margin: 0 0 10px;
    box-shadow: none;
  }

  .site-nav a:not(:last-child) {
    border-bottom: 1px solid var(--line);
  }

  .nav-cta {
    margin-top: 10px;
    text-align: center;
  }

  .quote-band,
  .split-section,
  .proof-layout {
    grid-template-columns: 1fr;
  }

  .pricing-grid,
  .signs-grid,
  .faq-grid {
    grid-template-columns: 1fr 1fr;
  }

  .pricing-addons {
    grid-template-columns: 1fr;
  }

  .addon-grid {
    grid-template-columns: 1fr 1fr;
  }

  .steps-list {
    grid-template-columns: 1fr;
  }

  .sticky-heading {
    position: static;
  }
}

@media (max-width: 640px) {
  h1 {
    font-size: 3.15rem;
  }

  .hero h1 {
    font-size: 3.05rem;
    line-height: 0.88;
  }

  h2,
  .section-heading.compact h2 {
    font-size: 2.25rem;
  }

  .site-header {
    padding: 12px 14px;
  }

  .brand-mark {
    width: 46px;
    height: 46px;
  }

  .brand-copy strong {
    font-size: 1.1rem;
  }

  .brand-copy small {
    font-size: 0.66rem;
  }

  .hero {
    min-height: 90svh;
    padding: 116px 18px 30px;
  }

  .hero-bg {
    background-image:
      linear-gradient(90deg, rgba(6, 18, 37, 0.96), rgba(6, 18, 37, 0.75) 58%, rgba(6, 18, 37, 0.2)),
      linear-gradient(0deg, rgba(6, 18, 37, 0.55), transparent 44%),
      url("assets/lintwell-hero-photo.png");
    background-position: 62% center;
  }

  .hero-copy {
    font-size: 1rem;
  }

  .hero-fire-note {
    grid-template-columns: 1fr;
    gap: 6px;
    margin-bottom: 20px;
    padding: 13px;
  }

  .hero-fire-note strong {
    font-size: 2rem;
  }

  .hero-fire-note p {
    font-size: 0.86rem;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-stats {
    display: none;
  }

  .quote-band {
    width: calc(100% - 24px);
    margin-top: 12px;
    padding: 22px;
  }

  .quote-form,
  .services-grid,
  .signs-grid,
  .pricing-grid,
  .proof-photo-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .pricing-section .pricing-grid,
  .addon-grid {
    grid-template-columns: 1fr;
  }

  .pricing-offer {
    display: grid;
    gap: 14px;
  }

  .pricing-offer .button {
    width: 100%;
  }

  .quote-form > label,
  .address-label,
  .details-label,
  .details-field,
  .plan-label,
  .quote-actions {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .quote-actions {
    grid-template-columns: 1fr;
  }

  .section,
  .split-section,
  .final-cta,
  .site-footer {
    width: calc(100% - 24px);
  }

  .section,
  .split-section {
    padding-top: 78px;
  }

  .service-strip {
    margin-top: 78px;
  }

  .proof-standard {
    grid-template-columns: 1fr;
  }

  .price-card {
    min-height: 220px;
  }

  .final-cta {
    margin-top: 78px;
    padding: 34px 22px;
  }

  .site-footer {
    display: block;
    padding-bottom: 112px;
  }

  .mobile-quote-bar {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 18;
    display: block;
    opacity: 0;
    pointer-events: none;
    transform: translateY(18px);
    transition: opacity 160ms ease, transform 160ms ease;
  }

  body.show-mobile-quote .mobile-quote-bar {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .mobile-quote-bar .button {
    width: 100%;
  }
}
