:root {
  color: #231f20;
  background: #f7f4f1;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    "PingFang SC", "Microsoft YaHei", sans-serif;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  --ink: #231f20;
  --muted: #706b67;
  --paper: #f7f4f1;
  --line: #e0d9d3;
  --brand: #8b1e2d;
  --wine: #4b2634;
  --coral: #d56f52;
  --blue: #176d8f;
  --cream: #fffaf6;
  --white: #ffffff;
  --shadow: 0 22px 52px rgba(35, 31, 32, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  cursor: pointer;
}

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

img {
  max-width: 100%;
}

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

h1 {
  margin-bottom: 18px;
  color: var(--ink);
  font-size: 58px;
  line-height: 1.02;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

h2 {
  margin-bottom: 16px;
  color: var(--ink);
  font-size: 40px;
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.22;
}

.site-shell {
  min-height: 100vh;
  overflow: hidden;
  background: var(--paper);
}

body.site-shell {
  overflow-x: hidden;
  overflow-y: auto;
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  background: rgba(255, 250, 246, 0.96);
  border-bottom: 1px solid rgba(35, 31, 32, 0.1);
  backdrop-filter: blur(18px);
}

.nav-row {
  display: grid;
  grid-template-columns: minmax(150px, 220px) 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: 76px;
  padding: 0 40px;
}

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

.brand-logo {
  display: block;
  width: 210px;
  height: 48px;
  overflow: hidden;
}

.brand-logo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  color: #362f31;
  font-size: 14px;
  font-weight: 850;
}

.main-nav a {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  background: transparent;
  border: 0;
  color: inherit;
  letter-spacing: 0;
}

.main-nav a.is-active {
  color: var(--brand);
}

.header-actions {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
}

.icon-button {
  display: inline-flex;
  width: 44px;
  min-width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  transition:
    color 160ms ease,
    background-color 160ms ease,
    border-color 160ms ease,
    transform 160ms ease;
}

.icon-button:hover {
  color: var(--brand);
  background: var(--cream);
  border-color: rgba(139, 30, 45, 0.42);
  transform: translateY(-1px);
}

.icon-button:active {
  transform: translateY(0);
}

.icon-button:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 2px;
}

.header-action-icon {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.header-action-icon--mail {
  width: 19px;
  height: 19px;
}

.lang-toggle span {
  font-size: 14px;
  font-weight: 850;
  letter-spacing: 0.04em;
  line-height: 1;
}

.menu-button {
  display: none;
}

.hero-section {
  position: relative;
  display: flex;
  min-height: calc(100vh - 112px);
  align-items: flex-end;
  padding: 96px 40px 72px;
  color: var(--white);
  background: var(--ink);
  overflow: hidden;
}

.hero-section::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(20, 17, 18, 0.82) 0%, rgba(20, 17, 18, 0.55) 38%, rgba(20, 17, 18, 0.08) 78%),
    linear-gradient(0deg, rgba(20, 17, 18, 0.7) 0%, rgba(20, 17, 18, 0.06) 48%);
}

.hero-image {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% 12%;
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(100%, 650px);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--brand);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-copy .eyebrow {
  color: #ffcfbd;
}

.hero-copy h1 {
  color: var(--white);
}

.hero-lead,
.page-intro > p,
.section-heading > p,
.editorial-copy p:not(.eyebrow),
.promo-feature p,
.wholesale-copy p:not(.eyebrow),
.guide-card p,
.story-grid p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.hero-copy .hero-lead {
  color: rgba(255, 255, 255, 0.82);
}

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

.primary-button,
.secondary-button,
.text-link {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border-radius: 4px;
  font-weight: 850;
}

.primary-button {
  padding: 0 20px;
  color: var(--white);
  background: var(--brand);
  border: 1px solid var(--brand);
}

.secondary-button {
  padding: 0 20px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid #d6c9c1;
}

.button-icon {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.text-link {
  min-height: 36px;
  color: var(--brand);
}

.proof-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.proof-item {
  display: flex;
  min-height: 96px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 24px 34px;
  background: var(--cream);
  color: #392f34;
  font-weight: 850;
  text-align: center;
}

.proof-item svg,
.product-copy li svg,
.guide-card svg {
  flex: 0 0 auto;
  color: var(--blue);
}

.category-section,
.featured-products-section,
.audience-section {
  padding: 72px 40px;
}

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

.category-section-heading,
.compact-section-heading {
  display: flex;
  max-width: 1220px;
  align-items: flex-end;
  justify-content: space-between;
  gap: 36px;
  margin: 0 auto 30px;
}

.category-section-heading > div,
.compact-section-heading > div {
  max-width: 680px;
}

.category-section-heading h2,
.compact-section-heading h2 {
  margin-bottom: 0;
}

.compact-section-heading > p {
  max-width: 520px;
  margin-bottom: 3px;
  color: var(--muted);
  line-height: 1.65;
}

.tile-section {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 18px;
  max-width: 1220px;
  margin: 0 auto;
}

.feature-tile {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  background: var(--ink);
  border-radius: 4px;
  color: var(--white);
}

.feature-tile.is-large {
  min-height: 360px;
}

.feature-tile::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(0deg, rgba(20, 17, 18, 0.72), rgba(20, 17, 18, 0.02) 58%);
}

.feature-tile img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 260ms ease;
}

.feature-tile:hover img {
  transform: scale(1.035);
}

.feature-tile span,
.feature-tile strong {
  position: absolute;
  z-index: 1;
  left: 28px;
  right: 28px;
}

.feature-tile span {
  bottom: 58px;
  font-size: 28px;
  font-weight: 900;
}

.feature-tile strong {
  bottom: 30px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
}

.featured-products-section {
  background: var(--paper);
}

.home-product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 1220px;
  margin: 0 auto;
}

.home-product-card {
  min-width: 0;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 4px;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.home-product-card:hover {
  box-shadow: 0 16px 36px rgba(35, 31, 32, 0.1);
  transform: translateY(-2px);
}

.home-product-image {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #eee5df;
}

.home-product-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 260ms ease;
}

.home-product-card:hover .home-product-image img {
  transform: scale(1.025);
}

.home-product-image span {
  position: absolute;
  left: 14px;
  bottom: 14px;
  padding: 6px 9px;
  color: var(--white);
  background: rgba(35, 31, 32, 0.82);
  border-radius: 3px;
  font-size: 12px;
  font-weight: 850;
}

.home-product-copy {
  padding: 20px;
}

.home-product-copy small {
  display: block;
  margin-bottom: 8px;
  color: var(--brand);
  font-size: 12px;
  font-weight: 900;
}

.home-product-copy ul {
  display: grid;
  gap: 6px;
  min-height: 50px;
  margin: 0 0 16px;
  padding-left: 18px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.home-product-copy strong {
  color: var(--brand);
  font-size: 14px;
}

.section-block,
.page-section {
  padding: 88px 40px;
}

.section-heading,
.page-intro {
  display: grid;
  grid-template-columns: minmax(250px, 430px) minmax(280px, 660px);
  gap: 54px;
  align-items: end;
  max-width: 1220px;
  margin: 0 auto 34px;
}

.section-heading .eyebrow,
.page-intro .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -38px;
}

.section-heading h2,
.section-heading p,
.page-intro h1,
.page-intro p {
  margin-bottom: 0;
}

.collection-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  max-width: 1220px;
  margin: 0 auto;
}

.collection-card,
.product-card,
.guide-card,
.story-grid article,
.placeholder-box,
.table-panel,
.inquiry-form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 4px;
}

.collection-card {
  overflow: hidden;
}

.collection-card img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.collection-card div {
  padding: 18px;
}

.collection-card p {
  min-height: 76px;
  margin-bottom: 16px;
  color: var(--muted);
  line-height: 1.55;
}

.collection-card span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--brand);
  font-weight: 850;
}

.editorial-band,
.promo-feature {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(320px, 0.9fr);
  gap: 54px;
  align-items: center;
}

.editorial-band {
  padding: 72px 40px;
  background: #2a2227;
}

.editorial-copy {
  justify-self: end;
  width: min(100%, 620px);
}

.editorial-copy h2 {
  color: var(--white);
}

.editorial-copy p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.74);
}

.editorial-band img,
.promo-feature img {
  width: min(100%, 560px);
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 4px;
}

.promo-feature {
  padding: 72px 40px;
  background: var(--cream);
  border-top: 1px solid var(--line);
}

.promo-feature img {
  object-position: center 22%;
}

.promo-feature > div {
  width: min(100%, 620px);
}

.audience-section {
  background: var(--white);
  border-top: 1px solid var(--line);
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  max-width: 1220px;
  margin: 0 auto;
}

.audience-grid article {
  padding: 30px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 4px;
}

.audience-grid h3 {
  font-size: 24px;
}

.audience-grid article > p:not(.audience-label) {
  max-width: 540px;
  margin-bottom: 22px;
  color: var(--muted);
  line-height: 1.65;
}

.audience-label {
  margin-bottom: 10px;
  color: var(--brand);
  font-size: 12px;
  font-weight: 900;
}

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

.catalog-layout {
  display: grid;
  grid-template-columns: 236px 1fr;
  gap: 28px;
  max-width: 1220px;
  margin: 0 auto;
}

.catalog-page {
  padding-top: 42px;
}

.catalog-sidebar {
  position: sticky;
  top: 96px;
  display: grid;
  align-self: start;
  gap: 16px;
}

.filter-list {
  display: grid;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 4px;
}

.filter-list a {
  display: flex;
  min-height: 44px;
  align-items: center;
  padding: 0 14px;
  color: var(--ink);
  background: var(--white);
  border: 0;
  border-bottom: 1px solid var(--line);
  text-align: left;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.35;
}

.filter-list a:last-child {
  border-bottom: 0;
}

.filter-list a.is-active {
  color: var(--white);
  background: var(--wine);
}

.placeholder-box {
  padding: 18px;
}

.placeholder-box strong {
  display: block;
  margin-bottom: 8px;
  font-size: 15px;
  line-height: 1.35;
}

.placeholder-box p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

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

.product-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
}

.product-image {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #eee5df;
}

.product-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 260ms ease;
}

.product-card:hover .product-image img {
  transform: scale(1.035);
}

.product-image span {
  position: absolute;
  left: 12px;
  bottom: 12px;
  padding: 7px 10px;
  color: var(--white);
  background: rgba(35, 31, 32, 0.82);
  border-radius: 4px;
  font-size: 12px;
  font-weight: 850;
}

.product-copy {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 18px;
}

.product-copy small {
  display: block;
  margin-bottom: 8px;
  color: var(--brand);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.45;
}

.product-copy h3 {
  margin-bottom: 12px;
  font-size: 19px;
  line-height: 1.32;
}

.product-copy ul {
  display: grid;
  gap: 7px;
  margin: 0;
  padding: 0;
  color: var(--muted);
  font-size: 14px;
  list-style: none;
}

.product-copy li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.38;
}

.product-copy li svg,
.product-copy li span[aria-hidden="true"] {
  margin-top: 2px;
  color: var(--coral);
}

.product-specs {
  display: grid;
  gap: 7px;
  margin: 14px 0 0;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.product-specs div {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.product-specs dt,
.product-specs dd {
  margin: 0;
  line-height: 1.45;
}

.product-specs dt {
  flex: 0 0 auto;
  min-width: 40px;
  padding: 2px 6px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 3px;
  color: var(--brand);
  font-size: 11px;
  font-weight: 850;
  text-align: center;
}

.product-specs dd {
  min-width: 0;
  color: #514a47;
  font-size: 13px;
  font-weight: 750;
}

.header-actions .icon-button {
  text-decoration: none;
}

.guide-card > span[aria-hidden="true"],
.proof-item > span[aria-hidden="true"] {
  flex: 0 0 auto;
  color: var(--blue);
  font-weight: 900;
}

.inquiry-form button[type="submit"] {
  border: 1px solid var(--brand);
}

.guide-grid,
.fit-note-grid,
.story-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 1220px;
  margin: 0 auto 24px;
}

.guide-card,
.fit-note-grid article,
.story-grid article {
  padding: 24px;
}

.guide-card h3 {
  margin-top: 18px;
}

.guide-card p,
.fit-note-grid p,
.story-grid p {
  margin-bottom: 0;
  font-size: 16px;
}

.fit-page {
  padding-top: 42px;
}

.fit-note-grid {
  margin-top: 24px;
  margin-bottom: 0;
}

.fit-note-grid article {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 4px;
}

.table-panel {
  max-width: 1220px;
  margin: 0 auto;
  padding: 26px;
}

.table-panel h2 {
  font-size: 28px;
}

.size-table {
  display: grid;
  border: 1px solid var(--line);
}

.table-row {
  display: grid;
  grid-template-columns: 160px 1fr 1fr;
  gap: 1px;
  background: var(--line);
  border-bottom: 1px solid var(--line);
}

.table-row:last-child {
  border-bottom: 0;
}

.table-row > * {
  padding: 14px;
  background: var(--cream);
  line-height: 1.45;
}

.brand-page {
  display: grid;
  gap: 44px;
  padding-top: 42px;
}

.brand-story-hero {
  display: grid;
  grid-template-columns: minmax(360px, 0.9fr) minmax(360px, 1.1fr);
  max-width: 1220px;
  margin: 0 auto;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 4px;
}

.brand-story-media {
  min-height: 500px;
}

.brand-story-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 52% 18%;
}

.brand-story-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 48px;
}

.brand-story-copy h1 {
  max-width: 780px;
  margin-bottom: 18px;
  font-size: 42px;
  line-height: 1.18;
}

.brand-story-copy p:not(.eyebrow) {
  max-width: 760px;
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.brand-story-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.brand-story-tags span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0 12px;
  color: var(--brand);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 4px;
  font-size: 13px;
  font-weight: 850;
}

.brand-story-grid,
.brand-scenario-grid,
.brand-system-strip {
  display: grid;
  gap: 18px;
}

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

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

.brand-system-strip {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 4px;
}

.brand-story-grid article,
.brand-scenario-grid article,
.brand-cta {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 4px;
}

.brand-story-grid article {
  min-height: 180px;
  padding: 24px;
}

.brand-scenario-grid article {
  display: grid;
  grid-template-rows: 170px auto;
  overflow: hidden;
}

.brand-scenario-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-scenario-grid article > div {
  padding: 22px;
}

.brand-system-strip article {
  min-height: 118px;
  padding: 20px;
  background: var(--cream);
}

.brand-story-grid h3,
.brand-scenario-grid h3 {
  margin-bottom: 12px;
  font-size: 23px;
  line-height: 1.28;
}

.brand-system-strip h3 {
  margin-bottom: 10px;
  color: var(--brand);
  font-size: 18px;
}

.brand-story-grid p,
.brand-scenario-grid p,
.brand-system-strip p,
.brand-cta p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.65;
}

.brand-section {
  display: grid;
  gap: 16px;
  max-width: 1220px;
  margin: 0 auto;
  width: 100%;
}

.brand-section-heading {
  max-width: 900px;
}

.brand-section-heading .eyebrow,
.brand-section-heading h2 {
  margin-bottom: 0;
}

.brand-section-heading .eyebrow {
  margin-bottom: 12px;
}

.brand-section-heading h2 {
  font-size: 40px;
  line-height: 1.18;
}

.brand-cta {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) auto;
  gap: 24px;
  align-items: center;
  max-width: 1220px;
  margin: 0 auto;
  padding: 28px;
  background: var(--cream);
}

.brand-cta h2 {
  margin-bottom: 10px;
  font-size: 28px;
}

.brand-cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.wholesale-page {
  background: var(--paper);
}

.wholesale-page .page-section {
  padding: 72px 40px;
}

.wholesale-inner {
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
}

.wholesale-hero {
  background:
    linear-gradient(135deg, rgba(139, 30, 45, 0.09), rgba(23, 109, 143, 0.08)),
    var(--paper);
}

.wholesale-inquiry-layout {
  display: grid;
  grid-template-areas:
    "copy form"
    "faq form";
  grid-template-columns: minmax(0, 0.43fr) minmax(0, 0.57fr);
  grid-template-rows: auto 1fr;
  align-items: start;
  column-gap: 56px;
  row-gap: 48px;
}

.wholesale-copy {
  grid-area: copy;
  max-width: 520px;
  padding-top: 28px;
}

.wholesale-copy::before {
  display: block;
  width: 28px;
  height: 3px;
  margin-bottom: 20px;
  background: var(--brand);
  content: "";
}

.wholesale-copy h1 {
  max-width: 520px;
  margin-bottom: 18px;
  font-size: clamp(42px, 4.2vw, 58px);
  line-height: 1.12;
  text-wrap: balance;
}

.wholesale-copy > p:not(.eyebrow) {
  max-width: 460px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.wholesale-faq-list p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.65;
}

.inquiry-form {
  position: relative;
  display: grid;
  grid-area: form;
  gap: 18px;
  width: 100%;
  max-width: 660px;
  justify-self: end;
  padding: 30px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  box-shadow: 0 12px 32px rgba(35, 31, 32, 0.07);
}

.inquiry-form-heading h2 {
  margin-bottom: 8px;
  font-size: 26px;
  line-height: 1.2;
  text-wrap: balance;
}

.inquiry-form-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.inquiry-form em {
  color: var(--brand);
  font-style: normal;
}

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

.inquiry-form label,
.inquiry-interest-fieldset {
  min-width: 0;
  color: #33292e;
  font-size: 14px;
  font-weight: 850;
}

.inquiry-form > label,
.inquiry-field-grid > label {
  display: grid;
  gap: 7px;
}

.inquiry-form input,
.inquiry-form select,
.inquiry-form textarea {
  width: 100%;
  min-height: 46px;
  padding: 10px 12px;
  color: var(--ink);
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 4px;
  outline: none;
}

.inquiry-form input:focus,
.inquiry-form select:focus,
.inquiry-form textarea:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(139, 30, 45, 0.09);
}

.inquiry-form textarea {
  min-height: 104px;
  resize: vertical;
}

.inquiry-form button[type="submit"]:disabled {
  cursor: wait;
  opacity: 0.68;
}

.inquiry-interest-fieldset {
  margin: 0;
  padding: 0;
  border: 0;
}

.inquiry-interest-fieldset legend {
  margin-bottom: 9px;
  padding: 0;
}

.inquiry-interest-fieldset > div {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.inquiry-interest-fieldset label,
.inquiry-privacy {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  padding: 10px 12px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 4px;
  cursor: pointer;
}

.inquiry-interest-fieldset input,
.inquiry-privacy input {
  width: 17px;
  min-width: 17px;
  height: 17px;
  min-height: 17px;
  margin: 2px 0 0;
  accent-color: var(--brand);
}

.inquiry-form > .inquiry-privacy {
  display: grid;
  grid-template-columns: 17px minmax(0, 1fr);
  align-items: start;
  column-gap: 9px;
  padding: 2px 0 0;
  color: var(--muted) !important;
  background: transparent;
  border: 0;
  border-radius: 0;
  font-size: 13px !important;
  font-weight: 650 !important;
  line-height: 1.5;
}

.inquiry-privacy > input[type="checkbox"] {
  grid-column: 1;
}

.inquiry-privacy > span {
  grid-column: 2;
  min-width: 0;
}

.inquiry-message {
  padding: 14px 16px;
  border: 1px solid;
  border-radius: 4px;
}

.inquiry-message strong {
  display: block;
  margin-bottom: 5px;
}

.inquiry-message p {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
}

.inquiry-message.is-success {
  color: #205c3a;
  background: #eef8f1;
  border-color: #b9dcc4;
}

.inquiry-message.is-error {
  color: #7c2632;
  background: #fff3f2;
  border-color: #e8b8b5;
}

.inquiry-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.wholesale-faq-panel {
  grid-area: faq;
  width: 100%;
  max-width: 480px;
}

.wholesale-faq-panel h2 {
  margin-bottom: 14px;
  font-size: 22px;
  line-height: 1.25;
}

.wholesale-faq-list {
  border-top: 1px solid var(--line);
}

.wholesale-faq-list details {
  border-bottom: 1px solid var(--line);
}

.wholesale-faq-list summary {
  position: relative;
  padding: 15px 30px 15px 0;
  color: var(--ink);
  font-size: 16px;
  font-weight: 850;
  list-style: none;
  cursor: pointer;
}

.wholesale-faq-list summary::-webkit-details-marker {
  display: none;
}

.wholesale-faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 2px;
  content: "+";
  color: var(--brand);
  font-size: 20px;
  font-weight: 500;
  transform: translateY(-52%);
}

.wholesale-faq-list details[open] summary::after {
  content: "−";
}

.wholesale-faq-list p {
  padding: 0 32px 16px 0;
  font-size: 14px;
}

.full-width {
  width: 100%;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 2.2fr);
  gap: 48px;
  padding: 48px 40px;
  color: rgba(255, 255, 255, 0.72);
  background: var(--ink);
}

.footer-brand-logo {
  width: 180px;
  height: 64px;
  overflow: hidden;
  margin-bottom: 16px;
  background: var(--white);
  border-radius: 4px;
}

.footer-brand-logo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.footer-brand p {
  max-width: 380px;
  margin-bottom: 16px;
  line-height: 1.65;
}

.footer-brand a,
.footer-links a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer-brand a {
  min-height: 38px;
  padding: 0 12px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 4px;
  font-size: 14px;
  font-weight: 850;
}

.footer-brand a:hover,
.footer-brand a:focus-visible {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.48);
}

.external-link-icon {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

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

.footer-links h3 {
  color: var(--white);
  font-size: 15px;
}

.footer-links a {
  display: flex;
  width: fit-content;
  min-height: 28px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.footer-legal {
  display: flex;
  grid-column: 1 / -1;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px 10px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 13px;
  text-align: center;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.72);
}

.footer-legal a::before {
  margin-right: 10px;
  content: "\00b7";
}

.footer-legal a:hover,
.footer-legal a:focus-visible {
  color: var(--white);
}

#fit-sizing,
#clothing-sizing,
#materials,
#care,
#inquiry {
  scroll-margin-top: 110px;
}

@media (max-width: 1100px) {
  h1 {
    font-size: 46px;
  }

  .nav-row {
    grid-template-columns: auto auto;
    justify-content: space-between;
    padding: 10px 22px;
  }

  .brand-logo {
    width: 180px;
  }

  .main-nav {
    position: fixed;
    top: 84px;
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 16px;
    background: var(--white);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

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

  .main-nav a {
    justify-content: flex-start;
    min-height: 42px;
  }

  .header-desktop-action {
    display: none;
  }

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

  .tile-section,
  .editorial-band,
  .promo-feature,
  .catalog-layout,
  .brand-story-hero,
  .brand-cta,
  .site-footer,
  .section-heading,
  .page-intro {
    grid-template-columns: 1fr;
  }

  .feature-tile,
  .feature-tile.is-large {
    min-height: 300px;
  }

  .catalog-sidebar {
    position: static;
    grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.6fr);
    gap: 18px;
  }

  .filter-list {
    display: flex;
    overflow-x: auto;
    scrollbar-width: thin;
  }

  .filter-list a {
    min-width: max-content;
    padding: 0 16px;
    border-right: 1px solid var(--line);
    border-bottom: 0;
  }

  .filter-list a:last-child {
    border-right: 0;
  }

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

  .guide-grid,
  .fit-note-grid,
  .brand-story-grid,
  .brand-scenario-grid,
  .brand-system-strip,
  .story-grid {
    grid-template-columns: 1fr;
  }

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

  .editorial-copy,
  .wholesale-copy,
  .brand-cta-actions {
    justify-self: stretch;
    width: 100%;
  }

  .brand-cta-actions {
    justify-content: flex-start;
  }

  .brand-section-heading {
    max-width: 100%;
  }

  .brand-section-heading h2 {
    font-size: 34px;
  }

  .brand-story-media {
    min-height: 420px;
  }

  .brand-story-copy {
    padding: 34px;
  }

  .brand-system-strip {
    gap: 1px;
  }

  .section-heading .eyebrow,
  .page-intro .eyebrow {
    grid-column: auto;
    margin-bottom: 0;
  }

  .category-section-heading,
  .compact-section-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

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

}

@media (max-width: 960px) {
  .wholesale-inquiry-layout {
    grid-template-areas:
      "copy"
      "form"
      "faq";
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 40px;
  }

  .wholesale-copy {
    max-width: 700px;
    padding-top: 0;
  }

  .wholesale-copy h1 {
    max-width: 680px;
  }

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

  .wholesale-faq-panel {
    max-width: 700px;
  }
}

@media (max-width: 680px) {
  .nav-row {
    min-height: 66px;
    padding: 8px 14px;
  }

  .brand-logo {
    width: 128px;
    height: 42px;
  }

  .header-actions {
    gap: 6px;
  }

  .main-nav {
    top: 74px;
  }

  .hero-section {
    min-height: 76vh;
    padding: 78px 20px 50px;
  }

  .hero-image {
    object-position: 56% 14%;
  }

  h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 30px;
  }

  .wholesale-page .wholesale-hero {
    padding: 50px 20px;
  }

  .wholesale-copy::before {
    width: 24px;
    margin-bottom: 16px;
  }

  .wholesale-copy h1 {
    margin-bottom: 18px;
    font-size: 36px;
    line-height: 1.12;
  }

  .wholesale-copy > p:not(.eyebrow) {
    font-size: 16px;
  }

  .wholesale-inquiry-layout {
    gap: 32px;
  }

  .inquiry-form {
    gap: 16px;
    padding: 20px;
  }

  .inquiry-form-heading h2 {
    font-size: 24px;
  }

  .inquiry-field-grid,
  .inquiry-interest-fieldset > div {
    grid-template-columns: 1fr;
  }

  .wholesale-faq-panel h2 {
    font-size: 20px;
  }

  .brand-story-media {
    min-height: 340px;
  }

  .brand-story-copy {
    padding: 26px;
  }

  .brand-story-copy h1 {
    font-size: 32px;
  }

  .brand-section-heading h2 {
    font-size: 30px;
  }

  .brand-story-grid h3,
  .brand-scenario-grid h3 {
    font-size: 20px;
  }

  .hero-lead,
  .page-intro > p,
  .section-heading > p,
  .editorial-copy p:not(.eyebrow),
  .promo-feature p,
  .wholesale-copy p:not(.eyebrow) {
    font-size: 16px;
  }

  .proof-band {
    grid-template-columns: 1fr;
  }

  .proof-item {
    min-height: auto;
    padding: 18px 20px;
  }

  .tile-section,
  .collection-grid,
  .product-grid {
    grid-template-columns: 1fr;
  }

  .feature-tile,
  .feature-tile.is-large {
    min-height: 240px;
  }

  .feature-tile span {
    bottom: 54px;
    font-size: 24px;
  }

  .section-block,
  .page-section,
  .editorial-band,
  .promo-feature,
  .category-section,
  .featured-products-section,
  .audience-section {
    padding: 60px 20px;
  }

  .category-section,
  .featured-products-section,
  .audience-section {
    padding-top: 52px;
    padding-bottom: 52px;
  }

  .home-product-grid {
    grid-template-columns: none;
    grid-auto-columns: minmax(260px, 82vw);
    grid-auto-flow: column;
    overflow-x: auto;
    margin-right: -20px;
    padding-right: 20px;
    scroll-snap-type: x proximity;
    scrollbar-width: thin;
  }

  .home-product-card {
    scroll-snap-align: start;
  }

  .home-product-copy ul {
    min-height: 0;
  }

  .editorial-band,
  .promo-feature {
    gap: 30px;
  }

  .editorial-band img,
  .promo-feature img {
    width: 100%;
  }

  .audience-grid article {
    padding: 24px;
  }

  .catalog-layout {
    gap: 16px;
  }

  .catalog-page {
    padding-top: 24px;
  }

  .catalog-sidebar {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .filter-list {
    width: calc(100% + 20px);
    border-radius: 4px 0 0 4px;
    scrollbar-width: none;
  }

  .filter-list::-webkit-scrollbar {
    display: none;
  }

  .filter-list a {
    min-height: 42px;
    padding: 0 15px;
  }

  .placeholder-box {
    padding: 14px 16px;
  }

  .placeholder-box strong {
    margin-bottom: 5px;
    font-size: 14px;
  }

  .placeholder-box p {
    font-size: 13px;
    line-height: 1.5;
  }

  .product-grid {
    gap: 16px;
  }

  .product-image {
    aspect-ratio: 4 / 3;
  }

  .product-copy {
    padding: 16px;
  }

  .product-copy h3 {
    font-size: 18px;
  }

  .table-panel {
    padding: 18px;
  }

  .table-row {
    grid-template-columns: 1fr;
  }

  .site-footer {
    padding: 36px 20px;
  }

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

  .footer-legal {
    align-items: center;
    flex-direction: column;
  }

  .footer-legal a::before {
    display: none;
  }
}

/* Fit guide */
.fit-guide-page {
  background: var(--paper);
}

.fit-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 460px);
  gap: 40px;
  align-items: center;
  max-width: 1300px;
  margin: 0 auto;
  padding-top: 36px;
  padding-bottom: 32px;
}

.fit-hero h1 {
  margin: 0;
  font-size: clamp(30px, 3vw, 42px);
}

.fit-section-heading > p:last-child,
.fit-care-section > div > p:last-child {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

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

.fit-category-nav a {
  display: flex;
  min-height: 54px;
  gap: 10px;
  align-items: center;
  padding: 12px 16px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 4px;
  transition: border-color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.fit-category-nav a:hover,
.fit-category-nav a:focus-visible {
  border-color: rgba(139, 30, 45, 0.48);
  box-shadow: 0 14px 30px rgba(35, 31, 32, 0.08);
  transform: translateY(-2px);
}

.fit-category-nav span {
  color: var(--brand);
  font-size: 13px;
  font-weight: 900;
}

.fit-category-nav strong {
  font-size: 15px;
  line-height: 1.35;
}

.fit-guide-section {
  padding: 82px 40px;
  background: var(--white);
}

.fit-guide-section--alt {
  background: #f2eeea;
}

#fit-sizing {
  padding-top: 64px;
}

.fit-section-heading {
  max-width: 1220px;
  margin: 0 auto 34px;
}

.fit-section-heading > .eyebrow {
  font-size: 14px;
  line-height: 1.4;
  letter-spacing: 0.04em;
}

.fit-section-heading h2 {
  max-width: 720px;
  margin-bottom: 16px;
}

.fit-section-heading > p:last-child {
  max-width: 760px;
}

.fit-tool-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.68fr) minmax(560px, 1.32fr);
  gap: 20px;
  max-width: 1220px;
  align-items: start;
  margin: 0 auto;
}

.fit-calculator,
.fit-chart-panel,
.fit-measure-card,
.fit-rule-card,
.fit-matrix-panel {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 4px;
}

.fit-calculator {
  display: grid;
  gap: 18px;
  padding: 26px;
}

.fit-calculator h3 {
  margin-bottom: 0;
  font-size: 24px;
}

.fit-calculator fieldset {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.fit-calculator legend,
.fit-field > span {
  display: block;
  margin-bottom: 8px;
  color: #4d4543;
  font-size: 13px;
  font-weight: 850;
}

.fit-field small {
  color: var(--muted);
  font-weight: 700;
}

.fit-field input,
.fit-field select {
  width: 100%;
  min-height: 48px;
  padding: 0 13px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid #d7cec8;
  border-radius: 4px;
  outline: none;
}

.fit-field input:focus,
.fit-field select:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(139, 30, 45, 0.1);
}

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

.fit-inline-note {
  margin: -2px 0 0;
  padding: 12px 14px;
  color: #5d5451;
  background: #f0e9e4;
  border-left: 3px solid var(--brand);
  font-size: 13px;
  line-height: 1.55;
}

.fit-segmented {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 5px;
  padding: 4px;
  background: #ede7e2;
  border-radius: 5px;
}

.fit-segmented label {
  position: relative;
}

.fit-segmented input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.fit-segmented label span {
  display: flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  border-radius: 3px;
  color: var(--muted);
  cursor: pointer;
  font-size: 13px;
  font-weight: 850;
}

.fit-segmented input:checked + span {
  color: var(--brand);
  background: var(--white);
  box-shadow: 0 2px 8px rgba(35, 31, 32, 0.08);
}

.fit-segmented input:focus-visible + span {
  outline: 2px solid var(--brand);
  outline-offset: 1px;
}

.fit-result {
  min-height: 138px;
  padding: 20px;
  background: var(--wine);
  border-radius: 4px;
  color: var(--white);
}

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

.fit-result-summary > div + div {
  padding-left: 16px;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.fit-result-summary span {
  display: block;
  margin-bottom: 8px;
  color: #e7cbd3;
  font-size: 12px;
  font-weight: 850;
}

.fit-result strong {
  display: block;
  font-size: 28px;
  line-height: 1.2;
}

.fit-result p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
  line-height: 1.55;
}

.fit-chart-panel {
  min-width: 0;
  padding: 26px;
}

.fit-chart-toolbar {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
}

.fit-chart-toolbar .eyebrow,
.fit-chart-toolbar h3 {
  margin-bottom: 0;
}

.fit-chart-toolbar .eyebrow {
  margin-bottom: 7px;
}

.fit-chart-toolbar h3 {
  font-size: 24px;
}

.fit-table-wrap {
  width: 100%;
  overflow-x: auto;
}

.fit-data-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  font-variant-numeric: tabular-nums;
}

.fit-data-table caption {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.fit-data-table th,
.fit-data-table td {
  padding: 15px 14px;
  border: 1px solid var(--line);
  text-align: center;
}

.fit-data-table thead th {
  color: #514946;
  background: #eee8e3;
  font-size: 13px;
  font-weight: 900;
}

.fit-data-table tbody th {
  color: var(--ink);
  font-weight: 900;
}

.fit-data-table tbody td {
  color: #554e4b;
}

.fit-data-table tbody tr {
  transition: background-color 140ms ease;
}

.fit-data-table tbody tr.is-match th,
.fit-data-table tbody tr.is-match td {
  color: var(--brand);
  background: #fff0ed;
  border-color: #d9a79f;
}

.fit-data-table--compact tbody {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.fit-data-table--compact thead {
  display: none;
}

.fit-data-table--compact tr {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
}

.fit-data-table--compact th,
.fit-data-table--compact td {
  padding: 12px 8px;
}

.fit-chart-note {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.fit-advice-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.68fr) minmax(560px, 1.32fr);
  gap: 20px;
  max-width: 1220px;
  margin: 20px auto 0;
}

.fit-measure-card {
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: 20px;
  align-items: center;
  padding: 26px;
}

.fit-measure-card h3,
.fit-rule-card h3 {
  margin-bottom: 14px;
  font-size: 22px;
}

.fit-measure-card ol {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.fit-measure-visual {
  position: relative;
  width: 100px;
  height: 148px;
  border-bottom: 2px solid var(--ink);
}

.fit-measure-visual span {
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: 48px;
  height: 112px;
  border: 2px solid var(--ink);
  border-radius: 48% 52% 45% 55% / 28% 34% 66% 72%;
  transform: rotate(7deg);
}

.fit-measure-visual i,
.fit-measure-visual i::before,
.fit-measure-visual i::after {
  position: absolute;
  content: "";
  background: var(--brand);
}

.fit-measure-visual i {
  left: 7px;
  bottom: 18px;
  width: 2px;
  height: 112px;
}

.fit-measure-visual i::before,
.fit-measure-visual i::after {
  left: -5px;
  width: 12px;
  height: 2px;
}

.fit-measure-visual i::before { top: 0; }
.fit-measure-visual i::after { bottom: 0; }

.fit-rule-card {
  padding: 26px;
}

.fit-rule-card ol {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 22px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.fit-rule-card > p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.fit-matrix-panel {
  display: grid;
  grid-template-columns: minmax(260px, 0.65fr) minmax(560px, 1.35fr);
  gap: 32px;
  max-width: 1220px;
  align-items: center;
  margin: 20px auto 0;
  padding: 26px;
}

.fit-matrix-panel h3 {
  margin-bottom: 12px;
  font-size: 22px;
}

.fit-matrix-panel > div:first-child > p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.fit-care-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 56px;
  max-width: 1300px;
  align-items: end;
  margin: 0 auto;
  padding: 72px 40px;
}

.fit-care-section > div:first-child {
  max-width: 760px;
}

.fit-care-section h2 {
  margin-bottom: 16px;
  font-size: 34px;
}

.fit-care-section .hero-actions {
  flex-wrap: nowrap;
}

@media (max-width: 1100px) {
  .fit-hero,
  .fit-tool-grid,
  .fit-advice-grid,
  .fit-matrix-panel,
  .fit-care-section {
    grid-template-columns: 1fr;
  }

  .fit-hero {
    gap: 20px;
  }

  .fit-category-nav {
    width: min(100%, 460px);
  }

  .fit-tool-grid,
  .fit-advice-grid {
    max-width: 820px;
  }

  .fit-care-section {
    align-items: start;
  }
}

@media (max-width: 680px) {
  .fit-hero {
    gap: 18px;
    padding: 30px 20px 24px;
  }

  .fit-hero h1 {
    font-size: 30px;
  }

  .fit-section-heading > p:last-child,
  .fit-care-section > div > p:last-child {
    font-size: 16px;
  }

  .fit-category-nav a {
    min-height: 52px;
    padding: 11px 12px;
  }

  .fit-category-nav strong {
    font-size: 14px;
  }

  .fit-guide-section {
    padding: 56px 20px;
  }

  #fit-sizing {
    padding-top: 44px;
  }

  .fit-section-heading {
    margin-bottom: 26px;
  }

  .fit-section-heading > .eyebrow {
    font-size: 13px;
  }

  .fit-calculator,
  .fit-chart-panel,
  .fit-measure-card,
  .fit-rule-card,
  .fit-matrix-panel {
    padding: 18px;
  }

  .fit-chart-toolbar {
    align-items: stretch;
    flex-direction: column;
    gap: 14px;
  }

  .fit-data-table--compact tbody {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .fit-data-table th,
  .fit-data-table td {
    padding: 12px 9px;
    font-size: 13px;
  }

  .fit-measure-card {
    grid-template-columns: 82px 1fr;
    gap: 14px;
  }

  .fit-measure-visual {
    width: 76px;
    transform: scale(0.8);
    transform-origin: center left;
  }

  .fit-inline-fields {
    grid-template-columns: 1fr;
  }

  .fit-matrix-panel {
    gap: 18px;
  }

  .fit-matrix-panel .fit-table-wrap {
    overflow: visible;
  }

  .fit-matrix-panel .fit-data-table {
    display: block;
    background: transparent;
  }

  .fit-matrix-panel .fit-data-table thead {
    display: none;
  }

  .fit-matrix-panel .fit-data-table tbody,
  .fit-matrix-panel .fit-data-table tr {
    display: grid;
    gap: 8px;
  }

  .fit-matrix-panel .fit-data-table tbody {
    gap: 12px;
  }

  .fit-matrix-panel .fit-data-table tr {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    padding: 12px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 3px;
  }

  .fit-matrix-panel .fit-data-table th,
  .fit-matrix-panel .fit-data-table td {
    display: block;
    padding: 0;
    background: transparent;
    border: 0;
  }

  .fit-matrix-panel .fit-data-table th {
    grid-column: 1 / -1;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--line);
    text-align: left;
  }

  .fit-matrix-panel .fit-data-table td::before {
    display: block;
    margin-bottom: 5px;
    color: var(--muted);
    content: attr(data-label);
    font-size: 11px;
    font-weight: 850;
  }

  .fit-care-section {
    gap: 28px;
    padding: 56px 20px;
  }

  .fit-care-section h2 {
    font-size: 28px;
  }

  .fit-care-section .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }
}
