:root {
  --paper: #f6f4ef;
  --paper-strong: #ffffff;
  --ink: #1e2723;
  --muted: #66706a;
  --line: #ddd8ce;
  --forest: #173f35;
  --forest-soft: #e8efe9;
  --olive: #66795f;
  --rust: #bd5d43;
  --blue: #456b83;
  --gold: #b88b42;
  --stone: #7a7770;
  --shadow: 0 18px 45px rgba(30, 39, 35, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Inter", Arial, sans-serif;
  letter-spacing: 0;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: 76px;
  padding: 14px 42px;
  color: #ffffff;
  background: rgba(18, 28, 24, 0.22);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(18px);
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.site-header.scrolled,
.site-header.site-header-solid {
  color: var(--ink);
  background: rgba(246, 244, 239, 0.94);
  box-shadow: 0 8px 28px rgba(30, 39, 35, 0.1);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 210px;
}

.brand img {
  width: 42px;
  height: 42px;
  object-fit: cover;
  border-radius: 8px;
  background: #ffffff;
}

.brand img.brand-mark {
  object-fit: contain;
  padding: 4px;
}

.brand span {
  display: flex;
  flex-direction: column;
  gap: 2px;
  line-height: 1.1;
}

.brand strong {
  font-size: 1rem;
  font-weight: 800;
}

.brand small {
  font-size: 0.75rem;
  color: currentColor;
  opacity: 0.72;
}

.main-nav,
.main-nav-list {
  display: flex;
  justify-content: center;
  gap: 26px;
  font-size: 0.92rem;
  font-weight: 600;
}

.main-nav-list {
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
}

.main-nav a {
  opacity: 0.86;
}

.main-nav a:hover {
  opacity: 1;
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.icon-button,
.menu-button {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  color: currentColor;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 8px;
  cursor: pointer;
}

.site-header.scrolled .icon-button,
.site-header.scrolled .menu-button,
.site-header.site-header-solid .icon-button,
.site-header.site-header-solid .menu-button {
  background: #ffffff;
  border-color: var(--line);
}

.icon-button svg,
.menu-button svg,
.nav-cta svg,
.primary-button svg,
.ghost-button svg,
.text-link svg,
.light-button svg {
  width: 18px;
  height: 18px;
  stroke-width: 2;
}

.nav-cta,
.primary-button,
.ghost-button,
.light-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 8px;
  font-weight: 700;
  border: 1px solid transparent;
  cursor: pointer;
}

.nav-cta {
  color: #ffffff;
  background: var(--rust);
}

.primary-button {
  color: #ffffff;
  background: var(--forest);
  border-color: var(--forest);
}

.ghost-button {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.42);
}

.light-button {
  color: var(--forest);
  background: #ffffff;
}

.full {
  width: 100%;
}

.menu-button {
  display: none;
}

.hero {
  position: relative;
  display: grid;
  min-height: 92vh;
  overflow: hidden;
  color: #ffffff;
}

.hero picture,
.hero picture img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero picture img {
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(15, 31, 25, 0.74), rgba(15, 31, 25, 0.22) 52%, rgba(15, 31, 25, 0.02)),
    linear-gradient(0deg, rgba(15, 31, 25, 0.22), rgba(15, 31, 25, 0.02));
}

.hero-content {
  position: relative;
  z-index: 1;
  align-self: center;
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
  padding-top: 84px;
}

.eyebrow {
  margin: 0 0 14px;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  color: #d8efe2;
}

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

.eyebrow.light {
  color: #bfe5d0;
}

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

h1 {
  max-width: 620px;
  margin-bottom: 18px;
  font-size: 4.35rem;
  line-height: 1;
  font-weight: 800;
}

.hero-copy {
  max-width: 500px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.05rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-strip {
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: min(1120px, calc(100% - 48px));
  transform: translateX(-50%);
  background: rgba(246, 244, 239, 0.95);
  color: var(--ink);
  border-radius: 8px 8px 0 0;
  box-shadow: var(--shadow);
}

.hero-strip span {
  padding: 18px 26px;
  font-weight: 800;
  text-align: center;
  border-right: 1px solid var(--line);
}

.hero-strip span:last-child {
  border-right: 0;
}

.section-inner {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
}

.intro-band {
  padding: 82px 0 62px;
  background: #ffffff;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(240px, 0.9fr) 1.1fr;
  gap: 48px;
  align-items: end;
}

.intro-grid h2,
.section-heading h2,
.brand-copy h2,
.contact h2 {
  margin-bottom: 0;
  font-size: 2.35rem;
  line-height: 1.18;
}

.intro-grid p:last-child,
.brand-copy p,
.contact p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.85;
}

.collections,
.featured,
.process,
.trade-paths,
.buyer-tools {
  padding: 86px 0;
}

.rooms {
  padding: 86px 0;
  background: #ffffff;
}

.section-heading {
  margin-bottom: 32px;
}

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

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--forest);
  font-weight: 800;
}

.trade-paths {
  background: var(--paper);
}

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

.trade-card,
.tool-card {
  display: flex;
  min-height: 232px;
  padding: 24px;
  flex-direction: column;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.trade-card svg,
.tool-card svg {
  width: 30px;
  height: 30px;
  margin-bottom: 24px;
  color: var(--forest);
  stroke-width: 1.8;
}

.trade-card h3,
.tool-card h3 {
  margin-bottom: 10px;
  font-size: 1.08rem;
  line-height: 1.3;
}

.trade-card p,
.tool-card p {
  margin-bottom: 18px;
  color: var(--muted);
  line-height: 1.65;
}

.trade-card a {
  margin-top: auto;
  color: var(--forest);
  font-weight: 800;
}

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

.collection-card {
  min-height: 188px;
  padding: 24px;
  color: #ffffff;
  border-radius: 8px;
  overflow: hidden;
}

.collection-card svg {
  width: 34px;
  height: 34px;
  margin-bottom: 26px;
  stroke-width: 1.8;
}

.collection-card h3 {
  margin-bottom: 10px;
  font-size: 1.25rem;
}

.collection-card p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.6;
}

.color-olive {
  background: var(--olive);
}

.color-rust {
  background: var(--rust);
}

.color-blue {
  background: var(--blue);
}

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

.color-stone {
  background: var(--stone);
}

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

.room-layout {
  display: grid;
  grid-template-columns: 1.35fr 0.9fr;
  grid-template-rows: repeat(2, minmax(250px, 1fr));
  gap: 18px;
}

.room-feature,
.room-card {
  position: relative;
  overflow: hidden;
  min-height: 250px;
  border-radius: 8px;
  background: var(--forest-soft);
}

.room-feature {
  grid-row: span 2;
}

.room-feature img,
.room-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease;
}

.room-feature:hover img,
.room-card:hover img {
  transform: scale(1.035);
}

.room-feature::after,
.room-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(20, 31, 26, 0.02), rgba(20, 31, 26, 0.76));
}

.room-caption,
.room-card div {
  position: absolute;
  z-index: 1;
  left: 24px;
  right: 24px;
  bottom: 22px;
  color: #ffffff;
}

.room-caption span,
.room-card span {
  display: block;
  margin-bottom: 9px;
  color: #d8efe2;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.room-caption h3,
.room-card h3 {
  margin-bottom: 0;
  line-height: 1.35;
}

.room-caption h3 {
  max-width: 560px;
  font-size: 1.8rem;
}

.room-card h3 {
  font-size: 1.05rem;
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.filter-pill {
  min-height: 38px;
  padding: 0 14px;
  color: var(--muted);
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
}

.filter-pill.active {
  color: #ffffff;
  background: var(--forest);
  border-color: var(--forest);
}

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

.product-grid-b2b {
  grid-template-columns: repeat(3, 1fr);
}

.product-card {
  overflow: hidden;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

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

.product-media {
  position: relative;
  aspect-ratio: 4 / 5;
  background: var(--forest-soft);
  overflow: hidden;
}

.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-media span {
  position: absolute;
  top: 12px;
  left: 12px;
  max-width: calc(100% - 24px);
  padding: 6px 9px;
  color: #ffffff;
  background: rgba(23, 63, 53, 0.9);
  border-radius: 6px;
  font-size: 0.72rem;
  font-weight: 800;
}

.product-info {
  min-height: 268px;
  padding: 18px;
  display: flex;
  flex-direction: column;
}

.product-info h3 {
  margin-bottom: 8px;
  font-size: 1rem;
  line-height: 1.35;
}

.product-info p {
  min-height: 74px;
  margin-bottom: 12px;
  color: var(--muted);
  line-height: 1.55;
}

.product-info strong {
  color: var(--rust);
  font-size: 1rem;
}

.spec-list {
  display: grid;
  gap: 8px;
  margin: 0 0 18px;
  padding: 0;
  color: var(--muted);
  list-style: none;
  font-size: 0.88rem;
  line-height: 1.45;
}

.spec-list li {
  position: relative;
  padding-left: 16px;
}

.spec-list li::before {
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 6px;
  height: 6px;
  content: "";
  background: var(--rust);
  border-radius: 50%;
}

.product-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  margin-top: auto;
  padding: 0 14px;
  color: var(--forest);
  background: var(--forest-soft);
  border: 1px solid #d1ded4;
  border-radius: 8px;
  font-weight: 800;
}

.brand-band {
  padding: 94px 0;
  color: #ffffff;
  background: var(--forest);
}

.buyer-tools {
  background: #ffffff;
}

.brand-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 54px;
  align-items: center;
}

.brand-copy p {
  margin: 22px 0 30px;
  color: rgba(255, 255, 255, 0.74);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.proof-grid article {
  min-height: 142px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
}

.proof-grid strong {
  display: block;
  margin-bottom: 28px;
  color: #bfe5d0;
  font-size: 1.5rem;
}

.proof-grid span {
  font-size: 1.1rem;
  font-weight: 800;
}

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

.process-grid article {
  padding: 28px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.process-grid span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 24px;
  color: #ffffff;
  background: var(--blue);
  border-radius: 8px;
  font-weight: 800;
}

.process-grid h3 {
  margin-bottom: 12px;
}

.process-grid p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.7;
}

.contact {
  padding: 92px 0;
  background: #ffffff;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.96fr 1.04fr;
  gap: 54px;
  align-items: center;
}

.contact p {
  margin: 22px 0 28px;
}

.company-box {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 14px;
  background: var(--forest-soft);
  border: 1px solid #d1ded4;
  border-radius: 8px;
  font-weight: 800;
}

.company-box img {
  width: 46px;
  height: 46px;
  object-fit: contain;
  border-radius: 8px;
  background: #ffffff;
}

.contact-links {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.contact-links a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--forest);
  font-weight: 800;
  overflow-wrap: anywhere;
}

.contact-links svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.hidden-field,
.apexive-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-form {
  display: grid;
  gap: 14px;
  padding: 24px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 14px 15px;
  color: var(--ink);
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  outline: none;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--forest);
  box-shadow: 0 0 0 3px rgba(23, 63, 53, 0.12);
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.55;
}

.form-message {
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 0.94rem;
  font-weight: 800;
}

.form-message-success {
  color: #173f35;
  background: #eef7f1;
  border-color: rgba(23, 63, 53, 0.18);
}

.form-message-error {
  color: #7f1d1d;
  background: #fff1f1;
  border-color: rgba(127, 29, 29, 0.18);
}

.site-footer {
  padding: 28px 0;
  color: #ffffff;
  background: #121c18;
}

.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-grid div {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.footer-grid strong {
  font-weight: 800;
}

.footer-grid span,
.footer-grid a {
  color: rgba(255, 255, 255, 0.68);
}

.apexive-page {
  width: min(900px, calc(100% - 48px));
  margin: 0 auto;
  padding: 138px 0 86px;
}

.apexive-page-content {
  padding: 34px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.apexive-page-header {
  margin-bottom: 26px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}

.apexive-page-header h1 {
  max-width: none;
  margin-bottom: 0;
  color: var(--ink);
  font-size: 2.55rem;
  line-height: 1.12;
}

.apexive-page-header p {
  margin: 10px 0 0;
  color: var(--muted);
}

.apexive-entry {
  color: var(--muted);
  line-height: 1.85;
}

.apexive-entry h2,
.apexive-entry h3 {
  color: var(--ink);
}

.apexive-entry a {
  color: var(--forest);
  font-weight: 800;
}

.apexive-entry ul,
.apexive-entry ol {
  padding-left: 1.25em;
}

.woocommerce-page main,
.woocommerce main {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
  padding: 130px 0 86px;
}

.woocommerce-products-header,
.woocommerce div.product {
  color: var(--ink);
}

.woocommerce-products-header__title,
.woocommerce div.product .product_title {
  margin-bottom: 14px;
  font-size: 2.35rem;
  line-height: 1.18;
}

.woocommerce-result-count,
.woocommerce-ordering,
.woocommerce .woocommerce-breadcrumb {
  color: var(--muted);
}

.woocommerce ul.products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 32px 0 0;
}

.woocommerce ul.products::before,
.woocommerce ul.products::after {
  display: none;
}

.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
  float: none;
  width: auto;
  margin: 0;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.woocommerce ul.products li.product:hover,
.woocommerce-page ul.products li.product:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.woocommerce ul.products li.product a img {
  aspect-ratio: 4 / 5;
  width: 100%;
  height: auto;
  margin: 0;
  object-fit: cover;
  background: var(--forest-soft);
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
  padding: 18px 18px 8px;
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.35;
}

.woocommerce ul.products li.product .apexive-product-inquiry {
  width: calc(100% - 36px);
  margin: 4px 18px 18px;
}

.woocommerce div.product {
  display: grid;
  grid-template-columns: minmax(320px, 0.92fr) 1.08fr;
  gap: 48px;
  padding: 32px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.woocommerce div.product div.images,
.woocommerce div.product div.summary {
  float: none;
  width: auto;
  margin: 0;
}

.woocommerce div.product div.images img {
  border-radius: 8px;
  background: var(--forest-soft);
}

.woocommerce div.product .summary {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.woocommerce div.product .woocommerce-product-details__short-description,
.woocommerce div.product .summary p {
  color: var(--muted);
  line-height: 1.75;
}

.woocommerce div.product .apexive-product-inquiry {
  width: fit-content;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
    padding: 12px 22px;
  }

  .main-nav {
    position: fixed;
    top: 72px;
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    gap: 0;
    padding: 10px;
    color: var(--ink);
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

  .main-nav-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    align-items: stretch;
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav a {
    padding: 14px;
    border-radius: 6px;
  }

  .main-nav a:hover {
    background: var(--forest-soft);
  }

  .icon-button,
  .nav-cta {
    display: none;
  }

  .menu-button {
    display: inline-grid;
  }

  h1 {
    font-size: 3rem;
  }

  .hero-strip {
    position: relative;
    left: auto;
    bottom: auto;
    grid-template-columns: 1fr;
    width: 100%;
    transform: none;
    border-radius: 0;
  }

  .hero-strip span {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .intro-grid,
  .brand-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .collection-grid,
  .product-grid,
  .process-grid,
  .trade-grid,
  .tool-grid,
  .woocommerce ul.products {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

  .room-feature {
    grid-row: auto;
  }
}

@media (max-width: 640px) {
  .section-inner,
  .hero-content {
    width: min(100% - 32px, 1120px);
  }

  .brand {
    min-width: 0;
  }

  .brand small {
    display: none;
  }

  .hero {
    min-height: 88vh;
  }

  h1 {
    max-width: 9.8em;
    font-size: 2.05rem;
    line-height: 1.08;
  }

  .hero-copy {
    max-width: 27em;
    margin-bottom: 22px;
    font-size: 0.95rem;
    line-height: 1.55;
  }

  .hero-actions,
  .section-heading.split,
  .footer-grid {
    align-items: stretch;
    flex-direction: column;
  }

  .section-heading.split {
    display: flex;
  }

  .primary-button,
  .ghost-button,
  .light-button {
    width: 100%;
    min-height: 42px;
  }

  .intro-grid h2,
  .section-heading h2,
  .brand-copy h2,
  .contact h2 {
    font-size: 1.72rem;
  }

  .collection-grid,
  .product-grid,
  .process-grid,
  .proof-grid,
  .trade-grid,
  .tool-grid,
  .woocommerce ul.products {
    grid-template-columns: 1fr;
  }

  .woocommerce-page main,
  .woocommerce main,
  .apexive-page {
    width: min(100% - 32px, 1120px);
    padding: 112px 0 64px;
  }

  .woocommerce div.product {
    padding: 18px;
  }

  .apexive-page-content {
    padding: 22px;
  }

  .apexive-page-header h1 {
    font-size: 2rem;
  }

  .filter-row {
    justify-content: flex-start;
  }

  .collections,
  .featured,
  .process,
  .trade-paths,
  .buyer-tools,
  .rooms,
  .contact,
  .brand-band {
    padding: 64px 0;
  }

  .room-feature,
  .room-card {
    min-height: 340px;
  }

  .room-caption h3 {
    font-size: 1.35rem;
  }

  .company-box {
    align-items: flex-start;
  }

  .hero-content {
    align-self: end;
    padding-top: 98px;
    padding-bottom: 26px;
  }

  .hero-actions {
    gap: 10px;
  }

  .hero-strip span {
    padding: 15px 18px;
    font-size: 0.9rem;
  }
}
