:root {
  color-scheme: light;
  --ink: #101614;
  --charcoal: #242927;
  --ivory: #f5f0e8;
  --paper: #fffdf8;
  --walnut: #b87742;
  --walnut-dark: #704626;
  --gold: #d9a441;
  --sage: #6f8572;
  --sage-dark: #46584a;
  --line: #ddd5c8;
  --muted: #776f66;
  --white: #ffffff;
  --shadow: 0 24px 80px rgba(16, 22, 20, .16);
  --radius: 8px;
  --header-h: 74px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 8% 18%, rgba(111, 133, 114, .12), transparent 26rem),
    linear-gradient(180deg, var(--paper), #f6f1e9 42%, var(--paper));
  color: var(--ink);
  font-family: Inter, Manrope, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: 0;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

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

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

button {
  letter-spacing: 0;
}

:focus-visible {
  outline: 3px solid rgba(217, 164, 65, .9);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  z-index: 30;
  top: 12px;
  left: 12px;
  transform: translateY(-150%);
  background: var(--ink);
  color: var(--paper);
  padding: .7rem 1rem;
  border-radius: var(--radius);
}

.skip-link:focus {
  transform: translateY(0);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.wrap {
  width: min(1160px, calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 20;
  height: var(--header-h);
  border-bottom: 1px solid rgba(255, 255, 255, .14);
  background: rgba(16, 22, 20, .62);
  color: var(--paper);
  backdrop-filter: blur(18px);
  transition: background .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.site-header.is-scrolled {
  background: rgba(255, 253, 248, .92);
  color: var(--ink);
  border-color: rgba(16, 22, 20, .08);
  box-shadow: 0 12px 40px rgba(16, 22, 20, .08);
}

.nav {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  min-height: 44px;
  font-weight: 500;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
}

.brand-mark svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.brand-mark circle {
  transform-origin: center;
  animation: markSun .7s ease both .18s;
}

.brand-name {
  font-size: 1.18rem;
}

.brand-name strong {
  font-weight: 800;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: .25rem;
}

.nav-menu a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: .6rem .9rem;
  border-radius: var(--radius);
  color: currentColor;
  opacity: .9;
  transition: background .2s ease, opacity .2s ease, transform .2s ease;
}

.nav-menu a:hover {
  background: rgba(217, 164, 65, .16);
  opacity: 1;
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid currentColor;
  border-radius: var(--radius);
  color: currentColor;
  background: transparent;
  cursor: pointer;
}

.menu-toggle svg {
  width: 23px;
  height: 23px;
}

.hero {
  position: relative;
  min-height: 88svh;
  display: grid;
  align-items: end;
  padding: calc(var(--header-h) + 64px) 0 58px;
  overflow: hidden;
  background: var(--ink);
  color: var(--paper);
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.04);
  animation: heroSettle 1.4s ease forwards;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(16, 22, 20, .82), rgba(16, 22, 20, .48) 45%, rgba(16, 22, 20, .16)),
    linear-gradient(180deg, rgba(16, 22, 20, .48), transparent 38%, rgba(16, 22, 20, .74));
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  align-items: end;
  gap: 2rem;
}

.hero-copy {
  max-width: 760px;
}

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

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

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

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: 0;
  line-height: .96;
}

h1 {
  margin-bottom: 1rem;
  font-size: 6.4rem;
}

h2 {
  margin-bottom: 1.1rem;
  font-size: 3.45rem;
}

h3 {
  margin-bottom: .55rem;
  font-size: 1.18rem;
  line-height: 1.2;
}

.hero-lead {
  max-width: 620px;
  color: rgba(255, 253, 248, .88);
  font-size: 1.18rem;
}

.hero-actions,
.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  align-items: center;
}

.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: .82rem 1.05rem;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  transition: transform .18s ease, background .18s ease, color .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.btn svg {
  width: 1.05rem;
  height: 1.05rem;
  flex: 0 0 auto;
}

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

.btn-primary {
  background: var(--gold);
  color: var(--ink);
  box-shadow: 0 12px 28px rgba(217, 164, 65, .28);
}

.btn-primary:hover {
  background: #efc463;
}

.btn-light {
  border-color: rgba(255, 253, 248, .52);
  color: var(--paper);
  background: rgba(255, 253, 248, .1);
}

.btn-light:hover {
  background: rgba(255, 253, 248, .2);
}

.btn-ghost {
  border-color: var(--line);
  color: var(--ink);
  background: transparent;
}

.btn-ghost:hover {
  border-color: var(--sage);
  background: rgba(111, 133, 114, .12);
}

.hero-panel {
  display: grid;
  gap: .75rem;
  align-self: end;
  padding: 1rem;
  border: 1px solid rgba(255, 253, 248, .22);
  border-radius: var(--radius);
  background: rgba(16, 22, 20, .46);
  backdrop-filter: blur(18px);
}

.hero-panel div {
  padding: .85rem;
  border-radius: 6px;
  background: rgba(255, 253, 248, .08);
}

.hero-panel span {
  display: block;
  margin-bottom: .25rem;
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  line-height: 1;
}

.hero-panel p {
  margin: 0;
  color: rgba(255, 253, 248, .82);
  font-size: .9rem;
}

.service-strip {
  border-block: 1px solid var(--line);
  background: rgba(255, 253, 248, .86);
}

.strip-track {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .7rem;
  overflow-x: auto;
  scrollbar-width: thin;
}

.strip-track span {
  flex: 0 0 auto;
  padding: .6rem .85rem;
  border: 1px solid rgba(16, 22, 20, .1);
  border-radius: var(--radius);
  color: var(--charcoal);
  background: var(--white);
  font-size: .9rem;
  font-weight: 750;
}

.section {
  padding: 96px 0;
}

.intro-grid,
.compare-grid,
.materials-grid,
.quote-grid {
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(0, 1.12fr);
  gap: 3rem;
  align-items: center;
}

.section-copy p,
.section-heading p,
.quote-copy p {
  color: var(--muted);
  font-size: 1.04rem;
}

.section-heading {
  max-width: 730px;
  margin-bottom: 2rem;
}

.craft-image,
.material-panel,
.compare-tool {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.craft-image {
  aspect-ratio: 16 / 10;
}

.craft-image img,
.material-panel > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.projects-section {
  background:
    linear-gradient(180deg, #f3eee5, var(--paper)),
    radial-gradient(circle at right top, rgba(217, 164, 65, .14), transparent 22rem);
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
  margin-bottom: 1.4rem;
}

.filter-btn {
  min-height: 42px;
  padding: .62rem .9rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .72);
  color: var(--charcoal);
  cursor: pointer;
  transition: background .18s ease, color .18s ease, border-color .18s ease, transform .18s ease;
}

.filter-btn:hover,
.filter-btn.is-active {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
  transform: translateY(-1px);
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-flow: dense;
  gap: 1rem;
}

.project-card {
  min-height: 260px;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--charcoal);
  box-shadow: 0 18px 60px rgba(16, 22, 20, .12);
}

.project-card[hidden] {
  display: none;
}

.project-large {
  grid-column: span 2;
  grid-row: span 2;
  min-height: 536px;
}

.project-open {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: inherit;
  display: block;
  padding: 0;
  border: 0;
  color: var(--paper);
  background: var(--charcoal);
  text-align: left;
  cursor: pointer;
}

.project-open::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 42%, rgba(16, 22, 20, .78));
  opacity: .92;
  transition: opacity .25s ease;
}

.project-open:hover::after {
  opacity: 1;
}

.project-open img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s ease, filter .25s ease;
}

.project-open:hover img {
  transform: scale(1.045);
  filter: saturate(1.05);
}

.position-left {
  object-position: 25% center;
}

.position-right {
  object-position: 78% center;
}

.position-center {
  object-position: center;
}

.position-low {
  object-position: center bottom;
}

.project-info {
  position: absolute;
  z-index: 1;
  inset: auto 1rem 1rem;
  display: grid;
  gap: .18rem;
  transform: translateY(4px);
  transition: transform .25s ease;
}

.project-open:hover .project-info {
  transform: translateY(0);
}

.project-info strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.55rem;
  font-weight: 500;
  line-height: 1.05;
}

.project-info small {
  color: rgba(255, 253, 248, .78);
}

.compare-section {
  background: var(--ink);
  color: var(--paper);
}

.compare-section .section-copy p:not(.eyebrow) {
  color: rgba(255, 253, 248, .74);
}

.compare-section .eyebrow.dark {
  color: var(--gold);
}

.compare-tool {
  background: #0d1110;
}

.compare-visual {
  --split: inherit;
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.compare-base,
.compare-finish,
.compare-finish img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.compare-base,
.compare-finish img {
  object-fit: cover;
}

.compare-base {
  filter: grayscale(.2) contrast(.88) brightness(.78);
}

.compare-finish {
  clip-path: inset(0 calc(100% - var(--split)) 0 0);
}

.compare-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--split);
  width: 2px;
  background: var(--gold);
  box-shadow: 0 0 0 1px rgba(16, 22, 20, .2), 0 0 22px rgba(217, 164, 65, .5);
}

.compare-divider::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 38px;
  height: 38px;
  transform: translate(-50%, -50%);
  border: 2px solid var(--gold);
  border-radius: 50%;
  background: rgba(16, 22, 20, .72);
}

.compare-label {
  position: absolute;
  top: 1rem;
  z-index: 2;
  padding: .45rem .6rem;
  border: 1px solid rgba(255, 253, 248, .22);
  border-radius: var(--radius);
  background: rgba(16, 22, 20, .66);
  color: var(--paper);
  font-size: .78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.compare-label-left {
  left: 1rem;
}

.compare-label-right {
  right: 1rem;
}

.range-label {
  display: block;
  padding: .95rem 1rem .2rem;
  color: rgba(255, 253, 248, .72);
  font-size: .85rem;
  font-weight: 800;
}

#compareRange {
  width: calc(100% - 2rem);
  margin: 0 1rem 1rem;
  accent-color: var(--gold);
}

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

.process-card {
  min-height: 244px;
  padding: 1.2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .7);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.process-card:hover {
  transform: translateY(-4px);
  border-color: rgba(111, 133, 114, .45);
  box-shadow: 0 18px 50px rgba(16, 22, 20, .08);
}

.process-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 1.2rem;
  border-radius: var(--radius);
  background: var(--sage);
  color: var(--paper);
  font-weight: 900;
}

.process-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.materials-section {
  background: #eef0ea;
}

.materials-grid {
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
}

.swatches {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
  margin-top: 1.2rem;
}

.swatch {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .58rem .75rem;
  border: 1px solid rgba(16, 22, 20, .14);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--charcoal);
  cursor: pointer;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.swatch span {
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background: var(--swatch);
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, .14);
}

.swatch:hover,
.swatch.is-selected {
  transform: translateY(-1px);
  border-color: var(--sage-dark);
  box-shadow: 0 10px 30px rgba(16, 22, 20, .08);
}

.material-panel {
  aspect-ratio: 16 / 11;
}

.material-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(16, 22, 20, .72));
}

.material-card {
  position: absolute;
  z-index: 1;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  display: grid;
  gap: .2rem;
  padding: 1rem;
  border: 1px solid rgba(255, 253, 248, .18);
  border-radius: var(--radius);
  color: var(--paper);
  background: rgba(16, 22, 20, .56);
  backdrop-filter: blur(14px);
}

.material-card span {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
}

.material-card small {
  color: rgba(255, 253, 248, .74);
}

.quote-section {
  background:
    linear-gradient(135deg, var(--paper), #f3eee6 58%, #eef0ea);
}

.quote-grid {
  grid-template-columns: minmax(0, .9fr) minmax(320px, 1.1fr);
  align-items: start;
}

.quote-proof {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
  margin-top: 1.4rem;
}

.quote-proof span {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  padding: .45rem .7rem;
  border: 1px solid rgba(111, 133, 114, .28);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .6);
  color: var(--sage-dark);
  font-weight: 750;
  font-size: .86rem;
}

.quote-card {
  display: grid;
  gap: 1rem;
  padding: 1.2rem;
  border: 1px solid rgba(16, 22, 20, .1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .82);
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  gap: .45rem;
}

.form-row.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .8rem;
}

.form-row label {
  color: var(--charcoal);
  font-size: .86rem;
  font-weight: 850;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--ink);
  padding: .82rem .88rem;
  transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
}

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

input:focus,
select:focus,
textarea:focus {
  border-color: var(--sage);
  box-shadow: 0 0 0 4px rgba(111, 133, 114, .13);
}

.is-invalid {
  border-color: #a94536;
  background: #fff7f4;
}

.estimate {
  display: grid;
  gap: .25rem;
  padding: 1rem;
  border: 1px solid rgba(111, 133, 114, .28);
  border-radius: var(--radius);
  background: #eef0ea;
}

.estimate span {
  color: var(--sage-dark);
  font-size: .82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.estimate strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.05;
}

.estimate small {
  color: var(--muted);
}

.form-status {
  min-height: 1.45rem;
  margin: 0;
  color: var(--sage-dark);
  font-weight: 750;
}

.site-footer {
  padding: 32px 0;
  background: var(--ink);
  color: var(--paper);
}

.footer-grid {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1rem;
  align-items: center;
}

.footer-grid p {
  margin: 0;
  color: rgba(255, 253, 248, .7);
}

.footer-link {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: .6rem .8rem;
  border: 1px solid rgba(255, 253, 248, .22);
  border-radius: var(--radius);
  color: var(--paper);
}

.project-dialog {
  position: relative;
  width: min(920px, calc(100% - 32px));
  padding: 0;
  border: 0;
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--ink);
  box-shadow: 0 28px 120px rgba(0, 0, 0, .34);
  overflow: hidden;
}

.project-dialog::backdrop {
  background: rgba(16, 22, 20, .68);
  backdrop-filter: blur(8px);
}

.project-dialog[open] {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, .9fr);
}

.project-dialog img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.dialog-copy {
  padding: 2rem;
  align-self: center;
}

.dialog-copy h2 {
  font-size: 2.55rem;
}

.dialog-copy p:not(.eyebrow) {
  color: var(--muted);
}

.dialog-close {
  position: absolute;
  z-index: 2;
  top: .8rem;
  right: .8rem;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(16, 22, 20, .12);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, .86);
  color: var(--ink);
  cursor: pointer;
}

.dialog-close svg {
  width: 21px;
  height: 21px;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes heroSettle {
  to {
    transform: scale(1);
  }
}

@keyframes markSun {
  from {
    opacity: 0;
    transform: scale(.35);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

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

  h2 {
    font-size: 2.75rem;
  }

  .hero-grid,
  .intro-grid,
  .compare-grid,
  .materials-grid,
  .quote-grid {
    grid-template-columns: 1fr;
  }

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

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

  .project-large {
    grid-column: span 2;
    min-height: 430px;
  }

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

@media (max-width: 720px) {
  :root {
    --header-h: 66px;
  }

  .wrap {
    width: min(100% - 28px, 640px);
  }

  .menu-toggle {
    display: grid;
    place-items: center;
  }

  .nav-menu {
    position: fixed;
    top: var(--header-h);
    right: 14px;
    left: 14px;
    display: grid;
    gap: .35rem;
    padding: .7rem;
    border: 1px solid rgba(16, 22, 20, .1);
    border-radius: var(--radius);
    background: rgba(255, 253, 248, .96);
    color: var(--ink);
    box-shadow: var(--shadow);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s ease, transform .2s ease;
  }

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

  .nav-menu a {
    padding: .85rem;
  }

  .hero {
    min-height: 86svh;
    padding: calc(var(--header-h) + 44px) 0 36px;
  }

  .hero-shade {
    background:
      linear-gradient(180deg, rgba(16, 22, 20, .7), rgba(16, 22, 20, .34) 34%, rgba(16, 22, 20, .88)),
      linear-gradient(90deg, rgba(16, 22, 20, .62), transparent);
  }

  h1 {
    font-size: 3.55rem;
  }

  h2 {
    font-size: 2.2rem;
    line-height: 1.03;
  }

  .hero-lead {
    font-size: 1.03rem;
  }

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

  .strip-track {
    min-height: 68px;
  }

  .section {
    padding: 72px 0;
  }

  .project-grid,
  .process-grid,
  .form-row.two {
    grid-template-columns: 1fr;
  }

  .project-large {
    grid-column: span 1;
    min-height: 360px;
  }

  .project-card {
    min-height: 300px;
  }

  .project-info strong {
    font-size: 1.35rem;
  }

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

  .project-dialog[open] {
    grid-template-columns: 1fr;
  }

  .project-dialog img {
    min-height: 260px;
    max-height: 44svh;
  }

  .dialog-copy {
    padding: 1.25rem;
  }
}

@media (max-width: 430px) {
  .hero-actions,
  .form-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  h1 {
    font-size: 3.1rem;
  }

  .estimate strong {
    font-size: 1.55rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .001ms !important;
  }

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