:root {
  --navy: #0b234a;
  --navy-dark: #071a38;
  --blue: #0b55b7;
  --red: #d71920;
  --red-dark: #b81319;
  --ink: #17202b;
  --muted: #5c6674;
  --white: #ffffff;
  --paper: #f8f9fb;
  --soft: #eef2f6;
  --line: #d9e0e8;
  --wood: #c89d6f;
  --wood-dark: #9b7048;
  --shadow-sm: 0 8px 24px rgba(7, 26, 56, 0.08);
  --shadow-lg: 0 24px 70px rgba(7, 26, 56, 0.14);
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 14px;
  --container: 1180px;
  --header-height: 96px;
}

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

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid rgba(11, 85, 183, 0.38);
  outline-offset: 3px;
}

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

h1,
h2,
h3 {
  color: var(--navy-dark);
  line-height: 1.12;
  letter-spacing: -0.035em;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(2.75rem, 5.7vw, 5.1rem);
  max-width: 760px;
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(2rem, 3.7vw, 3.4rem);
}

h3 {
  margin-bottom: 12px;
  font-size: 1.25rem;
}

p:last-child {
  margin-bottom: 0;
}

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

.section {
  padding: 108px 0;
}

.section--soft {
  background: var(--soft);
}

.section--navy {
  color: rgba(255, 255, 255, 0.78);
  background: var(--navy);
}

.section--navy h2,
.section--navy h3 {
  color: var(--white);
}

.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;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--white);
  background: var(--navy);
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: none;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow span {
  width: 26px;
  height: 3px;
  background: var(--red);
}

.eyebrow--light {
  color: rgba(255, 255, 255, 0.72);
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 13px 22px;
  border: 2px solid var(--red);
  border-radius: var(--radius-sm);
  color: var(--white);
  background: var(--red);
  font-size: 0.91rem;
  font-weight: 800;
  letter-spacing: 0.015em;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.button:hover {
  border-color: var(--red-dark);
  background: var(--red-dark);
  transform: translateY(-1px);
}

.button--small {
  min-height: 43px;
  padding: 10px 16px;
}

.button--secondary {
  border-color: var(--navy);
  color: var(--navy);
  background: transparent;
}

.button--secondary:hover {
  border-color: var(--navy);
  color: var(--white);
  background: var(--navy);
}

.button--full {
  width: 100%;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--navy);
  font-weight: 800;
  text-decoration: none;
}

.text-link span {
  color: var(--red);
  transition: transform 180ms ease;
}

.text-link:hover span {
  transform: translateX(4px);
}

.service-bar {
  color: rgba(255, 255, 255, 0.86);
  background: var(--navy-dark);
  font-size: 0.78rem;
  font-weight: 650;
}

.service-bar__inner {
  display: flex;
  min-height: 34px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.service-bar p {
  margin: 0;
}

.service-bar a {
  color: var(--white);
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgba(217, 224, 232, 0.86);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
}

.site-header__inner {
  display: flex;
  min-width: 0;
  min-height: var(--header-height);
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.brand {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--navy);
  line-height: 1;
  text-decoration: none;
  min-width: 0;
}

.brand__logo {
  display: block;
  flex: 0 0 76px;
  width: 76px;
  height: 76px;
  object-fit: contain;
}

.brand__copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
}

.brand__name {
  display: block;
  font-size: 1.25rem;
  font-weight: 850;
  letter-spacing: -0.04em;
  line-height: 1;
}

.brand__name strong {
  color: var(--red);
}

.brand__descriptor {
  display: block;
  margin-top: 0;
  color: var(--muted);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.1;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

.site-nav > a:not(.button) {
  color: #354052;
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
}

.site-nav > a:not(.button):hover {
  color: var(--blue);
}

.menu-toggle {
  display: none;
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--white);
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: var(--navy);
}

.hero {
  position: relative;
  overflow: hidden;
  background: var(--paper);
}

.hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 690px;
  grid-template-columns: minmax(0, 1.15fr) minmax(380px, 0.72fr);
  align-items: center;
  gap: clamp(50px, 8vw, 110px);
  padding-top: 80px;
  padding-bottom: 88px;
}

.hero__content {
  min-width: 0;
  padding-top: 12px;
}

.hero__lead {
  max-width: 680px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.6vw, 1.28rem);
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-bottom: 34px;
}

.hero__facts {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  padding: 0;
  margin: 0;
  color: #3d4858;
  font-size: 0.85rem;
  font-weight: 700;
  list-style: none;
}

.hero__facts li {
  position: relative;
  padding-left: 17px;
}

.hero__facts li::before {
  position: absolute;
  top: 0.63em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red);
  content: "";
  transform: translateY(-50%);
}

.estimate-card {
  position: relative;
  padding: 36px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-lg);
}

.estimate-card__topline {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 5px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  background: linear-gradient(90deg, var(--navy) 0 74%, var(--red) 74%);
}

.estimate-card__kicker {
  margin-bottom: 5px;
  color: var(--red);
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.estimate-card h2 {
  margin-bottom: 12px;
  font-size: 1.8rem;
}

.estimate-card > p:not(.estimate-card__kicker) {
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 0.92rem;
}

.estimate-form {
  display: grid;
  gap: 17px;
}

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

.form-field {
  display: grid;
  gap: 7px;
}

.form-field label {
  color: #263244;
  font-size: 0.78rem;
  font-weight: 800;
}

.form-field label span {
  color: var(--muted);
  font-weight: 500;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 48px;
  padding: 11px 13px;
  border: 1px solid #c9d1dc;
  border-radius: var(--radius-sm);
  background: var(--white);
  transition: border-color 150ms ease, box-shadow 150ms ease;
}

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

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--blue);
  outline: 0;
  box-shadow: 0 0 0 3px rgba(11, 85, 183, 0.13);
}

.form-note,
.form-status {
  margin: 0;
  color: var(--muted);
  font-size: 0.73rem;
  line-height: 1.45;
}

.form-status:not(:empty) {
  padding: 10px 12px;
  border-left: 3px solid var(--blue);
  color: var(--navy);
  background: var(--soft);
  font-size: 0.82rem;
  font-weight: 700;
}

.consent {
  display: grid;
  grid-template-columns: 18px 1fr;
  align-items: start;
  gap: 10px;
  color: var(--muted);
  font-size: 0.77rem;
  line-height: 1.5;
}

.consent input {
  width: 17px;
  height: 17px;
  margin: 2px 0 0;
  accent-color: var(--blue);
}

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

.trust-band__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.trust-band__grid > div {
  padding: 30px 26px;
  border-right: 1px solid var(--line);
}

.trust-band__grid > div:first-child {
  padding-left: 0;
}

.trust-band__grid > div:last-child {
  padding-right: 0;
  border-right: 0;
}

.trust-band strong,
.trust-band span {
  display: block;
}

.trust-band strong {
  margin-bottom: 5px;
  color: var(--navy);
  font-size: 0.91rem;
}

.trust-band span {
  color: var(--muted);
  font-size: 0.79rem;
  line-height: 1.45;
}

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

.section-heading--split {
  display: grid;
  max-width: none;
  grid-template-columns: minmax(0, 1.1fr) minmax(290px, 0.65fr);
  align-items: end;
  gap: 90px;
}

.section-heading--split h2,
.section-heading--split p {
  margin-bottom: 0;
}

.section-heading--split > p {
  padding-bottom: 8px;
  color: var(--muted);
}

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

.service-card {
  position: relative;
  display: flex;
  min-height: 270px;
  flex-direction: column;
  padding: 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
}

.service-card--featured {
  min-height: 270px;
  background: var(--navy);
}

.service-card--featured > div:first-child {
  position: relative;
  z-index: 2;
}

.service-card--featured h3,
.service-card--featured .text-link {
  color: var(--white);
}

.service-card--featured h3 {
  max-width: none;
  margin-bottom: 16px;
  font-size: 1.55rem;
}

.service-card--featured p:not(.service-card__label) {
  max-width: 420px;
  color: rgba(255, 255, 255, 0.72);
}

.service-card__label {
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.service-card:not(.service-card--featured) p {
  color: var(--muted);
  font-size: 0.9rem;
}

.plank-sample {
  position: absolute;
  right: -92px;
  bottom: -104px;
  width: 250px;
  height: 190px;
  opacity: 0.2;
  transform: rotate(-18deg);
}

.plank-sample span {
  display: block;
  width: 100%;
  height: 42px;
  margin-bottom: 6px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.1);
}

.plank-sample span:nth-child(even) {
  margin-left: -72px;
}

.flooring-styles {
  border-top: 1px solid var(--line);
  background: var(--paper);
}

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

.flooring-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.flooring-card__visual {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 2;
  background: #e8e5df;
}

.flooring-card__room {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 260ms ease;
}

.flooring-card:hover .flooring-card__room {
  transform: scale(1.018);
}

.flooring-card__swatch {
  position: absolute;
  right: 16px;
  bottom: 16px;
  width: 42px;
  height: 118px;
  border: 3px solid var(--white);
  border-radius: 3px;
  object-fit: cover;
  box-shadow: 0 8px 22px rgba(7, 26, 56, 0.24);
}

.flooring-card__body {
  padding: 20px 22px 22px;
}

.flooring-card__body p {
  margin-bottom: 5px;
  color: var(--red);
  font-size: 0.67rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.flooring-card__body h3 {
  margin: 0;
  font-size: 1.32rem;
}

.flooring-styles__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding-top: 32px;
}

.flooring-styles__footer p {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
}

.flooring-styles__footer strong {
  color: var(--navy);
}

.value-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(430px, 1fr);
  gap: 100px;
}

.value-intro > p:not(.eyebrow) {
  margin-bottom: 30px;
  color: var(--muted);
  font-size: 1.02rem;
}

.value-list {
  border-top: 1px solid #cfd7e1;
}

.value-list article {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 18px;
  padding: 27px 0;
  border-bottom: 1px solid #cfd7e1;
}

.value-list article > span {
  color: var(--red);
  font-size: 0.75rem;
  font-weight: 850;
}

.value-list h3 {
  margin-bottom: 7px;
}

.value-list p {
  color: var(--muted);
  font-size: 0.91rem;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 0;
  margin: 0;
  list-style: none;
}

.process-grid li {
  position: relative;
  padding: 32px 28px 12px;
  border-top: 2px solid var(--navy);
}

.process-grid li::before {
  position: absolute;
  top: -7px;
  left: 28px;
  width: 12px;
  height: 12px;
  border: 3px solid var(--white);
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 1px var(--red);
  content: "";
}

.process-grid li:first-child {
  padding-left: 0;
}

.process-grid li:first-child::before {
  left: 0;
}

.process-grid li > span {
  color: var(--blue);
  font-size: 0.76rem;
  font-weight: 850;
}

.process-grid h3 {
  margin-top: 22px;
  font-size: 1.12rem;
}

.process-grid p {
  color: var(--muted);
  font-size: 0.86rem;
}

.project-gallery {
  padding-top: 40px;
}

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

.project-pair {
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

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

.project-pair figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-sm);
  background: var(--soft);
  aspect-ratio: 3 / 4;
}

.project-pair img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-pair figcaption {
  position: absolute;
  bottom: 10px;
  left: 10px;
  padding: 6px 10px;
  border-radius: 3px;
  color: var(--white);
  background: rgba(7, 26, 56, 0.88);
  font-size: 0.67rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.project-pair figure:last-child figcaption {
  background: var(--red);
}

.project-pair h3 {
  margin: 18px 6px 4px;
  font-size: 1.12rem;
}

.completed-project {
  padding-top: 38px;
  margin-top: 44px;
  border-top: 1px solid var(--line);
}

.completed-project__heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 24px;
}

.completed-project__heading h3 {
  margin: 0;
  color: var(--navy-dark);
  font-size: clamp(1.7rem, 3vw, 2.5rem);
}

.completed-project__heading .eyebrow {
  margin: 0;
  order: 2;
}

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

.completed-project__images img {
  width: 100%;
  height: clamp(280px, 30vw, 390px);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  object-fit: cover;
  object-position: center;
  box-shadow: var(--shadow-sm);
}

.completed-project--interiors {
  margin-top: 38px;
}

.completed-project--interiors .completed-project__images img {
  height: clamp(240px, 24vw, 320px);
}

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

.about-grid {
  display: grid;
  grid-template-columns: minmax(340px, 0.75fr) minmax(0, 1fr);
  align-items: center;
  gap: 100px;
}

.founders-photo {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-md);
  background: var(--navy-dark);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
}

.founders-photo::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 68%, rgba(7, 26, 56, 0.72));
  content: "";
  pointer-events: none;
}

.founders-photo img {
  width: 100%;
  height: auto;
}

.founders-photo figcaption {
  position: absolute;
  z-index: 2;
  right: 24px;
  bottom: 20px;
  left: 24px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.75rem;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.about__content > p:not(.eyebrow) {
  max-width: 650px;
  font-size: 1.02rem;
}

.about blockquote {
  margin: 32px 0 0;
  padding: 4px 0 4px 24px;
  border-left: 3px solid var(--red);
  color: var(--white);
  font-size: 1.15rem;
  font-weight: 750;
  line-height: 1.45;
}

.service-area__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(420px, 1fr);
  align-items: center;
  gap: 100px;
}

.service-area__grid > div > p:not(.eyebrow) {
  color: var(--muted);
}

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

.city-list li {
  position: relative;
  padding: 17px 10px 17px 22px;
  border-bottom: 1px solid var(--line);
  color: var(--navy);
  font-weight: 800;
}

.city-list li::before {
  position: absolute;
  top: 50%;
  left: 2px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--red);
  content: "";
  transform: translateY(-50%);
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(450px, 1fr);
  gap: 100px;
}

.accordion {
  border-top: 1px solid #cad3de;
}

.accordion details {
  border-bottom: 1px solid #cad3de;
}

.accordion summary {
  position: relative;
  padding: 24px 48px 24px 0;
  color: var(--navy);
  cursor: pointer;
  font-weight: 800;
  list-style: none;
}

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

.accordion summary::after {
  position: absolute;
  top: 50%;
  right: 5px;
  content: "+";
  color: var(--red);
  font-size: 1.5rem;
  font-weight: 500;
  transform: translateY(-50%);
}

.accordion details[open] summary::after {
  content: "−";
}

.accordion details p {
  padding: 0 50px 25px 0;
  color: var(--muted);
  font-size: 0.91rem;
}

.estimate-section {
  color: rgba(255, 255, 255, 0.75);
  background: var(--navy-dark);
}

.estimate-section__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(520px, 1fr);
  align-items: start;
  gap: 100px;
}

.estimate-section h2 {
  color: var(--white);
}

.estimate-section__intro {
  position: sticky;
  top: 130px;
}

.estimate-section__intro > p:not(.eyebrow) {
  font-size: 1.02rem;
}

.estimate-section__note {
  display: grid;
  gap: 2px;
  padding: 20px 0;
  margin-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.estimate-section__note strong {
  color: var(--white);
}

.estimate-section__note span {
  font-size: 0.82rem;
}

.estimate-form--large {
  padding: 36px;
  border-radius: var(--radius-md);
  color: var(--ink);
  background: var(--white);
}

.site-footer {
  padding: 72px 0 24px;
  color: rgba(255, 255, 255, 0.68);
  background: #041126;
}

.site-footer__top {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) repeat(2, minmax(160px, 0.45fr));
  gap: 80px;
  padding-bottom: 54px;
}

.brand--footer {
  width: max-content;
  color: var(--white);
}

.brand--footer .brand__logo {
  flex-basis: 190px;
  width: 190px;
  height: 190px;
}

.site-footer__top > div:first-child > p {
  max-width: 430px;
  margin-top: 22px;
}

.site-footer h2 {
  margin-bottom: 18px;
  color: var(--white);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-footer__top > div:not(:first-child) a {
  display: block;
  width: max-content;
  margin-bottom: 10px;
  font-size: 0.86rem;
  text-decoration: none;
}

.site-footer__top a:hover {
  color: var(--white);
}

.site-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.76rem;
}

.site-footer__bottom p {
  margin: 0;
}

.footer-faith {
  padding: 28px 0 34px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-size: clamp(2.8rem, 7.3vw, 6.8rem);
  font-weight: 850;
  letter-spacing: -0.055em;
  line-height: 0.95;
  text-align: center;
}

.mobile-actions {
  display: none;
}

.legal-page {
  min-height: 65vh;
  background: var(--paper);
}

.legal-page__content {
  max-width: 800px;
}

.legal-page h1 {
  font-size: clamp(2.6rem, 6vw, 4.5rem);
}

.legal-page h2 {
  margin-top: 40px;
  font-size: 1.45rem;
}

.legal-page p {
  color: var(--muted);
}

.legal-notice {
  padding: 22px 24px;
  margin: 34px 0;
  border-left: 4px solid var(--red);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.legal-notice strong {
  display: block;
  margin-bottom: 6px;
  color: var(--navy);
}

@media (max-width: 1050px) {
  .site-nav {
    gap: 17px;
  }

  .site-nav > a:not(.button) {
    font-size: 0.82rem;
  }

  .hero__grid {
    gap: 48px;
  }

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

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

  .value-grid,
  .about-grid,
  .service-area__grid,
  .faq-grid,
  .estimate-section__grid {
    gap: 60px;
  }
}

@media (max-width: 880px) {
  :root {
    --header-height: 82px;
  }

  .section {
    padding: 82px 0;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    z-index: 99;
    top: calc(34px + var(--header-height));
    right: 0;
    left: 0;
    display: grid;
    align-content: start;
    gap: 0;
    max-height: 0;
    padding: 0 20px;
    overflow: hidden;
    background: var(--white);
    opacity: 0;
    visibility: hidden;
    transition: max-height 250ms ease, opacity 180ms ease, visibility 180ms ease, padding 250ms ease;
  }

  .site-nav.is-open {
    max-height: calc(100dvh - 104px);
    padding-top: 12px;
    padding-bottom: 28px;
    overflow-y: auto;
    border-bottom: 1px solid var(--line);
    opacity: 1;
    visibility: visible;
    box-shadow: var(--shadow-lg);
  }

  .site-nav > a:not(.button) {
    padding: 15px 4px;
    border-bottom: 1px solid var(--line);
    font-size: 1rem;
  }

  .site-nav .button {
    margin-top: 18px;
  }

  .hero__grid {
    grid-template-columns: 1fr;
    gap: 54px;
    padding-top: 68px;
  }

  .hero__content {
    max-width: 710px;
  }

  .estimate-card {
    max-width: 640px;
  }

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

  .trust-band__grid > div,
  .trust-band__grid > div:first-child,
  .trust-band__grid > div:last-child {
    padding: 24px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .section-heading--split,
  .value-grid,
  .about-grid,
  .service-area__grid,
  .faq-grid,
  .estimate-section__grid {
    grid-template-columns: 1fr;
  }

  .section-heading--split {
    gap: 20px;
  }

  .value-grid {
    gap: 48px;
  }

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

  .flooring-styles__footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 22px;
  }

  .about-grid {
    grid-template-columns: minmax(280px, 0.82fr) 1fr;
    gap: 48px;
  }

  .service-area__grid,
  .faq-grid {
    gap: 45px;
  }

  .estimate-section__intro {
    position: static;
  }

  .site-footer__top {
    grid-template-columns: 1fr 1fr;
  }

  .site-footer__top > div:first-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  body {
    padding-bottom: 62px;
  }

  .container {
    width: min(calc(100% - 32px), var(--container));
  }

  .section {
    padding: 68px 0;
  }

  .service-bar__inner {
    justify-content: center;
    text-align: center;
  }

  .service-bar a {
    display: none;
  }

  .brand__name {
    font-size: 1.12rem;
  }

  .brand {
    grid-template-columns: 74px auto;
  }

  .brand__logo {
    flex-basis: 74px;
    width: 74px;
    height: 74px;
  }

  .brand--footer {
    margin-right: auto;
    margin-left: auto;
  }

  .brand--footer .brand__logo {
    flex-basis: 190px;
    width: 190px;
    height: 190px;
  }

  .brand__descriptor {
    font-size: 0.54rem;
  }

  .hero__grid {
    min-height: 0;
    padding-top: 54px;
    padding-bottom: 70px;
  }

  .hero .eyebrow {
    gap: 8px;
    font-size: 0.68rem;
    letter-spacing: 0.085em;
  }

  .hero .eyebrow span {
    width: 22px;
    flex: 0 0 22px;
  }

  h1 {
    font-size: clamp(2.55rem, 13vw, 3.55rem);
  }

  h2 {
    font-size: clamp(1.9rem, 9vw, 2.7rem);
  }

  .hero__actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

  .hero__facts {
    display: grid;
  }

  .estimate-card,
  .estimate-form--large {
    padding: 26px 20px;
  }

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

  .trust-band__grid {
    grid-template-columns: 1fr;
  }

  .trust-band__grid > div,
  .trust-band__grid > div:first-child,
  .trust-band__grid > div:last-child {
    padding: 20px 0;
    border-right: 0;
  }

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

  .flooring-grid,
  .project-pairs {
    grid-template-columns: 1fr;
  }

  .flooring-grid {
    gap: 16px;
  }

  .flooring-card__body {
    padding: 17px 18px 19px;
  }

  .flooring-card__swatch {
    right: 12px;
    bottom: 12px;
    width: 36px;
    height: 100px;
  }

  .flooring-styles__footer .button {
    width: 100%;
  }

  .project-gallery {
    padding-top: 20px;
  }

  .project-pair {
    padding: 8px;
  }

  .completed-project {
    padding-top: 28px;
    margin-top: 34px;
  }

  .service-card,
  .service-card--featured {
    min-height: 0;
    padding: 22px;
  }

  .completed-project__heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 18px;
  }

  .completed-project__heading .eyebrow {
    order: 0;
  }

  .completed-project__images {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .completed-project__images img,
  .completed-project--interiors .completed-project__images img {
    height: 240px;
  }

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

  .process-grid li,
  .process-grid li:first-child {
    padding: 26px 0 0 24px;
    border-top: 0;
    border-left: 2px solid var(--navy);
  }

  .process-grid li::before,
  .process-grid li:first-child::before {
    top: 30px;
    left: -7px;
  }

  .process-grid h3 {
    margin-top: 13px;
  }

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

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

  .site-footer__top {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .site-footer__top > div:first-child {
    grid-column: auto;
  }

  .site-footer__bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .footer-faith {
    padding-top: 24px;
    padding-bottom: 28px;
    font-size: clamp(2.45rem, 13.6vw, 4.5rem);
  }

  .mobile-actions {
    position: fixed;
    z-index: 120;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    grid-template-columns: 0.7fr 1.3fr;
    min-height: 62px;
    padding: 8px;
    border-top: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 -8px 28px rgba(7, 26, 56, 0.12);
    backdrop-filter: blur(12px);
    opacity: 0;
    pointer-events: none;
    transform: translate3d(0, calc(100% + 16px), 0);
    visibility: hidden;
    will-change: opacity, transform;
    transition:
      opacity 420ms ease,
      transform 420ms cubic-bezier(0.22, 1, 0.36, 1),
      visibility 0s linear 420ms;
  }

  .mobile-actions.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translate3d(0, 0, 0);
    visibility: visible;
    transition-delay: 0s;
  }

  .mobile-actions a {
    display: grid;
    place-items: center;
    border-radius: 5px;
    color: var(--navy);
    font-size: 0.78rem;
    font-weight: 850;
    text-decoration: none;
  }

  .mobile-actions__primary {
    color: var(--white) !important;
    background: var(--red);
  }
}

@media (max-width: 370px) {
  .container {
    width: min(calc(100% - 24px), var(--container));
  }

  .brand__descriptor {
    letter-spacing: 0.09em;
  }

  .hero__grid {
    padding-top: 44px;
  }

  .estimate-card,
  .estimate-form--large,
  .service-card {
    padding-right: 17px;
    padding-left: 17px;
  }
}

@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;
  }
}
