:root {
  --ink: #17211d;
  --ink-soft: #3c4841;
  --white: #ffffff;
  --paper: #f8f8f5;
  --mist: #eef2ef;
  --wood: #b9824e;
  --copper: #bd5c36;
  --forest: #244c3d;
  --stone: #d9ddd7;
  --line: rgba(23, 33, 29, 0.14);
  --shadow: 0 22px 70px rgba(18, 26, 23, 0.18);
  --radius: 8px;
  --max: 1120px;
  --header-max: 1240px;
  --page-hero-image: url("assets/HARDWOOD%20FLOORING%20/project-herringbone-wood.jpg");
}

* {
  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;
}

body.nav-open {
  overflow: hidden;
}

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

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

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

button {
  cursor: pointer;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: min(calc(100% - 32px), var(--header-max));
  margin: 16px auto 0;
  padding: 10px 12px;
  color: var(--white);
  background: rgba(23, 33, 29, 0.42);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius);
  backdrop-filter: blur(18px);
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  border-color: rgba(23, 33, 29, 0.12);
  box-shadow: 0 12px 34px rgba(16, 22, 19, 0.12);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
  font-weight: 800;
}

.brand-logo {
  width: 76px;
  height: 50px;
  object-fit: cover;
  object-position: center;
  padding: 0;
  background: var(--white);
  border-radius: 7px;
  filter: drop-shadow(0 1px 0 rgba(255, 255, 255, 0.2));
}

.brand-text {
  display: grid;
  gap: 2px;
  line-height: 1;
}

.brand-name {
  color: var(--ink);
  font-size: 1rem;
  font-weight: 950;
}

.brand-line {
  color: var(--md-secondary, var(--copper));
  font-size: 0.78rem;
  font-weight: 850;
}

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

.site-footer .brand-line {
  color: #f2b070;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.8rem;
  font-weight: 700;
}

.site-nav a {
  padding: 10px 8px;
  border-radius: 7px;
  opacity: 0.9;
  transition: background 160ms ease, opacity 160ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: rgba(255, 255, 255, 0.14);
  opacity: 1;
}

.site-nav a[aria-current="page"] {
  background: rgba(255, 255, 255, 0.18);
  opacity: 1;
}

.site-header.is-scrolled .site-nav a:hover,
.site-header.is-scrolled .site-nav a:focus-visible,
.site-header.is-scrolled .site-nav a[aria-current="page"],
.site-header.is-open .site-nav a:hover,
.site-header.is-open .site-nav a:focus-visible,
.site-header.is-open .site-nav a[aria-current="page"] {
  background: rgba(36, 76, 61, 0.1);
}

.site-nav .nav-cta {
  color: var(--white);
  background: var(--copper);
  opacity: 1;
}

.site-nav .nav-cta:hover,
.site-nav .nav-cta:focus-visible {
  background: #a84928;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 7px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.section-wrap {
  width: min(calc(100% - 32px), var(--max));
  margin-inline: auto;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

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

.hero-image {
  object-fit: cover;
  object-position: 50% 60%;
}

.hero-scrim {
  background:
    linear-gradient(90deg, rgba(13, 18, 16, 0.82) 0%, rgba(13, 18, 16, 0.58) 34%, rgba(13, 18, 16, 0.12) 74%),
    linear-gradient(0deg, rgba(13, 18, 16, 0.66) 0%, rgba(13, 18, 16, 0) 46%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
  padding: 150px 0 42px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--copper);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero .eyebrow,
.quote .eyebrow {
  color: #f2b070;
}

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

h1 {
  max-width: 780px;
  margin-bottom: 22px;
  font-size: clamp(3rem, 6.8vw, 6.8rem);
  line-height: 0.92;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(1.9rem, 3.3vw, 3.25rem);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.2rem;
  line-height: 1.18;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 660px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
  border: 1px solid transparent;
  border-radius: 7px;
  font-weight: 850;
  line-height: 1;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

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

.button-primary {
  color: var(--white);
  background: var(--copper);
  box-shadow: 0 14px 34px rgba(189, 92, 54, 0.34);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #a84928;
}

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

.button-secondary:hover,
.button-secondary:focus-visible {
  background: rgba(255, 255, 255, 0.18);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(100%, 920px);
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(18px);
}

.hero-stats div {
  padding: 18px;
  background: rgba(15, 21, 18, 0.44);
}

.hero-stats dt {
  margin-bottom: 4px;
  color: #f4c091;
  font-weight: 900;
}

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

.page-hero {
  padding: 132px 0 64px;
  color: var(--white);
  background:
    linear-gradient(120deg, rgba(23, 33, 29, 0.94), rgba(36, 76, 61, 0.88)),
    var(--page-hero-image) center / cover;
}

.page-hero-inner {
  max-width: 920px;
}

.page-hero h1 {
  max-width: 860px;
  margin-bottom: 18px;
  font-size: clamp(2.65rem, 5vw, 5rem);
  line-height: 0.98;
}

.page-hero p:not(.eyebrow) {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.05rem, 1.8vw, 1.3rem);
}

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

.intro {
  padding: 68px 0 58px;
}

.intro-copy {
  display: grid;
  grid-template-columns: minmax(190px, 0.42fr) minmax(0, 1.58fr);
  gap: 28px;
  align-items: baseline;
  margin-bottom: 26px;
}

.intro-copy h2 {
  max-width: 760px;
}

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

.intro-grid article {
  min-height: 208px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 40px rgba(26, 37, 32, 0.06);
}

.renovation-scope {
  padding: 72px 0;
  background: var(--white);
}

.renovation-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.renovation-grid article {
  min-height: 220px;
  padding: 24px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.renovation-grid p {
  color: var(--ink-soft);
}

.intro-grid h2 {
  margin-bottom: 12px;
  font-size: 1.34rem;
  line-height: 1.16;
}

.card-kicker {
  display: inline-block;
  margin-bottom: 22px;
  color: var(--copper);
  font-size: 0.84rem;
  font-weight: 900;
}

.intro-grid p,
.service-card p,
.section-heading p,
.process p,
.materials-panel p,
.faq p,
.site-footer p {
  color: var(--ink-soft);
}

.services {
  padding: 72px 0;
  background: var(--ink);
  color: var(--white);
}

.services-inner {
  display: grid;
  gap: 34px;
}

.section-heading {
  max-width: 760px;
}

.services .section-heading p,
.services .service-card p,
.services .service-card li {
  color: rgba(255, 255, 255, 0.76);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 18px;
  align-items: stretch;
}

.service-card {
  overflow: hidden;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
}

.featured-card {
  background: rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow);
}

.service-media {
  min-height: 188px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.service-photo {
  width: 100%;
  height: 230px;
  object-fit: cover;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.wood-media {
  background:
    linear-gradient(125deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0)),
    repeating-linear-gradient(90deg, #80552f 0 18px, #b87b43 18px 38px, #d3a069 38px 56px, #916236 56px 74px);
}

.tile-media {
  background:
    linear-gradient(135deg, rgba(36, 76, 61, 0.3), rgba(189, 92, 54, 0.24)),
    linear-gradient(90deg, transparent 31%, rgba(255, 255, 255, 0.88) 31% 32%, transparent 32% 65%, rgba(255, 255, 255, 0.88) 65% 66%, transparent 66%),
    linear-gradient(0deg, transparent 31%, rgba(255, 255, 255, 0.88) 31% 32%, transparent 32% 65%, rgba(255, 255, 255, 0.88) 65% 66%, transparent 66%),
    #bec7c1;
}

.repair-media {
  background:
    linear-gradient(45deg, rgba(23, 33, 29, 0.1) 25%, transparent 25% 75%, rgba(23, 33, 29, 0.1) 75%),
    linear-gradient(45deg, rgba(23, 33, 29, 0.1) 25%, transparent 25% 75%, rgba(23, 33, 29, 0.1) 75%),
    linear-gradient(135deg, #d4c2a2, #86958b);
  background-position: 0 0, 18px 18px, 0 0;
  background-size: 36px 36px, 36px 36px, auto;
}

.service-card-body {
  padding: 26px;
}

.service-card h2 {
  margin-bottom: 12px;
  font-size: 1.28rem;
  line-height: 1.18;
}

.text-link {
  display: inline-flex;
  margin-top: 18px;
  color: #f2b070;
  font-weight: 900;
}

.text-link:hover,
.text-link:focus-visible {
  color: var(--white);
}

.service-tag {
  margin-bottom: 12px;
  color: #f2b070;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.service-card li {
  position: relative;
  padding-left: 18px;
}

.service-card li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 7px;
  height: 7px;
  background: #f2b070;
  border-radius: 50%;
  transform: translateY(-50%);
}

.work {
  padding: 72px 0;
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.52fr);
  gap: 30px;
  align-items: end;
  max-width: none;
  margin-bottom: 26px;
}

.split-heading p {
  margin-bottom: 22px;
}

.showcase-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  grid-auto-rows: minmax(220px, auto);
  gap: 18px;
}

.showcase {
  position: relative;
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  padding: 28px;
  color: var(--white);
  background: var(--forest);
  border-radius: var(--radius);
  isolation: isolate;
}

.showcase::before,
.showcase::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
}

.showcase::before {
  opacity: 0.92;
}

.showcase::after {
  background: linear-gradient(0deg, rgba(10, 14, 12, 0.82), rgba(10, 14, 12, 0.18));
}

.showcase-photo::before {
  display: none;
}

.showcase-image {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.showcase-large {
  grid-row: span 2;
  min-height: 520px;
}

.showcase-large::before {
  background:
    linear-gradient(110deg, rgba(36, 76, 61, 0.3), rgba(189, 92, 54, 0.18)),
    repeating-linear-gradient(96deg, #6f4729 0 18px, #ac7240 18px 42px, #cf9b64 42px 64px, #87572f 64px 88px);
}

.showcase-tile::before {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.18), transparent),
    linear-gradient(90deg, transparent 48%, rgba(255, 255, 255, 0.72) 48% 50%, transparent 50%),
    linear-gradient(0deg, transparent 48%, rgba(255, 255, 255, 0.72) 48% 50%, transparent 50%),
    #83918b;
  background-size: auto, 76px 76px, 76px 76px, auto;
}

.showcase-backsplash::before {
  background:
    linear-gradient(135deg, rgba(189, 92, 54, 0.24), rgba(36, 76, 61, 0.18)),
    repeating-linear-gradient(0deg, transparent 0 34px, rgba(255, 255, 255, 0.82) 34px 36px),
    repeating-linear-gradient(90deg, #c7d0ca 0 68px, #aebbb3 68px 136px, #d9ddd7 136px 204px);
}

.showcase-commercial::before {
  background:
    linear-gradient(135deg, rgba(23, 33, 29, 0.34), rgba(189, 92, 54, 0.2)),
    repeating-linear-gradient(90deg, #6e7772 0 40px, #929c96 40px 80px);
}

.showcase span {
  margin-bottom: 10px;
  color: #f2b070;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.showcase h3 {
  max-width: 620px;
  margin-bottom: 0;
  font-size: clamp(1.35rem, 2.2vw, 2.25rem);
  line-height: 1.06;
}

.showcase h2 {
  max-width: 620px;
  margin-bottom: 0;
  font-size: clamp(1.35rem, 2.2vw, 2.25rem);
  line-height: 1.06;
}

.process {
  padding: 72px 0;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(36, 76, 61, 0.96), rgba(23, 33, 29, 0.98)),
    var(--forest);
}

.process-inner {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 42px;
  align-items: start;
}

.process .section-heading {
  position: sticky;
  top: 110px;
}

.process .section-heading p,
.process p {
  color: rgba(255, 255, 255, 0.76);
}

.timeline {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: process;
}

.timeline li {
  position: relative;
  min-height: 156px;
  padding: 26px 28px 24px 92px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
}

.timeline li::before {
  counter-increment: process;
  content: counter(process, decimal-leading-zero);
  position: absolute;
  top: 26px;
  left: 28px;
  color: #f2b070;
  font-size: 1.15rem;
  font-weight: 950;
}

.timeline span {
  display: block;
  margin-bottom: 8px;
  color: #f2b070;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.materials {
  padding: 72px 0;
  background: var(--white);
}

.materials-panel {
  display: grid;
  grid-template-columns: 0.82fr 1fr;
  gap: 34px;
  align-items: center;
}

.material-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.material-list span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 10px 14px;
  color: var(--ink);
  background: var(--mist);
  border: 1px solid var(--line);
  border-radius: 7px;
  font-weight: 800;
}

.project-preview {
  padding: 0 0 72px;
}

.faq-gallery,
.quote-gallery {
  padding-top: 72px;
}

.image-card-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  grid-auto-rows: minmax(260px, auto);
  gap: 16px;
}

.image-card {
  position: relative;
  min-height: 260px;
  margin: 0;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
  border-radius: var(--radius);
  box-shadow: 0 18px 44px rgba(26, 37, 32, 0.12);
}

.image-card-large {
  grid-row: span 2;
  min-height: 536px;
}

.image-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 240ms ease;
}

.image-card:hover img {
  transform: scale(1.03);
}

.image-card figcaption {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  padding: 12px 14px;
  color: var(--white);
  background: rgba(16, 22, 18, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 7px;
  backdrop-filter: blur(14px);
  font-weight: 850;
}

.home-pages {
  padding: 0 0 72px;
}

.page-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 16px;
}

.page-card {
  display: flex;
  min-height: 210px;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  color: var(--white);
  background:
    linear-gradient(145deg, rgba(23, 33, 29, 0.74), rgba(36, 76, 61, 0.9)),
    repeating-linear-gradient(90deg, #6f4729 0 18px, #ac7240 18px 42px, #cf9b64 42px 64px, #87572f 64px 88px);
  border-radius: var(--radius);
  box-shadow: 0 18px 40px rgba(26, 37, 32, 0.09);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.page-card:hover,
.page-card:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 24px 56px rgba(26, 37, 32, 0.16);
}

.page-card span {
  margin-bottom: 14px;
  color: #f2b070;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.page-card h3 {
  margin-bottom: 0;
}

.home-cta {
  padding: 62px 0;
  color: var(--white);
  background: var(--forest);
}

.home-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.home-cta h2 {
  max-width: 760px;
  margin-bottom: 0;
}

.home-cta .button {
  min-width: 190px;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.designs {
  padding: 72px 0;
}

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

.design-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 44px rgba(26, 37, 32, 0.08);
}

.design-card-photo img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.design-card-body {
  padding: 24px;
}

.design-card span,
.pattern-card h3 {
  color: var(--copper);
}

.design-card span {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.design-card h2 {
  margin-bottom: 12px;
  font-size: 1.45rem;
  line-height: 1.08;
}

.design-card p,
.pattern-card p,
.process-photo-grid p {
  color: var(--ink-soft);
}

.pattern-library {
  padding: 72px 0;
  background: var(--white);
}

.pattern-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.pattern-card {
  padding: 18px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.pattern-card h3 {
  margin-bottom: 8px;
  font-size: 1.08rem;
  font-weight: 950;
}

.pattern-card p {
  margin-bottom: 0;
  font-size: 0.94rem;
}

.pattern-swatch {
  height: 148px;
  margin-bottom: 16px;
  overflow: hidden;
  background-color: #d8c3a2;
  border: 1px solid rgba(23, 33, 29, 0.16);
  border-radius: 7px;
}

.swatch-herringbone {
  background:
    linear-gradient(45deg, transparent 42%, rgba(23, 33, 29, 0.18) 43% 45%, transparent 46%),
    linear-gradient(-45deg, transparent 42%, rgba(23, 33, 29, 0.18) 43% 45%, transparent 46%),
    repeating-linear-gradient(90deg, #a87846 0 22px, #d0a36d 22px 44px, #8f6038 44px 66px);
  background-size: 58px 58px, 58px 58px, auto;
}

.swatch-chevron {
  background:
    linear-gradient(135deg, transparent 47%, rgba(23, 33, 29, 0.24) 48% 52%, transparent 53%),
    linear-gradient(45deg, transparent 47%, rgba(23, 33, 29, 0.24) 48% 52%, transparent 53%),
    repeating-linear-gradient(90deg, #b8844f 0 42px, #d5ab73 42px 84px);
  background-size: 84px 84px, 84px 84px, auto;
}

.swatch-mosaic {
  background:
    radial-gradient(circle at 20% 25%, #f4efe5 0 10px, transparent 11px),
    radial-gradient(circle at 70% 65%, #9aa49d 0 9px, transparent 10px),
    radial-gradient(circle at 45% 72%, #c6bda8 0 8px, transparent 9px),
    linear-gradient(90deg, rgba(23, 33, 29, 0.12) 1px, transparent 1px),
    linear-gradient(0deg, rgba(23, 33, 29, 0.12) 1px, transparent 1px),
    #d7d3c5;
  background-size: 54px 54px, 58px 58px, 46px 46px, 24px 24px, 24px 24px, auto;
}

.swatch-hexagon {
  background:
    linear-gradient(30deg, transparent 35%, rgba(23, 33, 29, 0.18) 36% 38%, transparent 39%),
    linear-gradient(150deg, transparent 35%, rgba(23, 33, 29, 0.18) 36% 38%, transparent 39%),
    linear-gradient(90deg, rgba(23, 33, 29, 0.18) 2px, transparent 2px),
    #d9ddd7;
  background-size: 68px 40px;
}

.swatch-basketweave {
  background:
    repeating-linear-gradient(0deg, rgba(23, 33, 29, 0.18) 0 2px, transparent 2px 38px),
    repeating-linear-gradient(90deg, rgba(23, 33, 29, 0.18) 0 2px, transparent 2px 76px),
    repeating-linear-gradient(90deg, #8f9690 0 32px, #c4cbc5 32px 76px);
}

.swatch-straight {
  background:
    linear-gradient(90deg, rgba(23, 33, 29, 0.18) 1px, transparent 1px),
    repeating-linear-gradient(0deg, #b8824f 0 30px, #c8955d 30px 60px, #a76f3e 60px 90px);
  background-size: 88px 100%, auto;
}

.swatch-staggered {
  background:
    linear-gradient(90deg, rgba(23, 33, 29, 0.18) 1px, transparent 1px),
    repeating-linear-gradient(0deg, #c99a61 0 28px, #8f6038 28px 30px, #b77d45 30px 58px, #8f6038 58px 60px);
  background-size: 120px 60px, auto;
  background-position: 0 0, 0 0;
}

.swatch-diagonal {
  background:
    repeating-linear-gradient(45deg, #d8d2c4 0 42px, rgba(23, 33, 29, 0.2) 42px 44px, #b8c0ba 44px 86px, rgba(23, 33, 29, 0.2) 86px 88px);
}

.swatch-large {
  background:
    linear-gradient(90deg, transparent 49%, rgba(23, 33, 29, 0.18) 49% 51%, transparent 51%),
    linear-gradient(0deg, transparent 49%, rgba(23, 33, 29, 0.18) 49% 51%, transparent 51%),
    #d4d7d1;
  background-size: 128px 74px;
}

.process-photo {
  padding: 72px 0 0;
}

.process-photo-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 34px;
  align-items: center;
}

.process-photo-grid img {
  width: 100%;
  min-height: 360px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: 0 18px 44px rgba(26, 37, 32, 0.12);
}

.process-photo-grid h2 {
  font-size: clamp(2rem, 4vw, 3.7rem);
}

.faq {
  padding: 0 0 72px;
}

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

details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 16px 34px rgba(26, 37, 32, 0.05);
}

summary {
  position: relative;
  min-height: 70px;
  display: flex;
  align-items: center;
  padding: 18px 58px 18px 20px;
  font-weight: 900;
  cursor: pointer;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  position: absolute;
  right: 20px;
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  color: var(--white);
  background: var(--forest);
  border-radius: 7px;
  font-size: 1.25rem;
  line-height: 1;
}

details[open] summary::after {
  content: "-";
  padding-bottom: 3px;
}

details p {
  margin: -4px 20px 22px;
}

.quote {
  padding: 72px 0;
  color: var(--white);
  background:
    linear-gradient(120deg, rgba(23, 33, 29, 0.96), rgba(36, 76, 61, 0.9)),
    var(--ink);
}

.quote-inner {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 42px;
  align-items: start;
}

.quote-copy {
  position: sticky;
  top: 110px;
}

.quote-copy p {
  max-width: 520px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.05rem;
}

.quote-highlights {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.quote-highlights span {
  display: flex;
  align-items: center;
  min-height: 48px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 7px;
  font-weight: 850;
}

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

.form-row {
  display: grid;
  gap: 8px;
}

.full-span,
.form-button,
.form-status {
  grid-column: 1 / -1;
}

label {
  color: var(--ink);
  font-weight: 850;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  color: var(--ink);
  background: #fbfcfa;
  border: 1px solid rgba(23, 33, 29, 0.18);
  border-radius: 7px;
  outline: 0;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

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

input:focus,
select:focus,
textarea:focus {
  border-color: var(--forest);
  box-shadow: 0 0 0 4px rgba(36, 76, 61, 0.14);
}

.form-button {
  width: 100%;
  margin-top: 4px;
  border: 0;
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: var(--forest);
  font-size: 0.92rem;
  font-weight: 800;
}

.site-footer {
  padding: 34px 0;
  background: #101612;
  color: var(--white);
}

.footer-inner {
  width: min(calc(100% - 32px), var(--max));
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  align-items: center;
  margin: 0 auto;
}

.footer-inner p {
  max-width: 560px;
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
  font-weight: 850;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.82);
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: #f2b070;
}

/* Material-inspired visual system */
:root {
  --md-primary: #245246;
  --md-primary-dark: #17392f;
  --md-on-primary: #ffffff;
  --md-secondary: #b65a36;
  --md-tertiary: #7a6a3f;
  --md-surface: #fffbf6;
  --md-surface-container: #f2eee8;
  --md-surface-container-high: #ebe6df;
  --md-outline: rgba(31, 38, 35, 0.14);
  --md-shadow-1: 0 1px 2px rgba(23, 33, 29, 0.08), 0 2px 8px rgba(23, 33, 29, 0.06);
  --md-shadow-2: 0 4px 10px rgba(23, 33, 29, 0.1), 0 12px 30px rgba(23, 33, 29, 0.08);
  --md-shadow-3: 0 12px 28px rgba(23, 33, 29, 0.14), 0 24px 64px rgba(23, 33, 29, 0.1);
}

body {
  background:
    linear-gradient(180deg, #fffbf6 0, #f7f3ed 560px, #f2eee8 100%);
}

.site-header {
  color: var(--ink);
  background: rgba(255, 251, 246, 0.9);
  border-color: var(--md-outline);
  box-shadow: var(--md-shadow-1);
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(255, 251, 246, 0.96);
  box-shadow: var(--md-shadow-2);
}

.brand-logo {
  background: transparent;
  padding: 0;
  filter: none;
}

.site-nav a {
  color: var(--ink-soft);
  font-weight: 800;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a[aria-current="page"],
.site-header.is-scrolled .site-nav a:hover,
.site-header.is-scrolled .site-nav a:focus-visible,
.site-header.is-scrolled .site-nav a[aria-current="page"],
.site-header.is-open .site-nav a:hover,
.site-header.is-open .site-nav a:focus-visible,
.site-header.is-open .site-nav a[aria-current="page"] {
  color: var(--md-primary-dark);
  background: rgba(36, 82, 70, 0.11);
}

.site-nav .nav-cta {
  color: var(--md-on-primary);
  background: var(--md-primary);
  box-shadow: var(--md-shadow-1);
}

.site-nav .nav-cta:hover,
.site-nav .nav-cta:focus-visible {
  color: var(--md-on-primary);
  background: var(--md-primary-dark);
}

.hero {
  min-height: 760px;
  background: var(--md-primary-dark);
}

.hero-scrim {
  background:
    linear-gradient(90deg, rgba(14, 30, 25, 0.82) 0%, rgba(14, 30, 25, 0.55) 42%, rgba(14, 30, 25, 0.1) 80%),
    linear-gradient(0deg, rgba(14, 30, 25, 0.58) 0%, rgba(14, 30, 25, 0) 52%);
}

.hero-content {
  padding: 140px 0 34px;
}

h1 {
  max-width: 760px;
  font-size: clamp(3rem, 5.8vw, 6.2rem);
  line-height: 0.96;
}

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

.eyebrow,
.service-tag,
.showcase span,
.design-card span,
.page-card span {
  color: var(--md-secondary);
  letter-spacing: 0.1em;
}

.hero .eyebrow,
.quote .eyebrow,
.services .eyebrow,
.process .eyebrow,
.home-cta .eyebrow {
  color: #f3b27c;
}

.button {
  min-height: 46px;
  padding: 12px 18px;
  border-radius: 8px;
  box-shadow: none;
}

.button-primary {
  background: var(--md-primary);
  box-shadow: var(--md-shadow-1);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--md-primary-dark);
  box-shadow: var(--md-shadow-2);
}

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

.hero-stats {
  width: min(100%, 840px);
  background: rgba(255, 251, 246, 0.2);
  border-color: rgba(255, 251, 246, 0.34);
  box-shadow: var(--md-shadow-2);
}

.hero-stats div {
  background: rgba(14, 30, 25, 0.5);
}

.page-hero {
  padding: 132px 0 58px;
  background:
    linear-gradient(120deg, rgba(23, 57, 47, 0.94), rgba(73, 82, 61, 0.78)),
    var(--page-hero-image) center / cover;
}

.page-hero h1 {
  font-size: clamp(2.55rem, 4.4vw, 4.6rem);
  line-height: 1.02;
}

.intro,
.work,
.materials,
.designs,
.process-photo,
.renovation-scope {
  padding-block: 64px;
}

.intro-copy,
.split-heading {
  grid-template-columns: 1fr;
  gap: 10px;
  max-width: 820px;
  margin-bottom: 24px;
}

.split-heading p,
.intro-copy .eyebrow {
  margin-bottom: 0;
}

.intro-copy h2,
.split-heading h2 {
  max-width: 780px;
}

.intro-grid,
.renovation-grid,
.pattern-grid {
  gap: 14px;
}

.intro-grid article,
.renovation-grid article,
.pattern-card,
details,
.design-card {
  background: var(--md-surface);
  border: 1px solid var(--md-outline);
  box-shadow: var(--md-shadow-1);
}

.intro-grid article,
.renovation-grid article {
  min-height: 188px;
  padding: 22px;
}

.card-kicker {
  margin-bottom: 18px;
  color: var(--md-secondary);
}

.services {
  color: var(--ink);
  background: var(--md-surface-container);
}

.services .section-heading p,
.services .service-card p,
.services .service-card li {
  color: var(--ink-soft);
}

.service-grid {
  gap: 16px;
}

.service-card {
  background: var(--md-surface);
  border: 1px solid var(--md-outline);
  box-shadow: var(--md-shadow-1);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

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

.featured-card {
  background: var(--md-surface);
  box-shadow: var(--md-shadow-2);
}

.service-photo {
  height: 210px;
  border-bottom-color: var(--md-outline);
}

.service-card h2,
.design-card h2 {
  color: var(--ink);
}

.text-link {
  color: var(--md-primary);
}

.text-link:hover,
.text-link:focus-visible {
  color: var(--md-secondary);
}

.service-card li::before {
  background: var(--md-primary);
}

.project-preview,
.home-pages,
.faq {
  padding-bottom: 64px;
}

.image-card,
.showcase,
.page-card,
.process-photo-grid img {
  box-shadow: var(--md-shadow-2);
}

.image-card figcaption {
  background: rgba(255, 251, 246, 0.92);
  color: var(--ink);
  border-color: rgba(31, 38, 35, 0.1);
  box-shadow: var(--md-shadow-1);
}

.page-card {
  min-height: 190px;
  background:
    linear-gradient(145deg, rgba(23, 57, 47, 0.82), rgba(69, 75, 53, 0.78)),
    repeating-linear-gradient(90deg, #6f4729 0 18px, #ac7240 18px 42px, #cf9b64 42px 64px, #87572f 64px 88px);
}

.process,
.quote,
.home-cta {
  background:
    linear-gradient(135deg, rgba(23, 57, 47, 0.98), rgba(31, 38, 35, 0.98)),
    var(--md-primary-dark);
}

.timeline li,
.quote-highlights span {
  background: rgba(255, 251, 246, 0.09);
  border-color: rgba(255, 251, 246, 0.16);
  box-shadow: none;
}

.materials {
  background: var(--md-surface);
}

.materials-panel,
.process-photo-grid {
  padding: 28px;
  background: var(--md-surface);
  border: 1px solid var(--md-outline);
  border-radius: var(--radius);
  box-shadow: var(--md-shadow-1);
}

.material-list span {
  background: var(--md-surface-container);
  border-color: var(--md-outline);
}

.pattern-library {
  background: var(--md-surface-container);
}

.pattern-swatch {
  border-color: var(--md-outline);
}

summary::after {
  background: var(--md-primary);
}

.quote-form {
  box-shadow: var(--md-shadow-3);
}

input,
select,
textarea {
  background: var(--md-surface);
  border-color: var(--md-outline);
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--md-primary);
  box-shadow: 0 0 0 4px rgba(36, 82, 70, 0.14);
}

.site-footer {
  background: #111916;
}

/* Page palettes: process-inspired color fields with distinct moods */
.theme-home {
  --theme-a: #17392f;
  --theme-b: #5d7048;
  --theme-c: #b65a36;
  --theme-surface: #f3efe8;
  --page-hero-image: url("assets/HARDWOOD%20FLOORING%20/project-herringbone-wood.jpg");
}

.theme-services {
  --theme-a: #203f58;
  --theme-b: #315f73;
  --theme-c: #b9824e;
  --theme-surface: #edf3f5;
  --page-hero-image: url("assets/HOME%20DEPOT%20WALL%20AND%20FLOOR%20TILES/project-wood-look-tile.jpg");
}

.theme-bathrooms {
  --theme-a: #394150;
  --theme-b: #6d6b8d;
  --theme-c: #c7835b;
  --theme-surface: #f1eef5;
  --page-hero-image: url("assets/WASHROOM%20TILES/PHOTO-2026-01-24-16-37-30.jpg");
}

.theme-designs {
  --theme-a: #4f3427;
  --theme-b: #8a5d3b;
  --theme-c: #2f6f62;
  --theme-surface: #f5eee7;
  --page-hero-image: url("assets/FLOOR%20TILES%20/project-herringbone-tile.jpg");
}

.theme-work {
  --theme-a: #2f4a35;
  --theme-b: #79824c;
  --theme-c: #9a5637;
  --theme-surface: #eef2e9;
  --page-hero-image: url("assets/HARDWOOD%20FLOORING%20/PHOTO-2026-01-24-16-42-12%203.jpg");
}

.theme-process {
  --theme-a: #17392f;
  --theme-b: #245246;
  --theme-c: #b9824e;
  --theme-surface: #edf3ef;
  --page-hero-image: url("assets/FLOOR%20TILES%20/PHOTO-2026-01-24-16-37-29.jpg");
}

.theme-faq {
  --theme-a: #29324a;
  --theme-b: #4b607a;
  --theme-c: #b65a36;
  --theme-surface: #eef1f6;
  --page-hero-image: url("assets/HOME%20DEPOT%20WALL%20AND%20FLOOR%20TILES/WALL%20TILES.jpg");
}

.theme-contact {
  --theme-a: #3a263d;
  --theme-b: #6c4e66;
  --theme-c: #c37a4b;
  --theme-surface: #f5edf2;
  --page-hero-image: url("assets/HARDWOOD%20FLOORING%20/PHOTO-2026-01-24-16-42-11.jpg");
}

body[class*="theme-"] {
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--theme-surface) 88%, white) 0, var(--theme-surface) 58%, #fffbf6 100%);
}

body[class*="theme-"] .page-hero {
  background:
    linear-gradient(125deg, color-mix(in srgb, var(--theme-a) 95%, black) 0%, color-mix(in srgb, var(--theme-b) 86%, black) 60%, color-mix(in srgb, var(--theme-c) 58%, black) 100%),
    var(--page-hero-image) center / cover;
}

body[class*="theme-"] .page-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 72px;
  background: linear-gradient(180deg, transparent, var(--theme-surface));
  pointer-events: none;
}

.page-hero {
  position: relative;
  overflow: hidden;
}

.page-hero-inner {
  position: relative;
  z-index: 1;
}

body[class*="theme-"] main > section:not(.hero):not(.page-hero):not(.home-cta):not(.process):not(.quote) {
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--theme-surface) 92%, white), var(--theme-surface));
}

body[class*="theme-"] .process,
body[class*="theme-"] .quote,
body[class*="theme-"] .home-cta {
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--theme-a) 95%, black), color-mix(in srgb, var(--theme-b) 90%, black));
}

body[class*="theme-"] .services {
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--theme-a) 92%, white), color-mix(in srgb, var(--theme-b) 88%, white));
  color: var(--white);
}

body[class*="theme-"] .services .section-heading p,
body[class*="theme-"] .services .service-card p,
body[class*="theme-"] .services .service-card li {
  color: var(--ink-soft);
}

body[class*="theme-"] .button-primary,
body[class*="theme-"] .site-nav .nav-cta,
body[class*="theme-"] summary::after {
  background: var(--theme-a);
}

body[class*="theme-"] .button-primary:hover,
body[class*="theme-"] .button-primary:focus-visible,
body[class*="theme-"] .site-nav .nav-cta:hover,
body[class*="theme-"] .site-nav .nav-cta:focus-visible {
  background: color-mix(in srgb, var(--theme-a) 82%, black);
}

body[class*="theme-"] .eyebrow,
body[class*="theme-"] .service-tag,
body[class*="theme-"] .card-kicker,
body[class*="theme-"] .design-card span,
body[class*="theme-"] .page-card span {
  color: var(--theme-c);
}

body[class*="theme-"] .hero .eyebrow,
body[class*="theme-"] .page-hero .eyebrow,
body[class*="theme-"] .process .eyebrow,
body[class*="theme-"] .quote .eyebrow,
body[class*="theme-"] .home-cta .eyebrow,
body[class*="theme-"] .services .eyebrow {
  color: color-mix(in srgb, var(--theme-c) 70%, white);
}

body[class*="theme-"] .page-card {
  background:
    linear-gradient(145deg, color-mix(in srgb, var(--theme-a) 78%, transparent), color-mix(in srgb, var(--theme-b) 78%, transparent)),
    repeating-linear-gradient(90deg, #6f4729 0 18px, #ac7240 18px 42px, #cf9b64 42px 64px, #87572f 64px 88px);
}

.theme-home .hero-scrim {
  background:
    linear-gradient(90deg, rgba(23, 57, 47, 0.86) 0%, rgba(23, 57, 47, 0.58) 44%, rgba(93, 112, 72, 0.12) 84%),
    linear-gradient(0deg, rgba(23, 57, 47, 0.62) 0%, rgba(23, 57, 47, 0) 52%);
}

@media (max-width: 980px) {
  .nav-toggle {
    display: inline-grid;
    place-items: center;
  }

  .site-nav {
    position: fixed;
    top: 78px;
    left: 16px;
    right: 16px;
    display: grid;
    gap: 4px;
    padding: 12px;
    color: var(--ink);
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(23, 33, 29, 0.12);
    border-radius: var(--radius);
    box-shadow: 0 18px 50px rgba(23, 33, 29, 0.18);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

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

  .site-nav a:hover,
  .site-nav a:focus-visible {
    background: rgba(36, 76, 61, 0.1);
  }

  .site-nav .nav-cta {
    text-align: center;
  }

  .intro-copy,
  .split-heading,
  .process-inner,
  .materials-panel,
  .process-photo-grid,
  .quote-inner,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .intro-grid,
  .service-grid,
  .renovation-grid,
  .faq-grid,
  .image-card-grid,
  .design-grid,
  .pattern-grid,
  .page-card-grid {
    grid-template-columns: 1fr;
  }

  .featured-card {
    transform: none;
  }

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

  .showcase-large {
    min-height: 420px;
  }

  .process .section-heading,
  .quote-copy {
    position: static;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .home-cta-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .cta-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 680px) {
  .site-header {
    width: calc(100% - 24px);
    margin-top: 12px;
  }

  .brand-logo {
    width: 58px;
    height: 40px;
  }

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

  .brand-line {
    font-size: 0.7rem;
  }

  .hero {
    min-height: 820px;
  }

  .page-hero {
    padding: 128px 0 62px;
  }

  .hero-content {
    padding-top: 128px;
  }

  .hero-image {
    object-position: 58% 50%;
  }

  .hero-scrim {
    background:
      linear-gradient(0deg, rgba(13, 18, 16, 0.88) 0%, rgba(13, 18, 16, 0.56) 54%, rgba(13, 18, 16, 0.28) 100%);
  }

  h1 {
    font-size: clamp(2.75rem, 14vw, 4.4rem);
  }

  h2 {
    font-size: clamp(1.75rem, 8vw, 2.55rem);
  }

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

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

  .intro,
  .services,
  .renovation-scope,
  .work,
  .process,
  .materials,
  .designs,
  .pattern-library,
  .process-photo,
  .quote,
  .home-cta {
    padding-block: 68px;
  }

  .project-preview {
    padding-bottom: 68px;
  }

  .home-pages {
    padding-bottom: 68px;
  }

  .faq {
    padding-bottom: 68px;
  }

  .intro-grid article,
  .service-card-body,
  .quote-form {
    padding: 22px;
  }

  .service-media {
    min-height: 156px;
  }

  .service-photo,
  .design-card-photo img,
  .process-photo-grid img {
    height: 240px;
    min-height: 240px;
  }

  .image-card-large {
    min-height: 320px;
  }

  .showcase,
  .showcase-large {
    min-height: 320px;
    padding: 22px;
  }

  .timeline li {
    padding: 72px 22px 22px;
  }

  .timeline li::before {
    left: 22px;
  }

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

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

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