:root {
  --charcoal: #1b1b1b;
  --walnut: #6b4a2e;
  --beige: #f5f1ea;
  --gold: #c8a96b;
  --cream: #fffaf2;
  --ink: #24201d;
  --muted: #756b5e;
  --line: rgba(107, 74, 46, 0.18);
  --glass: rgba(255, 250, 242, 0.12);
  --shadow: 0 28px 70px rgba(27, 27, 27, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--beige);
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  opacity: 0;
  transition: opacity 0.45s ease;
}

body.page-ready {
  opacity: 1;
}

body::selection {
  background: var(--gold);
  color: var(--charcoal);
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(27, 27, 27, 0.025) 1px, transparent 1px),
    linear-gradient(0deg, rgba(27, 27, 27, 0.018) 1px, transparent 1px);
  background-size: 80px 80px;
  content: "";
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 120;
  width: 100%;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
}

body.modal-open {
  overflow: hidden;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

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

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 1000;
  padding: 0.75rem 1rem;
  background: var(--gold);
  color: var(--charcoal);
  border-radius: 4px;
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  display: grid;
  grid-template-columns: auto minmax(460px, 1fr) auto;
  align-items: center;
  column-gap: clamp(1rem, 2vw, 2.4rem);
  padding: 1rem clamp(1rem, 4vw, 4rem);
  color: var(--cream);
  transition: background 0.3s ease, padding 0.3s ease, box-shadow 0.3s ease;
}

.site-header.scrolled {
  padding-block: 0.7rem;
  background: rgba(27, 27, 27, 0.9);
  backdrop-filter: blur(18px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  min-width: max-content;
}

.brand span {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(200, 169, 107, 0.75);
  color: var(--gold);
  font-family: "Playfair Display", serif;
  font-weight: 700;
}

.logo-mark {
  width: 52px;
  height: 52px;
  object-fit: contain;
  border: 1px solid rgba(200, 169, 107, 0.35);
  background: rgba(255, 250, 242, 0.08);
}

.brand strong {
  font-weight: 800;
  letter-spacing: 0;
}

.desktop-nav {
  display: flex;
  justify-content: center;
  gap: clamp(1rem, 3vw, 2.3rem);
  font-size: 0.92rem;
  font-weight: 600;
}

.desktop-nav a,
.phone-link {
  position: relative;
  opacity: 0.88;
}

.desktop-nav a::after,
.phone-link::after {
  position: absolute;
  right: 0;
  bottom: -0.3rem;
  left: 0;
  height: 1px;
  background: var(--gold);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease;
}

.desktop-nav a:hover::after,
.phone-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(0.75rem, 1.5vw, 1.2rem);
}

.header-contact {
  display: flex;
  align-items: center;
  gap: clamp(0.65rem, 1.2vw, 1rem);
  color: rgba(255, 250, 242, 0.78);
  font-size: clamp(0.7rem, 0.78vw, 0.84rem);
  font-weight: 800;
  line-height: 1.2;
  text-align: left;
  white-space: nowrap;
}

.header-contact a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0.42rem 0.62rem;
  border: 1px solid rgba(255, 250, 242, 0.16);
  background: rgba(255, 250, 242, 0.07);
  backdrop-filter: blur(12px);
}

.header-contact a {
  transition: color 0.2s ease;
}

.header-contact a:hover {
  color: var(--gold);
}

.phone-link {
  color: var(--gold);
  font-weight: 700;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 250, 242, 0.2);
  background: rgba(255, 255, 255, 0.08);
  color: var(--cream);
}

.nav-toggle span {
  display: block;
  width: 19px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.mobile-panel {
  position: fixed;
  inset: 74px 1rem auto;
  z-index: 49;
  display: none;
  padding: 1rem;
  background: rgba(27, 27, 27, 0.94);
  color: var(--cream);
  border: 1px solid rgba(200, 169, 107, 0.25);
  box-shadow: var(--shadow);
}

.mobile-panel.open {
  display: grid;
  gap: 0.8rem;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--cream);
  padding: 8rem clamp(1rem, 5vw, 5rem) 2rem;
}

.hero-bg,
.quote-bg {
  position: absolute;
  inset: 0;
  background-image: url("assets/hero-flooring.png");
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
}

.hero-bg {
  animation: cinematic 22s ease-in-out infinite alternate;
  transform: scale(1.08) translate3d(0, var(--parallax-y, 0), 0);
}

.hero-glow {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(circle at 22% 24%, rgba(200, 169, 107, 0.22), transparent 24%),
    radial-gradient(circle at 72% 28%, rgba(255, 250, 242, 0.12), transparent 26%),
    linear-gradient(110deg, rgba(107, 74, 46, 0.24), transparent 45%);
  mix-blend-mode: screen;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(27, 27, 27, 0.86), rgba(27, 27, 27, 0.38) 55%, rgba(27, 27, 27, 0.62)),
    linear-gradient(0deg, rgba(27, 27, 27, 0.8), transparent 52%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 920px;
  padding-bottom: 7rem;
}

.eyebrow {
  margin: 0 0 0.8rem;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

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

h1,
h2 {
  font-family: "Playfair Display", Georgia, serif;
  line-height: 1.02;
  letter-spacing: 0;
}

h1 {
  max-width: 920px;
  margin-bottom: clamp(1.4rem, 2vw, 2.2rem);
  font-size: clamp(4rem, 8.8vw, 9.8rem);
}

h2 {
  max-width: 900px;
  margin-bottom: 1rem;
  font-size: clamp(2.25rem, 4.5vw, 5rem);
}

h3 {
  margin-bottom: 0.55rem;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  line-height: 1.15;
}

.hero-copy {
  max-width: 690px;
  color: rgba(255, 250, 242, 0.84);
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  line-height: 1.75;
}

.hero-cta,
.swatches,
.filters,
.socials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0.95rem 1.35rem;
  border: 1px solid transparent;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 800;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.2);
}

.magnetic {
  will-change: transform;
}

.btn-primary {
  background: var(--gold);
  color: var(--charcoal);
}

.btn-secondary {
  border-color: rgba(255, 250, 242, 0.34);
  background: rgba(255, 250, 242, 0.1);
  color: var(--cream);
  backdrop-filter: blur(14px);
}

.trust-badges {
  position: absolute;
  right: clamp(1rem, 5vw, 5rem);
  bottom: 2rem;
  left: clamp(1rem, 5vw, 5rem);
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
}

.hero-proof {
  position: absolute;
  right: clamp(1rem, 5vw, 5rem);
  bottom: 7.5rem;
  z-index: 3;
  display: grid;
  width: min(280px, 30vw);
  gap: 0.2rem;
  padding: 1.2rem;
  border: 1px solid rgba(255, 250, 242, 0.16);
  background: rgba(255, 250, 242, 0.1);
  color: var(--cream);
  backdrop-filter: blur(18px);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
}

.hero-proof span {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-proof strong {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.4rem, 4vw, 4.5rem);
  line-height: 1;
}

.hero-proof small {
  color: rgba(255, 250, 242, 0.72);
}

.trust-badges span {
  padding: 1rem;
  border: 1px solid rgba(255, 250, 242, 0.14);
  background: rgba(255, 250, 242, 0.1);
  color: rgba(255, 250, 242, 0.9);
  text-align: center;
  backdrop-filter: blur(16px);
}

.section-pad {
  padding: clamp(4.5rem, 9vw, 8rem) clamp(1rem, 5vw, 5rem);
}

.showroom {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(360px, 1.08fr);
  gap: clamp(2rem, 6vw, 7rem);
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(120deg, rgba(255, 250, 242, 0.96), rgba(245, 241, 234, 0.86)),
    radial-gradient(circle at 75% 20%, rgba(200, 169, 107, 0.2), transparent 28%);
}

.showroom::before {
  position: absolute;
  right: -4vw;
  bottom: -1rem;
  color: rgba(107, 74, 46, 0.055);
  content: "SHOWROOM";
  font-family: "Playfair Display", serif;
  font-size: clamp(5rem, 14vw, 17rem);
  font-weight: 700;
  line-height: 0.8;
}

.showroom-copy,
.showroom-stack {
  position: relative;
  z-index: 1;
}

.showroom-copy p:not(.eyebrow) {
  max-width: 620px;
  color: var(--muted);
  font-size: 1.08rem;
}

.showroom-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 1.6rem 0 1.8rem;
}

.showroom-points span {
  padding: 0.55rem 0.75rem;
  border: 1px solid var(--line);
  background: rgba(255, 250, 242, 0.76);
  color: var(--walnut);
  font-size: 0.85rem;
  font-weight: 800;
}

.showroom-stack {
  min-height: clamp(460px, 58vw, 720px);
}

.showroom-stack img {
  position: absolute;
  box-shadow: 0 30px 80px rgba(27, 27, 27, 0.2);
}

.stack-main {
  inset: 8% 7% 10% 0;
  width: 82%;
  height: 78%;
}

.stack-float {
  border: 8px solid var(--cream);
}

.stack-float.one {
  right: 0;
  top: 0;
  width: 42%;
  height: 34%;
}

.stack-float.two {
  right: 4%;
  bottom: 0;
  width: 48%;
  height: 36%;
}

.section-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 520px);
  gap: clamp(2rem, 6vw, 6rem);
  align-items: end;
  margin-bottom: 2.2rem;
}

.section-intro .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -1.4rem;
}

.section-intro p:not(.eyebrow) {
  color: var(--muted);
}

.trust-grid,
.service-grid,
.why-grid,
.finance-grid,
.blog-grid,
.footer-grid {
  display: grid;
  gap: 1rem;
}

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

.metric {
  padding: 1.5rem;
  background: var(--cream);
  border: 1px solid var(--line);
  box-shadow: 0 14px 36px rgba(107, 74, 46, 0.08);
}

.metric strong {
  display: block;
  color: var(--walnut);
  font-family: "Playfair Display", serif;
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 1;
}

.metric span {
  color: var(--muted);
  font-weight: 700;
}

.review-shell {
  display: grid;
  grid-template-columns: 52px 1fr 52px;
  gap: 1rem;
  align-items: center;
  margin-top: 1rem;
}

.review-track {
  position: relative;
  min-height: 230px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--charcoal), #2e251e);
  color: var(--cream);
  box-shadow: var(--shadow);
}

.review {
  position: absolute;
  inset: 0;
  display: grid;
  align-content: center;
  padding: clamp(1.5rem, 4vw, 3rem);
  opacity: 0;
  transform: translateX(20px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.review.active {
  opacity: 1;
  transform: translateX(0);
}

.review p {
  max-width: 840px;
  font-size: clamp(1.1rem, 2vw, 1.55rem);
}

.review span {
  color: var(--gold);
}

.stars {
  color: var(--gold);
  letter-spacing: 0.12em;
}

.slider-btn {
  width: 52px;
  height: 52px;
  border: 1px solid var(--line);
  background: var(--cream);
  color: var(--walnut);
  cursor: pointer;
  font-size: 2rem;
}

.before-after {
  display: grid;
  grid-template-columns: minmax(260px, 0.55fr) minmax(320px, 1fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  background: var(--charcoal);
  color: var(--cream);
}

.ba-copy p:not(.eyebrow) {
  color: rgba(255, 250, 242, 0.72);
}

.ba-slider {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  box-shadow: 0 35px 90px rgba(0, 0, 0, 0.32);
}

.ba-after {
  position: absolute;
  inset: 0;
  width: 52%;
  overflow: hidden;
  border-right: 2px solid var(--gold);
}

.ba-after img {
  width: calc(100vw - 2rem);
  max-width: none;
}

.ba-slider input {
  position: absolute;
  inset: auto 0 1rem;
  width: calc(100% - 2rem);
  margin: auto 1rem;
  accent-color: var(--gold);
}

.services {
  background:
    radial-gradient(circle at 10% 20%, rgba(200, 169, 107, 0.16), transparent 30%),
    var(--beige);
}

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

.service-card,
.why-card,
.finance-card,
.blog-card {
  position: relative;
  overflow: hidden;
  padding: 1.35rem;
  background: rgba(255, 250, 242, 0.76);
  border: 1px solid var(--line);
  box-shadow: 0 16px 45px rgba(107, 74, 46, 0.08);
  transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.service-thumb {
  width: calc(100% + 2.7rem);
  height: 190px;
  margin: -1.35rem -1.35rem 1.15rem;
  object-fit: cover;
  filter: saturate(0.96) contrast(1.03);
  transition: transform 0.45s ease, filter 0.45s ease;
}

.service-card:hover .service-thumb {
  transform: scale(1.035);
  filter: saturate(1.08) contrast(1.04);
}

.service-card::before {
  position: absolute;
  inset: auto -20% -45% -20%;
  height: 60%;
  background: linear-gradient(90deg, rgba(107, 74, 46, 0.28), rgba(200, 169, 107, 0.22));
  content: "";
  transform: translateY(80%);
  transition: transform 0.35s ease;
}

.service-card:hover,
.why-card:hover,
.finance-card:hover,
.blog-card:hover {
  transform: translateY(-6px);
  border-color: rgba(200, 169, 107, 0.55);
  background: var(--cream);
}

.service-card:hover::before {
  transform: translateY(0);
}

.service-card > * {
  position: relative;
}

.service-card .service-thumb {
  position: relative;
  z-index: 1;
}

.icon,
.why-card span {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  margin-bottom: 1rem;
  background: var(--charcoal);
  color: var(--gold);
  font-size: 1.3rem;
}

.service-card p,
.why-card p,
.finance-card p,
.blog-card p {
  color: var(--muted);
}

.service-card a,
.blog-card a {
  color: var(--walnut);
  font-weight: 800;
}

.visualizer {
  display: grid;
  grid-template-columns: minmax(260px, 0.5fr) minmax(320px, 1fr);
  gap: clamp(2rem, 6vw, 6rem);
  align-items: center;
  background:
    linear-gradient(120deg, var(--charcoal), #2c231d);
  color: var(--cream);
}

.visualizer p:not(.eyebrow) {
  color: rgba(255, 250, 242, 0.68);
}

.swatch {
  width: 46px;
  height: 46px;
  border: 2px solid transparent;
  cursor: pointer;
}

.swatch.active {
  border-color: var(--charcoal);
  box-shadow: 0 0 0 3px var(--gold);
}

.swatch[data-floor="walnut"] { background: #5a351e; }
.swatch[data-floor="oak"] { background: #b88754; }
.swatch[data-floor="ash"] { background: #d7c7ae; }

.room-preview {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  background: #e7dfd3;
  box-shadow: var(--shadow);
  transition: background 0.4s ease;
}

.room-preview .wall {
  position: absolute;
  inset: 0 0 34%;
  background: linear-gradient(120deg, #eee7dd, #d5c6b7);
}

.room-preview .floor {
  position: absolute;
  inset: 50% -10% -20%;
  background:
    repeating-linear-gradient(90deg, rgba(255,255,255,0.1) 0 3px, transparent 3px 84px),
    linear-gradient(120deg, #5a351e, #8a6040);
  transform: skewY(-8deg);
  transform-origin: left;
  transition: background 0.4s ease;
}

.room-preview.oak .floor {
  background:
    repeating-linear-gradient(90deg, rgba(255,255,255,0.13) 0 3px, transparent 3px 84px),
    linear-gradient(120deg, #b88754, #d0a06b);
}

.room-preview.ash .floor {
  background:
    repeating-linear-gradient(90deg, rgba(99,76,54,0.13) 0 3px, transparent 3px 84px),
    linear-gradient(120deg, #d7c7ae, #f0e4d2);
}

.window,
.sofa {
  position: absolute;
  z-index: 2;
}

.window {
  top: 15%;
  right: 12%;
  width: 24%;
  height: 31%;
  border: 10px solid #f9f5ed;
  background: linear-gradient(135deg, #c9d6d8, #f7efe0);
  box-shadow: 0 20px 45px rgba(0,0,0,0.12);
}

.sofa {
  right: 19%;
  bottom: 26%;
  width: 34%;
  height: 17%;
  background: #24201d;
  box-shadow: 0 18px 38px rgba(0,0,0,0.22);
}

.projects {
  background: #efe7dc;
}

.filters {
  margin-bottom: 1.2rem;
}

.filters button {
  padding: 0.65rem 1rem;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--walnut);
  cursor: pointer;
  font-weight: 800;
}

.filters button.active,
.filters button:hover {
  background: var(--charcoal);
  color: var(--gold);
}

.masonry {
  display: grid;
  grid-auto-flow: dense;
  grid-auto-rows: 220px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border: 0;
  padding: 0;
  cursor: pointer;
  background: var(--charcoal);
}

.gallery-item.tall { grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }

.gallery-item img {
  transition: transform 0.55s ease, filter 0.55s ease;
}

.gallery-item::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(27,27,27,0.7), transparent 55%);
  content: "";
}

.gallery-item span {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  z-index: 1;
  color: var(--cream);
  font-weight: 800;
  text-align: left;
}

.gallery-item:hover img {
  transform: scale(1.08);
  filter: saturate(1.08);
}

.gallery-item.hidden {
  display: none;
}

.why {
  background: var(--charcoal);
  color: var(--cream);
}

.why .section-intro p:not(.eyebrow),
.why-card p {
  color: rgba(255, 250, 242, 0.66);
}

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

.service-overview {
  padding-top: clamp(3rem, 6vw, 5rem);
  padding-bottom: clamp(3rem, 6vw, 5rem);
  background:
    linear-gradient(180deg, rgba(255, 250, 242, 0.9), rgba(245, 241, 234, 0.96));
}

.city-overview {
  padding-top: clamp(3rem, 5vw, 4.5rem);
  padding-bottom: clamp(3rem, 5vw, 4.5rem);
}

.city-overview .section-intro,
.service-overview .section-intro {
  margin-bottom: 1.5rem;
}

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

.capability-card {
  min-height: 168px;
  padding: 1.15rem;
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(255, 250, 242, 0.9), rgba(245, 241, 234, 0.76));
  box-shadow: 0 14px 34px rgba(107, 74, 46, 0.08);
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.capability-card:nth-child(4n + 2),
.capability-card:nth-child(4n + 3) {
  transform: translateY(1rem);
}

.capability-card:hover {
  transform: translateY(-4px);
  border-color: rgba(200, 169, 107, 0.5);
}

.capability-card h3 {
  margin-bottom: 0.45rem;
  color: var(--walnut);
  font-size: 1.05rem;
}

.capability-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.premium-trust {
  position: relative;
  overflow: hidden;
  background: var(--charcoal);
  color: var(--cream);
}

.premium-trust::before {
  position: absolute;
  inset: 0;
  color: rgba(255, 250, 242, 0.035);
  content: "CRAFTSMANSHIP";
  font-family: "Playfair Display", serif;
  font-size: clamp(5rem, 16vw, 18rem);
  font-weight: 700;
  line-height: 0.8;
  transform: translate(3vw, 2rem);
}

.premium-trust > * {
  position: relative;
}

.premium-trust .section-intro p:not(.eyebrow) {
  color: rgba(255, 250, 242, 0.68);
}

.trust-feature-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 1.1fr 0.9fr;
  gap: 1rem;
}

.trust-feature {
  min-height: 230px;
  padding: 1.3rem;
  border: 1px solid rgba(255, 250, 242, 0.13);
  background: rgba(255, 250, 242, 0.07);
  backdrop-filter: blur(14px);
}

.trust-feature:nth-child(even) {
  transform: translateY(2rem);
}

.trust-feature strong {
  display: block;
  margin-bottom: 0.75rem;
  color: var(--gold);
  font-size: 1.1rem;
}

.trust-feature p {
  color: rgba(255, 250, 242, 0.68);
}

.partner-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  align-items: center;
  margin-top: 3rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255, 250, 242, 0.14);
}

.partner-strip span {
  margin-right: 0.6rem;
  color: rgba(255, 250, 242, 0.6);
  font-weight: 800;
}

.partner-strip b {
  padding: 0.55rem 0.85rem;
  border: 1px solid rgba(200, 169, 107, 0.26);
  color: var(--gold);
  font-size: 0.85rem;
}

.comparison {
  background: var(--cream);
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  box-shadow: 0 24px 70px rgba(107, 74, 46, 0.1);
}

table {
  width: 100%;
  border-collapse: collapse;
  background: rgba(255, 250, 242, 0.92);
}

th,
td {
  padding: 1.15rem;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

th {
  background: var(--charcoal);
  color: var(--gold);
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

td:first-child {
  color: var(--walnut);
  font-weight: 900;
}

.featured-projects {
  background: #eee6da;
}

.featured-project-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 1fr;
  gap: 1rem;
  align-items: stretch;
}

.featured-project {
  position: relative;
  min-height: 460px;
  overflow: hidden;
  color: var(--cream);
  box-shadow: var(--shadow);
}

.featured-project:nth-child(2) {
  margin-top: 3rem;
}

.featured-project img {
  transition: transform 0.7s ease, filter 0.7s ease;
}

.featured-project::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(27, 27, 27, 0.82), rgba(27, 27, 27, 0.08) 58%);
  content: "";
}

.featured-project span,
.featured-project h3,
.featured-project p {
  position: absolute;
  z-index: 1;
  right: 1.2rem;
  left: 1.2rem;
}

.featured-project span {
  bottom: 7.2rem;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.featured-project h3 {
  bottom: 3rem;
  max-width: 430px;
}

.featured-project p {
  bottom: 1rem;
  color: rgba(255, 250, 242, 0.72);
}

.featured-project:hover img {
  transform: scale(1.08);
  filter: saturate(1.08);
}

.authority {
  background:
    linear-gradient(120deg, rgba(27, 27, 27, 0.96), rgba(43, 34, 28, 0.94)),
    url("assets/FLOOR TILES/project-herringbone-tile.jpg") center/cover fixed;
  color: var(--cream);
}

.authority .section-intro p:not(.eyebrow) {
  color: rgba(255, 250, 242, 0.68);
}

.authority-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 0.75fr 0.75fr;
  gap: 1rem;
  align-items: stretch;
}

.profile-review,
.standard-card {
  border: 1px solid rgba(255, 250, 242, 0.14);
  background: rgba(255, 250, 242, 0.08);
  backdrop-filter: blur(14px);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
}

.profile-review {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 1rem;
  padding: 1.35rem;
}

.avatar {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 1px solid rgba(200, 169, 107, 0.38);
  background: rgba(200, 169, 107, 0.16);
  color: var(--gold);
  font-weight: 900;
}

.profile-review p {
  color: rgba(255, 250, 242, 0.78);
}

.profile-review strong {
  color: var(--gold);
}

.standard-card {
  display: grid;
  align-content: end;
  min-height: 240px;
  padding: 1.25rem;
}

.standard-card span {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.standard-card strong {
  margin-top: 0.8rem;
  font-family: "Playfair Display", serif;
  font-size: 1.55rem;
  line-height: 1.08;
}

.project-card {
  color: inherit;
}

.project-card span {
  display: grid;
  gap: 0.35rem;
}

.project-card strong,
.project-card small {
  display: block;
}

.project-card strong {
  color: var(--cream);
  font-size: 1.1rem;
}

.project-card small {
  color: rgba(255, 250, 242, 0.72);
}

.project-story {
  background: var(--cream);
}

.project-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-bottom: 2rem;
}

.project-meta span {
  padding: 0.55rem 0.85rem;
  border: 1px solid var(--line);
  background: var(--beige);
  color: var(--walnut);
  font-weight: 800;
}

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

.story-grid section {
  padding: clamp(1.2rem, 3vw, 2rem);
  border: 1px solid var(--line);
  background: var(--beige);
}

.story-grid h2 {
  font-size: clamp(1.8rem, 3vw, 3.4rem);
}

.authority-copy p + p {
  margin-top: 1rem;
}

.why-card {
  background: rgba(255, 250, 242, 0.06);
  border-color: rgba(255, 250, 242, 0.12);
  box-shadow: none;
}

.why-card:hover {
  background: rgba(255, 250, 242, 0.1);
}

.areas {
  background:
    linear-gradient(120deg, rgba(27, 27, 27, 0.82), rgba(27, 27, 27, 0.62)),
    url("assets/HARDWOOD FLOORING/project-herringbone-wood.jpg") center/cover fixed;
  color: var(--cream);
}

.areas-panel {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(260px, 1fr);
  gap: 2rem;
  padding: clamp(1.5rem, 4vw, 3rem);
  border: 1px solid rgba(255, 250, 242, 0.18);
  background: rgba(255, 250, 242, 0.1);
  backdrop-filter: blur(16px);
}

.areas-panel p {
  color: rgba(255, 250, 242, 0.74);
}

.city-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.city-links a {
  padding: 0.85rem 1rem;
  border: 1px solid rgba(255, 250, 242, 0.16);
  background: rgba(255, 250, 242, 0.08);
  color: var(--cream);
  font-weight: 800;
  transition: background 0.25s ease, color 0.25s ease;
}

.city-links a:hover {
  background: var(--gold);
  color: var(--charcoal);
}

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

.finance-hero-panel {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(280px, 0.55fr);
  gap: clamp(2rem, 6vw, 6rem);
  align-items: center;
  background:
    radial-gradient(circle at 80% 20%, rgba(200, 169, 107, 0.18), transparent 28%),
    var(--cream);
}

.finance-statement p:not(.eyebrow) {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.08rem;
}

.finance-summary {
  display: grid;
  gap: 0.9rem;
  padding: clamp(1.3rem, 4vw, 2.4rem);
  background: var(--charcoal);
  color: var(--cream);
  box-shadow: var(--shadow);
}

.finance-summary strong {
  color: var(--gold);
  font-family: "Playfair Display", serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1;
}

.finance-summary span {
  margin-bottom: 0.65rem;
  color: rgba(255, 250, 242, 0.68);
}

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

.local-signal {
  display: grid;
  grid-template-columns: minmax(280px, 0.88fr) minmax(280px, 0.72fr);
  gap: clamp(2rem, 6vw, 6rem);
  align-items: center;
  background:
    linear-gradient(120deg, var(--cream), rgba(245, 241, 234, 0.86));
}

.local-copy p:not(.eyebrow) {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.08rem;
}

.local-proof {
  position: relative;
  min-height: 360px;
  display: grid;
  align-content: end;
  padding: clamp(1.3rem, 4vw, 2.4rem);
  overflow: hidden;
  background:
    linear-gradient(0deg, rgba(27, 27, 27, 0.92), rgba(27, 27, 27, 0.28)),
    url("assets/HARDWOOD FLOORING/project-herringbone-wood.jpg") center/cover;
  color: var(--cream);
  box-shadow: var(--shadow);
}

.local-proof span {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.local-proof strong {
  margin: 0.6rem 0;
  font-family: "Playfair Display", serif;
  font-size: clamp(1.7rem, 3vw, 3rem);
  line-height: 1.05;
}

.local-proof p {
  margin-bottom: 0;
  color: rgba(255, 250, 242, 0.72);
}

.blog-card {
  padding: 0;
}

.blog-card img {
  height: 230px;
}

.blog-card div {
  padding: 1.2rem;
}

.faq {
  background: var(--cream);
}

.faq-list {
  display: grid;
  gap: 0.7rem;
  max-width: 960px;
}

details {
  border: 1px solid var(--line);
  background: var(--beige);
}

summary {
  cursor: pointer;
  padding: 1.1rem;
  color: var(--walnut);
  font-weight: 800;
}

details p {
  padding: 0 1.1rem 1.1rem;
  color: var(--muted);
}

.quote {
  position: relative;
  display: grid;
  grid-template-columns: minmax(260px, 0.75fr) minmax(320px, 1fr);
  gap: clamp(2rem, 5vw, 4rem);
  overflow: hidden;
  color: var(--cream);
}

.quote::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(27,27,27,0.9), rgba(27,27,27,0.65));
  content: "";
}

.quote-bg {
  filter: saturate(0.85);
}

.quote-content,
.quote-form {
  position: relative;
  z-index: 2;
}

.quote-content p:not(.eyebrow) {
  color: rgba(255, 250, 242, 0.74);
}

.quote-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  padding: clamp(1rem, 3vw, 2rem);
  border: 1px solid rgba(255, 250, 242, 0.16);
  background: rgba(255, 250, 242, 0.12);
  backdrop-filter: blur(18px);
}

label {
  display: grid;
  gap: 0.35rem;
  color: rgba(255, 250, 242, 0.82);
  font-size: 0.85rem;
  font-weight: 800;
}

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

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(255, 250, 242, 0.2);
  border-radius: 4px;
  padding: 0.9rem 1rem;
  background: rgba(27, 27, 27, 0.5);
  color: var(--cream);
  outline: 0;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200, 169, 107, 0.18);
}

.footer {
  padding: 4rem clamp(1rem, 5vw, 5rem) 2rem;
  background: #121212;
  color: var(--cream);
}

.footer-grid {
  grid-template-columns: 1.2fr repeat(3, minmax(160px, 0.7fr));
  align-items: start;
}

.footer p,
.footer a,
.footer-bottom {
  color: rgba(255, 250, 242, 0.66);
}

.footer h3 {
  color: var(--gold);
}

.footer-grid > div {
  display: grid;
  gap: 0.55rem;
}

.footer iframe {
  width: 100%;
  height: 150px;
  border: 0;
  filter: grayscale(1) contrast(0.95);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 250, 242, 0.12);
  font-size: 0.9rem;
}

.sticky-cta {
  position: fixed;
  right: 0.75rem;
  bottom: 0.75rem;
  left: 0.75rem;
  z-index: 45;
  display: none;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.sticky-cta a,
.sticky-cta button {
  display: grid;
  min-height: 50px;
  place-items: center;
  border: 0;
  background: var(--charcoal);
  color: var(--cream);
  cursor: pointer;
  font-weight: 800;
}

.sticky-cta button {
  background: var(--gold);
  color: var(--charcoal);
}

.floating-contact {
  position: fixed;
  right: 1.1rem;
  bottom: 5.5rem;
  z-index: 44;
  display: grid;
  gap: 0.65rem;
}

.floating-contact a,
.floating-contact button {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border: 1px solid rgba(200, 169, 107, 0.3);
  background: var(--charcoal);
  color: var(--gold);
  cursor: pointer;
  box-shadow: var(--shadow);
}

.chat-button {
  position: fixed;
  right: 1.1rem;
  bottom: 1.1rem;
  z-index: 43;
  border: 0;
  padding: 0.85rem 1rem;
  background: var(--gold);
  color: var(--charcoal);
  cursor: pointer;
  font-weight: 800;
  box-shadow: var(--shadow);
}

.chat-box {
  position: fixed;
  right: 1.1rem;
  bottom: 4.6rem;
  z-index: 43;
  display: none;
  width: min(320px, calc(100vw - 2rem));
  padding: 1rem;
  background: var(--cream);
  color: var(--ink);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.chat-box.open {
  display: block;
}

.chat-box a {
  color: var(--walnut);
  font-weight: 800;
}

.modal,
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  place-items: center;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.72);
}

.modal.open,
.lightbox.open {
  display: grid;
}

.modal-card {
  position: relative;
  width: min(560px, 100%);
  padding: clamp(1.3rem, 4vw, 2.2rem);
  background: var(--beige);
  box-shadow: 0 30px 90px rgba(0,0,0,0.35);
}

.modal-card p:not(.eyebrow) {
  color: var(--muted);
}

.modal-close,
.lightbox button {
  position: absolute;
  top: 1rem;
  right: 1rem;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 0;
  background: var(--charcoal);
  color: var(--gold);
  cursor: pointer;
  font-size: 1.4rem;
}

.mini-form {
  display: grid;
  gap: 0.8rem;
}

.mini-form input,
.mini-form select {
  background: var(--cream);
  color: var(--ink);
  border-color: var(--line);
}

.lightbox img {
  width: min(1100px, 100%);
  max-height: 78vh;
}

.lightbox p {
  margin-top: 1rem;
  color: var(--cream);
  font-weight: 800;
}

.text-reveal,
.reveal {
  opacity: 0;
  transform: translateY(24px);
}

.text-reveal.in,
.reveal.in {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

@keyframes cinematic {
  from { transform: scale(1.05) translate3d(0, 0, 0); }
  to { transform: scale(1.12) translate3d(-1.5%, -1%, 0); }
}

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

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

  .header-contact {
    display: none;
  }

  .trust-grid,
  .why-grid,
  .capability-grid,
  .trust-feature-grid,
  .authority-grid,
  .featured-project-grid,
  .story-grid,
  .finance-grid,
  .blog-grid,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .showroom,
  .spa-showcase,
  .finance-hero-panel,
  .local-signal {
    grid-template-columns: 1fr;
  }

  .showroom-stack,
  .spa-images {
    min-height: 520px;
  }

  .hero-proof {
    display: none;
  }
}

@media (max-width: 760px) {
  .desktop-nav,
  .phone-link,
  .header-contact,
  .floating-contact,
  .chat-button,
  .chat-box {
    display: none;
  }

  .nav-toggle,
  .sticky-cta {
    display: grid;
  }

  .site-header {
    padding: 0.8rem 1rem;
  }

  .brand strong {
    font-size: 0.95rem;
  }

  .hero {
    min-height: 96svh;
    padding: 7rem 1rem 1rem;
  }

  .hero-content {
    padding-bottom: 10rem;
  }

  h1 {
    font-size: clamp(3rem, 16vw, 4.8rem);
  }

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

  .section-intro,
  .before-after,
  .visualizer,
  .areas-panel,
  .quote {
    grid-template-columns: 1fr;
  }

  .section-intro .eyebrow {
    margin-bottom: 0;
  }

  .trust-grid,
  .service-grid,
  .why-grid,
  .capability-grid,
  .trust-feature-grid,
  .authority-grid,
  .featured-project-grid,
  .story-grid,
  .finance-grid,
  .blog-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .capability-card:nth-child(4n + 2),
  .capability-card:nth-child(4n + 3) {
    transform: none;
  }

  .showroom-stack,
  .spa-images {
    min-height: 360px;
  }

  .stack-main {
    inset: 0 12% 8% 0;
    width: 86%;
    height: 78%;
  }

  .stack-float.one {
    width: 46%;
    height: 32%;
  }

  .stack-float.two {
    width: 52%;
    height: 34%;
  }

  .spa-large {
    inset: 0 8% 10% 0;
    width: 84%;
    height: 78%;
  }

  .spa-small {
    width: 54%;
    height: 36%;
  }

  .profile-review {
    grid-template-columns: 1fr;
  }

  .trust-feature:nth-child(even),
  .featured-project:nth-child(2) {
    transform: none;
    margin-top: 0;
  }

  .featured-project {
    min-height: 340px;
  }

  .review-shell {
    grid-template-columns: 1fr;
  }

  .slider-btn {
    display: none;
  }

  .masonry {
    grid-template-columns: 1fr;
    grid-auto-rows: 260px;
  }

  .gallery-item.tall,
  .gallery-item.wide {
    grid-column: auto;
    grid-row: auto;
  }

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

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

  .footer-bottom {
    flex-direction: column;
    padding-bottom: 3rem;
  }
}

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

.subhero {
  min-height: 72svh;
}

.subhero .hero-content {
  padding-bottom: 5rem;
}

.content-band {
  background: var(--cream);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(300px, 1fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
  background: var(--beige);
}

.split-section > div:first-child {
  position: sticky;
  top: 6rem;
}

.option-list {
  display: grid;
  gap: 0.9rem;
}

.option-list > div {
  padding: 1.2rem;
  border: 1px solid var(--line);
  background: rgba(255, 250, 242, 0.78);
  box-shadow: 0 12px 34px rgba(107, 74, 46, 0.08);
}

.option-list strong {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--walnut);
  font-size: 1.05rem;
}

.option-list p {
  margin-bottom: 0;
  color: var(--muted);
}

.timeline {
  background:
    linear-gradient(120deg, rgba(27, 27, 27, 0.95), rgba(48, 37, 28, 0.92)),
    url("assets/FLOOR TILES/project-herringbone-tile.jpg") center/cover;
  color: var(--cream);
}

.timeline .section-intro p:not(.eyebrow) {
  color: rgba(255, 250, 242, 0.68);
}

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

.bathroom-hero .hero-overlay {
  background:
    linear-gradient(90deg, rgba(12, 12, 12, 0.88), rgba(27, 27, 27, 0.45) 58%, rgba(27, 27, 27, 0.7)),
    linear-gradient(0deg, rgba(27, 27, 27, 0.82), transparent 55%);
}

.bathroom-service-grid .service-card {
  background:
    linear-gradient(135deg, rgba(255, 250, 242, 0.9), rgba(245, 241, 234, 0.78)),
    repeating-linear-gradient(135deg, rgba(200, 169, 107, 0.08) 0 1px, transparent 1px 18px);
}

.spa-showcase {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(280px, 0.82fr);
  gap: clamp(2rem, 6vw, 6rem);
  align-items: center;
  background:
    radial-gradient(circle at 20% 20%, rgba(200, 169, 107, 0.15), transparent 28%),
    linear-gradient(120deg, #f8f4ec, #e9dfd2);
}

.spa-images {
  position: relative;
  min-height: clamp(440px, 56vw, 680px);
}

.spa-images img {
  position: absolute;
  box-shadow: 0 30px 90px rgba(27, 27, 27, 0.2);
}

.spa-large {
  inset: 0 13% 8% 0;
  width: 78%;
  height: 86%;
}

.spa-small {
  right: 0;
  bottom: 0;
  width: 46%;
  height: 42%;
  border: 8px solid var(--cream);
}

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

.bathroom-timeline {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.timeline-grid article {
  min-height: 220px;
  padding: 1.4rem;
  border: 1px solid rgba(255, 250, 242, 0.14);
  background: rgba(255, 250, 242, 0.08);
  backdrop-filter: blur(14px);
}

.timeline-grid span {
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  margin-bottom: 1.2rem;
  border: 1px solid rgba(200, 169, 107, 0.42);
  color: var(--gold);
  font-weight: 800;
}

.timeline-grid p {
  color: rgba(255, 250, 242, 0.68);
}

.article {
  max-width: 980px;
  margin: 0 auto;
  background: var(--beige);
}

.article h2 {
  margin-top: 2.2rem;
  font-size: clamp(1.9rem, 3vw, 3rem);
}

.article p {
  color: var(--muted);
  font-size: 1.06rem;
}

.article .city-links {
  margin-top: 1rem;
}

.article .city-links a {
  border-color: var(--line);
  background: var(--cream);
  color: var(--walnut);
}

.article .city-links a:hover {
  background: var(--charcoal);
  color: var(--gold);
}

.site-header .brand[href$="index.html"] {
  color: var(--cream);
}

@media (min-width: 761px) {
  .subhero .trust-badges {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

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

@media (max-width: 760px) {
  .subhero {
    min-height: 86svh;
  }

  .split-section,
  .timeline-grid {
    grid-template-columns: 1fr;
  }

  .split-section > div:first-child {
    position: static;
  }

  .timeline-grid article {
    min-height: auto;
  }
}
