:root {
  --ink: #172126;
  --muted: #627078;
  --paper: #f8f5ee;
  --white: #ffffff;
  --copper: #b44b2b;
  --copper-dark: #7f2d1d;
  --teal: #17686f;
  --gold: #d9a441;
  --line: rgba(23, 33, 38, 0.14);
  --shadow: 0 20px 60px rgba(15, 25, 30, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.5;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 14px clamp(18px, 4vw, 56px);
  color: var(--white);
  background: linear-gradient(180deg, rgba(10, 16, 18, 0.76), rgba(10, 16, 18, 0.06));
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 238px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(12px);
}

.brand-mark {
  width: 42px;
  height: 34px;
  border: 3px solid currentColor;
  border-bottom: 8px solid currentColor;
  clip-path: polygon(50% 0, 100% 44%, 100% 100%, 0 100%, 0 44%);
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  color: var(--white);
  font-size: 1.18rem;
  line-height: 1;
}

.brand small {
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 800;
}

.nav-links {
  display: flex;
  gap: clamp(14px, 2.4vw, 34px);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.94rem;
}

.nav-links a,
.header-call {
  transition:
    color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.nav-links a:hover,
.header-call:hover {
  color: var(--white);
  transform: translateY(-1px);
}

.header-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  font-weight: 700;
  white-space: nowrap;
}

.hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: 84svh;
  overflow: hidden;
  color: var(--white);
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: 62% center;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(9, 16, 20, 0.88) 0%, rgba(9, 16, 20, 0.7) 40%, rgba(9, 16, 20, 0.18) 74%),
    linear-gradient(0deg, rgba(9, 16, 20, 0.72), rgba(9, 16, 20, 0.08) 38%);
}

.hero-content {
  position: relative;
  width: min(760px, calc(100% - 36px));
  margin-left: clamp(18px, 7vw, 92px);
  padding-top: 72px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

.brand-pill {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  margin: 0 0 14px;
  padding: 0 14px;
  border: 1px solid rgba(217, 164, 65, 0.72);
  border-radius: 999px;
  color: var(--ink);
  background: var(--gold);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.2);
  font-size: 0.86rem;
  font-weight: 950;
}

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

h1 {
  max-width: 720px;
  margin-bottom: 20px;
  font-size: clamp(2.45rem, 5.25vw, 4.35rem);
  line-height: 1;
  letter-spacing: 0;
}

h2 {
  max-width: 760px;
  margin-bottom: 0;
  font-size: clamp(2rem, 4vw, 3.65rem);
  line-height: 1.03;
  letter-spacing: 0;
}

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

.section-copy {
  max-width: 650px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.section-copy.inverted {
  color: rgba(255, 255, 255, 0.76);
}

.section-heading {
  display: grid;
  gap: 12px;
  margin-bottom: 34px;
}

.hero-copy {
  max-width: 640px;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.02rem, 2vw, 1.25rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 800;
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
}

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

.button.primary {
  color: var(--white);
  background: var(--copper);
  box-shadow: 0 12px 32px rgba(127, 45, 29, 0.32);
}

.button.primary:hover {
  background: var(--copper-dark);
}

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

.button.secondary.light {
  margin-top: 18px;
  border-color: rgba(255, 255, 255, 0.36);
}

.email-link {
  display: inline-flex;
  margin-top: 16px;
  color: var(--gold);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 620px;
  margin: 0;
}

.hero-stats div {
  padding: 13px 16px;
  border-left: 3px solid var(--gold);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(14px);
}

.hero-stats dt {
  font-size: 1.45rem;
  font-weight: 900;
}

.hero-stats dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
}

.trust-strip span {
  min-height: 74px;
  display: grid;
  place-items: center;
  padding: 12px 18px;
  background: var(--white);
  color: var(--teal);
  font-weight: 850;
  text-align: center;
}

.section {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(56px, 9vw, 116px) 0;
}

.split {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: start;
}

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

.service-card {
  min-height: 226px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 30px rgba(23, 33, 38, 0.06);
}

.service-card > span {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 22px;
  border-radius: 50%;
  color: var(--white);
  background: var(--teal);
  font-weight: 900;
}

.service-card p,
.steps p,
.work-list span {
  color: var(--muted);
}

.work-band {
  background:
    linear-gradient(135deg, rgba(23, 104, 111, 0.94), rgba(23, 33, 38, 0.96)),
    var(--teal);
  color: var(--white);
}

.work-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.78fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
}

.work-list {
  display: grid;
  gap: 12px;
}

.work-list article {
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.work-list strong,
.work-list span {
  display: block;
}

.work-list span {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.76);
}

.materials {
  display: grid;
}

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

.material-card {
  overflow: hidden;
  min-height: 250px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 30px rgba(23, 33, 38, 0.06);
}

.material-card h3,
.material-card p {
  padding-inline: 28px;
}

.material-card h3 {
  margin-top: 24px;
}

.material-card p {
  color: var(--muted);
  padding-bottom: 28px;
}

.package-image {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: #d8d8d8;
}

.metal-roof-visual {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.18) 0 2px, transparent 2px 24px, rgba(0, 0, 0, 0.22) 24px 28px, transparent 28px 64px),
    linear-gradient(135deg, #11191d, #39474d 42%, #1b262b);
  background-size: 92px 100%, 100% 100%;
}

.shingle-band {
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.shingle-layout {
  display: grid;
  gap: 28px;
}

.shingle-options {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.shingle-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 10px 30px rgba(23, 33, 38, 0.05);
}

.shingle-card h3,
.shingle-card p {
  padding-inline: 22px;
}

.shingle-card h3 {
  margin-top: 20px;
}

.shingle-card p {
  color: var(--muted);
  padding-bottom: 24px;
}

.shingle-product-image {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-bottom: 1px solid var(--line);
  background: #d8d8d8;
}

.custom-colour-card {
  border-style: dashed;
}

.custom-colour-sample {
  display: grid;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0 12%, transparent 12% 28%, rgba(255, 255, 255, 0.16) 28% 42%, transparent 42%),
    linear-gradient(135deg, #172126, #7f2d1d 34%, #d9a441 67%, #17686f);
}

.shingle-sample {
  display: block;
  height: 120px;
  border-bottom: 1px solid var(--line);
  background-size: 62px 34px, 100% 100%;
}

.dual-black {
  background:
    linear-gradient(135deg, transparent 0 45%, rgba(255, 255, 255, 0.1) 45% 58%, transparent 58%),
    repeating-linear-gradient(0deg, #111518 0 16px, #2a3033 16px 33px, #0a0d0f 33px 50px);
}

.weathered-wood {
  background:
    linear-gradient(135deg, transparent 0 45%, rgba(255, 255, 255, 0.13) 45% 58%, transparent 58%),
    repeating-linear-gradient(0deg, #5d564d 0 16px, #766f64 16px 33px, #474640 33px 50px);
}

.charcoal-grey {
  background:
    linear-gradient(135deg, transparent 0 45%, rgba(255, 255, 255, 0.12) 45% 58%, transparent 58%),
    repeating-linear-gradient(0deg, #242b2f 0 16px, #4f5a60 16px 33px, #343c41 33px 50px);
}

.driftwood {
  background:
    linear-gradient(135deg, transparent 0 45%, rgba(255, 255, 255, 0.13) 45% 58%, transparent 58%),
    repeating-linear-gradient(0deg, #70685c 0 16px, #8a8273 16px 33px, #514d45 33px 50px);
}

.dual-brown {
  background:
    linear-gradient(135deg, transparent 0 45%, rgba(255, 255, 255, 0.14) 45% 58%, transparent 58%),
    repeating-linear-gradient(0deg, #5a3d2e 0 16px, #7a5941 16px 33px, #3f2b22 33px 50px);
}

.harvard-slate {
  background:
    linear-gradient(135deg, transparent 0 45%, rgba(255, 255, 255, 0.12) 45% 58%, transparent 58%),
    repeating-linear-gradient(0deg, #3d4142 0 16px, #676764 16px 33px, #2f3335 33px 50px);
}

.process {
  display: grid;
  gap: 34px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  padding: 0;
  list-style: none;
  background: var(--line);
  border: 1px solid var(--line);
}

.steps li {
  min-height: 260px;
  padding: 26px;
  background: var(--paper);
}

.steps span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 26px;
  border: 2px solid var(--copper);
  border-radius: 50%;
  color: var(--copper);
  font-weight: 900;
}

.steps strong {
  display: block;
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.inspection-band {
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.inspection-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
}

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

.inspection-list article {
  min-height: 190px;
  padding: 24px;
  background: var(--paper);
}

.inspection-list span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--copper);
  font-size: 0.78rem;
  font-weight: 950;
}

.inspection-list strong {
  display: block;
  margin-bottom: 10px;
  font-size: 1.08rem;
}

.inspection-list p {
  color: var(--muted);
}

.values-band {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.56), rgba(248, 245, 238, 0.96)),
    var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.values-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
}

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

.values-grid article {
  min-height: 210px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 30px rgba(23, 33, 38, 0.05);
}

.values-grid span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 22px;
  border-radius: 50%;
  color: var(--white);
  background: var(--copper);
  font-weight: 900;
}

.values-grid p {
  color: var(--muted);
}

.proof-band {
  background: var(--white);
}

.proof-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: stretch;
}

.review-panel {
  position: relative;
  min-height: 330px;
  padding: clamp(28px, 5vw, 48px);
  border-radius: 8px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(127, 45, 29, 0.94), rgba(23, 104, 111, 0.92)),
    var(--teal);
}

.review-panel h2 {
  color: var(--white);
}

.quote-mark {
  margin: 0 0 6px;
  color: rgba(255, 255, 255, 0.56);
  font-family: Georgia, serif;
  font-size: 5rem;
  line-height: 0.7;
}

blockquote {
  margin: 0 0 22px;
  max-width: 720px;
  font-size: clamp(1.5rem, 3vw, 2.45rem);
  font-weight: 850;
  line-height: 1.08;
}

cite {
  color: rgba(255, 255, 255, 0.78);
  font-style: normal;
  font-weight: 800;
}

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

.proof-grid div {
  display: grid;
  align-content: center;
  min-height: 160px;
  padding: 24px;
  background: var(--paper);
}

.proof-grid strong {
  display: block;
  color: var(--teal);
  font-size: clamp(1.7rem, 3.4vw, 2.45rem);
  line-height: 1;
}

.proof-grid span {
  margin-top: 10px;
  color: var(--muted);
  font-weight: 800;
}

.faq {
  display: grid;
}

.faq-list {
  display: grid;
  gap: 10px;
}

details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 30px rgba(23, 33, 38, 0.05);
}

summary {
  cursor: pointer;
  padding: 22px 24px;
  color: var(--ink);
  font-weight: 900;
  list-style-position: outside;
}

details p {
  margin: 0;
  padding: 0 24px 24px;
  color: var(--muted);
}

.impact-section {
  display: grid;
}

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

.impact-card {
  min-height: 245px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(248, 245, 238, 0.96)),
    var(--white);
  box-shadow: 0 10px 30px rgba(23, 33, 38, 0.06);
}

.impact-card span {
  display: inline-flex;
  margin-bottom: 24px;
  color: var(--copper);
  font-size: 0.78rem;
  font-weight: 950;
}

.impact-card p {
  color: var(--muted);
}

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition:
    opacity 820ms ease,
    transform 820ms cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--delay, 0ms);
  will-change: opacity, transform;
}

.reveal[data-effect="from-left"],
.reveal[data-effect="slide"] {
  transform: translateX(-54px);
}

.reveal[data-effect="from-right"] {
  transform: translateX(54px);
}

.reveal[data-effect="from-bottom"] {
  transform: translateY(42px);
}

.reveal[data-effect="lift"] {
  transform: translateY(38px) scale(0.98);
}

.reveal[data-effect="zoom"] {
  transform: scale(0.9);
}

.reveal[data-effect="fade"] {
  transform: translateY(0);
}

.reveal.is-visible {
  opacity: 1;
  transform: translate(0, 0) scale(1);
}

.contact-band {
  color: var(--white);
  background: var(--ink);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.contact-layout p {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.76);
}

.estimate-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 28px;
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.form-intro {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.form-intro strong,
.form-intro span {
  display: block;
}

.form-intro strong {
  font-size: 1.18rem;
}

.form-intro span {
  color: var(--muted);
  font-weight: 800;
}

label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 800;
}

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

textarea {
  resize: vertical;
}

.wide,
.form-button {
  grid-column: 1 / -1;
}

.form-button {
  border: 0;
  cursor: pointer;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px 24px;
  padding: 26px clamp(18px, 4vw, 56px);
  color: rgba(255, 255, 255, 0.78);
  background: #0f171b;
}

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

.site-footer a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 880px) {
  .site-header {
    position: absolute;
    flex-wrap: wrap;
    gap: 12px;
  }

  .brand {
    min-width: 0;
  }

  .nav-links {
    order: 3;
    width: 100%;
    justify-content: space-between;
    overflow-x: auto;
  }

  .header-call {
    min-height: 38px;
    padding: 0 12px;
    font-size: 0.9rem;
  }

  .hero {
    min-height: 86svh;
  }

  .hero-content {
    width: min(680px, calc(100% - 32px));
    margin: 0 auto;
    padding-top: 132px;
    padding-bottom: 32px;
  }

  .hero-stats,
  .trust-strip,
  .split,
  .service-grid,
  .work-layout,
  .material-grid,
  .shingle-options,
  .steps,
  .inspection-layout,
  .inspection-list,
  .values-layout,
  .values-grid,
  .proof-layout,
  .impact-grid,
  .contact-layout,
  .estimate-form {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    max-width: 420px;
  }

  .trust-strip span {
    min-height: 58px;
  }

  .steps li {
    min-height: 0;
  }

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

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

  .brand small,
  .header-call {
    display: none;
  }

  .nav-links {
    font-size: 0.86rem;
  }

  .hero {
    min-height: auto;
  }

  .hero-content {
    padding-top: 122px;
    padding-bottom: 42px;
  }

  h1 {
    font-size: 2.4rem;
  }

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

  .hero-actions .button,
  .form-button {
    width: 100%;
  }

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

  .hero-stats div {
    padding: 10px 8px;
  }

  .hero-stats dt {
    font-size: 1.08rem;
  }

  .hero-stats dd {
    font-size: 0.74rem;
    line-height: 1.25;
  }

  .service-card,
  .material-card,
  .shingle-card,
  .inspection-list article,
  .values-grid article,
  .impact-card,
  .estimate-form {
    padding: 22px;
  }

  .shingle-card {
    padding: 0;
  }

  .material-card {
    padding: 0;
  }

  .material-card h3,
  .material-card p {
    padding-inline: 22px;
  }

  .material-card p {
    padding-bottom: 22px;
  }

  .shingle-sample {
    height: 104px;
  }

  .values-grid article {
    min-height: 0;
  }

  .inspection-list article {
    min-height: 0;
  }

  .impact-card {
    min-height: 0;
  }

  .material-card {
    min-height: 0;
  }

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

  .proof-grid div {
    min-height: 120px;
  }

  .form-intro {
    align-items: start;
    flex-direction: column;
  }

  .site-footer {
    display: grid;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .button,
  .nav-links a,
  .header-call {
    transition: none;
  }
}
