:root {
  color-scheme: light;
  --ink: #11110f;
  --muted: #6f6c65;
  --line: #e4e0d8;
  --paper: #faf8f4;
  --white: #fff;
  --walnut: #5b3d2a;
  --olive: #4e5a45;
  --clay: #aa6d4f;
}

* {
  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: 28px;
  padding: 18px 34px;
  color: var(--white);
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}

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

.brand-mark {
  display: inline-flex;
  flex-direction: column;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .14em;
  line-height: 1.05;
  text-transform: uppercase;
}

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

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

.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: 144px 34px 64px;
  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: 34px;
  bottom: 64px;
  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: 84px 34px;
}

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

.strip-item {
  padding: 34px;
  background: var(--paper);
}

.strip-item span,
.verify-card span {
  display: block;
  margin-bottom: 16px;
  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: 22px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, #fff 0%, #f7f3ec 100%);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.category-card:hover {
  transform: translateY(-2px);
  border-color: #c9c1b4;
  box-shadow: 0 10px 24px rgba(17, 17, 15, .06);
}

.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: 14px;
}

.product-card {
  display: block;
  min-width: 0;
  border: 1px solid var(--line);
  background: var(--white);
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

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

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

.product-media::after {
  content: "";
  position: absolute;
  inset: 22% 14% 12%;
  border-radius: 50%;
  background: rgba(255, 255, 255, .42);
  filter: blur(38px);
}

.product-media span {
  position: relative;
  z-index: 1;
  padding: 5px 9px;
  color: var(--white);
  background: rgba(17, 17, 15, .72);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.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: 18px;
}

.product-meta p {
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.product-meta h3 {
  min-height: 48px;
  margin-bottom: 18px;
  font-size: 16px;
  line-height: 1.45;
}

.price-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
}

.price-row span {
  color: var(--clay);
  font-weight: 900;
}

.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: 12px;
}

.verify-card {
  padding: 24px;
  border: 1px solid var(--line);
  background: var(--paper);
}

.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: 14px;
}

.service-card {
  padding: 24px;
  border: 1px solid var(--line);
  background: var(--white);
}

.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;
}

.image-banner img {
  width: 100%;
  min-height: 520px;
  height: 100%;
  object-fit: cover;
  display: block;
}

.image-banner-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(17, 17, 15, .74) 0%, rgba(17, 17, 15, .44) 38%, rgba(17, 17, 15, .10) 100%),
    linear-gradient(180deg, rgba(17, 17, 15, .10) 0%, rgba(17, 17, 15, .24) 100%);
}

.image-banner-copy {
  position: absolute;
  left: 34px;
  right: 34px;
  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(34px, 4.5vw, 62px);
  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;
}

.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) {
  .hero {
    min-height: 82vh;
    padding: 132px 28px 56px;
  }

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

  .hero-panel {
    width: min(300px, 34vw);
  }

  .section {
    padding: 72px 28px;
  }

  .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;
  }
}

.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) {
  .site-header {
    grid-template-columns: auto auto;
    padding: 14px 18px;
  }

  .top-nav {
    display: none;
  }

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

  .hero {
    min-height: 760px;
    padding: 118px 18px 92px;
  }

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

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

  .hero-actions,
  .portal-actions {
    flex-direction: column;
    align-items: stretch;
  }

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

  .section {
    padding: 58px 18px;
  }

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

  .strip-item {
    padding: 26px 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: 18px;
    right: 18px;
    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: 230px;
  }

  .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;
  }

  .footer {
    padding: 28px 18px;
  }

  .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) {
  .site-header {
    gap: 14px;
    padding: 12px 14px;
  }

  .brand-mark {
    font-size: 12px;
  }

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

  .hero {
    min-height: 680px;
    padding: 104px 14px 72px;
  }

  h1 {
    margin-bottom: 18px;
    font-size: clamp(34px, 11vw, 44px);
    line-height: 1.15;
  }

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

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

  .section {
    padding: 48px 14px;
  }

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

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

  .product-meta {
    padding: 16px;
  }

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

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

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

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

}
