:root {
  color-scheme: light;
  --ink: #132235;
  --muted: #5d6978;
  --soft: #edf2f7;
  --paper: #f7f8fb;
  --white: #ffffff;
  --line: #d4dde7;
  --forest: #082a4f;
  --sage: #7c96ad;
  --blue: #17466f;
  --clay: #a85e4b;
  --gold: #c79a42;
  --shadow: 0 18px 48px rgba(8, 42, 79, 0.13);
  --font-body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  --font-heading: ui-serif, Georgia, Cambria, "Times New Roman", serif;
}

html:lang(en) {
  --font-body: Inter, "Segoe UI", Roboto, "Helvetica Neue", Arial, ui-sans-serif, system-ui,
    sans-serif;
  --font-heading: Georgia, Cambria, "Times New Roman", ui-serif, serif;
}

html:lang(nl) {
  --font-body: "Rijksoverheid Sans", "RO Sans", Inter, "Segoe UI", Arial, ui-sans-serif,
    system-ui, sans-serif;
  --font-heading: "Rijksoverheid Serif", "RO Serif", Georgia, Cambria, "Times New Roman",
    ui-serif, serif;
}

html:lang(de) {
  --font-body: BundesSans, "DIN 1451", "Segoe UI", Inter, Arial, ui-sans-serif, system-ui,
    sans-serif;
  --font-heading: BundesSerif, Georgia, Cambria, "Times New Roman", ui-serif, serif;
}

html:lang(fr) {
  --font-body: Marianne, "Avenir Next", "Segoe UI", Inter, Arial, ui-sans-serif, system-ui,
    sans-serif;
  --font-heading: Spectral, Georgia, Cambria, "Times New Roman", ui-serif, serif;
}

html:lang(zh) {
  --font-body: "Noto Sans SC", "Noto Sans CJK SC", "Source Han Sans SC", "PingFang SC",
    "Microsoft YaHei UI", "Microsoft YaHei", "Heiti SC", "Microsoft JhengHei", ui-sans-serif,
    system-ui, sans-serif;
  --font-heading: "Noto Serif SC", "Source Han Serif SC", "Songti SC", STSong, SimSun,
    "Noto Sans SC", "Microsoft YaHei UI", "Microsoft YaHei", serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

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

#products,
#catalog,
#b2b,
#markets,
#contact {
  scroll-margin-top: 92px;
}

body {
  margin: 0;
  background: #fbfcfd;
  color: var(--ink);
  font-family: var(--font-body);
  line-height: 1.55;
  overflow-x: hidden;
}

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

button,
input,
textarea {
  font: inherit;
}

.site-header {
  align-items: center;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(212, 221, 231, 0.9);
  display: grid;
  gap: 22px;
  grid-template-columns: auto 1fr auto;
  left: 0;
  padding: 12px clamp(20px, 4vw, 58px);
  position: sticky;
  right: 0;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(14px);
}

.brand {
  align-items: center;
  display: flex;
  gap: 9px;
  min-width: 0;
}

.brand-mark {
  align-items: center;
  background: transparent;
  border: 0;
  display: inline-flex;
  height: 30px;
  justify-content: center;
  overflow: hidden;
  padding: 0;
  width: 40px;
}

.brand-mark img {
  display: block;
  height: 100%;
  object-fit: contain;
  width: 100%;
}

.brand-name {
  color: var(--forest);
  font-weight: 850;
  letter-spacing: 0;
}

sup {
  font-size: 0.48em;
  line-height: 0;
  margin-left: 2px;
  position: relative;
  top: -0.48em;
}

.nav {
  align-items: center;
  display: flex;
  gap: 26px;
  font-size: 0.94rem;
  justify-content: flex-end;
}

.nav a {
  color: var(--muted);
}

.nav a:hover,
.nav a.is-current {
  color: var(--forest);
}

.nav a.is-current {
  font-weight: 850;
}

.language-switch {
  border: 1px solid var(--line);
  display: inline-grid;
  grid-template-columns: repeat(5, 1fr);
  justify-self: end;
  min-width: 226px;
}

.language-button {
  background: transparent;
  border: 0;
  color: var(--muted);
  cursor: pointer;
  font-size: 0.84rem;
  min-height: 36px;
  padding: 7px 9px;
}

.language-button.is-active {
  background: var(--forest);
  color: var(--white);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(320px, 0.76fr);
  min-height: 76vh;
  overflow: hidden;
  position: relative;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    #07192f;
  background-size: 92px 92px;
}

.hero::before {
  background: linear-gradient(180deg, rgba(199, 154, 66, 0.26), rgba(199, 154, 66, 0));
  content: "";
  height: 100%;
  right: 0;
  max-width: 380px;
  position: absolute;
  top: 0;
  width: 31vw;
}

.hero-content {
  align-self: center;
  color: var(--white);
  max-width: 780px;
  min-width: 0;
  padding: 80px clamp(20px, 6vw, 82px) 104px;
  position: relative;
  z-index: 2;
}

.eyebrow,
.section-label {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 850;
  margin: 0 0 13px;
  text-transform: uppercase;
}

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

h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.3rem, 4.1vw, 3.95rem);
  font-weight: 640;
  letter-spacing: 0;
  line-height: 1.05;
  margin-bottom: 24px;
  max-width: 720px;
  overflow-wrap: break-word;
}

h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 2.7vw, 2.72rem);
  font-weight: 640;
  letter-spacing: 0;
  line-height: 1.1;
  margin-bottom: 18px;
}

h3 {
  font-size: 1.12rem;
  line-height: 1.22;
  margin-bottom: 10px;
}

.hero-copy {
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.02rem, 1.45vw, 1.22rem);
  max-width: 650px;
}

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

.button {
  align-items: center;
  display: inline-flex;
  font-weight: 800;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
}

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

.button.secondary {
  border: 1px solid rgba(255, 255, 255, 0.62);
  color: var(--white);
}

.company-home {
  align-items: start;
  background:
    linear-gradient(90deg, var(--white) 0 58%, #eef3f8 58% 100%);
  display: grid;
  gap: clamp(28px, 6vw, 76px);
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.58fr);
  overflow: hidden;
  padding: clamp(58px, 8vw, 96px) clamp(20px, 6vw, 82px);
  position: relative;
}

.company-home::before {
  background:
    linear-gradient(180deg, rgba(199, 154, 66, 0.16), rgba(199, 154, 66, 0)),
    var(--forest);
  bottom: 0;
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: min(34vw, 480px);
}

.company-home::after {
  background: linear-gradient(
    90deg,
    #8d1f2d 0 14%,
    #7c609b 14% 28%,
    #86b8c9 28% 42%,
    #f2efe8 42% 56%,
    #1f6b55 56% 70%,
    #e5c66c 70% 84%,
    #0b1f3a 84% 100%
  );
  bottom: 0;
  content: "";
  height: 6px;
  left: clamp(20px, 6vw, 82px);
  max-width: 420px;
  position: absolute;
  width: 34vw;
}

.company-home-copy {
  max-width: 760px;
  min-width: 0;
  position: relative;
  z-index: 1;
}

.company-home .eyebrow {
  color: var(--clay);
}

.company-home h1 {
  color: var(--forest);
  font-size: clamp(2.05rem, 3.45vw, 3.25rem);
  line-height: 1.12;
  max-width: 760px;
}

.company-home .hero-copy {
  color: var(--muted);
  font-size: 1.08rem;
  max-width: 660px;
}

.company-home .button.primary {
  background: var(--forest);
  color: var(--white);
}

.company-home .button.secondary {
  border-color: var(--line);
  color: var(--forest);
}

.company-profile-card {
  background: var(--white);
  border: 1px solid rgba(212, 221, 231, 0.94);
  border-top: 4px solid var(--gold);
  border-radius: 8px;
  box-shadow: 0 24px 64px rgba(8, 42, 79, 0.2);
  min-width: 0;
  padding: 26px;
  position: relative;
  z-index: 1;
}

.company-profile-logo {
  align-items: center;
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 14px;
  padding-bottom: 20px;
}

.company-profile-logo img {
  display: block;
  height: 48px;
  object-fit: contain;
  width: 64px;
}

.company-profile-logo span {
  color: var(--forest);
  font-size: 1.7rem;
  font-weight: 850;
}

.company-facts {
  display: grid;
  gap: 0;
  margin: 0;
}

.company-facts div {
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 5px;
  padding: 16px 0;
}

.company-facts div:last-child {
  border-bottom: 0;
}

.company-facts dt {
  color: var(--clay);
  font-size: 0.76rem;
  font-weight: 850;
  text-transform: uppercase;
}

.company-facts dd {
  color: var(--ink);
  margin: 0;
}

.company-facts a {
  color: var(--forest);
  font-weight: 820;
}

.corporate-home {
  background: #f7f9fc;
}

.corporate-hero {
  align-items: center;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    var(--forest);
  background-size: 92px 92px;
  color: var(--white);
  display: grid;
  gap: clamp(32px, 6vw, 74px);
  grid-template-columns: minmax(0, 0.98fr) minmax(290px, 0.46fr);
  overflow: hidden;
  padding: clamp(58px, 8vw, 88px) clamp(20px, 6vw, 82px);
  position: relative;
}

.corporate-hero::after {
  background: linear-gradient(180deg, rgba(199, 154, 66, 0.34), rgba(199, 154, 66, 0));
  content: "";
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  width: min(28vw, 360px);
}

.corporate-hero-copy,
.corporate-identity-card {
  min-width: 0;
  position: relative;
  z-index: 1;
}

.corporate-hero .eyebrow {
  color: var(--gold);
}

.corporate-hero h1 {
  font-size: clamp(2.05rem, 3.35vw, 3.25rem);
  line-height: 1.12;
  max-width: 760px;
}

.corporate-hero p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.08rem;
  max-width: 760px;
}

.corporate-identity-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  justify-self: end;
  max-width: 380px;
  padding: clamp(22px, 3vw, 30px);
  width: 100%;
}

.identity-logo {
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  display: flex;
  gap: 16px;
  padding-bottom: 20px;
}

.identity-logo img {
  display: block;
  height: 56px;
  object-fit: contain;
  width: 76px;
}

.identity-logo strong {
  color: var(--white);
  font-size: 2rem;
  font-weight: 850;
}

.identity-facts {
  display: grid;
  gap: 0;
  margin: 0;
}

.identity-facts div {
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  display: grid;
  gap: 4px;
  padding: 16px 0;
}

.identity-facts div:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.identity-facts dt {
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 850;
  text-transform: uppercase;
}

.identity-facts dd {
  color: rgba(255, 255, 255, 0.82);
  margin: 0;
}

.corporate-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding: 28px clamp(20px, 6vw, 82px) 82px;
}

.corporate-panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  align-content: start;
  gap: 12px;
  min-width: 0;
  padding: clamp(22px, 3vw, 34px);
}

.b2b-photo-panel {
  min-height: 320px;
  overflow: hidden;
  padding: 0;
}

.b2b-photo-panel img {
  display: block;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  width: 100%;
}

.portal-image-rotator img {
  transition: opacity 0.24s ease;
}

.corporate-about {
  border-top: 4px solid var(--gold);
}

.corporate-panel h2 {
  font-size: clamp(1.45rem, 2vw, 2rem);
  margin-bottom: 4px;
}

.corporate-panel p:not(.section-label) {
  color: var(--muted);
}

.corporate-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

.corporate-actions .button.primary {
  background: var(--forest);
  color: var(--white);
}

.corporate-actions .button.secondary {
  border: 1px solid var(--line);
  color: var(--forest);
}

.compact-facts div:first-child {
  padding-top: 0;
}

.home-section {
  padding: 0 clamp(20px, 6vw, 82px) 70px;
}

.home-section-head {
  align-items: end;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 32px;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 0.72fr);
  padding-top: 34px;
}

.home-section-head h2 {
  color: var(--forest);
  font-size: clamp(1.65rem, 2.25vw, 2.35rem);
  margin-bottom: 0;
}

.home-section-head p:last-child {
  color: var(--muted);
  font-size: 1.04rem;
  margin-bottom: 0;
}

.brand-story-grid,
.home-collection-grid,
.home-work-grid {
  display: grid;
  gap: 16px;
  margin-top: 26px;
}

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

.brand-story-card,
.home-collection-card,
.home-work-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  min-width: 0;
  padding: clamp(22px, 3vw, 30px);
}

.brand-story-card {
  background:
    linear-gradient(135deg, rgba(8, 42, 79, 0.04), rgba(199, 154, 66, 0.07)),
    var(--white);
  display: grid;
  gap: 12px;
}

.home-collection-card {
  border-top: 4px solid var(--gold);
}

.home-collection-card:nth-child(2) {
  border-top-color: var(--sage);
}

.brand-story-card span,
.home-collection-card span,
.home-work-item span {
  color: var(--clay);
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 850;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.brand-story-card h3 {
  color: var(--forest);
  font-family: var(--font-heading);
  font-size: clamp(1.55rem, 2.2vw, 2.25rem);
  line-height: 1.05;
  margin-bottom: 0;
}

.home-collection-card h3,
.home-work-item h3 {
  color: var(--forest);
  font-size: 1.22rem;
  line-height: 1.22;
  margin-bottom: 10px;
}

.brand-story-card p {
  color: var(--muted);
  font-size: 1.02rem;
  margin-bottom: 0;
}

.home-collection-card p,
.home-work-item p {
  color: var(--muted);
  margin-bottom: 0;
}

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

.home-work-item span {
  color: var(--gold);
  font-family: var(--font-heading);
  font-size: 1.3rem;
  line-height: 1;
}

.hero-visual {
  align-self: center;
  display: grid;
  gap: 14px;
  min-width: 0;
  padding: 80px clamp(20px, 6vw, 82px) 104px 0;
  position: relative;
  z-index: 2;
}

.hero-brand-card,
.hero-series-card,
.hero-color-card {
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
  min-width: 0;
}

.hero-brand-card {
  align-items: center;
  color: var(--white);
  display: flex;
  gap: 18px;
  min-height: 148px;
  padding: 28px;
}

.hero-brand-card img {
  display: block;
  height: 70px;
  object-fit: contain;
  width: 94px;
}

.hero-brand-card span {
  font-size: clamp(2.1rem, 4vw, 3.4rem);
  font-weight: 860;
  letter-spacing: 0;
}

.hero-series-card {
  color: var(--white);
  display: grid;
  gap: 0;
  padding: 0;
}

.hero-card-label {
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 850;
  margin: 0;
  padding: 18px 22px 14px;
  text-transform: uppercase;
}

.hero-series-row {
  display: grid;
  gap: 16px;
  grid-template-columns: 42px 1fr;
  padding: 18px 22px;
}

.hero-series-row + .hero-series-row {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-series-row span {
  color: var(--gold);
  font-weight: 850;
}

.hero-series-row strong,
.hero-series-row em {
  display: block;
}

.hero-series-row strong {
  color: var(--white);
  font-size: 1.02rem;
}

.hero-series-row em {
  color: rgba(255, 255, 255, 0.68);
  font-style: normal;
  margin-top: 3px;
}

.hero-color-card {
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  padding: 14px;
}

.hero-color-card span {
  background: var(--swatch);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.32);
  display: block;
  min-height: 44px;
}

.hero-strip {
  align-self: end;
  background: rgba(248, 247, 242, 0.95);
  border-top: 1px solid rgba(255, 255, 255, 0.4);
  color: var(--ink);
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-column: 1 / -1;
  margin-top: auto;
  position: relative;
  z-index: 3;
}

.hero-strip span {
  background: rgba(255, 255, 255, 0.62);
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 740;
  padding: 15px clamp(16px, 3vw, 34px);
}

.section {
  padding: 74px clamp(20px, 6vw, 82px);
}

.page-main {
  background: #fbfcfd;
}

.page-hero {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    var(--forest);
  background-size: 92px 92px;
  color: var(--white);
  padding: clamp(54px, 7vw, 88px) clamp(20px, 6vw, 82px);
}

.page-hero h1,
.standalone-contact h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.1rem, 3.4vw, 3.35rem);
  line-height: 1.08;
  max-width: 820px;
}

.page-hero p:not(.section-label) {
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.1rem;
  max-width: 760px;
}

.page-section {
  padding-top: 58px;
}

.privacy-section {
  background:
    linear-gradient(90deg, rgba(8, 42, 79, 0.04) 1px, transparent 1px),
    linear-gradient(180deg, rgba(8, 42, 79, 0.04) 1px, transparent 1px),
    #fbfcfd;
  background-size: 92px 92px;
}

.privacy-section h1 {
  color: var(--forest);
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 3.4vw, 3.45rem);
  line-height: 1.08;
  margin-bottom: 16px;
}

.privacy-intro {
  color: var(--muted);
  font-size: 1.08rem;
  max-width: 760px;
}

.privacy-updated {
  border-left: 3px solid var(--gold);
  display: grid;
  gap: 4px;
  margin: 28px 0;
  padding-left: 16px;
}

.privacy-updated span {
  color: var(--clay);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.privacy-updated strong {
  color: var(--forest);
}

.privacy-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 1040px;
}

.privacy-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 10px;
  padding: clamp(20px, 3vw, 28px);
}

.privacy-card h2 {
  color: var(--forest);
  font-size: 1.05rem;
  margin: 0;
}

.privacy-card p {
  color: var(--muted);
  margin: 0;
}

.simple-feature {
  margin-top: 0;
}

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

.products-intro {
  align-items: center;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(8, 42, 79, 0.99) 0 56%, rgba(8, 42, 79, 0.94) 76%, rgba(8, 42, 79, 0.9)),
    var(--forest);
  background-position: center, center, center, center;
  background-size: 92px 92px, 92px 92px, cover, auto;
  border-bottom: 0;
  color: var(--white);
  display: grid;
  gap: clamp(28px, 6vw, 76px);
  grid-template-columns: minmax(0, 0.86fr) minmax(300px, 0.48fr);
  overflow: hidden;
  padding: clamp(52px, 7vw, 88px) clamp(20px, 6vw, 82px);
  position: relative;
}

.products-intro::before {
  background: url("./assets/lyh-logo-gold-cropped.png") center / contain no-repeat;
  content: "";
  height: min(46vw, 520px);
  opacity: 0.1;
  position: absolute;
  right: clamp(28px, 8vw, 120px);
  top: 50%;
  transform: translateY(-50%) rotate(-3deg);
  width: min(54vw, 620px);
}

.products-intro::after {
  background: linear-gradient(180deg, rgba(199, 154, 66, 0.34), rgba(199, 154, 66, 0));
  content: "";
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  width: min(27vw, 360px);
}

.products-intro-copy {
  max-width: 920px;
  min-width: 0;
  position: relative;
  z-index: 1;
}

.products-intro h1 {
  color: var(--white);
  font-size: clamp(2.05rem, 3.35vw, 3.25rem);
  margin-bottom: 18px;
  max-width: 790px;
}

.products-intro p:not(.section-label) {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.08rem;
  margin-bottom: 0;
  max-width: 780px;
}

.products-hero-visual {
  background: rgba(255, 255, 255, 0.075);
  border: 1px solid rgba(255, 255, 255, 0.18);
  display: grid;
  gap: 14px;
  justify-self: end;
  max-width: 470px;
  min-width: 0;
  padding: clamp(14px, 2.2vw, 22px);
  position: relative;
  width: 100%;
  z-index: 1;
}

.products-visual-board {
  display: grid;
  gap: 10px;
  min-width: 0;
}

.products-visual-board img {
  aspect-ratio: 720 / 260;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 18px 34px rgba(2, 15, 31, 0.18);
  display: block;
  object-fit: contain;
  object-position: center;
  width: 100%;
}

.products-visual-brand {
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  display: flex;
  gap: 16px;
  min-height: 104px;
  padding-bottom: 22px;
}

.products-visual-brand img {
  display: block;
  height: 62px;
  object-fit: contain;
  width: 84px;
}

.products-visual-brand span {
  color: var(--white);
  font-size: 2rem;
  font-weight: 850;
}

.products-visual-list {
  background: rgba(6, 27, 52, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.13);
  display: grid;
  gap: 0;
  padding: 15px 18px 5px;
}

.products-visual-list p {
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0;
  margin: 0 0 4px;
  text-transform: uppercase;
}

.products-visual-list span {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  display: grid;
  gap: 4px;
  padding: 13px 0;
}

.products-visual-list strong {
  color: var(--gold);
  font-size: 0.76rem;
  text-transform: uppercase;
}

.products-visual-list em {
  color: rgba(255, 255, 255, 0.86);
  font-style: normal;
  font-weight: 760;
}

.products-contact-note {
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 4px solid var(--gold);
  display: grid;
  gap: 5px;
  min-width: 0;
  padding: 20px 22px;
}

.products-contact-note span {
  color: var(--clay);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.products-contact-note a {
  color: var(--forest);
  font-size: 1.08rem;
  font-weight: 850;
}

.product-directory {
  background: #fbfcfd;
}

.directory-head {
  align-items: end;
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 34px;
  grid-template-columns: minmax(0, 0.64fr) minmax(0, 0.86fr);
  padding-bottom: 28px;
}

.directory-head h2 {
  margin-bottom: 0;
}

.directory-head p:last-child {
  color: var(--muted);
  font-size: 1.06rem;
  margin-bottom: 0;
}

.directory-layout {
  align-items: start;
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(310px, 0.68fr) minmax(0, 1.32fr);
  margin-top: 28px;
}

.collection-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 28px;
}

.collection-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 18px;
  min-width: 0;
  padding: clamp(24px, 3.4vw, 38px);
  position: relative;
  overflow: hidden;
}

.collection-card h2 {
  color: var(--forest);
  font-size: clamp(1.65rem, 2.4vw, 2.35rem);
  margin-bottom: 0;
}

.collection-card p:not(.variant-kicker) {
  color: var(--muted);
  margin-bottom: 0;
}

.collection-slogan {
  color: var(--gold) !important;
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 1.7vw, 1.7rem);
  font-weight: 850;
  line-height: 1.08;
}

.collection-visual {
  aspect-ratio: 720 / 420;
  background: #f7f9fc;
  border: 1px solid var(--line);
  border-radius: 8px;
  margin: 0;
  overflow: hidden;
}

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

.story-points {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 0;
  margin-top: 4px;
}

.story-points span {
  border-bottom: 1px solid var(--line);
  color: var(--forest);
  font-size: 0.9rem;
  font-weight: 760;
  padding: 13px 0;
}

.story-points span:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.story-points-light {
  border-top-color: var(--line);
}

.story-points-light span {
  border-bottom-color: var(--line);
  color: var(--forest);
}

.collection-card-dark {
  background:
    linear-gradient(90deg, rgba(141, 31, 45, 0.05), rgba(199, 154, 66, 0.07)),
    var(--white);
}

.collection-card-light {
  background:
    linear-gradient(90deg, rgba(8, 42, 79, 0.045), rgba(124, 150, 173, 0.08)),
    var(--white);
}

.collection-card-dark::before,
.collection-card-light::before {
  content: "";
  height: 5px;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.collection-card-dark::before {
  background: linear-gradient(
    90deg,
    #8d1f2d,
    #7b5faa,
    #86b8c9,
    #f0eee8,
    #1f6b55,
    #dfc86d,
    #17466f
  );
}

.collection-card-light::before {
  background: linear-gradient(90deg, var(--forest), var(--sage), var(--gold));
}

.comfort-panel {
  background:
    linear-gradient(90deg, rgba(8, 42, 79, 0.05) 1px, transparent 1px),
    linear-gradient(180deg, rgba(8, 42, 79, 0.05) 1px, transparent 1px),
    linear-gradient(145deg, #f8fafc, #edf3f8);
  background-size: 42px 42px, 42px 42px, auto;
  border: 1px solid var(--line);
  min-height: 168px;
  overflow: hidden;
  position: relative;
}

.comfort-panel::after {
  background: linear-gradient(90deg, rgba(8, 42, 79, 0.08), rgba(199, 154, 66, 0.22));
  bottom: 0;
  content: "";
  height: 5px;
  left: 0;
  position: absolute;
  right: 0;
}

.comfort-panel-mark {
  bottom: 22px;
  display: grid;
  gap: 8px;
  left: 24px;
  position: absolute;
  width: 52px;
  z-index: 2;
}

.comfort-panel-mark span {
  background: var(--forest);
  display: block;
  height: 3px;
}

.comfort-panel-mark span:nth-child(2) {
  background: var(--gold);
  width: 72%;
}

.comfort-contours {
  bottom: 16px;
  height: 78%;
  left: 0;
  position: absolute;
  width: 100%;
}

.comfort-contours path {
  fill: none;
  stroke: rgba(8, 42, 79, 0.42);
  stroke-linecap: round;
  stroke-width: 3;
}

.comfort-contours path:nth-child(2) {
  stroke: rgba(124, 150, 173, 0.72);
}

.comfort-contours path:nth-child(3) {
  stroke: rgba(199, 154, 66, 0.58);
}

.light-facts span {
  border-color: var(--line);
  color: var(--forest);
}

.featured-line {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    var(--forest);
  background-size: 54px 54px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  color: var(--white);
  display: grid;
  gap: 18px;
  min-width: 0;
  padding: clamp(24px, 3.6vw, 38px);
}

.featured-line h2 {
  color: var(--white);
  font-size: clamp(1.65rem, 2.3vw, 2.3rem);
  margin-bottom: 0;
}

.featured-line p:not(.variant-kicker) {
  color: rgba(255, 255, 255, 0.74);
  margin-bottom: 0;
}

.month-palette {
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 4px;
}

.month-palette span {
  align-items: center;
  background: var(--swatch);
  border: 1px solid rgba(255, 255, 255, 0.7);
  color: var(--white);
  display: grid;
  font-size: 0.7rem;
  font-weight: 850;
  justify-items: center;
  min-height: 48px;
}

.month-palette span:nth-child(4),
.month-palette span:nth-child(6),
.month-palette span:nth-child(11) {
  color: #07192f;
}

.line-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.line-facts span {
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.78rem;
  font-weight: 780;
  padding: 8px 10px;
}

.collection-card-light .line-facts span {
  border-color: var(--line);
  color: var(--forest);
}

.series-stack {
  display: grid;
  gap: 12px;
  min-width: 0;
}

.series-row {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 18px;
  grid-template-columns: 46px minmax(0, 1fr);
  min-width: 0;
  padding: clamp(20px, 2.6vw, 28px);
}

.series-number {
  color: var(--gold);
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 700;
  line-height: 1;
}

.series-row h3 {
  color: var(--forest);
  font-size: 1.22rem;
  margin-bottom: 8px;
}

.series-row p:not(.variant-kicker) {
  color: var(--muted);
  margin-bottom: 0;
}

.quiet-row {
  background: #f4f7fa;
}

.standalone-contact {
  min-height: 62vh;
}

.intro {
  align-items: start;
  display: grid;
  gap: 42px;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
}

.intro p:last-child,
.b2b-section .section-heading p,
.market-row p,
.contact p {
  color: var(--muted);
  font-size: 1.06rem;
}

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

.section-cta {
  border-bottom: 2px solid var(--gold);
  color: var(--forest);
  display: inline-flex;
  font-weight: 820;
  margin-top: 8px;
  padding-bottom: 3px;
}

.section-cta:hover {
  color: var(--gold);
}

.section-cta:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}

.section-cta-secondary {
  color: var(--ink);
  margin-left: 18px;
}

.product-line {
  background: var(--white);
}

.product-feature {
  align-items: stretch;
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.72fr);
  margin-top: 30px;
  min-height: 0;
}

.product-stage {
  align-items: center;
  background:
    linear-gradient(180deg, rgba(8, 42, 79, 0.88), rgba(7, 25, 47, 0.96)),
    var(--forest);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  justify-items: center;
  overflow: hidden;
  min-height: 300px;
  padding: 30px;
  position: relative;
}

.line-sketch {
  fill: none;
  stroke: var(--forest);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 4;
}

.series-ledger {
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: var(--white);
  display: grid;
  max-width: 420px;
  width: 100%;
}

.ledger-top {
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  display: flex;
  gap: 12px;
  padding: 18px 20px;
}

.ledger-top img {
  display: block;
  height: 34px;
  object-fit: contain;
  width: 46px;
}

.ledger-top span {
  color: var(--white);
  font-weight: 850;
}

.ledger-item {
  display: grid;
  gap: 4px;
  grid-template-columns: 42px 1fr;
  padding: 17px 20px;
}

.ledger-item + .ledger-item {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.ledger-item small {
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 850;
}

.ledger-item strong {
  color: var(--white);
}

.ledger-item p {
  color: rgba(255, 255, 255, 0.66);
  grid-column: 2;
  margin: 0;
}

.color-map {
  bottom: 24px;
  display: flex;
  gap: 8px;
  position: absolute;
  right: 24px;
  z-index: 3;
}

.color-map span,
.palette-strip span {
  background: var(--swatch);
  border: 2px solid rgba(255, 255, 255, 0.82);
  box-shadow: 0 8px 18px rgba(8, 42, 79, 0.13);
  display: block;
  height: 22px;
  width: 22px;
}

.product-details {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  align-content: center;
  padding: clamp(28px, 5vw, 46px);
}

.product-details p,
.variant-card p,
.program-card p {
  color: var(--muted);
}

.spec-grid {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 24px;
}

.spec-grid span {
  border: 1px solid var(--line);
  color: var(--forest);
  font-weight: 740;
  padding: 13px 14px;
}

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

.variant-card,
.program-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
}

.story-card {
  display: grid;
  gap: 14px;
}

.story-visual {
  align-items: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  justify-items: center;
  min-height: 178px;
  overflow: hidden;
  position: relative;
}

.story-visual svg {
  max-height: 118px;
  width: min(72%, 190px);
}

.shell-visual {
  background:
    linear-gradient(135deg, rgba(199, 154, 66, 0.16), rgba(255, 255, 255, 0.72)),
    #fbfcfd;
}

.charm-visual {
  background:
    linear-gradient(135deg, rgba(141, 31, 45, 0.1), rgba(255, 255, 255, 0.76)),
    #fbfcfd;
}

.cushion-visual {
  background: #f6f8fb;
  padding: 10px;
}

.story-visual img {
  display: block;
  height: 100%;
  max-height: 210px;
  object-fit: contain;
  width: 100%;
}

.mini-swatches,
.hardware-dots {
  bottom: 14px;
  display: flex;
  gap: 7px;
  position: absolute;
  right: 14px;
}

.mini-swatches span {
  background: var(--swatch);
  border: 2px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 6px 14px rgba(8, 42, 79, 0.12);
  height: 18px;
  width: 18px;
}

.hardware-dots span {
  border: 2px solid var(--gold);
  border-radius: 50%;
  box-shadow: 0 5px 14px rgba(8, 42, 79, 0.12);
  height: 18px;
  width: 18px;
}

.hardware-dots span:nth-child(2) {
  background: var(--gold);
}

.story-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 2px;
}

.story-tags span {
  background: rgba(8, 42, 79, 0.06);
  color: var(--forest);
  font-size: 0.78rem;
  font-weight: 780;
  padding: 7px 9px;
}

.variant-kicker {
  color: var(--clay);
  font-size: 0.82rem;
  font-weight: 800;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.variant-card p:last-child,
.program-card p:last-child {
  margin-bottom: 0;
}

.sample-gallery {
  align-items: start;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(220px, 0.54fr) minmax(0, 1.46fr);
  margin-top: 30px;
  padding-top: 28px;
}

.sample-copy {
  max-width: 360px;
}

.sample-copy p:last-child {
  color: var(--muted);
  margin-bottom: 0;
}

.sample-images {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.sample-images img {
  aspect-ratio: 1;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: block;
  object-fit: contain;
  padding: 8px;
  width: 100%;
}

.series-note {
  align-items: center;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, 1fr) auto;
  margin-top: 30px;
  padding: 26px;
}

.series-note h3 {
  max-width: 680px;
}

.series-note p:last-child {
  color: var(--muted);
  margin-bottom: 0;
  max-width: 760px;
}

.palette-strip {
  display: grid;
  gap: 9px;
  grid-template-columns: repeat(7, 22px);
}

.catalog-section {
  background: #fbfcfd;
}

.catalog-section .section-heading p:last-child {
  color: var(--muted);
  font-size: 1.06rem;
}

.catalog-feature {
  align-items: stretch;
  border: 1px solid var(--line);
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.7fr);
  margin-top: 30px;
  overflow: hidden;
}

.catalog-feature-image {
  background: var(--white);
  min-height: 280px;
}

.catalog-feature-image img {
  display: block;
  height: 100%;
  object-fit: contain;
  object-position: center;
  width: 100%;
}

.catalog-feature-copy {
  align-content: center;
  background: var(--forest);
  color: var(--white);
  display: grid;
  padding: clamp(26px, 4vw, 42px);
}

.catalog-feature-copy p {
  color: rgba(255, 255, 255, 0.74);
}

.catalog-feature-copy h3 {
  color: var(--white);
  font-size: clamp(1.55rem, 2.2vw, 2.2rem);
}

.catalog-facts,
.catalog-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.catalog-facts span {
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.78rem;
  font-weight: 780;
  padding: 7px 9px;
}

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

.catalog-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 14px;
  padding: 22px;
}

.catalog-card-media {
  align-items: center;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  justify-items: center;
  min-height: 178px;
  overflow: hidden;
}

.catalog-card-media img {
  display: block;
  height: 100%;
  min-height: 178px;
  object-fit: cover;
  object-position: center;
  width: 100%;
}

.product-photo-media {
  background: var(--white);
  justify-items: stretch;
}

.product-photo-media img {
  object-fit: contain;
}

.catalog-card-media svg {
  max-height: 118px;
  width: min(72%, 190px);
}

.catalog-card p:not(.variant-kicker) {
  color: var(--muted);
}

.catalog-meta span {
  background: rgba(8, 42, 79, 0.06);
  color: var(--forest);
  font-size: 0.78rem;
  font-weight: 780;
  padding: 7px 9px;
}

.catalog-month-grid {
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(4, 42px);
}

.catalog-month-grid span {
  align-items: center;
  background: var(--swatch);
  color: #07192f;
  display: grid;
  font-size: 0.68rem;
  font-weight: 850;
  height: 42px;
  justify-items: center;
  outline: 2px solid rgba(255, 255, 255, 0.8);
}

.b2b-section {
  background: #eef3f8;
}

.b2b-hero {
  align-items: center;
  display: grid;
  gap: clamp(28px, 6vw, 74px);
  grid-template-columns: minmax(0, 0.9fr) minmax(290px, 0.42fr);
  position: relative;
}

.b2b-hero::after {
  background: linear-gradient(180deg, rgba(199, 154, 66, 0.3), rgba(199, 154, 66, 0));
  content: "";
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  width: min(27vw, 360px);
}

.b2b-hero-copy,
.b2b-hero-card {
  min-width: 0;
  position: relative;
  z-index: 1;
}

.b2b-hero-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  display: grid;
  gap: 0;
  justify-self: end;
  max-width: 390px;
  padding: clamp(22px, 3vw, 30px);
  width: 100%;
}

.b2b-hero-card p {
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 850;
  margin: 0 0 8px;
  text-transform: uppercase;
}

.b2b-hero-card span {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.86);
  font-weight: 760;
  padding: 15px 0;
}

.b2b-section-head {
  display: grid;
  gap: 10px;
  grid-template-columns: minmax(0, 760px);
  margin-bottom: 28px;
}

.b2b-section-head.compact {
  align-items: start;
  display: block;
  max-width: 760px;
}

.b2b-section-head h2 {
  color: var(--forest);
  font-size: clamp(1.65rem, 2.25vw, 2.35rem);
  margin-bottom: 4px;
}

.b2b-section-head p:last-child {
  color: var(--muted);
  font-size: 1.04rem;
  margin-bottom: 0;
}

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

.program-card {
  background: var(--white);
}

.program-card span {
  color: var(--gold);
  display: inline-block;
  font-weight: 850;
  margin-bottom: 18px;
}

.b2b-fit-section {
  background: #fbfcfd;
  padding-top: 64px;
}

.b2b-ecosystem-section {
  background: #f7f9fc;
  padding-top: 64px;
}

.b2b-ecosystem-section .b2b-section-head {
  margin-bottom: 24px;
}

.ecosystem-figure {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(8, 42, 79, 0.08);
  margin: 0;
  max-width: 1120px;
  overflow: hidden;
}

.ecosystem-figure img {
  display: block;
  height: auto;
  width: 100%;
}

.ecosystem-figure picture {
  display: block;
}

.b2b-fit-grid,
.b2b-process-grid {
  display: grid;
  gap: 16px;
  margin-top: 28px;
}

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

.b2b-fit-grid article,
.b2b-process-grid article {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  min-width: 0;
  padding: clamp(22px, 3vw, 30px);
}

.b2b-fit-grid h3,
.b2b-process-grid h3 {
  color: var(--forest);
}

.b2b-fit-grid p,
.b2b-process-grid p {
  color: var(--muted);
  margin-bottom: 0;
}

.b2b-process-section {
  background:
    linear-gradient(90deg, rgba(8, 42, 79, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(8, 42, 79, 0.035) 1px, transparent 1px),
    #f7f9fc;
  background-size: 92px 92px;
  padding-top: 64px;
}

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

.b2b-faq-section {
  background: #fbfcfd;
  padding-top: 64px;
}

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

.b2b-faq-grid article {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  min-width: 0;
  padding: clamp(22px, 3vw, 30px);
}

.b2b-faq-grid h3 {
  color: var(--forest);
}

.b2b-faq-grid p {
  color: var(--muted);
  margin-bottom: 0;
}

.b2b-process-grid span {
  color: var(--gold);
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 18px;
}

.b2b-inquiry-section {
  background: #fbfcfd;
  padding-top: 20px;
}

.b2b-inquiry {
  align-items: center;
  background: var(--forest);
  color: var(--white);
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, 1fr) auto;
  min-width: 0;
  padding: clamp(28px, 5vw, 46px);
}

.b2b-inquiry h2 {
  color: var(--white);
  font-size: clamp(1.55rem, 2.2vw, 2.3rem);
  margin-bottom: 10px;
}

.b2b-inquiry p:not(.section-label) {
  color: rgba(255, 255, 255, 0.74);
  margin-bottom: 0;
  max-width: 720px;
}

.b2b-inquiry .button.primary {
  background: var(--white);
  color: var(--forest);
}

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

.markets .section-heading {
  max-width: 720px;
}

.markets .section-label {
  color: #d2ad67;
}

.b2b-section .section-cta {
  margin-top: 16px;
}

.market-panel {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin-top: 34px;
}

.market-row {
  align-items: start;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  display: grid;
  gap: 22px;
  grid-template-columns: 52px minmax(180px, 0.55fr) minmax(0, 1fr);
  padding: 24px 0;
}

.market-row span {
  color: #d2ad67;
  font-weight: 850;
}

.market-row strong {
  font-size: 1.05rem;
}

.market-row p {
  color: rgba(255, 255, 255, 0.74);
  margin-bottom: 0;
}

.portal-hero {
  align-items: stretch;
  background: var(--white);
  display: grid;
  gap: 34px;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.5fr);
}

.portal-login-hero {
  align-items: start;
  background: #f6f8fb;
  min-height: calc(100vh - 69px);
}

.portal-login-hero[hidden],
.portal-app-shell[hidden],
.portal-dashboard[hidden],
[data-portal-auth-content][hidden] {
  display: none;
}

.portal-app-shell [hidden] {
  display: none !important;
}

body.portal-mode {
  background: #f7f8fb;
  overflow-x: hidden;
}

body.portal-mode .site-header,
body.portal-mode .site-footer {
  display: none;
}

body.portal-mode .page-main {
  background: #f7f8fb;
}

.portal-app-shell {
  background: #f3f5f8;
  color: #111827;
  display: grid;
  grid-template-columns: 232px minmax(0, 1fr);
  grid-template-rows: 54px 1fr;
  min-height: 100vh;
}

.portal-app-top {
  align-items: center;
  background: var(--white);
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 16px;
  grid-column: 2;
  grid-template-columns: auto minmax(320px, 420px) auto;
  height: 54px;
  padding: 0 18px;
  position: sticky;
  top: 0;
  z-index: 30;
}

.portal-app-brand {
  display: none;
}

.portal-app-brand img {
  display: block;
  height: 30px;
  object-fit: contain;
  width: 40px;
}

.portal-top-company,
.portal-account-menu {
  align-items: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: #111827;
  cursor: pointer;
  display: inline-flex;
  font-weight: 760;
  gap: 8px;
  justify-self: start;
  min-height: 34px;
  padding: 0 11px;
}

.portal-top-search {
  align-items: center;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--forest);
  display: grid;
  gap: 8px;
  grid-template-columns: auto 1fr auto;
  min-height: 36px;
  padding: 0 8px 0 12px;
}

.portal-top-search input {
  background: transparent;
  border: 0;
  color: var(--forest);
  font: inherit;
  font-weight: 650;
  min-width: 0;
  outline: 0;
  width: 100%;
}

.portal-top-search input::placeholder {
  color: var(--forest);
  opacity: 1;
}

.portal-search-mark {
  border: 2px solid var(--forest);
  border-radius: 50%;
  display: block;
  height: 12px;
  position: relative;
  width: 12px;
}

.portal-search-mark::after {
  background: var(--forest);
  bottom: -5px;
  content: "";
  height: 6px;
  position: absolute;
  right: -4px;
  transform: rotate(-45deg);
  width: 2px;
}

.portal-top-search kbd {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 5px;
  color: #6b7280;
  font: inherit;
  font-size: 0.82rem;
  min-width: 30px;
  padding: 2px 9px;
  text-align: center;
}

.portal-top-actions {
  display: flex;
  gap: 8px;
  justify-self: end;
}

.portal-sidebar {
  align-content: start;
  background: var(--white);
  border-right: 1px solid var(--line);
  color: var(--forest);
  display: grid;
  gap: 12px;
  grid-column: 1;
  grid-row: 1 / -1;
  min-height: 100vh;
  padding: 14px 12px;
  position: sticky;
  top: 0;
}

.portal-sidebar-logo {
  align-items: center;
  color: var(--forest);
  display: inline-flex;
  font-weight: 850;
  gap: 9px;
  padding: 0 10px 12px;
}

.portal-sidebar-logo img {
  display: block;
  height: 31px;
  object-fit: contain;
  width: 42px;
}

.portal-sidebar-head {
  display: none;
}

.portal-side-nav {
  display: grid;
  gap: 3px;
  order: 1;
}

.portal-menu-label {
  color: #8a95a5;
  display: block;
  font-size: 0.72rem;
  font-weight: 760;
  margin: 18px 8px 7px;
}

.portal-menu-link {
  align-items: center;
  border-radius: 6px;
  color: var(--ink);
  display: grid;
  font-weight: 650;
  gap: 9px;
  grid-template-columns: 18px minmax(0, 1fr) auto auto;
  min-height: 33px;
  padding: 7px 8px;
}

.portal-nav-icon {
  border: 1.7px solid currentColor;
  border-radius: 3px;
  display: block;
  height: 13px;
  opacity: 0.76;
  width: 13px;
}

.portal-menu-link:hover,
.portal-menu-link:focus-visible,
.portal-menu-link.is-active {
  background: var(--forest);
  color: var(--white);
}

.portal-menu-link.is-gold {
  color: var(--gold);
}

.portal-menu-link.is-gold:hover,
.portal-menu-link.is-gold:focus-visible {
  background: rgba(199, 154, 66, 0.12);
  color: var(--gold);
}

.portal-menu-caret {
  color: currentColor;
  font-size: 0.78rem;
  opacity: 0.68;
}

.portal-menu-badge {
  background: rgba(199, 154, 66, 0.18);
  border-radius: 999px;
  color: var(--forest);
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1;
  padding: 4px 7px;
}

.portal-subnav {
  display: grid;
  gap: 2px;
  margin: 1px 0 8px 27px;
}

.portal-subnav a {
  border-radius: 6px;
  color: var(--ink);
  font-size: 0.83rem;
  font-weight: 620;
  padding: 7px 8px;
}

.portal-subnav a:hover,
.portal-subnav a:focus-visible,
.portal-subnav a.is-active {
  background: var(--paper);
  color: var(--forest);
}

.portal-workspace {
  align-content: start;
  display: grid;
  gap: 12px;
  grid-column: 2;
  grid-row: 2;
  min-width: 0;
  padding: 22px 24px 44px;
}

.portal-workspace-top {
  align-items: center;
  display: grid;
  gap: 14px;
  grid-template-columns: minmax(0, 1fr) auto;
  margin-bottom: 2px;
}

.portal-workspace-top h1 {
  color: #111827;
  font-family: var(--font-body);
  font-size: clamp(1.25rem, 1.55vw, 1.55rem);
  font-weight: 820;
  line-height: 1.2;
  margin: 0;
}

.portal-workspace-top p:not(.section-label) {
  color: #4b5563;
  margin: 4px 0 0;
  max-width: 780px;
}

.portal-workspace-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
  min-width: 0;
}

.portal-workspace-actions a {
  background: var(--white);
  border: 1px solid #d8dde5;
  border-radius: 7px;
  color: #111827;
  font-weight: 760;
  padding: 8px 11px;
}

.portal-workspace-panel {
  background: transparent;
  border: 0;
  border-radius: 0;
  min-width: 0;
  padding: 0;
}

.portal-workspace-panel h2 {
  color: var(--forest);
  font-family: var(--font-body);
  font-size: clamp(1.2rem, 1.45vw, 1.45rem);
  font-weight: 820;
  line-height: 1.22;
  margin: 0;
}

.portal-hero h1 {
  color: var(--ink);
}

.portal-hero p:not(.section-label) {
  color: var(--muted);
}

.portal-status-panel {
  align-content: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 10px;
  padding: 24px;
}

.portal-status-panel span {
  background: var(--paper);
  color: var(--forest);
  font-weight: 800;
  padding: 13px 14px;
}

.portal-login-actions {
  margin-top: 24px;
}

.portal-login-actions .button.ghost {
  background: var(--forest);
  border: 1px solid var(--forest);
  border-radius: 7px;
  color: var(--white);
}

.portal-login-actions .button.ghost:hover,
.portal-login-actions .button.ghost:focus-visible {
  background: #0f3a66;
  color: var(--white);
}

.portal-entry-panel {
  display: grid;
  gap: 14px;
  width: 100%;
}

.portal-access-card {
  background: #fbfcfd;
}

.portal-access-card .portal-form-grid {
  gap: 12px;
}

.portal-section,
.portal-status-section,
.portal-dashboard {
  background: transparent;
}

.portal-sample-section {
  background: var(--paper);
}

.portal-section-head {
  align-items: end;
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 14px;
  grid-template-columns: 190px minmax(0, 1fr);
  margin-bottom: 14px;
  padding-bottom: 12px;
}

.portal-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
}

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

.portal-form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 18px;
  padding: clamp(20px, 3vw, 28px);
}

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

.portal-sample-form,
.portal-status-form {
  margin: 0 auto;
  max-width: 980px;
  width: 100%;
}

.portal-form-head {
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 8px;
  padding-bottom: 16px;
}

.portal-form-head span {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 860;
}

.portal-form-head h3 {
  margin: 0;
}

.portal-form-head h2 {
  color: var(--forest);
  font-size: clamp(1.35rem, 2vw, 1.85rem);
  margin: 0;
}

.portal-form-head p {
  color: var(--muted);
  margin: 0;
}

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

.portal-shop {
  display: grid;
  gap: 16px;
}

.portal-shop-head h4,
.portal-cart-head h4 {
  color: var(--forest);
  font-size: 1.05rem;
  margin: 0 0 6px;
}

.portal-shop-head p {
  color: var(--muted);
  margin: 0;
}

.portal-shop-catalog {
  display: grid;
  gap: 12px;
}

.portal-shop-catalog article {
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 12px;
  grid-template-columns: 96px minmax(0, 1fr) 88px 126px;
  padding: 14px;
}

.portal-product-thumb {
  aspect-ratio: 4 / 3;
  background: #f3f6fa;
  border: 1px solid var(--line);
  border-radius: 6px;
  display: block;
  margin: 0;
  overflow: hidden;
}

.portal-product-thumb img {
  display: block;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.24s ease;
  width: 100%;
}

.portal-image-rotator img.is-switching {
  opacity: 0;
}

.portal-shop-catalog h5 {
  color: var(--forest);
  font-size: 1rem;
  margin: 0 0 4px;
}

.portal-shop-catalog p {
  color: var(--muted);
  margin: 0 0 8px;
}

.portal-shop-catalog article div span {
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 850;
}

.portal-product-meta {
  display: grid;
  gap: 5px 10px;
  grid-template-columns: max-content minmax(0, 1fr);
  margin: 10px 0 0;
}

.portal-product-meta dt,
.portal-product-meta dd {
  font-size: 0.76rem;
  line-height: 1.35;
  margin: 0;
}

.portal-product-meta dt {
  color: var(--muted);
  font-weight: 780;
}

.portal-product-meta dd {
  color: var(--forest);
  font-weight: 820;
  overflow-wrap: anywhere;
}

.portal-shop-catalog label {
  gap: 5px;
}

.portal-shop-catalog button,
.portal-cart-head button,
.portal-cart-line button {
  min-height: 42px;
}

.portal-cart {
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 12px;
  padding: 14px;
}

.portal-cart-head {
  align-items: center;
  display: flex;
  gap: 12px;
  justify-content: space-between;
}

.portal-cart-head h4 {
  margin: 0;
}

.portal-cart-head button,
.portal-cart-line button {
  background: var(--paper);
  border: 1px solid var(--line);
  color: var(--forest);
}

.portal-cart p {
  color: var(--muted);
  margin: 0;
}

.portal-cart p[hidden] {
  display: none;
}

.portal-cart-lines {
  display: grid;
  gap: 10px;
}

.portal-cart-line {
  align-items: center;
  background: #fbfcfd;
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 10px;
  grid-template-columns: minmax(0, 1fr) 82px 42px;
  padding: 10px;
}

.portal-cart-line strong {
  color: var(--forest);
  display: block;
  overflow-wrap: anywhere;
}

.portal-cart-line span {
  color: var(--muted);
  display: block;
  font-size: 0.82rem;
  margin-top: 3px;
  overflow-wrap: anywhere;
}

.portal-cart-line input {
  min-height: 40px;
}

.portal-wide {
  grid-column: 1 / -1;
}

.portal-form label {
  display: grid;
  gap: 7px;
}

.portal-form label[hidden] {
  display: none;
}

.portal-form label span {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 740;
}

.portal-form input,
.portal-form select,
.portal-form textarea {
  background: var(--white);
  border: 1px solid var(--line);
  color: var(--ink);
  font: inherit;
  min-height: 46px;
  padding: 10px 12px;
  width: 100%;
}

.portal-form input[readonly],
.portal-form textarea[readonly] {
  background: #eef2f6;
  color: #6b7280;
  cursor: not-allowed;
}

.portal-form input:focus,
.portal-form select:focus,
.portal-form textarea:focus {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.portal-form textarea {
  resize: vertical;
}

.portal-login-form {
  display: grid;
  gap: 14px;
}

.portal-login-links {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
}

.portal-login-links a {
  color: var(--forest);
  font-size: 0.92rem;
  font-weight: 800;
  text-decoration: none;
}

.portal-login-links a:hover,
.portal-login-links a:focus-visible {
  color: var(--gold);
  text-decoration: underline;
}

.portal-login-note {
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.92rem;
  margin: 0;
  padding-top: 16px;
}

.portal-dashboard-head {
  align-items: start;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 14px;
  grid-template-columns: minmax(0, 1fr);
  margin-bottom: 12px;
  padding: 16px;
}

.portal-dashboard-head p:not(.section-label) {
  color: var(--muted);
  margin-bottom: 0;
  max-width: 760px;
}

.portal-ops-summary {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-bottom: 12px;
}

.portal-ops-summary article {
  background: #fbfcfd;
  border: 1px solid var(--line);
  border-radius: 7px;
  display: grid;
  gap: 6px;
  min-height: 112px;
  padding: 13px;
}

.portal-ops-summary span {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.portal-ops-summary strong {
  color: var(--forest);
  font-size: 1.02rem;
  overflow-wrap: anywhere;
}

.portal-ops-summary p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
  margin: 0;
}

.portal-dashboard-layout {
  align-items: start;
  display: grid;
  gap: 12px;
  grid-template-columns: minmax(0, 1fr) 280px;
}

.portal-process-panel,
.portal-action-panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 12px;
  padding: 14px;
}

.portal-panel-title {
  display: grid;
  gap: 4px;
}

.portal-panel-title h3 {
  color: var(--forest);
  font-family: var(--font-body);
  font-size: 1.08rem;
  line-height: 1.25;
  margin: 0;
}

.portal-process-list {
  display: grid;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
}

.portal-process-list li {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 14px;
  grid-template-columns: 42px minmax(0, 1fr);
  padding: 14px 0;
}

.portal-process-list li:first-child {
  border-top: 0;
  padding-top: 2px;
}

.portal-process-list li:last-child {
  padding-bottom: 2px;
}

.portal-process-list span {
  align-items: center;
  background: #f5f7fa;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--gold);
  display: flex;
  font-size: 0.82rem;
  font-weight: 850;
  height: 36px;
  justify-content: center;
  width: 36px;
}

.portal-process-list strong {
  color: var(--forest);
  display: block;
  margin-bottom: 4px;
}

.portal-process-list p {
  color: var(--muted);
  line-height: 1.55;
  margin: 0;
}

.portal-action-panel {
  background: #fbfcfd;
}

.portal-action-panel a {
  align-items: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--forest);
  display: flex;
  font-weight: 800;
  min-height: 44px;
  padding: 10px 12px;
}

.portal-account-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 7px;
  padding: 18px;
}

.portal-sidebar .portal-account-card {
  align-self: end;
  background: #f8fafc;
  border-color: var(--line);
  margin-top: 20px;
  order: 2;
  padding: 12px;
}

.portal-account-card span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
}

.portal-sidebar .portal-account-card span {
  color: var(--muted);
}

.portal-account-card strong {
  color: var(--forest);
  overflow-wrap: anywhere;
}

.portal-sidebar .portal-account-card strong {
  color: var(--forest);
  font-size: 0.9rem;
}

.portal-account-card button {
  background: var(--paper);
  border: 1px solid var(--line);
  color: var(--forest);
  cursor: pointer;
  font-weight: 800;
  margin-top: 8px;
  min-height: 42px;
}

.portal-sidebar .portal-account-card button {
  background: var(--white);
  border-color: var(--line);
  border-radius: 8px;
  color: var(--forest);
}

.portal-dashboard-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
}

.portal-dashboard-grid article {
  background: #fbfbfb;
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 10px;
  padding: 16px;
}

.portal-dashboard-grid span {
  color: var(--gold);
  font-weight: 850;
}

.portal-dashboard-grid h3 {
  color: var(--forest);
  margin: 0;
}

.portal-dashboard-grid p {
  color: var(--muted);
  margin: 0;
}

.portal-history-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 14px;
  margin-top: 18px;
  padding: 18px;
}

.portal-history-panel h3 {
  color: var(--forest);
  font-size: 1.05rem;
  margin: 0;
}

.portal-history-panel p {
  color: var(--muted);
  margin: 0;
}

.portal-history-panel p[hidden] {
  display: none;
}

.portal-filter-strip {
  align-items: end;
  background: #fbfcfd;
  display: grid;
  gap: 10px;
  grid-template-columns: minmax(220px, 1fr) minmax(160px, 220px) auto;
}

.portal-inventory-filters {
  border-bottom: 1px solid var(--line);
  padding: 12px;
}

.portal-filter-strip label {
  display: grid;
  gap: 6px;
}

.portal-filter-strip span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 780;
}

.portal-filter-strip input,
.portal-filter-strip select {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--ink);
  font: inherit;
  min-height: 38px;
  padding: 8px 10px;
  width: 100%;
}

.portal-filter-strip button,
.portal-secondary-button {
  background: var(--paper) !important;
  border: 1px solid var(--line) !important;
  border-radius: 6px;
  color: var(--forest) !important;
  cursor: pointer;
  font-weight: 800;
  min-height: 38px;
  padding: 8px 11px;
}

.portal-table-empty {
  color: var(--muted);
  margin: 14px 12px;
}

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

.portal-inventory-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  max-width: 100%;
  min-width: 0;
  overflow: hidden;
}

.portal-inventory-table {
  min-width: 1180px;
}

.portal-inventory-table td {
  white-space: nowrap;
}

.portal-inventory-table strong {
  color: var(--forest);
  white-space: normal;
}

.portal-source-pill {
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  display: inline-flex;
  font-size: 0.76rem;
  font-weight: 850;
  min-height: 26px;
  padding: 0 10px;
  white-space: nowrap;
}

.portal-source-pill.is-pending {
  background: #f8fafc;
  color: var(--muted);
}

.portal-source-pill.is-live {
  background: #e8f6ef;
  border-color: rgba(38, 166, 102, 0.35);
  color: #087443;
}

.portal-inventory-thumb {
  aspect-ratio: 4 / 3;
  background: #f3f6fa;
  border: 1px solid var(--line);
  border-radius: 6px;
  display: block;
  margin: 0;
  overflow: hidden;
  width: 74px;
}

.portal-inventory-thumb img {
  display: block;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.24s ease;
  width: 100%;
}

.portal-history-list {
  display: grid;
  gap: 10px;
}

.portal-history-list article {
  background: #fbfcfd;
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 5px;
  padding: 12px;
}

.portal-history-list article[hidden],
.portal-tracking-table tr[hidden] {
  display: none;
}

.portal-history-list strong {
  color: var(--forest);
  overflow-wrap: anywhere;
}

.portal-history-list span,
.portal-history-list p {
  color: var(--muted);
  font-size: 0.9rem;
  overflow-wrap: anywhere;
}

.portal-form button {
  background: var(--forest);
  border: 0;
  color: var(--white);
  cursor: pointer;
  font-weight: 800;
  min-height: 48px;
}

.portal-form button:disabled {
  cursor: wait;
  opacity: 0.66;
}

.portal-form .form-honeypot {
  display: none;
}

.portal-status-result {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 8px;
  padding-top: 14px;
}

.portal-status-result[hidden] {
  display: none;
}

.portal-status-result p {
  display: grid;
  gap: 8px;
  grid-template-columns: 120px minmax(0, 1fr);
  margin: 0;
}

.portal-status-result strong {
  color: var(--forest);
}

.portal-status-result span {
  color: var(--muted);
  overflow-wrap: anywhere;
}

.portal-tracking-layout {
  display: grid;
  gap: 16px;
  grid-template-columns: minmax(220px, 280px) minmax(0, 1fr);
}

.portal-tracking-layout.filters-hidden {
  grid-template-columns: minmax(0, 1fr);
}

.portal-tracking-layout.filters-hidden .portal-filter-panel {
  display: none;
}

.portal-filter-panel {
  align-content: start;
  background: var(--white);
  gap: 16px;
  margin: 0;
  max-width: none;
  width: 100%;
}

.portal-tracking-table-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  min-width: 0;
  overflow: hidden;
}

.portal-tracking-toolbar {
  align-items: center;
  border-bottom: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 10px 12px;
}

.portal-tracking-toolbar button {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 7px;
  color: var(--forest);
  cursor: pointer;
  font-weight: 800;
  min-height: 34px;
  padding: 7px 11px;
}

.portal-tracking-toolbar span {
  color: var(--muted);
  font-size: 0.88rem;
  margin-left: auto;
}

.portal-column-panel {
  align-items: center;
  background: #f8fafc;
  border-bottom: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 10px 12px;
}

.portal-column-panel[hidden] {
  display: none;
}

.portal-column-panel label {
  align-items: center;
  color: var(--ink);
  display: inline-flex;
  font-size: 0.86rem;
  font-weight: 780;
  gap: 6px;
}

.portal-tracking-table-wrap {
  max-width: 100%;
  min-width: 0;
  overflow-x: auto;
}

.portal-tracking-table {
  border-collapse: collapse;
  min-width: 780px;
  width: 100%;
}

.portal-tracking-table th,
.portal-tracking-table td {
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-size: 0.9rem;
  padding: 11px 12px;
  text-align: left;
  vertical-align: middle;
}

.portal-tracking-table th {
  color: var(--forest);
  font-size: 0.82rem;
  font-weight: 850;
  white-space: nowrap;
}

.portal-tracking-table [data-tracking-column].is-hidden {
  display: none;
}

.portal-table-check {
  border: 1px solid #aeb9c6;
  border-radius: 3px;
  display: inline-block;
  height: 18px;
  width: 18px;
}

.portal-progress {
  background: #dfe5ec;
  border-radius: 999px;
  display: block;
  height: 10px;
  margin-bottom: 5px;
  overflow: hidden;
  width: 76px;
}

.portal-progress span {
  background: var(--gold);
  border-radius: inherit;
  display: block;
  height: 100%;
}

.portal-tracking-table small {
  color: var(--muted);
  display: block;
  font-size: 0.72rem;
}

.portal-settings-section {
  display: grid;
  gap: 18px;
}

.portal-settings-head {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 8px;
  padding: 14px;
}

.portal-settings-head h2 {
  color: #111827;
  font-size: clamp(1.25rem, 1.55vw, 1.55rem);
}

.portal-settings-head p {
  color: var(--muted);
  margin: 0;
}

.portal-settings-group {
  display: grid;
  gap: 10px;
}

.portal-settings-group h3 {
  color: #111827;
  font-size: 1rem;
  margin: 0;
}

.portal-settings-grid {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(3, minmax(220px, 1fr));
}

.portal-settings-card {
  align-items: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: inherit;
  cursor: pointer;
  display: grid;
  gap: 14px;
  grid-template-columns: 42px minmax(0, 1fr);
  min-height: 66px;
  padding: 14px 16px;
  text-align: left;
  width: 100%;
}

.portal-settings-card:hover,
.portal-settings-card:focus-visible {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(199, 154, 66, 0.14);
  outline: 0;
}

.portal-settings-icon {
  background: #eef2f6;
  border-radius: 999px;
  display: block;
  height: 32px;
  position: relative;
  width: 32px;
}

.portal-settings-icon::before,
.portal-settings-icon::after {
  content: "";
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
}

.portal-settings-icon-general::before {
  border: 3px solid #4b5563;
  border-radius: 999px;
  height: 12px;
  width: 12px;
}

.portal-settings-icon-account::before {
  background: #4b5563;
  border-radius: 999px;
  height: 10px;
  top: 40%;
  width: 10px;
}

.portal-settings-icon-account::after {
  background: #4b5563;
  border-radius: 999px 999px 6px 6px;
  height: 9px;
  top: 64%;
  width: 18px;
}

.portal-settings-icon-users::before {
  background: #4b5563;
  border-radius: 999px;
  box-shadow: -8px 3px 0 -1px #4b5563, 8px 3px 0 -1px #4b5563;
  height: 9px;
  top: 39%;
  width: 9px;
}

.portal-settings-icon-users::after {
  background: #4b5563;
  border-radius: 999px 999px 4px 4px;
  height: 8px;
  top: 65%;
  width: 22px;
}

.portal-settings-icon-address::before {
  border: 3px solid #4b5563;
  border-radius: 999px 999px 999px 0;
  height: 14px;
  transform: translate(-50%, -58%) rotate(-45deg);
  width: 14px;
}

.portal-settings-icon-address::after {
  background: #4b5563;
  border-radius: 999px;
  height: 5px;
  top: 42%;
  width: 5px;
}

.portal-settings-icon-billing::before {
  border: 2px solid #4b5563;
  border-radius: 4px;
  height: 18px;
  width: 15px;
}

.portal-settings-icon-billing::after {
  background: #4b5563;
  box-shadow: 0 5px 0 #4b5563;
  height: 2px;
  width: 9px;
}

.portal-settings-icon-alerts::before {
  border: 3px solid #4b5563;
  border-radius: 999px 999px 7px 7px;
  height: 16px;
  top: 46%;
  width: 14px;
}

.portal-settings-icon-alerts::after {
  background: #4b5563;
  border-radius: 999px;
  height: 5px;
  top: 73%;
  width: 8px;
}

.portal-settings-card h4 {
  color: #111827;
  font-size: 0.95rem;
  margin: 0 0 5px;
}

.portal-settings-card p {
  color: var(--muted);
  font-size: 0.82rem;
  margin: 0;
}

.portal-settings-form {
  margin-top: 2px;
}

.portal-settings-form input[readonly] {
  background: #f5f7fa;
  color: var(--muted);
}

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

.portal-data-routing article,
.portal-master-rules article {
  background: #fbfcfd;
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 6px;
  padding: 13px;
}

.portal-data-routing span,
.portal-master-rules span {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.portal-data-routing p,
.portal-master-rules p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
  margin: 0;
}

.portal-master-rules {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.contact {
  align-items: start;
  background: var(--white);
  display: grid;
  gap: 48px;
  grid-template-columns: minmax(0, 0.85fr) minmax(300px, 0.65fr);
}

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

.contact-direct {
  border-left: 3px solid var(--gold);
  display: grid;
  gap: 4px;
  margin-top: 28px;
  padding-left: 16px;
}

.contact-direct span {
  color: var(--clay);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.contact-direct a {
  color: var(--forest);
  font-size: 1.2rem;
  font-weight: 850;
}

.contact-form label {
  display: grid;
  gap: 7px;
}

.contact-form span {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 740;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  background: var(--white);
  border: 1px solid var(--line);
  color: var(--ink);
  font: inherit;
  min-height: 46px;
  padding: 10px 12px;
  width: 100%;
}

.turnstile-slot {
  min-height: 65px;
}

.turnstile-slot[hidden] {
  display: none;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus,
.language-button:focus-visible,
.button:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form button {
  background: var(--forest);
  border: 0;
  color: var(--white);
  cursor: pointer;
  font-weight: 800;
  min-height: 48px;
}

.contact-form button:disabled {
  cursor: wait;
  opacity: 0.66;
}

.contact-form .form-honeypot {
  display: none;
}

.form-status {
  color: var(--muted);
  font-size: 0.92rem;
  margin: -4px 0 0;
}

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

.form-note a {
  color: var(--forest);
  font-weight: 800;
  white-space: nowrap;
}

.form-status.is-success {
  color: #1f6b55;
}

.form-status.is-error {
  color: var(--clay);
}

.site-footer {
  background: #07192f;
  color: rgba(255, 255, 255, 0.72);
  padding: 0 clamp(20px, 6vw, 82px);
}

.footer-shell {
  display: grid;
  gap: 40px;
  grid-template-columns: minmax(190px, 0.7fr) minmax(0, 1.6fr);
  margin: 0 auto;
  max-width: 1180px;
  padding: 28px 0;
}

.footer-brand-panel {
  align-content: start;
  display: grid;
  gap: 10px;
}

.footer-brand-panel p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.88rem;
  margin: 0;
}

.footer-logo {
  align-items: center;
  color: var(--white);
  display: inline-flex;
  gap: 12px;
  font-weight: 850;
}

.footer-logo img {
  display: block;
  height: 28px;
  object-fit: contain;
  width: 38px;
}

.footer-email-list {
  display: grid;
  gap: 8px;
  margin-top: 2px;
}

.footer-email {
  align-items: center;
  color: var(--white);
  display: inline-flex;
  gap: 10px;
}

.footer-email span {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.footer-email strong {
  font-size: 0.98rem;
  font-weight: 780;
}

.footer-legal-links {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  margin-top: 4px;
}

.footer-legal-link {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.82rem;
  font-weight: 760;
  width: fit-content;
}

.footer-info-grid {
  border-left: 1px solid rgba(255, 255, 255, 0.12);
  display: grid;
  gap: 32px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding-left: 38px;
}

.footer-block {
  display: grid;
  gap: 7px;
}

.footer-block h2 {
  color: var(--gold);
  font-size: 0.78rem;
  letter-spacing: 0;
  margin: 0 0 2px;
  text-transform: uppercase;
}

.footer-block p {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.88rem;
  margin: 0;
}

.footer-block p:first-of-type {
  color: var(--white);
  font-weight: 720;
}

.footer-block a {
  color: var(--white);
  font-weight: 720;
}

.footer-block p span + span {
  margin-left: 8px;
}

.footer-email:hover,
.footer-legal-link:hover,
.footer-block a:hover {
  color: var(--gold);
}

html:lang(zh) body h1,
html:lang(zh) body h2,
html:lang(zh) body h3 {
  font-family: var(--font-heading);
}

html:lang(zh) body .brand-name,
html:lang(zh) body .identity-logo strong,
html:lang(zh) body .footer-logo {
  font-family: Inter, "Segoe UI", Arial, ui-sans-serif, system-ui, sans-serif;
}

html:lang(zh) body h1,
html:lang(zh) body h2 {
  font-weight: 600;
  line-height: 1.22;
}

html:lang(zh) body h3 {
  font-weight: 600;
  line-height: 1.28;
}

html:lang(zh) body .corporate-hero h1,
html:lang(zh) body .page-hero h1,
html:lang(zh) body .standalone-contact h1,
html:lang(zh) body .products-intro h1 {
  font-size: clamp(1.95rem, 2.85vw, 2.85rem);
  line-height: 1.22;
  max-width: 780px;
}

html:lang(zh) body .corporate-hero p:not(.eyebrow),
html:lang(zh) body .page-hero p:not(.section-label),
html:lang(zh) body .products-intro p:not(.section-label) {
  font-size: 1.02rem;
  line-height: 1.72;
}

html:lang(zh) body .corporate-panel h2,
html:lang(zh) body .home-section-head h2,
html:lang(zh) body .directory-head h2 {
  font-size: clamp(1.45rem, 2vw, 2rem);
  line-height: 1.24;
}

html:lang(zh) body .nav a.is-current,
html:lang(zh) body .brand-name,
html:lang(zh) body .button,
html:lang(zh) body .contact-form button {
  font-weight: 720;
}

html:lang(zh) body .eyebrow,
html:lang(zh) body .section-label,
html:lang(zh) body .variant-kicker {
  font-weight: 720;
}

@media (max-width: 980px) {
  .company-home,
  .corporate-hero,
  .corporate-grid,
  .home-section-head,
  .brand-story-grid,
  .home-collection-grid,
  .home-work-grid,
  .b2b-hero,
  .b2b-section-head,
  .b2b-fit-grid,
  .b2b-process-grid,
  .b2b-inquiry,
  .portal-hero,
  .portal-dashboard-head,
  .portal-section-head,
  .portal-grid,
  .products-intro,
  .directory-head,
  .directory-layout,
  .product-feature,
  .catalog-feature,
  .intro,
  .contact {
    grid-template-columns: 1fr;
  }

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

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

  .portal-dashboard-layout {
    grid-template-columns: 1fr;
  }

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

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

  .portal-master-rules {
    grid-template-columns: 1fr;
  }

  .portal-app-shell {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto 1fr;
  }

  .portal-app-top {
    grid-column: 1;
    grid-row: 1;
    grid-template-columns: 1fr auto;
    height: auto;
    padding: 12px;
  }

  .portal-top-company,
  .portal-top-search {
    grid-column: 1 / -1;
  }

  .portal-sidebar {
    grid-column: 1;
    grid-row: 2;
    min-height: auto;
    position: static;
    top: auto;
  }

  .portal-side-nav {
    grid-template-columns: 1fr;
  }

  .portal-workspace {
    grid-column: 1;
    grid-row: 3;
  }

  .portal-workspace-top {
    grid-template-columns: 1fr;
  }

  .company-home {
    background: var(--white);
  }

  .company-home::before {
    display: none;
  }

  .company-home::after {
    width: calc(100% - 40px);
  }

  .product-details {
    border-left: 1px solid var(--line);
  }

  .products-hero-visual {
    justify-self: stretch;
    max-width: none;
  }

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

  .variant-grid,
  .catalog-grid,
  .program-grid,
  .sample-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .story-grid .story-card:nth-child(3) {
    align-items: center;
    grid-column: 1 / -1;
    grid-template-columns: minmax(220px, 0.44fr) minmax(0, 1fr);
  }

  .story-grid .story-card:nth-child(3) .story-visual {
    grid-row: 1 / span 4;
    min-height: 190px;
  }

  .series-note {
    grid-template-columns: 1fr;
  }

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

  .footer-info-grid {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding-left: 0;
    padding-top: 24px;
  }

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

  .hero-visual {
    padding: 0 clamp(20px, 6vw, 82px) 88px;
  }
}

@media (max-width: 860px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav {
    grid-column: 1 / -1;
    justify-content: space-between;
    order: 3;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .hero {
    min-height: auto;
  }

  .hero-content {
    padding-bottom: 86px;
    padding-top: 70px;
  }

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

  .market-row {
    grid-template-columns: 44px 1fr;
  }

  .market-row p {
    grid-column: 2;
  }

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

  .story-grid .story-card:nth-child(3) {
    grid-column: auto;
    grid-template-columns: 1fr;
  }

  .story-grid .story-card:nth-child(3) .story-visual {
    grid-row: auto;
  }
}

@media (max-width: 620px) {
  .site-header {
    gap: 14px;
    padding: 12px 16px;
  }

  .nav {
    gap: 18px;
    font-size: 0.88rem;
  }

  .language-switch {
    min-width: 198px;
  }

  .language-button {
    font-size: 0.78rem;
    padding: 7px 6px;
  }

  .hero::before {
    display: none;
  }

  .hero-content {
    padding: 62px 18px 54px;
  }

  .company-home {
    padding: 46px 18px 56px;
  }

  .company-home h1 {
    font-size: 2rem;
  }

  .company-profile-card {
    padding: 20px;
  }

  .corporate-hero {
    padding: 46px 18px;
  }

  .corporate-identity-card {
    justify-self: stretch;
    max-width: none;
  }

  .b2b-hero-card {
    justify-self: stretch;
    max-width: none;
  }

  .corporate-grid {
    padding: 18px 18px 58px;
  }

  .home-section {
    padding: 0 18px 54px;
  }

  .products-intro {
    padding: 42px 18px;
  }

  .products-contact-note {
    padding: 18px;
  }

  .hero-visual {
    padding: 0 18px 58px;
  }

  .hero-brand-card {
    min-height: 116px;
    padding: 22px;
  }

  .hero-brand-card img {
    height: 52px;
    width: 72px;
  }

  .hero-brand-card span {
    font-size: 2.1rem;
  }

  .hero-series-row {
    gap: 10px;
    grid-template-columns: 34px 1fr;
    padding: 15px 18px;
  }

  .hero-color-card {
    gap: 6px;
    padding: 10px;
  }

  .hero-color-card span {
    min-height: 34px;
  }

  h1 {
    font-size: 2.2rem;
    line-height: 1.04;
  }

  h2 {
    font-size: 1.92rem;
  }

  .section {
    padding: 62px 18px;
  }

  .hero-actions {
    align-items: stretch;
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }

  .hero-strip,
  .variant-grid,
  .catalog-grid,
  .collection-grid,
  .directory-head,
  .directory-layout,
  .portal-dashboard-grid,
  .portal-ops-summary,
  .portal-filter-strip,
  .portal-form-grid,
  .portal-settings-grid,
  .portal-data-routing,
  .portal-master-rules,
  .portal-shop-catalog article,
  .portal-tracking-layout,
  .program-grid,
  .b2b-faq-grid,
  .sample-gallery,
  .spec-grid {
    grid-template-columns: 1fr;
  }

  .portal-cart-line {
    grid-template-columns: minmax(0, 1fr) 72px 42px;
  }

  .portal-side-nav {
    grid-template-columns: 1fr;
  }

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

  .products-visual-board {
    grid-template-columns: 1fr;
  }

  .collection-visual {
    aspect-ratio: 4 / 3;
  }

  .series-row {
    grid-template-columns: 36px minmax(0, 1fr);
  }

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

  .footer-info-grid {
    gap: 22px;
    grid-template-columns: 1fr;
  }

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

  .product-stage {
    padding: 34px 18px;
  }

  .color-map {
    bottom: 18px;
    right: 18px;
  }
}

@media (max-width: 380px) {
  .brand-name {
    display: none;
  }

  .language-switch {
    min-width: 178px;
  }
}
