* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #fffaf4;
}

.site {
  --floor-dark: #100b1e;
  --floor-dark-2: #211936;
  --floor-ink: #211d17;
  --floor-muted: #6d6255;
  --floor-cream: #ece5d9;
  --floor-orange: #f26a21;
  --floor-orange-2: #fba04c;
  --floor-lavender: #d9d2f0;
  --floor-line: rgba(255, 255, 255, 0.14);
  min-height: 100vh;
  overflow-x: clip;
  background: #fffaf4;
  color: var(--floor-ink);
  font-family: "Helvetica Neue", "Arial Nova", Arial, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

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

.wrap {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.topBar {
  background: var(--floor-dark);
  border-bottom: 1px solid var(--floor-line);
  color: #e9e3ff;
  font-size: 0.82rem;
}

.topBar .wrap {
  display: flex;
  min-height: 38px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.topBar p,
.topBar a {
  margin: 0;
}

.topBar strong,
.topLinks a:first-child {
  color: var(--floor-orange-2);
  font-weight: 800;
}

.topLinks {
  display: flex;
  align-items: center;
  gap: 24px;
  white-space: nowrap;
}

.header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(16, 11, 30, 0.94);
  border-bottom: 1px solid var(--floor-line);
  backdrop-filter: blur(14px);
}

.header .wrap {
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.logoLink {
  display: inline-flex;
  flex: 0 0 auto;
}

.logo,
.footerLogo {
  height: auto;
  object-fit: contain;
  border-radius: 6px;
  background: #ffffff;
  padding: 8px;
}

.logo {
  width: 118px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 28px;
  color: var(--floor-lavender);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.nav a {
  line-height: 1;
}

.nav a:hover {
  color: #ffffff;
}

.quoteNav,
.primaryButton {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: linear-gradient(135deg, var(--floor-orange), var(--floor-orange-2));
  color: #231000;
  font-weight: 900;
  text-transform: uppercase;
  box-shadow: 0 14px 36px rgba(242, 106, 33, 0.28);
}

.quoteNav {
  padding: 0 13px;
}

.primaryButton {
  padding: 0 22px;
  font-size: 0.92rem;
}

.quoteNav:hover,
.primaryButton:hover {
  transform: translateY(-1px);
}

.menuToggle {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.menuButton {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid var(--floor-line);
  background: rgba(255, 255, 255, 0.06);
}

.menuButton span {
  display: block;
  width: 19px;
  height: 2px;
  background: #ffffff;
}

.hero {
  position: relative;
  min-height: 735px;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: var(--floor-dark);
  color: #ffffff;
}

.heroImage {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  opacity: 0.64;
}

.heroVeil {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 18%, rgba(251, 160, 76, 0.14), transparent 32%),
    linear-gradient(90deg, rgba(16, 11, 30, 0.94), rgba(16, 11, 30, 0.72) 50%, rgba(16, 11, 30, 0.46));
}

.heroInner {
  position: relative;
  z-index: 1;
  padding: 74px 0 98px;
}

.eyebrow,
.kicker {
  margin: 0 0 18px;
  color: var(--floor-orange);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 690px;
  margin: 0;
  color: #ffffff;
  font-size: 5.9rem;
  font-weight: 900;
  line-height: 0.98;
  text-transform: uppercase;
}

.hero h1 span {
  display: block;
  color: var(--floor-orange);
}

.heroCopy {
  max-width: 590px;
  margin: 28px 0 0;
  color: #e4dff2;
  font-size: 1.18rem;
  line-height: 1.65;
}

.heroActions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 34px;
}

.phoneButton {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 0 20px;
  color: #ffffff;
  font-weight: 900;
}

.statsBand {
  position: relative;
  z-index: 2;
  margin-top: -54px;
}

.statsGrid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: #1b132e;
  box-shadow: 0 24px 60px rgba(16, 11, 30, 0.18);
}

.statItem {
  min-height: 108px;
  padding: 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

.statItem:last-child {
  border-right: 0;
}

.statItem strong {
  display: block;
  color: var(--floor-orange-2);
  font-size: 1.06rem;
  font-weight: 900;
  text-transform: uppercase;
}

.statItem span {
  display: block;
  margin-top: 7px;
  color: #cfc8e8;
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.45;
  text-transform: uppercase;
}

.section {
  padding: 108px 0;
  background: #fffaf4;
}

.sectionHeader {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(280px, 0.92fr);
  gap: 36px;
  align-items: end;
  margin-bottom: 44px;
}

.sectionHeader .kicker {
  grid-column: 1 / -1;
  margin-bottom: -22px;
}

.sectionHeader h2,
.darkSection h2,
.areaGrid h2,
.cta h2 {
  margin: 0;
  font-size: 3.35rem;
  font-weight: 900;
  line-height: 1.04;
  text-transform: uppercase;
}

.sectionHeader p:not(.kicker),
.lead {
  margin: 0;
  color: var(--floor-muted);
  font-size: 1.03rem;
  line-height: 1.75;
}

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

.serviceCard {
  overflow: hidden;
  border: 1px solid rgba(33, 29, 23, 0.1);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 16px 42px rgba(33, 29, 23, 0.08);
}

.serviceImage {
  position: relative;
  aspect-ratio: 1.08;
  overflow: hidden;
  background: var(--floor-cream);
}

.serviceImage img,
.workTile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.imageBottom {
  object-position: center bottom;
}

.imageLeft {
  object-position: left center;
}

.imageCenter {
  object-position: center center;
}

.imageRight {
  object-position: right center;
}

.serviceBody {
  padding: 26px;
}

.serviceBody h3 {
  margin: 0;
  font-size: 1.28rem;
  font-weight: 900;
  text-transform: uppercase;
}

.serviceBody p {
  min-height: 138px;
  margin: 16px 0 20px;
  color: var(--floor-muted);
  font-size: 0.96rem;
  line-height: 1.62;
}

.serviceBody a,
.workLinks a {
  color: var(--floor-orange);
  font-size: 0.86rem;
  font-weight: 900;
  text-transform: uppercase;
}

.darkSection {
  background:
    linear-gradient(135deg, rgba(16, 11, 30, 0.94), rgba(33, 25, 54, 0.96)),
    var(--floor-dark);
  color: #ffffff;
}

.darkSection .lead {
  color: #d9d2f0;
}

.whyGrid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.72fr);
  gap: 58px;
  align-items: center;
}

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

.reasonItem {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 14px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
}

.reasonItem span {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  background: var(--floor-orange);
  color: #231000;
  font-weight: 900;
}

.reasonItem h3 {
  margin: 0;
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 900;
  text-transform: uppercase;
}

.reasonItem p {
  margin: 8px 0 0;
  color: #cfc8e8;
  line-height: 1.55;
}

.quotePanel {
  min-height: 470px;
  display: flex;
  justify-content: flex-end;
  flex-direction: column;
  border-radius: 8px;
  padding: 34px;
  background:
    linear-gradient(180deg, rgba(16, 11, 30, 0.08), rgba(16, 11, 30, 0.88)),
    url("/assets/flooring-hero.webp") center / cover;
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.24);
}

.quotePanel p {
  margin: 0;
  color: #ffffff;
  font-size: 2rem;
  font-weight: 900;
  line-height: 1.15;
  text-transform: uppercase;
}

.quotePanel span {
  margin-top: 18px;
  color: #e4dff2;
  line-height: 1.65;
}

.workSection {
  background: var(--floor-cream);
}

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

.workTile {
  position: relative;
  min-height: 305px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--floor-dark);
}

.workTile::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(16, 11, 30, 0.06), rgba(16, 11, 30, 0.72));
}

.workTile span {
  position: absolute;
  right: 20px;
  bottom: 20px;
  left: 20px;
  z-index: 1;
  color: #ffffff;
  font-weight: 900;
  text-transform: uppercase;
}

.workLinks {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.workLinks span {
  color: rgba(33, 29, 23, 0.36);
}

.areaGrid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.55fr);
  gap: 58px;
  align-items: center;
}

.areaTags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.areaTags span {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  border: 1px solid rgba(33, 29, 23, 0.12);
  border-radius: 8px;
  padding: 0 16px;
  background: #ffffff;
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.locationPanel {
  border-radius: 8px;
  padding: 34px;
  background: var(--floor-dark);
  color: #ffffff;
  box-shadow: 0 22px 60px rgba(16, 11, 30, 0.14);
}

.locationPanel p {
  margin: 0 0 24px;
  color: var(--floor-orange-2);
  font-size: 0.84rem;
  font-weight: 900;
  text-transform: uppercase;
}

.locationPanel strong,
.locationPanel span,
.locationPanel a {
  display: block;
  margin-top: 10px;
  font-size: 1.22rem;
  font-weight: 800;
}

.locationPanel a {
  color: var(--floor-orange-2);
}

.faqSection {
  background: #ffffff;
}

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

.faqItem {
  border: 1px solid rgba(33, 29, 23, 0.1);
  border-radius: 8px;
  padding: 24px;
  background: #fffaf4;
  box-shadow: 0 12px 30px rgba(33, 29, 23, 0.06);
}

.faqItem h3 {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 900;
  line-height: 1.35;
  text-transform: uppercase;
}

.faqItem p {
  margin: 12px 0 0;
  color: var(--floor-muted);
  line-height: 1.65;
}

.cta {
  padding: 72px 0;
  background: linear-gradient(115deg, var(--floor-orange), var(--floor-orange-2));
  color: #241000;
}

.ctaInner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.cta .kicker {
  color: #461c00;
}

.cta h2 {
  font-size: 4rem;
}

.cta p {
  margin: 14px 0 0;
  font-size: 1.15rem;
  font-weight: 700;
}

.ctaActions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px;
}

.darkButton,
.ctaPhone {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  font-weight: 900;
  text-transform: uppercase;
}

.darkButton {
  background: var(--floor-dark);
  color: #ffffff;
}

.ctaPhone {
  border: 1px solid rgba(36, 16, 0, 0.24);
}

.footer {
  padding: 72px 0 26px;
  background: var(--floor-dark);
  color: #c8c0e4;
}

.footerGrid {
  display: grid;
  grid-template-columns: minmax(260px, 1.2fr) repeat(3, minmax(150px, 0.55fr));
  gap: 34px;
}

.footerLogo {
  width: 126px;
}

.footerBrand p {
  max-width: 350px;
  margin: 20px 0 0;
  line-height: 1.65;
}

.footer h3 {
  margin: 0 0 16px;
  color: #ffffff;
  font-size: 0.86rem;
  font-weight: 900;
  text-transform: uppercase;
}

.footer ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer li,
.footer address {
  color: #b3aad4;
  font-style: normal;
  line-height: 1.65;
}

.footer a:hover {
  color: #ffffff;
}

.footerBottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 52px;
  border-top: 1px solid var(--floor-line);
  padding-top: 24px;
  color: #8f84b5;
  font-size: 0.84rem;
}

@media (max-width: 1060px) {
  .topBar .wrap {
    align-items: flex-start;
    flex-direction: column;
    padding: 10px 0;
  }

  .header .wrap {
    min-height: 70px;
  }

  .menuButton {
    display: flex;
  }

  .nav {
    position: absolute;
    top: 70px;
    right: 24px;
    left: 24px;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    border: 1px solid var(--floor-line);
    background: rgba(16, 11, 30, 0.98);
    padding: 12px;
  }

  .nav a {
    padding: 14px;
  }

  .quoteNav {
    margin-top: 8px;
  }

  .menuToggle:checked ~ .nav {
    display: flex;
  }

  .hero {
    min-height: 690px;
  }

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

  .sectionHeader,
  .whyGrid,
  .areaGrid,
  .faqGrid,
  .footerGrid {
    grid-template-columns: 1fr;
  }

  .ctaInner {
    display: grid;
  }

  .ctaActions {
    justify-content: flex-start;
  }

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

  .serviceCard {
    display: grid;
    grid-template-columns: minmax(220px, 0.42fr) minmax(0, 1fr);
  }

  .serviceBody p {
    min-height: 0;
  }

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

  .statItem:nth-child(2) {
    border-right: 0;
  }

  .statItem:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }
}

@media (max-width: 680px) {
  .wrap {
    width: min(100% - 32px, 1180px);
  }

  .topLinks {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
    white-space: normal;
  }

  .logo {
    width: 96px;
  }

  .hero {
    min-height: 640px;
  }

  .heroInner {
    padding: 58px 0 82px;
  }

  .hero h1 {
    max-width: 420px;
    font-size: 3rem;
    line-height: 1.02;
  }

  .heroCopy {
    font-size: 1rem;
  }

  .statsBand {
    margin-top: 0;
  }

  .statsGrid,
  .workGrid,
  .reasonGrid,
  .serviceCard {
    grid-template-columns: 1fr;
  }

  .statItem {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    padding: 20px;
  }

  .statItem:last-child {
    border-bottom: 0;
  }

  .section {
    padding: 74px 0;
  }

  .sectionHeader {
    gap: 20px;
    margin-bottom: 30px;
  }

  .sectionHeader .kicker {
    margin-bottom: 0;
  }

  .sectionHeader h2,
  .darkSection h2,
  .areaGrid h2 {
    font-size: 2.25rem;
  }

  .cta h2 {
    font-size: 2.6rem;
  }

  .serviceImage {
    aspect-ratio: 1.35;
  }

  .workTile {
    min-height: 230px;
  }

  .quotePanel {
    min-height: 360px;
    padding: 24px;
  }

  .quotePanel p {
    font-size: 1.55rem;
  }

  .footerBottom {
    flex-direction: column;
  }
}
