:root {
  color-scheme: light;
  --ink: #11110f;
  --muted: #6f6c65;
  --line: #e4e0d8;
  --paper: #ffffff;
  --white: #fff;
  --walnut: #5b3d2a;
  --olive: #4e5a45;
  --clay: #aa6d4f;
  --site-gutter: 88px;
  --section-gutter: 88px;
  --compact-gutter: 88px;
}

/* BLVCKCAMEL storefront */
.blvck-home {
  --ink: #f7f7f2;
  --muted: #a7a7a0;
  --line: rgba(255, 255, 255, .12);
  --paper: #050505;
  --white: #ffffff;
  --walnut: #d7d7cf;
  --olive: #9c9c95;
  --clay: #e9e2cf;
  background: #050505;
  color: #f7f7f2;
}

.announce-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 18px;
  color: rgba(255, 255, 255, .82);
  background: #000;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  text-align: center;
  text-transform: uppercase;
}

.blvck-header {
  top: 0;
  padding-top: 20px;
  padding-bottom: 20px;
  color: #fff;
}

.blvck-header.scrolled {
  color: #fff;
  background: rgba(5, 5, 5, .9);
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.brand-wordmark {
  display: inline-grid;
  gap: 0;
  color: #fff;
  font-size: 23px;
  font-weight: 950;
  line-height: .86;
  letter-spacing: -.02em;
}

.brand-wordmark span {
  display: block;
}

.blvck-header .top-nav {
  gap: 30px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .16em;
}

.blvck-header .ghost-link,
.blvck-header .solid-link,
.blvck-home .primary-button,
.blvck-home .secondary-button,
.blvck-home .sale-more-button {
  min-height: 44px;
  border-color: rgba(255, 255, 255, .26);
  border-radius: 0;
  color: #fff;
  background: transparent;
  font-size: 11px;
  letter-spacing: .16em;
}

.blvck-header .solid-link,
.blvck-home .primary-button,
.blvck-home .sale-tab.active,
.blvck-home .filter.active {
  color: #050505;
  background: #fff;
  border-color: #fff;
}

.blvck-hero {
  min-height: 92vh;
  padding-top: 190px;
  background: #050505;
}

.blvck-hero .hero-image {
  filter: grayscale(1) brightness(.48) contrast(1.18);
}

.blvck-hero .hero-overlay {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .92) 0%, rgba(0, 0, 0, .68) 42%, rgba(0, 0, 0, .28) 100%),
    linear-gradient(0deg, rgba(0, 0, 0, .9) 0%, rgba(0, 0, 0, .04) 56%);
}

.blvck-hero .hero-content {
  width: min(760px, 100%);
}

.blvck-hero h1 {
  max-width: 760px;
  font-size: clamp(56px, 8.4vw, 126px);
  line-height: .92;
  letter-spacing: 0;
  text-transform: uppercase;
}

.blvck-hero .hero-copy {
  max-width: 600px;
  color: rgba(255, 255, 255, .72);
}

.blvck-hero .eyebrow,
.blvck-home .eyebrow {
  color: rgba(255, 255, 255, .64);
  letter-spacing: .2em;
}

.blvck-home .eyebrow.dark {
  color: rgba(255, 255, 255, .52);
}

.blvck-hero .hero-panel {
  border-color: rgba(255, 255, 255, .18);
  background: rgba(0, 0, 0, .54);
}

.blvck-hero .hero-panel div {
  border-color: rgba(255, 255, 255, .12);
}

.blvck-hero .hero-panel strong {
  color: #fff;
  font-size: 18px;
}

.blvck-strip {
  padding-top: 34px;
  padding-bottom: 34px;
  background: #050505;
}

.blvck-strip .strip-item {
  border-color: rgba(255, 255, 255, .12);
}

.blvck-strip .strip-item p,
.blvck-home .service-card p,
.blvck-home .sale-subcopy,
.blvck-home .footer-support p {
  color: rgba(255, 255, 255, .58);
}

.editorial-section,
.inventory-section,
.sale-section,
.service-section {
  background: #050505;
}

.editorial-grid {
  display: grid;
  grid-template-columns: 1.35fr .8fr;
  grid-template-rows: 320px 320px;
  gap: 16px;
}

.editorial-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 320px;
  padding: 28px;
  overflow: hidden;
  color: #fff;
  background: #111;
}

.editorial-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  filter: grayscale(1) brightness(.58) contrast(1.16);
  transform: scale(1.02);
  transition: transform .35s ease, filter .35s ease;
}

.editorial-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, .06), rgba(0, 0, 0, .76));
}

.editorial-card:hover::before {
  transform: scale(1.06);
  filter: grayscale(1) brightness(.72) contrast(1.18);
}

.editorial-card span,
.editorial-card strong {
  position: relative;
  z-index: 1;
}

.editorial-card span {
  margin-bottom: 10px;
  color: rgba(255, 255, 255, .64);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.editorial-card strong {
  max-width: 520px;
  font-size: clamp(28px, 4vw, 56px);
  line-height: 1;
  text-transform: uppercase;
}

.editorial-main {
  grid-row: span 2;
}

.editorial-main::before,
.editorial-object::before {
  background-image: url("/assets/secondary-archive-hero.png");
}

.editorial-leather::before {
  background-image: url("/assets/banner-loop-720-poster.jpg");
}

.editorial-object::before {
  background-position: 70% center;
}

.blvck-home h2 {
  color: #fff;
  font-size: clamp(34px, 5vw, 76px);
  line-height: .98;
  text-transform: uppercase;
}

.blvck-home .text-link {
  color: rgba(255, 255, 255, .78);
}

.blvck-home .filters {
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, .12);
  border-left: 1px solid rgba(255, 255, 255, .12);
}

.blvck-home .filter {
  height: 46px;
  min-width: 120px;
  border: 0;
  border-right: 1px solid rgba(255, 255, 255, .12);
  border-bottom: 1px solid rgba(255, 255, 255, .12);
  color: rgba(255, 255, 255, .74);
  border-radius: 0;
}

.blvck-home .product-grid {
  gap: 32px 18px;
}

.blvck-home .product-card:hover {
  opacity: 1;
}

.blvck-home .product-media {
  min-height: 360px;
  border-radius: 0;
  background-position: center;
  background-size: cover;
  filter: grayscale(1);
}

.blvck-home .product-media::after {
  inset: 0;
  border-radius: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, .03), rgba(0, 0, 0, .34));
  filter: none;
}

.blvck-home .product-media span {
  color: #050505;
  border: 0;
  border-radius: 0;
  background: #fff;
  letter-spacing: .12em;
}

.blvck-home .media-sofa,
.blvck-home .media-light {
  background-image:
    linear-gradient(180deg, rgba(0, 0, 0, .08), rgba(0, 0, 0, .36)),
    url("/assets/secondary-archive-hero.png");
}

.blvck-home .media-chair,
.blvck-home .media-table {
  background-image:
    linear-gradient(180deg, rgba(0, 0, 0, .08), rgba(0, 0, 0, .36)),
    url("/assets/banner-loop-720-poster.jpg");
}

.blvck-home .product-meta p {
  color: rgba(255, 255, 255, .96);
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.blvck-home .product-meta h3 {
  color: rgba(255, 255, 255, .64);
  min-height: 46px;
}

.blvck-home .price-row span,
.blvck-home .sale-price-row span {
  color: #fff;
}

.blvck-home .price-row strong,
.blvck-home .sale-price-row strong {
  color: #fff;
}

.blvck-home .image-banner {
  min-height: 640px;
}

.blvck-home .image-banner-video {
  filter: grayscale(1) brightness(.42) contrast(1.26);
}

.blvck-home .image-banner-overlay {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .86), rgba(0, 0, 0, .42)),
    linear-gradient(0deg, rgba(0, 0, 0, .72), rgba(0, 0, 0, .05));
}

.blvck-home .image-banner-copy h2 {
  color: #fff;
  font-size: clamp(32px, 4.8vw, 74px);
  font-weight: 400;
  text-transform: uppercase;
}

.blvck-home .sale-tabs {
  border-color: rgba(255, 255, 255, .12);
}

.blvck-home .sale-tab {
  color: rgba(255, 255, 255, .72);
  border-color: rgba(255, 255, 255, .12);
  font-size: 12px;
  letter-spacing: .16em;
}

.blvck-home .sale-card-media {
  border: 1px solid rgba(255, 255, 255, .08);
  background-color: #101010;
  filter: grayscale(1) brightness(.7) contrast(1.1);
}

.blvck-home .sale-brand {
  color: #fff;
  font-size: 12px;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.blvck-home .sale-card h3,
.blvck-home .service-card strong,
.blvck-home .strip-item strong {
  color: #fff;
}

.blvck-home .service-card,
.blvck-home .strip-item {
  border-color: rgba(255, 255, 255, .12);
}

.blvck-home .footer {
  color: #fff;
  background: #000;
  border-top: 1px solid rgba(255, 255, 255, .12);
}

@media (max-width: 1200px) {
  .editorial-grid {
    grid-template-rows: 280px 280px;
  }

  .blvck-home .product-media {
    min-height: 320px;
  }
}

@media (max-width: 900px) {
  .announce-bar {
    min-height: 32px;
    font-size: 10px;
    letter-spacing: .08em;
  }

  .blvck-header {
    top: 0;
    grid-template-columns: auto auto;
    gap: 18px;
  }

  .brand-wordmark {
    font-size: 19px;
  }

  .blvck-header .header-actions {
    justify-self: end;
  }

  .blvck-hero {
    min-height: 760px;
    padding-top: 150px;
  }

  .blvck-hero h1 {
    font-size: clamp(46px, 14vw, 70px);
  }

  .editorial-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .editorial-main {
    grid-row: auto;
  }

  .editorial-card {
    min-height: 360px;
  }

  .blvck-home .section-heading {
    gap: 18px;
  }

  .blvck-home .product-media {
    min-height: 330px;
  }

  .blvck-home .image-banner {
    min-height: 520px;
  }
}

@media (max-width: 560px) {
  .blvck-header .ghost-link {
    display: none;
  }

  .blvck-header .solid-link {
    min-height: 38px;
    padding: 0 14px;
  }

  .blvck-hero {
    padding-bottom: 54px;
  }

  .blvck-home .hero-copy {
    font-size: 15px;
  }

  .blvck-home .product-media {
    min-height: 300px;
  }

  .editorial-card {
    min-height: 300px;
    padding: 22px;
  }
}

.blvck-home .site-header.scrolled,
.blvck-home .blvck-header.scrolled {
  color: #fff;
  background: rgba(5, 5, 5, .92);
  border-bottom: 1px solid rgba(255, 255, 255, .12);
  backdrop-filter: blur(14px);
}

.blvck-home .site-header.scrolled .brand-wordmark,
.blvck-home .site-header.scrolled .top-nav,
.blvck-home .site-header.scrolled .header-actions {
  color: #fff;
}

.blvck-home .site-header.scrolled .solid-link {
  color: #050505;
  background: #fff;
  border-color: #fff;
}

/* BLVCKCAMEL reference-style landing */
.blvck-copy-home {
  background: #000;
}

.blvck-store-header {
  grid-template-columns: 1fr auto 1fr;
  padding-top: 24px;
  padding-bottom: 24px;
  background: rgba(0, 0, 0, .18);
}

.blvck-store-header .brand-wordmark {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  text-align: center;
  font-size: 26px;
}

.blvck-store-header .nav-left {
  justify-content: flex-start;
  position: relative;
  z-index: 3;
}

.blvck-store-header .nav-right {
  justify-content: flex-end;
  position: relative;
  z-index: 3;
}

.blvck-store-header .top-nav {
  display: flex;
}

.blvck-store-header .top-nav,
.blvck-store-header .header-actions {
  gap: 24px;
}

.blvck-store-header .top-nav a,
.blvck-store-header .ghost-link,
.blvck-store-header .solid-link {
  min-height: auto;
  padding: 0;
  border: 0;
  color: rgba(255, 255, 255, .88);
  background: transparent;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.blvck-store-header .solid-link {
  color: #fff;
}

.bc-hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: #000;
  color: #fff;
}

.bc-hero-image,
.bc-hero-shade {
  position: absolute;
  inset: 0;
}

.bc-hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(.96) brightness(.98) contrast(1.02);
}

.bc-hero-shade {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, .18) 0%, rgba(0, 0, 0, 0) 44%, rgba(0, 0, 0, .36) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, .34) 0%, rgba(0, 0, 0, 0) 58%, rgba(0, 0, 0, .1) 100%);
}

.bc-hero-copy {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 18px;
  width: min(920px, calc(100% - 48px));
  margin: 0 auto;
  padding: 168px 0 78px;
  text-align: center;
}

.bc-hero-copy p,
.bc-section-title p,
.bc-editorial p {
  margin: 0;
  color: rgba(255, 255, 255, .72);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.bc-hero-copy h1 {
  margin: 0;
  max-width: 880px;
  color: #fff;
  font-size: clamp(54px, 8.5vw, 136px);
  line-height: .88;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: uppercase;
}

.bc-hero-copy a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  min-height: 50px;
  padding: 0 28px;
  color: #050505;
  background: #fff;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.bc-split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  min-height: 72vh;
  background: #000;
}

.bc-split-stack {
  grid-template-columns: 1fr;
  min-height: auto;
  gap: 16px;
  padding: 0 var(--section-gutter);
  background: #fff;
}

.bc-split-card {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  min-height: 560px;
  color: #fff;
}

.bc-split-stack .bc-split-card {
  min-height: 420px;
}

.bc-split-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) brightness(.62) contrast(1.12);
  transform: scale(1.02);
  transition: transform .45s ease, filter .45s ease;
}

.bc-split-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .28);
}

.bc-split-card:hover img {
  transform: scale(1.07);
  filter: grayscale(1) brightness(.76) contrast(1.14);
}

.bc-split-card span {
  position: relative;
  z-index: 1;
  font-size: clamp(38px, 6.2vw, 98px);
  font-weight: 300;
  line-height: .92;
  letter-spacing: .01em;
  text-transform: uppercase;
}

.bc-feature-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, .12);
}

.bc-feature-row div {
  min-height: 210px;
  padding: 34px;
  background: #050505;
}

.bc-feature-row span,
.bc-feature-row p {
  color: rgba(255, 255, 255, .52);
}

.bc-feature-row span {
  display: block;
  margin-bottom: 36px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .16em;
}

.bc-feature-row strong {
  display: block;
  margin-bottom: 12px;
  color: #fff;
  font-size: 24px;
  line-height: 1;
  text-transform: uppercase;
}

.bc-feature-row p {
  margin: 0;
  line-height: 1.6;
}

.bc-products {
  padding: 90px var(--section-gutter);
  background: #fff;
  color: #050505;
}

.bc-outlet {
  padding: 90px var(--section-gutter) 0;
  background: #fff;
  color: #050505;
}

.bc-section-title-dark p {
  color: rgba(0, 0, 0, .48);
}

.bc-section-title {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 20px;
  margin-bottom: 30px;
}

.bc-section-title p {
  grid-column: 1 / -1;
  color: rgba(0, 0, 0, .48);
}

.bc-section-title h2 {
  margin: 0;
  color: #050505;
  font-size: clamp(34px, 4.8vw, 74px);
  line-height: .92;
  text-transform: uppercase;
}

.bc-section-title a {
  color: #050505;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.bc-product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px 16px;
}

.bc-product-card {
  display: grid;
  gap: 14px;
  color: #050505;
}

.bc-product-media {
  position: relative;
  aspect-ratio: .82;
  overflow: hidden;
  background: #e8e8e4;
}

.bc-product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(.25);
  transition: transform .35s ease;
}

.bc-product-card:hover .bc-product-media img {
  transform: scale(1.04);
}

.bc-product-brand {
  margin: 0 0 5px;
  color: rgba(0, 0, 0, .55);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.bc-product-name {
  min-height: 42px;
  margin: 0 0 8px;
  color: #050505;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.35;
}

.bc-product-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.bc-product-price span {
  color: #8b1f1b;
  font-size: 14px;
  font-weight: 950;
}

.bc-product-price strong {
  font-size: 16px;
}

.bc-loading {
  grid-column: 1 / -1;
  min-height: 180px;
  display: grid;
  place-items: center;
  color: rgba(0, 0, 0, .48);
  border: 1px solid rgba(0, 0, 0, .1);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.bc-banner-stack {
  display: grid;
  gap: 16px;
  padding: 90px var(--section-gutter);
  background: #fff;
}

.bc-large-banner {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  display: grid;
  place-items: center;
  color: #fff;
  background: #000;
}

.bc-large-banner img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) brightness(.42) contrast(1.12);
  transform: scale(1.01);
}

.bc-large-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, .22) 0%, rgba(0, 0, 0, .52) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, .36) 0%, rgba(0, 0, 0, .1) 100%);
}

.bc-large-banner-copy {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 12px;
  width: min(860px, calc(100% - 48px));
  text-align: center;
}

.bc-large-banner-copy p {
  margin: 0;
  color: rgba(255, 255, 255, .78);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.bc-large-banner-copy h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(34px, 4.9vw, 84px);
  font-weight: 300;
  line-height: .95;
  letter-spacing: 0;
  text-transform: uppercase;
}

.bc-editorial {
  position: relative;
  min-height: 620px;
  display: grid;
  align-items: end;
  padding: 90px var(--section-gutter);
  overflow: hidden;
  background: #000;
  color: #fff;
}

.bc-editorial img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) brightness(.42) contrast(1.18);
}

.bc-editorial::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, .74), rgba(0, 0, 0, .12));
}

.bc-editorial div {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.bc-editorial h2 {
  margin: 14px 0 18px;
  color: #fff;
  font-size: clamp(34px, 5vw, 82px);
  font-weight: 500;
  line-height: .96;
  text-transform: uppercase;
}

.bc-editorial span {
  color: rgba(255, 255, 255, .72);
  font-size: 18px;
  line-height: 1.7;
}

.bc-footer {
  border-top: 1px solid rgba(255, 255, 255, .12);
}

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

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

  .blvck-store-header .brand-wordmark {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-size: 20px;
  }

  .blvck-store-header .top-nav {
    display: none;
  }

  .bc-hero-copy {
    justify-items: start;
    text-align: left;
  }

  .bc-split,
  .bc-feature-row {
    grid-template-columns: 1fr;
  }

  .bc-split-stack {
    padding: 0 var(--section-gutter);
  }

  .bc-split-card {
    min-height: 430px;
  }

  .bc-section-title {
    grid-template-columns: 1fr;
  }

  .bc-large-banner {
    min-height: 520px;
  }
}

@media (max-width: 560px) {
  .bc-hero {
    min-height: 760px;
  }

  .bc-hero-copy {
    width: calc(100% - 40px);
    padding-bottom: 50px;
  }

  .bc-hero-copy h1 {
    font-size: clamp(48px, 15vw, 76px);
  }

  .bc-product-grid {
    grid-template-columns: 1fr;
  }

  .bc-products,
  .bc-outlet,
  .bc-banner-stack,
  .bc-editorial {
    padding: 58px var(--section-gutter);
  }

  .bc-large-banner {
    min-height: 460px;
  }

  .bc-large-banner-copy h2 {
    font-size: clamp(28px, 8vw, 44px);
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, "Apple SD Gothic Neo", sans-serif;
  color: var(--ink);
  background: var(--paper);
}

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 36px;
  padding: 26px var(--site-gutter);
  color: var(--white);
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}

.site-header.scrolled {
  color: var(--ink);
  background: rgba(255, 255, 255, .94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand-mark {
  display: inline-flex;
  align-items: center;
}

.brand-logo {
  height: 129px;
  width: auto;
  display: block;
  transition: opacity .2s ease;
}

.site-header.scrolled .brand-logo {
  content: url('/assets/logo-dark.png');
}

.top-nav {
  display: flex;
  justify-content: center;
  gap: 34px;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.header-actions,
.hero-actions,
.portal-actions,
.footer-links,
.footer-quicklinks {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-actions {
  justify-self: end;
}

.ghost-link,
.solid-link,
.primary-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid currentColor;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.solid-link,
.primary-button {
  color: var(--ink);
  background: var(--white);
  border-color: var(--white);
}

.primary-button.dark {
  color: var(--white);
  background: var(--ink);
  border-color: var(--ink);
}

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

.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: flex-end;
  padding: 168px var(--site-gutter) 92px;
  overflow: hidden;
  color: var(--white);
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .72) 0%, rgba(0, 0, 0, .48) 38%, rgba(0, 0, 0, .12) 76%),
    linear-gradient(0deg, rgba(0, 0, 0, .35), rgba(0, 0, 0, .02));
}

.hero-content {
  position: relative;
  width: min(680px, 100%);
}

.eyebrow {
  margin: 0 0 14px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .78);
}

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

h1,
h2,
h3,
p {
  margin-top: 0;
  word-break: keep-all;
}

h1 {
  margin-bottom: 22px;
  max-width: 760px;
  font-size: clamp(44px, 6vw, 84px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  text-wrap: balance;
  word-break: keep-all;
}

.hero-copy {
  max-width: 560px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, .78);
  font-size: 18px;
  line-height: 1.7;
}

.hero-panel {
  position: absolute;
  right: 64px;
  bottom: 72px;
  width: min(330px, 32vw);
  border: 1px solid rgba(255, 255, 255, .34);
  background: rgba(17, 17, 15, .42);
  backdrop-filter: blur(14px);
}

.hero-panel div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, .18);
}

.hero-panel div:last-child {
  border-bottom: 0;
}

.hero-panel span {
  color: rgba(255, 255, 255, .65);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.hero-panel strong {
  font-size: 22px;
}

.section {
  padding: 92px var(--section-gutter);
}

.strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  padding: 0 var(--compact-gutter);
  background: transparent;
}

.strip-item {
  padding: 18px 8px 28px 0;
  background: transparent;
  border-bottom: 1px solid rgba(17, 17, 15, .12);
}

.strip-item span,
.verify-card span {
  display: block;
  margin-bottom: 20px;
  color: var(--clay);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.strip-item strong {
  display: block;
  margin-bottom: 10px;
  font-size: 19px;
}

.strip-item p,
.verify-card p,
.portal-copy p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.65;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 22px;
}

h2 {
  margin-bottom: 0;
  max-width: 720px;
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1.08;
  letter-spacing: 0;
  text-wrap: balance;
}

p {
  text-wrap: pretty;
}

.text-link {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.category-section {
  background: var(--white);
}

.category-section .section-heading h2 {
  max-width: 560px;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.22;
  text-wrap: balance;
  word-break: keep-all;
}

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

.category-card {
  display: grid;
  gap: 10px;
  min-height: 180px;
  padding: 16px 0 20px;
  border-top: 1px solid rgba(17, 17, 15, .1);
  border-bottom: 1px solid rgba(17, 17, 15, .1);
  background: transparent;
  transition: transform .18s ease, opacity .18s ease;
}

.category-card:hover {
  transform: translateY(-2px);
  opacity: .9;
}

.category-card span {
  color: var(--clay);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.category-card strong {
  font-size: 28px;
  line-height: 1.05;
}

.category-card p {
  color: var(--muted);
  line-height: 1.6;
}

.filters {
  display: flex;
  gap: 8px;
  margin-bottom: 28px;
  overflow-x: auto;
}

.filter {
  height: 34px;
  padding: 0 14px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font: inherit;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.filter.active {
  color: var(--white);
  background: var(--ink);
  border-color: var(--ink);
}

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

.product-card {
  display: block;
  min-width: 0;
  background: transparent;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  transition: transform .18s ease, opacity .18s ease;
}

.product-card:hover {
  transform: translateY(-2px);
  opacity: .92;
}

.product-card.is-hidden {
  display: none;
}

.product-media {
  position: relative;
  display: flex;
  align-items: flex-start;
  min-height: 280px;
  padding: 10px;
  overflow: hidden;
  border-radius: 14px;
}

.product-media::after {
  content: "";
  position: absolute;
  inset: 26% 16% 16%;
  border-radius: 50%;
  background: rgba(255, 255, 255, .26);
  filter: blur(32px);
}

.product-media span {
  position: relative;
  z-index: 1;
  padding: 4px 8px;
  color: #11110f;
  background: rgba(255, 255, 255, .92);
  border: 1px solid rgba(17, 17, 15, .08);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  border-radius: 999px;
}

.media-sofa {
  background: linear-gradient(145deg, #d8d1c6, #756356);
}

.media-chair {
  background: linear-gradient(145deg, #c7c3b8, #303532);
}

.media-table {
  background: linear-gradient(145deg, #ece8df, #7a6d61);
}

.media-light {
  background: linear-gradient(145deg, #efe9dd, #a37756);
}

.product-meta {
  padding: 12px 2px 0;
}

.product-meta p {
  margin-bottom: 4px;
  color: #222;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: -0.01em;
  text-transform: none;
}

.product-meta h3 {
  min-height: 44px;
  margin-bottom: 8px;
  color: #4f4f4f;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
}

.price-row {
  display: flex;
  align-items: baseline;
  justify-content: flex-start;
  gap: 6px;
}

.price-row span {
  color: #ef6253;
  font-size: 15px;
  font-weight: 900;
}

.price-row strong {
  font-size: 16px;
  letter-spacing: -0.01em;
}

.verification {
  display: grid;
  grid-template-columns: minmax(280px, .8fr) 1.2fr;
  gap: 42px;
  background: var(--white);
  border-block: 1px solid var(--line);
}

.verify-grid {
  display: grid;
  gap: 0;
}

.verify-card {
  padding: 28px 0;
  border-bottom: 1px solid rgba(17, 17, 15, .12);
  background: transparent;
}

.verify-card:first-child {
  padding-top: 6px;
}

.verify-card:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.verify-card strong {
  display: block;
  margin-bottom: 10px;
  font-size: 20px;
}

.service-section {
  background: #f3f0ea;
}

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

.service-card {
  padding: 0 0 24px;
  border-bottom: 1px solid rgba(17, 17, 15, .12);
  background: transparent;
}

.service-card span {
  display: block;
  margin-bottom: 14px;
  color: var(--olive);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.service-card strong {
  display: block;
  margin-bottom: 10px;
  font-size: 20px;
}

.service-card p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.65;
}

.image-banner-section {
  padding: 0;
  background: var(--white);
}

.image-banner {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  background: #11110f;
}

.image-banner-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.image-banner-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: max(100vw, calc(520px * 1.7778));
  height: max(520px, calc(100vw / 1.7778));
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  object-fit: cover;
  filter: brightness(.84) saturate(.92);
}

.image-banner-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(17, 17, 15, .76) 0%, rgba(17, 17, 15, .48) 38%, rgba(17, 17, 15, .18) 100%),
    linear-gradient(180deg, rgba(17, 17, 15, .18) 0%, rgba(17, 17, 15, .28) 100%);
}

.image-banner-copy {
  position: absolute;
  left: var(--section-gutter);
  right: var(--section-gutter);
  bottom: 42px;
  z-index: 1;
  max-width: 620px;
  color: var(--white);
}

.image-banner-copy .eyebrow {
  margin-bottom: 14px;
}

.image-banner-copy h2 {
  max-width: 620px;
  margin-bottom: 14px;
  color: var(--white);
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 400;
  line-height: 1.04;
}

.image-banner-copy p:last-child {
  margin: 0;
  color: rgba(255, 255, 255, .82);
  font-size: 18px;
  line-height: 1.7;
}

.sale-section {
  background: var(--white);
}

.sale-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 30px;
}

.sale-heading h2 {
  margin-bottom: 0;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.text-link::after {
  content: ">";
  font-size: 14px;
  line-height: 1;
}

.sale-tabs {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  margin-bottom: 28px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.sale-tab {
  min-height: 56px;
  padding: 0 18px;
  border: 0;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
}

.sale-tab.active {
  color: var(--white);
  background: var(--ink);
}

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

.sale-card {
  display: grid;
  gap: 14px;
}

.sale-card.is-hidden {
  display: none;
}

.sale-card-media {
  position: relative;
  aspect-ratio: .84;
  overflow: hidden;
  background-color: #ebe7e0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.sale-card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, .02) 0%, rgba(0, 0, 0, .06) 100%);
}

.sale-media-sofa {
  background-image:
    linear-gradient(180deg, rgba(17, 17, 15, .02), rgba(17, 17, 15, .1)),
    url("/assets/banner-loop-720-poster.jpg");
}

.sale-media-chair {
  background-image:
    linear-gradient(180deg, rgba(17, 17, 15, .02), rgba(17, 17, 15, .08)),
    url("/assets/secondary-archive-hero.png");
  background-position: 68% center;
}

.sale-media-table {
  background-image:
    linear-gradient(180deg, rgba(255, 255, 255, .02), rgba(17, 17, 15, .08)),
    url("/assets/banner-loop-720-poster.jpg");
  background-position: 38% center;
}

.sale-media-light {
  background-image:
    linear-gradient(180deg, rgba(17, 17, 15, .02), rgba(17, 17, 15, .08)),
    url("/assets/secondary-archive-hero.png");
  background-position: 84% center;
}

.sale-media-sofa-alt {
  background-image:
    linear-gradient(180deg, rgba(17, 17, 15, .02), rgba(17, 17, 15, .1)),
    url("/assets/secondary-archive-hero.png");
  background-position: 58% center;
}

.sale-media-chair-alt {
  background-image:
    linear-gradient(180deg, rgba(17, 17, 15, .02), rgba(17, 17, 15, .08)),
    url("/assets/banner-loop-720-poster.jpg");
  background-position: 72% center;
}

.sale-media-archive {
  background-image:
    linear-gradient(180deg, rgba(17, 17, 15, .28), rgba(17, 17, 15, .4)),
    url("/assets/banner-loop-720-poster.jpg");
  background-position: center;
}

.sale-media-outlet {
  background-image:
    linear-gradient(180deg, rgba(17, 17, 15, .22), rgba(17, 17, 15, .34)),
    url("/assets/secondary-archive-hero.png");
  background-position: 76% center;
}

.sale-card-meta {
  display: grid;
  gap: 8px;
}

.sale-brand {
  margin-bottom: 0;
  font-size: 14px;
  font-weight: 700;
}

.sale-card h3 {
  margin-bottom: 0;
  font-size: 16px;
  line-height: 1.45;
}

.sale-subcopy {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.sale-price-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-top: 2px;
}

.sale-price-row strong {
  font-size: 18px;
  line-height: 1.2;
}

.sale-price-row span {
  color: #ef5a48;
  font-size: 28px;
  font-weight: 800;
  line-height: 1;
}

.sale-footer {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}

.sale-more-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 260px;
  min-height: 52px;
  padding: 0 28px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.sale-more-button::after {
  content: ">";
  margin-left: 10px;
  font-size: 14px;
  line-height: 1;
}

.portal-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 32px;
  background: #d9d4c9;
}

.portal-copy {
  max-width: none;
}

.portal-copy .eyebrow {
  margin-bottom: 18px;
  font-size: 13px;
  letter-spacing: .14em;
}

.portal-copy h2 {
  max-width: 1040px;
  margin-bottom: 18px;
  font-size: clamp(34px, 4.5vw, 68px);
  line-height: 1.02;
  word-break: keep-all;
}

.portal-copy p {
  max-width: 760px;
  color: #6a665f;
  font-size: 17px;
  line-height: 1.72;
}

.portal-copy p + p {
  margin-top: 2px;
}

@media (max-width: 1200px) {
  :root {
    --site-gutter: 56px;
    --section-gutter: 56px;
    --compact-gutter: 56px;
  }

  .hero {
    min-height: 82vh;
    padding: 140px var(--site-gutter) 68px;
  }

  .hero-content {
    width: min(620px, 100%);
  }

  .hero-panel {
    width: min(300px, 34vw);
    right: var(--site-gutter);
    bottom: 60px;
  }

  .section {
    padding: 76px var(--section-gutter);
  }

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

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

  .portal-copy h2 {
    max-width: 860px;
    font-size: clamp(32px, 4.8vw, 56px);
  }

  .portal-copy p {
    max-width: 680px;
    font-size: 16px;
  }

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

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

.footer {
  padding: 34px;
  color: var(--white);
  background: var(--ink);
}

.footer-top-structured {
  display: grid;
  grid-template-columns: minmax(0, 180px) minmax(0, 220px) minmax(0, 1fr);
  gap: 32px;
}

.footer-column strong,
.footer-support strong {
  display: block;
  margin-bottom: 18px;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: none;
}

.footer-link-list {
  display: grid;
  gap: 14px;
}

.footer-link-list a {
  color: rgba(255, 255, 255, .68);
  font-size: 15px;
  line-height: 1.45;
  text-decoration: none;
}

.footer-support {
  max-width: 420px;
  justify-self: end;
}

.footer-support p {
  margin: 0 0 10px;
  color: rgba(255, 255, 255, .68);
  font-size: 15px;
  line-height: 1.7;
}

.footer-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.footer-brand strong {
  display: block;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.footer-brand p,
.footer-meta p,
.footer-disclosure-body p {
  margin: 0;
  color: rgba(255, 255, 255, .64);
}

.footer-quicklinks {
  flex-wrap: wrap;
  justify-content: flex-end;
}

.footer-quicklinks a,
.footer-links a {
  color: rgba(255, 255, 255, .76);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.footer-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 24px;
  padding: 22px 0 18px;
}

.footer-meta span {
  display: block;
  margin-bottom: 6px;
  color: rgba(255, 255, 255, .48);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.footer-meta strong {
  font-size: 15px;
  letter-spacing: 0;
  text-transform: none;
}

.footer-disclosure {
  border-top: 1px solid rgba(255, 255, 255, .12);
  padding-top: 18px;
}

.footer-disclosure summary {
  cursor: pointer;
  list-style: none;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .78);
}

.footer-disclosure summary::-webkit-details-marker {
  display: none;
}

.footer-disclosure-body {
  display: grid;
  gap: 12px;
  padding-top: 14px;
}

.footer-bottom {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, .12);
}

.footer-policy-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 18px;
}

.footer-policy-row a {
  color: rgba(255, 255, 255, .92);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

.footer-company-copy {
  margin-bottom: 10px;
  color: rgba(255, 255, 255, .58);
  font-size: 14px;
  line-height: 1.8;
}

.footer-copyright {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 22px;
  color: rgba(255, 255, 255, .5);
  font-size: 14px;
}

.footer-ops-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-ops-links a {
  color: rgba(255, 255, 255, .68);
  font-size: 13px;
  text-decoration: none;
}

@media (max-width: 900px) {
  :root {
    --site-gutter: 36px;
    --section-gutter: 36px;
    --compact-gutter: 36px;
  }

  .site-header {
    grid-template-columns: auto 1fr auto;
    padding: 20px var(--site-gutter);
  }

  .brand-logo {
    height: 96px;
  }

  .top-nav {
    display: none;
  }

  .header-actions {
    gap: 10px;
  }

  .header-actions .ghost-link {
    display: inline-flex;
  }

  .hero {
    min-height: 760px;
    padding: 136px var(--site-gutter) 84px;
  }

  h1 {
    font-size: clamp(40px, 10vw, 56px);
  }

  .hero-copy {
    font-size: 16px;
    line-height: 1.65;
  }

  .hero-actions,
  .portal-actions {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: stretch;
    gap: 12px;
  }

  .hero-panel {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    margin-top: 32px;
  }

  .section {
    padding: 58px var(--section-gutter);
  }

  .strip,
  .category-grid,
  .product-grid,
  .verification,
  .service-grid {
    grid-template-columns: 1fr;
  }

  .strip-item {
    padding: 0 0 18px;
  }

  .section-heading,
  .footer-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-top-structured {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .portal-section {
    grid-template-columns: 1fr;
    align-items: flex-start;
  }

  .image-banner,
  .image-banner img {
    min-height: 420px;
  }

  .image-banner-copy {
    left: var(--section-gutter);
    right: var(--section-gutter);
    bottom: 24px;
  }

  .image-banner-copy h2 {
    font-size: clamp(28px, 8vw, 42px);
    line-height: 1.1;
  }

  .image-banner-copy p:last-child {
    font-size: 15px;
    line-height: 1.6;
  }

  .product-media {
    min-height: 240px;
  }

  .portal-copy .eyebrow {
    margin-bottom: 14px;
    font-size: 12px;
  }

  .portal-copy h2 {
    margin-bottom: 14px;
    font-size: clamp(32px, 8vw, 46px);
    line-height: 1.06;
  }

  .portal-copy p {
    font-size: 15px;
    line-height: 1.7;
  }

  .sale-heading {
    align-items: start;
    gap: 14px;
  }

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

  .sale-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .sale-card-media {
    aspect-ratio: 1.08;
  }

  .sale-more-button {
    width: 100%;
    min-width: 0;
  }

  .footer {
    padding: 28px 24px;
  }

  .footer-support {
    max-width: none;
    justify-self: start;
  }

  .footer-meta {
    grid-template-columns: 1fr;
  }

  .footer-quicklinks,
  .footer-links {
    justify-content: flex-start;
    flex-wrap: wrap;
  }

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

@media (max-width: 640px) {
  :root {
    --site-gutter: 26px;
    --section-gutter: 26px;
    --compact-gutter: 26px;
  }

  .site-header {
    gap: 14px;
    padding: 16px var(--site-gutter);
  }

  .brand-logo {
    height: 82px;
  }

  .header-actions {
    gap: 8px;
  }

  .header-actions .ghost-link,
  .header-actions .solid-link,
  .primary-button,
  .secondary-button {
    min-height: 42px;
    padding: 0 14px;
    font-size: 11px;
    letter-spacing: .06em;
  }

  .header-actions .ghost-link {
    display: none;
  }

  .header-actions .solid-link {
    min-width: 96px;
  }

  .hero {
    min-height: 720px;
    align-items: flex-end;
    padding: 140px var(--site-gutter) 60px;
  }

  .strip {
    padding: 0 var(--compact-gutter);
  }

  h1 {
    max-width: 336px;
    margin-bottom: 16px;
    font-size: clamp(30px, 10.2vw, 42px);
    line-height: 1.08;
    text-wrap: balance;
  }

  h2 {
    font-size: clamp(28px, 8.5vw, 36px);
    line-height: 1.1;
  }

  .eyebrow {
    margin-bottom: 12px;
    font-size: 11px;
    letter-spacing: .14em;
  }

  .hero-copy,
  .portal-copy p,
  .strip-item p,
  .verify-card p,
  .service-card p {
    font-size: 14px;
    line-height: 1.65;
  }

  .hero-copy {
    max-width: 336px;
    margin-bottom: 22px;
    font-size: 15px;
    line-height: 1.58;
  }

  .hero-content {
    width: min(352px, 100%);
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    width: min(280px, 100%);
  }

  .hero-actions .primary-button,
  .hero-actions .secondary-button {
    width: 100%;
  }

  .section {
    padding: 48px var(--section-gutter);
  }

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

  .product-media {
    min-height: 220px;
  }

  .product-meta {
    padding: 10px 0 0;
  }

  .product-meta h3 {
    min-height: 0;
    font-size: 14px;
  }

  .category-card {
    min-height: 152px;
    padding: 14px 0 18px;
  }

  .category-card strong {
    font-size: 24px;
  }

  .service-grid {
    gap: 18px;
  }

  .service-card {
    padding: 0 0 18px;
  }

  .portal-copy h2 {
    font-size: clamp(28px, 9vw, 38px);
  }

  .sale-heading {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 22px;
  }

  .sale-tabs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-bottom: 20px;
  }

  .sale-tab {
    min-height: 48px;
    padding: 0 14px;
    font-size: 14px;
  }

  .sale-price-row strong {
    font-size: 17px;
  }

  .sale-price-row span {
    font-size: 24px;
  }

}

/* Final BLVCKCAMEL overrides after legacy rules */
.blvck-home .site-header.scrolled,
.blvck-home .blvck-header.scrolled {
  color: #fff;
  background: rgba(5, 5, 5, .92);
  border-bottom: 1px solid rgba(255, 255, 255, .12);
  backdrop-filter: blur(14px);
}

.blvck-home .site-header.scrolled .brand-wordmark,
.blvck-home .site-header.scrolled .top-nav,
.blvck-home .site-header.scrolled .header-actions {
  color: #fff;
}

.blvck-home .site-header.scrolled .solid-link {
  color: #050505;
  background: #fff;
  border-color: #fff;
}
