:root {
  --ink: #24231f;
  --muted: #6f6a61;
  --paper: #f7f3ec;
  --paper-deep: #ebe4d8;
  --surface: #fffaf1;
  --line: rgba(36, 35, 31, 0.14);
  --accent: #536b57;
  --accent-dark: #324437;
  --charcoal: #2f332f;
  --cool-wash: #dfe7e7;
  --narrative-wash: linear-gradient(180deg, #f7f3ec 0%, #f3efe7 22%, #e8eee9 45%, #f6f0e6 68%, #eef2ee 100%);
  --product-surface-bg:
    radial-gradient(circle at 45% 25%, rgba(255, 250, 241, 0.85), transparent 42%),
    radial-gradient(ellipse at 50% 48%, rgba(207, 221, 226, 0.74) 0%, rgba(224, 231, 226, 0.58) 44%, rgba(246, 241, 231, 0.64) 78%),
    linear-gradient(180deg, #f7f4ea 0%, #efeee5 65%, #e8e6db 100%),
    url("assets/chair-exchange/backgrounds/warm-card-texture.svg");
  --product-surface-edge:
    radial-gradient(ellipse at 50% 50%, rgba(255, 250, 241, 0) 0%, rgba(255, 250, 241, 0) 54%, rgba(243, 240, 231, 0.38) 78%, rgba(243, 240, 231, 0.82) 100%),
    linear-gradient(90deg, rgba(243, 240, 231, 0.78), rgba(243, 240, 231, 0.08) 24%, rgba(243, 240, 231, 0.08) 76%, rgba(243, 240, 231, 0.78));
  --shadow: 0 24px 70px rgba(36, 35, 31, 0.12);
  --radius: 24px;
  --font-sans: "Aptos", "Avenir Next", "Helvetica Neue", Arial, sans-serif;
  --font-display: var(--font-sans);
  --display-weight: 850;
  --display-letter-spacing: 0;
  --display-line-height: 0.96;
  --section-title-weight: 850;
  --section-title-letter-spacing: 0;
  --section-title-line-height: 1;
}

/* Operations admin shell */
.admin-shell-page {
  min-height: 100dvh;
  color: #1f241f;
  background:
    radial-gradient(circle at 18% 10%, rgba(194, 209, 189, 0.42), transparent 30%),
    radial-gradient(circle at 90% 0%, rgba(232, 220, 200, 0.66), transparent 34%),
    #f5f0e7;
}

.admin-shell-page [hidden] {
  display: none !important;
}

.admin-app-shell {
  display: grid;
  grid-template-columns: minmax(260px, 300px) minmax(0, 1fr);
  min-height: 100dvh;
}

.admin-sidebar {
  position: sticky;
  top: 0;
  display: grid;
  align-content: start;
  gap: 22px;
  height: 100dvh;
  padding: 24px 18px;
  color: rgba(255, 250, 241, 0.9);
  background:
    linear-gradient(180deg, rgba(20, 48, 35, 0.98), rgba(13, 34, 25, 0.98)),
    url("assets/chair-exchange/backgrounds/dark-brand-panel.svg") center / cover no-repeat;
  border-right: 1px solid rgba(255, 250, 241, 0.12);
  box-shadow: 18px 0 70px rgba(23, 42, 31, 0.18);
}

.admin-brand {
  display: block;
  padding: 14px;
  background: rgba(255, 250, 241, 0.92);
  border: 1px solid rgba(255, 250, 241, 0.24);
  border-radius: 18px;
}

.admin-brand .brand-lockup {
  width: 100%;
  height: auto;
}

.admin-sidebar-heading {
  padding: 0 6px;
}

.admin-sidebar-heading .eyebrow {
  color: rgba(255, 250, 241, 0.58);
}

.admin-sidebar-heading h1 {
  max-width: 100%;
  margin: 8px 0 0;
  color: #fffbf1;
  font-size: 34px;
  line-height: 0.96;
  letter-spacing: 0;
  overflow-wrap: normal;
  word-break: normal;
}

.admin-module-nav {
  display: grid;
  gap: 8px;
}

.admin-module-nav button {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  min-height: 62px;
  padding: 10px;
  color: rgba(255, 250, 241, 0.72);
  text-align: left;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 16px;
  cursor: pointer;
  transition: background 0.22s ease, border-color 0.22s ease, transform 0.22s ease;
}

.admin-module-nav button:hover,
.admin-module-nav button:focus-visible,
.admin-module-nav button.is-active {
  color: #fffbf1;
  background: rgba(255, 250, 241, 0.1);
  border-color: rgba(255, 250, 241, 0.16);
  outline: none;
  transform: translateX(2px);
}

.admin-module-nav button > span {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  color: #183526;
  background: #f4eee2;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 850;
}

.admin-module-nav button strong,
.admin-module-nav button small {
  display: block;
  grid-column: 2;
}

.admin-module-nav button strong {
  font-size: 14px;
  line-height: 1.1;
}

.admin-module-nav button small {
  margin-top: 3px;
  color: rgba(255, 250, 241, 0.5);
  font-size: 11px;
}

.admin-sidebar-note {
  margin-top: 8px;
  padding: 16px;
  background: rgba(255, 250, 241, 0.08);
  border: 1px solid rgba(255, 250, 241, 0.13);
  border-radius: 18px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.admin-sidebar-note strong {
  display: block;
  color: #fffbf1;
  font-size: 13px;
}

.admin-sidebar-note p {
  margin: 8px 0 0;
  color: rgba(255, 250, 241, 0.58);
  font-size: 12px;
  line-height: 1.45;
}

.admin-content-shell {
  min-width: 0;
}

.admin-shell-page .admin-header {
  position: sticky;
  top: 0;
  z-index: 8;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  padding: 22px 32px;
  background: rgba(247, 243, 236, 0.88);
  border-bottom: 1px solid rgba(36, 35, 31, 0.12);
  backdrop-filter: blur(18px);
}

.admin-shell-page .admin-header h2 {
  margin: 4px 0 4px;
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1;
  letter-spacing: 0;
}

.admin-shell-page .admin-header p:not(.eyebrow) {
  max-width: 66ch;
  margin: 0;
  color: #67645d;
  font-size: 14px;
  line-height: 1.45;
}

.admin-shell-page .admin-header nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.admin-shell-page .admin-header nav a,
.admin-shell-page .admin-header nav button {
  min-height: 34px;
  padding: 9px 12px;
  color: #214532;
  background: rgba(255, 250, 241, 0.74);
  border: 1px solid rgba(36, 35, 31, 0.12);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  font-family: inherit;
  cursor: pointer;
}

.admin-command-bar {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  padding: 16px 32px 0;
}

.admin-shell-page .admin-main {
  display: block;
  max-width: 1520px;
  margin: 0 auto;
  padding: 18px 32px 52px;
}

.admin-panel {
  display: none;
}

.admin-panel.is-active {
  display: grid;
  gap: 18px;
}

.admin-dashboard-hero,
.admin-dashboard-panel,
.admin-metric-grid article,
.admin-shell-page .admin-workbench,
.admin-shell-page .admin-card,
.admin-content-grid article {
  background: rgba(255, 250, 241, 0.82);
  border: 1px solid rgba(36, 35, 31, 0.13);
  border-radius: 24px;
  box-shadow: 0 24px 80px rgba(40, 50, 38, 0.08);
}

.admin-dashboard-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(250px, 0.32fr);
  gap: 28px;
  align-items: end;
  padding: clamp(26px, 4vw, 42px);
}

.admin-dashboard-hero h2 {
  max-width: 14ch;
  margin: 8px 0 12px;
  font-size: clamp(42px, 5vw, 74px);
  line-height: 0.94;
  letter-spacing: 0;
}

.admin-dashboard-hero p:not(.eyebrow) {
  max-width: 68ch;
  margin: 0;
  color: #67645d;
  font-size: 16px;
  line-height: 1.55;
}

.admin-hero-card {
  display: grid;
  gap: 8px;
  padding: 20px;
  color: #fffbf1;
  background: #1f4431;
  border-radius: 22px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.admin-hero-card span,
.admin-hero-card small {
  color: rgba(255, 250, 241, 0.68);
  font-size: 12px;
}

.admin-hero-card strong {
  font-size: 22px;
  line-height: 1;
}

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

.admin-metric-grid article {
  display: grid;
  gap: 8px;
  min-height: 132px;
  padding: 20px;
}

.admin-metric-grid span,
.admin-content-grid span {
  color: #536b57;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.admin-metric-grid strong {
  font-size: 42px;
  line-height: 1;
}

.admin-metric-grid small {
  color: #716e66;
  font-size: 12px;
}

.admin-dashboard-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
  gap: 14px;
}

.admin-dashboard-panel {
  padding: 22px;
}

.admin-panel-heading h3 {
  margin: 4px 0 0;
  font-size: 24px;
}

.admin-queue-list {
  display: grid;
  gap: 8px;
  margin-top: 16px;
}

.admin-queue-list button {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
  min-height: 56px;
  padding: 12px 14px;
  text-align: left;
  background: rgba(239, 244, 235, 0.72);
  border: 1px solid rgba(83, 107, 87, 0.16);
  border-radius: 15px;
  cursor: pointer;
}

.admin-queue-list button strong {
  font-size: 14px;
}

.admin-queue-list button span {
  color: #67645d;
  font-size: 12px;
}

.admin-health-list {
  display: grid;
  gap: 0;
  margin: 16px 0 0;
}

.admin-health-list div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 0;
  border-top: 1px solid rgba(36, 35, 31, 0.1);
}

.admin-health-list dt {
  color: #67645d;
  font-size: 13px;
  font-weight: 700;
}

.admin-health-list dd {
  margin: 0;
  color: #183526;
  font-size: 14px;
  font-weight: 850;
}

.admin-shell-page .admin-workbench {
  padding: 22px;
}

.admin-section-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: end;
}

.admin-inventory-filter {
  display: grid;
  min-width: 190px;
  gap: 6px;
}

.admin-inventory-filter span {
  color: var(--ink);
  font-size: 12px;
  font-weight: 780;
}

.admin-inventory-filter select {
  min-height: 42px;
  padding: 10px 36px 10px 13px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(36, 35, 31, 0.14);
  border-radius: 12px;
  font: inherit;
}

.admin-collection-layout {
  display: grid;
  grid-template-columns: minmax(250px, 330px) minmax(0, 1fr);
  gap: 16px;
  align-items: start;
}

.admin-record-rail,
.admin-inventory-rail.admin-record-rail {
  display: grid;
  grid-auto-flow: row;
  grid-auto-columns: unset;
  gap: 8px;
  max-height: calc(100dvh - 260px);
  overflow: auto;
  padding: 2px 4px 2px 0;
}

.admin-record-row,
.admin-inventory-row.admin-record-row {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 10px;
  min-height: 96px;
  padding: 12px;
  color: #20241f;
  text-align: left;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(36, 35, 31, 0.12);
  border-radius: 16px;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.admin-record-row:hover,
.admin-record-row:focus-visible,
.admin-record-row[aria-selected="true"] {
  background: rgba(238, 244, 235, 0.86);
  border-color: rgba(83, 107, 87, 0.38);
  outline: none;
  transform: translateY(-1px);
}

.admin-row-index {
  width: 34px;
  height: 34px;
  border-radius: 12px;
}

.admin-row-thumb {
  position: relative;
  display: block;
  width: 52px;
  height: 52px;
  overflow: hidden;
  background: #edf1e9;
  border: 1px solid rgba(36, 35, 31, 0.1);
  border-radius: 14px;
}

.admin-row-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.admin-row-thumb small {
  position: absolute;
  right: 4px;
  bottom: 4px;
  display: grid;
  min-width: 20px;
  height: 20px;
  place-items: center;
  color: #fffaf1;
  background: rgba(25, 53, 38, 0.9);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 850;
}

.admin-row-main strong {
  font-size: 15px;
}

.admin-row-meta {
  grid-column: 2;
}

.admin-shell-page .admin-editor-shell {
  min-height: 420px;
}

.admin-shell-page .admin-card {
  padding: 24px;
}

.admin-shell-page .admin-card-header {
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(36, 35, 31, 0.1);
}

.admin-shell-page .admin-form-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.admin-shell-page .admin-form-grid input,
.admin-shell-page .admin-form-grid select,
.admin-shell-page .admin-form-grid textarea {
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(36, 35, 31, 0.14);
  border-radius: 12px;
}

.admin-shell-page .admin-image-field {
  grid-template-columns: minmax(0, 1fr) minmax(220px, 0.55fr) minmax(220px, 0.55fr);
}

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

.admin-content-grid article {
  display: grid;
  gap: 10px;
  padding: 20px;
}

.admin-content-grid strong {
  font-size: 18px;
  line-height: 1.15;
}

.admin-content-grid p {
  margin: 0;
  color: #67645d;
  font-size: 13px;
  line-height: 1.45;
}

.admin-content-grid a {
  justify-self: start;
  color: #214532;
  border-bottom: 1px solid rgba(83, 107, 87, 0.36);
  font-size: 13px;
  font-weight: 850;
}

.admin-empty-copy {
  margin: 0;
  color: #67645d;
  font-size: 13px;
}

@media (max-width: 1180px) {
  .admin-app-shell {
    grid-template-columns: 1fr;
  }

  .admin-sidebar {
    position: relative;
    height: auto;
    padding: 18px;
  }

  .admin-sidebar-heading h1 {
    max-width: none;
  }

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

  .admin-dashboard-hero,
  .admin-dashboard-grid,
  .admin-collection-layout {
    grid-template-columns: 1fr;
  }

  .admin-record-rail,
  .admin-inventory-rail.admin-record-rail {
    grid-auto-flow: column;
    grid-auto-columns: minmax(220px, 1fr);
    max-height: none;
    overflow-x: auto;
  }

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

@media (max-width: 760px) {
  .admin-shell-page .admin-header,
  .admin-command-bar,
  .admin-dashboard-hero,
  .admin-workbench-header,
  .admin-shell-page .admin-card-header,
  .admin-shell-page .admin-card-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .admin-shell-page .admin-header,
  .admin-command-bar,
  .admin-shell-page .admin-main {
    padding-right: 18px;
    padding-left: 18px;
  }

  .admin-module-nav,
  .admin-metric-grid,
  .admin-content-grid,
  .admin-shell-page .admin-form-grid,
  .admin-shell-page .admin-image-field {
    grid-template-columns: 1fr;
  }

  .admin-dashboard-hero h2 {
    font-size: 42px;
  }

  .admin-record-rail,
  .admin-inventory-rail.admin-record-rail {
    grid-auto-columns: minmax(220px, 82vw);
    margin-right: -18px;
    padding-right: 18px;
  }

  .admin-shell-page .admin-workbench,
  .admin-dashboard-hero,
  .admin-dashboard-panel,
  .admin-metric-grid article,
  .admin-content-grid article,
  .admin-shell-page .admin-card {
    border-radius: 20px;
  }
}

/* Account login */
.merchant-login-page {
  min-height: 100dvh;
  color: #1f241f;
  background:
    radial-gradient(circle at 28% 18%, rgba(198, 214, 197, 0.48), transparent 34%),
    radial-gradient(circle at 78% 12%, rgba(238, 226, 205, 0.68), transparent 34%),
    linear-gradient(115deg, rgba(232, 238, 232, 0.88) 0%, rgba(250, 246, 238, 0.94) 46%, rgba(238, 229, 213, 0.92) 100%),
    #f5f0e7;
}

.merchant-login-shell {
  display: grid;
  align-items: center;
  justify-items: center;
  width: 100%;
  max-width: none;
  min-height: 100dvh;
  margin: 0 auto;
  padding: clamp(18px, 4vw, 42px);
  overflow: visible;
  background: transparent;
}

.merchant-login-shell::before {
  display: none;
}

.merchant-login-panel {
  display: grid;
  align-content: start;
  gap: 16px;
  width: min(100%, 440px);
  padding: clamp(22px, 3vw, 32px);
  background:
    linear-gradient(180deg, rgba(255, 250, 241, 0.92), rgba(248, 244, 235, 0.82)),
    radial-gradient(circle at 14% 10%, rgba(210, 224, 207, 0.62), transparent 40%);
  border: 1px solid rgba(36, 35, 31, 0.12);
  border-radius: 30px;
  box-shadow:
    0 34px 90px rgba(34, 49, 37, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.merchant-login-topbar {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
  min-width: 0;
}

.merchant-login-brand {
  display: inline-flex;
  flex: 1 1 auto;
  width: min(100%, 236px);
  min-width: 0;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.merchant-login-brand img {
  width: 100%;
  height: auto;
}

.merchant-login-home-link {
  display: inline-flex;
  flex: 0 0 auto;
  gap: 6px;
  align-items: center;
  min-height: 34px;
  padding: 8px 12px;
  color: #2f4738;
  background: rgba(255, 250, 241, 0.74);
  border: 1px solid rgba(36, 35, 31, 0.12);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 850;
  line-height: 1;
  white-space: nowrap;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.merchant-login-home-link svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.merchant-login-home-link:hover,
.merchant-login-home-link:focus-visible {
  color: #123725;
  background: #eef4eb;
  border-color: rgba(83, 107, 87, 0.32);
  outline: none;
  transform: translateY(-1px);
}

.merchant-login-copy h1 {
  max-width: none;
  margin: 6px 0 8px;
  color: #14261c;
  font-size: clamp(36px, 5vw, 48px);
  line-height: 0.98;
  letter-spacing: 0;
}

.merchant-login-copy p:not(.eyebrow) {
  max-width: 38ch;
  margin: 0;
  color: #68635a;
  font-size: 13px;
  line-height: 1.45;
}

.account-benefit-list {
  display: grid;
  gap: 8px;
  max-width: 52ch;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.account-benefit-list li {
  position: relative;
  padding-left: 18px;
  color: #3c4b40;
  font-size: 14px;
  line-height: 1.45;
}

.account-benefit-list li::before {
  position: absolute;
  top: 0.7em;
  left: 0;
  width: 7px;
  height: 7px;
  background: #1f4431;
  border-radius: 999px;
  content: "";
  transform: translateY(-50%);
}

.account-auth-card {
  display: grid;
  gap: 12px;
  max-width: none;
  margin-top: 2px;
  padding: 16px 0 0;
  background: transparent;
  border: 0;
  border-top: 1px solid rgba(36, 35, 31, 0.12);
  border-radius: 0;
  box-shadow: none;
}

.google-auth-button {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 12px;
  width: 100%;
  min-height: 46px;
  padding: 10px 14px;
  color: #1f241f;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(36, 35, 31, 0.16);
  border-radius: 16px;
  font: inherit;
  font-size: 14px;
  font-weight: 850;
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.google-auth-button:hover,
.google-auth-button:focus-visible {
  border-color: rgba(83, 107, 87, 0.5);
  box-shadow: 0 12px 28px rgba(40, 50, 38, 0.1);
  outline: none;
}

.google-auth-button:active {
  transform: scale(0.98);
}

.google-auth-button:disabled {
  cursor: wait;
  opacity: 0.68;
}

.google-auth-mark {
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  color: #1f241f;
  background: #fff;
  border: 1px solid rgba(36, 35, 31, 0.18);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
}

.account-auth-divider {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 10px;
  color: #7a766d;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.account-auth-divider::before,
.account-auth-divider::after {
  height: 1px;
  background: rgba(36, 35, 31, 0.12);
  content: "";
}

.account-auth-switch {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  padding: 4px;
  background: rgba(83, 107, 87, 0.08);
  border: 1px solid rgba(36, 35, 31, 0.1);
  border-radius: 999px;
}

.account-auth-switch button {
  min-height: 38px;
  color: #35483b;
  background: transparent;
  border: 0;
  border-radius: 999px;
  font: inherit;
  font-size: 13px;
  font-weight: 850;
  cursor: pointer;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.account-auth-switch button:hover,
.account-auth-switch button:focus-visible {
  color: #173426;
  outline: none;
}

.account-auth-switch button.is-active {
  color: #fffaf1;
  background: #1f4431;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.account-auth-switch button:active {
  transform: scale(0.98);
}

.merchant-login-form {
  display: grid;
  gap: 11px;
  padding: 0;
}

.merchant-login-form[hidden] {
  display: none;
}

.merchant-login-form label {
  display: grid;
  gap: 8px;
}

.merchant-login-form span {
  color: #1f3328;
  font-size: 12px;
  font-weight: 850;
}

.merchant-login-form input {
  width: 100%;
  min-height: 44px;
  padding: 10px 14px;
  color: #1f241f;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(36, 35, 31, 0.16);
  border-radius: 14px;
  font: inherit;
  outline: none;
}

.merchant-login-form input:focus {
  border-color: rgba(83, 107, 87, 0.62);
  box-shadow: 0 0 0 3px rgba(83, 107, 87, 0.1);
}

.merchant-login-form button {
  margin-top: 4px;
}

.merchant-login-form button:disabled {
  cursor: wait;
  opacity: 0.68;
}

.merchant-login-note {
  min-height: 18px;
  margin: 0;
  color: #68635a;
  font-size: 12px;
  line-height: 1.45;
}

.merchant-login-note.success {
  color: #214532;
}

.merchant-login-note.error {
  color: #9a3412;
}

.merchant-login-visual {
  position: relative;
  display: grid;
  align-items: end;
  min-height: 100dvh;
  overflow: hidden;
  padding: clamp(24px, 4vw, 52px);
  background: #183526;
}

.merchant-login-visual::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(245, 240, 231, 0.82) 0%, rgba(245, 240, 231, 0.24) 22%, rgba(245, 240, 231, 0) 48%),
    linear-gradient(180deg, rgba(17, 38, 28, 0) 34%, rgba(17, 38, 28, 0.62) 100%);
  content: "";
}

.merchant-login-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.merchant-login-status {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 8px;
  width: min(100%, 360px);
  justify-self: end;
  padding: 22px;
  color: #fffaf1;
  background: rgba(26, 58, 41, 0.9);
  border: 1px solid rgba(255, 250, 241, 0.14);
  border-radius: 24px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 24px 80px rgba(14, 30, 22, 0.26);
  backdrop-filter: blur(18px);
}

.merchant-login-status span,
.merchant-login-status small {
  color: rgba(255, 250, 241, 0.72);
  font-size: 12px;
}

.merchant-login-status strong {
  font-size: 26px;
  line-height: 1;
}

@media (max-width: 900px) {
  .merchant-login-shell {
    width: 100%;
    padding: clamp(18px, 5vw, 34px);
  }

  .merchant-login-panel {
    min-height: auto;
    width: min(100%, 420px);
    padding: clamp(22px, 5vw, 30px);
  }

  .merchant-login-copy h1 {
    font-size: clamp(34px, 7vw, 42px);
  }

  .merchant-login-form,
  .account-auth-card,
  .merchant-login-brand {
    max-width: none;
  }
}

@media (max-width: 640px) {
  .merchant-login-shell {
    align-items: start;
    min-height: 100dvh;
    padding: 22px 18px;
  }

  .merchant-login-panel {
    width: 100%;
    max-width: 400px;
    gap: 14px;
    margin: 0 auto;
    padding: 22px;
    border-radius: 24px;
  }

  .merchant-login-brand {
    width: min(100%, 218px);
  }

  .merchant-login-home-link {
    min-height: 32px;
    padding: 7px 10px;
    font-size: 11px;
  }

  .merchant-login-copy h1 {
    margin-top: 4px;
    font-size: 36px;
  }

  .merchant-login-copy p:not(.eyebrow) {
    max-width: 32ch;
    font-size: 12px;
  }

  .account-auth-card {
    gap: 11px;
    padding-top: 14px;
  }

  .google-auth-button {
    min-height: 44px;
    font-size: 13px;
  }

  .account-auth-switch button {
    min-height: 36px;
    font-size: 12px;
  }

  .merchant-login-form {
    gap: 10px;
  }

  .merchant-login-form input {
    min-height: 42px;
    font-size: 14px;
  }
}

@media (max-width: 420px) {
  .merchant-login-shell {
    padding: 14px;
  }

  .merchant-login-panel {
    padding: 20px;
  }

  .merchant-login-brand {
    width: min(100%, 204px);
  }

  .merchant-login-topbar {
    gap: 10px;
  }

  .merchant-login-home-link {
    width: 34px;
    padding: 0;
    justify-content: center;
  }

  .merchant-login-home-link span {
    display: none;
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: #f4efe6;
  font-family: var(--font-sans);
  line-height: 1.5;
  letter-spacing: 0;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.skip-link {
  position: fixed;
  left: 18px;
  top: 12px;
  z-index: 20;
  padding: 10px 14px;
  color: var(--surface);
  background: var(--ink);
  border-radius: 999px;
  transform: translateY(-150%);
  transition: transform 0.2s ease;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 252, 246, 0.92);
  border-bottom: 1px solid rgba(31, 39, 32, 0.12);
  backdrop-filter: blur(18px);
  box-shadow: none;
}

/* Accessories is intentionally reserved for a later launch on main. */
.site-header a[href="accessories.html"],
.site-header a[href^="accessories.html?"],
.site-header a[href="cart.html"],
.site-header a[href="checkout.html"],
.site-header a[href="orders.html"],
.site-footer a[href="accessories.html"],
.site-footer a[href="cart.html"],
.site-footer a[href="checkout.html"],
.site-footer a[href="orders.html"],
.admin-module-nav [data-admin-route="accessories"],
.admin-module-nav [data-admin-route="orders"],
.admin-header a[href="accessories.html"],
.admin-content-grid article:has(a[href="accessories.html"]),
.admin-metric-grid article:has([data-admin-metric="visibleAccessories"]),
.admin-metric-grid article:has([data-admin-metric="orders"]),
.admin-health-list div:has([data-admin-metric="hiddenAccessories"]) {
  display: none !important;
}

.utility-bar {
  display: none;
  justify-content: center;
  gap: 22px;
  align-items: center;
  min-height: 26px;
  padding: 5px 24px;
  color: var(--surface);
  background: linear-gradient(90deg, #25312a 0%, #324437 52%, #27312b 100%);
  font-size: 10px;
  font-weight: 650;
}

.utility-bar p {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  align-items: center;
  margin: 0;
}

.utility-bar strong {
  color: #f6f1e6;
}

.utility-bar span {
  color: rgba(255, 250, 241, 0.82);
}

.utility-bar span::before {
  padding-right: 12px;
  color: rgba(255, 250, 241, 0.42);
  content: "•";
}

.utility-bar a {
  border-bottom: 1px solid rgba(255, 250, 241, 0.7);
}

main {
  position: relative;
  overflow: hidden;
  background: var(--narrative-wash);
}

main::before {
  position: absolute;
  inset: -120px 0 auto;
  height: 1450px;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(180deg, rgba(255, 250, 241, 0.12) 0%, rgba(255, 250, 241, 0.72) 16%, rgba(223, 231, 231, 0.58) 42%, rgba(247, 243, 236, 0.72) 68%, rgba(238, 242, 238, 0.74) 100%),
    linear-gradient(115deg, rgba(83, 107, 87, 0.1) 0%, rgba(83, 107, 87, 0) 42%, rgba(36, 35, 31, 0.06) 100%);
}

main > * {
  position: relative;
  z-index: 1;
}

.navbar {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto auto;
  gap: 24px;
  align-items: center;
  max-width: 1680px;
  min-height: 84px;
  margin: 0 auto;
  padding: 16px clamp(28px, 7.2vw, 128px);
}

.brand {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  min-width: max-content;
}

.brand-lockup {
  display: block;
  width: clamp(210px, 14vw, 250px);
  height: auto;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: var(--surface);
  background: var(--ink);
  border-radius: 50%;
  font-size: 11px;
  font-weight: 800;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 15px;
  line-height: 1;
}

.brand small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 9px;
  letter-spacing: 0;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(12px, 1.3vw, 28px);
  color: #1f241f;
  font-size: clamp(14px, 0.9vw, 16px);
  font-weight: 650;
}

.nav-item {
  display: flex;
  align-items: center;
  margin: -18px 0;
  padding: 18px 0;
}

.nav-trigger,
.nav-link {
  position: relative;
  padding: 4px 0;
  color: inherit;
  font: inherit;
}

.nav-trigger {
  appearance: none;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.nav-trigger::after,
.nav-link::after {
  position: absolute;
  right: 0;
  bottom: -3px;
  left: 0;
  height: 1px;
  content: "";
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.22s ease;
}

.nav-trigger:hover::after,
.nav-trigger:focus-visible::after,
.nav-link:hover::after,
.nav-link:focus-visible::after,
.nav-item.is-hovered > .nav-trigger::after,
.nav-item.is-open > .nav-trigger::after {
  transform: scaleX(1);
}

.mega-panel {
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  max-height: min(420px, 72dvh);
  overflow: auto;
  color: var(--ink);
  background: var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 34px 70px rgba(36, 35, 31, 0.14);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
  visibility: hidden;
}

.nav-item:hover .mega-panel,
.nav-item:focus-within .mega-panel,
.nav-item.is-hovered .mega-panel,
.nav-item.is-open .mega-panel {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  visibility: visible;
}

.mega-panel-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 380px);
  gap: clamp(36px, 5vw, 74px);
  align-items: start;
  max-width: 1440px;
  margin: 0 auto;
  padding: 44px 60px 40px;
}

.mega-columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(28px, 4vw, 58px);
}

.mega-group {
  display: grid;
  gap: 13px;
  align-content: start;
}

.mega-group strong,
.mega-heading {
  color: var(--ink);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: var(--section-title-letter-spacing);
}

.mega-group a:not(.mega-heading) {
  color: #4d4a42;
  line-height: 1.35;
}

.mega-group a:hover,
.mega-group a:focus-visible {
  color: var(--accent-dark);
}

.mega-feature {
  display: grid;
  gap: 16px;
  color: var(--ink);
}

.mega-feature img {
  width: 100%;
  height: clamp(180px, 17vw, 230px);
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 18px 42px rgba(36, 35, 31, 0.14);
}

.mega-feature span {
  max-width: 31ch;
  color: #3e3b34;
  font-size: 18px;
  font-weight: 750;
  line-height: 1.25;
}

.nav-account-link {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: #1f241f;
  background: rgba(255, 250, 241, 0.72);
  border: 1px solid rgba(36, 35, 31, 0.14);
  border-radius: 999px;
  box-shadow:
    0 10px 24px rgba(36, 35, 31, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.nav-account-link svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.nav-account-link:hover,
.nav-account-link:focus-visible {
  color: #123725;
  background: #eef4eb;
  border-color: rgba(83, 107, 87, 0.32);
  outline: none;
  transform: translateY(-1px);
}

.nav-account-link[data-auth-state="account"],
.nav-account-link[data-auth-state="admin"] {
  color: #123725;
  background: #e7efe3;
  border-color: rgba(83, 107, 87, 0.28);
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 40px;
  padding: 10px 16px;
  border: 1px solid transparent;
  border-radius: 999px;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.nav-cta {
  color: var(--surface);
  min-height: 52px;
  padding: 0 26px;
  background: linear-gradient(180deg, #214b38 0%, #123725 100%);
  box-shadow:
    0 14px 30px rgba(18, 55, 37, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
  font-size: 16px;
  font-weight: 780;
}

.button:active,
.nav-cta:active,
.nav-account-link:active,
.filter-chip:active {
  transform: translateY(1px) scale(0.99);
}

.button svg,
.nav-cta svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.menu-toggle {
  display: none;
  position: relative;
  width: 48px;
  height: 48px;
  padding: 0;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-radius: 0;
  cursor: pointer;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

.menu-toggle span:not(.sr-only) {
  position: absolute;
  left: 13px;
  display: block;
  width: 22px;
  height: 1.5px;
  background: currentColor;
  border-radius: 999px;
  transition: transform 0.2s ease, opacity 0.2s ease, top 0.2s ease;
}

.menu-toggle:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 4px;
}

.menu-toggle span:nth-child(1) {
  top: 17px;
}

.menu-toggle span:nth-child(2) {
  top: 23px;
}

.menu-toggle span:nth-child(3) {
  top: 29px;
}

body.menu-open .menu-toggle span:nth-child(1) {
  top: 23px;
  transform: rotate(45deg);
}

body.menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

body.menu-open .menu-toggle span:nth-child(3) {
  top: 23px;
  transform: rotate(-45deg);
}

.hero {
  position: relative;
  min-height: clamp(440px, 58dvh, 590px);
  overflow: hidden;
  isolation: isolate;
  background: var(--paper);
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  inset: 0 0 0 auto;
  width: min(54vw, 780px);
  object-fit: cover;
  object-position: center;
  transform: scale(1.01);
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(247, 243, 236, 0.98) 0%, rgba(247, 243, 236, 0.92) 43%, rgba(247, 243, 236, 0.32) 68%, rgba(247, 243, 236, 0.02) 100%),
    linear-gradient(180deg, rgba(247, 243, 236, 0.04) 0%, rgba(247, 243, 236, 0.35) 58%, rgba(247, 243, 236, 0.92) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: center;
  width: min(720px, calc(100% - 40px));
  min-height: clamp(440px, 58dvh, 590px);
  margin-left: clamp(20px, 6.2vw, 92px);
  padding: 44px 0 70px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 860px;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(42px, 4.7vw, 60px);
  font-weight: var(--display-weight);
  line-height: var(--display-line-height);
  letter-spacing: var(--display-letter-spacing);
}

h1 span {
  display: block;
}

.hero-copy {
  max-width: 590px;
  margin: 22px 0 0;
  color: #4d4942;
  font-size: 16px;
}

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

.button-primary {
  color: var(--surface);
  background: var(--accent-dark);
  box-shadow: 0 14px 32px rgba(50, 68, 55, 0.24);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--ink);
}

.button-secondary {
  color: var(--ink);
  background: rgba(255, 250, 241, 0.68);
  border-color: rgba(36, 35, 31, 0.2);
}

.intro-strip {
  max-width: 1440px;
  margin: -54px auto 0;
  padding: 0 clamp(18px, 3vw, 32px);
  position: relative;
  z-index: 2;
}

.intro-guide-window {
  position: relative;
  display: grid;
  grid-template-columns: minmax(240px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(20px, 3vw, 38px);
  padding: clamp(58px, 5vw, 72px) clamp(20px, 3.8vw, 38px) clamp(20px, 3.4vw, 34px);
  overflow: hidden;
  background-color: rgba(255, 250, 241, 0.86);
  background-image: url("assets/chair-exchange/backgrounds/warm-card-texture.svg");
  background-position: center;
  background-size: cover;
  border: 1px solid rgba(36, 35, 31, 0.14);
  border-radius: calc(var(--radius) + 10px);
  box-shadow: 0 36px 90px rgba(36, 35, 31, 0.14), inset 0 1px 0 rgba(255, 255, 255, 0.62);
  backdrop-filter: blur(22px);
}

.intro-guide-window-fluid {
  grid-template-columns: minmax(260px, 0.74fr) minmax(0, 1.26fr);
  gap: clamp(24px, 3.4vw, 44px);
  background-color: rgba(255, 250, 241, 0.82);
  background-image:
    linear-gradient(132deg, rgba(255, 250, 241, 0.96), rgba(237, 242, 232, 0.66) 54%, rgba(255, 250, 241, 0.9)),
    url("assets/chair-exchange/backgrounds/warm-card-texture.svg");
  border-color: rgba(83, 107, 87, 0.18);
  border-radius: 46px 28px 46px 30px;
  box-shadow:
    0 34px 88px rgba(36, 35, 31, 0.14),
    0 16px 42px rgba(83, 107, 87, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.74),
    inset 0 0 0 1px rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(24px);
}

.intro-guide-window-fluid::before {
  position: absolute;
  inset: 16px;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.44);
  border-radius: 34px 20px 38px 22px;
  background: linear-gradient(118deg, rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0.05) 44%, rgba(83, 107, 87, 0.06));
  pointer-events: none;
}

.intro-guide-window::after {
  position: absolute;
  right: -18%;
  bottom: -34%;
  width: 72%;
  height: 56%;
  content: "";
  background: linear-gradient(128deg, transparent 12%, rgba(83, 107, 87, 0.13) 42%, rgba(255, 250, 241, 0.03) 72%, transparent);
  border-radius: 999px;
  transform: rotate(-8deg);
  pointer-events: none;
}

.intro-flow-rail {
  position: absolute;
  top: 80px;
  right: clamp(28px, 5vw, 74px);
  bottom: 40px;
  width: min(48%, 640px);
  background: linear-gradient(118deg, rgba(83, 107, 87, 0.12), rgba(255, 250, 241, 0.1) 48%, rgba(83, 107, 87, 0.08));
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 44% 56% 48% 52% / 42% 34% 66% 58%;
  opacity: 0.72;
  pointer-events: none;
  transform: skewY(-5deg);
}

.intro-window-bar {
  position: absolute;
  top: 17px;
  left: clamp(18px, 3vw, 28px);
  right: clamp(18px, 3vw, 28px);
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 24px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(36, 35, 31, 0.11);
}

.intro-window-bar span {
  display: inline-block;
  width: 9px;
  height: 9px;
  background: rgba(83, 107, 87, 0.34);
  border: 1px solid rgba(36, 35, 31, 0.13);
  border-radius: 999px;
}

.intro-window-bar small {
  margin-left: 8px;
  color: rgba(36, 35, 31, 0.5);
  font-size: 11px;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.intro-guide-window-fluid .intro-window-bar {
  right: auto;
  width: max-content;
  max-width: calc(100% - 56px);
  min-height: 30px;
  padding: 5px 12px;
  background: rgba(255, 250, 241, 0.52);
  border: 1px solid rgba(83, 107, 87, 0.14);
  border-radius: 999px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.58);
}

.intro-guide-copy {
  position: relative;
  z-index: 1;
  align-self: center;
}

.intro-guide-copy h2 {
  max-width: 9ch;
  margin: 10px 0 0;
  color: var(--ink);
  font-size: clamp(34px, 4vw, 56px);
  font-weight: 820;
  line-height: 0.96;
  letter-spacing: 0;
}

.intro-guide-copy > p:not(.eyebrow) {
  max-width: 34ch;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.intro-guide-status {
  display: flex;
  align-items: center;
  gap: 11px;
  max-width: 35ch;
  margin-top: 22px;
  color: var(--accent-dark);
  font-size: 13px;
  line-height: 1.3;
}

.intro-guide-status span {
  display: inline-block;
  flex: 0 0 auto;
  width: 11px;
  height: 11px;
  background: var(--accent);
  border: 3px solid rgba(83, 107, 87, 0.18);
  border-radius: 999px;
  box-shadow: 0 0 0 8px rgba(83, 107, 87, 0.08);
}

.intro-path-list {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 10px;
}

.intro-guide-window-fluid .intro-path-list {
  gap: 0;
  align-self: center;
  padding: 8px 0 8px 20px;
}

.intro-path-list::before {
  position: absolute;
  top: 24px;
  bottom: 24px;
  left: 29px;
  width: 1px;
  content: "";
  background: linear-gradient(rgba(83, 107, 87, 0.18), rgba(83, 107, 87, 0.05));
}

.intro-guide-window-fluid .intro-path-list::before {
  top: 42px;
  bottom: 42px;
  left: 49px;
  width: 3px;
  background: linear-gradient(rgba(83, 107, 87, 0.34), rgba(83, 107, 87, 0.11));
  border-radius: 999px;
}

.intro-path-item {
  position: relative;
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) max-content;
  gap: 16px;
  align-items: center;
  min-height: 118px;
  padding: 16px 18px;
  color: var(--ink);
  background: rgba(255, 250, 241, 0.68);
  border: 1px solid rgba(36, 35, 31, 0.12);
  border-radius: calc(var(--radius) - 2px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.56);
  transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease, box-shadow 0.22s ease;
}

.intro-guide-window-fluid .intro-path-item {
  min-height: 112px;
  background: rgba(255, 250, 241, 0.62);
  border-color: rgba(83, 107, 87, 0.14);
  border-radius: 36px 24px 34px 22px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.64),
    0 10px 28px rgba(36, 35, 31, 0.04);
  transition:
    transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.3s cubic-bezier(0.16, 1, 0.3, 1),
    background 0.3s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.intro-guide-window-fluid .intro-path-item:nth-child(2) {
  margin-left: clamp(14px, 2.1vw, 32px);
  border-radius: 24px 40px 22px 34px;
}

.intro-guide-window-fluid .intro-path-item:nth-child(3) {
  margin-left: clamp(28px, 4vw, 58px);
  border-radius: 40px 22px 36px 30px;
}

.intro-path-item-featured {
  background: rgba(255, 250, 241, 0.88);
  border-color: rgba(83, 107, 87, 0.28);
}

.intro-guide-window-fluid .intro-path-item-featured {
  background: rgba(255, 250, 241, 0.82);
  border-color: rgba(83, 107, 87, 0.28);
}

.intro-path-item:hover,
.intro-path-item:focus-visible {
  background: rgba(255, 250, 241, 0.96);
  border-color: rgba(83, 107, 87, 0.38);
  box-shadow: 0 20px 44px rgba(36, 35, 31, 0.12);
  transform: translateY(-3px);
}

.intro-guide-window-fluid .intro-path-item:hover,
.intro-guide-window-fluid .intro-path-item:focus-visible {
  background: rgba(255, 250, 241, 0.92);
  border-color: rgba(83, 107, 87, 0.34);
  box-shadow: 0 22px 42px rgba(36, 35, 31, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.7);
  transform: translateX(8px) translateY(-2px);
}

.intro-path-item:active {
  transform: translateY(-1px);
}

.intro-path-icon {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  background: rgba(237, 242, 232, 0.8);
  border: 1px solid rgba(83, 107, 87, 0.18);
  border-radius: 18px;
}

.intro-guide-window-fluid .intro-path-icon {
  background: rgba(226, 238, 232, 0.78);
  border-color: rgba(83, 107, 87, 0.2);
  border-radius: 18px 14px 18px 12px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.52);
}

.process-step-mark span {
  display: inline-grid;
  width: 30px;
  height: 30px;
  margin-bottom: 16px;
  place-items: center;
  color: var(--surface);
  background: var(--accent);
  border-radius: 50%;
  font-size: 12px;
  font-weight: 800;
}

.intro-icon {
  display: block;
  width: 34px;
  height: 34px;
  padding: 0;
  color: var(--accent);
  background: transparent;
  border: 0;
  border-radius: 0;
  object-fit: contain;
}

.intro-icon path,
.intro-icon circle,
.intro-icon rect {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.intro-path-content {
  display: grid;
  gap: 8px;
}

.intro-path-content strong {
  display: block;
  font-size: 20px;
  line-height: 1;
}

.intro-path-content span {
  max-width: 48ch;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.intro-card-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: max-content;
  min-height: 42px;
  padding: 10px 15px;
  color: var(--accent-dark);
  background: rgba(237, 242, 232, 0.68);
  border: 1px solid rgba(83, 107, 87, 0.2);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 760;
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 1440px;
  margin: 16px auto 0;
  padding: 0 32px 30px;
}

.trust-strip span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 12px;
  color: #465248;
  background: rgba(255, 250, 241, 0.64);
  border: 1px solid rgba(36, 35, 31, 0.11);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 680;
}

.section {
  position: relative;
  max-width: 1440px;
  margin: 0 auto;
  padding: clamp(66px, 8vw, 104px) 32px;
  isolation: isolate;
}

.inventory-section::before,
.buyback-section::before {
  position: absolute;
  right: 12px;
  left: 12px;
  z-index: -1;
  pointer-events: none;
  content: "";
  border-radius: 48px;
}

.inventory-section::before {
  top: 38px;
  bottom: -36px;
  background: linear-gradient(180deg, rgba(255, 250, 241, 0.48) 0%, rgba(223, 231, 231, 0.36) 100%);
}

.buyback-section::before {
  top: -72px;
  bottom: -24px;
  background: linear-gradient(180deg, rgba(223, 231, 231, 0.58) 0%, rgba(255, 250, 241, 0.68) 54%, rgba(247, 243, 236, 0.2) 100%);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(220px, 0.68fr) minmax(300px, 0.9fr);
  gap: clamp(28px, 8vw, 128px);
  align-items: end;
  margin-bottom: 34px;
}

.catalog-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.85fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: end;
  margin-bottom: 18px;
}

.inventory-page .inventory-section {
  padding-top: clamp(38px, 5vw, 58px);
}

.buyback-page .buyback-section {
  padding-top: clamp(30px, 4vw, 50px);
}

.contact-page .contact-section {
  padding-top: clamp(44px, 6vw, 70px);
}

.catalog-title {
  max-width: 760px;
}

.catalog-summary {
  display: grid;
  gap: 18px;
  align-content: end;
  justify-self: end;
  max-width: 420px;
}

.section-heading.narrow {
  display: block;
  max-width: 780px;
}

.buyback-section .section-heading.narrow {
  max-width: 980px;
}

.section-heading h2,
.catalog-heading h2,
.brand-band h2,
.space-copy h2,
.contact-copy h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(40px, 4.7vw, 58px);
  font-weight: var(--section-title-weight);
  line-height: var(--section-title-line-height);
  letter-spacing: var(--section-title-letter-spacing);
}

.section-heading p:not(.eyebrow),
.catalog-summary p,
.space-copy p,
.contact-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

.catalog-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.catalog-meta span {
  min-height: 32px;
  padding: 7px 12px;
  color: var(--accent);
  background: rgba(76, 111, 89, 0.09);
  border: 1px solid rgba(76, 111, 89, 0.16);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 780;
}

.buyback-lede {
  max-width: 760px;
  margin: 18px 0 0;
  color: #4d4a42;
  font-size: clamp(16px, 1.35vw, 18px);
  line-height: 1.48;
}

.buyback-hero-highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  max-width: 620px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.buyback-highlight {
  display: grid;
  gap: 4px;
  align-content: center;
  min-height: 76px;
  padding: 12px;
  background: rgba(255, 250, 241, 0.78);
  border: 1px solid rgba(83, 107, 87, 0.2);
  border-radius: 16px;
}

.buyback-highlight strong {
  color: var(--accent-dark);
  font-size: 13px;
  font-weight: 820;
  line-height: 1.12;
}

.buyback-highlight span {
  color: #5d5a52;
  font-size: 11px;
  line-height: 1.3;
}

.buyback-cta {
  margin-top: 22px;
}

.buyback-section {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1fr);
  gap: 22px;
  align-items: center;
}

.buyback-section .section-heading.narrow {
  max-width: 620px;
  margin-bottom: 0;
}

.buyback-section h2 {
  font-size: clamp(40px, 4vw, 54px);
}

.buyback-hero-media {
  height: clamp(260px, 24vw, 310px);
  min-height: 0;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 26px 72px rgba(36, 35, 31, 0.11);
}

.buyback-hero-media img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
}

.nav-trigger.is-current::after,
.nav-link.is-current::after {
  transform: scaleX(1);
}

.buyback-page .buyback-section {
  display: block;
  max-width: 1500px;
  padding-top: 0;
}

.buyback-hero-panel {
  display: grid;
  grid-template-columns: minmax(420px, 0.8fr) minmax(520px, 1.2fr);
  align-items: stretch;
  min-height: clamp(350px, 30vw, 440px);
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(247, 243, 236, 0.98) 0%, rgba(247, 243, 236, 0.94) 32%, rgba(247, 243, 236, 0.36) 55%, rgba(247, 243, 236, 0) 76%),
    var(--surface);
  border-bottom: 1px solid rgba(36, 35, 31, 0.08);
}

.buyback-hero-copy {
  position: relative;
  z-index: 1;
  align-self: center;
  max-width: 640px;
  padding: clamp(34px, 4vw, 52px) 0 clamp(26px, 3vw, 42px);
}

.buyback-page .buyback-hero-copy h2 {
  font-size: clamp(42px, 4vw, 58px);
  line-height: 1.04;
}

.buyback-hero-panel .buyback-hero-media {
  height: clamp(340px, 28vw, 420px);
  min-height: 0;
  margin-right: calc(50% - 50vw);
  border-radius: 0;
  box-shadow: none;
}

.buyback-hero-panel .buyback-hero-media img {
  object-position: 72% 50%;
}

.buyback-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(18px, 4vw, 52px);
  margin: 24px 0 30px;
  padding: 0;
  color: #3f4941;
  font-size: 14px;
  font-weight: 680;
  list-style: none;
}

.buyback-trust-row li {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.buyback-trust-row li::before,
.trade-in-copy li::before {
  display: inline-grid;
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  place-items: center;
  color: var(--accent-dark);
  content: "";
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18 18'%3E%3Cpath d='M5 9.2 7.6 12 13 6' fill='none' stroke='%23536b57' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / 13px 13px no-repeat;
  border: 1px solid rgba(83, 107, 87, 0.55);
  border-radius: 999px;
  font-size: 12px;
  line-height: 1;
}

.buyback-page .buyback-info-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 0;
}

.buyback-page .buyback-info-card {
  min-height: 220px;
  padding: 18px;
  border-radius: 20px;
}

.buyback-info-card .detail-card-header {
  align-items: flex-start;
}

.buyback-info-card .detail-icon {
  width: 52px;
  height: 52px;
}

.buyback-info-card h3 {
  max-width: 13ch;
  margin: 3px 0 0;
  font-size: 20px;
  line-height: 1.12;
}

.buyback-info-card p {
  font-size: 13px;
  line-height: 1.45;
}

.buyback-info-card .check-list {
  grid-template-columns: 1fr;
  margin-top: 16px;
}

.brand-buy-list,
.decline-list {
  display: grid;
  gap: 7px;
  margin: 12px 0 0;
  padding-left: 18px;
  color: #4e4a42;
  font-size: 13px;
  line-height: 1.35;
}

.detail-summary {
  display: none;
}

.buyback-process-strip {
  margin-top: clamp(28px, 4vw, 44px);
}

.buyback-process-strip .process-flow-label {
  display: block;
  min-height: 0;
  padding: 0;
  border: 0;
}

.buyback-process-strip .process-flow {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 18px;
  margin-top: 14px;
  overflow: visible;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  backdrop-filter: none;
}

.buyback-process-strip .process-steps {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 34px minmax(0, 1fr) 34px minmax(0, 1fr);
  align-items: stretch;
  overflow: hidden;
  background: rgba(255, 250, 241, 0.76);
  border: 1px solid var(--line);
  border-radius: 24px;
}

.buyback-process-strip .process-step {
  display: grid;
  grid-template-columns: 68px minmax(0, 1fr);
  gap: clamp(16px, 2vw, 22px);
  align-items: center;
  min-height: clamp(154px, 16vw, 188px);
  padding: clamp(24px, 3vw, 34px);
}

.buyback-process-strip .process-step + .process-step {
  border-left: 0;
}

.buyback-process-strip .process-step-mark {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  justify-items: center;
  align-items: center;
  margin-bottom: 0;
}

.buyback-process-strip .process-step-mark span {
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: var(--surface);
  background: var(--accent-dark);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.buyback-process-strip .process-icon {
  width: 58px;
  height: 58px;
}

.buyback-process-strip .process-step-copy h3 {
  max-width: 14ch;
  font-size: clamp(20px, 2.1vw, 25px);
  line-height: 1.05;
}

.buyback-process-strip .process-step-copy p {
  max-width: 24ch;
  margin-top: 10px;
  font-size: clamp(15px, 1.35vw, 17px);
  line-height: 1.45;
}

.process-connector {
  display: grid;
  place-items: center;
  color: var(--ink);
  border-right: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.process-connector svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.buyback-proof-card {
  display: grid;
  grid-column: auto;
  align-content: center;
  min-height: 132px;
  margin-top: 0;
  padding: clamp(22px, 3vw, 30px);
  background: rgba(224, 221, 209, 0.76);
  border: 1px solid rgba(36, 35, 31, 0.12);
  border-radius: 24px;
}

.buyback-proof-card.ops-strip {
  grid-column: auto;
  margin-top: 0;
}

.buyback-proof-card div {
  display: flex;
  align-items: center;
  gap: 22px;
  justify-content: space-between;
}

.buyback-proof-card p {
  max-width: 42ch;
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.45;
}

.buyback-proof-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: clamp(22px, 2.4vw, 28px);
  line-height: 1.05;
}

.buyback-proof-card .ops-icon {
  width: 62px;
  height: 62px;
  opacity: 0.55;
}

.trade-in-panel {
  display: grid;
  grid-template-columns: minmax(360px, 0.5fr) minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(24px, 4vw, 56px);
  margin-top: 24px;
  overflow: hidden;
  color: var(--surface);
  background:
    url("assets/chair-exchange/backgrounds/dark-brand-panel.svg") center / cover no-repeat,
    linear-gradient(125deg, #183a2c 0%, #123626 56%, #0e2d22 100%);
  border: 1px solid rgba(255, 250, 241, 0.12);
  border-radius: 22px;
  box-shadow: 0 26px 80px rgba(24, 51, 38, 0.2);
}

.trade-in-media {
  position: relative;
  min-height: 230px;
  height: 100%;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(18, 54, 38, 0.2), rgba(18, 54, 38, 0.02) 45%, rgba(18, 54, 38, 0.68)),
    url("assets/buyback-trade-in-credit.png") center / cover no-repeat;
  isolation: isolate;
}

.trade-in-media::before {
  position: absolute;
  inset: -28px;
  z-index: 0;
  content: "";
  background: url("assets/buyback-trade-in-credit.png") center / cover no-repeat;
  filter: blur(18px) saturate(0.94);
  opacity: 0.72;
  transform: scale(1.08);
}

.trade-in-media::after {
  position: absolute;
  inset: 0;
  z-index: 2;
  content: "";
  background:
    radial-gradient(ellipse at 50% 50%, rgba(18, 54, 38, 0) 0%, rgba(18, 54, 38, 0) 42%, rgba(18, 54, 38, 0.44) 72%, rgba(18, 54, 38, 0.88) 100%),
    linear-gradient(90deg, rgba(18, 54, 38, 0.78) 0%, rgba(18, 54, 38, 0.08) 22%, rgba(18, 54, 38, 0.08) 62%, rgba(18, 54, 38, 0.9) 100%),
    linear-gradient(180deg, rgba(255, 250, 241, 0.1), rgba(18, 54, 38, 0.14));
  pointer-events: none;
}

.trade-in-media img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% 54%;
  opacity: 0.88;
  transform: scale(1.015);
}

.trade-in-copy {
  padding: 26px 0;
}

.trade-in-copy h3 {
  margin: 0;
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.05;
}

.trade-in-copy p {
  max-width: 52ch;
  margin: 10px 0 0;
  color: rgba(255, 250, 241, 0.78);
}

.trade-in-copy ul {
  display: flex;
  flex-wrap: wrap;
  gap: 14px clamp(22px, 4vw, 48px);
  margin: 24px 0 0;
  padding: 0;
  color: rgba(255, 250, 241, 0.88);
  list-style: none;
}

.trade-in-copy li {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-weight: 680;
}

.trade-in-copy li::before {
  color: rgba(255, 250, 241, 0.92);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18 18'%3E%3Cpath d='M5 9.2 7.6 12 13 6' fill='none' stroke='%23fffbf1' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  border-color: rgba(255, 250, 241, 0.68);
}

.trade-in-cta {
  align-self: center;
  margin-right: clamp(22px, 4vw, 54px);
  color: var(--ink);
  background: var(--surface);
  border-color: transparent;
}

.inventory-brand-nav {
  display: grid;
  grid-template-columns: minmax(150px, 0.34fr) minmax(0, 1fr);
  gap: clamp(10px, 1.4vw, 18px);
  align-items: center;
  margin: 16px 0 22px;
  padding: clamp(9px, 1vw, 12px);
  background:
    linear-gradient(135deg, rgba(255, 250, 241, 0.94), rgba(239, 244, 235, 0.68)),
    url("assets/chair-exchange/backgrounds/warm-card-texture.svg");
  background-size: cover;
  border: 1px solid rgba(83, 107, 87, 0.15);
  border-radius: 22px;
  box-shadow:
    0 18px 54px rgba(36, 35, 31, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.inventory-brand-nav-copy {
  padding: 6px 8px 6px 10px;
}

.inventory-brand-nav-copy span {
  display: block;
  margin-bottom: 4px;
  color: rgba(37, 54, 43, 0.72);
  font-size: 11px;
  font-weight: 820;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.inventory-brand-nav-copy p {
  margin: 0;
  color: var(--accent-dark);
  font-size: clamp(17px, 1.5vw, 22px);
  font-weight: 820;
  letter-spacing: -0.02em;
}

.inventory-brand-tabs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(5px, 0.7vw, 8px);
}

.inventory-brand-tab {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(5px, 0.8vw, 8px);
  min-width: 0;
  min-height: clamp(42px, 4vw, 50px);
  padding: 0 clamp(9px, 1.1vw, 13px);
  color: var(--accent-dark);
  cursor: pointer;
  background: rgba(255, 253, 247, 0.72);
  border: 1px solid rgba(83, 107, 87, 0.17);
  border-radius: 999px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.76);
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.inventory-brand-tab span {
  overflow: hidden;
  min-width: 0;
  font-size: clamp(11px, 1.16vw, 14px);
  font-weight: 820;
  line-height: 1.05;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.inventory-brand-tab small {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  min-width: clamp(22px, 2.2vw, 28px);
  height: clamp(22px, 2.2vw, 28px);
  padding: 0 clamp(6px, 0.7vw, 8px);
  color: inherit;
  background: rgba(83, 107, 87, 0.1);
  border-radius: 999px;
  font-size: clamp(10px, 0.95vw, 12px);
  font-weight: 820;
}

.inventory-brand-tab:hover,
.inventory-brand-tab:focus-visible {
  border-color: rgba(37, 54, 43, 0.32);
  transform: translateY(-1px);
}

.inventory-brand-tab.active {
  color: var(--surface);
  background: linear-gradient(180deg, #214b38 0%, #123725 100%);
  border-color: rgba(255, 250, 241, 0.18);
}

.inventory-brand-tab.active small {
  background: rgba(255, 250, 241, 0.16);
}

.inventory-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.inventory-filter-panel {
  display: grid;
  grid-template-columns: repeat(4, minmax(140px, 1fr)) auto;
  gap: 12px;
  align-items: end;
  margin: 18px 0 18px;
  padding: 14px;
  background: rgba(255, 250, 241, 0.82);
  border: 1px solid rgba(36, 35, 31, 0.13);
  border-radius: 16px;
  box-shadow: 0 18px 52px rgba(36, 35, 31, 0.08);
}

.inventory-filter-panel label {
  display: grid;
  gap: 7px;
}

.inventory-filter-panel span {
  color: #4a463f;
  font-size: 11px;
  font-weight: 760;
}

.inventory-filter-panel select {
  width: 100%;
  min-height: 42px;
  padding: 9px 11px;
  color: var(--ink);
  background: #fffdf8;
  border: 1px solid rgba(36, 35, 31, 0.18);
  border-radius: 13px;
}

.inventory-filter-panel .button {
  min-width: 98px;
  min-height: 42px;
  padding-inline: 20px;
}

.filter-bar {
  display: flex;
  gap: 10px;
  margin-bottom: 28px;
  overflow-x: auto;
  padding-bottom: 4px;
}

.inventory-toolbar .filter-bar {
  margin-bottom: 0;
}

.brand-filter-bar {
  flex: 1 1 360px;
  justify-content: center;
}

.brand-filter-chip {
  color: var(--accent-dark);
  background: rgba(255, 250, 241, 0.62);
  border-color: rgba(83, 107, 87, 0.18);
}

.inventory-note {
  flex: 0 0 auto;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 680;
}

.inventory-brand-index {
  display: grid;
  grid-template-columns: 1.08fr repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 0 0 24px;
}

.inventory-brand-tile {
  position: relative;
  min-height: 118px;
  padding: 18px 18px 16px;
  overflow: hidden;
  color: var(--accent-dark);
  text-align: left;
  cursor: pointer;
  background:
    linear-gradient(145deg, rgba(255, 250, 241, 0.9), rgba(239, 244, 235, 0.68)),
    url("assets/chair-exchange/backgrounds/warm-card-texture.svg");
  background-size: cover;
  border: 1px solid rgba(83, 107, 87, 0.16);
  border-radius: 22px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.58);
  transition: color 0.22s ease, background 0.22s ease, border-color 0.22s ease, transform 0.22s ease;
}

.inventory-brand-tile::after {
  position: absolute;
  right: 16px;
  bottom: 16px;
  width: 34px;
  height: 1px;
  content: "";
  background: currentColor;
  opacity: 0.34;
  transform-origin: right center;
  transition: transform 0.22s ease, opacity 0.22s ease;
}

.inventory-brand-tile span {
  display: block;
  margin-bottom: 14px;
  font-size: 11px;
  font-weight: 820;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.inventory-brand-tile strong {
  display: block;
  margin-bottom: 9px;
  color: inherit;
  font-family: var(--font-display);
  font-size: clamp(21px, 2vw, 28px);
  font-weight: var(--display-weight);
  line-height: 0.96;
  letter-spacing: -0.035em;
}

.inventory-brand-tile small {
  display: block;
  max-width: 24ch;
  color: rgba(36, 35, 31, 0.66);
  font-size: 13px;
  font-weight: 620;
  line-height: 1.35;
}

.inventory-brand-tile:hover,
.inventory-brand-tile:focus-visible {
  border-color: rgba(37, 54, 43, 0.34);
  transform: translateY(-2px);
}

.inventory-brand-tile:hover::after,
.inventory-brand-tile:focus-visible::after {
  opacity: 0.65;
  transform: scaleX(1.35);
}

.inventory-brand-tile.active {
  color: var(--surface);
  background:
    linear-gradient(140deg, rgba(15, 48, 34, 0.98), rgba(37, 78, 57, 0.94)),
    url("assets/chair-exchange/backgrounds/warm-card-texture.svg");
  border-color: rgba(255, 250, 241, 0.18);
}

.inventory-brand-tile.active small {
  color: rgba(255, 250, 241, 0.78);
}

.inventory-empty {
  margin: 18px 0 0;
  padding: 18px 20px;
  color: var(--muted);
  background: rgba(255, 250, 241, 0.8);
  border: 1px solid rgba(36, 35, 31, 0.14);
  border-radius: 18px;
  font-weight: 700;
}

.filter-chip {
  flex: 0 0 auto;
  padding: 10px 15px;
  color: var(--muted);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 999px;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.filter-chip.active,
.filter-chip:hover,
.filter-chip:focus-visible {
  color: var(--surface);
  background: var(--ink);
}

.is-query-match {
  outline: 2px solid rgba(83, 107, 87, 0.34);
  outline-offset: 3px;
}

.condition-grid {
  display: none;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 0 0 22px;
}

.condition-grid article {
  min-height: 126px;
  padding: 20px;
  background: rgba(255, 250, 241, 0.62);
  border: 1px solid rgba(36, 35, 31, 0.1);
  border-radius: 22px;
}

.condition-grid strong {
  display: block;
  margin-bottom: 8px;
}

.condition-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 28px);
}

.product-grid.inventory-brand-groups {
  grid-template-columns: 1fr;
  gap: clamp(22px, 3vw, 36px);
}

.inventory-brand-section {
  padding: clamp(18px, 2vw, 24px);
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 250, 241, 0.94), rgba(241, 246, 238, 0.76)),
    url("assets/chair-exchange/backgrounds/warm-card-texture.svg");
  background-size: cover;
  border: 1px solid rgba(83, 107, 87, 0.14);
  border-radius: 30px;
}

.inventory-brand-section[hidden] {
  display: none;
}

.inventory-brand-section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: end;
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(83, 107, 87, 0.13);
}

.inventory-brand-section-head span {
  display: block;
  margin-bottom: 8px;
  color: rgba(37, 54, 43, 0.72);
  font-size: 11px;
  font-weight: 820;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.inventory-brand-section-head h2 {
  margin: 0;
  color: var(--accent-dark);
  font-family: var(--font-display);
  font-size: clamp(34px, 4vw, 54px);
  font-weight: var(--display-weight);
  line-height: 0.95;
  letter-spacing: -0.04em;
}

.inventory-brand-section-head p {
  max-width: 620px;
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 15px;
  font-weight: 580;
  line-height: 1.55;
}

.inventory-brand-count {
  align-self: center;
  justify-self: end;
  padding: 10px 14px;
  color: var(--accent-dark);
  background: rgba(255, 253, 247, 0.7);
  border: 1px solid rgba(83, 107, 87, 0.16);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 820;
}

.inventory-brand-section-action {
  min-height: 46px;
  padding: 0 18px;
  color: var(--accent-dark);
  cursor: pointer;
  background: rgba(255, 250, 241, 0.74);
  border: 1px solid rgba(83, 107, 87, 0.2);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 820;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.inventory-brand-section-action:hover,
.inventory-brand-section-action:focus-visible {
  color: var(--surface);
  background: var(--accent-dark);
  transform: translateY(-1px);
}

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

.product-card {
  display: grid;
  grid-template-rows: auto 1fr auto;
  min-height: 100%;
  overflow: hidden;
  background: var(--product-surface-bg);
  background-position: center;
  background-size: cover;
  border: 1px solid rgba(36, 35, 31, 0.1);
  border-radius: 28px;
  box-shadow: 0 18px 54px rgba(36, 35, 31, 0.06);
  transition: opacity 0.2s ease, transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.product-card:hover {
  border-color: rgba(36, 35, 31, 0.32);
  box-shadow: 0 18px 40px rgba(37, 54, 43, 0.12);
  transform: translateY(-2px);
}

.product-card:focus-within {
  border-color: rgba(36, 35, 31, 0.32);
  box-shadow: 0 18px 40px rgba(37, 54, 43, 0.12);
  transform: translateY(-2px);
}

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

.product-card.is-query-match,
.process-step.is-query-match,
.detail-card.is-query-match,
.planning-list li.is-query-match,
.planning-deliverables article.is-query-match,
.service-matrix div.is-query-match,
.ops-strip.is-query-match {
  border-color: rgba(83, 107, 87, 0.42);
  box-shadow: 0 18px 44px rgba(37, 54, 43, 0.12);
}

.product-card.is-query-match {
  transform: translateY(-2px);
}

.product-media,
.product-image-stage {
  position: relative;
  height: clamp(310px, 25vw, 380px);
  overflow: hidden;
  background: var(--product-surface-bg);
  background-position: center;
  background-size: cover;
}

.product-media::before {
  position: absolute;
  right: 15%;
  bottom: 22px;
  left: 15%;
  z-index: 1;
  height: 34px;
  content: "";
  background: rgba(25, 36, 30, 0.18);
  border-radius: 999px;
  filter: blur(18px);
  transform: scaleX(1.08);
}

.product-media::after {
  position: absolute;
  inset: 0;
  z-index: 3;
  background: var(--product-surface-edge);
  content: "";
  pointer-events: none;
}

.product-media img {
  position: absolute;
  bottom: 10px;
  left: 50%;
  z-index: 2;
  width: auto;
  max-width: calc(100% - 30px);
  height: calc(100% - 22px);
  object-fit: contain;
  object-position: center bottom;
  background: transparent;
  opacity: 1;
  filter: drop-shadow(0 22px 32px rgba(35, 45, 35, 0.14));
  mix-blend-mode: normal;
  transform: translateX(-50%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-card:hover img {
  transform: translateX(-50%) translateY(-3px) scale(1.035);
}

.product-image-badges {
  position: absolute;
  z-index: 4;
  inset: 18px 18px auto;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  pointer-events: none;
}

.stock-badge,
.condition-badge {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 8px 14px;
  color: var(--accent-dark);
  background: rgba(239, 244, 235, 0.94);
  border: 1px solid rgba(83, 107, 87, 0.16);
  border-radius: 999px;
  box-shadow: 0 8px 18px rgba(37, 54, 43, 0.08);
  font-size: 13px;
  font-weight: 760;
}

.stock-badge {
  background: rgba(239, 244, 235, 0.94);
}

.condition-badge {
  background: rgba(255, 250, 241, 0.94);
}

.product-body {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 24px 28px 20px;
}

.product-brand {
  margin: 0;
  color: var(--accent-dark);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.product-body h3 {
  margin: 0;
  font-size: clamp(24px, 2vw, 28px);
  line-height: 1.04;
}

.product-body p:not(.product-brand) {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
}

.product-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 4px;
}

.product-chip-row > span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 7px 12px;
  color: var(--accent-dark);
  background: rgba(246, 248, 241, 0.72);
  border: 1px solid rgba(83, 107, 87, 0.18);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 760;
}

.grade-chip {
  position: relative;
  cursor: help;
  outline: none;
}

.grade-chip[data-tooltip]::after,
.grade-tooltip {
  position: absolute;
  bottom: calc(100% + 10px);
  left: 0;
  z-index: 8;
  width: min(280px, calc(100vw - 56px));
  padding: 12px 14px;
  color: var(--surface);
  background: #24362a;
  border: 1px solid rgba(255, 250, 241, 0.18);
  border-radius: 14px;
  box-shadow: 0 18px 44px rgba(36, 35, 31, 0.2);
  font-size: 12px;
  font-weight: 680;
  line-height: 1.35;
  opacity: 0;
  pointer-events: none;
  transform: translateY(4px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
  visibility: hidden;
  white-space: normal;
}

.grade-chip[data-tooltip]::after {
  content: attr(data-tooltip);
}

.grade-chip[data-tooltip]::before {
  content: "";
  position: absolute;
  bottom: calc(100% + 3px);
  left: 18px;
  z-index: 9;
  width: 12px;
  height: 12px;
  background: #24362a;
  border-right: 1px solid rgba(255, 250, 241, 0.18);
  border-bottom: 1px solid rgba(255, 250, 241, 0.18);
  opacity: 0;
  pointer-events: none;
  transform: translateY(4px) rotate(45deg);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
  visibility: hidden;
}

.grade-chip[data-tooltip]:hover::before,
.grade-chip[data-tooltip]:focus::before,
.grade-chip[data-tooltip]:focus-visible::before,
.grade-chip[data-tooltip]:hover::after,
.grade-chip[data-tooltip]:focus::after,
.grade-chip[data-tooltip]:focus-visible::after,
.grade-chip:hover .grade-tooltip,
.grade-chip:focus .grade-tooltip,
.grade-chip:focus-visible .grade-tooltip {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  margin: 0 28px;
  padding: 18px 0 24px;
  border-top: 1px solid rgba(36, 35, 31, 0.12);
}

.product-price-block {
  display: grid;
  gap: 4px;
  min-width: 112px;
}

.product-price-block span {
  color: var(--muted);
  font-size: 14px;
}

.product-price-block strong {
  color: var(--ink);
  font-size: 24px;
  line-height: 1;
}

.product-actions {
  display: grid;
  justify-items: center;
  gap: 12px;
  min-width: min(240px, 52%);
}

.product-primary-action {
  display: inline-flex;
  justify-content: center;
  width: 100%;
  min-height: 48px;
  align-items: center;
  padding: 12px 22px;
  color: var(--surface);
  background: var(--accent-dark);
  border: 1px solid rgba(26, 49, 36, 0.84);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 820;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.product-primary-action:hover,
.product-primary-action:focus-visible {
  color: #fff;
  background: #173526;
  transform: translateY(-1px);
}

.product-reserve-action {
  color: var(--accent-dark);
  font-size: 13px;
  font-weight: 820;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.product-reserve-action:hover,
.product-reserve-action:focus-visible {
  color: #173526;
}

.accessories-page .accessories-section {
  max-width: 1500px;
}

.accessories-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.8fr);
  gap: clamp(20px, 4vw, 60px);
  align-items: end;
  margin-bottom: 22px;
}

.accessories-hero h1 {
  max-width: 13ch;
  font-size: clamp(46px, 5vw, 76px);
}

.accessory-service-note {
  display: grid;
  gap: 8px;
  padding: 18px 20px;
  color: #2f3b32;
  background: rgba(235, 228, 216, 0.72);
  border: 1px solid rgba(83, 107, 87, 0.2);
  border-radius: 18px;
}

.accessory-service-note strong {
  font-size: 15px;
}

.accessory-service-note span {
  color: #5b5d58;
  font-size: 13px;
  line-height: 1.45;
}

.accessory-category-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.accessory-chip {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 8px 14px;
  color: var(--accent-dark);
  background: rgba(255, 250, 241, 0.66);
  border: 1px solid rgba(83, 107, 87, 0.2);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 760;
}

.accessory-chip.is-current,
.accessory-chip:hover,
.accessory-chip:focus-visible {
  color: var(--surface);
  background: var(--accent-dark);
}

.accessory-shop-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.accessory-catalog-column,
.accessory-purchase-column {
  display: grid;
  gap: 16px;
}

.accessory-purchase-column {
  position: sticky;
  top: calc(var(--header-height, 92px) + 16px);
  align-self: start;
}

.accessory-shop-note {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.accessory-empty {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 24px;
  color: var(--muted);
  background: rgba(235, 228, 216, 0.52);
  border: 1px solid rgba(36, 35, 31, 0.1);
  border-radius: 18px;
  font-size: 14px;
  line-height: 1.45;
}

.accessory-empty[hidden] {
  display: none;
}

.accessory-empty strong {
  color: var(--ink);
  font-size: 20px;
  line-height: 1.1;
}

.accessory-empty a {
  justify-self: start;
  color: var(--accent-dark);
  font-weight: 850;
  text-decoration: underline;
  text-underline-offset: 6px;
}

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

.accessory-card {
  display: grid;
  overflow: hidden;
  min-height: 100%;
  background-color: rgba(255, 250, 241, 0.82);
  background-image: url("assets/chair-exchange/backgrounds/warm-card-texture.svg");
  background-size: cover;
  border: 1px solid var(--line);
  border-radius: 20px;
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.accessory-card:hover,
.accessory-card:focus-within {
  border-color: rgba(83, 107, 87, 0.36);
  box-shadow: 0 18px 44px rgba(37, 54, 43, 0.1);
  transform: translateY(-3px);
}

.accessory-card.is-selected {
  border-color: var(--accent-dark);
  box-shadow: 0 22px 54px rgba(37, 54, 43, 0.14);
}

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

.accessory-card-link {
  display: grid;
  min-height: 100%;
  color: inherit;
}

.accessory-media {
  display: grid;
  min-height: 158px;
  place-items: center;
  background:
    radial-gradient(circle at 50% 42%, rgba(83, 107, 87, 0.14), rgba(83, 107, 87, 0) 48%),
    rgba(235, 228, 216, 0.54);
}

.accessory-media img {
  width: 92px;
  height: 92px;
}

.accessory-card-body {
  display: grid;
  gap: 10px;
  padding: 16px;
}

.accessory-type {
  margin: 0;
  color: var(--accent-dark);
  font-size: 11px;
  font-weight: 820;
  text-transform: uppercase;
}

.accessory-card h2 {
  margin: 0;
  font-size: 20px;
  line-height: 1.14;
}

.accessory-card p:not(.accessory-type) {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.accessory-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  padding-top: 10px;
  border-top: 1px solid rgba(36, 35, 31, 0.1);
}

.accessory-meta span {
  color: #5b5d58;
  font-size: 12px;
}

.accessory-meta strong {
  color: var(--ink);
  font-size: 18px;
}

.accessory-view {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 8px 12px;
  color: var(--accent-dark);
  background: rgba(255, 250, 241, 0.78);
  border: 1px solid rgba(50, 68, 55, 0.34);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 780;
}

.accessory-card:hover .accessory-view,
.accessory-card:focus-within .accessory-view {
  color: var(--surface);
  background: var(--accent-dark);
}

.accessory-add,
.cart-qty button,
.cart-remove {
  border: 1px solid rgba(50, 68, 55, 0.34);
  cursor: pointer;
}

.accessory-add {
  min-height: 38px;
  color: var(--accent-dark);
  background: rgba(255, 250, 241, 0.78);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 780;
}

.accessory-add:hover,
.accessory-add:focus-visible {
  color: var(--surface);
  background: var(--accent-dark);
}

.accessory-detail-panel {
  display: grid;
  gap: 14px;
  padding: 20px;
  background: rgba(255, 250, 241, 0.88);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: 0 24px 70px rgba(36, 35, 31, 0.08);
}

.accessory-detail-media {
  display: grid;
  min-height: 146px;
  place-items: center;
  background:
    radial-gradient(circle at 50% 38%, rgba(83, 107, 87, 0.16), rgba(83, 107, 87, 0) 50%),
    rgba(235, 228, 216, 0.48);
  border: 1px solid rgba(36, 35, 31, 0.08);
  border-radius: 18px;
}

.accessory-detail-media img {
  width: 96px;
  height: 96px;
}

.accessory-detail-panel h2,
.accessory-detail-panel h3 {
  margin: 0;
}

.accessory-detail-panel h2 {
  font-size: 28px;
  line-height: 1.05;
}

.accessory-detail-panel h3 {
  font-size: 16px;
}

.accessory-detail-panel p:not(.eyebrow):not(.accessory-type):not(.checkout-note) {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.accessory-detail-price {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  padding: 12px 0;
  border-top: 1px solid rgba(36, 35, 31, 0.1);
  border-bottom: 1px solid rgba(36, 35, 31, 0.1);
}

.accessory-detail-price span {
  color: #5b5d58;
  font-size: 12px;
  line-height: 1.35;
}

.accessory-detail-price strong {
  color: var(--ink);
  font-size: 24px;
}

.accessory-spec-list {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.accessory-spec-list li {
  position: relative;
  padding-left: 22px;
  color: #4f5a51;
  font-size: 13px;
  line-height: 1.35;
}

.accessory-spec-list li::before {
  position: absolute;
  top: 0.42em;
  left: 0;
  width: 8px;
  height: 8px;
  content: "";
  background: rgba(83, 107, 87, 0.82);
  border-radius: 50%;
}

.accessory-fit {
  padding: 12px;
  background: rgba(235, 228, 216, 0.48);
  border-radius: 14px;
}

.accessory-quantity-control {
  display: grid;
  gap: 8px;
  color: #34312d;
  font-size: 12px;
  font-weight: 760;
}

.accessory-quantity-control input {
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  color: var(--ink);
  background: rgba(255, 250, 241, 0.78);
  border: 1px solid rgba(36, 35, 31, 0.18);
  border-radius: 12px;
  font-size: 17px;
  font-weight: 760;
}

.accessory-cart-panel {
  position: static;
  display: grid;
  gap: 16px;
  padding: 20px;
  background: rgba(255, 250, 241, 0.84);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: 0 24px 70px rgba(36, 35, 31, 0.09);
}

.cart-header {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: start;
}

.cart-header h2 {
  margin: 0;
  font-size: 24px;
}

.cart-header h2 span {
  display: inline-grid;
  min-width: 28px;
  height: 28px;
  margin-left: 6px;
  place-items: center;
  color: var(--surface);
  background: var(--accent-dark);
  border-radius: 50%;
  font-size: 12px;
}

.cart-header a {
  color: var(--accent-dark);
  border-bottom: 1px solid rgba(83, 107, 87, 0.38);
  font-size: 12px;
  font-weight: 760;
}

.cart-header-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.cart-items {
  display: grid;
  gap: 10px;
  min-height: 72px;
}

.cart-empty {
  margin: 0;
  padding: 14px;
  color: var(--muted);
  background: rgba(235, 228, 216, 0.42);
  border-radius: 14px;
  font-size: 13px;
}

.cart-item {
  display: grid;
  grid-template-columns: minmax(72px, 96px) minmax(0, 1fr) auto minmax(120px, auto);
  gap: 14px;
  align-items: center;
  padding: 14px;
  background: rgba(247, 243, 236, 0.74);
  border: 1px solid rgba(36, 35, 31, 0.1);
  border-radius: 14px;
}

.cart-item-media {
  display: grid;
  width: 100%;
  aspect-ratio: 1;
  place-items: center;
  background:
    radial-gradient(circle at 50% 42%, rgba(83, 107, 87, 0.14), rgba(83, 107, 87, 0) 52%),
    rgba(235, 228, 216, 0.54);
  border: 1px solid rgba(36, 35, 31, 0.08);
  border-radius: 12px;
}

.cart-item-media img {
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.cart-item-info {
  display: grid;
  gap: 6px;
  min-width: 0;
}

.cart-item-info strong,
.cart-item-info span {
  display: block;
}

.cart-item-info strong {
  color: var(--ink);
  font-size: 17px;
  line-height: 1.15;
}

.cart-item-basic {
  color: #5b5d58;
  font-size: 12px;
  line-height: 1.35;
}

.cart-unit-count {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.cart-qty {
  display: inline-grid;
  grid-template-columns: 28px 28px 28px;
  gap: 4px;
  align-items: center;
  justify-items: center;
}

.cart-qty button,
.cart-remove {
  display: inline-grid;
  width: 28px;
  height: 28px;
  place-items: center;
  color: var(--accent-dark);
  background: rgba(255, 250, 241, 0.76);
  border-radius: 50%;
  font-size: 13px;
  font-weight: 800;
}

.cart-remove {
  width: auto;
  min-width: 70px;
  margin-top: 8px;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 11px;
}

.cart-item-price {
  display: grid;
  gap: 3px;
  justify-items: end;
  min-width: 118px;
  text-align: right;
}

.cart-item-price span {
  color: #5b5d58;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.cart-item-price strong {
  color: var(--ink);
  font-size: 20px;
  line-height: 1;
}

.cart-item-total {
  margin-top: 3px;
  color: var(--accent-dark);
  text-transform: none;
}

.cart-summary {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 14px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.cart-summary div {
  display: flex;
  justify-content: space-between;
  gap: 14px;
}

.cart-summary dt,
.cart-summary dd {
  margin: 0;
}

.cart-summary dt {
  color: var(--muted);
  font-size: 13px;
}

.cart-summary dd {
  font-weight: 820;
}

.checkout-form {
  display: grid;
  gap: 12px;
}

.checkout-form h3 {
  margin: 0;
  font-size: 20px;
}

.checkout-form label {
  display: grid;
  gap: 6px;
  color: #34312d;
  font-size: 12px;
  font-weight: 760;
}

.checkout-form input {
  width: 100%;
  min-height: 42px;
  padding: 10px 12px;
  color: var(--ink);
  background: rgba(255, 250, 241, 0.78);
  border: 1px solid rgba(36, 35, 31, 0.18);
  border-radius: 12px;
}

.checkout-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.payment-disclaimer,
.checkout-note {
  margin: 0;
  color: #5b5d58;
  font-size: 12px;
  line-height: 1.4;
}

.checkout-note.success {
  color: var(--accent-dark);
  font-weight: 760;
}

.checkout-note.error {
  color: #8a3f2d;
  font-weight: 760;
}

.accessory-step-page {
  background:
    radial-gradient(circle at 80% 10%, rgba(83, 107, 87, 0.08), rgba(83, 107, 87, 0) 32%),
    var(--wash);
}

.accessory-product-section {
  max-width: 1320px;
}

.cart-section,
.checkout-section {
  max-width: 1320px;
}

.step-back-link {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 18px;
  color: var(--accent-dark);
  border-bottom: 1px solid rgba(83, 107, 87, 0.35);
  font-size: 13px;
  font-weight: 800;
}

.accessory-product-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.44fr);
  gap: 18px;
  align-items: start;
}

.accessory-product-section .accessory-detail-panel {
  grid-template-columns: minmax(240px, 0.45fr) minmax(0, 1fr);
  gap: 18px 24px;
  padding: clamp(20px, 3vw, 34px);
}

.accessory-product-section .accessory-detail-media {
  grid-row: span 7;
  min-height: 100%;
}

.accessory-product-section .accessory-detail-media img {
  width: min(220px, 70%);
  height: auto;
}

.accessory-product-section .accessory-detail-panel h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(38px, 5vw, 70px);
  font-weight: var(--display-weight);
  letter-spacing: var(--display-letter-spacing);
  line-height: var(--display-line-height);
}

.accessory-product-section .accessory-detail-panel h2 {
  margin: 0;
  font-size: 18px;
}

.accessory-product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.accessory-step-support {
  display: grid;
  gap: 12px;
  padding: 22px;
  background: rgba(235, 228, 216, 0.55);
  border: 1px solid rgba(36, 35, 31, 0.1);
  border-radius: 22px;
}

.accessory-step-support h2,
.accessory-step-support p {
  margin: 0;
}

.accessory-step-support h2 {
  font-size: 28px;
  line-height: 1.04;
}

.accessory-step-support p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.text-link {
  width: fit-content;
  color: var(--accent-dark);
  border-bottom: 1px solid rgba(83, 107, 87, 0.35);
  font-size: 13px;
  font-weight: 800;
}

.inventory-detail-page {
  background:
    radial-gradient(circle at 78% 8%, rgba(83, 107, 87, 0.1), rgba(83, 107, 87, 0) 34%),
    radial-gradient(circle at 8% 70%, rgba(204, 214, 199, 0.24), rgba(204, 214, 199, 0) 34%),
    var(--wash);
}

.inventory-product-section {
  max-width: 1400px;
  padding-top: 54px;
}

.inventory-product-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.34fr);
  gap: 18px;
  align-items: start;
}

.inventory-detail-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(380px, 0.52fr) minmax(0, 1fr);
  gap: clamp(22px, 4vw, 54px);
  align-items: start;
  overflow: hidden;
  padding: clamp(22px, 3vw, 38px);
  background:
    linear-gradient(140deg, rgba(255, 250, 241, 0.98), rgba(244, 241, 232, 0.9)),
    url("assets/chair-exchange/backgrounds/warm-card-texture.svg");
  background-size: cover;
  border: 1px solid rgba(36, 35, 31, 0.12);
  border-radius: 32px;
  box-shadow: 0 26px 76px rgba(36, 35, 31, 0.09);
}

.inventory-detail-panel::before {
  position: absolute;
  inset: -18% auto auto 44%;
  width: 360px;
  height: 360px;
  content: "";
  background: radial-gradient(circle, rgba(83, 107, 87, 0.12), rgba(83, 107, 87, 0));
  pointer-events: none;
}

.inventory-detail-media {
  position: relative;
  align-self: start;
  height: 480px;
  overflow: hidden;
  background: var(--product-surface-bg);
  background-position: center;
  background-size: cover;
  border: 1px solid rgba(36, 35, 31, 0.08);
  border-radius: 26px;
}

.inventory-detail-media::before {
  position: absolute;
  right: 16%;
  bottom: 34px;
  left: 16%;
  z-index: 1;
  height: 38px;
  content: "";
  background: rgba(25, 36, 30, 0.18);
  border-radius: 999px;
  filter: blur(18px);
}

.inventory-detail-media::after {
  position: absolute;
  inset: 0;
  z-index: 3;
  content: "";
  background: var(--product-surface-edge);
  pointer-events: none;
}

.inventory-detail-media img {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  width: auto;
  max-width: none;
  height: calc(100% - 36px);
  object-fit: contain;
  object-position: center;
  background: transparent;
  opacity: 1;
  filter: drop-shadow(0 22px 32px rgba(35, 45, 35, 0.14));
  mix-blend-mode: normal;
  transform: translate(-50%, -50%);
}

.inventory-detail-copy {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: start;
  gap: 18px;
}

.inventory-detail-copy h1 {
  max-width: 10ch;
  margin: 0;
  font-size: 64px;
  line-height: 0.96;
}

.inventory-detail-copy > p:not(.eyebrow) {
  max-width: 58ch;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}

.inventory-detail-badges {
  margin-top: 0;
}

.inventory-detail-price {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  padding: 16px 0;
  border-top: 1px solid rgba(36, 35, 31, 0.12);
  border-bottom: 1px solid rgba(36, 35, 31, 0.12);
}

.inventory-detail-price span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 740;
}

.inventory-detail-price strong {
  color: var(--ink);
  font-size: 34px;
  line-height: 1;
}

.inventory-detail-list-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.inventory-detail-list-grid > div {
  padding: 18px;
  background: rgba(255, 250, 241, 0.68);
  border: 1px solid rgba(36, 35, 31, 0.1);
  border-radius: 20px;
}

.inventory-detail-list-grid h2 {
  margin: 0 0 12px;
  font-size: 18px;
  line-height: 1.1;
}

.inventory-spec-list li {
  font-size: 14px;
}

.inventory-detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.inventory-detail-actions .button {
  min-height: 48px;
  padding-inline: 20px;
  font-size: 14px;
  font-weight: 820;
}

.inventory-detail-support {
  position: sticky;
  top: calc(var(--header-height, 92px) + 18px);
  display: grid;
  gap: 14px;
  padding: 24px;
  color: rgba(255, 250, 241, 0.84);
  background:
    linear-gradient(150deg, #17221b, #243d2e),
    url("assets/chair-exchange/backgrounds/warm-card-texture.svg");
  border: 1px solid rgba(255, 250, 241, 0.12);
  border-radius: 28px;
  box-shadow: 0 24px 64px rgba(36, 35, 31, 0.16);
}

.inventory-detail-support .eyebrow {
  margin: 0;
  color: rgba(255, 250, 241, 0.72);
}

.inventory-detail-support h2,
.inventory-detail-support p {
  margin: 0;
}

.inventory-detail-support h2 {
  color: #fffbf1;
  font-size: 30px;
  line-height: 1.02;
}

.inventory-detail-support p {
  font-size: 14px;
  line-height: 1.55;
}

.inventory-detail-support dl {
  display: grid;
  gap: 0;
  margin: 8px 0 0;
}

.inventory-detail-support dl div {
  display: grid;
  gap: 4px;
  padding: 14px 0;
  border-top: 1px solid rgba(255, 250, 241, 0.14);
}

.inventory-detail-support dt,
.inventory-detail-support dd {
  margin: 0;
}

.inventory-detail-support dt {
  color: #fffbf1;
  font-size: 12px;
  font-weight: 820;
  text-transform: uppercase;
}

.inventory-detail-support dd {
  font-size: 13px;
  line-height: 1.4;
}

.accessory-step-heading {
  max-width: 780px;
  margin-bottom: 24px;
}

.accessory-step-heading h1,
.accessory-step-heading p {
  margin: 0;
}

.accessory-step-heading h1 {
  max-width: 12ch;
  font-family: var(--font-display);
  font-size: clamp(44px, 6vw, 82px);
  font-weight: var(--display-weight);
  letter-spacing: var(--display-letter-spacing);
  line-height: var(--display-line-height);
}

.accessory-step-heading p:not(.eyebrow) {
  margin-top: 14px;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.35;
}

.cart-page-layout,
.checkout-page-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.46fr);
  gap: 18px;
  align-items: start;
}

.checkout-page-layout {
  grid-template-columns: minmax(280px, 0.42fr) minmax(0, 1fr);
}

.checkout-form-panel {
  padding: 22px;
  background: rgba(255, 250, 241, 0.88);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: 0 24px 70px rgba(36, 35, 31, 0.08);
}

.checkout-form-panel h2 {
  margin: 6px 0 0;
  font-size: 24px;
}

.orders-section {
  display: grid;
  gap: 24px;
}

.member-dashboard-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 18px;
  padding: 24px;
  background-color: rgba(255, 250, 241, 0.78);
  background-image: url("assets/chair-exchange/backgrounds/warm-card-texture.svg");
  background-position: center;
  background-size: cover;
  border: 1px solid var(--line);
  border-radius: 22px;
}

.member-dashboard-copy {
  display: grid;
  align-content: start;
  gap: 12px;
}

.member-dashboard-copy h2,
.member-dashboard-copy p {
  margin: 0;
}

.member-dashboard-copy p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.55;
}

.account-feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.account-feature-list span {
  padding: 8px 10px;
  color: #254233;
  background: rgba(213, 226, 204, 0.64);
  border: 1px solid rgba(60, 92, 69, 0.18);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 780;
}

.member-dashboard-activity {
  display: grid;
  gap: 12px;
  min-width: 0;
}

.account-status-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  color: var(--muted);
  background: rgba(235, 228, 216, 0.42);
  border: 1px solid rgba(36, 35, 31, 0.08);
  border-radius: 14px;
  font-size: 13px;
}

.account-status-actions {
  display: inline-flex;
  flex: 0 0 auto;
  gap: 8px;
  align-items: center;
}

.account-status-row a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  min-height: 38px;
  padding: 0 16px;
  color: #fffaf1;
  background: linear-gradient(135deg, #315f4a 0%, #183e2d 100%);
  border: 1px solid rgba(24, 62, 45, 0.26);
  border-radius: 999px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18), 0 10px 24px rgba(24, 62, 45, 0.16);
  font-weight: 820;
  text-decoration: none;
  white-space: nowrap;
}

.account-signout-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 12px;
  color: #516256;
  background: rgba(255, 250, 241, 0.64);
  border: 1px solid rgba(36, 35, 31, 0.12);
  border-radius: 999px;
  cursor: pointer;
  font: inherit;
  font-size: 12px;
  font-weight: 760;
  white-space: nowrap;
}

.account-status-row a:hover,
.account-status-row a:focus-visible,
.account-signout-button:hover,
.account-signout-button:focus-visible {
  transform: translateY(-1px);
}

.account-status-row a:active,
.account-signout-button:active {
  transform: translateY(1px);
}

.account-signout-button:disabled {
  cursor: wait;
  opacity: 0.62;
  transform: none;
}

.account-lead-list {
  display: grid;
  gap: 10px;
}

.account-empty-state {
  display: grid;
  gap: 10px;
}

.account-lead-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  padding: 16px;
  background: rgba(247, 243, 236, 0.78);
  border: 1px solid rgba(36, 35, 31, 0.08);
  border-radius: 16px;
}

.account-lead-card h3,
.account-lead-card p {
  margin: 0;
}

.account-lead-card p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.45;
}

.account-lead-meta {
  display: grid;
  align-content: start;
  justify-items: end;
  gap: 7px;
  text-align: right;
}

.account-lead-meta span {
  padding: 6px 9px;
  color: #254233;
  background: rgba(213, 226, 204, 0.72);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 820;
  text-transform: capitalize;
}

.account-lead-meta small {
  color: var(--muted);
  font-size: 12px;
}

.account-lead-sla {
  display: grid;
  grid-column: 1 / -1;
  gap: 3px;
  padding: 12px 14px;
  color: var(--accent-dark);
  background: rgba(225, 235, 220, 0.7);
  border: 1px solid rgba(83, 107, 87, 0.16);
  border-radius: 14px;
}

.account-lead-sla span {
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.account-lead-sla small {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

.account-lead-sla-late {
  background: rgba(255, 238, 214, 0.74);
  border-color: rgba(159, 102, 42, 0.22);
}

.account-lead-followup {
  display: block;
  grid-column: 1 / -1;
  padding: 12px 14px;
  background: rgba(255, 250, 241, 0.58);
  border: 1px solid rgba(36, 35, 31, 0.1);
  border-radius: 14px;
}

.account-lead-followup summary {
  color: var(--accent-dark);
  cursor: pointer;
  font-size: 13px;
  font-weight: 820;
}

.account-lead-followup form {
  display: grid;
  gap: 10px;
  margin-top: 12px;
}

.account-lead-followup label {
  display: grid;
  gap: 7px;
}

.account-lead-followup label span {
  color: var(--ink);
  font-size: 12px;
  font-weight: 760;
}

.account-lead-followup textarea,
.account-lead-followup input {
  width: 100%;
  padding: 10px 12px;
  color: var(--ink);
  background: #fffdf8;
  border: 1px solid rgba(36, 35, 31, 0.18);
  border-radius: 12px;
}

.account-lead-followup .button {
  justify-self: start;
  min-height: 40px;
  padding: 0 16px;
  font-size: 12px;
}

.account-lead-update-note {
  min-height: 18px;
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.account-lead-update-note.success {
  color: var(--accent-dark);
  font-weight: 760;
}

.account-lead-update-note.error {
  color: #9b3328;
  font-weight: 760;
}

.request-rounds {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.request-round {
  display: grid;
  align-content: start;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 7px 12px;
  min-height: auto;
  padding: 12px 14px;
  background: rgba(255, 250, 241, 0.66);
  border: 1px solid rgba(36, 35, 31, 0.1);
  border-radius: 14px;
}

.request-round-index {
  grid-row: 1 / 3;
  width: fit-content;
  padding: 5px 8px;
  color: #254233;
  background: rgba(213, 226, 204, 0.74);
  border: 1px solid rgba(60, 92, 69, 0.16);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 860;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.request-round strong {
  color: var(--ink);
  font-size: 14px;
  line-height: 1.08;
}

.request-round small {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

.request-feedback-rounds {
  position: relative;
}

.request-round-complete {
  background: rgba(213, 226, 204, 0.54);
  border-color: rgba(60, 92, 69, 0.2);
}

.request-round-current {
  background: rgba(255, 250, 241, 0.92);
  border-color: rgba(49, 95, 74, 0.36);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.42), 0 14px 28px rgba(36, 35, 31, 0.08);
}

.request-round-waiting {
  color: var(--muted);
}

.order-lookup-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.order-lookup-grid[hidden] {
  display: none;
}

.order-entry-card,
.order-results-panel {
  padding: 24px;
  background-color: rgba(255, 250, 241, 0.78);
  background-image: url("assets/chair-exchange/backgrounds/warm-card-texture.svg");
  background-position: center;
  background-size: cover;
  border: 1px solid var(--line);
  border-radius: 22px;
}

.order-entry-card {
  display: grid;
  gap: 14px;
  align-content: start;
}

.order-entry-card h2,
.order-entry-card p {
  margin: 0;
}

.order-entry-card p:not(.eyebrow) {
  color: var(--muted);
}

.order-entry-card label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 760;
}

.order-entry-card input {
  width: 100%;
  padding: 13px 14px;
  color: var(--ink);
  background: rgba(255, 250, 241, 0.72);
  border: 1px solid rgba(36, 35, 31, 0.18);
  border-radius: 12px;
  font: inherit;
}

.order-results-panel {
  display: grid;
  gap: 16px;
}

.order-results-list {
  display: grid;
  gap: 12px;
}

.order-empty {
  margin: 0;
  padding: 16px;
  color: var(--muted);
  background: rgba(235, 228, 216, 0.42);
  border-radius: 14px;
}

.order-result-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(180px, 0.72fr) minmax(160px, 0.58fr);
  gap: 18px;
  padding: 18px;
  background: rgba(247, 243, 236, 0.78);
  border: 1px solid rgba(36, 35, 31, 0.1);
  border-radius: 18px;
}

.order-result-card h3 {
  margin: 2px 0 8px;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 0.98;
}

.order-result-meta,
.order-line-items,
.order-contact-summary {
  margin: 0;
  color: var(--muted);
}

.order-line-items {
  display: grid;
  gap: 6px;
  padding-left: 18px;
}

.order-contact-summary {
  display: grid;
  gap: 8px;
}

.order-contact-summary div {
  display: grid;
  gap: 2px;
}

.order-contact-summary dt {
  color: var(--accent-dark);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.order-contact-summary dd {
  margin: 0;
  overflow-wrap: anywhere;
}

.inventory-quote-strip {
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
  padding: 18px 22px;
  background: rgba(235, 228, 216, 0.72);
  border: 1px solid rgba(36, 35, 31, 0.1);
  border-radius: 16px;
}

.inventory-quote-strip div {
  display: grid;
  gap: 2px;
}

.inventory-quote-strip strong {
  font-size: 15px;
}

.inventory-quote-strip span {
  color: var(--muted);
  font-size: 13px;
}

.inventory-quote-strip a {
  white-space: nowrap;
  color: var(--accent-dark);
  font-weight: 780;
}

.brand-band {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) 1fr;
  gap: clamp(32px, 8vw, 112px);
  align-items: center;
  max-width: 1376px;
  margin: clamp(38px, 6vw, 72px) auto clamp(42px, 6vw, 78px);
  padding: clamp(58px, 8vw, 92px) clamp(24px, 6vw, 80px);
  color: var(--surface);
  background:
    url("assets/chair-exchange/backgrounds/dark-brand-panel.svg") center / cover no-repeat,
    linear-gradient(180deg, rgba(255, 250, 241, 0.06) 0%, rgba(255, 250, 241, 0) 36%),
    linear-gradient(125deg, #29312d 0%, #2f3d34 58%, #202a25 100%);
  border: 1px solid rgba(255, 250, 241, 0.1);
  border-radius: 48px;
  box-shadow: 0 42px 120px rgba(36, 35, 31, 0.16);
}

.brand-band .eyebrow {
  color: #b5c3b3;
}

.brand-band-copy p:not(.eyebrow) {
  max-width: 46ch;
  margin: 24px 0 0;
  color: rgba(255, 250, 241, 0.7);
  font-size: 17px;
}

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

.brand-tiles a {
  display: grid;
  min-height: 116px;
  place-items: center;
  padding: 18px;
  background: rgba(255, 250, 241, 0.9);
  border: 1px solid rgba(255, 250, 241, 0.22);
  border-radius: var(--radius);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.56);
  transition: transform 0.22s ease, background 0.22s ease;
}

.brand-tiles a:hover,
.brand-tiles a:focus-visible {
  background: var(--surface);
  transform: translateY(-3px);
}

.brand-logo {
  width: min(100%, 260px);
  max-height: 72px;
  height: auto;
  object-fit: contain;
}

.brand-logo-knoll {
  width: min(100%, 200px);
}

.brand-models {
  display: block;
  margin-top: 14px;
  color: rgba(36, 35, 31, 0.68);
  font-size: 13px;
  font-weight: 680;
  line-height: 1.35;
  text-align: center;
}

.brand-legal {
  grid-column: 1 / -1;
  max-width: 760px;
  margin: 8px 0 0;
  color: rgba(255, 250, 241, 0.62);
  font-size: 13px;
}

.process-flow {
  display: none;
  grid-template-columns: minmax(180px, 0.28fr) minmax(0, 1fr);
  margin-top: 34px;
  overflow: hidden;
  background: rgba(255, 250, 241, 0.72);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 24px 80px rgba(36, 35, 31, 0.07);
  backdrop-filter: blur(14px);
}

.process-flow-label {
  display: grid;
  gap: 22px;
  align-content: space-between;
  min-height: 230px;
  padding: clamp(24px, 4vw, 38px);
  border-right: 1px solid var(--line);
}

.process-flow-label strong {
  max-width: 11ch;
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 760;
  line-height: 1;
  letter-spacing: 0;
}

.process-steps {
  display: grid;
  grid-template-columns: 1.05fr 1fr 1.12fr;
}

.process-step {
  min-height: 230px;
  padding: clamp(24px, 3vw, 36px);
}

.process-step + .process-step {
  border-left: 1px solid var(--line);
}

.process-step-mark {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 28px;
}

.process-step-mark span {
  flex: 0 0 auto;
  margin-bottom: 0;
}

.process-icon {
  flex: 0 0 auto;
  width: 52px;
  height: 52px;
  padding: 0;
  color: var(--accent);
  background: transparent;
  border: 0;
  border-radius: 0;
  object-fit: contain;
}

.process-icon path,
.process-icon circle,
.process-icon rect {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.process-step-copy h3 {
  margin: 0;
  font-size: 24px;
}

.process-step-copy p {
  margin: 14px 0 0;
  color: var(--muted);
}

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

.buyback-detail-grid {
  grid-column: 1 / -1;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 0;
}

.detail-card {
  padding: 20px;
  background-color: rgba(255, 250, 241, 0.7);
  background-image: url("assets/chair-exchange/backgrounds/warm-card-texture.svg");
  background-position: center;
  background-size: cover;
  border: 1px solid rgba(36, 35, 31, 0.1);
  border-radius: var(--radius);
}

.detail-card-header {
  display: flex;
  gap: 12px;
  align-items: center;
}

.detail-card-header .eyebrow {
  margin-bottom: 0;
}

.detail-icon {
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.ops-strip {
  grid-column: 1 / -1;
  margin-top: -2px;
  padding: 14px;
  background: rgba(235, 228, 216, 0.68);
  border: 1px solid rgba(36, 35, 31, 0.1);
  border-radius: 16px;
}

.ops-strip div {
  display: flex;
  gap: 14px;
  align-items: center;
}

.ops-strip p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.ops-strip strong {
  color: var(--ink);
}

.ops-icon {
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  padding: 0;
  color: var(--accent);
  background: transparent;
  border: 0;
  border-radius: 0;
  object-fit: contain;
}

.ops-icon path,
.ops-icon circle {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.65;
}

.detail-card p:not(.eyebrow) {
  margin: 12px 0 0;
  color: var(--muted);
}

.check-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 7px 14px;
  margin: 16px 0 0;
  padding: 0;
  color: var(--muted);
  font-size: 13px;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 20px;
}

.check-list li::before {
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 7px;
  height: 7px;
  content: "";
  background: var(--accent);
  border-radius: 50%;
  transform: translateY(-50%);
}

.space-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1.18fr);
  max-width: 1440px;
  min-height: 600px;
  margin: 0 auto;
  overflow: hidden;
  background: rgba(255, 250, 241, 0.64);
  border: 1px solid var(--line);
  border-radius: 48px;
  box-shadow: 0 34px 100px rgba(36, 35, 31, 0.1);
  isolation: isolate;
}

.space-section::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background: linear-gradient(110deg, rgba(255, 250, 241, 0) 0%, rgba(223, 231, 231, 0.56) 58%, rgba(255, 250, 241, 0.32) 100%);
}

.space-media {
  min-height: 500px;
  order: 2;
}

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

.space-copy {
  display: grid;
  align-content: center;
  justify-items: start;
  order: 1;
  padding: clamp(24px, 4vw, 46px);
}

.space-copy h2 {
  font-size: clamp(38px, 4.4vw, 54px);
}

.space-copy p {
  margin-top: 22px;
}

.planning-list {
  display: grid;
  gap: 10px;
  margin: 22px 0 24px;
  padding: 0;
  list-style: none;
}

.planning-list li {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  color: #45413a;
}

.planning-icon {
  width: 34px;
  height: 34px;
  padding: 0;
  color: var(--accent);
  background: transparent;
  border: 0;
  border-radius: 0;
  object-fit: contain;
}

.planning-icon path,
.planning-icon circle,
.planning-icon rect {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.planning-deliverables {
  display: grid;
  gap: 14px;
  width: 100%;
  margin: 0 0 24px;
}

.planning-deliverables > div {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.planning-deliverables article {
  padding: 12px;
  background: rgba(255, 250, 241, 0.48);
  border: 1px solid rgba(36, 35, 31, 0.1);
  border-radius: 20px;
}

.planning-deliverables strong {
  display: block;
  font-size: 14px;
}

.planning-deliverables p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.35;
}

.room-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}

.room-chip-row span {
  padding: 7px 10px;
  color: var(--accent-dark);
  background: rgba(83, 107, 87, 0.08);
  border: 1px solid rgba(83, 107, 87, 0.16);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 720;
}

.room-chip-row span.is-query-match {
  color: var(--surface);
  background: var(--accent-dark);
  border-color: var(--accent-dark);
}

.service-matrix {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  max-width: 1440px;
  margin: 0 auto;
  padding: clamp(34px, 4vw, 54px) 32px clamp(66px, 8vw, 104px);
}

.service-matrix div {
  min-height: 180px;
  padding: 28px;
  background: rgba(235, 228, 216, 0.74);
  border: 1px solid rgba(36, 35, 31, 0.09);
  border-radius: var(--radius);
}

.service-icon {
  width: 42px;
  height: 42px;
  margin-bottom: 22px;
  padding: 0;
  color: var(--accent);
  background: transparent;
  border: 0;
  border-radius: 0;
  object-fit: contain;
}

.service-icon path,
.service-icon circle,
.service-icon rect {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-matrix strong {
  font-size: 20px;
}

.service-matrix p {
  margin: 12px 0 0;
  color: var(--muted);
}

.contact-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 0.62fr) minmax(520px, 1fr);
  gap: clamp(34px, 7vw, 92px);
  max-width: 1440px;
  margin: 0 auto;
  padding: clamp(56px, 8vw, 104px) 32px;
  border-top: 1px solid rgba(36, 35, 31, 0.08);
}

.contact-copy {
  align-self: start;
  position: sticky;
  top: 130px;
}

.contact-copy p:not(.eyebrow) {
  margin-top: 20px;
}

.contact-help-card {
  display: grid;
  gap: 8px;
  max-width: 330px;
  margin-top: clamp(42px, 9vw, 110px);
  padding: 24px;
  background: rgba(235, 228, 216, 0.58);
  border: 1px solid rgba(36, 35, 31, 0.1);
  border-radius: 18px;
}

.contact-help-card strong {
  font-size: 15px;
}

.contact-help-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.member-quote-status {
  display: grid;
  gap: 5px;
  padding: 14px 16px;
  color: var(--ink);
  background: rgba(213, 226, 204, 0.58);
  border: 1px solid rgba(60, 92, 69, 0.18);
  border-radius: 16px;
}

.member-quote-status[hidden] {
  display: none;
}

.member-quote-status span {
  color: var(--accent-dark);
  font-size: 12px;
  font-weight: 820;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.member-quote-status strong {
  font-size: 17px;
}

.member-quote-status small {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

.lead-form {
  display: grid;
  gap: 14px;
  padding: clamp(20px, 3vw, 28px);
  background-color: rgba(255, 250, 241, 0.82);
  background-image: url("assets/chair-exchange/backgrounds/warm-card-texture.svg");
  background-position: center;
  background-size: cover;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.upload-dropzone {
  min-height: 88px;
  align-content: center;
  justify-items: center;
  padding: 18px;
  color: var(--accent-dark);
  background-color: rgba(83, 107, 87, 0.06);
  background-image:
    linear-gradient(rgba(255, 250, 241, 0.985), rgba(255, 250, 241, 0.985)),
    url("assets/chair-exchange/backgrounds/upload-dropzone.svg");
  background-position: center;
  background-size: cover;
  border: 1px dashed rgba(83, 107, 87, 0.44);
  border-radius: 16px;
  text-align: center;
}

.upload-dropzone.is-query-match {
  background-color: rgba(83, 107, 87, 0.1);
  border-color: var(--accent-dark);
  box-shadow: inset 0 0 0 1px rgba(83, 107, 87, 0.16);
}

.upload-dropzone span,
.upload-dropzone small {
  justify-self: start;
}

.upload-dropzone small {
  color: var(--muted);
  font-size: 13px;
}

.upload-dropzone input {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  opacity: 0;
  pointer-events: none;
}

.upload-icon {
  width: 42px;
  height: 42px;
  margin: 6px 0 4px;
  color: var(--ink);
  object-fit: contain;
}

.upload-icon path {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.55;
}

.upload-dropzone strong {
  max-width: 360px;
  color: #403c35;
  font-size: 13px;
}

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

.quote-step-grid {
  display: grid;
  gap: 12px;
}

.quote-step-card {
  display: grid;
  gap: 12px;
  min-width: 0;
  margin: 0;
  padding: 16px;
  background: rgba(255, 253, 248, 0.64);
  border: 1px solid rgba(36, 35, 31, 0.1);
  border-radius: 16px;
}

.quote-step-card legend {
  padding: 0 8px;
  color: var(--accent-dark);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.form-grid-compact {
  align-items: end;
}

.lead-form label {
  display: grid;
  gap: 8px;
  position: relative;
}

.lead-form label span {
  font-size: 12px;
  font-weight: 760;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  min-height: 38px;
  padding: 8px 11px;
  color: var(--ink);
  background: #fffdf8;
  border: 1px solid rgba(36, 35, 31, 0.2);
  border-radius: 12px;
}

.lead-form textarea {
  height: 68px;
  min-height: 68px;
  resize: vertical;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  outline: 2px solid rgba(83, 107, 87, 0.28);
  border-color: var(--accent);
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.form-note.success {
  color: var(--accent-dark);
  font-weight: 700;
}

.form-note.error {
  color: #9b3328;
  font-weight: 760;
}

.lead-success-card {
  display: grid;
  gap: 12px;
  padding: 18px;
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(225, 238, 219, 0.9), rgba(255, 250, 241, 0.9)),
    url("assets/chair-exchange/backgrounds/warm-card-texture.svg");
  border: 1px solid rgba(83, 107, 87, 0.28);
  border-radius: 18px;
  box-shadow: 0 18px 44px rgba(37, 54, 43, 0.12);
}

.lead-success-card[hidden] {
  display: none;
}

.lead-success-card > span {
  color: var(--accent-dark);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lead-success-card h3,
.lead-success-card p {
  margin: 0;
}

.lead-success-card h3 {
  font-size: clamp(22px, 3vw, 30px);
  line-height: 1;
}

.lead-success-card p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.lead-success-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.lead-success-actions .button {
  min-height: 42px;
  padding: 0 16px;
  font-size: 13px;
}

.form-submit {
  justify-self: start;
}

.form-submit:disabled {
  cursor: not-allowed;
  opacity: 0.7;
  transform: none;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  align-items: end;
  padding: 42px 32px;
  color: var(--surface);
  background: linear-gradient(180deg, #2f332f 0%, #24231f 100%);
}

.site-footer > div:first-child {
  max-width: 460px;
}

.footer-brand .brand-mark {
  color: var(--ink);
  background: var(--surface);
}

.footer-brand .brand-lockup {
  filter: invert(1) saturate(0) brightness(1.75);
  opacity: 0.92;
}

.footer-brand small,
.site-footer p {
  color: rgba(255, 250, 241, 0.66);
}

.site-footer p {
  margin: 18px 0 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: rgba(255, 250, 241, 0.76);
}

@media (max-width: 1080px) {
  h1 {
    font-size: 58px;
  }

  .hero-copy {
    font-size: 19px;
  }

  .section-heading h2,
  .catalog-heading h2,
  .brand-band h2,
  .space-copy h2,
  .contact-copy h2 {
    font-size: 44px;
  }

  .brand-tiles a {
    font-size: 28px;
  }

  .navbar {
    grid-template-columns: minmax(0, 1fr) auto auto;
  }

  .nav-account-link {
    grid-row: 1;
    grid-column: 2;
    justify-self: end;
  }

  .menu-toggle {
    display: block;
    justify-self: end;
    grid-row: 1;
    grid-column: 3;
  }

  .nav-cta {
    display: none;
  }

  .nav-links {
    position: fixed;
    top: var(--header-height, 102px);
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    max-height: calc(100dvh - var(--header-height, 102px));
    overflow: auto;
    padding: 18px 32px 28px;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
  }

  body.menu-open .nav-links {
    display: flex;
  }

  .nav-item {
    display: block;
    margin: 0;
    padding: 0;
  }

  .nav-trigger,
  .nav-link {
    display: block;
    box-sizing: border-box;
    width: 100%;
    padding: 16px 0;
    border-bottom: 1px solid var(--line);
    text-align: left;
  }

  .nav-trigger::after,
  .nav-link::after {
    display: none;
  }

  .mega-panel,
  .nav-item:hover .mega-panel,
  .nav-item:focus-within .mega-panel,
  .nav-item.is-hovered .mega-panel {
    position: static;
    display: none;
    max-height: none;
    overflow: visible;
    background: transparent;
    border: 0;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    visibility: visible;
  }

  .nav-item.is-open .mega-panel {
    display: block;
  }

  .mega-panel-inner {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 18px 0 22px;
  }

  .mega-columns {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .mega-group {
    gap: 10px;
  }

  .mega-group strong,
  .mega-heading {
    font-size: 15px;
  }

  .mega-feature {
    display: none;
  }

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

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

  .inventory-brand-nav {
    grid-template-columns: 1fr;
  }

  .accessories-hero,
  .accessory-shop-layout,
  .accessory-product-layout,
  .inventory-product-layout,
  .cart-page-layout,
  .checkout-page-layout,
  .member-dashboard-panel,
  .order-lookup-grid,
  .account-lead-card,
  .order-result-card {
    grid-template-columns: 1fr;
  }

  .account-status-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .account-status-actions {
    width: 100%;
  }

  .account-status-row a {
    flex: 1 1 auto;
    width: auto;
  }

  .account-signout-button {
    flex: 0 0 auto;
  }

  .account-lead-meta {
    justify-items: start;
    text-align: left;
  }

  .request-rounds {
    grid-template-columns: 1fr;
  }

  .order-lookup-page .orders-section {
    gap: 20px;
    padding-top: 34px;
  }

  .order-lookup-page .accessory-step-heading {
    margin-bottom: 0;
  }

  .order-lookup-page .accessory-step-heading h1 {
    max-width: 11ch;
    font-size: clamp(44px, 10vw, 58px);
  }

  .order-lookup-page .accessory-step-heading p:not(.eyebrow) {
    margin-top: 10px;
    font-size: 18px;
  }

  .order-lookup-page .member-dashboard-panel {
    gap: 16px;
    padding: 20px;
  }

  .request-round {
    min-height: auto;
  }

  .inventory-detail-panel {
    grid-template-columns: 1fr;
  }

  .inventory-detail-media {
    height: 420px;
  }

  .inventory-detail-support {
    position: static;
  }

  .accessory-product-section .accessory-detail-panel {
    grid-template-columns: 1fr;
  }

  .accessory-product-section .accessory-detail-media {
    grid-row: auto;
    min-height: 240px;
  }

  .accessory-purchase-column,
  .accessory-cart-panel {
    position: static;
  }

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

  .inventory-filter-panel .button {
    grid-column: 1 / -1;
    justify-self: start;
  }

  .space-section,
  .contact-section,
  .buyback-section {
    grid-template-columns: 1fr;
  }

  .buyback-hero-panel {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .buyback-hero-copy {
    max-width: 760px;
    padding-bottom: 22px;
  }

  .buyback-hero-panel .buyback-hero-media {
    height: clamp(260px, 36vw, 360px);
    margin-right: 0;
    border-radius: 18px;
  }

  .buyback-hero-panel .buyback-hero-media img {
    object-position: 74% 50%;
  }

  .buyback-section .section-heading.narrow {
    max-width: 780px;
  }

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

  .process-flow {
    grid-template-columns: 1fr;
  }

  .process-flow-label {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .process-flow-label strong {
    max-width: none;
  }

  .buyback-process-strip .process-steps {
    grid-template-columns: 1fr;
    overflow: visible;
    background: transparent;
    border: 0;
    border-radius: 0;
    gap: 12px;
  }

  .buyback-process-strip .process-step {
    min-height: 0;
    background: rgba(255, 250, 241, 0.82);
    border: 1px solid var(--line);
    border-radius: 22px;
  }

  .buyback-process-strip .process-step + .process-step {
    border-top: 1px solid var(--line);
  }

  .buyback-process-strip .process-step-copy h3,
  .buyback-process-strip .process-step-copy p {
    max-width: 34ch;
  }

  .process-connector {
    display: none;
  }

  .contact-copy {
    position: static;
  }
}

@media (max-width: 760px) {
  .utility-bar {
    justify-content: flex-start;
    flex-wrap: wrap;
    row-gap: 4px;
    overflow: visible;
    white-space: normal;
    font-size: 12px;
  }

  .utility-bar p {
    display: grid;
    gap: 4px;
  }

  .utility-bar span::before {
    content: "";
    padding-right: 0;
  }

  .navbar {
    padding: 14px 18px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .hero {
    min-height: 640px;
  }

  .hero-image {
    inset: 0;
    width: 100%;
    object-position: 64% center;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(247, 243, 236, 0.95) 0%, rgba(247, 243, 236, 0.72) 58%, rgba(247, 243, 236, 0.18) 100%),
      linear-gradient(0deg, rgba(247, 243, 236, 0.98) 0%, rgba(247, 243, 236, 0) 52%);
  }

  .hero-content {
    width: calc(100% - 36px);
    min-height: 640px;
    margin-left: 18px;
    padding-top: 46px;
  }

  h1 {
    max-width: 354px;
    font-size: 44px;
    line-height: 1.04;
  }

  .hero-copy {
    max-width: 31ch;
    font-size: 17px;
  }

  .section-heading h2,
  .catalog-heading h2,
  .brand-band h2,
  .space-copy h2,
  .contact-copy h2 {
    font-size: 34px;
  }

  .brand-tiles a {
    font-size: 24px;
  }

  .intro-strip,
  .section-heading,
  .catalog-heading,
	  .inventory-filter-panel,
	  .inventory-brand-index,
	  .condition-grid,
	  .brand-band,
  .buyback-section,
  .buyback-detail-grid,
  .process-flow,
  .process-steps,
  .detail-grid,
  .product-grid,
  .accessory-grid,
  .service-matrix,
  .form-grid,
  .checkout-row,
  .accessory-product-layout,
  .cart-page-layout,
  .checkout-page-layout,
	  .site-footer {
	    grid-template-columns: 1fr;
	  }

  .inventory-brand-tile {
    min-height: 104px;
  }

  .inventory-brand-nav {
    margin-top: 12px;
    padding: 10px;
  }

  .inventory-brand-tabs {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 6px;
    overflow: visible;
    padding-bottom: 0;
    scrollbar-width: none;
  }

  .inventory-brand-tabs::-webkit-scrollbar {
    display: none;
  }

  .inventory-brand-tab {
    width: 100%;
    min-width: 0;
    min-height: 44px;
    padding: 0 10px;
  }

  .inventory-brand-tab span {
    font-size: clamp(11px, 1.9vw, 13px);
  }

  .inventory-brand-tab small {
    min-width: 24px;
    height: 24px;
    padding: 0 6px;
    font-size: 11px;
  }

  .inventory-brand-section {
    padding: 16px;
    border-radius: 24px;
  }

  .inventory-brand-section-head {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .inventory-brand-count {
    justify-self: start;
  }

  .inventory-brand-section-action {
    width: 100%;
  }

  .intro-strip {
    margin-top: -28px;
    padding: 0 14px;
  }

  .intro-guide-window {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 50px 14px 14px;
    border-radius: 28px;
  }

  .intro-guide-window-fluid {
    border-radius: 34px 22px 34px 22px;
  }

  .intro-guide-window-fluid::before {
    inset: 8px;
    border-radius: 26px 16px 28px 18px;
  }

  .intro-flow-rail {
    top: auto;
    right: auto;
    bottom: 30px;
    left: 33px;
    width: 4px;
    height: 352px;
    border: 0;
    border-radius: 999px;
    background: linear-gradient(rgba(83, 107, 87, 0.26), rgba(83, 107, 87, 0.08));
    opacity: 0.82;
    transform: none;
  }

  .intro-window-bar {
    right: 16px;
    left: 16px;
  }

  .intro-guide-window-fluid .intro-window-bar {
    right: auto;
    left: 14px;
    max-width: calc(100% - 28px);
  }

  .intro-guide-copy h2 {
    max-width: none;
    font-size: 28px;
    line-height: 1;
  }

  .intro-guide-copy > p:not(.eyebrow) {
    max-width: 31ch;
    margin-top: 12px;
    font-size: 13px;
    line-height: 1.45;
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
  }

  .intro-guide-status {
    margin-top: 12px;
    font-size: 12px;
  }

  .intro-path-list {
    gap: 8px;
  }

  .intro-guide-window-fluid .intro-path-list {
    gap: 8px;
    padding: 0;
  }

  .intro-path-list::before {
    top: 22px;
    bottom: 22px;
    left: 25px;
  }

  .intro-guide-window-fluid .intro-path-list::before {
    top: 24px;
    bottom: 24px;
    left: 31px;
  }

  .intro-path-item {
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 11px;
    min-height: 0;
    padding: 10px;
    border-radius: 18px;
  }

  .intro-guide-window-fluid .intro-path-item,
  .intro-guide-window-fluid .intro-path-item:nth-child(2),
  .intro-guide-window-fluid .intro-path-item:nth-child(3) {
    width: auto;
    min-height: 0;
    margin-left: 0;
    border-radius: 24px 17px 24px 18px;
  }

  .intro-guide-window-fluid .intro-path-item:nth-child(2) {
    border-radius: 18px 26px 17px 24px;
  }

  .intro-guide-window-fluid .intro-path-item:nth-child(3) {
    border-radius: 26px 18px 24px 20px;
  }

  .intro-guide-window-fluid .intro-path-item:hover,
  .intro-guide-window-fluid .intro-path-item:focus-visible {
    transform: translateY(-2px);
  }

  .intro-path-icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
  }

  .intro-icon {
    width: 26px;
    height: 26px;
  }

  .intro-path-content strong {
    font-size: 18px;
  }

  .intro-path-content span {
    display: -webkit-box;
    overflow: hidden;
    font-size: 13px;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
  }

  .intro-card-action {
    grid-column: 2;
    justify-self: start;
    min-height: 32px;
    margin-top: 2px;
    padding: 7px 11px;
    font-size: 12px;
  }

  .catalog-heading {
    gap: 20px;
    margin-bottom: 24px;
  }

  .catalog-summary {
    justify-self: stretch;
    max-width: none;
  }

  .process-step + .process-step {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .inventory-toolbar {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .inventory-filter-panel .button {
    justify-self: stretch;
  }

  .product-media {
    height: clamp(260px, 56vw, 300px);
  }

  .inventory-detail-panel {
    gap: 18px;
    padding: 16px;
    border-radius: 24px;
  }

  .inventory-detail-media {
    height: 300px;
    border-radius: 20px;
  }

  .inventory-detail-copy h1 {
    font-size: 42px;
  }

  .inventory-detail-list-grid {
    grid-template-columns: 1fr;
  }

  .inventory-detail-actions .button {
    width: 100%;
  }

  .inventory-detail-support {
    padding: 20px;
    border-radius: 24px;
  }

  .product-image-badges {
    inset: 14px 14px auto;
  }

  .product-body {
    padding: 22px 22px 18px;
  }

  .product-footer {
    align-items: stretch;
    flex-direction: column;
    gap: 16px;
    margin: 0 22px;
    padding-bottom: 22px;
  }

  .product-actions {
    justify-items: stretch;
    min-width: 100%;
  }

  .product-primary-action {
    width: 100%;
  }

  .inventory-quote-strip,
  .accessories-hero,
  .ops-strip div {
    align-items: flex-start;
    flex-direction: column;
  }

  .accessories-hero h1 {
    max-width: 11ch;
    font-size: 42px;
  }

  .accessory-category-row {
    gap: 8px;
  }

  .accessory-card {
    border-radius: 18px;
  }

  .accessory-media {
    min-height: 132px;
  }

  .accessory-cart-panel {
    padding: 18px;
    border-radius: 18px;
  }

  .cart-item {
    grid-template-columns: 72px minmax(0, 1fr) minmax(104px, auto);
    align-items: start;
  }

  .cart-qty {
    grid-column: 2;
    justify-self: start;
  }

  .cart-item-price {
    grid-column: 3;
    grid-row: 1 / span 2;
    justify-items: end;
    text-align: right;
  }

  .cart-item-price .cart-remove {
    margin-top: 0;
  }

  .inventory-note {
    padding-left: 2px;
  }

  .section,
  .contact-section {
    padding-right: 18px;
    padding-left: 18px;
  }

  .brand-band {
    margin-right: 18px;
    margin-left: 18px;
    padding: 62px 18px;
    border-radius: 38px;
  }

  .brand-tiles {
    grid-template-columns: 1fr;
  }

  .space-media {
    min-height: 360px;
    order: 1;
  }

  .space-section {
    margin-right: 18px;
    margin-left: 18px;
    border-radius: 38px;
  }

  .space-copy {
    order: 2;
    padding: 44px 18px 56px;
  }

  .planning-deliverables > div {
    grid-template-columns: 1fr;
  }

  .service-matrix {
    padding-right: 18px;
    padding-left: 18px;
  }

  .lead-form {
    padding: 18px;
  }

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

@media (max-width: 1180px) {
  .buyback-page .buyback-info-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .buyback-process-strip .process-flow,
  .trade-in-panel {
    grid-template-columns: 1fr;
  }

  .buyback-proof-card.ops-strip {
    min-height: 0;
  }

  .trade-in-panel {
    gap: 0;
  }

  .trade-in-media {
    min-height: 220px;
    border-radius: 20px 20px 0 0;
  }

  .trade-in-copy,
  .trade-in-cta {
    margin: 0 clamp(20px, 4vw, 40px) clamp(22px, 4vw, 36px);
  }
}

@media (max-width: 760px) {
  .buyback-page .buyback-section {
    padding-right: 18px;
    padding-left: 18px;
  }

  .buyback-hero-panel {
    grid-template-columns: 1fr;
    min-height: 0;
    border-radius: 0;
  }

  .buyback-hero-copy {
    max-width: none;
    padding: 42px 0 24px;
  }

  .buyback-page .buyback-hero-copy h2 {
    max-width: 9.5ch;
    font-size: 40px;
    line-height: 1.05;
  }

  .buyback-lede {
    max-width: 32ch;
    font-size: 16px;
  }

  .buyback-hero-highlights {
    grid-template-columns: 1fr;
    max-width: 32ch;
    margin-top: 16px;
  }

  .buyback-highlight {
    min-height: 0;
    padding: 10px 12px;
  }

  .buyback-hero-panel .buyback-hero-media {
    height: 220px;
    margin-right: 0;
    border-radius: 18px;
  }

  .buyback-hero-panel .buyback-hero-media img {
    object-position: 70% 50%;
  }

  .buyback-trust-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin: 18px 0 22px;
  }

  .buyback-page .buyback-info-grid {
    grid-template-columns: 1fr;
  }

  .buyback-page .buyback-info-card {
    min-height: 0;
  }

  .trade-in-media {
    min-height: 190px;
  }

  .trade-in-media img {
    object-position: 64% 54%;
  }

  .buyback-process-strip .process-step {
    grid-template-columns: 62px minmax(0, 1fr);
    gap: 16px;
    min-height: 0;
    padding: 22px;
  }

  .buyback-process-strip .process-step + .process-step {
    border-top: 1px solid var(--line);
  }

  .buyback-proof-card div {
    align-items: flex-start;
    flex-direction: row;
  }

  .trade-in-media {
    height: 180px;
  }

  .trade-in-copy {
    padding: 22px 0 0;
  }

  .trade-in-copy ul {
    display: grid;
    gap: 10px;
  }

  .trade-in-cta {
    justify-self: stretch;
  }
}

/* Workspace planning reference template */
.planning-page {
  padding-bottom: clamp(34px, 5vw, 68px);
}

.planning-page .space-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  max-width: 1500px;
  min-height: 0;
  margin: 0 auto;
  padding: 16px 32px 0;
  overflow: visible;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.planning-page .space-section::before {
  display: none;
}

.planning-hero-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(500px, 0.88fr) minmax(540px, 1.12fr);
  min-height: clamp(380px, 31vw, 480px);
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(247, 243, 236, 0.98) 0%, rgba(247, 243, 236, 0.95) 32%, rgba(247, 243, 236, 0.48) 56%, rgba(247, 243, 236, 0.08) 78%),
    var(--surface);
  border: 1px solid var(--line);
  border-radius: 26px;
  box-shadow: 0 28px 78px rgba(36, 35, 31, 0.1);
  isolation: isolate;
}

.planning-hero-panel::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  height: 30%;
  pointer-events: none;
  content: "";
  background: linear-gradient(0deg, rgba(247, 243, 236, 0.95), rgba(247, 243, 236, 0));
}

.planning-hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  align-content: center;
  justify-items: start;
  max-width: 720px;
  padding: clamp(28px, 3.5vw, 46px);
}

.planning-hero-content h1 {
  max-width: 16ch;
  font-family: var(--font-display);
  font-size: clamp(42px, 3.8vw, 56px);
  font-weight: var(--display-weight);
  letter-spacing: var(--display-letter-spacing);
  line-height: var(--display-line-height);
}

.planning-hero-content p:not(.eyebrow):not(.planning-speed-note) {
  max-width: 42ch;
  margin: 18px 0 0;
  color: #504d46;
  font-size: clamp(15px, 1.2vw, 17px);
}

.planning-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
  align-items: center;
  margin-top: 24px;
}

.planning-speed-note {
  display: inline-grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  margin: 0;
  color: #4b514a;
  font-size: 13px;
  font-weight: 680;
  line-height: 1.25;
}

.planning-speed-note img {
  width: 42px;
  height: 42px;
  padding: 7px;
  background: rgba(235, 228, 216, 0.82);
  border: 1px solid rgba(36, 35, 31, 0.1);
  border-radius: 999px;
}

.planning-hero-image {
  position: relative;
  min-height: 380px;
  overflow: hidden;
}

.planning-hero-image::before {
  position: absolute;
  inset: 0 auto 0 0;
  z-index: 1;
  width: 42%;
  pointer-events: none;
  content: "";
  background: linear-gradient(90deg, rgba(247, 243, 236, 0.92), rgba(247, 243, 236, 0));
}

.planning-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.planning-benefits-panel {
  display: grid;
  grid-template-columns: minmax(240px, 0.5fr) minmax(0, 1.5fr);
  gap: clamp(18px, 3vw, 46px);
  align-items: center;
  padding: clamp(18px, 2vw, 24px);
  background: rgba(255, 250, 241, 0.68);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: 0 18px 58px rgba(36, 35, 31, 0.07);
}

.planning-benefits-intro h2,
.planning-space-panel h2,
.planning-brand-copy h2,
.planning-gallery-heading h2,
.planning-upload-panel h2,
.planning-delivery-card h2 {
  margin: 0;
  font-size: clamp(22px, 2.4vw, 28px);
  line-height: 1.08;
}

.planning-benefits-intro p,
.planning-brand-copy p,
.planning-gallery-heading > p,
.planning-upload-panel p {
  max-width: 34ch;
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.planning-benefits-panel .planning-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  width: 100%;
  margin: 0;
  padding: 0;
}

.planning-benefit-card {
  min-height: 106px;
  padding: 14px;
  background: rgba(255, 250, 241, 0.72);
  border: 1px solid rgba(36, 35, 31, 0.1);
  border-radius: 18px;
}

.planning-list .planning-benefit-card {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  color: var(--ink);
}

.planning-benefit-card .planning-icon {
  width: 42px;
  height: 42px;
  padding: 8px;
  background: rgba(83, 107, 87, 0.08);
  border: 1px solid rgba(83, 107, 87, 0.14);
  border-radius: 12px;
}

.planning-benefit-card h3 {
  margin: 0;
  font-size: 15px;
  line-height: 1.2;
}

.planning-benefit-card p {
  margin: 7px 0 0;
  color: #58544d;
  font-size: 12px;
  line-height: 1.45;
}

.planning-page .planning-benefit-card.is-query-match {
  outline: 0;
  border-color: rgba(83, 107, 87, 0.38);
  box-shadow: inset 0 0 0 1px rgba(83, 107, 87, 0.18), 0 18px 44px rgba(37, 54, 43, 0.08);
}

.planning-space-panel {
  padding: 18px 32px;
  background: rgba(255, 250, 241, 0.58);
  border: 1px solid var(--line);
  border-radius: 22px;
}

.planning-space-panel .room-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 14px 0 0;
}

.planning-space-panel .room-chip-row span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 32px;
  padding: 6px 10px;
  color: var(--ink);
  background: rgba(255, 250, 241, 0.7);
  border: 1px solid rgba(83, 107, 87, 0.22);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 680;
}

.room-chip-icon {
  width: 15px;
  height: 15px;
  opacity: 0.78;
}

.planning-brand-panel {
  display: grid;
  grid-template-columns: minmax(260px, 0.58fr) minmax(0, 1.42fr);
  gap: clamp(18px, 3vw, 34px);
  align-items: stretch;
  overflow: hidden;
  padding: clamp(20px, 3vw, 34px);
  background:
    radial-gradient(circle at 84% 18%, rgba(83, 107, 87, 0.16), transparent 30%),
    linear-gradient(135deg, rgba(255, 250, 241, 0.9), rgba(245, 241, 232, 0.82));
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: 0 18px 58px rgba(36, 35, 31, 0.06);
}

.planning-brand-copy {
  max-width: 420px;
}

.planning-brand-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.planning-brand-meta span {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 6px 10px;
  color: #344a3a;
  background: rgba(83, 107, 87, 0.08);
  border: 1px solid rgba(83, 107, 87, 0.14);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 780;
}

.planning-brand-marquee {
  position: relative;
  display: grid;
  align-content: center;
  gap: 10px;
  width: 100%;
  min-width: 0;
  padding: 18px 20px;
  overflow: hidden;
  background:
    radial-gradient(circle at 16% 0%, rgba(255, 250, 241, 0.07), transparent 31%),
    radial-gradient(circle at 92% 82%, rgba(83, 107, 87, 0.16), transparent 34%),
    linear-gradient(145deg, #141a16 0%, #1b211c 58%, #101511 100%);
  border: 1px solid rgba(255, 250, 241, 0.1);
  border-radius: 24px;
  box-shadow: inset 0 1px 0 rgba(255, 250, 241, 0.06), 0 24px 70px rgba(19, 32, 23, 0.14);
}

.planning-brand-marquee::before,
.planning-brand-marquee::after {
  position: absolute;
  top: 0;
  z-index: 2;
  width: 56px;
  height: 132px;
  content: "";
  pointer-events: none;
}

.planning-brand-marquee::before {
  left: 0;
  background: linear-gradient(90deg, rgba(20, 26, 22, 0.98), rgba(20, 26, 22, 0));
}

.planning-brand-marquee::after {
  right: 0;
  background: linear-gradient(270deg, rgba(16, 21, 17, 0.98), rgba(16, 21, 17, 0));
}

.planning-brand-track {
  display: flex;
  flex-wrap: wrap;
  width: auto;
  gap: 9px;
  animation: none;
}

.planning-brand-track-reverse {
  animation: none;
}

.planning-brand-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: max-content;
  min-height: 46px;
  padding: 0 18px;
  color: rgba(255, 250, 241, 0.84);
  background: rgba(255, 250, 241, 0.035);
  border: 1px solid rgba(255, 250, 241, 0.11);
  border-radius: 14px;
  box-shadow: inset 0 1px 0 rgba(255, 250, 241, 0.055);
  font-size: 16px;
  font-weight: 650;
  line-height: 1;
  letter-spacing: 0;
  white-space: nowrap;
}

.planning-brand-pill-featured {
  color: #141a16;
  background: linear-gradient(180deg, #f8f1e7, #dfe6d8);
  border-color: rgba(255, 250, 241, 0.42);
  font-weight: 720;
}

.planning-brand-pill-discount::after {
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  margin-left: 10px;
  padding: 3px 8px;
  color: rgba(255, 250, 241, 0.76);
  content: "bulk";
  background: rgba(223, 230, 216, 0.12);
  border: 1px solid rgba(255, 250, 241, 0.1);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.planning-brand-deal-card {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  width: 100%;
  min-width: 0;
  margin-top: 4px;
  padding: 16px 18px;
  color: rgba(255, 250, 241, 0.88);
  background: rgba(255, 250, 241, 0.045);
  border: 1px solid rgba(255, 250, 241, 0.1);
  border-radius: 16px;
  box-shadow: inset 0 1px 0 rgba(255, 250, 241, 0.055);
}

.planning-brand-deal-card strong {
  font-size: 14px;
  font-weight: 720;
  line-height: 1.1;
}

.planning-brand-deal-card p {
  margin: 0;
  color: rgba(255, 250, 241, 0.62);
  font-size: 11.5px;
  line-height: 1.45;
}

.planning-brand-deal-card a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 14px;
  color: #18251c;
  background: rgba(248, 241, 231, 0.92);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 740;
  text-decoration: none;
  white-space: nowrap;
}

@keyframes planningBrandMarquee {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-50%, 0, 0);
  }
}

@keyframes planningBrandMarqueeReverse {
  from {
    transform: translate3d(-50%, 0, 0);
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .planning-brand-track {
    animation: none;
  }
}

.planning-gallery-panel {
  position: relative;
  display: grid;
  gap: clamp(16px, 2.4vw, 26px);
  overflow: hidden;
  padding: clamp(20px, 3vw, 32px);
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 250, 241, 0.96), transparent 30%),
    radial-gradient(circle at 86% 20%, rgba(83, 107, 87, 0.16), transparent 32%),
    linear-gradient(135deg, rgba(247, 243, 236, 0.96), rgba(226, 231, 221, 0.72));
  border: 1px solid var(--line);
  border-radius: 26px;
  box-shadow: 0 24px 72px rgba(36, 35, 31, 0.075);
  isolation: isolate;
}

.planning-gallery-panel::after {
  position: absolute;
  right: -12%;
  bottom: -42%;
  z-index: -1;
  width: 58%;
  height: 72%;
  pointer-events: none;
  content: "";
  background: radial-gradient(ellipse, rgba(83, 107, 87, 0.14), rgba(83, 107, 87, 0));
}

.planning-gallery-heading {
  display: grid;
  grid-template-columns: minmax(300px, 0.86fr) minmax(0, 1fr);
  gap: clamp(18px, 5vw, 86px);
  align-items: end;
}

.planning-gallery-heading h2 {
  max-width: 16ch;
  font-family: var(--font-display);
  font-size: clamp(34px, 4.5vw, 64px);
  font-weight: var(--display-weight);
  letter-spacing: var(--display-letter-spacing);
  line-height: 0.94;
}

.planning-gallery-heading > p {
  justify-self: end;
  max-width: 52ch;
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
}

.planning-gallery-filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 100%;
}

.planning-gallery-filter-row button {
  min-height: 38px;
  padding: 0 16px;
  color: #334338;
  font: inherit;
  font-size: 13px;
  font-weight: 780;
  white-space: nowrap;
  background: #fffaf1;
  border: 1px solid rgba(46, 66, 51, 0.16);
  border-radius: 999px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.56);
  cursor: pointer;
  opacity: 1;
  transition: color 0.22s ease, background 0.22s ease, border-color 0.22s ease, transform 0.22s ease;
}

.planning-gallery-filter-row button:hover,
.planning-gallery-filter-row button:focus-visible {
  color: var(--green);
  border-color: rgba(46, 66, 51, 0.28);
  transform: translateY(-1px);
}

.planning-gallery-filter-row button.is-active {
  color: #fffaf1;
  background: var(--green);
  border-color: var(--green);
  box-shadow: 0 10px 24px rgba(25, 57, 38, 0.16);
}

.planning-gallery-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(270px, 0.34fr);
  gap: 14px;
  align-items: stretch;
}

.planning-gallery-stage {
  position: relative;
  min-height: clamp(440px, 47vw, 650px);
  overflow: hidden;
  color: #fffaf1;
  background: #141a16;
  border: 1px solid rgba(255, 250, 241, 0.2);
  border-radius: 24px;
  box-shadow: 0 22px 58px rgba(25, 37, 29, 0.14);
  isolation: isolate;
}

.planning-gallery-stage::before,
.planning-gallery-stage::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  content: "";
}

.planning-gallery-stage::before {
  background:
    linear-gradient(180deg, rgba(17, 26, 19, 0.04) 36%, rgba(17, 26, 19, 0.72) 100%),
    linear-gradient(90deg, rgba(17, 26, 19, 0.48), rgba(17, 26, 19, 0.04) 44%, rgba(17, 26, 19, 0.18));
}

.planning-gallery-stage::after {
  border: 1px solid rgba(255, 250, 241, 0.16);
  border-radius: inherit;
  box-shadow: inset 0 1px 0 rgba(255, 250, 241, 0.12);
}

.planning-gallery-stage img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transform: translateZ(0);
  transition: opacity 0.24s ease, filter 0.42s ease;
}

.planning-gallery-stage.is-switching img {
  opacity: 0.82;
}

.planning-gallery-copy {
  position: absolute;
  right: clamp(14px, 2vw, 24px);
  bottom: clamp(14px, 2vw, 24px);
  left: clamp(14px, 2vw, 24px);
  z-index: 2;
  display: grid;
  max-width: 560px;
  gap: 8px;
  padding: clamp(16px, 2vw, 22px);
  background: rgba(20, 26, 22, 0.66);
  border: 1px solid rgba(255, 250, 241, 0.16);
  border-radius: 20px;
  box-shadow: inset 0 1px 0 rgba(255, 250, 241, 0.1);
  backdrop-filter: blur(18px) saturate(1.04);
}

.planning-gallery-copy span,
.planning-gallery-side-copy span {
  color: rgba(255, 250, 241, 0.68);
  font-size: 10px;
  font-weight: 840;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.planning-gallery-copy h3 {
  max-width: 16ch;
  margin: 0;
  color: #fffaf1;
  font-family: var(--font-display);
  font-size: clamp(24px, 3.2vw, 44px);
  font-weight: var(--display-weight);
  letter-spacing: -0.035em;
  line-height: 0.96;
}

.planning-gallery-copy p {
  max-width: 56ch;
  margin: 0;
  color: rgba(255, 250, 241, 0.82);
  font-size: 14px;
  line-height: 1.48;
}

.planning-gallery-side {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100%;
  padding: clamp(18px, 2vw, 24px);
  background:
    radial-gradient(circle at 18% 12%, rgba(255, 250, 241, 0.86), transparent 38%),
    linear-gradient(145deg, rgba(255, 250, 241, 0.8), rgba(226, 231, 221, 0.72));
  border: 1px solid rgba(46, 66, 51, 0.14);
  border-radius: 24px;
  box-shadow: inset 0 1px 0 rgba(255, 250, 241, 0.46);
}

.planning-gallery-side-copy {
  display: grid;
  gap: 10px;
}

.planning-gallery-side-copy span {
  color: rgba(46, 66, 51, 0.68);
}

.planning-gallery-side-copy strong {
  max-width: 13ch;
  color: var(--green);
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: var(--display-weight);
  letter-spacing: -0.035em;
  line-height: 0.96;
}

.planning-gallery-side-copy p {
  margin: 0;
  color: #575b54;
  font-size: 14px;
  line-height: 1.5;
}

.planning-gallery-controls {
  display: grid;
  grid-template-columns: 44px minmax(72px, 1fr) 44px;
  gap: 8px;
  align-items: center;
  margin-top: 24px;
}

.planning-gallery-controls button {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: var(--green);
  background: rgba(255, 250, 241, 0.72);
  border: 1px solid rgba(46, 66, 51, 0.16);
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.22s ease, border-color 0.22s ease, transform 0.22s ease;
}

.planning-gallery-controls button:hover,
.planning-gallery-controls button:focus-visible {
  background: #fffaf1;
  border-color: rgba(46, 66, 51, 0.32);
  transform: translateY(-1px);
}

.planning-gallery-controls button:active {
  transform: translateY(0) scale(0.98);
}

.planning-gallery-controls svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.planning-gallery-controls span {
  color: var(--green);
  font-size: 12px;
  font-weight: 860;
  letter-spacing: 0.1em;
  text-align: center;
}

.planning-gallery-thumb-rail {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 2px 2px 10px;
  scroll-padding: 2px;
  scrollbar-width: thin;
}

.planning-gallery-thumb {
  position: relative;
  flex: 0 0 clamp(138px, 13vw, 188px);
  height: 118px;
  overflow: hidden;
  color: #fffaf1;
  background: #141a16;
  border: 1px solid rgba(46, 66, 51, 0.16);
  border-radius: 18px;
  cursor: pointer;
  isolation: isolate;
  transition: border-color 0.22s ease, box-shadow 0.22s ease, opacity 0.22s ease, transform 0.22s ease;
}

.planning-gallery-thumb[hidden] {
  display: none;
}

.planning-gallery-thumb::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  content: "";
  background: linear-gradient(180deg, rgba(20, 26, 22, 0.06), rgba(20, 26, 22, 0.72));
}

.planning-gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform 0.42s cubic-bezier(0.16, 1, 0.3, 1), filter 0.3s ease;
}

.planning-gallery-thumb span {
  position: absolute;
  right: 10px;
  bottom: 10px;
  left: 10px;
  z-index: 2;
  font-size: 12px;
  font-weight: 820;
  line-height: 1.1;
  text-align: left;
}

.planning-gallery-thumb:hover,
.planning-gallery-thumb:focus-visible {
  border-color: rgba(46, 66, 51, 0.34);
  transform: translateY(-2px);
}

.planning-gallery-thumb:hover img,
.planning-gallery-thumb:focus-visible img {
  filter: saturate(1.04) contrast(1.02);
  transform: scale(1.05);
}

.planning-gallery-thumb.is-active {
  border-color: rgba(255, 250, 241, 0.74);
  box-shadow:
    0 0 0 2px var(--green),
    0 14px 34px rgba(25, 37, 29, 0.16);
}

@media (prefers-reduced-motion: reduce) {
  .planning-gallery-stage img,
  .planning-gallery-thumb,
  .planning-gallery-thumb img,
  .planning-gallery-controls button,
  .planning-gallery-filter-row button {
    transition: none;
  }
}

.planning-action-grid {
  display: grid;
  grid-template-columns: minmax(420px, 0.92fr) minmax(520px, 1.08fr);
  gap: 14px;
}

.planning-upload-panel {
  display: grid;
  grid-template-columns: minmax(230px, 0.9fr) minmax(240px, 1fr);
  gap: clamp(18px, 3vw, 34px);
  align-items: stretch;
  padding: 24px;
  background: rgba(255, 250, 241, 0.72);
  border: 1px solid var(--line);
  border-radius: 22px;
}

.planning-upload-panel ul {
  display: grid;
  gap: 7px;
  margin: 14px 0 0;
  padding: 0;
  color: #4d504b;
  font-size: 13px;
  list-style: none;
}

.planning-upload-panel li {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 8px;
  align-items: start;
}

.planning-upload-panel li::before {
  display: grid;
  width: 16px;
  height: 16px;
  place-items: center;
  content: "";
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18 18'%3E%3Cpath d='M5 9.2 7.6 12 13 6' fill='none' stroke='%23536b57' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / 14px 14px no-repeat;
  border: 1px solid rgba(83, 107, 87, 0.5);
  border-radius: 999px;
}

.planning-dropzone {
  display: grid;
  align-content: center;
  justify-items: center;
  min-height: 150px;
  padding: 22px;
  text-align: center;
  color: var(--ink);
  background: rgba(255, 250, 241, 0.54);
  border: 1px dashed rgba(36, 35, 31, 0.3);
  border-radius: 18px;
  transition: transform 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

.planning-dropzone:hover,
.planning-dropzone:focus-visible {
  background-color: rgba(255, 250, 241, 0.78);
  border-color: rgba(83, 107, 87, 0.56);
  transform: translateY(-2px);
}

.planning-dropzone input {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.planning-dropzone img {
  width: 44px;
  height: 44px;
  margin-bottom: 10px;
}

.planning-dropzone strong {
  font-size: 14px;
  line-height: 1.35;
}

.planning-dropzone span,
.planning-dropzone small {
  margin-top: 8px;
  color: var(--muted);
  font-size: 12px;
}

.planning-dropzone small {
  font-size: 11px;
}

.planning-intake-form {
  display: grid;
  gap: 12px;
}

.planning-intake-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  align-items: end;
}

.planning-intake-fields label {
  display: grid;
  gap: 6px;
}

.planning-intake-fields label span {
  color: var(--ink);
  font-size: 11px;
  font-weight: 780;
}

.planning-intake-fields input,
.planning-intake-fields select {
  width: 100%;
  min-height: 42px;
  padding: 9px 12px;
  color: var(--ink);
  background: rgba(255, 250, 241, 0.76);
  border: 1px solid rgba(36, 35, 31, 0.18);
  border-radius: 14px;
  outline: none;
}

.planning-intake-fields input:focus,
.planning-intake-fields select:focus {
  border-color: rgba(83, 107, 87, 0.6);
  box-shadow: 0 0 0 3px rgba(83, 107, 87, 0.1);
}

.planning-intake-wide,
.planning-intake-fields .button,
.planning-intake-note,
.planning-intake-link {
  grid-column: 1 / -1;
}

.planning-intake-fields .button {
  justify-self: start;
  margin-top: 2px;
}

.planning-intake-note {
  min-height: 20px;
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

.planning-intake-note.success {
  color: var(--accent-dark);
  font-weight: 720;
}

.planning-intake-link {
  justify-self: start;
  color: var(--accent-dark);
  border-bottom: 1px solid rgba(83, 107, 87, 0.4);
  font-size: 12px;
  font-weight: 760;
}

.admin-page {
  min-height: 100vh;
  background: var(--narrative-wash);
}

.admin-header {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  padding: 18px 32px;
  background: rgba(247, 243, 236, 0.92);
  border-bottom: 1px solid var(--line);
}

.admin-header nav {
  display: flex;
  gap: 18px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.admin-main {
  display: grid;
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 28px 24px 52px;
}

.admin-hero,
.admin-workbench,
.admin-card {
  background: rgba(255, 250, 241, 0.84);
  border: 1px solid rgba(36, 35, 31, 0.16);
  border-radius: var(--radius-lg);
  box-shadow: var(--soft-shadow);
}

.admin-hero {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  align-items: end;
  padding: 28px;
}

.admin-hero h1 {
  margin: 6px 0 8px;
  font-family: var(--font-display);
  font-size: clamp(38px, 6vw, 76px);
  font-weight: var(--display-weight);
  letter-spacing: var(--display-letter-spacing);
  line-height: var(--display-line-height);
}

.admin-hero p:not(.eyebrow) {
  max-width: 52ch;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.5;
}

.admin-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.admin-status {
  margin: 0;
  padding: 12px 16px;
  color: var(--muted);
  background: rgba(255, 250, 241, 0.72);
  border: 1px solid rgba(36, 35, 31, 0.12);
  border-radius: 16px;
  font-size: 13px;
  font-weight: 720;
}

.admin-status[data-status="success"] {
  color: var(--accent-dark);
}

.admin-status[data-status="error"] {
  color: #9a3412;
}

.admin-workbench {
  display: grid;
  gap: 16px;
  padding: 18px;
}

.admin-workbench-header {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: end;
}

.admin-workbench-header h2 {
  margin: 4px 0 0;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1;
}

.admin-workbench-header p:not(.eyebrow) {
  max-width: 34ch;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.admin-inventory-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(220px, 1fr);
  gap: 10px;
  overflow-x: auto;
  padding: 2px 0 8px;
  scrollbar-width: thin;
}

.admin-inventory-row {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 10px;
  min-height: 104px;
  padding: 14px;
  text-align: left;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(36, 35, 31, 0.14);
  border-radius: 18px;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

.admin-inventory-row:hover,
.admin-inventory-row:focus-visible,
.admin-inventory-row[aria-selected="true"] {
  background: rgba(237, 242, 232, 0.8);
  border-color: rgba(83, 107, 87, 0.42);
  outline: none;
  transform: translateY(-2px);
}

.admin-inventory-row[aria-selected="true"] {
  box-shadow: inset 0 0 0 2px rgba(83, 107, 87, 0.18);
}

.admin-row-index {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  color: var(--surface);
  background: var(--accent-dark);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 850;
}

.admin-inventory-row .admin-row-thumb {
  width: 56px;
  height: 56px;
}

.admin-row-main {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.admin-row-main strong {
  overflow: hidden;
  font-size: 16px;
  line-height: 1.15;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.admin-row-main small {
  overflow: hidden;
  color: var(--muted);
  font-size: 12px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.admin-row-meta {
  display: flex;
  grid-column: 2;
  flex-wrap: wrap;
  gap: 6px;
}

.admin-row-meta span {
  padding: 4px 8px;
  color: var(--accent-dark);
  background: rgba(83, 107, 87, 0.08);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 760;
}

.admin-editor-shell {
  display: grid;
  min-height: 260px;
}

.admin-editor-shell .admin-card {
  box-shadow: none;
}

.admin-empty-state {
  display: grid;
  align-content: center;
  min-height: 260px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.5);
  border: 1px dashed rgba(36, 35, 31, 0.2);
  border-radius: 20px;
}

.admin-empty-state h2 {
  margin: 0 0 8px;
  font-size: 28px;
}

.admin-empty-state p {
  margin: 0;
  color: var(--muted);
}

.admin-card {
  padding: 22px;
}

.admin-card-header,
.admin-card-footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
}

.admin-card-header h2 {
  margin: 4px 0 0;
  font-size: 24px;
}

.admin-visible-toggle {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  color: var(--accent-dark);
  font-size: 13px;
  font-weight: 800;
}

.admin-card-form {
  margin-top: 18px;
}

.admin-save-dock {
  position: sticky;
  top: 12px;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  margin-top: 16px;
  padding: 12px;
  background: rgba(255, 250, 241, 0.94);
  border: 1px solid rgba(83, 107, 87, 0.2);
  border-radius: 16px;
  box-shadow: 0 14px 34px rgba(36, 35, 31, 0.08);
  backdrop-filter: blur(10px);
}

.admin-save-dock div {
  display: grid;
  gap: 2px;
}

.admin-save-dock strong {
  color: var(--accent-dark);
  font-size: 13px;
  line-height: 1.1;
}

.admin-save-dock span {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.3;
}

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

.admin-form-grid label {
  display: grid;
  gap: 7px;
}

.admin-field-group {
  display: grid;
  gap: 8px;
  align-content: start;
}

.admin-form-grid span {
  color: var(--ink);
  font-size: 12px;
  font-weight: 780;
}

.admin-form-grid input,
.admin-form-grid select,
.admin-form-grid textarea {
  width: 100%;
  padding: 12px 14px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.66);
  border: 1px solid rgba(36, 35, 31, 0.18);
  border-radius: 14px;
  font: inherit;
  outline: none;
}

.admin-form-grid input:focus,
.admin-form-grid select:focus,
.admin-form-grid textarea:focus {
  border-color: rgba(83, 107, 87, 0.58);
  box-shadow: 0 0 0 3px rgba(83, 107, 87, 0.1);
}

.admin-input-prefix {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  color: var(--accent-dark);
  background: rgba(255, 255, 255, 0.66);
  border: 1px solid rgba(36, 35, 31, 0.18);
  border-radius: 14px;
}

.admin-input-prefix > span {
  padding-left: 14px;
  color: rgba(37, 54, 43, 0.72);
  font-size: 16px;
  font-weight: 880;
}

.admin-form-grid .admin-input-prefix input {
  min-width: 0;
  padding-left: 8px;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.admin-input-prefix:focus-within {
  border-color: rgba(83, 107, 87, 0.58);
  box-shadow: 0 0 0 3px rgba(83, 107, 87, 0.1);
}

.admin-auto-summary {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 14px;
  background: rgba(239, 244, 235, 0.62);
  border: 1px solid rgba(83, 107, 87, 0.16);
  border-radius: 16px;
}

.admin-auto-summary div:first-child {
  display: grid;
  gap: 3px;
}

.admin-auto-summary strong {
  color: var(--accent-dark);
  font-size: 13px;
  line-height: 1.1;
}

.admin-auto-summary div:first-child span {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

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

.admin-auto-chip-row span {
  min-height: 30px;
  padding: 7px 11px;
  color: var(--accent-dark);
  background: rgba(255, 250, 241, 0.82);
  border: 1px solid rgba(83, 107, 87, 0.18);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 820;
}

.admin-advanced-overrides {
  padding: 0;
  background: rgba(255, 250, 241, 0.42);
  border: 1px solid rgba(36, 35, 31, 0.1);
  border-radius: 16px;
}

.admin-advanced-overrides summary {
  cursor: pointer;
  padding: 13px 14px;
  color: var(--accent-dark);
  font-size: 12px;
  font-weight: 860;
  list-style-position: inside;
}

.admin-override-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 0 14px 14px;
}

.admin-preset-row {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.admin-preset-row button {
  min-height: 28px;
  padding: 6px 10px;
  color: var(--accent-dark);
  background: rgba(239, 244, 235, 0.7);
  border: 1px solid rgba(83, 107, 87, 0.18);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 760;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.admin-preset-row button:hover,
.admin-preset-row button:focus-visible,
.admin-preset-row button.is-active {
  color: var(--surface);
  background: var(--accent-dark);
}

.admin-preset-row button:active {
  transform: translateY(1px);
}

.admin-wide {
  grid-column: 1 / -1;
}

.admin-lead-updates {
  display: grid;
  gap: 10px;
  padding: 14px;
  background: rgba(239, 244, 235, 0.74);
  border: 1px solid rgba(83, 107, 87, 0.2);
  border-radius: 16px;
}

.admin-lead-updates[hidden] {
  display: none;
}

.admin-lead-updates-heading {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  color: var(--accent-dark);
  font-size: 12px;
  font-weight: 840;
  text-transform: uppercase;
}

.admin-lead-updates-heading strong {
  color: rgba(37, 54, 43, 0.68);
  text-transform: none;
}

.admin-lead-updates article {
  display: grid;
  gap: 5px;
  padding: 12px;
  background: rgba(255, 250, 241, 0.78);
  border: 1px solid rgba(83, 107, 87, 0.16);
  border-radius: 14px;
}

.admin-lead-updates small {
  color: rgba(37, 54, 43, 0.62);
  font-weight: 760;
}

.admin-lead-updates p {
  margin: 0;
  color: var(--ink);
  line-height: 1.45;
}

.admin-lead-update-files {
  width: fit-content;
  padding: 5px 8px;
  color: var(--accent-dark);
  background: rgba(180, 208, 194, 0.28);
  border: 1px solid rgba(83, 107, 87, 0.16);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 820;
}

.admin-image-field {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(220px, 0.6fr) minmax(260px, 0.72fr);
  gap: 14px;
  align-items: end;
}

.admin-upload-field input[type="file"] {
  min-height: 48px;
  padding: 10px;
  cursor: pointer;
}

.admin-background-mode {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.admin-background-mode label {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  min-height: 38px;
  padding: 8px 12px;
  color: var(--accent-dark);
  background: rgba(239, 244, 235, 0.78);
  border: 1px solid rgba(83, 107, 87, 0.18);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 820;
}

.admin-background-mode input {
  width: 16px;
  height: 16px;
  accent-color: var(--accent-dark);
}

.admin-image-field > p {
  grid-column: 1 / -1;
  margin: -2px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.admin-image-quick-select {
  grid-column: 1 / -1;
  display: grid;
  gap: 9px;
  padding: 12px;
  background: rgba(255, 250, 241, 0.5);
  border: 1px solid rgba(36, 35, 31, 0.08);
  border-radius: 16px;
}

.admin-image-quick-select > span {
  color: var(--ink);
  font-size: 12px;
  font-weight: 820;
}

.admin-image-choices {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(118px, 1fr));
  gap: 8px;
}

.admin-image-choice {
  display: grid;
  gap: 7px;
  min-height: 148px;
  padding: 8px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(36, 35, 31, 0.1);
  border-radius: 14px;
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition: border-color 0.22s ease, background-color 0.22s ease, transform 0.22s ease;
}

.admin-image-choice:hover,
.admin-image-choice:focus-visible,
.admin-image-choice.is-active {
  background: rgba(239, 244, 235, 0.84);
  border-color: rgba(83, 107, 87, 0.34);
  transform: translateY(-1px);
}

.admin-image-choice:active {
  transform: translateY(1px);
}

.admin-image-choice img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  background: var(--product-surface-bg);
  background-position: center;
  background-size: cover;
  border-radius: 10px;
}

.admin-image-choice span,
.admin-image-choice small {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.admin-image-choice span {
  color: var(--ink);
  font-size: 12px;
  font-weight: 820;
}

.admin-image-choice small,
.admin-image-choice-empty {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.35;
}

.admin-image-preview.product-media {
  height: clamp(210px, 24vw, 280px);
  min-height: 210px;
  border: 1px solid rgba(36, 35, 31, 0.1);
  border-radius: 20px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.46);
}

.admin-background-match {
  grid-column: 1 / -1;
  display: grid;
  gap: 12px;
  padding: 12px;
  background: rgba(255, 250, 241, 0.5);
  border: 1px solid rgba(36, 35, 31, 0.08);
  border-radius: 18px;
}

.admin-background-preview-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.admin-background-match.is-showing-original .admin-background-preview-grid {
  grid-template-columns: 1fr;
}

.admin-background-match.is-showing-original .admin-background-preview-grid figure:nth-child(2) {
  display: none;
}

.admin-background-preview-grid figure {
  display: grid;
  gap: 8px;
  min-width: 0;
  margin: 0;
}

.admin-background-preview-grid figcaption {
  color: var(--ink);
  font-size: 12px;
  font-weight: 820;
}

.admin-background-preview-grid figure.is-missing figcaption::after {
  content: " unavailable";
  color: var(--muted);
  font-weight: 680;
}

.admin-background-preview-frame.product-media {
  height: clamp(170px, 20vw, 230px);
  min-height: 170px;
  border: 1px solid rgba(36, 35, 31, 0.1);
  border-radius: 16px;
}

.admin-background-warning {
  margin: 0;
  padding: 10px 12px;
  color: #6f2a1b;
  background: rgba(255, 235, 214, 0.72);
  border: 1px solid rgba(111, 42, 27, 0.18);
  border-radius: 12px;
  font-size: 12px;
  font-weight: 760;
  line-height: 1.35;
}

.admin-background-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.admin-background-actions button {
  min-height: 38px;
  padding: 8px 12px;
  color: var(--accent-dark);
  background: rgba(239, 244, 235, 0.84);
  border: 1px solid rgba(83, 107, 87, 0.18);
  border-radius: 999px;
  font: inherit;
  font-size: 12px;
  font-weight: 820;
  cursor: pointer;
}

.admin-background-actions button:hover,
.admin-background-actions button:focus-visible {
  color: var(--surface);
  background: var(--accent-dark);
}

.admin-background-actions button:disabled {
  cursor: not-allowed;
  opacity: 0.46;
}

.admin-card-footer {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(36, 35, 31, 0.12);
}

.admin-order-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.admin-card-footer .button:disabled {
  cursor: not-allowed;
  opacity: 0.44;
}

.admin-danger {
  color: #7f1d1d;
  background: rgba(254, 226, 226, 0.58);
  border-color: rgba(127, 29, 29, 0.22);
}

.planning-delivery-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(170px, 250px);
  gap: 24px;
  align-items: center;
  min-height: 230px;
  overflow: hidden;
  isolation: isolate;
  padding: 28px clamp(26px, 3vw, 44px) 28px 32px;
  color: var(--surface);
  background:
    radial-gradient(ellipse at 88% 78%, rgba(198, 226, 228, 0.16), rgba(198, 226, 228, 0) 34%),
    url("assets/chair-exchange/backgrounds/dark-brand-panel.svg") center / cover no-repeat,
    linear-gradient(120deg, #173928 0%, #173628 56%, #112d22 100%);
  border: 1px solid rgba(255, 250, 241, 0.14);
  border-radius: 22px;
  box-shadow: 0 24px 74px rgba(22, 51, 37, 0.22);
}

.planning-delivery-card::before,
.planning-delivery-card::after {
  position: absolute;
  pointer-events: none;
  content: "";
}

.planning-delivery-card::before {
  right: -48px;
  bottom: -62px;
  z-index: 0;
  width: 440px;
  height: 320px;
  background: radial-gradient(ellipse at 58% 54%, rgba(213, 232, 226, 0.28), rgba(213, 232, 226, 0.14) 42%, rgba(213, 232, 226, 0) 74%);
  filter: blur(8px);
}

.planning-delivery-card::after {
  inset: 0;
  z-index: 3;
  width: auto;
  height: auto;
  background:
    linear-gradient(180deg, rgba(23, 57, 40, 0) 0%, rgba(23, 57, 40, 0) 47%, rgba(23, 57, 40, 0.82) 54%, rgba(23, 57, 40, 0.32) 64%, rgba(23, 57, 40, 0) 76%),
    radial-gradient(ellipse 325px 245px at 87% 78%, rgba(23, 57, 40, 0) 0%, rgba(23, 57, 40, 0.03) 48%, rgba(23, 57, 40, 0.38) 76%, rgba(23, 57, 40, 0.86) 100%),
    linear-gradient(90deg, rgba(23, 57, 40, 0.98) 0%, rgba(23, 57, 40, 0.92) 44%, rgba(23, 57, 40, 0.58) 60%, rgba(23, 57, 40, 0.2) 76%, rgba(23, 57, 40, 0.03) 91%, rgba(23, 57, 40, 0) 100%),
    linear-gradient(0deg, rgba(23, 57, 40, 0.72) 0%, rgba(23, 57, 40, 0.2) 32%, rgba(23, 57, 40, 0) 60%);
}

.planning-delivery-card > div {
  position: relative;
  z-index: 4;
}

.planning-delivery-card p {
  max-width: 56ch;
  margin: 12px 0 20px;
  color: rgba(255, 250, 241, 0.82);
  font-size: 15px;
}

.planning-delivery-card .button {
  color: var(--ink);
  background: var(--surface);
  border-color: transparent;
}

.planning-delivery-card > img {
  position: absolute;
  right: -18px;
  bottom: -18px;
  z-index: 2;
  align-self: end;
  width: min(54%, 390px);
  height: 315px;
  object-fit: cover;
  object-position: center 46%;
  opacity: 0.96;
  filter: saturate(0.84) contrast(1.06) brightness(0.98);
  mix-blend-mode: normal;
  -webkit-mask-image: radial-gradient(ellipse 74% 70% at 66% 58%, #000 0%, #000 50%, rgba(0, 0, 0, 0.84) 62%, rgba(0, 0, 0, 0.34) 78%, transparent 94%);
  mask-image: radial-gradient(ellipse 74% 70% at 66% 58%, #000 0%, #000 50%, rgba(0, 0, 0, 0.84) 62%, rgba(0, 0, 0, 0.34) 78%, transparent 94%);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
}

.planning-proof-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  max-width: 1500px;
  margin: 14px auto 0;
  padding: 0 32px;
}

.planning-page .service-matrix {
  display: block;
  max-width: 1500px;
  margin: 14px auto 0;
  padding: 0 32px;
}

.planning-page .service-matrix .planning-proof-strip {
  max-width: none;
  min-height: 0;
  margin: 0;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
}

.planning-proof-strip div {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  min-height: 96px;
  padding: 18px 22px;
  background: rgba(235, 228, 216, 0.68);
  border: 1px solid rgba(36, 35, 31, 0.1);
  border-radius: 0;
}

.planning-proof-strip div:first-child {
  border-radius: 22px 0 0 22px;
}

.planning-proof-strip div:last-child {
  border-radius: 0 22px 22px 0;
}

.planning-proof-strip .service-icon {
  grid-row: 1 / span 2;
  width: 42px;
  height: 42px;
  margin: 0;
}

.planning-proof-strip strong {
  display: block;
  grid-column: 2;
  font-size: 15px;
  line-height: 1.15;
}

.planning-proof-strip p {
  grid-column: 2;
  margin: 4px 0 0;
  color: #4f514d;
  font-size: 12px;
  line-height: 1.35;
}

@media (max-width: 1180px) {
  .planning-hero-panel,
  .planning-benefits-panel,
  .planning-brand-panel,
  .planning-gallery-heading,
  .planning-action-grid {
    grid-template-columns: 1fr;
  }

  .planning-hero-content {
    max-width: 760px;
  }

  .planning-hero-image {
    min-height: 340px;
  }

  .planning-benefits-panel .planning-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .planning-proof-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .planning-gallery-heading > p {
    justify-self: start;
    max-width: 62ch;
  }

  .planning-gallery-shell {
    grid-template-columns: 1fr;
  }

  .planning-gallery-stage {
    min-height: clamp(380px, 62vw, 560px);
  }

  .planning-gallery-side {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 18px;
    align-items: end;
  }

  .planning-gallery-side-copy strong {
    max-width: 24ch;
  }

  .planning-gallery-controls {
    min-width: 190px;
    margin-top: 0;
  }

  .planning-proof-strip div,
  .planning-proof-strip div:first-child,
  .planning-proof-strip div:last-child {
    border-radius: 18px;
  }
}

@media (max-width: 760px) {
  .planning-page .space-section {
    gap: 12px;
    padding: 12px 18px 0;
  }

  .planning-hero-panel {
    grid-template-columns: 1fr;
    min-height: 0;
    border-radius: 22px;
  }

  .planning-hero-content {
    padding: 34px 22px 10px;
  }

  .planning-hero-content h1 {
    max-width: 10ch;
    font-size: 42px;
  }

  .planning-hero-content p:not(.eyebrow):not(.planning-speed-note) {
    max-width: 33ch;
    font-size: 16px;
  }

  .planning-hero-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .planning-hero-image {
    min-height: 240px;
  }

  .planning-hero-image::before {
    width: 100%;
    background: linear-gradient(180deg, rgba(247, 243, 236, 0.65), rgba(247, 243, 236, 0));
  }

  .planning-benefits-panel,
  .planning-space-panel,
  .planning-brand-panel,
  .planning-gallery-panel,
  .planning-upload-panel,
  .planning-delivery-card {
    padding: 20px;
    border-radius: 20px;
  }

  .planning-benefits-panel .planning-list,
  .planning-upload-panel,
  .planning-delivery-card,
  .planning-proof-strip {
    grid-template-columns: 1fr;
  }

  .planning-gallery-heading {
    gap: 14px;
  }

  .planning-gallery-heading h2 {
    max-width: 13ch;
    font-size: 38px;
  }

  .planning-gallery-filter-row {
    flex-wrap: nowrap;
    gap: 8px;
    max-width: 100%;
    margin-right: -2px;
    margin-left: -2px;
    overflow-x: auto;
    padding: 2px 2px 10px;
    scroll-padding: 2px;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .planning-gallery-filter-row::-webkit-scrollbar {
    display: none;
  }

  .planning-gallery-filter-row button {
    flex: 0 0 auto;
    min-height: 36px;
    padding: 0 15px;
    font-size: 12px;
    scroll-snap-align: start;
  }

  .planning-gallery-stage {
    min-height: 360px;
    border-radius: 18px;
  }

  .planning-gallery-stage::before {
    background:
      linear-gradient(180deg, rgba(17, 26, 19, 0.02) 28%, rgba(17, 26, 19, 0.78) 100%),
      linear-gradient(90deg, rgba(17, 26, 19, 0.2), rgba(17, 26, 19, 0));
  }

  .planning-gallery-copy {
    right: 12px;
    bottom: 12px;
    left: 12px;
    padding: 13px;
    border-radius: 14px;
  }

  .planning-gallery-copy h3 {
    font-size: 20px;
  }

  .planning-gallery-copy p {
    font-size: 12.5px;
  }

  .planning-gallery-side {
    grid-template-columns: 1fr;
    padding: 16px;
    border-radius: 18px;
  }

  .planning-gallery-side-copy strong {
    font-size: 26px;
  }

  .planning-gallery-controls {
    min-width: 0;
    max-width: 220px;
  }

  .planning-gallery-thumb-rail {
    gap: 8px;
    margin-right: -4px;
    margin-left: -4px;
    padding-right: 4px;
    padding-left: 4px;
  }

  .planning-gallery-thumb {
    flex-basis: 132px;
    height: 92px;
    border-radius: 14px;
  }

  .planning-gallery-thumb span {
    right: 8px;
    bottom: 8px;
    left: 8px;
    font-size: 11px;
  }

  .planning-brand-panel {
    gap: 18px;
  }

  .planning-brand-meta {
    gap: 7px;
    margin-top: 14px;
  }

  .planning-brand-marquee {
    margin-right: 0;
    margin-left: 0;
    padding: 16px 0;
    border-radius: 22px;
  }

  .planning-brand-marquee::before,
  .planning-brand-marquee::after {
    width: 40px;
    height: 112px;
  }

  .planning-brand-track {
    gap: 7px;
    animation-duration: 32s;
  }

  .planning-brand-track-reverse {
    animation-duration: 40s;
  }

  .planning-brand-pill {
    min-height: 42px;
    padding: 0 14px;
    border-radius: 13px;
    font-size: 14px;
  }

  .planning-brand-pill-discount::after {
    min-height: 18px;
    margin-left: 7px;
    padding: 2px 7px;
    font-size: 8.5px;
  }

  .planning-brand-deal-card {
    grid-template-columns: 1fr;
    width: calc(100% - 32px);
    margin: 8px 16px 0;
    padding: 16px;
  }

  .planning-brand-deal-card a {
    justify-self: start;
  }

  .planning-delivery-card {
    gap: 14px;
  }

  .planning-delivery-card > img {
    position: relative;
    right: auto;
    bottom: auto;
    width: min(100%, 300px);
    height: 180px;
    justify-self: end;
    margin: -4px -4px -10px 0;
    opacity: 0.86;
  }

  .planning-proof-strip {
    padding: 0 18px;
  }

  .planning-space-panel .room-chip-row {
    gap: 8px;
  }

  .admin-header,
  .admin-hero,
  .admin-workbench-header,
  .admin-card-header,
  .admin-card-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .admin-header {
    padding: 18px;
  }

  .admin-main {
    padding: 18px;
  }

  .admin-hero,
  .admin-workbench,
  .admin-card {
    padding: 20px;
    border-radius: 22px;
  }

  .admin-inventory-rail {
    grid-auto-columns: minmax(210px, 76vw);
    margin-right: -20px;
    padding-right: 20px;
  }

  .admin-actions,
  .admin-form-grid {
    width: 100%;
    grid-template-columns: 1fr;
  }

  .admin-save-dock,
  .admin-auto-summary,
  .admin-override-grid {
    grid-template-columns: 1fr;
  }

  .admin-save-dock {
    top: 8px;
  }

  .admin-save-dock .button {
    width: 100%;
  }

  .admin-auto-chip-row {
    justify-content: flex-start;
  }

  .admin-image-field {
    grid-template-columns: 1fr;
  }

  .admin-background-preview-grid {
    grid-template-columns: 1fr;
  }

  .planning-space-panel .room-chip-row span {
    min-height: 34px;
    padding: 7px 11px;
    font-size: 12px;
  }
}

/* Homepage reference layout */
.home-page {
  --home-ink: #10251c;
  --home-paper: #fbf7ef;
  --home-card: rgba(255, 253, 247, 0.82);
  --home-line: rgba(31, 39, 32, 0.14);
  --home-accent: #153f2d;
}

.home-page .utility-bar {
  display: flex;
  min-height: 34px;
  padding: 7px 24px;
  background: linear-gradient(90deg, #12291e 0%, #214b38 48%, #152f22 100%);
  font-size: 11px;
}

.home-page .site-header {
  background: rgba(255, 252, 246, 0.92);
  border-bottom: 1px solid rgba(31, 39, 32, 0.12);
  box-shadow: none;
  backdrop-filter: blur(18px);
}

.home-page .navbar {
  max-width: 1680px;
  min-height: 84px;
  padding: 16px clamp(28px, 7.2vw, 128px);
}

.home-page .brand-lockup {
  width: clamp(210px, 14vw, 250px);
}

.home-page .nav-links {
  gap: clamp(12px, 1.3vw, 28px);
  color: #1f241f;
  font-size: clamp(14px, 0.9vw, 16px);
  font-weight: 650;
}

.home-page .nav-cta,
.home-page .button {
  min-height: 52px;
  padding: 0 26px;
  font-size: 16px;
  font-weight: 780;
}

.home-page .nav-cta,
.home-page .button-primary,
.home-page .intro-card-action {
  color: #fffaf1;
  background: linear-gradient(180deg, #214b38 0%, #123725 100%);
  box-shadow:
    0 14px 30px rgba(18, 55, 37, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.home-page .button-secondary {
  min-width: 210px;
  color: #13251b;
  white-space: nowrap;
  background: #fffaf1;
  border-color: rgba(31, 39, 32, 0.22);
  box-shadow:
    0 14px 30px rgba(36, 35, 31, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

.home-page .home-main {
  background:
    radial-gradient(80% 18% at 5% 92%, rgba(88, 112, 91, 0.1), transparent 68%),
    radial-gradient(80% 18% at 86% 98%, rgba(88, 112, 91, 0.12), transparent 68%),
    linear-gradient(180deg, #fbf7ef 0%, #fbf6ed 48%, #f6f1e7 100%);
}

.home-page .home-main::before {
  display: none;
}

.home-page .hero {
  min-height: clamp(560px, 45vw, 650px);
  background: #fbf7ef;
}

.home-page .hero::after {
  position: absolute;
  right: -9vw;
  bottom: -138px;
  left: -9vw;
  z-index: 2;
  height: 230px;
  pointer-events: none;
  content: "";
  background: linear-gradient(180deg, #fffaf1 0%, #faf4ea 100%);
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.86);
}

.home-page .hero-image {
  inset: 0;
  width: 100%;
  object-fit: cover;
  object-position: center;
  transform: none;
}

.home-page .hero-shade {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(251, 247, 239, 0.98) 0%, rgba(251, 247, 239, 0.93) 27%, rgba(251, 247, 239, 0.58) 43%, rgba(251, 247, 239, 0.12) 69%, rgba(251, 247, 239, 0) 100%),
    linear-gradient(180deg, rgba(251, 247, 239, 0.08) 0%, rgba(251, 247, 239, 0.08) 62%, rgba(251, 247, 239, 0.5) 100%);
}

.home-page .hero-content {
  width: min(1680px, 100%);
  min-height: clamp(560px, 45vw, 650px);
  margin: 0 auto;
  padding: clamp(64px, 6vw, 92px) clamp(28px, 7.2vw, 128px) 118px;
}

.home-page .hero .eyebrow {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.home-page h1 {
  max-width: 620px;
  color: var(--home-ink);
  font-size: clamp(62px, 5.7vw, 94px);
  font-weight: var(--display-weight);
  letter-spacing: var(--display-letter-spacing);
  line-height: var(--display-line-height);
}

.home-page .hero-copy {
  max-width: 610px;
  margin-top: 24px;
  color: #3d3e38;
  font-size: clamp(17px, 1.25vw, 21px);
  line-height: 1.58;
}

.home-page .hero-actions {
  position: relative;
  z-index: 3;
  width: fit-content;
  max-width: 100%;
  gap: 26px;
  margin-top: 34px;
  padding: 6px;
  margin-left: -6px;
  background: linear-gradient(90deg, rgba(251, 247, 239, 0.72), rgba(251, 247, 239, 0.28) 78%, rgba(251, 247, 239, 0));
  border-radius: 999px;
  backdrop-filter: blur(2px);
}

.home-page .hero-proof-row {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  width: min(760px, 100%);
  margin-top: 24px;
}

.home-page .hero-proof-row p {
  display: grid;
  gap: 5px;
  min-height: 88px;
  margin: 0;
  padding: 14px 16px;
  color: #3f423b;
  background: rgba(255, 250, 241, 0.7);
  border: 1px solid rgba(31, 39, 32, 0.14);
  border-radius: 18px;
  box-shadow:
    0 16px 36px rgba(31, 39, 32, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.76);
  backdrop-filter: blur(8px);
  font-size: 13px;
  line-height: 1.38;
}

.home-page .hero-proof-row strong {
  color: var(--home-ink);
  font-size: 14px;
  font-weight: 850;
  line-height: 1.1;
}

.home-page .intro-strip {
  max-width: none;
  margin: 0;
  padding: 28px clamp(28px, 7.2vw, 128px) 58px;
  overflow: hidden;
}

.home-page .intro-guide-window,
.home-page .intro-guide-window-fluid {
  display: block;
  max-width: 1560px;
  margin: 0 auto;
  padding: 0;
  overflow: visible;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  backdrop-filter: none;
}

.home-page .intro-guide-window::after,
.home-page .intro-guide-window-fluid::before,
.home-page .intro-flow-rail,
.home-page .intro-path-list::before,
.home-page .intro-guide-window-fluid .intro-path-list::before {
  display: none;
}

.home-page .intro-window-bar,
.home-page .intro-guide-window-fluid .intro-window-bar {
  position: static;
  display: flex;
  justify-content: center;
  width: max-content;
  min-height: 30px;
  margin: 0 auto 10px;
  padding: 6px 18px;
  color: rgba(31, 39, 32, 0.52);
  background: rgba(255, 253, 247, 0.7);
  border: 1px solid rgba(31, 39, 32, 0.12);
  border-radius: 999px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.78);
}

.home-page .intro-window-bar small {
  margin: 0;
  color: inherit;
  font-size: 12px;
  font-weight: 820;
  letter-spacing: 0.16em;
}

.home-page .intro-guide-copy {
  max-width: 760px;
  margin: 0 auto 28px;
  text-align: center;
}

.home-page .intro-guide-copy .eyebrow,
.home-page .intro-guide-status {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.home-page .intro-guide-copy h2 {
  max-width: none;
  margin: 0;
  color: var(--home-ink);
  font-family: var(--font-display);
  font-size: clamp(44px, 3.8vw, 64px);
  font-weight: var(--section-title-weight);
  letter-spacing: var(--section-title-letter-spacing);
  line-height: var(--section-title-line-height);
}

.home-page .intro-guide-copy > p:not(.eyebrow) {
  max-width: 720px;
  margin: 14px auto 0;
  color: #353832;
  font-size: clamp(16px, 1.15vw, 19px);
  line-height: 1.45;
}

.home-page .intro-guide-window-fluid .intro-path-list,
.home-page .intro-path-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 26px);
  max-width: 1520px;
  margin: 0 auto;
  padding: 0;
}

.home-page .intro-path-item,
.home-page .intro-guide-window-fluid .intro-path-item,
.home-page .intro-guide-window-fluid .intro-path-item:nth-child(2),
.home-page .intro-guide-window-fluid .intro-path-item:nth-child(3) {
  display: grid;
  grid-template-columns: 128px minmax(0, 1fr);
  gap: clamp(22px, 2.2vw, 34px);
  align-items: center;
  min-height: 268px;
  margin: 0;
  padding: clamp(28px, 2.4vw, 38px);
  color: var(--home-ink);
  background: var(--home-card);
  border: 1px solid var(--home-line);
  border-radius: 28px;
  box-shadow:
    0 28px 70px rgba(31, 39, 32, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(16px);
}

.home-page .intro-path-item:hover,
.home-page .intro-path-item:focus-visible,
.home-page .intro-guide-window-fluid .intro-path-item:hover,
.home-page .intro-guide-window-fluid .intro-path-item:focus-visible {
  background: rgba(255, 253, 247, 0.96);
  border-color: rgba(31, 63, 45, 0.22);
  box-shadow:
    0 34px 76px rgba(31, 39, 32, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.86);
  transform: translateY(-4px);
}

.home-page .intro-path-icon,
.home-page .intro-guide-window-fluid .intro-path-icon {
  width: 112px;
  height: 112px;
  background: rgba(225, 227, 216, 0.64);
  border: 0;
  border-radius: 50%;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.64);
}

.home-page .intro-icon {
  width: 62px;
  height: 62px;
}

.home-page .intro-path-content {
  align-self: center;
  gap: 12px;
}

.home-page .intro-path-content strong {
  color: var(--home-ink);
  font-size: clamp(24px, 1.9vw, 30px);
  font-weight: 850;
  line-height: 1.04;
}

.home-page .intro-path-content span {
  max-width: 39ch;
  color: #3f423b;
  font-size: clamp(15px, 1vw, 16px);
  line-height: 1.48;
}

.home-page .intro-card-action {
  grid-column: 2;
  justify-self: start;
  gap: 12px;
  min-height: 52px;
  margin-top: 12px;
  padding: 0 24px;
  border-color: rgba(18, 55, 37, 0.16);
  font-size: 16px;
}

.home-page .intro-card-action svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.market-proof-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(22px, 3vw, 42px);
  max-width: 1520px;
  margin: 0 auto;
  padding: clamp(48px, 5vw, 74px) clamp(28px, 7.2vw, 128px);
}

.market-proof-copy {
  align-self: start;
  position: sticky;
  top: 108px;
}

.market-proof-copy h2 {
  max-width: 10.5ch;
  margin: 0;
  color: var(--home-ink);
  font-family: var(--font-display);
  font-size: clamp(42px, 4.2vw, 72px);
  font-weight: var(--section-title-weight);
  letter-spacing: var(--section-title-letter-spacing);
  line-height: 0.98;
}

.market-proof-copy p:not(.eyebrow) {
  max-width: 39ch;
  margin: 18px 0 0;
  color: #454840;
  font-size: clamp(16px, 1.12vw, 18px);
  line-height: 1.55;
}

.comparison-panel {
  display: grid;
  overflow: hidden;
  background: rgba(255, 253, 247, 0.86);
  border: 1px solid rgba(31, 39, 32, 0.14);
  border-radius: 28px;
  box-shadow:
    0 30px 78px rgba(31, 39, 32, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.78);
}

.comparison-row {
  display: grid;
  grid-template-columns: minmax(118px, 0.55fr) repeat(2, minmax(0, 1fr));
  border-top: 1px solid rgba(31, 39, 32, 0.1);
}

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

.comparison-row span {
  min-width: 0;
  padding: 18px 20px;
  color: #454840;
  border-left: 1px solid rgba(31, 39, 32, 0.1);
  font-size: 15px;
  line-height: 1.42;
}

.comparison-row span:first-child {
  color: var(--home-ink);
  border-left: 0;
  font-weight: 850;
}

.comparison-head {
  background: linear-gradient(90deg, rgba(225, 232, 221, 0.82), rgba(255, 250, 241, 0.82));
}

.comparison-head span {
  color: var(--home-ink);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.comparison-row span:last-child {
  background: rgba(232, 240, 228, 0.36);
}

.market-proof-grid {
  grid-column: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.market-proof-grid article {
  display: grid;
  gap: 10px;
  align-content: start;
  min-height: 220px;
  padding: 22px;
  background: rgba(255, 253, 247, 0.78);
  border: 1px solid rgba(31, 39, 32, 0.13);
  border-radius: 22px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.market-proof-grid article span {
  display: inline-grid;
  width: 40px;
  height: 40px;
  place-items: center;
  color: #fffaf1;
  background: #153f2d;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 850;
}

.market-proof-grid h3 {
  margin: 0;
  color: var(--home-ink);
  font-size: clamp(18px, 1.35vw, 22px);
  line-height: 1.08;
}

.market-proof-grid p {
  margin: 0;
  color: #505249;
  font-size: 14px;
  line-height: 1.48;
}

.inspection-story-card {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: clamp(18px, 3vw, 36px);
  align-items: end;
  margin: 0;
  overflow: hidden;
  background: #153f2d;
  border-radius: 30px;
  box-shadow: 0 32px 86px rgba(31, 39, 32, 0.18);
}

.inspection-story-card img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  object-position: center;
}

.inspection-story-card figcaption {
  display: grid;
  gap: 14px;
  padding: clamp(26px, 4vw, 46px);
  color: rgba(255, 250, 241, 0.78);
}

.inspection-story-card strong {
  max-width: 12ch;
  color: #fffaf1;
  font-size: clamp(34px, 3.5vw, 58px);
  line-height: 0.96;
}

.inspection-story-card span {
  max-width: 42ch;
  font-size: 16px;
  line-height: 1.55;
}

.local-proof-strip {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.local-proof-strip span {
  padding: 10px 16px;
  color: #244031;
  background: rgba(255, 253, 247, 0.74);
  border: 1px solid rgba(31, 39, 32, 0.13);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
}

.home-page .trust-strip {
  max-width: 1520px;
  margin-top: 0;
  padding: 0 clamp(28px, 7.2vw, 128px) 42px;
}

@media (max-width: 1240px) {
  .navbar,
  .home-page .navbar {
    padding-right: 32px;
    padding-left: 32px;
  }

  .nav-links,
  .home-page .nav-links {
    gap: 22px;
    font-size: 14px;
  }

  .home-page .intro-path-item,
  .home-page .intro-guide-window-fluid .intro-path-item,
  .home-page .intro-guide-window-fluid .intro-path-item:nth-child(2),
  .home-page .intro-guide-window-fluid .intro-path-item:nth-child(3) {
    grid-template-columns: 96px minmax(0, 1fr);
    min-height: 250px;
    padding: 26px;
  }

  .home-page .intro-path-icon,
  .home-page .intro-guide-window-fluid .intro-path-icon {
    width: 92px;
    height: 92px;
  }
}

@media (max-width: 1080px) {
  .navbar,
  .home-page .navbar {
    min-height: 76px;
  }

  .brand-lockup,
  .home-page .brand-lockup {
    width: 210px;
  }

  .home-page .hero {
    min-height: 620px;
  }

  .home-page .hero-content {
    min-height: 620px;
    padding-right: 32px;
    padding-left: 32px;
  }

  .home-page .hero-image {
    object-position: 76% center;
  }

  .home-page .hero-shade {
    background:
      linear-gradient(90deg, rgba(251, 247, 239, 1) 0%, rgba(251, 247, 239, 0.96) 56%, rgba(251, 247, 239, 0.44) 82%, rgba(251, 247, 239, 0.12) 100%),
      linear-gradient(180deg, rgba(251, 247, 239, 0.12) 0%, rgba(251, 247, 239, 0.78) 100%);
  }

  .home-page .intro-guide-window-fluid .intro-path-list,
  .home-page .intro-path-list {
    grid-template-columns: 1fr;
    max-width: 760px;
  }

  .home-page .intro-path-item,
  .home-page .intro-guide-window-fluid .intro-path-item,
  .home-page .intro-guide-window-fluid .intro-path-item:nth-child(2),
  .home-page .intro-guide-window-fluid .intro-path-item:nth-child(3) {
    min-height: 220px;
  }

  .market-proof-section {
    grid-template-columns: 1fr;
    padding-right: 32px;
    padding-left: 32px;
  }

  .market-proof-copy {
    position: static;
  }

  .market-proof-copy h2 {
    max-width: 14ch;
  }

  .market-proof-grid {
    grid-column: auto;
  }

  .inspection-story-card {
    grid-template-columns: 1fr;
  }

  .inspection-story-card img {
    min-height: 300px;
  }
}

@media (max-width: 760px) {
  .site-header,
  .home-page .site-header {
    background: rgba(255, 252, 246, 0.96);
  }

  .utility-bar,
  .home-page .utility-bar {
    justify-content: flex-start;
    min-height: 42px;
    padding: 7px 18px;
    overflow: hidden;
  }

  .utility-bar p,
  .home-page .utility-bar p {
    display: flex;
    flex-wrap: nowrap;
    gap: 8px;
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    scrollbar-width: none;
  }

  .utility-bar p::-webkit-scrollbar,
  .home-page .utility-bar p::-webkit-scrollbar {
    display: none;
  }

  .utility-bar strong,
  .home-page .utility-bar strong {
    flex: 1 1 auto;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .utility-bar span,
  .home-page .utility-bar span {
    display: none;
  }

  .utility-bar span::before,
  .home-page .utility-bar span::before {
    padding-right: 8px;
  }

  .navbar,
  .home-page .navbar {
    min-height: 70px;
    padding: 12px 18px;
  }

  .brand-lockup,
  .home-page .brand-lockup {
    width: 190px;
  }

  .nav-links,
  .home-page .nav-links {
    background: rgba(255, 252, 246, 0.98);
  }

  .home-page .hero {
    min-height: 690px;
  }

  .home-page .hero::after {
    right: -42vw;
    bottom: -116px;
    left: -42vw;
    height: 188px;
  }

  .home-page .hero-image {
    object-position: 73% center;
  }

  .home-page .hero-shade {
    background:
      linear-gradient(90deg, rgba(251, 247, 239, 0.98) 0%, rgba(251, 247, 239, 0.88) 62%, rgba(251, 247, 239, 0.34) 100%),
      linear-gradient(180deg, rgba(251, 247, 239, 0.04) 0%, rgba(251, 247, 239, 0.78) 100%);
  }

  .home-page .hero-content {
    width: 100%;
    min-height: 690px;
    padding: 58px 18px 118px;
  }

  .home-page h1 {
    max-width: min(380px, 100%);
    overflow-wrap: normal;
    font-size: clamp(46px, 14vw, 62px);
    word-break: normal;
  }

  .home-page .hero-copy {
    max-width: 31ch;
    font-size: 16px;
  }

  .home-page .hero-actions {
    gap: 12px;
    align-items: flex-start;
    border-radius: 24px;
  }

  .home-page .hero-proof-row {
    grid-template-columns: 1fr;
    gap: 8px;
    width: min(100%, 380px);
    margin-top: 18px;
  }

  .home-page .hero-proof-row p {
    min-height: auto;
    padding: 12px 14px;
    font-size: 12px;
  }

  .home-page .button {
    min-height: 48px;
    padding: 0 20px;
    font-size: 14px;
  }

  .home-page .button-secondary {
    min-width: 178px;
    background: #fffaf1;
  }

  .home-page .intro-strip {
    padding: 18px 18px 38px;
  }

  .market-proof-section {
    gap: 18px;
    padding: 34px 18px 42px;
  }

  .market-proof-copy h2 {
    max-width: 12ch;
    font-size: clamp(34px, 10vw, 44px);
  }

  .market-proof-copy p:not(.eyebrow) {
    font-size: 15px;
  }

  .comparison-panel {
    border-radius: 22px;
  }

  .comparison-row,
  .comparison-head {
    display: grid;
    grid-template-columns: 1fr;
  }

  .comparison-row {
    padding: 16px;
    border-top: 1px solid rgba(31, 39, 32, 0.12);
  }

  .comparison-head {
    display: none;
  }

  .comparison-row span {
    padding: 0;
    border-left: 0;
    font-size: 14px;
  }

  .comparison-row span:first-child {
    margin-bottom: 8px;
    color: var(--home-ink);
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .comparison-row span:nth-child(2)::before,
  .comparison-row span:nth-child(3)::before {
    display: block;
    margin: 10px 0 3px;
    color: rgba(31, 39, 32, 0.54);
    font-size: 11px;
    font-weight: 850;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .comparison-row span:nth-child(2)::before {
    content: "Buying new";
  }

  .comparison-row span:nth-child(3)::before {
    content: "OneStopChair";
  }

  .comparison-row span:last-child {
    margin: 12px -4px 0;
    padding: 12px;
    border-radius: 14px;
  }

  .market-proof-grid {
    grid-template-columns: 1fr;
  }

  .market-proof-grid article {
    min-height: auto;
    padding: 18px;
  }

  .inspection-story-card {
    border-radius: 22px;
  }

  .inspection-story-card img {
    min-height: 240px;
  }

  .inspection-story-card strong {
    max-width: 13ch;
    font-size: clamp(30px, 9vw, 40px);
  }

  .inspection-story-card span {
    font-size: 15px;
  }

  .home-page .intro-window-bar,
  .home-page .intro-guide-window-fluid .intro-window-bar {
    min-height: 28px;
    padding: 5px 14px;
  }

  .home-page .intro-guide-copy {
    margin-bottom: 22px;
  }

  .home-page .intro-guide-copy h2 {
    font-size: clamp(36px, 11vw, 48px);
  }

  .home-page .intro-guide-copy > p:not(.eyebrow) {
    display: block;
    max-width: 33ch;
    font-size: 15px;
    -webkit-line-clamp: initial;
  }

  .home-page .intro-path-item,
  .home-page .intro-guide-window-fluid .intro-path-item,
  .home-page .intro-guide-window-fluid .intro-path-item:nth-child(2),
  .home-page .intro-guide-window-fluid .intro-path-item:nth-child(3) {
    grid-template-columns: 76px minmax(0, 1fr);
    gap: 16px;
    min-height: 0;
    padding: 18px;
    border-radius: 22px;
  }

  .home-page .intro-path-icon,
  .home-page .intro-guide-window-fluid .intro-path-icon {
    width: 72px;
    height: 72px;
  }

  .home-page .intro-icon {
    width: 42px;
    height: 42px;
  }

  .home-page .intro-path-content strong {
    font-size: 22px;
  }

  .home-page .intro-path-content span {
    display: block;
    font-size: 14px;
    -webkit-line-clamp: initial;
  }

  .home-page .intro-card-action {
    grid-column: 1 / -1;
    min-height: 46px;
    margin-top: 6px;
    padding: 0 18px;
    font-size: 14px;
  }

  .home-page .trust-strip {
    padding: 0 18px 34px;
  }
}

/* Homepage reference tuning */
.home-page .hero {
  min-height: clamp(440px, 30vw, 510px);
}

.home-page .hero::after {
  bottom: -108px;
  height: 178px;
}

.home-page .hero-content {
  min-height: clamp(440px, 30vw, 510px);
  padding-top: clamp(42px, 4.6vw, 70px);
  padding-bottom: 76px;
}

.home-page .intro-strip {
  padding-top: 8px;
  padding-bottom: 46px;
}

.home-page .intro-guide-copy {
  margin-bottom: 24px;
}

.home-page .intro-path-item,
.home-page .intro-guide-window-fluid .intro-path-item,
.home-page .intro-guide-window-fluid .intro-path-item:nth-child(2),
.home-page .intro-guide-window-fluid .intro-path-item:nth-child(3) {
  grid-template-columns: 108px minmax(0, 1fr);
  gap: clamp(18px, 1.8vw, 26px);
  min-height: 242px;
  padding: clamp(24px, 2vw, 30px);
}

.home-page .intro-path-icon,
.home-page .intro-guide-window-fluid .intro-path-icon {
  width: 104px;
  height: 104px;
}

.home-page .intro-path-content span {
  font-size: 15px;
  line-height: 1.43;
}

.home-page .intro-card-action {
  min-height: 48px;
  margin-top: 8px;
}

@media (max-width: 1080px) {
  .home-page .hero,
  .home-page .hero-content {
    min-height: 620px;
  }
}

@media (max-width: 760px) {
  .home-page .hero,
  .home-page .hero-content {
    min-height: 690px;
  }

  .home-page .hero::after {
    bottom: -116px;
    height: 188px;
  }

  .home-page .intro-path-item,
  .home-page .intro-guide-window-fluid .intro-path-item,
  .home-page .intro-guide-window-fluid .intro-path-item:nth-child(2),
  .home-page .intro-guide-window-fluid .intro-path-item:nth-child(3) {
    grid-template-columns: 76px minmax(0, 1fr);
    min-height: 0;
    padding: 18px;
  }

  .home-page .intro-path-icon,
  .home-page .intro-guide-window-fluid .intro-path-icon {
    width: 72px;
    height: 72px;
  }
}

@media (min-width: 1081px) {
  .home-page .hero,
  .home-page .hero-content {
    min-height: 490px;
  }

  .home-page .hero-content {
    padding-top: 46px;
    padding-bottom: 104px;
  }

  .home-page .hero {
    z-index: 1;
  }

  .home-page h1 {
    max-width: 600px;
    font-size: clamp(60px, 5vw, 84px);
  }

  .home-page .hero-copy {
    margin-top: 20px;
  }

  .home-page .hero-actions {
    margin-top: 28px;
  }

  .home-page .intro-strip {
    margin-top: 0;
    padding-top: 0;
  }

  .home-page .intro-guide-copy h2 {
    font-size: clamp(42px, 3.4vw, 58px);
  }

  .home-page .intro-guide-copy {
    margin-bottom: 18px;
  }

  .home-page .intro-path-item,
  .home-page .intro-guide-window-fluid .intro-path-item,
  .home-page .intro-guide-window-fluid .intro-path-item:nth-child(2),
  .home-page .intro-guide-window-fluid .intro-path-item:nth-child(3) {
    grid-template-columns: 88px minmax(0, 1fr);
    gap: 18px;
    min-height: 236px;
    padding: 24px;
  }

  .home-page .intro-path-icon,
  .home-page .intro-guide-window-fluid .intro-path-icon {
    width: 86px;
    height: 86px;
  }

  .home-page .intro-icon {
    width: 50px;
    height: 50px;
  }

  .home-page .intro-path-content {
    gap: 8px;
  }

  .home-page .intro-path-content strong {
    font-size: 28px;
  }

  .home-page .intro-path-content span {
    font-size: 14px;
    line-height: 1.34;
  }

  .home-page .intro-card-action {
    min-height: 44px;
    margin-top: 4px;
    padding: 0 22px;
    font-size: 15px;
  }
}

/* Buyback conversion-focused refinement */
.buyback-page {
  background:
    radial-gradient(58% 24% at 8% 38%, rgba(83, 107, 87, 0.12), transparent 68%),
    radial-gradient(48% 18% at 86% 54%, rgba(83, 107, 87, 0.09), transparent 70%),
    var(--paper);
}

.buyback-page .buyback-section {
  max-width: 1520px;
  padding-top: clamp(22px, 4vw, 54px);
}

.buyback-hero-panel {
  position: relative;
  grid-template-columns: minmax(760px, 0.95fr) minmax(420px, 1.05fr);
  min-height: clamp(430px, 36vw, 540px);
  overflow: hidden;
  background:
    radial-gradient(54% 62% at 14% 90%, rgba(83, 107, 87, 0.14), transparent 70%),
    linear-gradient(105deg, #fbf6ed 0%, #f7f0e4 46%, rgba(247, 240, 228, 0.36) 100%);
  border: 1px solid rgba(36, 35, 31, 0.08);
  border-radius: 34px;
  box-shadow: 0 26px 78px rgba(36, 35, 31, 0.08);
}

.buyback-hero-panel::before {
  position: absolute;
  left: clamp(28px, 6vw, 88px);
  bottom: -90px;
  width: min(58vw, 720px);
  height: 210px;
  pointer-events: none;
  content: "";
  background: rgba(83, 107, 87, 0.08);
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
}

.buyback-hero-copy {
  max-width: 680px;
  padding: clamp(46px, 6vw, 82px) 0 clamp(42px, 5vw, 68px) clamp(28px, 5vw, 72px);
}

.buyback-page .buyback-hero-copy.section-heading.narrow {
  max-width: none;
}

.buyback-page .buyback-hero-copy h2 {
  max-width: 760px;
  color: var(--accent-dark);
  font-family: var(--font-display);
  font-size: clamp(58px, 6vw, 88px);
  font-weight: var(--display-weight);
  letter-spacing: var(--display-letter-spacing);
  line-height: var(--display-line-height);
}

.buyback-page .buyback-hero-copy h2 span {
  display: block;
}

.buyback-lede {
  max-width: 620px;
  margin-top: clamp(20px, 2vw, 28px);
  color: #47443d;
  font-size: clamp(17px, 1.35vw, 20px);
  line-height: 1.5;
}

.buyback-lede-highlight {
  display: inline-block;
  padding: 0.03em 0.38em 0.08em;
  color: var(--accent-dark);
  background: rgba(217, 226, 213, 0.72);
  border: 1px solid rgba(83, 107, 87, 0.16);
  border-radius: 999px;
  font-weight: 780;
  line-height: 1.08;
  white-space: nowrap;
}

.buyback-hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 26px;
}

.buyback-hero-actions .button {
  min-height: 48px;
  padding-right: 20px;
  padding-left: 20px;
  font-weight: 780;
}

.buyback-hero-actions .buyback-cta {
  min-width: min(300px, 100%);
  margin-top: 0;
}

.buyback-secondary-cta {
  min-width: 180px;
  min-height: 44px;
  padding-right: 18px;
  padding-left: 18px;
  color: var(--accent-dark);
  background: rgba(255, 250, 241, 0.88);
  border-color: rgba(83, 107, 87, 0.18);
  box-shadow: none;
  font-size: 15px;
}

.buyback-hero-copy .buyback-trust-row {
  gap: 10px 22px;
  max-width: 680px;
  margin: 20px 0 0;
  color: var(--accent-dark);
  font-size: 14px;
  font-weight: 760;
}

.buyback-trust-row li::before {
  display: none;
  content: none;
}

.buyback-hero-copy .buyback-trust-row li {
  gap: 8px;
}

.trust-check {
  display: inline-grid;
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  place-items: center;
  color: var(--accent-dark);
  background: rgba(83, 107, 87, 0.1);
  border-radius: 999px;
}

.trust-check svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.buyback-hero-panel .buyback-hero-media {
  position: relative;
  height: auto;
  min-height: clamp(430px, 36vw, 540px);
  margin-right: 0;
  overflow: hidden;
  border-radius: 0 34px 34px 0;
}

.buyback-hero-panel .buyback-hero-media::before,
.buyback-hero-panel .buyback-hero-media::after {
  position: absolute;
  pointer-events: none;
  content: "";
}

.buyback-hero-panel .buyback-hero-media::before {
  inset: 0 auto 0 0;
  z-index: 2;
  width: 66%;
  background: linear-gradient(90deg, #fbf6ed 0%, rgba(251, 246, 237, 0.88) 28%, rgba(251, 246, 237, 0.36) 58%, rgba(251, 246, 237, 0) 100%);
}

.buyback-hero-panel .buyback-hero-media::after {
  top: -16%;
  bottom: -16%;
  left: -220px;
  z-index: 3;
  width: 340px;
  background: radial-gradient(ellipse at 45% 50%, #fbf6ed 0%, #fbf6ed 54%, rgba(251, 246, 237, 0) 72%);
  border-radius: 46% 54% 49% 51% / 42% 50% 50% 58%;
}

.buyback-hero-panel .buyback-hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-position: 72% 50%;
}

.buyback-info-section {
  position: relative;
  margin-top: clamp(36px, 5vw, 68px);
  isolation: isolate;
}

.buyback-info-section::before {
  position: absolute;
  right: -36px;
  bottom: -80px;
  z-index: -1;
  width: min(46vw, 560px);
  height: 260px;
  pointer-events: none;
  content: "";
  background: linear-gradient(135deg, rgba(83, 107, 87, 0.12), rgba(83, 107, 87, 0));
  border-radius: 46% 54% 44% 56% / 50% 38% 62% 50%;
}

.buyback-info-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(340px, 0.74fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: end;
  margin-bottom: 18px;
}

.buyback-info-heading .eyebrow,
.buyback-info-heading h2 {
  grid-column: 1;
}

.buyback-info-heading p:not(.eyebrow) {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: end;
}

.buyback-info-heading h2 {
  margin: 0;
  color: var(--accent-dark);
  font-family: var(--font-display);
  font-size: clamp(42px, 4.5vw, 64px);
  font-weight: var(--section-title-weight);
  letter-spacing: var(--section-title-letter-spacing);
  line-height: var(--section-title-line-height);
}

.buyback-info-heading p:not(.eyebrow) {
  max-width: 620px;
  margin: 0;
  color: #565249;
  font-size: 17px;
  line-height: 1.5;
}

.buyback-page .buyback-info-grid {
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
  gap: 16px;
}

.buyback-page .buyback-info-card {
  min-height: 0;
  padding: 22px;
  background:
    linear-gradient(145deg, rgba(255, 250, 241, 0.9), rgba(246, 241, 232, 0.76)),
    url("assets/chair-exchange/backgrounds/warm-card-texture.svg");
  border: 1px solid rgba(36, 35, 31, 0.08);
  border-radius: 24px;
  box-shadow: 0 18px 52px rgba(36, 35, 31, 0.06);
}

.buyback-page .buyback-info-card-primary {
  grid-row: 1 / span 3;
  padding: clamp(28px, 3vw, 38px);
  background:
    radial-gradient(70% 46% at 18% 0%, rgba(83, 107, 87, 0.14), transparent 72%),
    linear-gradient(145deg, rgba(255, 250, 241, 0.96), rgba(238, 242, 238, 0.62));
}

.buyback-info-card .detail-card-header {
  gap: 14px;
  align-items: center;
}

.buyback-icon-shell {
  display: grid;
  flex: 0 0 auto;
  width: 58px;
  height: 58px;
  place-items: center;
  color: var(--accent-dark);
  background: rgba(216, 226, 214, 0.74);
  border-radius: 18px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.64);
}

.buyback-info-card-primary .buyback-icon-shell {
  width: 70px;
  height: 70px;
  border-radius: 22px;
}

.buyback-line-icon {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.buyback-info-card-primary .buyback-line-icon {
  width: 40px;
  height: 40px;
}

.buyback-info-card h3 {
  max-width: none;
  margin: 0;
  color: var(--accent-dark);
  font-size: 22px;
  font-weight: 820;
  line-height: 1.08;
}

.buyback-info-card-primary h3 {
  font-size: clamp(28px, 3vw, 38px);
  letter-spacing: var(--section-title-letter-spacing);
}

.buyback-info-card p,
.brand-buy-list,
.decline-list {
  color: #565249;
  font-size: 14px;
  line-height: 1.42;
}

.buyback-info-card-primary .check-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 18px;
  margin-top: 26px;
  font-size: 15px;
}

.buyback-info-card .check-list {
  margin-top: 16px;
}

.buyback-page .detail-summary {
  display: block;
  margin-top: 12px;
}

@media (max-width: 1080px) {
  .buyback-hero-panel {
    grid-template-columns: 1fr;
    min-height: 0;
    border-radius: 28px;
  }

  .buyback-hero-copy {
    max-width: 760px;
    padding: clamp(34px, 6vw, 56px) clamp(22px, 5vw, 44px) 26px;
  }

  .buyback-hero-panel .buyback-hero-media {
    min-height: clamp(280px, 42vw, 390px);
    margin-right: 0;
    border-radius: 18px;
  }

  .buyback-hero-panel .buyback-hero-media::before {
    width: 100%;
    background: linear-gradient(180deg, rgba(251, 246, 237, 0.7) 0%, rgba(251, 246, 237, 0) 55%);
  }

  .buyback-hero-panel .buyback-hero-media::after {
    display: none;
  }

  .buyback-hero-panel .buyback-hero-media img {
    object-position: 74% 50%;
  }

  .buyback-info-heading,
  .buyback-page .buyback-info-grid {
    grid-template-columns: 1fr;
  }

  .buyback-info-heading .eyebrow,
  .buyback-info-heading h2,
  .buyback-info-heading p:not(.eyebrow) {
    grid-column: 1;
    grid-row: auto;
  }

  .buyback-page .buyback-info-card-primary {
    grid-row: auto;
  }
}

@media (max-width: 1240px) {
  .buyback-hero-panel {
    grid-template-columns: 1fr;
  }

  .buyback-hero-panel .buyback-hero-media {
    min-height: clamp(260px, 34vw, 360px);
  }
}

@media (max-width: 760px) {
  .buyback-page .buyback-section {
    padding-right: 18px;
    padding-left: 18px;
  }

  .buyback-page .buyback-hero-copy h2 {
    max-width: 9ch;
    font-size: clamp(46px, 14vw, 58px);
    line-height: 0.96;
  }

  .buyback-lede {
    max-width: 34ch;
  }

  .buyback-hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
    margin-top: 24px;
  }

  .buyback-hero-actions .button {
    width: min(100%, 320px);
  }

  .buyback-secondary-cta {
    min-width: 0;
  }

  .buyback-hero-copy .buyback-trust-row {
    display: flex;
    gap: 9px 14px;
    margin-top: 18px;
  }

  .buyback-hero-panel .buyback-hero-media {
    min-height: 220px;
  }

  .buyback-hero-panel .buyback-hero-media img {
    object-position: 70% 50%;
  }

  .buyback-info-heading h2 {
    font-size: 38px;
  }

  .buyback-info-card-primary .check-list {
    grid-template-columns: 1fr;
  }

  .buyback-info-card .detail-card-header {
    align-items: flex-start;
  }
}

/* Accessories catalog refinement */
.accessories-page {
  background:
    radial-gradient(46% 20% at 10% 22%, rgba(83, 107, 87, 0.1), transparent 70%),
    radial-gradient(38% 18% at 92% 16%, rgba(83, 107, 87, 0.09), transparent 72%),
    var(--paper);
}

.accessories-page .accessories-section {
  max-width: 1500px;
  padding-top: clamp(24px, 4vw, 46px);
  padding-bottom: clamp(56px, 7vw, 92px);
}

.accessories-hero {
  align-items: stretch;
  grid-template-columns: minmax(0, 1.25fr) minmax(360px, 0.75fr);
  gap: clamp(16px, 3vw, 34px);
  margin-bottom: clamp(18px, 3vw, 28px);
}

.accessories-hero-copy {
  display: grid;
  align-content: center;
  max-width: 720px;
  min-height: clamp(280px, 24vw, 350px);
  padding: clamp(24px, 3vw, 36px);
  background:
    linear-gradient(135deg, rgba(255, 250, 241, 0.92), rgba(245, 240, 231, 0.66)),
    url("assets/chair-exchange/backgrounds/warm-card-texture.svg");
  border: 1px solid rgba(36, 35, 31, 0.08);
  border-radius: 28px;
  box-shadow: 0 20px 60px rgba(36, 35, 31, 0.06);
}

.accessories-hero .accessories-hero-copy h1 {
  max-width: 720px;
  margin: 0;
  color: var(--accent-dark);
  font-family: var(--font-display);
  font-size: clamp(56px, 6vw, 88px);
  font-weight: var(--display-weight);
  letter-spacing: var(--display-letter-spacing);
  line-height: var(--display-line-height);
}

.accessories-hero-copy > p:not(.eyebrow) {
  max-width: 620px;
  margin-top: 18px;
  color: #4f4c45;
  font-size: clamp(16px, 1.25vw, 19px);
  line-height: 1.48;
}

.accessories-hero .accessory-category-row {
  gap: 9px;
  margin: clamp(20px, 3vw, 28px) 0 0;
}

.accessory-chip {
  min-height: 36px;
  padding: 8px 14px;
  color: var(--accent-dark);
  background: rgba(255, 250, 241, 0.76);
  border-color: rgba(83, 107, 87, 0.22);
  box-shadow: none;
}

.accessory-chip.is-current,
.accessory-chip:hover,
.accessory-chip:focus-visible {
  color: #fff;
  background: var(--accent-dark);
  border-color: var(--accent-dark);
}

.accessory-kit-panel {
  position: relative;
  display: grid;
  gap: 18px;
  align-content: start;
  min-height: clamp(280px, 24vw, 350px);
  padding: clamp(22px, 2.5vw, 28px);
  overflow: hidden;
  background:
    radial-gradient(80% 60% at 100% 0%, rgba(83, 107, 87, 0.18), transparent 70%),
    linear-gradient(145deg, rgba(241, 246, 239, 0.86), rgba(255, 250, 241, 0.9));
  border: 1px solid rgba(83, 107, 87, 0.14);
  border-radius: 28px;
  box-shadow: 0 20px 58px rgba(36, 35, 31, 0.06);
}

.accessory-kit-panel::before {
  position: absolute;
  right: -70px;
  bottom: -88px;
  width: 260px;
  height: 210px;
  pointer-events: none;
  content: "";
  background: rgba(83, 107, 87, 0.1);
  border-radius: 52% 48% 44% 56% / 50% 44% 56% 50%;
}

.accessory-kit-copy,
.accessory-kit-grid {
  position: relative;
}

.accessory-kit-label {
  margin: 0 0 10px;
  color: rgba(25, 54, 39, 0.72);
  font-size: 11px;
  font-weight: 860;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.accessory-kit-panel h2 {
  max-width: 11ch;
  margin: 0;
  color: var(--accent-dark);
  font-family: var(--font-display);
  font-size: clamp(30px, 3vw, 42px);
  font-weight: var(--section-title-weight);
  letter-spacing: var(--section-title-letter-spacing);
  line-height: var(--section-title-line-height);
}

.accessory-kit-panel p:not(.accessory-kit-label) {
  max-width: 36ch;
  margin: 12px 0 0;
  color: #535047;
  font-size: 14px;
  line-height: 1.48;
}

.accessory-kit-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.accessory-mini-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  min-height: 66px;
  padding: 10px;
  color: var(--accent-dark);
  background: rgba(255, 250, 241, 0.62);
  border: 1px solid rgba(83, 107, 87, 0.12);
  border-radius: 18px;
}

.accessory-mini-card span:last-child {
  min-width: 0;
  font-size: 13px;
  font-weight: 780;
  line-height: 1.15;
}

.accessory-icon-shell {
  display: grid;
  flex: 0 0 auto;
  width: 48px;
  height: 48px;
  place-items: center;
  color: var(--accent-dark);
  background: rgba(216, 226, 214, 0.78);
  border-radius: 16px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.68);
}

.accessory-line-icon {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.accessory-shop-layout {
  gap: 14px;
}

.accessory-shop-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.78fr);
  gap: clamp(18px, 4vw, 56px);
  align-items: end;
  margin-bottom: 2px;
}

.accessory-shop-heading h2 {
  margin: 0;
  color: var(--accent-dark);
  font-family: var(--font-display);
  font-size: clamp(34px, 3.8vw, 54px);
  font-weight: var(--section-title-weight);
  letter-spacing: var(--section-title-letter-spacing);
  line-height: var(--section-title-line-height);
}

.accessory-shop-heading p {
  max-width: 520px;
  margin: 0;
  color: #565249;
  font-size: 15px;
  line-height: 1.45;
}

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

.accessory-card {
  background:
    linear-gradient(145deg, rgba(255, 250, 241, 0.95), rgba(246, 241, 232, 0.78)),
    url("assets/chair-exchange/backgrounds/warm-card-texture.svg");
  border-color: rgba(36, 35, 31, 0.08);
  border-radius: 22px;
  box-shadow: 0 14px 42px rgba(36, 35, 31, 0.045);
}

.accessory-media {
  min-height: 116px;
  background:
    radial-gradient(circle at 50% 45%, rgba(83, 107, 87, 0.12), rgba(83, 107, 87, 0) 58%),
    rgba(235, 228, 216, 0.36);
}

.accessory-card-icon {
  width: 64px;
  height: 64px;
  border-radius: 20px;
}

.accessory-card-icon .accessory-line-icon {
  width: 38px;
  height: 38px;
}

.accessory-card-body {
  gap: 9px;
  padding: 15px;
}

.accessory-card h2 {
  color: var(--accent-dark);
  font-size: 19px;
  letter-spacing: var(--section-title-letter-spacing);
}

.accessory-fit-note {
  padding-top: 2px;
  color: #3d4f43;
  font-size: 12px;
  font-weight: 720;
}

.accessory-meta {
  margin-top: 2px;
}

.accessory-view {
  width: 100%;
  min-height: 38px;
  color: #fff;
  background: var(--accent-dark);
  border-color: var(--accent-dark);
}

.accessory-card:hover .accessory-view,
.accessory-card:focus-within .accessory-view {
  background: #173526;
}

@media (max-width: 1180px) {
  .accessories-hero {
    grid-template-columns: 1fr;
  }

  .accessories-hero-copy,
  .accessory-kit-panel {
    min-height: 0;
  }

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

@media (max-width: 760px) {
  .accessories-page .accessories-section {
    padding-right: 18px;
    padding-left: 18px;
  }

  .accessories-hero {
    gap: 14px;
    margin-bottom: 14px;
  }

  .accessories-hero-copy,
  .accessory-kit-panel {
    padding: 18px;
    border-radius: 22px;
  }

  .accessory-kit-panel {
    gap: 10px;
    padding: 16px;
  }

  .accessory-kit-panel h2 {
    max-width: none;
    font-size: 26px;
    line-height: 0.96;
  }

  .accessory-kit-label {
    margin-bottom: 6px;
  }

  .accessory-kit-panel p:not(.accessory-kit-label) {
    margin-top: 6px;
    font-size: 12px;
    line-height: 1.35;
  }

  .accessories-hero .accessories-hero-copy h1 {
    font-size: clamp(42px, 12vw, 50px);
    line-height: 0.94;
  }

  .accessories-hero-copy > p:not(.eyebrow) {
    font-size: 15px;
  }

  .accessories-hero .accessory-category-row {
    flex-wrap: nowrap;
    gap: 8px;
    margin-top: 18px;
    padding-bottom: 2px;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .accessories-hero .accessory-category-row::-webkit-scrollbar {
    display: none;
  }

  .accessories-hero .accessory-chip {
    flex: 0 0 auto;
    min-height: 34px;
    padding: 7px 12px;
  }

  .accessory-shop-heading,
  .accessory-grid {
    grid-template-columns: 1fr;
  }

  .accessory-shop-heading {
    gap: 8px;
  }

  .accessory-shop-heading h2 {
    font-size: 32px;
  }

  .accessory-shop-heading p {
    font-size: 14px;
  }

  .accessory-kit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
  }

  .accessory-mini-card {
    gap: 6px;
    min-height: 46px;
    padding: 6px;
  }

  .accessory-mini-card .accessory-icon-shell {
    width: 32px;
    height: 32px;
    border-radius: 12px;
  }

  .accessory-mini-card .accessory-line-icon {
    width: 20px;
    height: 20px;
  }
}

@media (min-width: 1081px) {
  .navbar,
  .home-page .navbar {
    min-height: 72px;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .brand-lockup,
  .home-page .brand-lockup {
    width: clamp(188px, 12vw, 224px);
  }

  .section,
  .accessories-page .accessories-section,
  .accessory-product-section,
  .cart-section,
  .checkout-section,
  .orders-section,
  .inventory-product-section {
    padding-top: clamp(34px, 4vw, 58px);
  }

  .inventory-page .inventory-section {
    padding-top: clamp(26px, 3vw, 42px);
  }

  .buyback-page .buyback-section {
    padding-top: clamp(12px, 2vw, 26px);
  }

  .contact-section,
  .contact-page .contact-section {
    align-items: start;
    padding-top: clamp(22px, 3vw, 38px);
  }

  .planning-page .space-section {
    margin-top: clamp(10px, 1.8vw, 24px);
    padding-top: 10px;
  }

  .contact-copy {
    position: relative;
    top: auto;
    transform: translateY(calc(-1 * clamp(10px, 1.2vw, 18px)));
  }

  .lead-form {
    align-self: start;
  }

  .brand-band {
    margin-top: clamp(18px, 2.4vw, 32px);
    padding-top: clamp(42px, 5vw, 64px);
    padding-bottom: clamp(44px, 5.6vw, 72px);
  }

  .planning-hero-content {
    align-content: start;
    padding-top: clamp(44px, 4.4vw, 64px);
  }

  .buyback-hero-copy {
    padding-top: clamp(36px, 4vw, 58px);
  }

  .order-lookup-page .orders-section {
    gap: 16px;
    padding-top: clamp(18px, 2.2vw, 32px);
  }

  .order-lookup-page .accessory-step-heading {
    max-width: min(760px, 58vw);
    margin-bottom: 8px;
  }

  .order-lookup-page .accessory-step-heading h1 {
    max-width: 12ch;
    font-size: clamp(48px, 5.1vw, 72px);
  }

  .order-lookup-page .accessory-step-heading p:not(.eyebrow) {
    max-width: 42ch;
    margin-top: 10px;
    font-size: clamp(16px, 1.45vw, 20px);
  }

  .order-lookup-page .member-dashboard-panel {
    margin-top: 0;
    padding: 20px 24px;
  }

  .home-page .hero,
  .home-page .hero-content {
    min-height: 490px;
  }

  .home-page .hero-content {
    padding-top: 46px;
    padding-bottom: 104px;
  }

  .home-page .hero-copy {
    margin-top: 18px;
  }

  .home-page .hero-actions {
    margin-top: 24px;
  }

  .home-page .intro-strip {
    margin-top: 0;
  }
}

@media (min-width: 1081px) and (max-width: 1240px) {
  .navbar,
  .home-page .navbar {
    gap: 16px;
    padding-right: 24px;
    padding-left: 24px;
  }

  .brand-lockup,
  .home-page .brand-lockup {
    width: 180px;
  }

  .nav-links,
  .home-page .nav-links {
    gap: 14px;
    font-size: 13px;
  }

  .nav-cta,
  .home-page .nav-cta {
    min-height: 46px;
    padding: 0 18px;
    font-size: 14px;
  }
}

/* Final mobile preflight overrides. Keep these last so later page modules cannot widen the viewport. */
@media (max-width: 1080px) {
  .navbar,
  .home-page .navbar {
    box-sizing: border-box;
    grid-template-columns: minmax(0, 1fr) auto auto;
    gap: 12px;
    width: 100%;
    max-width: 100vw;
  }

  .brand,
  .home-page .brand {
    grid-row: 1;
    grid-column: 1;
    min-width: 0;
  }

  .menu-toggle,
  .home-page .menu-toggle {
    display: grid;
    grid-row: 1;
    grid-column: 3;
    align-self: center;
    width: 48px;
    min-width: 48px;
    height: 48px;
    justify-self: end;
    place-items: center;
    background: transparent;
  }

  .nav-account-link,
  .home-page .nav-account-link {
    grid-row: 1;
    grid-column: 2;
    align-self: center;
    width: 42px;
    min-width: 42px;
    height: 42px;
    justify-self: end;
  }

  .brand-lockup,
  .home-page .brand-lockup {
    max-width: min(220px, calc(100vw - 154px));
  }

  .nav-links,
  .home-page .nav-links {
    box-sizing: border-box;
    position: fixed;
    top: var(--header-height, 76px);
    right: 18px;
    left: 18px;
    display: none;
    grid-template-columns: minmax(0, 1fr);
    align-items: stretch;
    width: auto;
    max-width: none;
    max-height: calc(100dvh - var(--header-height, 76px) - 18px);
    overflow: auto;
    padding: 10px 18px 18px;
    color: #1f241f;
    background: rgba(255, 252, 246, 0.98);
    border: 1px solid rgba(31, 39, 32, 0.14);
    border-radius: 0 0 18px 18px;
    box-shadow: 0 24px 60px rgba(36, 35, 31, 0.18);
    z-index: 1000;
  }

  body.menu-open .nav-links,
  body.menu-open .home-page .nav-links {
    display: grid !important;
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
  }
}

@media (max-width: 760px) {
  html,
  body,
  .site-header,
  main,
  .page-main,
  .section,
  .contact-section {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
  }

  .navbar,
  .home-page .navbar {
    position: relative;
    overflow: visible;
    padding-right: 18px;
    padding-left: 18px;
  }

  .site-header,
  .home-page .site-header {
    overflow: visible;
  }

  .nav-links,
  .home-page .nav-links {
    top: 70px;
    right: 12px;
    left: 12px;
    max-height: calc(100dvh - 82px);
  }

  .brand-lockup,
  .home-page .brand-lockup {
    width: min(190px, calc(100vw - 154px));
  }

  .section,
  .contact-section {
    padding-right: 18px;
    padding-left: 18px;
  }

  .catalog-heading,
  .catalog-title,
  .catalog-summary,
  .inventory-brand-nav,
  .inventory-brand-section,
  .inventory-brand-section-head,
  .contact-copy,
  .lead-form,
  .form-grid,
  .site-footer {
    min-width: 0;
    max-width: calc(100vw - 36px);
  }

  .catalog-heading,
  .contact-section,
  .form-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .catalog-heading h2,
  .contact-copy h2,
  .catalog-summary p,
  .contact-copy p:not(.eyebrow),
  .contact-help-card p,
  .catalog-heading .eyebrow,
  .contact-copy .eyebrow,
  .inventory-brand-section-head p {
    width: calc(100vw - 36px);
    max-width: calc(100vw - 36px);
    min-width: 0;
    white-space: normal;
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .catalog-heading h2,
  .contact-copy h2 {
    font-size: clamp(30px, 9vw, 36px);
    line-height: 1.02;
  }

  .inventory-brand-tabs {
    max-width: 100%;
    min-width: 0;
    display: flex;
    gap: 6px;
    padding-bottom: 4px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .inventory-brand-tab {
    flex: 0 0 auto;
    width: auto;
    max-width: 64vw;
    min-width: clamp(92px, 27vw, 116px);
    min-height: 42px;
    padding: 0 9px;
  }

  .inventory-brand-tab span {
    font-size: clamp(10px, 2.8vw, 12px);
  }

  .inventory-brand-tab small {
    min-width: 22px;
    height: 22px;
    padding: 0 6px;
    font-size: 10px;
  }

  .contact-section {
    gap: 22px;
    padding-top: 20px;
  }

  .contact-copy .eyebrow {
    margin-bottom: 8px;
  }

  .order-lookup-page .orders-section {
    gap: 18px;
    padding-top: 26px;
  }

  .order-lookup-page .accessory-step-heading h1 {
    max-width: 10.5ch;
    font-size: clamp(38px, 12vw, 48px);
  }

  .order-lookup-page .accessory-step-heading p:not(.eyebrow) {
    max-width: 31ch;
    font-size: 17px;
  }

  .order-lookup-page .member-dashboard-panel {
    padding: 18px;
  }

  .contact-help-card {
    width: calc(100vw - 36px);
    max-width: calc(100vw - 36px);
    margin-top: 22px;
  }

  .lead-form {
    width: calc(100vw - 36px);
    padding: 18px;
  }

  .menu-toggle span:not(.sr-only),
  .home-page .menu-toggle span:not(.sr-only) {
    width: 22px;
    height: 1.5px;
  }

  .menu-toggle,
  .home-page .menu-toggle {
    position: relative;
    top: auto;
    right: auto;
    left: auto;
    z-index: 3;
    display: grid;
    background: transparent;
    box-shadow: none;
    transform: none;
  }
}

@media (max-width: 760px) {
  .catalog-heading h2 {
    width: auto;
    max-width: 11.5ch;
  }

  .contact-copy h2 {
    width: auto;
    max-width: 12ch;
  }

  .catalog-summary p,
  .contact-copy p:not(.eyebrow),
  .contact-help-card p,
  .inventory-brand-section-head p,
  .product-body p {
    width: auto;
    max-width: min(31ch, calc(100vw - 36px));
  }

  .contact-help-card,
  .lead-form,
  .inventory-brand-nav,
  .inventory-brand-section {
    width: auto;
    max-width: 100%;
  }

  .contact-copy .eyebrow {
    width: auto;
    max-width: 24ch;
  }
}
