:root {
  --ink: #111312;
  --muted: #626965;
  --line: #d9ded8;
  --paper: #f6f7f3;
  --white: #ffffff;
  --cedar: #a8c91e;
  --cedar-dark: #7f9916;
  --moss: #202722;
  --mist: #e9eee6;
  --warm: #9aa39d;
  --sage-soft: rgba(168, 201, 30, 0.08);
  --cedar-soft: rgba(168, 201, 30, 0.09);
  --shadow: 0 22px 60px rgba(24, 33, 29, 0.14);
  --soft-shadow: 0 16px 44px rgba(24, 33, 29, 0.1);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background:
    radial-gradient(circle at 12% 18%, rgba(168, 201, 30, 0.1), transparent 28vw),
    radial-gradient(circle at 88% 8%, rgba(17, 19, 18, 0.08), transparent 26vw),
    var(--paper);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(247, 246, 241, 0.92);
  border-bottom: 1px solid rgba(216, 221, 214, 0.9);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  width: 46px;
  height: 46px;
  border: 1px solid rgba(17, 19, 18, 0.12);
  border-radius: 6px;
  background: var(--white);
  box-shadow: 0 8px 20px rgba(17, 19, 18, 0.1);
  object-fit: cover;
}

.brand strong,
.brand small,
.brand-name-row {
  display: block;
}

.brand-copy {
  display: grid;
  gap: 2px;
}

.brand-name-row {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.brand strong {
  font-size: 0.98rem;
  line-height: 1.1;
}

.brand-flag {
  width: 30px;
  height: 20px;
  border: 1px solid rgba(24, 33, 29, 0.14);
  border-radius: 3px;
  box-shadow: 0 4px 12px rgba(24, 33, 29, 0.12);
  object-fit: cover;
}

.brand small {
  color: var(--muted);
  font-size: 0.78rem;
}

nav {
  display: flex;
  gap: 22px;
  color: var(--muted);
  font-size: 0.94rem;
}

nav a:hover {
  color: var(--ink);
}

nav a {
  position: relative;
  padding: 8px 0;
  transition: color 180ms ease;
}

nav a::after {
  position: absolute;
  right: 0;
  bottom: 3px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--cedar);
  border-radius: 999px;
  opacity: 0;
  transform: scaleX(0.35);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

nav a:hover::after,
nav a:focus-visible::after {
  opacity: 1;
  transform: scaleX(1);
}

.header-cta,
.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  font-weight: 750;
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.header-cta {
  padding: 0 16px;
  background: var(--moss);
  color: var(--white);
  white-space: nowrap;
}

.cta-short {
  display: none;
}

.button {
  border: 1px solid transparent;
  padding: 12px 18px;
}

.button.primary {
  background: var(--cedar);
  color: var(--ink);
}

.button.primary:hover {
  background: var(--cedar-dark);
}

.header-cta:hover,
.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(24, 33, 29, 0.18);
}

.header-cta:active,
.button:active {
  transform: translateY(0);
  box-shadow: none;
}

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

.button.secondary.light {
  border-color: var(--line);
  color: var(--ink);
}

.button.secondary.light:hover {
  border-color: var(--moss);
  color: var(--moss);
}

.hero {
  position: relative;
  min-height: 760px;
  isolation: isolate;
  display: grid;
  align-items: end;
  padding: clamp(48px, 8vw, 96px) clamp(18px, 4vw, 56px);
  color: var(--white);
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(16, 24, 20, 0.9), rgba(16, 24, 20, 0.56) 48%, rgba(16, 24, 20, 0.18)),
    url("assets/hero-flooring.jpg") center / cover;
}

.hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  height: 160px;
  content: "";
  background: linear-gradient(0deg, rgba(247, 246, 241, 1), rgba(247, 246, 241, 0));
}

.hero-content {
  width: min(720px, 100%);
  padding-bottom: 48px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--cedar);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #d8ec7a;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: clamp(3rem, 8vw, 6.7rem);
  line-height: 0.92;
  letter-spacing: 0;
}

.hero-line {
  display: block;
  overflow: hidden;
}

.hero-line > span {
  display: block;
  opacity: 0;
  transform: translateY(112%);
  animation: heading-build 820ms var(--ease) forwards;
}

.hero-line:nth-child(4) > span {
  animation-delay: 120ms;
}

.hero-line:nth-child(3) > span {
  animation-delay: 260ms;
}

.hero-line:nth-child(2) > span {
  animation-delay: 400ms;
}

.hero-line:nth-child(1) > span {
  animation-delay: 540ms;
}

#hero-title.is-replaying .hero-line > span {
  animation: heading-replay 820ms var(--ease) forwards;
}

#hero-title.is-replaying .hero-line:nth-child(4) > span {
  animation-delay: 120ms;
}

#hero-title.is-replaying .hero-line:nth-child(3) > span {
  animation-delay: 260ms;
}

#hero-title.is-replaying .hero-line:nth-child(2) > span {
  animation-delay: 400ms;
}

#hero-title.is-replaying .hero-line:nth-child(1) > span {
  animation-delay: 540ms;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 4vw, 4.1rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.hero-content > p:not(.eyebrow) {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.14rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fade-up 680ms var(--ease) 860ms forwards;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0 36px;
  opacity: 0;
  transform: translateY(20px);
  animation: fade-up 680ms var(--ease) 980ms forwards;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: min(920px, 100%);
  margin: 0;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(18px);
  list-style: none;
}

.trust-strip li {
  display: grid;
  min-height: 72px;
  align-items: center;
  padding: 16px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.95rem;
  font-weight: 800;
}

.trust-strip li + li {
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

section:not(.hero) {
  position: relative;
  overflow: hidden;
  padding: clamp(68px, 8vw, 108px) clamp(18px, 4vw, 56px);
}

section:not(.hero) > * {
  position: relative;
  z-index: 1;
}

section:not(.hero)::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  content: "";
  opacity: 0.72;
}

.intro::before {
  background:
    radial-gradient(circle at 82% 18%, rgba(168, 201, 30, 0.13), transparent 28%),
    radial-gradient(circle at 10% 78%, rgba(17, 19, 18, 0.08), transparent 32%),
    repeating-linear-gradient(135deg, rgba(32, 39, 34, 0.04) 0 1px, transparent 1px 18px);
}

.intro,
.quote {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.steps,
.service-grid,
.why-grid,
.gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.steps article,
.why-grid article,
.service-grid article,
.contact-card,
.lead-form {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 36px rgba(24, 33, 29, 0.06);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.steps article,
.why-grid article,
.service-grid article {
  padding: 24px;
}

.steps article > *,
.why-grid article > *,
.service-grid article > * {
  position: relative;
  z-index: 1;
}

.steps article::after,
.why-grid article::after,
.service-grid article::after {
  position: absolute;
  right: -10px;
  bottom: -12px;
  width: var(--card-icon-width, 122px);
  height: var(--card-icon-height, 92px);
  content: "";
  background: var(--card-icon-color, var(--ink));
  -webkit-mask: var(--card-icon) center / contain no-repeat;
  mask: var(--card-icon) center / contain no-repeat;
  opacity: var(--card-icon-opacity, 0.075);
  pointer-events: none;
  transform: rotate(var(--card-icon-rotate, 0deg));
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.steps article:hover::after,
.why-grid article:hover::after,
.service-grid article:hover::after {
  opacity: 0.11;
  transform: translateY(-3px) rotate(var(--card-icon-rotate, 0deg));
}

.steps article:nth-child(1) {
  --card-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 160 110'%3E%3Cpath d='M18 70c0-22 18-40 40-40h50c19 0 34 15 34 34s-15 34-34 34H58c-15 0-28-13-28-28s13-28 28-28h48c12 0 22 10 22 22s-10 22-22 22H59c-9 0-16-7-16-16s7-16 16-16h43v13H60c-2 0-4 1-4 3s2 4 4 4h46c5 0 9-4 9-9s-4-9-9-9H58c-8 0-15 7-15 15s7 15 15 15h50c12 0 21-9 21-21s-9-21-21-21H58c-15 0-27 12-27 27H18z'/%3E%3Cpath d='M71 18h9v22h-9zm22 0h9v22h-9zm22 3h9v23h-9z'/%3E%3C/svg%3E");
}

.steps article:nth-child(2) {
  --card-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 150 120'%3E%3Cpath d='M34 86 92 28l25 25-58 58H34z'/%3E%3Cpath d='M100 20c5-5 13-5 18 0l8 8c5 5 5 13 0 18l-4 4-26-26zM28 93l-8 29 29-8z'/%3E%3C/svg%3E");
  --card-icon-rotate: -5deg;
}

.steps article:nth-child(3) {
  --card-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 150 120'%3E%3Cpath d='M56 10h38l10 16-9 12H55l-9-12zM61 42h28v12H61zm-6 18h40v12H55zm6 18h28v12H61zm-8 18h44l-12 14H65z'/%3E%3C/svg%3E");
}

.why-grid article:nth-child(1) {
  --card-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 150 120'%3E%3Cpath d='M56 10h38l10 16-9 12H55l-9-12zM61 42h28v12H61zm-6 18h40v12H55zm6 18h28v12H61zm-8 18h44l-12 14H65z'/%3E%3C/svg%3E");
}

.why-grid article:nth-child(2) {
  --card-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 150 120'%3E%3Cpath d='M40 18h20c2-8 9-14 17-14s16 6 18 14h20v92H40zM64 28h26v-7c0-7-6-12-13-12s-13 5-13 12zM54 43h72v56H54z'/%3E%3Cpath d='M66 57h45v8H66zm0 17h45v8H66z'/%3E%3C/svg%3E");
}

.why-grid article:nth-child(3) {
  --card-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 170 120'%3E%3Cpath d='M21 74c6-13 19-18 32-10l20 12c4 2 8 2 12 0l32-18c9-5 20-2 25 7s2 20-7 25l-36 20c-12 7-27 7-40 0L17 86z'/%3E%3Cpath d='M151 74c-6-13-19-18-32-10L99 76c-4 2-8 2-12 0L55 58c-9-5-20-2-25 7s-2 20 7 25l36 20c12 7 27 7 40 0l42-24z'/%3E%3C/svg%3E");
  --card-icon-width: 140px;
}

.service-grid article:nth-child(1) {
  --card-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 170 110'%3E%3Cpath d='M8 65 145 22l17 23L25 88z'/%3E%3Cpath d='M31 65 145 30l5 7L37 72zM52 76l100-31 4 6L57 82z' fill='white' fill-opacity='.42'/%3E%3C/svg%3E");
  --card-icon-width: 150px;
}

.service-grid article:nth-child(2) {
  --card-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 170 110'%3E%3Cpath d='M10 66 144 24l16 20L26 86z'/%3E%3Cpath d='M24 67 144 30l4 5L29 72zM39 76l113-35 4 5L44 81z' fill='white' fill-opacity='.28'/%3E%3C/svg%3E");
  --card-icon-width: 150px;
}

.service-grid article:nth-child(3) {
  --card-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 170 110'%3E%3Cpath d='M8 65 72 44l12 14 18-23 60-18-17 56-58 18-14-18-20 28-45-14z'/%3E%3Cpath d='M76 44 88 58l-14 15 14 18-15 5-18-23z' fill='white' fill-opacity='.42'/%3E%3C/svg%3E");
  --card-icon-width: 150px;
}

.service-grid article:nth-child(4) {
  --card-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 140 120'%3E%3Cpath d='M34 18h72l24 30-60 64L10 48zM46 30 30 48h28l8-18zm28 0-8 18h28l-8-18zm34 18-14-18 8 18zM66 58H32l38 40zm42 0H74v40z'/%3E%3C/svg%3E");
}

.steps article:hover,
.why-grid article:hover,
.service-grid article:hover,
.contact-card:hover {
  border-color: rgba(49, 86, 70, 0.28);
  box-shadow: var(--soft-shadow);
  transform: translateY(-4px);
}

.steps span,
.why-grid span {
  display: inline-block;
  margin-bottom: 38px;
  color: var(--cedar);
  font-weight: 850;
}

.steps p,
.why-grid p,
.service-grid p,
.section-heading p,
.quote-copy p,
footer {
  color: var(--muted);
}

.why {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), transparent),
    var(--paper);
}

.why::before {
  background:
    radial-gradient(circle at 12% 16%, rgba(168, 201, 30, 0.12), transparent 28%),
    radial-gradient(circle at 78% 76%, rgba(17, 19, 18, 0.08), transparent 30%),
    linear-gradient(90deg, rgba(32, 39, 34, 0.035) 1px, transparent 1px),
    linear-gradient(0deg, rgba(168, 201, 30, 0.035) 1px, transparent 1px);
  background-size:
    auto,
    auto,
    34px 34px,
    34px 34px;
}

.why-grid article {
  min-height: 220px;
}

.services {
  background:
    radial-gradient(circle at 86% 24%, rgba(168, 201, 30, 0.12), transparent 26%),
    radial-gradient(circle at 14% 82%, rgba(17, 19, 18, 0.09), transparent 30%),
    var(--mist);
}

.services::before {
  background:
    repeating-linear-gradient(120deg, rgba(24, 33, 29, 0.04) 0 1px, transparent 1px 22px),
    linear-gradient(135deg, rgba(255, 255, 255, 0.24), transparent);
}

.section-heading {
  width: min(820px, 100%);
  margin-bottom: 30px;
}

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

.service-grid article:nth-child(2),
.why-grid article:nth-child(2),
.steps article:nth-child(2),
.gallery figure:nth-child(2) {
  transition-delay: 90ms;
}

.service-grid article:nth-child(3),
.why-grid article:nth-child(3),
.steps article:nth-child(3),
.gallery figure:nth-child(3) {
  transition-delay: 180ms;
}

.service-grid article:nth-child(4) {
  transition-delay: 240ms;
}

.work {
  background:
    radial-gradient(circle at 16% 14%, rgba(168, 201, 30, 0.16), transparent 28%),
    radial-gradient(circle at 90% 72%, rgba(95, 105, 98, 0.2), transparent 30%),
    var(--ink);
  color: var(--white);
}

.work::before {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 42px 42px;
}

.work .section-heading p {
  color: rgba(255, 255, 255, 0.72);
}

.gallery figure {
  overflow: hidden;
  margin: 0;
  border-radius: 8px;
  background: #26302b;
  border: 1px solid rgba(255, 255, 255, 0.08);
  cursor: pointer;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.gallery figure:hover,
.gallery figure:focus-visible {
  border-color: rgba(255, 255, 255, 0.26);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.24);
  outline: none;
  transform: translateY(-4px);
}

.gallery img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 520ms var(--ease);
}

.gallery figure:hover img,
.gallery figure:focus-visible img {
  transform: scale(1.045);
}

.gallery figcaption {
  padding: 14px 16px 16px;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 700;
}

.store {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  background:
    radial-gradient(circle at 14% 18%, rgba(168, 201, 30, 0.18), transparent 30%),
    radial-gradient(circle at 82% 74%, rgba(95, 105, 98, 0.22), transparent 34%),
    var(--ink);
  color: var(--white);
}

.store::before {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 42px 42px;
}

.store-copy {
  max-width: 640px;
}

.store-copy p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.08rem;
}

.store-location {
  display: grid;
  gap: 4px;
  margin-top: 28px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.store-location span,
.store-location small {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.store-location strong {
  color: var(--white);
  font-size: clamp(1.55rem, 3vw, 2.35rem);
  line-height: 1;
}

.store-gallery {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 12px;
}

.store-gallery figure {
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.24);
}

.store-gallery .featured {
  grid-row: span 3;
}

.store-gallery img {
  width: 100%;
  height: 100%;
  min-height: 160px;
  object-fit: cover;
  filter: contrast(1.06) saturate(1.04) brightness(1.02);
  image-rendering: auto;
  transform: scale(1.01);
}

.store-gallery .featured img {
  aspect-ratio: 4 / 5;
}

.store-gallery figure:not(.featured) img {
  aspect-ratio: 5 / 3.2;
}

.quote {
  background:
    radial-gradient(circle at 18% 20%, rgba(17, 19, 18, 0.07), transparent 30%),
    radial-gradient(circle at 86% 68%, rgba(168, 201, 30, 0.13), transparent 30%),
    var(--paper);
}

.quote::before {
  background:
    repeating-linear-gradient(45deg, rgba(49, 86, 70, 0.035) 0 1px, transparent 1px 20px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.26), transparent);
}

.canadian-pride {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  background:
    radial-gradient(circle at 76% 20%, rgba(168, 201, 30, 0.1), transparent 30%),
    radial-gradient(circle at 18% 86%, rgba(17, 19, 18, 0.07), transparent 30%),
    #fbfaf6;
}

.canadian-pride::before {
  background:
    linear-gradient(120deg, rgba(168, 201, 30, 0.045) 0 12%, transparent 12% 24%, rgba(17, 19, 18, 0.03) 24% 36%, transparent 36%),
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.4), transparent 55%);
  background-size: 72px 72px, auto;
}

.canadian-media {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  aspect-ratio: 4 / 3;
  background: var(--white);
  box-shadow: var(--soft-shadow);
}

.canadian-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.canadian-copy {
  max-width: 680px;
}

.canadian-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.06rem;
}

.canadian-points {
  display: grid;
  gap: 10px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.canadian-points li {
  position: relative;
  padding: 14px 16px 14px 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  font-weight: 800;
  box-shadow: 0 10px 28px rgba(24, 33, 29, 0.05);
}

.canadian-points li::before {
  position: absolute;
  top: 50%;
  left: 16px;
  width: 10px;
  height: 10px;
  content: "";
  background: var(--cedar);
  border-radius: 50%;
  transform: translateY(-50%);
}

.reviews {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  background:
    radial-gradient(circle at 14% 20%, rgba(168, 201, 30, 0.12), transparent 30%),
    radial-gradient(circle at 86% 70%, rgba(17, 19, 18, 0.08), transparent 32%),
    var(--mist);
}

.reviews::before {
  background:
    repeating-linear-gradient(135deg, rgba(49, 86, 70, 0.04) 0 1px, transparent 1px 20px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.28), transparent);
}

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

.reviews-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.06rem;
}

.reviews-card {
  padding: clamp(22px, 4vw, 32px);
  border: 1px solid rgba(49, 86, 70, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--soft-shadow);
}

.stars {
  margin-bottom: 12px;
  color: var(--cedar);
  font-size: 1.4rem;
  letter-spacing: 0.08em;
}

.reviews-card strong {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1;
}

.reviews-card p {
  margin-bottom: 22px;
  color: var(--muted);
}

.review-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.contact-card {
  margin-top: 28px;
  padding: 22px;
}

.contact-card p {
  margin: 6px 0 0;
}

.contact-list {
  display: grid;
  gap: 12px;
  margin: 16px 0 20px;
  padding: 0;
  list-style: none;
}

.contact-list li {
  display: grid;
  gap: 2px;
  color: var(--ink);
}

.contact-list span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.contact-list a {
  color: var(--moss);
  font-weight: 800;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.lead-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: clamp(22px, 4vw, 38px);
}

.will-reveal {
  opacity: 0;
  transform: translateY(34px);
  transition:
    opacity 760ms var(--ease),
    transform 760ms var(--ease),
    border-color 180ms ease,
    box-shadow 180ms ease;
}

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

label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-weight: 750;
}

label:focus-within {
  color: var(--moss);
}

input,
select,
textarea {
  width: 100%;
  min-height: 50px;
  border: 1px solid #c6cec3;
  border-radius: 6px;
  padding: 12px 14px;
  background: #fbfbf7;
  color: var(--ink);
  font: inherit;
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--moss);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(49, 86, 70, 0.12);
  outline: none;
}

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

.hidden {
  display: none;
}

.full {
  grid-column: 1 / -1;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(18px, 4vw, 56px);
  border-top: 1px solid var(--line);
}

footer p {
  margin: 0;
}

footer a {
  color: var(--ink);
  font-weight: 750;
}

@keyframes heading-build {
  from {
    opacity: 0;
    transform: translateY(112%);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heading-replay {
  from {
    opacity: 0;
    transform: translateY(112%);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

  .hero-line > span,
  .hero-content > p:not(.eyebrow),
  .hero-actions {
    opacity: 1;
    transform: none;
  }
}

.thanks-page {
  min-height: 100vh;
  background:
    linear-gradient(90deg, rgba(24, 33, 29, 0.92), rgba(24, 33, 29, 0.62)),
    url("assets/hero-flooring.jpg") center / cover;
}

.thanks {
  display: grid;
  min-height: 100vh;
  align-content: center;
  gap: 34px;
  padding: clamp(22px, 5vw, 64px);
}

.thanks .brand {
  color: var(--white);
}

.thanks .brand-mark {
  background: var(--white);
  color: var(--ink);
}

.thanks .brand small {
  color: rgba(255, 255, 255, 0.72);
}

.thanks-panel {
  width: min(680px, 100%);
  padding: 0;
  color: var(--white);
}

.thanks-panel h1 {
  font-size: clamp(3rem, 8vw, 5.8rem);
}

.thanks-panel p:not(.eyebrow) {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.12rem;
}

@media (max-width: 1100px) {
  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 880px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  nav {
    display: none;
  }

  .hero {
    min-height: 720px;
  }

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

  .trust-strip li:nth-child(3) {
    border-left: 0;
  }

  .trust-strip li:nth-child(n + 3) {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }

  .intro,
  .store,
  .canadian-pride,
  .reviews,
  .quote {
    grid-template-columns: 1fr;
  }

  .canadian-pride {
    gap: 20px;
  }

  .canadian-media {
    width: min(220px, 48vw);
    justify-self: start;
  }

  .canadian-media img {
    height: 100%;
  }

  .steps,
  .service-grid,
  .why-grid,
  .gallery {
    grid-template-columns: 1fr;
  }

  .service-grid {
    gap: 12px;
  }

  .store-gallery {
    grid-template-columns: 1fr;
  }

  .store-gallery .featured {
    grid-row: auto;
  }
}

@media (max-width: 560px) {
  .site-header {
    gap: 12px;
    padding: 12px 14px;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
  }

  .brand strong {
    max-width: 150px;
    font-size: 0.88rem;
    line-height: 1.12;
  }

  .brand-flag {
    width: 25px;
    height: 17px;
  }

  .header-cta {
    min-height: 40px;
    padding: 0 12px;
    font-size: 0.86rem;
  }

  .cta-full {
    display: none;
  }

  .cta-short {
    display: inline;
  }

  .hero {
    min-height: 690px;
    padding: 44px 16px;
  }

  .canadian-media {
    width: 64px;
    margin-bottom: 4px;
    border-radius: 6px;
    box-shadow: 0 10px 26px rgba(24, 33, 29, 0.1);
  }

  .canadian-media img {
    height: 100%;
  }

  .canadian-copy .eyebrow {
    margin-bottom: 8px;
  }

  .canadian-copy h2 {
    font-size: clamp(1.9rem, 9vw, 2.55rem);
  }

  .canadian-copy p:not(.eyebrow) {
    font-size: 1rem;
  }

  .canadian-points {
    margin-top: 20px;
  }

  h1 {
    font-size: clamp(2.45rem, 13.5vw, 3.45rem);
    line-height: 0.98;
  }

  h2 {
    font-size: clamp(2rem, 11vw, 3rem);
    line-height: 1.05;
  }

  .hero-content {
    padding-bottom: 20px;
  }

  .hero-actions,
  footer {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

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

  .trust-strip li:nth-child(3) {
    border-left: 0;
  }

  .trust-strip li {
    min-height: 56px;
  }

  .trust-strip li + li {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-left: 0;
  }

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

  .contact-actions {
    flex-direction: column;
  }

  .reviews {
    gap: 22px;
  }

  .reviews-card {
    order: -1;
  }

  .review-actions {
    flex-direction: column;
  }
}
