:root {
  --ink: #1f2523;
  --muted: #66706c;
  --line: #d9ded9;
  --paper: #f7f6f1;
  --paper-strong: #eeece3;
  --white: #fffdfa;
  --forest: #244235;
  --forest-soft: #dfe8df;
  --clay: #a15f42;
  --sand: #d9cbb6;
  --shadow: 0 24px 70px rgba(39, 45, 41, 0.12);
  --radius: 8px;
  --max: 1180px;
  font-family: "Avenir Next", "Segoe UI", system-ui, -apple-system, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  overflow-x: clip;
}

body.menu-open {
  overflow: hidden;
}

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

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

p {
  margin: 0 0 1rem;
  color: var(--muted);
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--ink);
  line-height: 1.04;
  letter-spacing: 0;
  overflow-wrap: normal;
  text-wrap: balance;
}

h1 {
  font-size: clamp(2.7rem, 7vw, 6rem);
  max-width: 11ch;
}

h2 {
  font-size: clamp(2rem, 4vw, 4rem);
}

h3 {
  font-size: clamp(1.25rem, 2vw, 1.7rem);
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: 1rem;
  z-index: 100;
  transform: translateY(-140%);
  background: var(--ink);
  color: var(--white);
  padding: .75rem 1rem;
  border-radius: var(--radius);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(31, 37, 35, .1);
  background: rgba(247, 246, 241, .88);
  backdrop-filter: blur(18px);
}

.nav {
  max-width: 1320px;
  margin: 0 auto;
  min-height: 78px;
  padding: 0 24px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .85rem;
  font-weight: 800;
}

.brand-logo {
  display: block;
  width: 108px;
  height: auto;
}

.brand-text {
  display: block;
  color: var(--muted);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.nav-menu {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link,
.dropdown-toggle {
  border: 0;
  background: transparent;
  color: var(--ink);
  padding: .66rem .72rem;
  border-radius: 999px;
  font: inherit;
  font-size: .92rem;
  cursor: pointer;
}

.nav-link:hover,
.nav-link.active,
.dropdown-toggle.active,
.dropdown-toggle:hover {
  background: var(--forest-soft);
}

.dropdown {
  position: relative;
  padding-bottom: 12px;
  margin-bottom: -12px;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  right: 0;
  min-width: 230px;
  padding: .55rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: .18s ease;
}

.dropdown:hover .dropdown-menu,
.dropdown:focus-within .dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.dropdown-menu a {
  display: block;
  padding: .7rem .8rem;
  border-radius: 6px;
  color: var(--muted);
}

.dropdown-menu a:hover,
.dropdown-menu a.active {
  color: var(--ink);
  background: var(--paper);
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  min-height: 46px;
  padding: .8rem 1rem;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  cursor: pointer;
  transition: transform .18s ease, background .18s ease, color .18s ease;
}

.button:hover,
.nav-cta:hover {
  transform: translateY(-1px);
}

.button:focus-visible,
.nav-cta:focus-visible,
.nav-link:focus-visible,
.dropdown-toggle:focus-visible,
.menu-button:focus-visible {
  outline: 3px solid rgba(194, 33, 31, .35);
  outline-offset: 3px;
}

.button:active,
.nav-cta:active {
  transform: translateY(1px);
}

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

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

.button.light {
  border-color: rgba(255, 253, 250, .7);
  background: var(--white);
  color: var(--ink);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
}

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: clamp(72px, 10vw, 132px) 0;
}

.section.compact {
  padding: clamp(48px, 7vw, 90px) 0;
}

.section-header {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, .8fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: end;
  margin-bottom: 42px;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--clay);
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.lead {
  font-size: clamp(1.08rem, 2vw, 1.35rem);
  color: #4e5854;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: min(840px, calc(100dvh - 78px));
  display: grid;
  align-items: stretch;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(115deg, rgba(255, 242, 217, .9) 0%, rgba(247, 246, 241, .95) 34%, rgba(238, 236, 227, .7) 100%),
    var(--paper);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(130deg, rgba(195, 42, 37, .08), transparent 36%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  max-width: 1480px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: minmax(420px, .92fr) minmax(0, 1.08fr);
  align-items: stretch;
}

.hero-copy {
  position: relative;
  padding: clamp(46px, 6vw, 96px) clamp(24px, 4.5vw, 72px) clamp(150px, 16vw, 180px);
  align-self: stretch;
  min-height: 100%;
}

.hero-copy .eyebrow,
.hero-copy h1,
.hero-copy .lead,
.hero-actions,
.proof-item,
.hero-product-card,
.visual-label {
  opacity: 0;
  animation: hero-rise .7s cubic-bezier(.16, 1, .3, 1) forwards;
}

.hero-copy h1 {
  animation-delay: .08s;
}

.hero-copy .lead {
  animation-delay: .16s;
}

.hero-actions {
  animation-delay: .24s;
}

.proof-item:nth-child(1) {
  animation-delay: .32s;
}

.proof-item:nth-child(2) {
  animation-delay: .4s;
}

.proof-item:nth-child(3) {
  animation-delay: .48s;
}

.hero-product-card:nth-child(1) {
  animation-delay: .28s;
}

.hero-product-card:nth-child(2) {
  animation-delay: .38s;
}

.hero-product-card:nth-child(3) {
  animation-delay: .48s;
}

.visual-label {
  animation-delay: .56s;
}

.hero-copy .eyebrow {
  color: #c2211f;
}

.hero-copy .lead {
  max-width: 50ch;
  margin: 1.45rem 0 2.15rem;
  color: #46504c;
}

.hero-copy h1 {
  max-width: 14ch;
  font-size: clamp(2.85rem, 4.8vw, 5.35rem);
  line-height: 1.10;
  text-wrap: balance;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .85rem;
}

.hero-proof {
  position: absolute;
  right: clamp(24px, 4.5vw, 72px);
  bottom: 0;
  left: clamp(24px, 4.5vw, 72px);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-top: 0;
  border-top: 1px solid rgba(31, 37, 35, .18);
  border-bottom: 1px solid rgba(31, 37, 35, .12);
}

.proof-item {
  min-width: 0;
  padding: 1.1rem 1.15rem 1.1rem 0;
}

.proof-item + .proof-item {
  padding-left: 1.15rem;
  border-left: 1px solid rgba(31, 37, 35, .12);
}

.proof-item strong {
  display: block;
  font-size: clamp(1.05rem, 1.55vw, 1.52rem);
  line-height: 1.05;
  text-wrap: balance;
}

.proof-item span {
  display: block;
  margin-top: .45rem;
  color: var(--muted);
  font-size: .86rem;
  line-height: 1.35;
}

.hero-visual {
  position: relative;
  min-height: 660px;
  background: var(--ink);
  isolation: isolate;
  overflow: hidden;
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(247, 246, 241, .45), rgba(247, 246, 241, .04) 34%),
    linear-gradient(180deg, rgba(255, 226, 172, .28) 0%, transparent 36%, rgba(31, 37, 35, .48) 100%);
  z-index: 1;
}

.hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 54% 50%;
  transform: scale(1.01);
}

.hero-sunline {
  position: absolute;
  inset: -18% -10% auto 16%;
  height: 50%;
  background: linear-gradient(115deg, transparent 0%, rgba(255, 245, 214, .42) 30%, rgba(233, 155, 72, .2) 48%, transparent 72%);
  filter: blur(14px);
  transform: rotate(-7deg);
  z-index: 2;
  pointer-events: none;
}

.hero-product-stack {
  position: absolute;
  left: clamp(20px, 5%, 44px);
  bottom: clamp(24px, 4vw, 58px);
  z-index: 3;
  width: min(76%, 520px);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  align-items: stretch;
}

.hero-product-card {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 253, 250, .55);
  border-radius: 8px;
  background: rgba(255, 253, 250, .8);
  box-shadow: 0 18px 48px rgba(31, 37, 35, .2);
  backdrop-filter: blur(12px);
  transition: transform .24s ease, border-color .24s ease;
}

.hero-product-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 253, 250, .9);
}

.hero-product-card img {
  display: block;
  width: 100%;
  aspect-ratio: 1.38;
  object-fit: cover;
  transition: transform .32s ease;
}

.hero-product-card:hover img {
  transform: scale(1.045);
}

.hero-product-card figcaption {
  padding: .68rem .72rem .74rem;
  color: var(--ink);
  font-size: .82rem;
  font-weight: 800;
  line-height: 1.15;
}

.fabric-card-preview img {
  object-position: left center;
}

.visual-label {
  position: absolute;
  right: clamp(20px, 5vw, 64px);
  top: clamp(24px, 5vw, 68px);
  max-width: 260px;
  padding: 1rem 1.05rem;
  border: 1px solid rgba(255, 253, 250, .42);
  border-left: 4px solid #c2211f;
  background: rgba(31, 37, 35, .78);
  color: var(--white);
  backdrop-filter: blur(10px);
  z-index: 4;
}

.visual-label-kicker {
  display: block;
  margin-bottom: .4rem;
  color: rgba(255, 253, 250, .68);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.visual-label strong {
  display: block;
  color: var(--white);
  line-height: 1.25;
}

.visual-label span {
  display: block;
  color: rgba(255, 253, 250, .7);
  font-size: .86rem;
}

@keyframes hero-rise {
  from {
    opacity: 0;
    translate: 0 18px;
  }

  to {
    opacity: 1;
    translate: 0 0;
  }
}

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

.product-card,
.feature-card,
.fabric-card,
.dealer-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.product-card {
  min-height: 410px;
  display: grid;
  align-content: end;
  padding: 1.5rem;
  overflow: hidden;
  position: relative;
}

.product-card:nth-child(2) {
  margin-top: 54px;
}

.product-card:nth-child(3) {
  margin-top: 18px;
}

.product-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(31, 37, 35, .08), rgba(31, 37, 35, .76));
  z-index: 1;
}

.product-card-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  transition: transform .35s ease;
}

.product-card:hover .product-card-image {
  transform: scale(1.035);
}

.product-card > :not(.product-card-image) {
  position: relative;
  z-index: 2;
}

.product-card h3,
.product-card p {
  color: var(--white);
}

.product-card p {
  color: rgba(255, 253, 250, .78);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  color: var(--ink);
  font-weight: 800;
}

.product-card .text-link {
  color: var(--white);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(300px, 1.1fr);
  gap: clamp(32px, 7vw, 86px);
  align-items: center;
}

.split.reverse {
  grid-template-columns: minmax(300px, 1.05fr) minmax(0, .95fr);
}

.image-panel,
.placeholder-media {
  display: block;
  position: relative;
  min-height: 460px;
  border: 1px solid rgba(31, 37, 35, .12);
  border-radius: var(--radius);
  margin: 0;
  background: var(--paper-strong);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.image-panel.tall {
  min-height: 620px;
}

.image-panel img,
.placeholder-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.image-panel.light img,
.fabric-photo img {
  object-position: center;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.feature-card {
  border: 0;
  border-radius: 0;
  padding: 1.35rem;
}

.feature-card span {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  margin-bottom: 1.2rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--clay);
  font-weight: 800;
}

.dark-band {
  background: var(--forest);
  color: var(--white);
}

.dark-band h2,
.dark-band h3 {
  color: var(--white);
}

.dark-band p {
  color: rgba(255, 253, 250, .76);
}

.dark-band .feature-card h3 {
  color: var(--ink);
}

.dark-band .feature-card p {
  color: var(--muted);
}

.product-gallery-band {
  overflow: hidden;
}

.product-gallery-row {
  display: grid;
  grid-template-columns: repeat(var(--product-gallery-count, 5), minmax(0, 1fr));
  gap: 18px;
}

.product-gallery-row .product-gallery-tile {
  aspect-ratio: 4 / 3;
  margin: 0;
  border-color: rgba(255, 253, 250, .16);
  box-shadow: 0 22px 62px rgba(0, 0, 0, .2);
}

.product-gallery-row .product-gallery-tile img {
  width: 100%;
  height: 100%;
}

.product-gallery-placeholder {
  position: relative;
  display: block;
  overflow: hidden;
  border: 1px solid rgba(255, 253, 250, .16);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 253, 250, .12), rgba(255, 253, 250, .04)),
    repeating-linear-gradient(135deg, rgba(255, 253, 250, .08) 0 1px, transparent 1px 18px),
    rgba(255, 253, 250, .06);
}

.product-gallery-placeholder::after {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(255, 253, 250, .18);
  border-radius: calc(var(--radius) - 4px);
}

.cta-band {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  padding: clamp(28px, 5vw, 56px);
  border-radius: var(--radius);
  background: var(--forest);
  color: var(--white);
}

.cta-band h2,
.cta-band p {
  color: var(--white);
}

.page-hero {
  position: relative;
  min-height: clamp(330px, 38vw, 460px);
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: clamp(56px, 8vw, 92px) 0 clamp(34px, 5vw, 56px);
  border-bottom: 1px solid rgba(27, 35, 32, .12);
  background:
    linear-gradient(110deg, transparent 0 16%, rgba(181, 59, 49, .09) 16% 21%, transparent 21% 31%, rgba(255, 250, 241, .55) 31% 40%, transparent 40% 100%),
    linear-gradient(120deg, rgba(244, 240, 231, .98) 0%, rgba(244, 240, 231, .92) 58%, rgba(159, 179, 181, .2) 100%),
    var(--paper);
  isolation: isolate;
}

.page-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(260px, .5fr);
  gap: clamp(28px, 6vw, 74px);
  align-items: end;
}

.page-hero-background {
  display: block;
  position: absolute;
  inset: 0 0 0 auto;
  z-index: 0;
  width: min(56vw, 820px);
  margin: 0;
  overflow: hidden;
  opacity: .28;
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, .2) 18%, #000 45%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, .2) 18%, #000 45%);
}

.page-hero-background img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.page-hero h1 {
  max-width: 13ch;
  font-size: clamp(2.7rem, 6vw, 5.8rem);
  line-height: .96;
  text-wrap: balance;
}

.page-hero .lead {
  margin: 0;
  max-width: 28ch;
  color: #43504b;
}

.inspiration-hero {
  min-height: auto;
  padding: clamp(42px, 5.4vw, 72px) 0 clamp(20px, 3vw, 34px);
}

.inspiration-hero-top {
  grid-template-columns: minmax(0, .78fr) minmax(280px, .42fr);
  margin-bottom: 0;
}

.inspiration-hero .breadcrumb {
  margin-bottom: .75rem;
}

.inspiration-hero h1 {
  max-width: 22ch;
  font-size: clamp(2.75rem, 5vw, 5rem);
}

.inspiration-hero-copy {
  display: grid;
  justify-items: start;
  gap: 1.2rem;
}

.inspiration-hero-copy .lead {
  max-width: 34ch;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
  margin-bottom: 1rem;
  color: var(--muted);
  font-size: .92rem;
}

.breadcrumb a {
  color: var(--forest);
  font-weight: 700;
}

.stat-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.stat-strip div {
  padding: 1rem;
  background: var(--white);
}

.stat-strip strong {
  display: block;
  font-size: 1.5rem;
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, .7fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 72px);
}

.rich-text ul,
.check-list {
  margin: 1.4rem 0 0;
  padding: 0;
  list-style: none;
}

.rich-text li,
.check-list li {
  position: relative;
  padding: .65rem 0 .65rem 1.8rem;
  border-top: 1px solid var(--line);
  color: #4e5854;
}

.rich-text li::before,
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.18rem;
  width: .55rem;
  height: .55rem;
  border-radius: 999px;
  background: var(--clay);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 18px;
}

.gallery-grid .placeholder-media:nth-child(2) {
  margin-top: 42px;
}

.inspiration-tile {
  position: relative;
  display: block;
  margin: 0 0 18px;
  overflow: hidden;
  border: 1px solid rgba(31, 37, 35, .12);
  border-radius: var(--radius);
  background: var(--paper-strong);
  box-shadow: 0 22px 62px rgba(31, 37, 35, .13);
  break-inside: avoid;
  cursor: zoom-in;
}

.inspiration-tile img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform .42s cubic-bezier(.16, 1, .3, 1);
}

.inspiration-tile:hover img {
  transform: scale(1.035);
}

.inspiration-intro {
  background: var(--white);
}

.inspiration-intro-grid,
.inspiration-product-grid,
.detail-gallery-grid {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: start;
}

.inspiration-intro h2 {
  max-width: 13ch;
}

.inspiration-intro-copy {
  max-width: 58ch;
}

.gallery-showcase {
  padding: clamp(64px, 9vw, 118px) 0;
}

.inspiration-page .gallery-showcase {
  padding-top: clamp(28px, 4vw, 52px);
}

.gallery-section-heading {
  margin-bottom: clamp(24px, 3.4vw, 38px);
}

.gallery-section-heading h2 {
  max-width: 13ch;
  margin-bottom: 1rem;
}

.gallery-section-heading p:not(.eyebrow) {
  max-width: 36ch;
}

.gallery-heading-copy {
  display: grid;
  justify-items: end;
  max-width: 520px;
  margin-left: auto;
  text-align: right;
}

.inspiration-mosaic {
  column-count: 3;
  column-gap: 18px;
}

.inspiration-mosaic-small {
  column-count: 2;
}

.inspiration-mosaic-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: clamp(22px, 3vw, 36px);
}

.product-inspiration {
  background: var(--white);
}

.inspiration-product-grid {
  grid-template-columns: minmax(280px, .46fr) minmax(0, .54fr);
  align-items: center;
}

.inspiration-product-grid .lead {
  margin: 1rem 0 1.35rem;
  max-width: 34ch;
}

.inspiration-dark {
  background: var(--forest);
  color: var(--white);
}

.inspiration-dark h2,
.inspiration-dark h3 {
  color: var(--white);
}

.inspiration-dark p {
  color: rgba(255, 253, 250, .76);
}

.inspiration-dark .eyebrow {
  color: var(--sand);
}

.inspiration-dark .text-link {
  color: var(--white);
}

.inspiration-dark .detail-gallery-grid {
  grid-template-columns: minmax(0, 1fr) minmax(170px, .32fr);
  gap: clamp(18px, 3.4vw, 48px);
  align-items: end;
}

.inspiration-dark h2 {
  max-width: 17ch;
  font-size: clamp(2rem, 3.8vw, 3.7rem);
}

.detail-link {
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 253, 250, .2);
}

.detail-link h3 {
  margin-bottom: .65rem;
  font-size: clamp(1.05rem, 1.4vw, 1.34rem);
}

.inspiration-mosaic-details .inspiration-tile {
  height: clamp(200px, 18vw, 270px);
  margin: 0;
}

.inspiration-mosaic-details .inspiration-tile:first-child {
  grid-column: span 1;
}

.inspiration-mosaic-details .inspiration-tile img {
  height: 100%;
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  padding: clamp(18px, 4vw, 54px);
  background: rgba(247, 246, 241, .58);
  backdrop-filter: blur(18px) saturate(1.05);
  opacity: 0;
  pointer-events: none;
  transition: opacity .24s cubic-bezier(.16, 1, .3, 1);
}

.gallery-lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.gallery-lightbox-figure {
  max-width: min(1060px, 88vw);
  max-height: 82dvh;
  margin: 0;
  transform: scale(.82);
  transform-origin: var(--zoom-origin, center);
  opacity: 0;
  transition: transform .34s cubic-bezier(.16, 1, .3, 1), opacity .22s ease;
}

.gallery-lightbox.is-open .gallery-lightbox-figure {
  transform: scale(1);
  opacity: 1;
}

.gallery-lightbox-figure img {
  display: block;
  max-width: 100%;
  max-height: 78dvh;
  border-radius: var(--radius);
  object-fit: contain;
  box-shadow: 0 32px 90px rgba(31, 37, 35, .28);
}

.gallery-lightbox-close {
  position: fixed;
  top: clamp(18px, 3vw, 32px);
  right: clamp(18px, 3vw, 32px);
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(31, 37, 35, .16);
  border-radius: 999px;
  background: rgba(255, 253, 250, .84);
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  font-size: 1.7rem;
  line-height: 1;
  box-shadow: 0 16px 42px rgba(31, 37, 35, .14);
}

.gallery-lightbox-close:hover,
.gallery-lightbox-close:focus-visible {
  background: var(--white);
}

body.gallery-lightbox-open {
  overflow: hidden;
}

.reveal-ready [data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .75s cubic-bezier(.16, 1, .3, 1), transform .75s cubic-bezier(.16, 1, .3, 1);
}

.reveal-ready [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: .7rem;
  margin-bottom: 28px;
}

.filter-button,
.search-input,
.select-input,
.form-control {
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  font: inherit;
}

.filter-button {
  padding: .72rem 1rem;
  cursor: pointer;
}

.filter-button.active,
.filter-button:hover {
  border-color: var(--forest);
  background: var(--forest);
  color: var(--white);
}

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

.fabric-card {
  overflow: hidden;
}

.fabric-sample-card {
  display: flex;
  flex-direction: column;
}

.fabric-sample-image {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: var(--paper-strong);
}

.swatch {
  height: 180px;
  background: var(--swatch, #ddd);
  position: relative;
}

.swatch.striped::after,
.swatch.pattern::after {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(90deg, rgba(255,255,255,.32) 0 18px, rgba(31,37,35,.16) 18px 36px);
}

.swatch.pattern::after {
  background:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,.35) 0 8px, transparent 9px),
    radial-gradient(circle at 72% 62%, rgba(31,37,35,.18) 0 10px, transparent 11px);
  background-size: 76px 76px;
}

.fabric-body,
.dealer-card {
  padding: 1rem;
}

.fabric-sample-body {
  flex: 1;
}

.fabric-sample-body .eyebrow {
  margin-bottom: .45rem;
}

.fabric-sample-body h3 {
  font-size: clamp(1.05rem, 1.5vw, 1.28rem);
  overflow-wrap: anywhere;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
  margin-top: .85rem;
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: .25rem .55rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: .78rem;
  font-weight: 700;
}

.dealer-finder-section {
  padding-top: clamp(28px, 5vw, 54px);
}

.dealer-finder {
  --dealer-pane-height: clamp(500px, calc(100dvh - 150px), 680px);
  display: grid;
  grid-template-columns: minmax(330px, .74fr) minmax(0, 1.26fr);
  gap: clamp(18px, 3vw, 34px);
  align-items: start;
}

.dealer-results-pane {
  position: sticky;
  top: 102px;
  display: flex;
  flex-direction: column;
  height: var(--dealer-pane-height);
  min-height: 0;
  overflow: hidden;
}

.dealer-results-pane.is-scrollable::after {
  content: "";
  position: absolute;
  right: 14px;
  bottom: 0;
  left: 0;
  z-index: 3;
  height: 72px;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(247, 246, 241, 0), var(--paper) 88%);
  opacity: 1;
  transition: opacity .18s ease;
}

.dealer-results-pane.is-at-end::after,
.dealer-results-pane:not(.is-scrollable)::after {
  opacity: 0;
}

.dealer-scroll-cue {
  position: absolute;
  right: 50%;
  z-index: 4;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(36, 66, 53, .18);
  border-radius: 999px;
  background: var(--white);
  color: var(--forest);
  box-shadow: 0 12px 28px rgba(31, 37, 35, .16);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity .18s ease, transform .18s ease, background .18s ease, color .18s ease;
}

.dealer-scroll-cue-up {
  top: 12px;
  transform: translateX(50%) translateY(-6px);
}

.dealer-scroll-cue-down {
  bottom: 12px;
  transform: translateX(50%) translateY(6px);
}

.dealer-results-pane.is-scrollable.is-past-start .dealer-scroll-cue-up,
.dealer-results-pane.is-scrollable:not(.is-at-end) .dealer-scroll-cue-down {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(50%) translateY(0);
}

.dealer-scroll-cue:hover,
.dealer-scroll-cue:focus-visible {
  background: var(--forest);
  color: var(--white);
}

.dealer-scroll-cue:focus-visible {
  outline: 3px solid rgba(36, 66, 53, .22);
  outline-offset: 3px;
}

.dealer-controls {
  position: relative;
  z-index: 2;
  padding-bottom: 14px;
  background: var(--paper);
}

.toolbar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(136px, 158px);
  gap: .7rem;
  margin-bottom: 12px;
}

.search-input,
.select-input,
.form-control {
  width: 100%;
  padding: .8rem .95rem;
}

.dealer-results-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .9rem;
}

.dealer-count {
  margin: 0;
  color: var(--muted);
  font-size: .92rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

.dealer-view-toggle {
  display: none;
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.dealer-view-button {
  min-height: 34px;
  padding: .42rem .72rem;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font: inherit;
  font-size: .9rem;
  font-weight: 800;
  transition: background .18s ease, color .18s ease, transform .18s ease;
}

.dealer-view-button:hover,
.dealer-view-button:focus-visible,
.dealer-view-button.is-active {
  background: var(--forest);
  color: var(--white);
}

.dealer-view-button:focus-visible {
  outline: 3px solid rgba(36, 66, 53, .22);
  outline-offset: 2px;
}

.dealer-view-button:active {
  transform: translateY(1px);
}

.dealer-map-pane {
  position: sticky;
  top: 102px;
}

.map-layout {
  display: grid;
  grid-template-columns: minmax(320px, .82fr) minmax(0, 1.18fr);
  gap: 24px;
  align-items: start;
}

#dealer-map {
  height: var(--dealer-pane-height);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper-strong);
  box-shadow: 0 22px 55px rgba(31, 37, 35, .1);
  overflow: hidden;
}

.leaflet-container {
  position: relative;
  background: var(--paper-strong);
  overflow: hidden;
}

.leaflet-pane,
.leaflet-tile,
.leaflet-marker-icon,
.leaflet-marker-shadow,
.leaflet-tile-container,
.leaflet-pane > svg,
.leaflet-pane > canvas,
.leaflet-zoom-box,
.leaflet-image-layer {
  position: absolute;
  left: 0;
  top: 0;
}

.leaflet-tile,
.leaflet-marker-icon,
.leaflet-marker-shadow {
  user-select: none;
  -webkit-user-drag: none;
}

.leaflet-tile {
  visibility: hidden;
}

.leaflet-tile-loaded {
  visibility: inherit;
}

.leaflet-pane {
  z-index: 400;
}

.leaflet-tile-pane {
  z-index: 200;
}

.leaflet-overlay-pane {
  z-index: 400;
}

.leaflet-shadow-pane {
  z-index: 500;
}

.leaflet-marker-pane {
  z-index: 600;
}

.leaflet-tooltip-pane {
  z-index: 650;
}

.leaflet-popup-pane {
  z-index: 700;
}

.leaflet-popup {
  position: absolute;
  margin-bottom: 18px;
  text-align: left;
}

.leaflet-popup-content-wrapper {
  min-width: 190px;
  padding: .85rem .95rem;
  border: 1px solid rgba(31, 37, 35, .12);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 18px 44px rgba(31, 37, 35, .2);
}

.leaflet-popup-content {
  margin: 0;
  color: var(--ink);
  font-size: .92rem;
  line-height: 1.4;
}

.leaflet-popup-tip-container {
  position: absolute;
  left: 50%;
  width: 28px;
  height: 14px;
  margin-left: -14px;
  overflow: hidden;
  pointer-events: none;
}

.leaflet-popup-tip {
  width: 14px;
  height: 14px;
  margin: -7px auto 0;
  background: var(--white);
  box-shadow: 0 8px 18px rgba(31, 37, 35, .16);
  transform: rotate(45deg);
}

.leaflet-popup-close-button {
  position: absolute;
  top: 6px;
  right: 8px;
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1;
  text-align: center;
}

.leaflet-popup-close-button:hover,
.leaflet-popup-close-button:focus-visible {
  background: var(--paper-strong);
  color: var(--ink);
}

.leaflet-container img,
.leaflet-container .leaflet-tile {
  max-width: none !important;
  max-height: none !important;
}

.leaflet-top,
.leaflet-bottom {
  position: absolute;
  z-index: 1000;
  pointer-events: none;
}

.leaflet-top {
  top: 0;
}

.leaflet-bottom {
  bottom: 0;
}

.leaflet-left {
  left: 0;
}

.leaflet-right {
  right: 0;
}

.leaflet-control {
  position: relative;
  z-index: 800;
  clear: both;
  pointer-events: auto;
}

.leaflet-left .leaflet-control {
  float: left;
  margin-left: 12px;
}

.leaflet-right .leaflet-control {
  float: right;
  margin-right: 12px;
}

.leaflet-top .leaflet-control {
  margin-top: 12px;
}

.leaflet-bottom .leaflet-control {
  margin-bottom: 12px;
}

.leaflet-control-container .leaflet-control {
  border: 1px solid rgba(31, 37, 35, .18);
  border-radius: var(--radius);
  box-shadow: 0 10px 24px rgba(31, 37, 35, .16);
  overflow: hidden;
}

.leaflet-control-zoom a {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  background: var(--white);
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 1;
}

.leaflet-control-zoom a:last-child {
  border-bottom: 0;
}

.leaflet-control-attribution {
  padding: .15rem .35rem;
  background: rgba(255, 253, 250, .86);
  color: var(--muted);
  font-size: .68rem;
}

.dealer-marker {
  display: block;
  width: 18px;
  height: 18px;
  border: 3px solid var(--white);
  border-radius: 50% 50% 50% 0;
  background: var(--clay);
  box-shadow: 0 8px 18px rgba(31, 37, 35, .26);
  transform: rotate(-45deg);
}

.dealer-marker::after {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: 50%;
  background: var(--white);
}

.dealer-popup {
  padding-right: 1.25rem;
}

.dealer-popup h3 {
  margin: 0 0 .4rem;
  font-size: 1rem;
  line-height: 1.15;
}

.dealer-popup p {
  margin: .18rem 0 0;
  color: var(--muted);
}

.dealer-popup a,
.dealer-contact a {
  color: var(--forest);
  font-weight: 800;
}

.dealer-popup a:hover,
.dealer-popup a:focus-visible,
.dealer-contact a:hover,
.dealer-contact a:focus-visible {
  color: var(--clay);
}

.dealer-list-shell {
  position: relative;
  flex: 1 1 auto;
  min-height: 0;
}

.dealer-list {
  display: grid;
  align-content: start;
  gap: 10px;
  grid-auto-rows: max-content;
  height: 100%;
  min-height: 0;
  overflow: auto;
  padding: 0 10px 2px 0;
  overscroll-behavior: contain;
  scrollbar-color: rgba(36, 66, 53, .48) rgba(36, 66, 53, .08);
  scrollbar-width: thin;
}

.dealer-list::-webkit-scrollbar {
  width: 10px;
}

.dealer-list::-webkit-scrollbar-track {
  border-radius: 999px;
  background: rgba(36, 66, 53, .08);
}

.dealer-list::-webkit-scrollbar-thumb {
  border: 2px solid var(--paper);
  border-radius: 999px;
  background: rgba(36, 66, 53, .46);
}

.dealer-list::-webkit-scrollbar-thumb:hover {
  background: rgba(36, 66, 53, .68);
}

.dealer-card {
  display: grid;
  gap: .62rem;
  padding: .95rem;
  cursor: pointer;
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease, background .18s ease;
}

.dealer-card:hover,
.dealer-card:focus-visible,
.dealer-card.is-active {
  border-color: rgba(36, 66, 53, .46);
  background: rgba(255, 253, 250, .96);
  box-shadow: 0 12px 30px rgba(31, 37, 35, .1);
}

.dealer-card:hover {
  transform: translateY(-1px);
}

.dealer-card:focus-visible {
  outline: 3px solid rgba(36, 66, 53, .22);
  outline-offset: 3px;
}

.dealer-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .8rem;
}

.dealer-card .eyebrow {
  margin: 0;
}

.dealer-place {
  color: var(--muted);
  font-size: .82rem;
  font-weight: 800;
  white-space: nowrap;
}

.dealer-card h3 {
  font-size: 1.06rem;
  line-height: 1.18;
}

.dealer-meta {
  margin: 0;
  color: var(--muted);
  font-size: .92rem;
  line-height: 1.4;
}

.dealer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: .18rem .38rem;
}

.dealer-card-action {
  justify-self: start;
  color: var(--forest);
  font-size: .86rem;
  font-weight: 800;
}

.dealer-card:hover .dealer-card-action,
.dealer-card:focus-visible .dealer-card-action,
.dealer-card.is-active .dealer-card-action {
  color: var(--clay);
}

.form-shell {
  display: grid;
  grid-template-columns: minmax(280px, .72fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: start;
}

.contact-panel {
  padding: 1.3rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.panel-photo {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  margin: 0 0 1rem;
  border-radius: 6px;
  object-fit: cover;
}

.contact-row {
  padding: 1rem 0;
  border-top: 1px solid var(--line);
}

.contact-row:first-child {
  border-top: 0;
  padding-top: 0;
}

.contact-row strong {
  display: block;
}

.form {
  padding: clamp(20px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

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

.field {
  display: grid;
  gap: .45rem;
}

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

.field label {
  font-weight: 800;
}

.field small {
  min-height: 1.1rem;
  color: var(--muted);
}

textarea.form-control {
  min-height: 150px;
  resize: vertical;
}

.honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

.form-status {
  margin: 1rem 0 0;
  padding: .85rem 1rem;
  border-radius: var(--radius);
  background: var(--forest-soft);
  color: var(--forest);
  display: none;
}

.form-status.visible {
  display: block;
}

.form-status.error {
  background: #f4ded8;
  color: #7f321f;
}

.contact-application {
  padding: clamp(24px, 4vw, 54px) 0 clamp(78px, 11vw, 150px);
  background:
    linear-gradient(90deg, rgba(159, 179, 181, .22), transparent 40%),
    var(--white);
}

.contact-application-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.28fr) minmax(300px, .72fr);
  gap: clamp(24px, 5vw, 62px);
  align-items: start;
}

.contact-page .form {
  padding: clamp(22px, 4vw, 46px);
  border-color: rgba(27, 35, 32, .12);
  background: rgba(255, 250, 241, .92);
  box-shadow: var(--shadow);
}

.form-heading {
  max-width: 720px;
  margin-bottom: clamp(22px, 4vw, 36px);
}

.form-heading h2 {
  max-width: 13ch;
  font-size: clamp(2.45rem, 5vw, 5.4rem);
  line-height: .94;
  text-wrap: balance;
  overflow-wrap: normal;
}

.form-heading p {
  max-width: 52ch;
  margin: 1rem 0 0;
}

.contact-page .form-grid {
  gap: 1rem 1.05rem;
}

.contact-page .field label {
  font-size: .94rem;
}

.contact-page .field small {
  font-size: .88rem;
}

.contact-page .form-control {
  border-color: rgba(27, 35, 32, .16);
  background: rgba(255, 253, 250, .84);
  transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
}

.contact-page .form-control:focus {
  outline: none;
  border-color: rgba(181, 59, 49, .62);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(181, 59, 49, .12);
}

.contact-page .form .button {
  margin-top: 1.25rem;
}

.contact-side {
  position: sticky;
  top: 104px;
  display: grid;
  gap: 14px;
}

.contact-page .contact-panel {
  padding: clamp(18px, 2.2vw, 26px);
  border-color: rgba(27, 35, 32, .12);
  background: rgba(255, 250, 241, .82);
  box-shadow: 0 22px 70px rgba(27, 35, 32, .12);
  backdrop-filter: blur(14px);
}

.contact-page .panel-photo {
  aspect-ratio: 1.34;
  border-radius: 6px 6px 34px 6px;
}

.contact-page .contact-panel h2 {
  max-width: 15ch;
  font-size: clamp(1.75rem, 2.4vw, 2.7rem);
  line-height: .96;
  text-wrap: balance;
  overflow-wrap: anywhere;
}

.contact-page .contact-panel p:not(.eyebrow) {
  margin-top: .85rem;
}

.contact-page .contact-row {
  padding: .85rem 0;
}

.footer {
  padding: 54px 0 32px;
  border-top: 1px solid var(--line);
  background: var(--ink);
  color: var(--white);
}

.footer p,
.footer a {
  color: rgba(255, 253, 250, .74);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr repeat(3, minmax(150px, .35fr));
  gap: 28px;
}

.footer h2,
.footer h3 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: .8rem;
}

.footer-logo {
  display: block;
  width: 150px;
  height: auto;
  margin: -.3rem 0 .9rem;
}

.footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer li {
  margin: .45rem 0;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 38px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 253, 250, .16);
  color: rgba(255, 253, 250, .58);
  font-size: .9rem;
}

.footer-credit {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: rgba(255, 253, 250, .7);
}

.footer-credit strong {
  color: var(--white);
  font-weight: 700;
}

.footer-credit img {
  display: block;
  width: 28px;
  height: 28px;
  padding: 5px;
  border-radius: 50%;
  background: rgba(255, 253, 250, .92);
}

.empty-state {
  padding: 2rem;
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 250, .6);
  color: var(--muted);
}

.empty-state.error {
  border-color: rgba(161, 95, 66, .34);
  background: rgba(161, 95, 66, .08);
  color: var(--clay);
}

@media (max-width: 1180px) {
  .brand-text {
    display: none;
  }

  .nav-menu {
    gap: 2px;
  }

  .nav-link,
  .dropdown-toggle {
    padding-inline: .62rem;
  }
}

@media (max-width: 1180px) {
  .nav {
    grid-template-columns: auto auto;
  }

  .menu-button {
    display: inline-grid;
    place-items: center;
    justify-self: end;
  }

  .nav-menu {
    position: fixed;
    inset: 78px 0 auto 0;
    display: none;
    padding: 20px 24px 28px;
    border-bottom: 1px solid var(--line);
    background: var(--paper);
  }

  body.menu-open .nav-menu {
    display: grid;
    gap: 6px;
  }

  .nav-link,
  .dropdown-toggle,
  .nav-cta {
    width: 100%;
    justify-content: flex-start;
    border-radius: var(--radius);
  }

  .dropdown-menu {
    position: static;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    box-shadow: none;
    margin: 4px 0 8px;
  }

  .dropdown {
    padding-bottom: 0;
    margin-bottom: 0;
  }

  .hero-grid,
  .section-header,
  .split,
  .split.reverse,
  .page-hero-grid,
  .content-grid,
  .map-layout,
  .form-shell,
  .contact-application-grid,
  .inspiration-intro-grid,
  .inspiration-product-grid,
  .detail-gallery-grid,
  .gallery-section-heading,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .contact-side {
    position: static;
  }

  .inspiration-mosaic {
    column-count: 2;
  }

  .inspiration-dark .detail-gallery-grid {
    grid-template-columns: minmax(0, 1fr) minmax(170px, .32fr);
    gap: clamp(18px, 3.4vw, 48px);
  }

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

  .hero {
    min-height: auto;
  }

  .hero-copy {
    padding-bottom: 56px;
  }

  .hero-proof {
    position: static;
    margin-top: clamp(42px, 7vw, 74px);
  }

  .hero-visual {
    min-height: 520px;
  }

  .product-grid,
  .feature-list,
  .fabric-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-card:nth-child(2),
  .product-card:nth-child(3),
  .gallery-grid .placeholder-media:nth-child(2) {
    margin-top: 0;
  }

  .dealer-finder {
    grid-template-columns: 1fr;
  }

  .dealer-results-pane,
  .dealer-map-pane {
    position: static;
  }

  .dealer-results-pane {
    height: auto;
    max-height: none;
    min-height: 0;
    overflow: visible;
  }

  .dealer-results-pane.is-scrollable::after {
    display: none;
  }

  .dealer-scroll-cue {
    display: none;
  }

  .dealer-controls {
    padding-bottom: 16px;
  }

  .dealer-list {
    overflow: visible;
    padding-right: 0;
  }

  .dealer-view-toggle {
    display: flex;
    flex: 0 0 auto;
  }

  .dealer-finder[data-mobile-view="list"] .dealer-map-pane,
  .dealer-finder[data-mobile-view="map"] .dealer-list,
  .dealer-finder[data-mobile-view="map"] .empty-state {
    display: none;
  }

  #dealer-map {
    height: min(58dvh, 480px);
    min-height: 390px;
    max-height: none;
  }
}

@media (max-width: 860px) {
  .inspiration-dark .detail-gallery-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .product-gallery-row {
    grid-template-columns: repeat(var(--product-gallery-count, 5), minmax(220px, 1fr));
    overflow-x: auto;
    padding-bottom: 8px;
    scroll-snap-type: x proximity;
  }

  .product-gallery-row .product-gallery-tile {
    scroll-snap-align: start;
  }
}

@media (max-width: 680px) {
  .nav {
    padding: 0 16px;
  }

  .brand-logo {
    width: 92px;
  }

  .brand-text {
    display: none;
  }

  .container {
    padding: 0 18px;
  }

  h1 {
    font-size: clamp(2.35rem, 14vw, 4rem);
  }

  .page-hero {
    min-height: auto;
    padding-block: 44px 30px;
  }

  .page-hero-background {
    width: 100%;
    opacity: .14;
    mask-image: linear-gradient(90deg, transparent 0%, #000 58%);
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 58%);
  }

  .page-hero-grid {
    gap: 24px;
  }

  .page-hero h1 {
    max-width: 100%;
    font-size: clamp(2.35rem, 11vw, 3.75rem);
    line-height: 1;
  }

  .inspiration-hero {
    padding-block: 36px 18px;
  }

  .inspiration-hero h1 {
    max-width: 12ch;
    font-size: clamp(2.45rem, 12vw, 3.9rem);
  }

  .inspiration-mosaic {
    column-count: 1;
    gap: 12px;
  }

  .inspiration-mosaic-details {
    grid-template-columns: 1fr;
  }

  .inspiration-tile {
    margin-bottom: 12px;
  }

  .inspiration-mosaic-details .inspiration-tile {
    height: auto;
    margin-bottom: 0;
  }

  .inspiration-intro h2,
  .gallery-section-heading h2 {
    max-width: 11ch;
  }

  .hero-copy {
    padding: 48px 18px;
  }

  .hero-copy h1 {
    max-width: 11ch;
  }

  .hero-proof,
  .stat-strip,
  .product-grid,
  .feature-list,
  .fabric-grid,
  .gallery-grid,
  .inspiration-mosaic,
  .inspiration-mosaic-small,
  .toolbar,
  .form-grid,
  .cta-band {
    grid-template-columns: 1fr;
  }

  .contact-application {
    padding-top: 34px;
  }

  .contact-page .form {
    padding: 22px;
  }

  .form-heading h2 {
    max-width: 100%;
    font-size: clamp(2.25rem, 11vw, 3.3rem);
    line-height: 1;
  }

  .contact-side {
    position: static;
    grid-template-columns: 1fr;
  }

  .contact-page .contact-panel h2 {
    max-width: 16ch;
    font-size: clamp(1.8rem, 9vw, 2.65rem);
  }

  .dealer-results-header {
    align-items: stretch;
    flex-direction: column;
  }

  .dealer-view-toggle {
    width: 100%;
  }

  .dealer-view-button {
    flex: 1;
  }

  .dealer-card {
    padding: .9rem;
  }

  .hero-proof {
    margin-top: 34px;
  }

  .proof-item,
  .proof-item + .proof-item {
    padding: 1rem 0;
    border-left: 0;
  }

  .proof-item + .proof-item {
    border-top: 1px solid rgba(31, 37, 35, .12);
  }

  .product-card,
  .image-panel,
  .placeholder-media {
    min-height: 330px;
  }

  .hero-visual {
    min-height: 500px;
  }

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

  .visual-label {
    top: 18px;
    right: 18px;
    max-width: min(250px, calc(100% - 36px));
  }

  .hero-product-stack {
    left: 14px;
    right: 14px;
    bottom: 16px;
    width: auto;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 7px;
  }

  .hero-product-card img {
    aspect-ratio: 1.08;
  }

  .hero-product-card figcaption {
    padding: .48rem .48rem .54rem;
    font-size: .7rem;
  }

  .hero-sunline {
    inset: -10% -18% auto 4%;
    height: 38%;
  }

  #dealer-map {
    height: 380px;
    min-height: 360px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-copy .eyebrow,
  .hero-copy h1,
  .hero-copy .lead,
  .hero-actions,
  .proof-item,
  .hero-product-card,
  .visual-label {
    opacity: 1;
    animation: none;
    translate: 0 0;
  }

  .hero-product-card,
  .hero-product-card:hover,
  .button:hover,
  .nav-cta:hover,
  .button:active,
  .nav-cta:active,
  .inspiration-tile img,
  .gallery-lightbox,
  .gallery-lightbox-figure {
    transition: none;
  }

  .reveal-ready [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
