@import url("https://fonts.googleapis.com/css2?family=Public+Sans:wght@400;500;600;700&family=Teko:wght@400;500;600;700&display=swap");

:root {
  --maroon: #8b2048;
  --maroon-deep: #611633;
  --orange: #d77d2d;
  --amber: #efb266;
  --paper: #fcf8f1;
  --paper-deep: #f2e8da;
  --sand: #ece0d0;
  --ink: #2b211d;
  --ink-soft: #6a5e57;
  --line: rgba(43, 33, 29, 0.15);
  --shadow-lg: 0 28px 60px rgba(97, 22, 51, 0.16);
  --shadow-md: 0 16px 30px rgba(97, 22, 51, 0.12);
  --radius-lg: 26px;
  --radius-md: 18px;
  --max: 1220px;
  --section-gap: clamp(4rem, 8vw, 7rem);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Public Sans", "Segoe UI", sans-serif;
  background:
    linear-gradient(180deg, #fffdf8 0%, var(--paper) 42%, #f9f1e7 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(215, 125, 45, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(215, 125, 45, 0.05) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.7), transparent 88%);
  opacity: 0.55;
}

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

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

.page-shell {
  min-height: 100vh;
  position: relative;
}

.shell {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(252, 248, 241, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(43, 33, 29, 0.08);
}

.site-header::after {
  content: "";
  display: block;
  height: 4px;
  background: linear-gradient(90deg, var(--maroon), var(--orange), var(--amber));
}

.header-bar {
  min-height: 86px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  align-items: center;
}

.brandmark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-disc {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(139, 32, 72, 0.14);
  box-shadow: 0 10px 22px rgba(97, 22, 51, 0.1);
  flex-shrink: 0;
}

.brand-disc img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.brand-copy strong,
.site-nav a,
.phone-strip,
.hero-tag,
.section-label,
.board-label,
h1,
h2,
.value-tab strong,
.value-no,
.ticket-head,
.ticket-label,
.footer-name,
.btn {
  font-family: "Teko", Impact, sans-serif;
}

.brand-copy strong {
  display: block;
  font-size: 1.1rem;
  line-height: 1;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--maroon-deep);
}

.brand-copy span {
  display: block;
  margin-top: 3px;
  color: var(--ink-soft);
  font-size: 0.84rem;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  align-items: center;
}

.site-nav a {
  padding: 8px 0;
  font-size: 1rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--maroon-deep);
}

.nav-dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.nav-dropdown-trigger::after {
  content: "";
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
  transition: transform 180ms ease;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown:hover > .nav-dropdown-trigger,
.nav-dropdown:focus-within > .nav-dropdown-trigger {
  color: var(--maroon);
}

.nav-dropdown:hover > .nav-dropdown-trigger::after,
.nav-dropdown:focus-within > .nav-dropdown-trigger::after {
  transform: rotate(225deg) translateY(-1px);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  z-index: 50;
  display: none;
  min-width: 248px;
  padding: 10px;
  background: rgba(252, 248, 241, 0.98);
  border: 1px solid rgba(43, 33, 29, 0.1);
  box-shadow: 0 18px 34px rgba(97, 22, 51, 0.14);
  transform: translateX(-50%);
}

.nav-dropdown-menu::before {
  content: "";
  position: absolute;
  top: -12px;
  left: 0;
  right: 0;
  height: 12px;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  display: grid;
  gap: 4px;
}

.nav-dropdown-menu a {
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(43, 33, 29, 0.08);
  color: var(--maroon-deep);
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a:focus-visible {
  background: #fff;
  border-color: rgba(97, 22, 51, 0.2);
  color: var(--maroon);
  transform: translateX(2px);
}

.phone-strip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  background: var(--maroon);
  color: #fff;
  font-size: 1.08rem;
  letter-spacing: 0.05em;
  border-radius: 8px;
  box-shadow: 0 16px 26px rgba(97, 22, 51, 0.16);
}

.hero,
.mission-section,
.project-section,
.products-section,
.values-section,
.catalog-section,
.compare-section,
.room-guide-section,
.selection-section,
.visit-section {
  padding: var(--section-gap) 0;
}

.hero {
  position: relative;
  overflow: hidden;
  padding-top: clamp(1.5rem, 3vw, 2.5rem);
  padding-bottom: 0;
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--maroon), var(--orange));
}

.hero-stage {
  position: relative;
  z-index: 1;
  width: min(1400px, calc(100% - 22px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(280px, 420px) minmax(0, 1fr);
  gap: clamp(3.4rem, 7vw, 8.25rem);
  align-items: center;
  min-height: min(31rem, calc(100vh - 12rem));
}

.hero-stage > * {
  min-width: 0;
}

.hero-copy {
  position: relative;
  align-self: center;
  padding: 0 0 1rem 1.1rem;
  border-left: 4px solid var(--orange);
}

.hero-tag,
.section-label,
.board-label {
  display: inline-flex;
  align-items: center;
  min-height: 0;
  padding: 0;
  background: transparent;
  color: var(--maroon-deep);
  border: 0;
  font-size: 0.96rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-tag::before {
  content: "";
  width: 34px;
  height: 3px;
  margin-right: 12px;
  background: linear-gradient(90deg, var(--orange), var(--amber));
}

.section-label {
  background: transparent;
  color: var(--maroon);
  border: 0;
  padding: 0;
}

.section-label::before {
  content: "";
  width: 38px;
  height: 3px;
  margin-right: 14px;
  background: linear-gradient(90deg, var(--orange), var(--amber));
}

.section-label-light {
  color: #fff;
}

.section-label-light::before {
  background: rgba(252, 248, 241, 0.9);
}

h1,
h2 {
  margin: 0;
  line-height: 0.92;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

h1 {
  margin-top: 14px;
  max-width: 10.8ch;
  font-size: clamp(2.9rem, 6.5vw, 5.4rem);
  line-height: 0.82;
}

h2 {
  margin-top: 18px;
  color: var(--maroon-deep);
  font-size: clamp(2.6rem, 4vw, 4.4rem);
}

.hero-copy p,
.project-copy p,
.value-tab p,
.visit-copy p,
.visit-actions p,
.ticket-row,
blockquote {
  line-height: 1.7;
}

.hero h1 span {
  display: block;
  white-space: nowrap;
}

.hero-copy p {
  margin: 14px 0 0;
  max-width: 36ch;
  color: var(--ink);
  font-size: 1rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 12px 20px;
  font-size: 1.08rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--maroon);
  color: #fff;
  box-shadow: 0 14px 26px rgba(97, 22, 51, 0.18);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--maroon-deep);
}

.btn-secondary {
  border: 1px solid rgba(97, 22, 51, 0.2);
  color: var(--maroon-deep);
  background: rgba(252, 248, 241, 0.72);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  border-color: rgba(97, 22, 51, 0.38);
  background: #fff;
}

.btn-light {
  background: var(--paper);
  color: var(--maroon-deep);
}

.btn-outline-light {
  border: 1px solid rgba(255, 255, 255, 0.34);
  color: #fff;
}

.hero-gallery {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  grid-template-rows: auto auto;
  gap: 12px;
  align-items: start;
  padding: 1.5rem 0 0;
  margin-right: clamp(-4px, -0.35vw, -10px);
}

.hero-gallery::before {
  content: "";
  position: absolute;
  inset: 0.35rem -8px auto 14%;
  height: clamp(9.5rem, 18vw, 13.8rem);
  background: linear-gradient(90deg, rgba(139, 32, 72, 0.95), rgba(97, 22, 51, 0.92));
  clip-path: polygon(4% 0, 100% 0, 100% 86%, 92% 100%, 0 100%);
  box-shadow: var(--shadow-lg);
  pointer-events: none;
}

.hero-main-shot,
.hero-before-shot,
.project-main,
.project-side {
  margin: 0;
  position: relative;
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow-md);
}

.hero-main-shot {
  grid-column: 1 / -1;
  width: min(100%, 750px);
  justify-self: end;
  aspect-ratio: 1.7 / 1;
  clip-path: polygon(0 0, 100% 0, 100% 88%, 84% 100%, 0 100%);
}

.hero-before-shot {
  position: absolute;
  top: 0;
  right: 0;
  width: min(100%, 210px);
  aspect-ratio: 0.92 / 1;
  margin: 0;
  border: 2px solid rgba(97, 22, 51, 0.18);
  box-shadow:
    0 0 0 8px rgba(232, 224, 213, 0.96),
    14px 16px 0 rgba(97, 22, 51, 0.1),
    0 24px 38px rgba(43, 33, 29, 0.22);
  rotate: -4deg;
  z-index: 2;
}

.hero-main-shot img,
.hero-before-shot img,
.project-main img,
.project-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-main-shot img,
.project-main img {
  object-position: left top;
}

.hero-before-shot img,
.project-side img {
  object-position: center top;
}

.hero-main-shot figcaption,
.hero-before-shot figcaption {
  position: absolute;
  left: 16px;
  top: 16px;
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 7px 14px;
  background: rgba(252, 248, 241, 0.94);
  color: var(--maroon-deep);
  font-family: "Teko", Impact, sans-serif;
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.board-label {
  background: transparent;
  border: 0;
  color: var(--maroon);
  padding: 0;
}

.hero-quote {
  grid-column: 1 / -1;
  width: min(100%, 750px);
  display: grid;
  gap: 8px;
  justify-items: start;
  justify-self: end;
  padding-left: 0;
}

.hero-quote p {
  margin: 0;
  color: var(--maroon-deep);
  font-family: "Teko", Impact, sans-serif;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 0.92;
  text-transform: uppercase;
}

.hero-rail {
  position: relative;
  z-index: 1;
  margin-top: clamp(1.25rem, 3vw, 2rem);
  border-top: 1px solid rgba(43, 33, 29, 0.12);
  border-bottom: 1px solid rgba(43, 33, 29, 0.12);
  background: rgba(252, 248, 241, 0.72);
}

.hero-rail-inner {
  width: min(1360px, calc(100% - 32px));
  min-height: 72px;
  margin: 0 auto;
  padding: 14px 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 24px;
}

.hero-rail-inner span,
.hero-rail-inner a {
  display: inline-flex;
  align-items: center;
  color: var(--maroon-deep);
  font-family: "Teko", Impact, sans-serif;
  font-size: 1.08rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-rail-inner a {
  color: var(--maroon);
}

.hero-rail-inner > *:not(:first-child)::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-right: 14px;
  border-radius: 50%;
  background: var(--orange);
}

.mission-layout,
.project-layout,
.values-shell,
.visit-shell {
  display: grid;
  gap: 28px;
}

.mission-layout {
  grid-template-columns: minmax(0, 1.04fr) minmax(320px, 0.96fr);
  align-items: start;
}

.mission-panel,
.contact-ticket,
.project-panel,
.value-tab,
.visit-card {
  position: relative;
  background: rgba(252, 248, 241, 0.92);
  box-shadow: var(--shadow-md);
  clip-path: polygon(0 0, 100% 0, 100% 92%, 89% 100%, 0 100%);
}

.mission-panel::before,
.contact-ticket::before,
.project-panel::before,
.value-tab::before,
.visit-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 112px;
  height: 11px;
  background: var(--maroon);
}

.mission-panel {
  padding: 24px 24px 28px;
}

.mission-panel h2 {
  margin-top: 18px;
}

blockquote {
  margin: 18px 0 0;
  padding: 0;
  border-left: 0;
  color: var(--maroon-deep);
  font-size: clamp(1.42rem, 2.4vw, 2rem);
  font-weight: 600;
}

.mission-markers {
  margin-top: 22px;
  padding-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  border-top: 1px solid var(--line);
}

.mission-markers span,
.value-kicker,
.project-fact-label,
.visit-points span {
  display: inline-flex;
  align-items: center;
  color: var(--maroon);
  font-family: "Teko", Impact, sans-serif;
  font-size: 1.05rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-ticket {
  padding: 20px 20px 24px;
  border: 0;
}

.contact-mini-board {
  min-height: 88px;
  margin-top: 16px;
  padding: 10px;
}

.ticket-row + .ticket-row {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.ticket-label {
  display: block;
  margin-bottom: 5px;
  color: var(--ink-soft);
  font-size: 0.88rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.ticket-row a {
  color: var(--maroon);
  font-weight: 700;
}

.project-layout {
  grid-template-columns: minmax(0, 0.88fr) minmax(360px, 1.12fr);
  align-items: start;
}

.project-panel {
  padding: 24px 24px 28px;
}

.project-lead {
  margin-top: 18px;
  color: var(--maroon-deep);
  font-size: clamp(1.24rem, 1.9vw, 1.6rem);
  font-weight: 600;
}

.project-copy p:last-child {
  margin-top: 18px;
  color: var(--ink-soft);
}

.project-facts {
  margin-top: 22px;
  display: grid;
  gap: 12px;
}

.project-facts article {
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.project-facts strong {
  display: block;
  margin-top: 4px;
  color: var(--maroon-deep);
  font-family: "Teko", Impact, sans-serif;
  font-size: 1.36rem;
  line-height: 0.98;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.project-showcase {
  display: grid;
  gap: 16px;
}

.project-media {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 220px;
  gap: 18px;
  align-items: end;
  padding-top: 14px;
}

.project-main {
  height: 480px;
  clip-path: polygon(0 0, 100% 0, 100% 92%, 90% 100%, 0 100%);
}

.project-side {
  height: 280px;
  clip-path: polygon(0 0, 100% 0, 100% 88%, 86% 100%, 0 100%);
}

.project-note {
  width: min(100%, 520px);
  justify-self: end;
  display: grid;
  gap: 8px;
}

.project-note p {
  margin: 0;
  color: var(--maroon-deep);
  font-family: "Teko", Impact, sans-serif;
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  line-height: 0.92;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

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

.value-tab {
  padding: 22px 22px 24px;
  border: 1px solid rgba(43, 33, 29, 0.08);
}

.value-no {
  display: block;
  color: var(--maroon);
  font-size: 1.05rem;
  letter-spacing: 0.1em;
}

.value-kicker {
  margin-top: 4px;
  color: var(--ink-soft);
}

.value-tab strong {
  display: block;
  margin-top: 10px;
  color: var(--maroon-deep);
  font-size: 1.7rem;
  letter-spacing: 0.05em;
  line-height: 0.92;
  text-transform: uppercase;
}

.value-ribbon {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 6px;
}

.value-ribbon span {
  display: block;
  height: 52px;
  border-radius: 3px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18);
}

.value-ribbon-grounded span:nth-child(1) {
  background: linear-gradient(180deg, #8f6c4d, #6f503b);
}

.value-ribbon-grounded span:nth-child(2) {
  background: linear-gradient(180deg, #a78463, #8a674d);
}

.value-ribbon-grounded span:nth-child(3) {
  background: linear-gradient(180deg, #6c4d38, #513828);
}

.value-ribbon-grounded span:nth-child(4) {
  background: linear-gradient(180deg, #9a7555, #7f5c43);
}

.value-ribbon-proof span:nth-child(1) {
  background: linear-gradient(180deg, #f0eee8, #ddd8cf);
}

.value-ribbon-proof span:nth-child(2) {
  background: linear-gradient(180deg, #d6d0c6, #beb7ad);
}

.value-ribbon-proof span:nth-child(3) {
  background: linear-gradient(180deg, #c4b8aa, #a89b8d);
}

.value-ribbon-proof span:nth-child(4) {
  background: linear-gradient(180deg, #ece2d4, #d8cbba);
}

.value-ribbon-personality span:nth-child(1) {
  background: linear-gradient(180deg, #d6d0c6, #beb7ad);
}

.value-ribbon-personality span:nth-child(2) {
  background: linear-gradient(180deg, #a8b2a7, #899688);
}

.value-ribbon-personality span:nth-child(3) {
  background: linear-gradient(180deg, #cab7a2, #af997f);
}

.value-ribbon-personality span:nth-child(4) {
  background: linear-gradient(180deg, #f0eee8, #ddd8cf);
}

.value-tab p {
  margin-top: 12px;
  color: var(--ink-soft);
}

.products-shell,
.catalog-intro,
.selection-layout {
  display: grid;
  gap: 24px;
}

.products-shell {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
}

.products-cta {
  justify-self: end;
}

.products-intro p,
.catalog-intro p,
.compare-intro p,
.room-guide-copy p,
.selection-copy p,
.product-card p,
.catalog-copy p,
.catalog-note,
.selection-card p {
  line-height: 1.7;
}

.products-intro p,
.catalog-intro p,
.compare-intro p,
.room-guide-copy p,
.selection-copy p {
  margin: 18px 0 0;
  max-width: 58ch;
  color: var(--ink-soft);
}

.products-grid,
.selection-grid {
  display: grid;
  gap: 18px;
}

.products-grid {
  margin-top: 32px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.product-card,
.catalog-board,
.mini-board {
  position: relative;
  background: rgba(252, 248, 241, 0.9);
  box-shadow: var(--shadow-md);
}

.product-card,
.catalog-board {
  clip-path: polygon(0 0, 100% 0, 100% 92%, 89% 100%, 0 100%);
}

.product-card {
  padding: 22px 22px 24px;
  border: 1px solid rgba(43, 33, 29, 0.08);
}

.product-card::before,
.catalog-board::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 112px;
  height: 11px;
  background: var(--maroon);
}

.product-no,
.product-kicker,
.product-link,
.catalog-badge,
.catalog-note,
.catalog-board-head strong,
.selection-step,
.selection-card strong,
.products-section h3,
.catalog-section h3,
.mini-board-label {
  font-family: "Teko", Impact, sans-serif;
}

.product-no,
.catalog-badge,
.selection-step {
  display: block;
  color: var(--maroon);
  font-size: 1.05rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.product-kicker {
  display: block;
  margin-top: 4px;
  color: var(--ink-soft);
  font-size: 1rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.products-section h3,
.catalog-section h3 {
  margin: 12px 0 0;
  color: var(--maroon-deep);
  font-size: clamp(2rem, 3vw, 2.7rem);
  line-height: 0.9;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.product-card p {
  margin: 14px 0 0;
  color: var(--ink-soft);
}

.sample-board {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
  min-height: 124px;
  padding: 14px;
  background: linear-gradient(180deg, rgba(252, 248, 241, 0.98), rgba(242, 232, 218, 0.9));
  clip-path: polygon(0 0, 100% 0, 100% 88%, 91% 100%, 0 100%);
  box-shadow: inset 0 0 0 1px rgba(43, 33, 29, 0.08);
}

.sample-strip,
.mini-board-swatches span {
  display: block;
  border-radius: 3px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18);
}

.sample-board-lvp .sample-strip:nth-child(1),
.mini-board-lvp .mini-board-swatches span:nth-child(1) {
  background: linear-gradient(180deg, #8f6c4d, #6f503b);
}

.sample-board-lvp .sample-strip:nth-child(2),
.mini-board-lvp .mini-board-swatches span:nth-child(2) {
  background: linear-gradient(180deg, #77553d, #5d4131);
}

.sample-board-lvp .sample-strip:nth-child(3),
.mini-board-lvp .mini-board-swatches span:nth-child(3) {
  background: linear-gradient(180deg, #a78463, #8a674d);
}

.sample-board-lvp .sample-strip:nth-child(4),
.mini-board-lvp .mini-board-swatches span:nth-child(4) {
  background: linear-gradient(180deg, #6c4d38, #513828);
}

.sample-board-lvp .sample-strip:nth-child(5) {
  background: linear-gradient(180deg, #9a7555, #7f5c43);
}

.sample-board-hardwood .sample-strip:nth-child(1),
.mini-board-hardwood .mini-board-swatches span:nth-child(1) {
  background: linear-gradient(180deg, #ab7e56, #8f623f);
}

.sample-board-hardwood .sample-strip:nth-child(2),
.mini-board-hardwood .mini-board-swatches span:nth-child(2) {
  background: linear-gradient(180deg, #c8996c, #ab7649);
}

.sample-board-hardwood .sample-strip:nth-child(3),
.mini-board-hardwood .mini-board-swatches span:nth-child(3) {
  background: linear-gradient(180deg, #8f603a, #73492a);
}

.sample-board-hardwood .sample-strip:nth-child(4),
.mini-board-hardwood .mini-board-swatches span:nth-child(4) {
  background: linear-gradient(180deg, #d4aa83, #b68859);
}

.sample-board-hardwood .sample-strip:nth-child(5) {
  background: linear-gradient(180deg, #7e5432, #623d22);
}

.sample-board-cabinets .sample-strip:nth-child(1),
.mini-board-cabinets .mini-board-swatches span:nth-child(1) {
  background: linear-gradient(180deg, #d6d0c6, #beb7ad);
}

.sample-board-cabinets .sample-strip:nth-child(2),
.mini-board-cabinets .mini-board-swatches span:nth-child(2) {
  background: linear-gradient(180deg, #f0eee8, #ddd8cf);
}

.sample-board-cabinets .sample-strip:nth-child(3),
.mini-board-cabinets .mini-board-swatches span:nth-child(3) {
  background: linear-gradient(180deg, #a8b2a7, #899688);
}

.sample-board-cabinets .sample-strip:nth-child(4),
.mini-board-cabinets .mini-board-swatches span:nth-child(4) {
  background: linear-gradient(180deg, #cab7a2, #af997f);
}

.sample-board-cabinets .sample-strip:nth-child(5) {
  background: linear-gradient(180deg, #ddd4c8, #c5bbaf);
}

.product-notes,
.catalog-list {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.product-notes li,
.catalog-list li {
  position: relative;
  padding-left: 18px;
  color: var(--ink-soft);
}

.product-notes li::before,
.catalog-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
}

.product-link {
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  color: var(--maroon);
  font-size: 1.08rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-link::after {
  content: "";
  width: 28px;
  height: 2px;
  margin-left: 10px;
  background: currentColor;
}

.product-page-gallery {
  position: relative;
  min-height: 470px;
  display: grid;
  align-items: end;
  justify-items: end;
  padding: 1rem 0 0;
}

.product-page-shot {
  margin: 0;
  width: min(100%, 780px);
  aspect-ratio: 1.62 / 1;
  position: relative;
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow-md);
  clip-path: polygon(0 0, 100% 0, 100% 88%, 86% 100%, 0 100%);
}

.product-page-shot::before {
  content: "";
  position: absolute;
  top: 0;
  right: 22%;
  width: 110px;
  height: 14px;
  background: var(--maroon);
  z-index: 2;
}

.product-page-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left top;
}

.product-page-shot figcaption {
  position: absolute;
  left: 16px;
  top: 16px;
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 7px 14px;
  background: rgba(252, 248, 241, 0.94);
  color: var(--maroon-deep);
  font-family: "Teko", Impact, sans-serif;
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mini-board {
  width: min(210px, 38%);
  padding: 14px 14px 16px;
  clip-path: polygon(0 0, 100% 0, 100% 88%, 88% 100%, 0 100%);
}

.mini-board-label {
  display: block;
  color: var(--maroon-deep);
  font-size: 1.08rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.mini-board-swatches {
  margin-top: 10px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 6px;
}

.mini-board-swatches span {
  height: 78px;
}

.mini-board-lvp {
  top: 0;
  right: 0;
  position: absolute;
  rotate: 4deg;
}

.mini-board-hardwood {
  position: absolute;
  left: 2%;
  bottom: 16%;
  rotate: -3deg;
}

.mini-board-cabinets {
  position: absolute;
  right: 7%;
  bottom: -0.9rem;
  rotate: -2deg;
}

.catalog-stack {
  margin-top: 32px;
  display: grid;
  gap: 28px;
}

.catalog-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(320px, 0.82fr);
  gap: 30px;
  align-items: center;
  padding-top: 18px;
  border-top: 4px solid var(--orange);
}

.catalog-panel.reverse .catalog-copy {
  order: 2;
}

.catalog-panel.reverse .catalog-board {
  order: 1;
}

.catalog-lead {
  margin-top: 14px;
  color: var(--maroon-deep);
  font-size: clamp(1.18rem, 1.8vw, 1.5rem);
  font-weight: 600;
}

.catalog-copy p:not(.catalog-lead) {
  margin-top: 16px;
  color: var(--ink-soft);
}

.catalog-board {
  padding: 20px;
}

.catalog-board-head {
  display: grid;
  gap: 4px;
}

.catalog-board-head strong {
  color: var(--maroon-deep);
  font-size: 1.35rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.catalog-note {
  margin: 16px 0 0;
  color: var(--ink-soft);
  font-size: 1rem;
}

.catalog-detail-grid {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.catalog-detail-card,
.compare-card,
.room-card {
  position: relative;
  background: rgba(252, 248, 241, 0.9);
  box-shadow: var(--shadow-md);
  clip-path: polygon(0 0, 100% 0, 100% 92%, 89% 100%, 0 100%);
}

.catalog-detail-card {
  padding: 14px 14px 16px;
  border: 1px solid rgba(43, 33, 29, 0.08);
}

.detail-label,
.compare-kicker,
.room-label {
  display: block;
  color: var(--maroon);
  font-family: "Teko", Impact, sans-serif;
  font-size: 1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.catalog-detail-card p {
  margin: 8px 0 0;
  color: var(--ink-soft);
  line-height: 1.65;
}

.catalog-signal-row,
.catalog-board-points,
.room-lanes {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.catalog-signal-row span,
.catalog-board-points span,
.room-lanes span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 6px 12px;
  border: 1px solid rgba(97, 22, 51, 0.14);
  background: rgba(255, 255, 255, 0.68);
  color: var(--maroon-deep);
  font-family: "Teko", Impact, sans-serif;
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.compare-shell,
.room-guide-shell {
  display: grid;
  gap: 24px;
}

.compare-grid,
.room-grid {
  display: grid;
  gap: 18px;
}

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

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

.compare-card,
.room-card {
  padding: 22px 22px 24px;
  border: 1px solid rgba(43, 33, 29, 0.08);
}

.compare-card::before,
.room-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 112px;
  height: 11px;
  background: var(--maroon);
}

.compare-card h3,
.room-card h3 {
  margin: 10px 0 0;
  color: var(--maroon-deep);
  font-family: "Teko", Impact, sans-serif;
  font-size: clamp(1.8rem, 2.6vw, 2.3rem);
  line-height: 0.92;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.compare-row + .compare-row {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.compare-row span {
  display: block;
  color: var(--maroon);
  font-family: "Teko", Impact, sans-serif;
  font-size: 1rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.compare-row p,
.room-card p {
  margin: 8px 0 0;
  color: var(--ink-soft);
  line-height: 1.7;
}

.room-card .product-notes {
  margin-top: 16px;
}

.selection-layout {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: start;
}

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

.selection-card {
  padding: 16px 0 0;
  border-top: 4px solid var(--maroon);
}

.selection-card strong {
  display: block;
  margin-top: 8px;
  color: var(--maroon-deep);
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.selection-card p {
  margin-top: 10px;
  color: var(--ink-soft);
}

.visit-section {
  position: relative;
  overflow: hidden;
}

.visit-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(97, 22, 51, 0.98), rgba(139, 32, 72, 0.95)),
    repeating-linear-gradient(
      115deg,
      rgba(255, 255, 255, 0.08) 0 22px,
      transparent 22px 72px
    );
}

.visit-shell {
  position: relative;
  z-index: 1;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.78fr);
  align-items: start;
}

.visit-copy {
  padding: 0 0 1rem 1.1rem;
  border-left: 4px solid rgba(252, 248, 241, 0.86);
}

.visit-copy p {
  margin-top: 18px;
  max-width: 42ch;
  color: rgba(255, 249, 244, 0.88);
}

.visit-copy h2,
.visit-copy p,
.visit-points span {
  color: #fff;
}

.visit-points {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
}

.visit-points span {
  color: rgba(255, 249, 244, 0.82);
}

.visit-actions {
  display: grid;
  gap: 12px;
  justify-items: start;
  align-content: start;
}

.visit-card {
  padding: 22px;
}

.visit-actions p {
  margin: 4px 0 0;
  color: var(--ink-soft);
}

.site-footer {
  padding: 24px 0 36px;
  background: var(--maroon-deep);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
  justify-content: center;
  color: rgba(255, 249, 244, 0.82);
}

.footer-name {
  color: #fff;
  font-size: 1.18rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.reveal {
  opacity: 1;
  transform: none;
}

.js-motion .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 560ms ease,
    transform 560ms ease;
}

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

#mission,
#products,
#project,
#testimonial,
#visit,
#catalog,
#lanes,
#compare,
#rooms,
#process,
#contact,
#lvp,
#hardwood,
#cabinets {
  scroll-margin-top: 104px;
}

@media (max-width: 980px) {
  .header-bar {
    grid-template-columns: auto 1fr auto;
    row-gap: 10px;
  }

  .site-nav {
    grid-column: 1 / 3;
    justify-content: flex-start;
    padding-bottom: 0;
  }

  .phone-strip {
    grid-column: 3;
    grid-row: 2;
    justify-self: end;
  }

  .hero-stage,
  .project-layout,
  .mission-layout,
  .products-shell,
  .catalog-panel,
  .selection-layout,
  .visit-shell {
    grid-template-columns: 1fr;
  }

  .hero-stage {
    min-height: auto;
  }

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

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

  .catalog-panel.reverse .catalog-copy,
  .catalog-panel.reverse .catalog-board {
    order: initial;
  }

  .hero-gallery {
    grid-template-columns: 1fr;
    padding-top: 1rem;
  }

  .product-page-gallery {
    min-height: 420px;
  }

  .project-media {
    grid-template-columns: 1fr 220px;
  }
}

@media (max-width: 820px) {
  .values-grid,
  .products-grid,
  .compare-grid,
  .room-grid,
  .catalog-detail-grid,
  .selection-grid,
  .project-media {
    grid-template-columns: 1fr;
  }

  .project-main,
  .hero-main-shot {
    height: 320px;
  }

  .project-side {
    height: 220px;
  }

  .hero-gallery {
    margin-right: 0;
    padding-top: 0.75rem;
  }

  .product-page-gallery {
    min-height: auto;
    padding-top: 0.75rem;
  }

  .hero-before-shot {
    width: 100%;
    max-width: 220px;
    right: 0;
  }

  .product-page-shot {
    width: 100%;
  }

  .mini-board-hardwood {
    left: 0;
  }

  .mini-board-cabinets {
    right: 2%;
  }

  .hero-quote {
    width: 100%;
    padding-left: 0;
  }
}

@media (max-width: 700px) {
  .shell {
    width: min(var(--max), calc(100% - 22px));
  }

  .header-bar {
    grid-template-columns: 1fr;
    padding: 14px 0 18px;
  }

  .brandmark {
    justify-content: center;
  }

  .site-nav,
  .hero-actions {
    justify-content: center;
  }

  .nav-dropdown {
    display: grid;
    justify-items: center;
    width: 100%;
  }

  .nav-dropdown-menu {
    position: static;
    left: auto;
    transform: none;
    width: min(260px, 100%);
    margin-top: 6px;
  }

  .phone-strip {
    width: 100%;
  }

  .hero-stage {
    width: min(1400px, calc(100% - 18px));
  }

  .hero-gallery,
  .hero-rail-inner {
    width: 100%;
  }

  .hero-gallery {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    gap: 12px;
    padding-top: 0;
    margin-right: 0;
  }

  .hero-copy {
    padding: 0;
    border-left: 0;
  }

  .visit-copy {
    padding-left: 0;
    border-left: 0;
  }

  .hero-main-shot {
    width: 100%;
    height: 280px;
  }

  .products-cta {
    justify-self: start;
  }

  .sample-board {
    min-height: 96px;
    padding: 10px;
  }

  .hero-before-shot {
    position: relative;
    top: auto;
    right: auto;
    grid-column: 1;
    grid-row: auto;
    width: min(100%, 220px);
    margin: -72px 0 0 auto;
  }

  .hero-quote {
    padding-top: 8px;
  }

  .project-note {
    width: 100%;
  }

  .product-page-gallery {
    display: grid;
    gap: 12px;
    justify-items: end;
  }

  .product-page-shot {
    width: 100%;
    height: 280px;
  }

  .mini-board {
    position: relative;
    width: min(100%, 220px);
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    rotate: 0deg;
  }

  .mini-board-lvp {
    margin: -60px 0 0 auto;
  }

  .mini-board-hardwood,
  .mini-board-cabinets {
    margin: 0 0 0 auto;
  }

  .hero-rail-inner > *:not(:first-child)::before {
    margin-right: 10px;
  }

  .hero h1 {
    max-width: none;
  }

  .hero h1 span {
    white-space: normal;
  }
}
