:root {
  --black: #222222;
  --near-black: #222222;
  --white: #ffffff;
  --gray: #f8f6f2;
  --panel-gray: #f6f5f4;
  --surface-soft: #fbfaf7;
  --photo-white: #fefefe;
  --photo-cool-white: #f0eff5;
  --photo-warm-white: #f7f2ed;
  --photo-clean-white: #fefefe;
  --surface-card: #ffffff;
  --wood: #b97859;
  --wood-dark: #8d4e39;
  --coral: #d96f59;
  --coral-active: #bf563f;
  --dark-panel: #2f2923;
  --dark-panel-soft: #3a332c;
  --muted: #615d59;
  --muted-soft: #8e8982;
  --muted-dark: rgba(255, 255, 255, 0.76);
  --line: rgba(0, 0, 0, 0.1);
  --line-dark: rgba(255, 255, 255, 0.18);
  --blue: #d96f59;
  --blue-dark: #8d4e39;
  --content: 1240px;
  --radius: 14px;
  --pill: 980px;
  --font: -apple-system, BlinkMacSystemFont, "SF Pro Text", "SF Pro Display",
    "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-display: var(--font);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--near-black);
  background: var(--white);
  font-family: var(--font);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

button {
  font: inherit;
}

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

.site-header {
  position: sticky;
  top: 12px;
  z-index: 20;
  padding: 0 18px;
}

.nav-shell {
  width: min(100%, var(--content));
  min-height: 58px;
  margin: 0 auto;
  padding: 0 18px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 22px;
  border-radius: var(--pill);
  color: var(--near-black);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  backdrop-filter: saturate(180%) blur(20px);
  box-shadow:
    rgba(0, 0, 0, 0.04) 0 4px 18px,
    rgba(0, 0, 0, 0.02) 0 1px 4px;
}

.brand {
  min-width: 360px;
  height: 32px;
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: flex-start;
  color: var(--near-black);
  white-space: nowrap;
}

.brand-logo-frame {
  width: 160px;
  height: 30px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

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

.brand-logo-nav {
  width: 170px;
  height: auto;
  max-width: none;
  object-fit: contain;
  object-position: center;
  filter: none;
}

.brand-slogan {
  color: var(--muted);
  font-size: 12px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  grid-column: 2;
}

.site-nav a,
.header-cta,
.nav-toggle {
  color: var(--muted);
  font-size: 14px;
  line-height: 1;
  transition:
    color 180ms ease,
    background-color 180ms ease,
    opacity 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--near-black);
}

.header-cta,
.nav-toggle {
  justify-self: end;
  min-height: 32px;
  padding: 0 16px;
  border: 0;
  border-radius: var(--pill);
  color: var(--near-black);
  background: var(--panel-gray);
}

.header-cta:hover,
.header-cta:focus-visible,
.nav-toggle:hover,
.nav-toggle:focus-visible {
  color: var(--near-black);
  background: #eeece8;
}

.nav-toggle {
  display: none;
}

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

.hero {
  padding: 104px 0 86px;
  background:
    radial-gradient(ellipse at 78% 18%, rgba(185, 120, 89, 0.11), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #fbfaf7 100%);
}

.hero-copy {
  width: min(calc(100% - 44px), var(--content));
  margin: 0 auto;
}

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

h1,
h2 {
  color: inherit;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0;
}

h1 {
  max-width: 920px;
  font-size: 76px;
  line-height: 1.02;
}

.hero-copy h1 {
  max-width: 970px;
  white-space: normal;
}

.hero-copy p {
  max-width: 780px;
  margin-top: 20px;
  color: var(--muted);
  font-size: 21px;
  font-weight: 500;
  line-height: 1.36;
  letter-spacing: 0;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
}

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

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--coral-active);
  border-color: var(--coral-active);
}

.button-secondary {
  color: var(--near-black);
  background: var(--white);
  border-color: var(--line);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: rgba(0, 0, 0, 0.22);
}

.hero-product {
  width: min(calc(100% - 44px), 1180px);
  margin: 56px auto 0;
}

.hero-product img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  filter: saturate(0.96) contrast(1.01);
  box-shadow:
    rgba(0, 0, 0, 0.04) 0 4px 18px,
    rgba(0, 0, 0, 0.02) 0 1px 4px;
}

.hero-proof {
  width: min(calc(100% - 44px), var(--content));
  margin: 36px auto 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.hero-proof article {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
}

.hero-proof span,
.eyebrow,
.size-card span,
.feature-grid span {
  display: block;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.29;
  letter-spacing: 0;
}

.hero-proof strong,
.size-card strong,
.feature-grid strong {
  display: block;
  margin-top: 5px;
  color: var(--near-black);
  font-size: 19px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0;
}

.brand-scene {
  min-height: 780px;
  padding: 96px 0;
  display: grid;
  grid-template-columns: minmax(32px, 1fr) minmax(0, 520px) minmax(0, 760px) minmax(32px, 1fr);
  align-items: center;
  gap: 70px;
  background: var(--white);
  overflow: hidden;
}

.scene-copy {
  grid-column: 2;
}

.scene-copy h2,
.section-heading h2,
.values-scene h2,
.wholesale-copy h2,
.partner-content h2 {
  margin-top: 12px;
  font-size: 58px;
  line-height: 1;
}

.scene-copy p:not(.eyebrow),
.section-heading p,
.wholesale-copy p,
.partner-lead {
  margin-top: 20px;
  color: var(--muted);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0;
}

.scene-image {
  grid-column: 3 / 5;
  margin: 0;
}

.scene-image img {
  width: 100%;
  height: auto;
  border-radius: 28px;
  mix-blend-mode: normal;
  filter: saturate(0.96) contrast(1.02);
}

.values-scene {
  padding: 96px 0 108px;
  color: var(--near-black);
  background: var(--panel-gray);
}

.values-scene .eyebrow,
.partner-scene .eyebrow {
  color: var(--muted);
}

.values-scene h2 {
  max-width: none;
  white-space: nowrap;
}

.value-strip {
  margin-top: 44px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 34px;
}

.value-strip article {
  min-height: 250px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
  box-shadow:
    rgba(0, 0, 0, 0.025) 0 4px 18px,
    rgba(0, 0, 0, 0.01) 0 1px 3px;
}

.value-top {
  margin-bottom: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.value-icon {
  display: inline-grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 50%;
  background: #fff2ed;
  font-size: 23px;
  line-height: 1;
}

.value-index {
  display: block;
  color: var(--muted-soft);
  font-size: 14px;
  font-weight: 600;
}

.value-strip h3 {
  color: var(--near-black);
  font-size: 24px;
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: 0;
}

.value-strip p {
  margin-top: 12px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.43;
}

.collection-scene,
.feature-scene {
  padding: 96px 0 108px;
  background: var(--white);
}

.section-heading {
  max-width: 820px;
}

.section-heading h2 {
  max-width: none;
}

.section-heading p {
  max-width: 680px;
}

.size-grid {
  margin-top: 42px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 34px;
}

.size-card {
  display: grid;
  align-content: start;
  padding: 12px 12px 22px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--white);
  box-shadow:
    rgba(0, 0, 0, 0.04) 0 4px 18px,
    rgba(0, 0, 0, 0.02) 0 1px 4px;
}

.size-card img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  mix-blend-mode: normal;
  filter: saturate(0.92) contrast(1.02);
}

.size-card div {
  margin-top: 18px;
}

.feature-scene {
  background: var(--panel-gray);
}

.feature-grid {
  margin-top: 42px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
}

.feature-grid article {
  display: grid;
  align-content: start;
  padding: 12px 12px 22px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--white);
  box-shadow:
    rgba(0, 0, 0, 0.025) 0 4px 18px,
    rgba(0, 0, 0, 0.01) 0 1px 3px;
}

.feature-grid img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  mix-blend-mode: normal;
  filter: saturate(0.9) contrast(1.02);
}

.feature-grid span {
  margin-top: 18px;
}

.wholesale-scene {
  padding: 108px 0 118px;
  color: var(--near-black);
  background:
    radial-gradient(ellipse at 18% 18%, rgba(185, 120, 89, 0.08), transparent 32%),
    var(--surface-soft);
}

.wholesale-scene .eyebrow {
  color: var(--wood-dark);
}

.wholesale-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 76px;
  align-items: start;
}

.wholesale-copy h2 {
  max-width: 760px;
  color: var(--near-black);
  font-size: 56px;
  line-height: 1.04;
}

.wholesale-copy p {
  max-width: 620px;
  color: var(--muted);
}

.wholesale-copy .button {
  margin-top: 34px;
}

.geo-link-row {
  max-width: 600px;
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.geo-link-row a {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0 13px;
  border: 1px solid var(--line);
  border-radius: var(--pill);
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  background: rgba(255, 255, 255, 0.68);
}

.geo-link-row a:hover,
.geo-link-row a:focus-visible {
  color: var(--near-black);
  border-color: rgba(185, 120, 89, 0.48);
}

.wholesale-copy .button-secondary {
  color: var(--near-black);
  border-color: var(--line);
}

.wholesale-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px 34px;
}

.wholesale-points article {
  min-height: 230px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
  box-shadow:
    rgba(0, 0, 0, 0.025) 0 4px 18px,
    rgba(0, 0, 0, 0.01) 0 1px 3px;
}

.wholesale-points article:first-child {
  border-color: rgba(185, 120, 89, 0.32);
}

.wholesale-points span {
  display: block;
  color: var(--wood-dark);
  font-size: 14px;
  font-weight: 600;
}

.wholesale-points strong {
  display: block;
  margin-top: 42px;
  color: var(--near-black);
  font-size: 24px;
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: 0;
}

.wholesale-points p {
  margin-top: 12px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.43;
}

.manufacturing-scene {
  padding: 108px 0 118px;
  background:
    linear-gradient(180deg, #ffffff, var(--gray));
}

.manufacturing-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: 64px;
  align-items: center;
}

.manufacturing-copy h2 {
  max-width: 13ch;
  color: var(--near-black);
  font-size: 56px;
  line-height: 1.06;
}

.manufacturing-copy p:not(.eyebrow):not(.manufacturing-caption) {
  max-width: 540px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.45;
  letter-spacing: 0;
}

.manufacturing-caption {
  margin-top: 28px;
  color: rgba(31, 27, 23, 0.5);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: 0;
}

.manufacturing-image {
  margin: 0;
}

.manufacturing-image img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center 42%;
  border-radius: 20px;
  filter: saturate(0.9) contrast(0.98) brightness(1.02);
  box-shadow:
    rgba(0, 0, 0, 0.04) 0 4px 18px,
    rgba(0, 0, 0, 0.02) 0 1px 4px;
}

.faq-scene {
  padding: 108px 0 118px;
  background: var(--white);
}

.faq-list {
  margin-top: 52px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.faq-list article {
  position: relative;
  padding: 30px;
  border-radius: 18px;
  background: var(--surface-soft);
  border: 1px solid var(--line);
}

.faq-list article::before {
  content: "";
  position: absolute;
  top: 0;
  left: 30px;
  right: 30px;
  height: 1px;
  background: rgba(185, 120, 89, 0.28);
}

.faq-list h3 {
  color: var(--near-black);
  font-size: 24px;
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: 0;
}

.faq-list p {
  max-width: 520px;
  margin-top: 12px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.5;
  letter-spacing: 0;
}

.faq-list a {
  color: var(--blue-dark);
}

.partner-scene {
  position: relative;
  min-height: 780px;
  padding: 112px 0 96px;
  display: grid;
  align-items: end;
  color: var(--gray);
  background: var(--dark-panel);
  overflow: hidden;
}

.partner-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: sepia(0.1) saturate(0.9) contrast(0.96) brightness(0.98);
}

.partner-scene::before,
.partner-scene::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.partner-scene::before {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(47, 41, 35, 0.78) 0%, rgba(47, 41, 35, 0.46) 48%, rgba(47, 41, 35, 0.16) 100%),
    linear-gradient(180deg, rgba(47, 41, 35, 0.03), rgba(47, 41, 35, 0.62));
}

.partner-scene::after {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(47, 41, 35, 0.82), transparent 20%, transparent 82%, rgba(47, 41, 35, 0.58)),
    linear-gradient(0deg, rgba(47, 41, 35, 0.78), transparent 32%);
}

.partner-content {
  position: relative;
  z-index: 2;
  display: block;
}

.partner-logo {
  width: 150px;
  height: auto;
  margin-bottom: 34px;
  filter: invert(1);
  opacity: 0.9;
}

.partner-content h2 {
  max-width: none;
  color: var(--gray);
  font-size: 58px;
  line-height: 1.04;
  white-space: nowrap;
}

.partner-lead {
  max-width: 620px;
  color: var(--muted-dark);
}

.partner-contacts {
  max-width: 860px;
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.partner-contact {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid rgba(250, 247, 240, 0.32);
  border-radius: var(--pill);
  color: var(--gray);
  font-size: 15px;
  background: rgba(250, 247, 240, 0.12);
  backdrop-filter: blur(14px);
}

.partner-contact span {
  color: rgba(250, 247, 240, 0.58);
  font-size: 12px;
  font-weight: 600;
}

.partner-contact strong {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0;
}

.partner-copy {
  max-width: 920px;
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px 64px;
}

.partner-copy p {
  color: var(--muted-dark);
  font-size: 17px;
  line-height: 1.5;
  letter-spacing: 0;
}

.site-footer {
  color: rgba(250, 247, 240, 0.58);
  background: var(--dark-panel);
}

.info-hero {
  padding: 118px 0 104px;
  background: var(--white);
}

.info-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 68px;
  align-items: center;
}

.info-hero-copy h1 {
  max-width: 12ch;
  margin-top: 12px;
  font-size: 72px;
  line-height: 1.04;
}

.info-hero-copy p:not(.eyebrow) {
  max-width: 680px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 21px;
  line-height: 1.42;
  letter-spacing: 0;
}

.answer-card {
  max-width: 680px;
  margin-top: 24px;
  padding: 18px 20px;
  border-left: 3px solid var(--blue);
  border-radius: var(--radius);
  background: var(--gray);
}

.answer-card span {
  display: block;
  color: var(--blue-dark);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
}

.answer-card p {
  margin-top: 8px;
  color: var(--near-black);
  font-size: 17px;
  line-height: 1.44;
  letter-spacing: 0;
}

.answer-card small {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.3;
}

.info-hero-image {
  margin: 0;
}

.info-hero-image img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  mix-blend-mode: multiply;
}

.brand-story-scene {
  position: relative;
  overflow: hidden;
  padding: 112px 0 110px;
  background: #fff;
  isolation: isolate;
}

.brand-story-scene::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background:
    radial-gradient(ellipse at 72% 56%, rgba(94, 73, 52, 0.1) 0%, rgba(255, 255, 255, 0) 42%),
    radial-gradient(ellipse at 55% 92%, rgba(94, 73, 52, 0.08) 0%, rgba(255, 255, 255, 0) 32%);
  z-index: 0;
}

.brand-story-layout {
  position: relative;
  z-index: 1;
  min-height: 660px;
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: 60px;
  align-items: center;
}

.brand-story-content {
  position: relative;
  z-index: 3;
  max-width: 520px;
}

.brand-story-mark {
  width: 178px;
  height: 42px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.brand-story-mark img {
  width: 190px;
  max-width: none;
  height: auto;
}

.brand-story-content .eyebrow {
  margin-top: 28px;
}

.brand-story-content h2 {
  max-width: 9.6ch;
  margin-top: 12px;
  color: var(--near-black);
  font-size: 54px;
  line-height: 1.08;
  letter-spacing: 0;
}

.brand-story-content p:not(.eyebrow) {
  max-width: 500px;
  margin-top: 22px;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.42;
  letter-spacing: 0;
}

.brand-story-visual {
  position: absolute;
  z-index: 1;
  inset: 20px -8vw 14px 36%;
  margin: 0;
  overflow: hidden;
}

.brand-story-visual::after {
  position: absolute;
  inset: -1px;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(90deg, #fff 0%, rgba(255, 255, 255, 0.92) 8%, rgba(255, 255, 255, 0) 23%, rgba(255, 255, 255, 0) 90%, #fff 100%),
    linear-gradient(180deg, #fff 0%, rgba(255, 255, 255, 0) 13%, rgba(255, 255, 255, 0) 86%, #fff 100%);
}

.brand-story-visual img {
  width: 100%;
  height: 100%;
  border-radius: 0;
  background: transparent;
  object-fit: contain;
  object-position: center right;
  mix-blend-mode: multiply;
  filter: saturate(0.95) contrast(1.01) brightness(1.03);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 12%, #000 96%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 12%, #000 96%, transparent 100%);
}

.info-section {
  padding: 112px 0 124px;
  background: var(--panel-gray);
}

.info-section-light {
  background: var(--gray);
}

.info-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 74px;
  align-items: start;
}

.info-layout h2 {
  margin-top: 12px;
  font-size: 58px;
  line-height: 1.06;
}

.info-copy {
  display: grid;
  gap: 22px;
}

.info-copy p {
  color: var(--muted);
  font-size: 21px;
  line-height: 1.42;
  letter-spacing: 0;
}

.info-card-grid {
  margin-top: 52px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
}

.info-card-grid article {
  min-height: 236px;
  padding: 24px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.48);
  border: 1px solid var(--line);
}

.info-card-grid span {
  display: block;
  color: var(--blue-dark);
  font-size: 14px;
  font-weight: 600;
}

.info-card-grid strong {
  display: block;
  margin-top: 42px;
  color: var(--near-black);
  font-size: 23px;
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: 0;
}

.info-card-grid p {
  margin-top: 12px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.43;
}

.footer-inner {
  padding: 30px 0 38px;
}

.footer-inner p {
  font-size: 14px;
  line-height: 1.43;
}

.reveal {
  opacity: 1;
  transform: none;
  transition:
    opacity 700ms ease,
    transform 700ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .site-nav a,
  .header-cta,
  .nav-toggle,
  .button,
  .reveal {
    transition: none;
  }
}

@media (max-width: 1060px) {
  .hero-copy h1,
  .values-scene h2,
  .wholesale-copy h2,
  .partner-content h2 {
    white-space: normal;
  }

  .brand-scene {
    grid-template-columns: minmax(22px, 1fr) minmax(0, var(--content)) minmax(22px, 1fr);
    gap: 44px;
  }

  .scene-copy,
  .scene-image {
    grid-column: 2;
  }

  .scene-image img {
    max-width: 820px;
    margin-left: auto;
  }

  .value-strip,
  .feature-grid,
  .wholesale-layout,
  .manufacturing-layout,
  .wholesale-points,
  .faq-list,
  .info-hero-grid,
  .info-layout,
  .info-card-grid,
  .partner-content,
  .partner-copy {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .partner-copy {
    padding-top: 0;
  }
}

@media (max-width: 760px) {
  .site-header {
    top: 8px;
  }

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

  .brand {
    min-width: 0;
    height: 28px;
    gap: 10px;
  }

  .brand-logo-frame {
    width: 116px;
    height: 28px;
  }

  .brand-logo-nav {
    width: 126px;
  }

  .brand-slogan {
    font-size: 10px;
  }

  .site-nav {
    display: none;
    grid-column: 1 / -1;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 8px 0 6px;
  }

  .site-nav[data-open="true"] {
    display: flex;
  }

  .header-cta {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .hero {
    padding: 74px 0 70px;
  }

  .hero-copy,
  .section-inner {
    width: calc(100vw - 44px);
    max-width: calc(100vw - 44px);
  }

  h1,
  .scene-copy h2,
  .section-heading h2,
  .values-scene h2,
  .wholesale-copy h2,
  .partner-content h2 {
    font-size: 48px;
    max-width: 100%;
    overflow-wrap: break-word;
  }

  .hero-copy p,
  .info-hero-copy p:not(.eyebrow),
  .info-copy p,
  .scene-copy p:not(.eyebrow),
  .section-heading p,
  .wholesale-copy p,
  .manufacturing-copy p:not(.eyebrow):not(.manufacturing-caption),
  .partner-lead,
  .value-strip p,
  .wholesale-points p,
  .faq-list p,
  .partner-copy p {
    max-width: 100%;
    font-size: 18px;
    overflow-wrap: break-word;
  }

  .section-heading h2,
  .partner-content h2 {
    font-size: 42px;
  }

  .hero-product {
    width: 112vw;
    margin-left: -6vw;
  }

  .hero-proof,
  .size-grid,
  .value-strip,
  .feature-grid,
  .brand-story-layout,
  .wholesale-layout,
  .manufacturing-layout,
  .wholesale-points,
  .faq-list,
  .info-hero-grid,
  .info-layout,
  .info-card-grid,
  .partner-content,
  .partner-copy {
    grid-template-columns: 1fr;
  }

  .brand-scene,
  .brand-story-scene,
  .values-scene,
  .collection-scene,
  .feature-scene,
  .wholesale-scene,
  .manufacturing-scene,
  .info-hero,
  .info-section,
  .faq-scene {
    min-height: auto;
    padding: 86px 0;
  }

  .brand-story-mark {
    width: 172px;
    height: 42px;
  }

  .brand-story-mark img {
    width: 184px;
  }

  .brand-story-content h2 {
    max-width: 100%;
    font-size: 44px;
    letter-spacing: 0;
  }

  .brand-story-content p:not(.eyebrow) {
    max-width: 100%;
    font-size: 18px;
  }

  .brand-story-layout {
    min-height: auto;
    display: block;
  }

  .brand-story-visual {
    position: relative;
    inset: auto;
    width: 100%;
    height: auto;
    margin: 34px 0 -28px;
  }

  .brand-story-visual img {
    width: 100%;
    height: auto;
    max-width: none;
    -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 88%, transparent 100%);
    mask-image: linear-gradient(180deg, #000 0%, #000 88%, transparent 100%);
  }

  .info-hero-grid,
  .info-layout {
    gap: 42px;
  }

  .info-hero-copy h1,
  .info-layout h2 {
    font-size: 46px;
    max-width: 100%;
  }

  .info-card-grid article {
    min-height: 0;
  }

  .info-card-grid strong {
    margin-top: 28px;
  }

  .value-strip article {
    min-height: 0;
  }

  .wholesale-points article {
    min-height: 0;
  }

  .wholesale-points strong {
    margin-top: 30px;
  }

  .manufacturing-layout {
    gap: 42px;
  }

  .manufacturing-copy h2 {
    max-width: 100%;
    font-size: 44px;
  }

  .manufacturing-caption {
    margin-top: 20px;
  }

  .value-top {
    margin-bottom: 30px;
  }

  .value-icon {
    width: 38px;
    height: 38px;
    font-size: 22px;
  }

  .partner-scene {
    min-height: auto;
    padding: 96px 0;
  }

  .partner-contacts {
    display: grid;
    grid-template-columns: 1fr;
  }

  .partner-contact {
    width: 100%;
    justify-content: space-between;
  }
}

/* Huashu reviewed vendor redesign: warm wooden product, photo-led, low-noise B2B structure. */
:root {
  --near-black: #211f1d;
  --gray: #f7f4ef;
  --panel-gray: #f5f1eb;
  --surface-soft: #fbf8f3;
  --surface-card: #ffffff;
  --wood: #ba7a55;
  --wood-dark: #8c543c;
  --coral: #b86f55;
  --coral-active: #96523e;
  --dark-panel: #312a24;
  --muted: #615d57;
  --muted-soft: #9a9289;
  --line: rgba(33, 31, 29, 0.12);
  --radius: 12px;
}

body {
  background: var(--white);
  color: var(--near-black);
}

.site-header {
  top: 14px;
}

.nav-shell {
  min-height: 58px;
  border-color: rgba(33, 31, 29, 0.1);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 12px 30px rgba(33, 31, 29, 0.055);
}

.brand-logo-frame {
  width: 152px;
}

.brand-logo-nav {
  width: 162px;
}

.brand-slogan,
.site-nav a,
.nav-toggle {
  color: rgba(33, 31, 29, 0.62);
}

.hero {
  padding: 82px 0 82px;
  background: linear-gradient(180deg, #ffffff 0%, #fbf8f3 100%);
  overflow: hidden;
}

.hero-stage {
  width: min(calc(100% - 44px), var(--content));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 58px;
  align-items: center;
}

.hero-copy {
  width: auto;
  margin: 0;
}

h1 {
  max-width: 760px;
  font-size: clamp(52px, 5.2vw, 70px);
  line-height: 1.02;
  font-weight: 700;
}

.hero-copy h1 {
  max-width: 760px;
}

.hero-copy p {
  max-width: 560px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 19px;
  font-weight: 400;
  line-height: 1.5;
}

.button {
  min-height: 46px;
  padding: 0 22px;
  font-size: 15px;
  font-weight: 500;
  border-radius: 999px;
}

.button-primary {
  background: var(--coral);
  border-color: var(--coral);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--coral-active);
  border-color: var(--coral-active);
}

.button-secondary {
  background: transparent;
  border-color: rgba(33, 31, 29, 0.18);
}

.hero-product {
  width: 100%;
  margin: 0;
}

.hero-product img {
  width: 114%;
  max-width: none;
  height: auto;
  margin-left: -3%;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  filter: saturate(1) contrast(1.02);
}

.hero-proof {
  margin-top: 44px;
  gap: 34px;
}

.hero-proof article {
  padding: 18px 0 0;
  border: 0;
  border-top: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
}

.hero-proof span,
.eyebrow,
.size-card span,
.feature-grid span {
  color: rgba(33, 31, 29, 0.56);
  font-size: 13px;
  font-weight: 600;
}

.hero-proof strong,
.size-card strong,
.feature-grid strong {
  font-size: 18px;
  font-weight: 600;
}

.brand-scene {
  min-height: auto;
  padding: 106px 0;
  gap: 70px;
  background: #ffffff;
}

.scene-copy h2,
.section-heading h2,
.values-scene h2,
.wholesale-copy h2,
.partner-content h2 {
  font-size: clamp(42px, 4.4vw, 56px);
  line-height: 1.04;
  font-weight: 700;
}

.scene-copy p:not(.eyebrow),
.section-heading p,
.wholesale-copy p,
.partner-lead {
  max-width: 640px;
  color: var(--muted);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
}

.scene-image img {
  border-radius: 0;
  box-shadow: none;
  filter: saturate(1) contrast(1.02);
}

.brand-story-scene {
  padding: 112px 0;
  background: #ffffff;
  overflow: hidden;
  isolation: auto;
}

.brand-story-scene::before {
  display: none;
}

.brand-story-layout {
  min-height: auto;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: 72px;
  align-items: center;
}

.brand-story-content {
  max-width: 500px;
}

.brand-story-mark {
  width: 150px;
  height: 36px;
}

.brand-story-mark img {
  width: 160px;
}

.brand-story-content .eyebrow {
  margin-top: 24px;
}

.brand-story-content h2 {
  max-width: 11ch;
  font-size: clamp(40px, 4vw, 50px);
  line-height: 1.06;
}

.brand-story-content p:not(.eyebrow) {
  max-width: 500px;
  margin-top: 20px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
}

.brand-story-visual {
  position: relative;
  inset: auto;
  margin: 0;
  overflow: visible;
}

.brand-story-visual::after {
  display: none;
}

.brand-story-visual img {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
  mix-blend-mode: normal;
  filter: saturate(1) contrast(1.01);
  -webkit-mask-image: none;
  mask-image: none;
}

.values-scene {
  padding: 92px 0 96px;
  background: var(--surface-soft);
}

.values-scene h2 {
  max-width: 760px;
  white-space: normal;
}

.values-scene .section-lead {
  max-width: 650px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.48;
}

.value-strip {
  margin-top: 46px;
  gap: 30px;
}

.value-strip article {
  min-height: 0;
  padding: 18px 0 0;
  border: 0;
  border-top: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.value-top {
  min-height: 44px;
  margin-bottom: 28px;
  align-items: center;
}

.value-icon {
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  background: transparent;
  border: 0;
  font-size: 0;
}

.value-emoji {
  width: 44px;
  height: 44px;
  display: block;
  object-fit: contain;
  opacity: 0.62;
  filter:
    drop-shadow(0 5px 8px rgba(72, 42, 24, 0.08))
    drop-shadow(0 1px 2px rgba(33, 31, 29, 0.07));
}

.value-strip h3 {
  font-size: 21px;
  line-height: 1.18;
}

.value-strip p {
  font-size: 15px;
  line-height: 1.48;
}

.collection-scene,
.feature-scene {
  padding: 106px 0 112px;
}

.collection-scene {
  background: #ffffff;
}

.feature-scene {
  background: var(--surface-soft);
}

.section-heading {
  max-width: 760px;
}

.size-grid {
  gap: 42px;
}

.size-card,
.feature-grid article {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.size-card img,
.feature-grid img {
  width: 100%;
  height: auto;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  filter: saturate(0.98) contrast(1.02);
}

.size-card div {
  margin-top: 16px;
  padding-top: 15px;
  border-top: 1px solid var(--line);
}

.feature-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px 38px;
}

.feature-grid span {
  margin-top: 16px;
  padding-top: 15px;
  border-top: 1px solid var(--line);
}

.wholesale-scene {
  padding: 108px 0 118px;
  background: #ffffff;
}

.wholesale-points {
  gap: 22px;
}

.wholesale-points article {
  min-height: 220px;
  border-radius: 12px;
  background: var(--surface-soft);
  box-shadow: none;
}

.manufacturing-scene {
  padding: 106px 0 118px;
  background: var(--panel-gray);
}

.manufacturing-layout {
  gap: 66px;
}

.manufacturing-copy h2 {
  max-width: 12ch;
  font-size: clamp(40px, 4vw, 54px);
}

.manufacturing-copy p:not(.eyebrow):not(.manufacturing-caption) {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.52;
}

.manufacturing-image img {
  border: 0;
  border-radius: 0;
  box-shadow: none;
  filter: saturate(1) contrast(1.02) brightness(1.02);
}

.faq-scene {
  padding: 106px 0 116px;
  background: #ffffff;
}

.faq-list {
  gap: 0 52px;
}

.faq-list article {
  padding: 26px 0;
  border: 0;
  border-top: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
}

.faq-list article::before {
  display: none;
}

.partner-scene {
  min-height: 720px;
  padding: 104px 0 92px;
  color: #ffffff;
  background: var(--dark-panel);
}

.partner-image {
  filter: saturate(1.05) contrast(1.03) brightness(1.1);
}

.partner-scene::before {
  background:
    linear-gradient(90deg, rgba(49, 42, 36, 0.64) 0%, rgba(49, 42, 36, 0.36) 46%, rgba(49, 42, 36, 0.08) 100%),
    linear-gradient(180deg, rgba(49, 42, 36, 0.02), rgba(49, 42, 36, 0.34));
}

.partner-scene::after {
  display: none;
}

.partner-logo {
  width: 132px;
  margin-bottom: 30px;
  filter: invert(1);
  opacity: 0.92;
}

.partner-content h2 {
  max-width: 780px;
  color: #ffffff;
  font-size: clamp(42px, 4.6vw, 56px);
  white-space: normal;
}

.partner-lead,
.partner-copy p {
  color: rgba(255, 255, 255, 0.78);
}

.partner-contact {
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
}

.site-footer {
  background: var(--dark-panel);
}

@media (max-width: 1060px) {
  .hero-stage {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .hero-product img {
    width: 100%;
    margin-left: 0;
  }

  .brand-story-layout {
    grid-template-columns: 1fr;
    gap: 42px;
  }

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

@media (max-width: 760px) {
  .nav-shell {
    min-height: 60px;
  }

  .brand-logo-frame {
    width: 126px;
  }

  .brand-logo-nav {
    width: 126px;
  }

  .brand-slogan {
    max-width: 120px;
    font-size: 10px;
    line-height: 1.15;
  }

  .hero {
    padding: 66px 0 72px;
  }

  .hero-stage,
  .hero-copy,
  .section-inner {
    width: calc(100vw - 44px);
    max-width: calc(100vw - 44px);
  }

  h1 {
    font-size: 44px;
  }

  .hero-copy p,
  .scene-copy p:not(.eyebrow),
  .section-heading p,
  .wholesale-copy p,
  .manufacturing-copy p:not(.eyebrow):not(.manufacturing-caption),
  .partner-lead,
  .partner-copy p {
    font-size: 17px;
    line-height: 1.52;
  }

  .hero-product {
    width: 100%;
    margin-left: 0;
  }

  .hero-product img {
    width: 112%;
    margin-left: -6%;
  }

  .brand-scene,
  .brand-story-scene,
  .values-scene,
  .collection-scene,
  .feature-scene,
  .wholesale-scene,
  .manufacturing-scene,
  .faq-scene {
    padding: 78px 0;
  }

  .scene-copy h2,
  .section-heading h2,
  .values-scene h2,
  .wholesale-copy h2,
  .manufacturing-copy h2,
  .partner-content h2,
  .brand-story-content h2 {
    font-size: 40px;
    line-height: 1.08;
  }

  .brand-story-layout {
    display: grid;
    grid-template-columns: 1fr;
  }

  .brand-story-visual {
    width: 100%;
    margin: 4px 0 0;
  }

  .brand-story-visual img {
    width: 112%;
    max-width: none;
    margin-left: -6%;
    -webkit-mask-image: none;
    mask-image: none;
  }

  .value-strip,
  .size-grid,
  .feature-grid,
  .wholesale-points,
  .faq-list,
  .partner-copy {
    gap: 30px;
  }

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

  .partner-scene {
    min-height: auto;
    padding: 88px 0;
  }

  .partner-image {
    object-position: 52% center;
    filter: saturate(1.05) contrast(1.03) brightness(1.06);
  }

  .partner-scene::before {
    background: rgba(49, 42, 36, 0.58);
  }
}

/* Merge the former first and second sections into one editorial product-led hero. */
.hero-merged {
  padding: 96px 0 88px;
  background: #fefefe;
}

.hero-merged .hero-stage {
  grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
  gap: 34px;
}

.hero-merged .hero-copy {
  align-self: center;
  transform: translateY(-72px);
}

.hero-merged .hero-copy h1 {
  max-width: 680px;
  font-size: clamp(50px, 4.7vw, 64px);
}

.hero-brand-row {
  width: min(calc(100% - 44px), var(--content));
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 32px;
  align-items: start;
  margin: -4px auto 0;
}

.hero-brand-note {
  max-width: 540px;
  margin-top: 0;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.hero-brand-note span {
  display: block;
  color: rgba(33, 31, 29, 0.52);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.25;
}

.hero-brand-note strong {
  display: block;
  max-width: 470px;
  margin-top: 9px;
  color: var(--near-black);
  font-size: 22px;
  font-weight: 600;
  line-height: 1.18;
}

.hero-brand-note p {
  max-width: 480px;
  margin-top: 10px;
  color: var(--muted);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.46;
}

.hero-merged .hero-product {
  align-self: center;
  display: grid;
  gap: 18px;
  align-content: center;
  overflow: visible;
  background: #fefefe;
}

.hero-merged .hero-product img {
  max-width: none;
  border: 0;
  border-radius: 0;
  background: #fefefe;
  box-shadow: none;
  filter: saturate(1.01) contrast(1.02);
  mix-blend-mode: normal;
}

.hero-merged .hero-product-main {
  width: 116%;
  margin-left: -4%;
}

.hero-brand-visual {
  width: min(100%, 620px);
  margin: 0;
  justify-self: start;
  overflow: visible;
  background: #fefefe;
}

.hero-brand-visual img {
  display: block;
  width: 100%;
  height: auto;
  max-width: none;
  margin-left: auto;
  border: 0;
  border-radius: 0;
  background: #fefefe;
  box-shadow: none;
  filter: saturate(1.01) contrast(1.02);
  object-fit: contain;
}

.hero-merged .hero-proof {
  margin-top: 42px;
}

.collection-scene {
  background: var(--photo-white);
}

.specs-showcase {
  margin-top: 46px;
  display: grid;
  grid-template-columns: minmax(0, 1.28fr) minmax(280px, 0.72fr);
  align-items: end;
  gap: 58px;
  background: var(--photo-white);
}

.specs-main-image {
  margin: 0;
  background: var(--photo-white);
}

.specs-main-image img,
.dimension-panel img {
  width: 100%;
  height: auto;
  border: 0;
  border-radius: 0;
  background: var(--photo-white);
  box-shadow: none;
  filter: saturate(1.01) contrast(1.015);
}

.specs-main-image img {
  width: 106%;
  max-width: none;
  margin-left: -3%;
}

.specs-copy {
  align-self: center;
}

.specs-kicker {
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2;
}

.size-list {
  display: grid;
  gap: 0;
}

.size-list article {
  padding: 15px 0 17px;
  border-top: 1px solid var(--line);
}

.size-list article:last-child {
  border-bottom: 1px solid var(--line);
}

.size-list span,
.dimension-panel span {
  display: block;
  color: var(--muted);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.22;
}

.size-list strong {
  display: block;
  margin-top: 6px;
  color: var(--near-black);
  font-size: clamp(24px, 2.45vw, 36px);
  font-weight: 640;
  line-height: 1.08;
}

.dimension-grid {
  margin-top: 76px;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  align-items: start;
  gap: 58px;
  background: var(--photo-white);
}

.dimension-panel {
  --dimension-copy-offset: 0px;
  display: grid;
  grid-template-rows: 460px auto;
  gap: 18px;
  align-content: start;
  background: transparent;
}

.dimension-panel > div {
  width: min(calc(100% - var(--dimension-copy-offset)), 560px);
  margin-left: var(--dimension-copy-offset);
}

.dimension-panel:not(.dimension-panel-drawers) {
  --dimension-copy-offset: clamp(96px, 24%, 150px);
}

.dimension-panel-drawers {
  --dimension-copy-offset: clamp(72px, 12%, 96px);
}

.dimension-panel > img {
  width: 100%;
  height: 460px;
  object-fit: contain;
  object-position: center bottom;
}

.dimension-panel strong {
  display: block;
  margin-top: 6px;
  color: var(--near-black);
  font-size: clamp(28px, 3.1vw, 44px);
  font-weight: 640;
  line-height: 1.04;
}

.dimension-panel p {
  max-width: 400px;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.44;
}

.dimension-panel ul {
  width: min(100%, 520px);
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.dimension-panel li {
  display: grid;
  grid-template-columns: minmax(110px, 0.7fr) minmax(0, 1fr);
  gap: 18px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.dimension-panel li span {
  font-size: 15px;
}

.dimension-panel li b {
  color: var(--near-black);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.2;
}

.dimension-panel-drawers img {
  width: 100%;
  max-width: none;
  margin-left: 0;
}

.feature-scene {
  background: var(--photo-white);
}

.angle-system {
  margin-top: 44px;
  background: var(--photo-white);
}

.angle-hero {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  align-items: center;
  gap: 54px;
  background: var(--photo-white);
}

.angle-copy {
  max-width: 520px;
}

.angle-copy span,
.angle-steps span,
.angle-support-grid figcaption {
  display: block;
  color: var(--muted);
  font-size: 17px;
  font-weight: 600;
  line-height: 1.2;
}

.angle-copy strong {
  display: block;
  margin-top: 13px;
  color: var(--near-black);
  font-size: clamp(40px, 4.4vw, 58px);
  font-weight: 650;
  line-height: 1.02;
  letter-spacing: 0;
  white-space: nowrap;
}

.angle-copy p {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.45;
}

.angle-hero img,
.angle-steps img,
.angle-support-grid img {
  width: 100%;
  height: auto;
  border: 0;
  border-radius: 0;
  background: var(--photo-white);
  box-shadow: none;
  filter: saturate(1.01) contrast(1.015);
}

.angle-hero img {
  width: 112%;
  max-width: none;
  margin-left: -3%;
}

.angle-steps {
  margin-top: 58px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 34px;
  background: var(--photo-white);
}

.angle-steps article,
.angle-support-grid figure {
  margin: 0;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.angle-steps span {
  margin-top: 15px;
  color: var(--wood-dark);
}

.angle-steps strong {
  display: block;
  margin-top: 5px;
  color: var(--near-black);
  font-size: 24px;
  font-weight: 600;
  line-height: 1.16;
  letter-spacing: 0;
}

.angle-support-grid {
  margin-top: 62px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: end;
  gap: 46px;
  background: var(--photo-white);
}

.angle-support-grid figcaption {
  margin-top: 15px;
}

.accessory-story {
  margin-top: 88px;
  padding-top: 62px;
  border-top: 1px solid var(--line);
  background: transparent;
}

.accessory-intro {
  max-width: 780px;
}

.accessory-intro h3 {
  margin: 0;
  max-width: 720px;
  color: var(--near-black);
  font-size: clamp(40px, 5vw, 68px);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: 0;
}

.accessory-intro p:last-child {
  max-width: 660px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 22px;
  line-height: 1.45;
}

.accessory-group {
  margin-top: 54px;
  background: transparent;
}

.accessory-group-hardware {
  margin-top: 54px;
  background: transparent;
}

.accessory-detail-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(26px, 3vw, 48px);
  align-items: start;
  max-width: 1180px;
}

.accessory-detail-grid article {
  min-width: 0;
}

.accessory-detail-grid article {
  padding-top: 22px;
  border-top: 1px solid rgba(31, 29, 26, 0.12);
}

.accessory-detail-grid img {
  width: 100%;
  height: auto;
  display: block;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.accessory-detail-grid img {
  width: min(100%, 236px);
  margin: 0 auto;
}

.accessory-detail-grid span {
  display: block;
  margin-top: 14px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
  line-height: 1.2;
}

.accessory-detail-grid strong {
  display: block;
  margin-top: 5px;
  color: var(--near-black);
  font-size: 20px;
  font-weight: 580;
  line-height: 1.18;
  letter-spacing: 0;
}

.accessory-detail-grid span {
  text-align: center;
  font-size: 13px;
}

.accessory-detail-grid strong {
  max-width: 220px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
  font-size: 16px;
}

@media (max-width: 1060px) {
  .hero-merged .hero-stage {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .hero-merged .hero-copy {
    transform: none;
  }

  .hero-brand-row {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-top: 6px;
  }

  .hero-merged .hero-product-main {
    width: 112%;
    margin-left: 0;
  }

  .hero-brand-visual img {
    width: 100%;
    margin-right: 0;
  }

  .angle-hero {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .angle-copy {
    max-width: 620px;
  }

  .angle-hero img {
    width: 106%;
    margin-left: -3%;
  }

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

  .specs-showcase,
  .dimension-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .specs-copy {
    max-width: 620px;
  }

  .specs-main-image img,
  .dimension-panel-drawers img {
    width: 104%;
    margin-left: -2%;
  }

  .dimension-panel {
    --dimension-copy-offset: 0px;
    grid-template-rows: auto auto;
  }

  .dimension-panel:not(.dimension-panel-drawers),
  .dimension-panel-drawers {
    --dimension-copy-offset: 0px;
  }

  .dimension-panel > div {
    width: 100%;
    max-width: 560px;
    margin-left: 0;
    text-align: left;
  }

  .dimension-panel > img {
    height: auto;
    object-fit: initial;
  }
}

@media (max-width: 760px) {
  .hero-merged {
    padding: 60px 0 72px;
  }

  .hero-merged .hero-copy h1 {
    max-width: 100%;
    font-size: 40px;
    line-height: 1.06;
    overflow-wrap: break-word;
  }

  .hero-merged .hero-copy p {
    max-width: 100%;
  }

  .hero-merged .button-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-merged .button {
    width: min(100%, 280px);
  }

  .hero-brand-note {
    margin-top: 28px;
    padding-top: 20px;
  }

  .hero-brand-note strong {
    font-size: 20px;
    overflow-wrap: break-word;
  }

  .hero-brand-note p {
    font-size: 16px;
    overflow-wrap: break-word;
  }

  .hero-merged .hero-product-main {
    width: 108%;
    margin-left: -4%;
  }

  .angle-system {
    margin-top: 36px;
  }

  .specs-showcase {
    margin-top: 34px;
  }

  .dimension-grid {
    margin-top: 56px;
    gap: 46px;
  }

  .size-list strong {
    font-size: 28px;
  }

  .dimension-panel strong {
    font-size: 31px;
  }

  .dimension-panel span {
    font-size: 15px;
  }

  .dimension-panel p {
    max-width: 100%;
    font-size: 16px;
    line-height: 1.42;
  }

  .dimension-panel li {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .angle-copy strong {
    font-size: 40px;
  }

  .angle-copy p {
    font-size: 18px;
  }

  .angle-steps,
  .angle-support-grid,
  .accessory-detail-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .value-top {
    min-height: 42px;
    margin-bottom: 24px;
  }

  .value-icon,
  .value-emoji {
    width: 42px;
    height: 42px;
  }

  .accessory-story {
    margin-top: 58px;
    padding-top: 42px;
  }

  .accessory-intro h3 {
    font-size: 40px;
  }

  .accessory-intro p:last-child {
    font-size: 18px;
  }

  .accessory-group {
    margin-top: 38px;
  }

  .accessory-group-hardware {
    margin-top: 46px;
  }

  .angle-steps strong {
    font-size: 22px;
  }
}

@media (max-width: 520px) {
  .hero-stage,
  .hero-copy,
  .section-inner {
    width: min(calc(100vw - 44px), 346px);
    max-width: min(calc(100vw - 44px), 346px);
  }

  .hero-merged .hero-copy h1 {
    font-size: 38px;
  }
}

/* Mobile compression: keep the desktop story intact, but make phone browsing decisive. */
.mobile-collapsible {
  margin: 0;
}

.mobile-collapsible > summary {
  display: none;
}

.faq-list .faq-item {
  position: relative;
  padding: 26px 0;
  border: 0;
  border-top: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
}

.faq-list .faq-item::before {
  display: none;
}

.faq-list summary {
  list-style: none;
}

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

.faq-list summary h3 {
  margin: 0;
}

@media (max-width: 760px) {
  .hero-merged {
    padding: 48px 0 54px;
  }

  .hero-merged .hero-stage {
    gap: 20px;
  }

  .hero-merged .hero-copy h1 {
    font-size: 36px;
  }

  .hero-merged .hero-copy p {
    font-size: 16px;
    line-height: 1.42;
  }

  .hero-merged .button-row {
    gap: 10px;
    margin-top: 24px;
  }

  .hero-merged .button {
    min-height: 44px;
    width: min(100%, 260px);
  }

  .hero-merged .hero-product-main {
    width: 102%;
    margin-left: -2%;
  }

  .hero-brand-row {
    gap: 14px;
    margin-top: -8px;
  }

  .hero-brand-note {
    margin-top: 10px;
    padding-top: 16px;
  }

  .hero-brand-note strong {
    font-size: 18px;
  }

  .hero-brand-note p {
    margin-top: 8px;
    font-size: 15px;
    line-height: 1.4;
  }

  .hero-brand-visual {
    width: 86%;
  }

  .hero-merged .hero-proof {
    margin-top: 28px;
    gap: 0;
  }

  .hero-proof article {
    padding: 13px 0;
    border-width: 1px 0 0;
    border-radius: 0;
    background: transparent;
  }

  .hero-proof strong {
    font-size: 16px;
  }

  .values-scene,
  .collection-scene,
  .feature-scene,
  .wholesale-scene,
  .faq-scene {
    padding: 64px 0;
  }

  .manufacturing-scene,
  .brand-story-scene {
    padding: 56px 0;
  }

  .section-heading h2,
  .values-scene h2,
  .wholesale-copy h2,
  .manufacturing-copy h2,
  .brand-story-content h2,
  .partner-content h2 {
    font-size: 34px;
    line-height: 1.06;
  }

  .section-heading p,
  .values-scene .section-lead,
  .wholesale-copy p,
  .manufacturing-copy p:not(.eyebrow):not(.manufacturing-caption),
  .brand-story-content p:not(.eyebrow),
  .partner-lead,
  .partner-copy p {
    font-size: 16px;
    line-height: 1.44;
  }

  .values-scene .section-lead {
    margin-top: 12px;
  }

  .value-strip {
    margin-top: 28px;
    gap: 0;
  }

  .value-strip article {
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 4px 14px;
    padding: 16px 0;
    border-top: 1px solid var(--line);
  }

  .value-top {
    grid-row: 1 / span 2;
    min-height: 0;
    margin: 0;
    align-items: start;
    justify-content: start;
  }

  .value-icon {
    display: none;
  }

  .value-index {
    color: var(--wood-dark);
    font-size: 13px;
  }

  .value-strip h3 {
    font-size: 18px;
    line-height: 1.16;
  }

  .value-strip p {
    margin-top: 0;
    font-size: 14px;
    line-height: 1.38;
  }

  .wholesale-layout {
    gap: 34px;
  }

  .geo-link-row {
    margin-top: 18px;
    gap: 8px;
  }

  .geo-link-row a {
    min-height: 32px;
    padding: 0 11px;
    font-size: 12px;
  }

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

  .wholesale-points article {
    min-height: 0;
    padding: 14px;
    border-radius: 10px;
  }

  .wholesale-points span {
    font-size: 12px;
  }

  .wholesale-points strong {
    margin-top: 12px;
    font-size: 15px;
    line-height: 1.18;
  }

  .wholesale-points p {
    display: none;
  }

  .specs-showcase {
    margin-top: 30px;
    gap: 24px;
  }

  .specs-main-image img {
    width: 100%;
    margin-left: 0;
  }

  .specs-kicker {
    margin-bottom: 12px;
    font-size: 14px;
  }

  .size-list article {
    padding: 12px 0 13px;
  }

  .size-list strong {
    font-size: 25px;
  }

  .dimension-grid {
    margin-top: 30px;
    gap: 0;
  }

  .dimension-panel {
    grid-template-rows: auto;
    gap: 0;
    padding: 16px 0;
    border-top: 1px solid var(--line);
  }

  .dimension-panel > img {
    display: none;
  }

  .dimension-panel strong {
    font-size: 27px;
  }

  .dimension-panel p {
    margin-top: 8px;
  }

  .dimension-panel ul {
    margin-top: 12px;
  }

  .dimension-panel li {
    grid-template-columns: minmax(96px, 0.72fr) minmax(0, 1fr);
    gap: 12px;
    padding: 11px 0;
  }

  .dimension-panel li b {
    font-size: 16px;
  }

  .angle-system {
    margin-top: 30px;
  }

  .angle-hero {
    gap: 22px;
  }

  .angle-copy strong {
    font-size: 34px;
  }

  .angle-copy p {
    margin-top: 12px;
    font-size: 16px;
  }

  .angle-hero img {
    width: 100%;
    margin-left: 0;
  }

  .angle-steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 34px;
    padding: 0;
    overflow: visible;
    scroll-snap-type: none;
  }

  .angle-steps article {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(112px, 0.58fr);
    gap: 0 16px;
    align-items: end;
    padding-top: 14px;
    border-top: 1px solid var(--line);
    scroll-snap-align: none;
  }

  .angle-steps img {
    grid-column: 1;
    grid-row: 1 / span 2;
    align-self: center;
  }

  .angle-steps span {
    grid-column: 2;
    margin-top: 10px;
    font-size: 15px;
  }

  .angle-steps strong {
    grid-column: 2;
    font-size: 18px;
  }

  .mobile-collapsible > summary {
    display: flex;
    min-height: 46px;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 0;
    border-top: 1px solid var(--line);
    color: var(--near-black);
    font-size: 15px;
    font-weight: 650;
    cursor: pointer;
    list-style: none;
  }

  .mobile-collapsible > summary::-webkit-details-marker {
    display: none;
  }

  .mobile-collapsible > summary::after,
  .faq-list summary::after {
    content: "+";
    color: var(--muted);
    font-size: 18px;
    font-weight: 400;
  }

  .mobile-collapsible[open] > summary::after,
  .faq-list details[open] summary::after {
    content: "-";
  }

  .angle-support-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 18px;
  }

  .angle-support-grid figcaption {
    margin-top: 8px;
    font-size: 14px;
  }

  .accessory-story {
    margin-top: 44px;
    padding-top: 34px;
  }

  .accessory-intro h3 {
    font-size: 32px;
  }

  .accessory-intro p:last-child {
    margin-top: 14px;
    font-size: 16px;
  }

  .accessory-group,
  .accessory-group-hardware {
    margin-top: 28px;
  }

  .accessory-detail-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px 18px;
    max-width: none;
    padding: 0;
    overflow: visible;
    scroll-snap-type: none;
  }

  .accessory-detail-grid article {
    padding-top: 14px;
    scroll-snap-align: none;
  }

  .accessory-detail-grid img {
    width: min(100%, 150px);
  }

  .accessory-detail-grid strong {
    font-size: 15px;
  }

  .manufacturing-layout {
    gap: 24px;
  }

  .manufacturing-caption {
    margin-top: 14px;
  }

  .manufacturing-image img {
    border-radius: 14px;
  }

  .faq-list {
    margin-top: 28px;
    gap: 0;
  }

  .faq-list .faq-item {
    padding: 0;
  }

  .faq-list summary {
    display: flex;
    min-height: 54px;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    cursor: pointer;
  }

  .faq-list summary h3 {
    font-size: 17px;
    line-height: 1.2;
  }

  .faq-list p {
    margin: 0 0 18px;
    font-size: 15px;
    line-height: 1.42;
  }

  .brand-story-layout {
    gap: 24px;
  }

  .brand-story-visual {
    margin: 24px 0 -18px;
  }

  .partner-scene {
    min-height: auto;
    padding: 64px 0;
  }

  .partner-logo {
    width: 124px;
    margin-bottom: 22px;
  }

  .partner-contacts {
    margin-top: 22px;
  }

  .partner-copy {
    margin-top: 28px;
    gap: 14px;
  }
}

@media (max-width: 520px) {
  .hero-merged .hero-copy h1 {
    font-size: 34px;
  }

  .brand {
    gap: 0;
  }

  .brand-logo-frame,
  .brand-logo-nav {
    width: 126px;
  }

  .brand-slogan {
    display: none;
  }

  .section-heading h2,
  .values-scene h2,
  .wholesale-copy h2,
  .manufacturing-copy h2,
  .brand-story-content h2,
  .partner-content h2 {
    font-size: 32px;
  }
}
