*, *::before, *::after {
  box-sizing: border-box;
}

:root {
  --brand: #f0a500;
  --brand-dark: #c98400;
  --deep: #1f534e;
  --deep-dark: #153a37;
  --ink: #171717;
  --ink-soft: #3d4542;
  --muted: #6e7470;
  --line: #deded7;
  --paper: #ffffff;
  --surface: #f7f7f2;
  --surface-strong: #eeeeE6;
  --footer: #222222;
  --shadow: 0 14px 34px rgba(17, 24, 22, 0.1);
  --container: min(1200px, calc(100% - 40px));
  --font: "Plus Jakarta Sans", Arial, Helvetica, sans-serif;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.58;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

button {
  cursor: pointer;
}

h1,
h2,
h3,
p,
li,
a,
strong {
  overflow-wrap: break-word;
}

:focus-visible {
  outline: 3px solid var(--brand);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 999;
  transform: translateY(-160%);
  background: var(--deep);
  color: var(--paper);
  padding: 0.75rem 1rem;
  border-radius: 4px;
  font-weight: 800;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid rgba(31, 83, 78, 0.12);
  box-shadow: 0 6px 22px rgba(17, 24, 22, 0.05);
  backdrop-filter: blur(12px);
}

.site-header.is-scrolled {
  box-shadow: 0 12px 32px rgba(17, 24, 22, 0.12);
}

.navbar {
  width: var(--container);
  height: 92px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand img {
  width: 184px;
  max-height: 78px;
  object-fit: contain;
  border-radius: 3px;
}

.nav-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.4rem;
  flex: 1;
  min-width: 0;
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  min-height: 92px;
  margin: 0;
  padding: 0;
}

.nav-links > li {
  position: relative;
}

.nav-links > li > a {
  display: flex;
  align-items: center;
  height: 92px;
  padding: 0 0.82rem;
  color: #4a4a4a;
  font-size: 0.94rem;
  font-weight: 700;
  white-space: nowrap;
  transition: color 0.2s ease;
}

.nav-links > li > a:hover,
.nav-links > li:focus-within > a {
  color: var(--deep);
}

.has-dropdown > a::after {
  content: "";
  width: 6px;
  height: 6px;
  margin-left: 0.45rem;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
}

.dropdown {
  position: absolute;
  top: 92px;
  left: 0;
  z-index: 10;
  width: 236px;
  list-style: none;
  margin: 0;
  padding: 0.45rem 0;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.dropdown a {
  display: block;
  padding: 0.68rem 1rem;
  color: #303534;
  font-size: 0.88rem;
  font-weight: 700;
}

.dropdown a:hover {
  background: var(--deep);
  color: var(--paper);
}

.site-search {
  display: flex;
  align-items: center;
  width: 198px;
  height: 34px;
  border: 1px solid var(--deep);
  border-radius: 999px;
  overflow: hidden;
  background: var(--paper);
  flex: 0 0 auto;
}

.site-search:focus-within {
  box-shadow: 0 0 0 3px rgba(31, 83, 78, 0.16);
}

.site-search label {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.site-search input {
  width: 100%;
  min-width: 0;
  height: 100%;
  border: 0;
  outline: 0;
  padding: 0 0.75rem;
  background: transparent;
  color: var(--ink);
  font-size: 0.82rem;
}

.site-search button {
  width: 42px;
  height: 100%;
  border: 0;
  display: grid;
  place-items: center;
  background: var(--deep);
  color: var(--paper);
  flex: 0 0 auto;
}

.site-search svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  margin-left: auto;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--paper);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.menu-toggle span {
  width: 22px;
  height: 2px;
  border-radius: 2px;
  background: var(--deep);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 610px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--paper);
}

.hero-bg,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-bg {
  background-image: url("../img/hero-project.jpg");
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.58) 48%, rgba(0, 0, 0, 0.18) 100%),
    linear-gradient(0deg, rgba(31, 83, 78, 0.16), rgba(31, 83, 78, 0.04));
}

.hero-content {
  position: relative;
  width: var(--container);
  max-width: 100%;
  margin: 0 auto;
  padding: 5rem 0;
}

.eyebrow,
.section-kicker {
  margin: 0 0 0.75rem;
  color: var(--brand);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1,
.section-head h2,
.product-copy h2,
.quote-banner h2,
.contact-copy h2 {
  margin: 0;
  line-height: 1.16;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 760px;
  font-size: 3.85rem;
  font-weight: 800;
}

.hero-text {
  max-width: 650px;
  margin: 1rem 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.05rem;
}

.hero-checks {
  list-style: none;
  display: grid;
  gap: 0.65rem;
  margin: 1.55rem 0 0;
  padding: 0;
}

.hero-checks li {
  position: relative;
  padding-left: 1.75rem;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 700;
  font-size: 0.94rem;
}

.hero-checks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.24rem;
  width: 18px;
  height: 18px;
  border: 1.5px solid var(--brand);
  border-radius: 3px;
  background:
    linear-gradient(135deg, transparent 47%, var(--brand) 48% 58%, transparent 59%),
    linear-gradient(45deg, transparent 52%, var(--brand) 53% 63%, transparent 64%);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.85rem 1.45rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  font-size: 0.9rem;
  white-space: nowrap;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

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

.btn-primary,
.btn-submit {
  background: var(--brand);
  color: var(--ink);
}

.btn-primary:hover,
.btn-submit:hover {
  background: #ffc44d;
}

.btn-ghost {
  color: var(--paper);
  border-color: rgba(255, 255, 255, 0.48);
  background: rgba(255, 255, 255, 0.08);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.18);
}

.btn-light {
  color: var(--deep);
  background: var(--paper);
}

.section {
  padding: 5.2rem 0;
}

.section-head {
  width: var(--container);
  max-width: 100%;
  margin: 0 auto 2.5rem;
}

.centered {
  text-align: center;
}

.section-head h2 {
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
  color: var(--ink);
  font-size: 2.35rem;
  font-weight: 800;
}

.section-head p {
  max-width: 760px;
  margin: 0.9rem auto 0;
  color: var(--muted);
}

.all-in-one {
  padding: 4rem 0 4.4rem;
  background: var(--paper);
}

.highlight-grid {
  width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.highlight-card {
  border: 1px solid var(--line);
  background: var(--paper);
  box-shadow: 0 8px 20px rgba(17, 24, 22, 0.06);
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.highlight-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.highlight-card img {
  width: 100%;
  height: 205px;
  object-fit: cover;
}

.highlight-card h2 {
  margin: 1.1rem 1.15rem 0;
  color: var(--deep);
  font-size: 1.15rem;
  line-height: 1.25;
}

.highlight-card p {
  margin: 0.6rem 1.15rem 1.25rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.categories-section {
  background: var(--surface);
}

.category-columns {
  width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border: 1px solid var(--line);
  background: var(--paper);
}

.category-column {
  min-height: 320px;
  display: grid;
  align-content: space-between;
  padding: 1.35rem;
}

.category-column + .category-column {
  border-left: 1px solid var(--line);
}

.category-column ul {
  list-style: none;
  display: grid;
  gap: 0.55rem;
  margin: 0;
  padding: 0;
}

.category-column li {
  color: var(--muted);
  font-size: 0.88rem;
}

.category-column h3 {
  margin: 2rem 0 0;
  color: var(--deep);
  font-size: 1.08rem;
}

.category-column h3::before {
  content: "";
  display: block;
  width: 32px;
  height: 3px;
  margin-bottom: 0.75rem;
  background: var(--brand);
}

.process-section {
  background: var(--paper);
}

.steps {
  width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border: 1px solid var(--line);
  background: var(--paper);
}

.step {
  min-height: 250px;
  padding: 1.35rem;
}

.step + .step {
  border-left: 1px solid var(--line);
}

.step span {
  display: inline-block;
  margin-bottom: 1.25rem;
  color: var(--brand-dark);
  font-size: 0.76rem;
  font-weight: 800;
}

.step h3 {
  margin: 0;
  color: var(--deep);
  font-size: 1rem;
  line-height: 1.3;
}

.step p {
  margin: 0.75rem 0 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.why-section,
.advice-section {
  background: var(--surface);
}

.why-grid {
  width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.why-card {
  min-height: 245px;
  padding: 1.2rem;
  border: 1px solid var(--line);
  background: var(--paper);
}

.why-card img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
}

.why-card h3 {
  margin: 0;
  color: var(--deep);
  font-size: 1rem;
}

.why-card p {
  margin: 0.65rem 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.quote-banner {
  min-height: 300px;
  display: grid;
  place-items: center;
  color: var(--paper);
  background:
    linear-gradient(rgba(20, 57, 54, 0.88), rgba(20, 57, 54, 0.88)),
    url("../img/service-interieur.jpg") center/cover;
}

.quote-banner-inner {
  width: var(--container);
  text-align: center;
}

.quote-banner h2 {
  max-width: 880px;
  margin: 0 auto;
  font-size: 2rem;
  font-weight: 800;
}

.quote-banner .btn {
  margin-top: 1.5rem;
}

.products-section {
  background: var(--paper);
}

.product-layout {
  width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 2rem;
  align-items: start;
}

.product-copy {
  position: sticky;
  top: 116px;
}

.product-copy h2 {
  color: var(--ink);
  font-size: 2.35rem;
  font-weight: 800;
}

.product-copy p {
  margin: 0.9rem 0 0;
  color: var(--muted);
}

.product-copy ul {
  list-style: none;
  display: grid;
  gap: 0.65rem;
  margin: 1.3rem 0 0;
  padding: 0;
}

.product-copy li {
  position: relative;
  padding-left: 1.25rem;
  color: var(--ink-soft);
  font-weight: 700;
  font-size: 0.92rem;
}

.product-copy li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--brand);
}

.product-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.product-card {
  display: grid;
  align-content: start;
  border: 1px solid var(--line);
  background: var(--paper);
  min-width: 0;
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

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

.product-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.product-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

.product-card h3 {
  margin: 1rem 1rem 0;
  color: var(--deep);
  font-size: 1rem;
}

.product-card p {
  margin: 0.55rem 1rem 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.product-card a {
  justify-self: start;
  margin: 0.9rem 1rem 1rem;
  color: var(--brand-dark);
  font-size: 0.82rem;
  font-weight: 800;
}

.search-empty {
  width: var(--container);
  margin: 1rem auto 0;
  padding: 1rem;
  border: 1px solid var(--line);
  color: var(--muted);
  background: var(--surface);
}

.advice-grid {
  width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.advice-card {
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line);
}

.advice-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}

.advice-card div {
  padding: 1.15rem;
}

.advice-card time {
  color: var(--brand-dark);
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
}

.advice-card h3 {
  margin: 0.55rem 0 0;
  min-height: 78px;
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.45;
}

.advice-card a {
  display: inline-flex;
  margin-top: 1rem;
  color: var(--deep);
  font-size: 0.82rem;
  font-weight: 800;
}

.advice-card a::after {
  content: ">";
  margin-left: 0.35rem;
}

.contact-section {
  padding: 5.2rem 0;
  background: var(--paper);
}

.contact-inner {
  width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 3rem;
  align-items: start;
}

.contact-copy h2 {
  color: var(--deep);
  font-size: 2.45rem;
  font-weight: 800;
}

.contact-copy > p:not(.section-kicker) {
  color: var(--muted);
}

.contact-list {
  display: grid;
  gap: 0.8rem;
  margin-top: 1.8rem;
}

.contact-list a,
.contact-list p {
  display: block;
  margin: 0;
  padding: 1rem;
  border-left: 4px solid var(--brand);
  background: var(--surface);
}

.contact-list span {
  display: block;
  margin-bottom: 0.2rem;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-list strong {
  color: var(--ink);
  font-size: 0.98rem;
}

.quote-form {
  padding: 1.55rem;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.quote-form h3 {
  margin: 0;
  color: var(--deep);
  font-size: 1.18rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
}

.field {
  display: grid;
  gap: 0.35rem;
  margin-top: 0.95rem;
}

.field label {
  color: var(--ink-soft);
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--paper);
  color: var(--ink);
  padding: 0.82rem 0.9rem;
  outline: 0;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--deep);
  box-shadow: 0 0 0 3px rgba(31, 83, 78, 0.16);
}

.field textarea {
  min-height: 132px;
  resize: vertical;
}

.btn-submit {
  width: 100%;
  margin-top: 1rem;
  border: 0;
}

.form-status {
  min-height: 1.3rem;
  margin: 0.75rem 0 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.form-status a {
  color: var(--deep);
  font-weight: 800;
  text-decoration: underline;
}

.site-footer {
  padding: 4rem 0 1.4rem;
  color: var(--paper);
  background: var(--footer);
}

.footer-inner {
  width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.35fr 0.85fr 0.85fr 1fr;
  gap: 2.3rem;
}

.footer-brand img {
  width: 178px;
  border-radius: 3px;
}

.footer-brand p,
.footer-col p {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.88rem;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.social-links a {
  padding: 0.4rem 0.55rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.76rem;
  font-weight: 700;
}

.footer-col {
  display: grid;
  gap: 0.55rem;
  align-content: start;
}

.footer-col h2 {
  margin: 0 0 0.55rem;
  color: var(--paper);
  font-size: 0.92rem;
}

.footer-col a {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.84rem;
}

.footer-col a:hover,
.social-links a:hover {
  color: var(--brand);
}

.footer-bottom {
  width: var(--container);
  margin: 2.5rem auto 0;
  padding-top: 1.35rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.82rem;
  text-align: center;
}

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

.reveal.is-visible,
.no-js .reveal {
  opacity: 1;
  transform: none;
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

@media (max-width: 1140px) {
  .navbar {
    gap: 1rem;
  }

  .brand img {
    width: 160px;
  }

  .nav-links > li > a {
    padding: 0 0.56rem;
    font-size: 0.88rem;
  }

  .site-search {
    width: 168px;
  }

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

  .category-column + .category-column {
    border-left: 0;
  }

  .category-column {
    border-left: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

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

  .step + .step {
    border-left: 0;
  }

  .step {
    border-left: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .product-layout {
    grid-template-columns: 1fr;
  }

  .product-copy {
    position: static;
  }
}

@media (max-width: 940px) {
  html {
    scroll-padding-top: 78px;
  }

  .navbar {
    height: 74px;
  }

  .brand img {
    width: 132px;
    max-height: 64px;
  }

  .menu-toggle {
    display: flex;
  }

  .nav-panel {
    position: fixed;
    top: 74px;
    left: 0;
    right: 0;
    max-height: calc(100svh - 74px);
    overflow-y: auto;
    display: grid;
    gap: 1rem;
    padding: 1rem 20px 1.25rem;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    transform: translateY(-130%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.22s ease, opacity 0.22s ease;
  }

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

  .nav-links {
    display: grid;
    min-height: 0;
  }

  .nav-links > li > a {
    height: auto;
    padding: 0.72rem 0;
  }

  .dropdown {
    position: static;
    width: 100%;
    box-shadow: none;
    transform: none;
    opacity: 1;
    pointer-events: auto;
    display: grid;
    background: var(--surface);
  }

  .site-search {
    width: 100%;
  }

  .hero {
    min-height: 560px;
  }

  .hero h1 {
    max-width: 560px;
    font-size: 2.65rem;
  }

  .section-head h2,
  .product-copy h2,
  .contact-copy h2 {
    font-size: 2rem;
  }

  .highlight-grid,
  .why-grid,
  .product-list,
  .advice-grid,
  .contact-inner,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .category-columns,
  .steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  :root {
    --container: min(1200px, calc(100% - 28px));
  }

  .section,
  .contact-section {
    padding: 3.8rem 0;
  }

  .all-in-one {
    padding: 3.2rem 0;
  }

  .hero {
    min-height: auto;
  }

  .hero-content {
    padding: 4rem 0 4.6rem;
  }

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

  .hero-text {
    font-size: 0.98rem;
  }

  .hero-actions,
  .form-row,
  .category-columns,
  .steps {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    display: grid;
  }

  .btn {
    width: 100%;
  }

  .category-column,
  .step {
    min-height: 0;
    border-left: 0;
  }

  .quote-banner h2 {
    font-size: 1.45rem;
  }

  .quote-form {
    padding: 1rem;
  }
}

@media (max-width: 420px) {
  .brand img {
    width: 124px;
  }

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

  .section-head h2,
  .product-copy h2,
  .contact-copy h2 {
    font-size: 1.7rem;
  }

  .contact-list strong {
    overflow-wrap: anywhere;
  }
}
