@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Noto+Sans+SC:wght@400;500;600;700&display=swap");

:root {
  --carbon: #101613;
  --carbon-soft: #19231e;
  --forest: #234537;
  --court: #5d8871;
  --coral: #ce7866;
  --blush: #d9b8ad;
  --champagne: #c8aa76;
  --warm-white: #f7f4ee;
  --paper: #fffdfa;
  --sand: #e9e2d7;
  --line: rgba(16, 22, 19, 0.13);
  --line-dark: rgba(255, 255, 255, 0.14);
  --text: #18201c;
  --muted: #6d766f;
  --white-muted: rgba(255, 255, 255, 0.68);
  --container: 1240px;
  --header-h: 72px;
  --radius-sm: 12px;
  --radius: 22px;
  --radius-lg: 34px;
  --shadow-soft: 0 20px 60px rgba(24, 32, 28, 0.09);
  --shadow-hover: 0 22px 50px rgba(24, 32, 28, 0.15);
  --font-body: "DM Sans", "Noto Sans SC", "Microsoft YaHei", sans-serif;
  --font-cn: "Noto Sans SC", "Microsoft YaHei", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 20px);
}

body {
  margin: 0;
  color: var(--text);
  background: var(--warm-white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

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

button {
  color: inherit;
}

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

h1,
h2,
h3 {
  font-family: var(--font-cn);
  line-height: 1.15;
  letter-spacing: -0.035em;
}

h1 {
  font-size: clamp(2.75rem, 5.8vw, 5.5rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.75rem);
}

h3 {
  font-size: clamp(1.25rem, 2vw, 1.65rem);
}

::selection {
  color: #fff;
  background: var(--forest);
}

:focus-visible {
  outline: 2px solid var(--coral);
  outline-offset: 4px;
}

.container {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}

.eyebrow {
  margin-bottom: 1rem;
  color: var(--court);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  line-height: 1.4;
  text-transform: uppercase;
}

.section-shell {
  padding: clamp(5rem, 9vw, 8rem) 0;
}

.section-heading {
  max-width: 720px;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.section-heading--center {
  margin-inline: auto;
  text-align: center;
}

.section-heading h2 {
  margin-bottom: 1.2rem;
}

.section-heading > p:last-child {
  max-width: 620px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.section-heading--center > p:last-child {
  margin-inline: auto;
}

.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.78rem 1.35rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition:
    color 280ms ease,
    background-color 280ms ease,
    border-color 280ms ease,
    box-shadow 280ms ease,
    transform 280ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: #fff;
  background: var(--forest);
  box-shadow: 0 12px 28px rgba(35, 69, 55, 0.2);
}

.btn-primary:hover {
  background: var(--carbon);
  box-shadow: 0 16px 34px rgba(16, 22, 19, 0.24);
}

.btn-light {
  color: var(--carbon);
  background: var(--paper);
}

.btn-light:hover {
  background: #fff;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.18);
}

.btn-outline {
  border-color: var(--line);
  background: transparent;
}

.btn-outline:hover {
  color: #fff;
  border-color: var(--forest);
  background: var(--forest);
}

.btn-text {
  min-height: 40px;
  padding: 0;
  border-radius: 0;
  border-bottom: 1px solid currentColor;
}

.btn-text:hover {
  color: var(--coral);
}

.btn-header {
  min-height: 42px;
  padding-inline: 1.15rem;
  color: #fff;
  background: var(--carbon);
}

.site-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  color: var(--text);
  background: var(--paper);
  box-shadow: 0 1px 0 var(--line);
}

body:not([data-page="home"]) .site-header,
.site-header.is-scrolled {
  color: var(--text);
  background: var(--paper);
  box-shadow: 0 1px 0 var(--line);
  backdrop-filter: none;
}

.header-inner {
  height: var(--header-h);
  display: grid;
  grid-template-columns: minmax(180px, 1fr) auto minmax(150px, 1fr);
  align-items: center;
  gap: clamp(1rem, 2.2vw, 2rem);
}

.brand-logo {
  display: inline-flex;
  width: max-content;
  align-items: center;
  padding: 0;
}

.brand-logo:hover {
  opacity: 0.78;
}

.brand-logo img {
  width: clamp(132px, 12vw, 154px);
  height: auto;
  object-fit: contain;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(1.15rem, 2.4vw, 2.2rem);
}

.desktop-nav a {
  position: relative;
  padding: 0.52rem 0.78rem;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  white-space: nowrap;
  transition:
    color 240ms ease,
    background-color 240ms ease,
    transform 240ms ease;
}

.desktop-nav a::after {
  display: none;
}

.desktop-nav a:hover,
.desktop-nav a.is-active {
  color: var(--forest);
  background: rgba(35, 69, 55, 0.09);
}

body:not([data-page="home"]) .desktop-nav a:hover,
body:not([data-page="home"]) .desktop-nav a.is-active,
.site-header.is-scrolled .desktop-nav a:hover,
.site-header.is-scrolled .desktop-nav a.is-active {
  color: var(--forest);
  background: rgba(35, 69, 55, 0.09);
}

.header-cta {
  display: flex;
  justify-content: flex-end;
}

.site-header:not(.is-scrolled) .btn-header {
  color: #fff;
  background: var(--carbon);
}

body:not([data-page="home"]) .site-header .btn-header {
  color: #fff;
  background: var(--carbon);
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 19px;
  height: 1px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 260ms ease;
}

.nav-overlay {
  position: fixed;
  z-index: 1001;
  inset: 0;
  opacity: 0;
  background: rgba(7, 11, 9, 0.48);
  backdrop-filter: blur(4px);
  transition: opacity 320ms ease;
}

.nav-overlay.is-open {
  opacity: 1;
}

.mobile-nav {
  position: fixed;
  z-index: 1002;
  top: 0;
  right: 0;
  width: min(88vw, 430px);
  height: 100dvh;
  display: flex;
  flex-direction: column;
  padding: 1.25rem clamp(1.4rem, 5vw, 2.4rem) 2rem;
  color: #fff;
  background: var(--carbon);
  transform: translateX(105%);
  visibility: hidden;
  transition:
    transform 340ms cubic-bezier(0.22, 1, 0.36, 1),
    visibility 340ms;
}

.mobile-nav.is-open {
  transform: translateX(0);
  visibility: visible;
}

.mobile-nav__head {
  display: flex;
  min-height: 52px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line-dark);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.mobile-nav__head button {
  width: 44px;
  height: 44px;
  border: 0;
  color: #fff;
  background: transparent;
  font-size: 2rem;
  font-weight: 300;
  cursor: pointer;
}

.mobile-nav__links {
  display: flex;
  flex-direction: column;
  margin-top: 1.6rem;
}

.mobile-nav__links a {
  display: flex;
  min-height: 58px;
  align-items: center;
  border-bottom: 1px solid var(--line-dark);
  font-family: var(--font-cn);
  font-size: 1.35rem;
}

.mobile-nav__links a.is-active {
  color: var(--blush);
}

.mobile-nav__cta {
  margin-top: 2rem;
}

.mobile-nav__cta .btn {
  width: 100%;
  color: var(--carbon);
  background: var(--paper);
}

.mobile-nav__note {
  margin-top: auto;
  margin-bottom: 0;
  color: var(--white-muted);
  font-size: 0.76rem;
  letter-spacing: 0.06em;
}

.to-top {
  position: fixed;
  z-index: 900;
  right: 24px;
  bottom: 24px;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 50%;
  opacity: 0;
  color: #fff;
  background: var(--carbon);
  box-shadow: var(--shadow-soft);
  cursor: pointer;
  pointer-events: none;
  transform: translateY(14px);
  transition: opacity 260ms ease, transform 260ms ease;
}

.to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.home-main {
  padding-top: var(--header-h);
  background: var(--warm-white);
}

.hero-carousel {
  position: relative;
  min-height: calc(100svh - var(--header-h));
  overflow: hidden;
  color: #fff;
  background: var(--carbon);
}

.hero-slides,
.hero-slide {
  position: absolute;
  inset: 0;
}

.hero-slide {
  z-index: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 700ms ease;
}

.hero-slide.is-active {
  z-index: 1;
  opacity: 1;
  pointer-events: auto;
}

.hero-slide__media,
.hero-slide__scrim {
  position: absolute;
  inset: 0;
}

.hero-slide__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.035);
  transition: transform 6s ease;
}

.hero-slide.is-active .hero-slide__media img {
  transform: scale(1);
}

.hero-slide__scrim {
  background:
    linear-gradient(90deg, rgba(8, 12, 10, 0.72) 0%, rgba(8, 12, 10, 0.4) 47%, rgba(8, 12, 10, 0.1) 100%),
    linear-gradient(0deg, rgba(8, 12, 10, 0.45) 0%, transparent 45%);
}

.hero-slide__content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  max-width: var(--container);
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding-top: var(--header-h);
  padding-bottom: 7rem;
}

.hero-slide__content .eyebrow {
  color: rgba(255, 255, 255, 0.7);
  transform: translateY(15px);
  transition: opacity 500ms 140ms ease, transform 500ms 140ms ease;
}

.hero-slide__content h1,
.hero-slide__content h2 {
  max-width: 820px;
  margin-bottom: 1.5rem;
  color: #fff;
  font-size: clamp(2.75rem, 5.8vw, 5.5rem);
  font-weight: 600;
  transform: translateY(22px);
  transition: opacity 580ms 180ms ease, transform 580ms 180ms ease;
}

.hero-slide__content > p:not(.eyebrow) {
  max-width: 610px;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(1rem, 1.5vw, 1.16rem);
  transform: translateY(22px);
  transition: opacity 580ms 240ms ease, transform 580ms 240ms ease;
}

.hero-slide__actions {
  transform: translateY(22px);
  transition: opacity 580ms 300ms ease, transform 580ms 300ms ease;
}

.hero-slide:not(.is-active) .hero-slide__content .eyebrow,
.hero-slide:not(.is-active) .hero-slide__content h1,
.hero-slide:not(.is-active) .hero-slide__content h2,
.hero-slide:not(.is-active) .hero-slide__content > p,
.hero-slide:not(.is-active) .hero-slide__actions {
  opacity: 0;
}

.hero-slide.is-active .hero-slide__content .eyebrow,
.hero-slide.is-active .hero-slide__content h1,
.hero-slide.is-active .hero-slide__content h2,
.hero-slide.is-active .hero-slide__content > p,
.hero-slide.is-active .hero-slide__actions {
  opacity: 1;
  transform: translateY(0);
}

.hero-controls {
  position: absolute;
  z-index: 10;
  right: 0;
  bottom: 2rem;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hero-dots {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.hero-dots button {
  width: 30px;
  height: 12px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.hero-dots button::after {
  display: block;
  width: 100%;
  height: 2px;
  background: rgba(255, 255, 255, 0.34);
  content: "";
  transition: background-color 260ms ease, transform 260ms ease;
}

.hero-dots button.is-active::after {
  background: #fff;
  transform: scaleY(2);
}

.hero-arrows {
  display: flex;
  gap: 0.6rem;
}

.hero-arrows button {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
  transition: background-color 240ms ease, transform 240ms ease;
}

.hero-arrows button:hover {
  color: var(--carbon);
  background: #fff;
  transform: scale(1.05);
}

.material-section {
  position: relative;
  min-height: calc(100svh - var(--header-h));
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background-color: #111714;
  background-image:
    radial-gradient(circle at 18% 22%, rgba(93, 136, 113, 0.18), transparent 34%),
    radial-gradient(circle at 82% 78%, rgba(206, 120, 102, 0.09), transparent 32%),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.035) 0 2px, transparent 2px 7px),
    repeating-linear-gradient(45deg, rgba(0, 0, 0, 0.28) 0 2px, transparent 2px 7px);
  background-size: auto, auto, 12px 12px, 12px 12px;
}

.material-section::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8, 12, 10, 0.2), transparent 48%, rgba(8, 12, 10, 0.24));
  content: "";
  pointer-events: none;
}

.material-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.82fr);
  align-items: center;
  gap: clamp(3rem, 7vw, 7rem);
}

.material-copy .section-heading {
  max-width: 650px;
  margin-bottom: clamp(1.6rem, 3vw, 2.35rem);
}

.material-copy .eyebrow {
  color: rgba(255, 255, 255, 0.58);
}

.material-copy .section-heading h2 {
  max-width: 650px;
  color: #fff;
  font-size: clamp(1.8rem, 2.7vw, 2.85rem);
  line-height: 1.22;
  letter-spacing: -0.045em;
}

.material-copy .section-heading > p:last-child {
  max-width: 610px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.05rem, 1.45vw, 1.25rem);
  font-weight: 500;
}

.material-statement {
  max-width: 610px;
  padding-top: 1.55rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.material-statement p {
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.68);
  font-size: clamp(1rem, 1.35vw, 1.14rem);
  line-height: 1.9;
}

.material-statement p:last-child {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.9);
}

.material-cta {
  min-width: 210px;
  margin-top: 2rem;
  justify-content: space-between;
  border-color: rgba(255, 255, 255, 0.68);
  color: #fff;
}

.material-cta:hover {
  color: var(--carbon);
  border-color: #fff;
  background: #fff;
}

.material-visual {
  position: relative;
  width: min(100%, 500px);
  min-height: 420px;
  justify-self: end;
  margin: 0;
}

.material-visual::before {
  position: absolute;
  top: -1.6rem;
  right: -1.8rem;
  width: 68%;
  height: 62%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  content: "";
}

.material-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.34);
}

.advantages-section {
  color: var(--text);
  min-height: calc(100svh - var(--header-h));
  display: flex;
  align-items: center;
  background:
    radial-gradient(circle at 10% 18%, rgba(217, 184, 173, 0.26), transparent 28%),
    radial-gradient(circle at 88% 78%, rgba(93, 136, 113, 0.14), transparent 30%),
    var(--warm-white);
}

.advantages-section .section-heading > p:last-child {
  color: var(--muted);
}

.advantages-section .eyebrow {
  color: var(--coral);
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.advantage-card {
  position: relative;
  min-height: 440px;
  padding: clamp(1.7rem, 3vw, 2.4rem);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(255, 253, 250, 0.78);
  box-shadow: 0 16px 42px rgba(24, 32, 28, 0.06);
  transition: border-color 300ms ease, background-color 300ms ease, box-shadow 300ms ease, transform 300ms ease;
}

.advantage-card::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 253, 250, 0.56) 0%, rgba(255, 253, 250, 0.88) 62%, rgba(255, 253, 250, 0.97) 100%);
  content: "";
  transition: opacity 300ms ease;
}

.advantage-card::after {
  position: absolute;
  z-index: 2;
  right: -80px;
  bottom: -90px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(206, 120, 102, 0.18), transparent 68%);
  content: "";
  opacity: 0;
  transition: opacity 300ms ease;
}

.advantage-card__media {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms ease;
}

.advantage-card > *:not(.advantage-card__media) {
  position: relative;
  z-index: 3;
}

.advantage-card:hover {
  border-color: rgba(35, 69, 55, 0.28);
  background: var(--paper);
  box-shadow: var(--shadow-hover);
  transform: translateY(-7px);
}

.advantage-card:hover::before {
  opacity: 0.88;
}

.advantage-card:hover .advantage-card__media {
  transform: scale(1.035);
}

.advantage-card:hover::after {
  opacity: 1;
}

.advantage-card__icon {
  width: 60px;
  height: 60px;
  display: grid;
  margin-bottom: 5rem;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.advantage-card__icon svg {
  width: 30px;
  fill: none;
  stroke: var(--forest);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.advantage-card h3 {
  margin-bottom: 1rem;
  color: var(--text);
  font-size: 1.65rem;
}

.advantage-card > p:not(.eyebrow) {
  color: var(--muted);
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.tag-row span {
  padding: 0.34rem 0.65rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.advantages-section .tag-row span {
  border-color: var(--line);
  color: var(--forest);
  background: rgba(35, 69, 55, 0.05);
}

.story-section {
  position: relative;
  min-height: calc(100svh - var(--header-h));
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background-color: #111714;
  background-image:
    radial-gradient(circle at 82% 22%, rgba(93, 136, 113, 0.18), transparent 34%),
    radial-gradient(circle at 18% 78%, rgba(206, 120, 102, 0.09), transparent 32%),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.035) 0 2px, transparent 2px 7px),
    repeating-linear-gradient(45deg, rgba(0, 0, 0, 0.28) 0 2px, transparent 2px 7px);
  background-size: auto, auto, 12px 12px, 12px 12px;
}

.story-section::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8, 12, 10, 0.2), transparent 48%, rgba(8, 12, 10, 0.24));
  content: "";
  pointer-events: none;
}

.story-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(340px, 0.82fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(3rem, 7vw, 7rem);
}

.story-visual {
  position: relative;
  width: min(100%, 500px);
  min-height: 420px;
  margin: 0;
}

.story-visual::before {
  position: absolute;
  top: -1.6rem;
  left: -1.8rem;
  width: 68%;
  height: 62%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  content: "";
}

.story-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.34);
}

.story-copy .section-heading {
  max-width: 650px;
  margin-bottom: clamp(1.6rem, 3vw, 2.35rem);
}

.story-copy .eyebrow {
  color: rgba(255, 255, 255, 0.58);
}

.story-copy .section-heading h2 {
  max-width: 650px;
  color: #fff;
  font-size: clamp(1.8rem, 2.7vw, 2.85rem);
  line-height: 1.22;
  letter-spacing: -0.045em;
}

.story-copy .section-heading > p:last-child {
  max-width: 610px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.05rem, 1.45vw, 1.25rem);
  font-weight: 500;
}

.story-statement {
  max-width: 610px;
  padding-top: 1.55rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.story-statement p {
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.68);
  font-size: clamp(1rem, 1.35vw, 1.14rem);
  line-height: 1.9;
}

.story-statement p:last-child {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.9);
}

.story-cta {
  min-width: 210px;
  margin-top: 2rem;
  justify-content: space-between;
  border-color: rgba(255, 255, 255, 0.68);
  color: #fff;
}

.story-cta:hover {
  color: var(--carbon);
  border-color: #fff;
  background: #fff;
}

.partners-section {
  min-height: calc(100svh - var(--header-h));
  display: flex;
  align-items: center;
  background: var(--sand);
}

.partners-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(2rem, 7vw, 7rem);
  align-items: end;
  margin-bottom: 3rem;
}

.partners-intro .section-heading {
  margin-bottom: 0;
}

.partners-intro > p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.partners-viewport {
  overflow: hidden;
}

.partners-track {
  display: grid;
  gap: 2.75rem;
}

.partner-group__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.partner-group__head h3 {
  margin: 0;
  font-size: 1.15rem;
}

.partner-group__head span {
  color: var(--muted);
  font-size: 0.72rem;
}

.partner-group__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  max-width: 720px;
}

.partner-slot {
  min-height: 175px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  border: 1px solid rgba(16, 22, 19, 0.1);
  border-radius: var(--radius);
  color: var(--muted);
  background: var(--paper);
  text-align: center;
  filter: grayscale(0.3);
  transition: color 280ms ease, background-color 280ms ease, box-shadow 280ms ease, transform 280ms ease, filter 280ms ease;
}

.partner-slot:hover {
  color: var(--forest);
  background: var(--paper);
  box-shadow: var(--shadow-soft);
  filter: none;
  transform: translateY(-4px);
}

.partner-slot img {
  width: 104px;
  height: 72px;
  object-fit: contain;
}

.partner-slot strong {
  margin: 1rem 0 0.45rem;
  font-size: 0.92rem;
  line-height: 1.35;
}

.partner-slot small {
  opacity: 0.65;
  font-size: 0.68rem;
}

.partner-slot--club {
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
  min-height: 180px;
  padding: 1.6rem 1rem;
  text-align: center;
  filter: none;
  border: 1px solid rgba(16, 22, 19, 0.08);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 1px 3px rgba(16, 22, 19, 0.04);
  position: relative;
  overflow: hidden;
  transition: color 280ms ease, background-color 280ms ease, box-shadow 280ms ease, transform 280ms ease, border-color 280ms ease;
}

.partner-slot--club::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: var(--forest);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 320ms ease;
}

.partner-slot--club:hover {
  border-color: rgba(35, 69, 55, 0.18);
  box-shadow: 0 8px 28px rgba(16, 22, 19, 0.08);
  transform: translateY(-3px);
}

.partner-slot--club:hover::after {
  transform: scaleX(1);
}

.club-logo {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: var(--sand);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: background-color 280ms ease;
}

.partner-slot--club:hover .club-logo {
  background: #fff;
}

.club-logo img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  border-radius: 6px;
}

.club-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  min-width: 0;
}

.partner-slot--club strong {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.35;
  color: var(--text);
  font-weight: 600;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.partner-slot--club small {
  font-size: 0.72rem;
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  transition: color 280ms ease;
}

.partner-slot--club:hover small {
  color: var(--forest);
}

.partner-marquee {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
}

.partner-marquee__track {
  display: flex;
  gap: 1rem;
  width: max-content;
  animation: partner-marquee 40s linear infinite;
}

.partner-marquee__track:hover {
  animation-play-state: paused;
}

.partner-group--marquee .partner-slot {
  flex: 0 0 200px;
}

@keyframes partner-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .partner-marquee__track {
    animation: none;
    flex-wrap: wrap;
    width: 100%;
    justify-content: center;
  }
}

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

.reviews-carousel {
  display: grid;
  grid-auto-columns: calc((100% - 2rem) / 3);
  grid-auto-flow: column;
  gap: 1rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.reviews-carousel::-webkit-scrollbar {
  display: none;
}

.review-card {
  margin-bottom: 0;
  padding: 2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--warm-white);
  scroll-snap-align: start;
}

.review-card__stars {
  color: var(--coral);
  letter-spacing: 0.2em;
}

.review-card__body {
  min-height: 150px;
  font-size: 1.05rem;
}

.review-card footer {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.review-card__avatar {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--sand);
}

.review-card cite {
  font-style: normal;
  font-weight: 700;
}

.review-card footer p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.78rem;
}

.review-controls {
  display: flex;
  justify-content: flex-end;
  gap: 0.55rem;
  margin-top: 1.25rem;
}

.review-controls button {
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

.page-main {
  min-height: 70vh;
  padding-top: var(--header-h);
  background: var(--warm-white);
}

.page-hero {
  min-height: calc(100svh - var(--header-h));
  display: flex;
  align-items: center;
  padding: clamp(4.5rem, 9vw, 8rem) 0 clamp(3.5rem, 7vw, 6rem);
  overflow: hidden;
}

.page-hero .container {
  position: relative;
}

.page-hero .container::after {
  position: absolute;
  z-index: 0;
  top: -90px;
  right: -8%;
  width: clamp(250px, 36vw, 520px);
  height: clamp(250px, 36vw, 520px);
  border: 1px solid rgba(35, 69, 55, 0.14);
  border-radius: 50%;
  content: "";
}

.page-hero__content {
  position: relative;
  z-index: 1;
  max-width: 850px;
}

.page-hero h1 {
  max-width: 900px;
  margin-bottom: 1.3rem;
}

.page-hero__lead {
  max-width: 680px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.6vw, 1.22rem);
}

.product-tabs-shell {
  position: sticky;
  z-index: 20;
  top: var(--header-h);
  border-block: 1px solid var(--line);
  background: rgba(247, 244, 238, 0.91);
  backdrop-filter: blur(14px);
}

.product-tabs {
  display: flex;
  gap: 2.5rem;
  overflow-x: auto;
  scrollbar-width: none;
}

.product-tabs::-webkit-scrollbar {
  display: none;
}

.product-tabs button {
  position: relative;
  min-width: max-content;
  min-height: 62px;
  padding: 0;
  border: 0;
  color: var(--muted);
  background: transparent;
  font-weight: 600;
  cursor: pointer;
}

.product-tabs button::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 2px;
  background: var(--forest);
  content: "";
  transform: scaleX(0);
  transition: transform 250ms ease;
}

.product-tabs button.is-active {
  color: var(--text);
}

.product-tabs button.is-active::after {
  transform: scaleX(1);
}

.product-panel {
  padding: clamp(4rem, 8vw, 7rem) 0;
}

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

.product-panel__head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2.8rem;
}

.product-panel__head h2 {
  margin-bottom: 0;
}

.product-panel__head p {
  max-width: 520px;
  margin-bottom: 0;
  color: var(--muted);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 2vw, 1.5rem);
}

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

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

.product-card__media {
  position: relative;
  display: block;
  overflow: hidden;
  background: #e8e4dd;
}

.product-card__media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  transition: transform 550ms ease;
}

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

.product-card__arrow {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: rgba(16, 22, 19, 0.78);
  backdrop-filter: blur(10px);
}

.product-card__body {
  padding: 1.5rem;
}

.product-card__en {
  margin-bottom: 0.45rem;
  color: var(--coral);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.product-card h3 {
  margin-bottom: 0.75rem;
}

.product-card__audience {
  margin-bottom: 0.7rem;
  color: var(--forest);
  font-size: 0.8rem;
  font-weight: 600;
}

.product-card__description {
  min-height: 3.2em;
  margin-bottom: 1rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.product-card__action {
  margin-top: 1.3rem;
}

.product-panel--accessories {
  background: var(--paper);
}

.product-panel--accessories .product-card__media img {
  aspect-ratio: 1 / 1;
}

.product-section {
  min-height: calc(100svh - var(--header-h));
  display: flex;
  align-items: center;
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.product-section--alt {
  background: var(--paper);
}

.product-section__head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2.8rem;
}

.product-section__head h2 {
  margin-bottom: 0;
}

.product-section__head p {
  max-width: 520px;
  margin-bottom: 0;
  color: var(--muted);
}

.product-section .product-card__media img {
  height: clamp(300px, 36vw, 460px);
  aspect-ratio: auto;
}

.product-grid--accessories .product-card__media img {
  height: clamp(220px, 26vw, 300px);
  aspect-ratio: auto;
}

.coming-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.coming-card {
  position: relative;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 80% 15%, rgba(217, 184, 173, 0.18), transparent 30%),
    var(--carbon-soft);
}

.coming-card > span {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  color: rgba(255, 255, 255, 0.28);
  font-size: 3rem;
  font-weight: 600;
}

.coming-card .eyebrow {
  color: var(--blush);
}

.coming-card h3 {
  margin-bottom: 0.55rem;
  color: #fff;
  font-size: 1.8rem;
}

.coming-card > p:last-child {
  margin-bottom: 0;
  color: var(--white-muted);
}

.story-opening {
  padding: clamp(4rem, 8vw, 7rem) 0;
  color: #fff;
  background: var(--forest);
}

.story-opening__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(3rem, 8vw, 8rem);
}

.story-opening h2 {
  color: #fff;
}

.story-opening__copy {
  font-size: clamp(1.08rem, 1.7vw, 1.3rem);
}

.story-opening__copy p {
  color: rgba(255, 255, 255, 0.76);
}

.story-opening__copy p:first-child {
  color: #fff;
  font-size: 1.25em;
}

.story-chapters {
  padding: clamp(5rem, 9vw, 8rem) 0;
}

.story-chapter {
  display: grid;
  grid-template-columns: minmax(180px, 0.45fr) minmax(0, 1.55fr);
  gap: clamp(2rem, 7vw, 7rem);
  padding: clamp(3rem, 6vw, 5.5rem) 0;
  border-top: 1px solid var(--line);
}

.story-chapter__label {
  color: var(--coral);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.story-chapter__content {
  max-width: 760px;
}

.story-chapter__content h2 {
  margin-bottom: 1.5rem;
}

.story-chapter__content p {
  color: var(--muted);
  font-size: 1.04rem;
}

.story-chapter__content strong {
  color: var(--text);
}

.story-vision {
  margin-bottom: clamp(5rem, 9vw, 8rem);
  padding: clamp(2.5rem, 6vw, 5rem);
  border-radius: var(--radius-lg);
  color: #fff;
  background:
    radial-gradient(circle at 90% 15%, rgba(206, 120, 102, 0.25), transparent 28%),
    var(--carbon);
}

.story-vision h2 {
  max-width: 760px;
  margin-bottom: 1.5rem;
  color: #fff;
}

.story-vision p {
  max-width: 700px;
  color: var(--white-muted);
}

.story-page {
  color: var(--text);
  background: var(--warm-white);
}

.story-page h1,
.story-page h2,
.story-page h3 {
  letter-spacing: 0;
}

.story-hero {
  position: relative;
  min-height: min(920px, calc(100svh - var(--header-h)));
  overflow: hidden;
  color: #fff;
  background: #0f1512;
}

.story-hero__media {
  position: absolute;
  inset: 0 0 0 34%;
  overflow: hidden;
}

.story-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 72% center;
  transform: translateY(var(--story-parallax-y, 0)) scale(1.04);
  transition: transform 700ms ease;
}

.story-hero__scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(15, 21, 18, 1) 0%, rgba(15, 21, 18, 0.94) 34%, rgba(15, 21, 18, 0.55) 62%, rgba(15, 21, 18, 0.18) 100%),
    linear-gradient(0deg, rgba(15, 21, 18, 0.62) 0%, rgba(15, 21, 18, 0) 42%);
}

.story-hero__inner {
  position: relative;
  z-index: 1;
  min-height: min(920px, calc(100svh - var(--header-h)));
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  padding-top: clamp(5rem, 8rem, 8rem);
  padding-bottom: clamp(4rem, 6.5rem, 6.5rem);
}

.story-hero__copy {
  width: min(760px, 100%);
}

.story-hero .eyebrow {
  color: rgba(255, 255, 255, 0.62);
}

.story-hero h1 {
  margin-bottom: 1.35rem;
  color: #fff;
  font-size: clamp(3.25rem, 6.6rem, 6.6rem);
  font-weight: 600;
  line-height: 1.04;
}

.story-hero__lead {
  max-width: 580px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.18rem;
  line-height: 1.9;
}

.story-hero__note {
  margin-bottom: 0.55rem;
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-align: right;
  text-transform: uppercase;
  white-space: nowrap;
}

.story-origin {
  padding: clamp(5.5rem, 8.5rem, 8.5rem) 0;
  background: var(--paper);
}

.story-origin__grid {
  display: grid;
  grid-template-columns: minmax(220px, 0.42fr) minmax(0, 0.9fr);
  gap: clamp(3rem, 7rem, 7rem);
  align-items: start;
}

.story-origin__marker {
  position: sticky;
  top: calc(var(--header-h) + 3rem);
  padding-top: 0.35rem;
}

.story-origin__kicker {
  margin-bottom: 0.4rem;
  color: var(--carbon);
  font-size: clamp(3.5rem, 6.4rem, 6.4rem);
  font-weight: 700;
  line-height: 0.95;
}

.story-origin__marker > p:last-child {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.story-origin__body {
  max-width: 760px;
}

.story-origin__body h2,
.story-section-head h2,
.story-feature__copy h2,
.story-split__sticky h2,
.story-future h2 {
  font-size: clamp(2.4rem, 4.25rem, 4.25rem);
  font-weight: 600;
  line-height: 1.16;
}

.story-origin__body h2 {
  margin-bottom: 2rem;
}

.story-richtext p {
  margin-bottom: 1.15rem;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.9;
}

.story-richtext p:last-child {
  margin-bottom: 0;
}

.story-quote {
  padding: clamp(5.5rem, 8.5rem, 8.5rem) 0;
  color: #fff;
  background: var(--carbon);
}

.story-quote .eyebrow {
  color: var(--blush);
}

.story-quote blockquote {
  max-width: 1110px;
  margin: 0;
}

.story-quote blockquote p {
  margin-bottom: 0;
  color: #fff;
  font-family: var(--font-cn);
  font-size: clamp(3rem, 5.7rem, 5.7rem);
  font-weight: 600;
  line-height: 1.16;
}

.story-pickleball {
  padding: clamp(5rem, 8rem, 8rem) 0;
  background: var(--warm-white);
}

.story-feature {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  gap: clamp(3rem, 6rem, 6rem);
  align-items: center;
}

.story-feature__media {
  min-height: 620px;
  margin: 0;
  overflow: hidden;
  background: #d9d7cf;
}

.story-feature__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 72% center;
  transition: transform 650ms ease;
}

.story-feature__media:hover img {
  transform: scale(1.025);
}

.story-feature__copy {
  max-width: 560px;
}

.story-feature__copy h2 {
  margin-bottom: 1.6rem;
}

.story-philosophy {
  padding: clamp(5.5rem, 8.5rem, 8.5rem) 0;
  background: var(--paper);
}

.story-section-head {
  max-width: 820px;
  margin-bottom: clamp(3rem, 5rem, 5rem);
}

.story-section-head h2 {
  margin-bottom: 0;
}

.story-philosophy__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
}

.story-principle {
  min-height: 360px;
  padding: clamp(1.4rem, 2.4rem, 2.4rem) clamp(1.2rem, 2rem, 2rem) 0 0;
  border-right: 1px solid var(--line);
}

.story-principle:last-child {
  border-right: 0;
}

.story-principle span,
.story-text-block span {
  display: inline-block;
  margin-bottom: 3rem;
  color: var(--coral);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.story-principle h3 {
  margin-bottom: 1rem;
  font-size: 1.7rem;
}

.story-principle p {
  max-width: 330px;
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.8;
}

.story-product-team {
  padding: clamp(5.5rem, 8.5rem, 8.5rem) 0;
  background: #f0ebe2;
}

.story-split {
  display: grid;
  grid-template-columns: minmax(330px, 0.82fr) minmax(0, 1fr);
  gap: clamp(3rem, 7rem, 7rem);
  align-items: start;
}

.story-split__sticky {
  position: sticky;
  top: calc(var(--header-h) + 2rem);
}

.story-split__sticky h2 {
  margin-bottom: 2rem;
}

.story-split__sticky figure {
  margin: 0;
  overflow: hidden;
  background: #d6d2ca;
}

.story-split__sticky img {
  width: 100%;
  height: clamp(420px, 34rem, 34rem);
  object-fit: cover;
  object-position: 72% center;
}

.story-split__content {
  display: grid;
  gap: clamp(3.5rem, 6rem, 6rem);
}

.story-text-block {
  padding-top: 0.2rem;
  border-top: 1px solid rgba(16, 22, 19, 0.2);
}

.story-text-block h3 {
  max-width: 620px;
  margin-bottom: 1.35rem;
  font-size: clamp(1.8rem, 2.5rem, 2.5rem);
  font-weight: 600;
  line-height: 1.25;
}

.story-future {
  padding: clamp(6rem, 9rem, 9rem) 0;
  color: #fff;
  background: #101613;
}

.story-future__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.55fr);
  column-gap: clamp(3rem, 7rem, 7rem);
  row-gap: 2rem;
  align-items: end;
}

.story-future .eyebrow {
  grid-column: 1 / -1;
  color: var(--blush);
}

.story-future h2 {
  margin-bottom: 0;
  color: #fff;
}

.story-future .story-richtext {
  max-width: 620px;
}

.story-future .story-richtext p {
  color: rgba(255, 255, 255, 0.72);
}

.story-future__brand {
  grid-column: 1 / -1;
  margin: clamp(3rem, 5rem, 5rem) 0 0;
  color: rgba(255, 255, 255, 0.28);
  font-size: clamp(3.4rem, 7rem, 7rem);
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.policy-nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.policy-nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.4rem 1.5rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--paper);
  transition: border-color 250ms ease, transform 250ms ease;
}

.policy-nav a:hover {
  border-color: var(--forest);
  transform: translateY(-2px);
}

.policy-block {
  min-height: calc(100svh - var(--header-h));
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(4rem, 8vw, 7rem) 0;
  border-top: 1px solid var(--line);
}

.policy-block__head {
  display: grid;
  grid-template-columns: minmax(180px, 0.45fr) minmax(0, 1.55fr);
  gap: clamp(2rem, 7vw, 7rem);
  margin-bottom: 3rem;
}

.policy-block__head > p {
  max-width: 700px;
  color: var(--muted);
  font-size: 1.04rem;
}

.policy-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.policy-card {
  padding: clamp(1.5rem, 3vw, 2.2rem);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.policy-card > span {
  display: inline-block;
  margin-bottom: 2rem;
  color: var(--coral);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.policy-card h3 {
  margin-bottom: 1rem;
}

.policy-card p,
.policy-card li {
  color: var(--muted);
  font-size: 0.94rem;
}

.policy-card ul {
  margin: 0;
  padding-left: 1.2rem;
}

.policy-notice {
  margin-top: 1.5rem;
  padding: 1.25rem 1.4rem;
  border-left: 3px solid var(--champagne);
  color: var(--muted);
  background: rgba(200, 170, 118, 0.1);
  font-size: 0.9rem;
}

.verify-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.verify-step {
  min-height: 270px;
  padding: 1.6rem;
  border-radius: var(--radius);
  color: #fff;
  background: var(--carbon);
}

.verify-step > span {
  display: grid;
  width: 44px;
  height: 44px;
  margin-bottom: 4rem;
  place-items: center;
  border: 1px solid var(--line-dark);
  border-radius: 50%;
  color: var(--blush);
  font-size: 0.72rem;
}

.verify-step h3 {
  color: #fff;
  font-size: 1.2rem;
}

.verify-step p {
  margin-bottom: 0;
  color: var(--white-muted);
  font-size: 0.88rem;
}

.policy-block > .btn {
  display: flex;
  width: fit-content;
  margin: 1.5rem auto 0;
}

.contact-categories {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.75rem;
  min-height: calc(100svh - var(--header-h));
  align-content: center;
}

.contact-category {
  min-height: 200px;
  padding: 1.4rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--paper);
}

.contact-category > span {
  color: var(--coral);
  font-size: 0.68rem;
  font-weight: 700;
}

.contact-category h3 {
  margin-top: 3rem;
  margin-bottom: 0.6rem;
  font-size: 1.1rem;
}

.contact-category p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.5rem, 4vw, 2.5rem);
  align-items: center;
  min-height: calc(100svh - var(--header-h));
  align-content: center;
  max-width: 620px;
  margin-inline: auto;
}

.contact-intro {
  text-align: center;
}

.contact-intro h2 {
  margin-bottom: 0.6rem;
  font-size: clamp(1.4rem, 3vw, 1.8rem);
}

.contact-intro > p {
  color: var(--muted);
  font-size: 0.9rem;
}

.contact-intro a {
  color: var(--forest);
  font-weight: 700;
}

.contact-form {
  padding: clamp(1.3rem, 3vw, 2.2rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--paper);
  box-shadow: var(--shadow-soft);
}

.contact-form__intro {
  margin-bottom: 1.4rem;
  color: var(--muted);
  font-size: 0.82rem;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.form-field--full {
  grid-column: 1 / -1;
}

.form-field label {
  font-size: 0.74rem;
  font-weight: 700;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  color: var(--text);
  background: var(--warm-white);
  transition: border-color 220ms ease, box-shadow 220ms ease;
}

.form-field input,
.form-field select {
  min-height: 46px;
  padding: 0 0.85rem;
  font-size: 0.88rem;
}

.form-field textarea {
  min-height: 130px;
  padding: 0.9rem;
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--forest);
  outline: 0;
  box-shadow: 0 0 0 3px rgba(35, 69, 55, 0.1);
}

.form-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.4rem;
}

.form-actions button {
  border: 0;
  cursor: pointer;
}

.form-actions button:disabled {
  cursor: wait;
  opacity: 0.55;
}

.form-status {
  margin: 1rem 0 0;
  font-size: 0.86rem;
}

.form-status.is-error {
  color: #9d3f35;
}

.form-status.is-success {
  color: var(--forest);
}

.site-footer {
  color: #fff;
  background: #0d1310;
}

.footer-inner {
  padding-top: clamp(4rem, 8vw, 6.5rem);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(280px, 1.2fr) minmax(330px, 1fr) minmax(220px, 0.7fr);
  gap: clamp(2rem, 6vw, 6rem);
  padding-bottom: clamp(3.5rem, 7vw, 5rem);
}

.footer-logo {
  display: inline-flex;
  width: max-content;
  align-items: center;
  margin-bottom: 2rem;
  padding: 0;
}

.footer-logo img {
  width: clamp(170px, 17vw, 220px);
  height: auto;
  border-radius: 0;
  background: transparent;
}

.footer-brand h2 {
  margin-bottom: 1.4rem;
  color: #fff;
  font-size: clamp(1.75rem, 3vw, 2.55rem);
}

.footer-brand > p {
  max-width: 430px;
  margin-bottom: 0;
  color: var(--white-muted);
  font-size: 0.9rem;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.footer-column h3 {
  margin-bottom: 1.4rem;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer-column ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-column li + li {
  margin-top: 0.75rem;
}

.footer-column a,
.footer-placeholder {
  border: 0;
  padding: 0;
  color: rgba(255, 255, 255, 0.78);
  background: transparent;
  font-size: 0.86rem;
  text-align: left;
  cursor: pointer;
  transition: color 200ms ease;
}

.footer-column a:hover,
.footer-placeholder:hover {
  color: #fff;
}

.footer-follow {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-follow > a + a {
  margin-top: 0.55rem;
}

.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 1.5rem 0;
}

.footer-socials button,
.footer-socials a {
  padding: 0.35rem 0.55rem;
  border: 1px solid var(--line-dark);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.62);
  background: transparent;
  font-size: 0.66rem;
  cursor: pointer;
}

.footer-commerce {
  width: 100%;
  display: flex;
  min-height: 48px;
  align-items: center;
  justify-content: space-between;
  padding: 0 1rem;
  border: 1px solid var(--line-dark);
  color: #fff;
  background: transparent;
  cursor: pointer;
}

.footer-bottom {
  display: flex;
  min-height: 80px;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  border-top: 1px solid var(--line-dark);
  color: rgba(255, 255, 255, 0.46);
  font-size: 0.7rem;
}

.footer-bottom p {
  margin-bottom: 0;
}

.footer-records {
  display: flex;
  flex-wrap: wrap;
  gap: 1.3rem;
}

.footer-records a {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.site-toast {
  position: fixed;
  z-index: 2000;
  bottom: 24px;
  left: 50%;
  max-width: calc(100% - 32px);
  padding: 0.85rem 1.2rem;
  border-radius: 999px;
  opacity: 0;
  color: #fff;
  background: var(--carbon);
  box-shadow: var(--shadow-hover);
  font-size: 0.86rem;
  pointer-events: none;
  transform: translate(-50%, 16px);
  transition: opacity 250ms ease, transform 250ms ease;
}

.site-toast.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 600ms ease, transform 600ms ease;
}

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

.not-found {
  min-height: calc(100svh - var(--header-h));
  display: grid;
  place-items: center;
  padding: 4rem 0;
}

.not-found__content {
  max-width: 700px;
  text-align: center;
}

.not-found__code {
  margin-bottom: 0;
  color: var(--blush);
  font-size: clamp(6rem, 18vw, 14rem);
  font-weight: 700;
  line-height: 0.8;
}

@media (max-width: 1080px) {
  .header-inner {
    grid-template-columns: minmax(150px, auto) minmax(0, 1fr);
    gap: 1rem;
  }

  .desktop-nav {
    display: flex;
    min-width: 0;
    justify-content: flex-end;
    gap: clamp(0.7rem, 2vw, 1.35rem);
    overflow-x: auto;
    scrollbar-width: none;
  }

  .desktop-nav::-webkit-scrollbar {
    display: none;
  }

  .desktop-nav a {
    font-size: 0.75rem;
  }

  .header-cta {
    display: none;
  }

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

  .advantage-card:last-child,
  .product-grid .product-card:last-child {
    grid-column: auto;
  }

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

  .verify-steps {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .footer-follow {
    grid-column: 2;
  }
}

@media (max-width: 820px) {
  :root {
    --header-h: 112px;
  }

  .container {
    width: min(calc(100% - 36px), var(--container));
  }

  .header-inner {
    height: var(--header-h);
    grid-template-columns: 1fr;
    grid-template-rows: 60px 52px;
    gap: 0;
  }

  .brand-logo {
    grid-row: 1;
  }

  .desktop-nav {
    width: 100%;
    grid-row: 2;
    justify-content: space-between;
    gap: 0.25rem;
    border-top: 1px solid var(--line);
  }

  .desktop-nav a {
    padding: 0.45rem 0.5rem;
    font-size: 0.72rem;
  }

  .hero-carousel {
    min-height: 820px;
  }

  .hero-slide__scrim {
    background:
      linear-gradient(0deg, rgba(8, 12, 10, 0.79) 0%, rgba(8, 12, 10, 0.38) 60%, rgba(8, 12, 10, 0.17) 100%);
  }

  .hero-slide__content {
    justify-content: flex-end;
    padding-bottom: 8.5rem;
  }

  .hero-slide__content h1,
  .hero-slide__content h2 {
    max-width: 650px;
  }

  .reviews-carousel {
    grid-auto-columns: calc((100% - 1rem) / 2);
  }

  .material-layout,
  .story-layout,
  .story-opening__grid,
  .story-chapter,
  .policy-block__head,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .material-media {
    max-width: 620px;
  }

  .material-visual {
    width: min(100%, 540px);
    min-height: 450px;
    justify-self: start;
  }

  .story-visual {
    width: min(100%, 540px);
    min-height: 450px;
    justify-self: start;
  }

  .advantages-grid,
  .product-grid,
  .coming-grid,
  .policy-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .partners-intro {
    grid-template-columns: 1fr;
  }

  .story-chapter {
    gap: 1.3rem;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding: 1.5rem 0;
  }
}

@media (max-width: 600px) {
  :root {
    --header-h: 108px;
  }

  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  h1 {
    font-size: clamp(2.35rem, 12vw, 3.6rem);
  }

  h2 {
    font-size: clamp(1.85rem, 9vw, 2.7rem);
  }

  .section-shell {
    padding: 4.5rem 0;
  }

  .header-inner {
    height: var(--header-h);
  }

  .brand-logo img {
    width: 136px;
  }

  .hero-carousel {
    min-height: 760px;
    height: calc(100svh - var(--header-h));
  }

  .hero-slide__media img {
    object-position: 62% center !important;
  }

  .hero-slide__content {
    padding-top: 7rem;
    padding-bottom: 8rem;
  }

  .hero-slide__content .eyebrow {
    margin-bottom: 0.8rem;
  }

  .hero-slide__content h1,
  .hero-slide__content h2 {
    margin-bottom: 1rem;
  }

  .hero-slide__content > p:not(.eyebrow) {
    display: -webkit-box;
    margin-bottom: 1.4rem;
    overflow: hidden;
    font-size: 0.94rem;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
  }

  .hero-controls {
    bottom: 1.25rem;
  }

  .hero-arrows button {
    width: 44px;
    height: 44px;
  }

  .material-layout {
    gap: 3.3rem;
  }

  .material-visual {
    min-height: 360px;
  }

  .material-visual::before {
    top: -12px;
    right: -8px;
  }

  .story-layout {
    gap: 3.3rem;
  }

  .story-visual {
    min-height: 360px;
  }

  .story-visual::before {
    top: -12px;
    left: -8px;
  }

  .material-media::before {
    top: -12px;
    right: -8px;
  }

  .advantages-grid,
  .product-grid,
  .coming-grid,
  .policy-grid,
  .verify-steps {
    grid-template-columns: 1fr;
  }

  .advantage-card {
    min-height: 360px;
  }

  .advantage-card__icon {
    margin-bottom: 3.5rem;
  }

  .partners-viewport {
    margin-right: 0;
    overflow: visible;
  }

  .reviews-carousel {
    grid-auto-columns: 100%;
  }

  .partners-track {
    width: auto;
    display: grid;
    padding-right: 0;
  }

  .partner-slot {
    width: auto;
  }

  .partner-group__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.6rem;
    max-width: 580px;
  }

  .partner-slot--club {
    padding: 1.1rem 0.6rem;
    gap: 0.6rem;
    min-height: 150px;
  }

  .club-logo {
    width: 44px;
    height: 44px;
    border-radius: 12px;
  }

  .club-logo img {
    width: 26px;
    height: 26px;
  }

  .partner-slot--club strong {
    font-size: 0.76rem;
  }

  .partner-slot--club small {
    font-size: 0.63rem;
  }

  .partner-group__head {
    align-items: flex-start;
    flex-direction: column;
  }

  .page-hero {
    padding-top: 4rem;
  }

  .product-tabs {
    gap: 1.7rem;
  }

  .product-panel__head {
    align-items: flex-start;
    flex-direction: column;
  }

  .product-card__description {
    min-height: 0;
  }

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

  .policy-card > span {
    margin-bottom: 1.5rem;
  }

  .verify-step {
    min-height: 230px;
  }

  .verify-step > span {
    margin-bottom: 3rem;
  }

  .contact-categories {
    display: flex;
    margin-right: -14px;
    padding-right: 14px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .contact-category {
    width: 230px;
    min-width: 230px;
    scroll-snap-align: start;
  }

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

  .form-field--full {
    grid-column: auto;
  }

  .contact-form {
    border-radius: var(--radius);
  }

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

  .footer-links {
    gap: 1.5rem;
  }

  .footer-follow {
    grid-column: auto;
  }

  .footer-records {
    flex-direction: column;
    gap: 0.65rem;
  }

  .to-top {
    right: 14px;
    bottom: 14px;
  }

  .partner-group__grid {
    grid-template-columns: 1fr;
    max-width: 360px;
  }

  .partner-slot--club {
    padding: 1.3rem 1rem;
    gap: 0.8rem;
    min-height: auto;
  }

  .club-logo {
    width: 52px;
    height: 52px;
    border-radius: 14px;
  }

  .club-logo img {
    width: 32px;
    height: 32px;
  }

  .partner-slot--club strong {
    font-size: 0.88rem;
  }

  .partner-slot--club small {
    font-size: 0.7rem;
  }
}

@media (max-width: 1080px) {
  .story-hero__media {
    left: 26%;
  }

  .story-hero h1 {
    font-size: clamp(3rem, 5.6rem, 5.6rem);
  }

  .story-origin__grid,
  .story-feature,
  .story-split,
  .story-future__inner {
    gap: clamp(2.5rem, 4.5rem, 4.5rem);
  }

  .story-feature__media {
    min-height: 540px;
  }
}

@media (max-width: 820px) {
  .story-hero,
  .story-hero__inner {
    min-height: 760px;
  }

  .story-hero__media {
    inset: 0;
  }

  .story-hero__scrim {
    background:
      linear-gradient(0deg, rgba(15, 21, 18, 0.92) 0%, rgba(15, 21, 18, 0.65) 48%, rgba(15, 21, 18, 0.2) 100%),
      linear-gradient(90deg, rgba(15, 21, 18, 0.42) 0%, rgba(15, 21, 18, 0.08) 100%);
  }

  .story-hero__inner {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    padding-bottom: 4.5rem;
  }

  .story-hero__note {
    text-align: left;
  }

  .story-hero h1 {
    max-width: 660px;
    font-size: clamp(3rem, 4.8rem, 4.8rem);
  }

  .story-origin__grid,
  .story-feature,
  .story-split,
  .story-future__inner {
    grid-template-columns: 1fr;
  }

  .story-origin__marker,
  .story-split__sticky {
    position: static;
  }

  .story-origin__kicker {
    font-size: clamp(3.2rem, 5.4rem, 5.4rem);
  }

  .story-feature__media {
    min-height: 460px;
  }

  .story-feature__copy {
    max-width: 680px;
  }

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

  .story-principle {
    min-height: auto;
    padding: 2rem 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .story-principle:last-child {
    border-bottom: 0;
  }

  .story-principle span,
  .story-text-block span {
    margin-bottom: 1.4rem;
  }

  .story-principle p {
    max-width: 620px;
  }

  .story-future .eyebrow,
  .story-future__brand {
    grid-column: auto;
  }
}

@media (max-width: 600px) {
  .story-hero,
  .story-hero__inner {
    min-height: calc(100svh - var(--header-h));
  }

  .story-hero__media img {
    object-position: 70% center;
  }

  .story-hero__inner {
    padding-top: 4rem;
    padding-bottom: 3.5rem;
  }

  .story-hero h1 {
    font-size: clamp(2.7rem, 3.35rem, 3.35rem);
    line-height: 1.08;
  }

  .story-hero__lead {
    font-size: 1rem;
    line-height: 1.75;
  }

  .story-hero__note {
    white-space: normal;
  }

  .story-origin,
  .story-quote,
  .story-pickleball,
  .story-philosophy,
  .story-product-team,
  .story-future {
    padding-block: 4.5rem;
  }

  .story-origin__body h2,
  .story-section-head h2,
  .story-feature__copy h2,
  .story-split__sticky h2,
  .story-future h2 {
    font-size: clamp(2.05rem, 2.65rem, 2.65rem);
  }

  .story-origin__kicker {
    font-size: clamp(2.7rem, 3.5rem, 3.5rem);
  }

  .story-richtext p {
    font-size: 0.98rem;
    line-height: 1.82;
  }

  .story-quote blockquote p {
    font-size: clamp(2.3rem, 3.25rem, 3.25rem);
  }

  .story-feature__media {
    min-height: 360px;
  }

  .story-split__sticky img {
    height: 360px;
  }

  .story-text-block h3 {
    font-size: clamp(1.55rem, 2rem, 2rem);
  }

  .story-future__brand {
    font-size: clamp(2.8rem, 4rem, 4rem);
    overflow-wrap: anywhere;
  }
}

.story-page--editorial {
  padding-top: 0;
  overflow: hidden;
  color: #181b16;
  background: #f3f1eb;
}

body[data-page="brand-story"] .site-header {
  color: #fff;
  background: rgba(7, 8, 8, 0.42);
  backdrop-filter: blur(10px);
  box-shadow: none;
  transition: background 320ms ease;
}

body[data-page="brand-story"] .site-header.is-scrolled {
  background: rgba(7, 8, 8, 0.88);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.08);
}

body[data-page="brand-story"] .brand-logo img {
  content: url("https://oss.clentina.com/assets/images/footer-logo.png?v=20260706-20");
  filter: none;
}

body[data-page="brand-story"] .desktop-nav a,
body[data-page="brand-story"] .desktop-nav a:hover,
body[data-page="brand-story"] .desktop-nav a.is-active {
  color: rgba(255, 255, 255, 0.92);
  background: transparent;
}

body[data-page="brand-story"] .desktop-nav a:hover,
body[data-page="brand-story"] .desktop-nav a.is-active {
  background: rgba(255, 255, 255, 0.12);
}

body[data-page="brand-story"] .site-header .btn-header {
  color: #10130f;
  background: rgba(196, 206, 130, 0.9);
}

.story-page--editorial h1,
.story-page--editorial h2,
.story-page--editorial h3 {
  letter-spacing: 0;
}

.story-kicker,
.story-number small {
  margin: 0;
  color: #8e9c57;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.4;
  text-transform: uppercase;
}

.story-editorial-hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  color: #fff;
  background: #080a09;
}

.story-editorial-hero__city,
.story-editorial-hero__product,
.story-editorial-hero__shade {
  position: absolute;
  inset: 0;
}

.story-editorial-hero__city img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.68;
  transform: translateY(var(--story-parallax-y, 0)) scale(1.05);
}

.story-editorial-hero__product {
  right: 0;
  left: auto;
  width: min(52vw, 760px);
  display: flex;
  align-items: stretch;
  justify-content: flex-end;
  opacity: 0.96;
}

.story-editorial-hero__product img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 64% center;
}

.story-editorial-hero__shade {
  background:
    linear-gradient(90deg, rgba(5, 6, 6, 0.98) 0%, rgba(5, 6, 6, 0.78) 34%, rgba(5, 6, 6, 0.28) 66%, rgba(5, 6, 6, 0.62) 100%),
    linear-gradient(0deg, rgba(5, 6, 6, 0.55) 0%, transparent 42%);
}

.story-editorial-hero__inner {
  position: relative;
  z-index: 2;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: calc(var(--header-h) + 2rem);
  padding-bottom: clamp(4rem, 7vw, 7rem);
}

.story-editorial-hero__copy {
  width: min(620px, 100%);
  margin-top: 5rem;
}

.story-editorial-hero h1 {
  margin: 0.55rem 0 0.8rem;
  color: #fff;
  font-size: clamp(4.2rem, 6.8rem, 6.8rem);
  font-weight: 700;
  line-height: 1.02;
}

.story-editorial-hero__mission {
  margin-bottom: 1.4rem;
  color: rgba(255, 255, 255, 0.94);
  font-family: var(--font-cn);
  font-size: clamp(1.55rem, 2.3rem, 2.3rem);
  font-weight: 500;
  line-height: 1.35;
}

.story-editorial-hero__lead {
  max-width: 480px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.02rem;
  line-height: 1.9;
}

.story-panel {
  display: grid;
  min-height: 100svh;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  background: #f6f4ef;
}

.story-panel__copy,
.story-growth__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(4rem, 7vw, 7rem) clamp(2rem, 7vw, 7rem);
}

.story-panel__media {
  min-height: 100%;
  margin: 0;
  overflow: hidden;
}

.story-panel__media img,
.story-band__bg img,
.story-birth-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-number {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.story-number span {
  color: #889753;
  font-size: clamp(3rem, 4.4rem, 4.4rem);
  font-weight: 300;
  line-height: 1;
}

.story-panel h2,
.story-band h2,
.story-growth h2 {
  margin-bottom: 1.35rem;
  color: inherit;
  font-size: clamp(2.4rem, 3.6rem, 3.6rem);
  font-weight: 700;
  line-height: 1.12;
}

.story-page--editorial .story-richtext {
  max-width: 660px;
}

.story-page--editorial .story-richtext p {
  margin-bottom: 1.05rem;
  color: rgba(24, 27, 22, 0.76);
  font-size: 1rem;
  line-height: 1.9;
}

.story-page--editorial .story-richtext p:last-child {
  margin-bottom: 0;
}

.story-band {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  overflow: hidden;
}

.story-band__bg {
  position: absolute;
  inset: 0;
  margin: 0;
}

.story-band__content {
  position: relative;
  z-index: 2;
  width: min(620px, calc(100% - 48px));
  margin-left: max(24px, calc((100vw - var(--container)) / 2));
  padding: clamp(5rem, 8vw, 8rem) 0;
}

.story-band--birth {
  align-items: flex-start;
  color: #fff;
  background: #0d1110;
}

.story-band--birth .story-band__content {
  margin-left: auto;
  margin-right: max(24px, calc((100vw - var(--container)) / 2));
  padding-top: clamp(6rem, 12vh, 9rem);
  padding-bottom: 0;
}

.story-band--birth::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(270deg, rgba(9, 11, 10, 0.98) 0%, rgba(9, 11, 10, 0.92) 42%, rgba(9, 11, 10, 0.32) 72%, rgba(9, 11, 10, 0.08) 100%),
    linear-gradient(0deg, rgba(9, 11, 10, 0.78) 0%, transparent 34%);
  content: "";
}

.story-band--birth .story-band__bg img {
  object-position: center;
}

.story-band--birth .story-richtext p {
  color: rgba(255, 255, 255, 0.78);
}

.story-birth-strip {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 0;
  left: 0;
  height: clamp(130px, 15vw, 190px);
  display: grid;
  grid-template-columns: 0.82fr 1fr 0.82fr;
  border-top: 1px solid rgba(255, 255, 255, 0.34);
}

.story-birth-strip img {
  min-width: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.34);
}

.story-birth-strip img:last-child {
  border-right: 0;
}

.story-band--philosophy {
  color: #181b16;
  background: #ede7dc;
}

.story-band--philosophy .story-band__content {
  margin: 0 auto;
  padding: clamp(5rem, 8vw, 8rem) 0;
  text-align: center;
}

.story-band--philosophy .story-band__content .story-number {
  align-items: center;
}

.story-band--philosophy .story-band__content .story-richtext {
  margin: 0 auto;
}

.story-band--philosophy::after {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, rgba(246, 244, 239, 0.58) 0%, rgba(246, 244, 239, 0.82) 100%);
  content: "";
}

.story-band--philosophy .story-band__bg img {
  object-position: center;
  opacity: 1;
}

.story-band--philosophy .story-richtext p {
  color: rgba(24, 27, 22, 0.76);
}

.story-growth {
  position: relative;
  display: flex;
  min-height: 100svh;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background: #0d1110;
}

.story-growth__bg {
  position: absolute;
  inset: 0;
  margin: 0;
}

.story-growth__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.story-growth::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(9, 11, 10, 0.94) 0%, rgba(9, 11, 10, 0.82) 34%, rgba(9, 11, 10, 0.42) 66%, rgba(9, 11, 10, 0.12) 100%);
  content: "";
}

.story-growth__copy {
  position: relative;
  z-index: 2;
  width: min(560px, 100%);
  align-items: flex-start;
  margin-left: max(24px, calc((100vw - var(--container)) / 2));
  padding: clamp(5rem, 8vw, 8rem) 0;
}

.story-growth h2 {
  color: #fff;
}

.story-growth .story-richtext p {
  color: rgba(255, 255, 255, 0.78);
}

.story-growth .story-number span {
  color: #c6d777;
}

.story-next-link {
  display: inline-flex;
  min-width: min(100%, 270px);
  min-height: 42px;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2rem;
  padding: 0 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: #fff;
  font-size: 0.86rem;
  font-weight: 600;
  transition: color 220ms ease, background-color 220ms ease, border-color 220ms ease;
}

.story-next-link:hover {
  color: #181b16;
  border-color: #fff;
  background: #fff;
}

@media (max-width: 1080px) {
  .story-editorial-hero__product {
    width: 58vw;
    opacity: 0.74;
  }

  .story-editorial-hero h1 {
    font-size: clamp(3.6rem, 5.6rem, 5.6rem);
  }
}

@media (max-width: 820px) {
  body[data-page="brand-story"] .desktop-nav {
    border-top-color: rgba(255, 255, 255, 0.1);
  }

  .story-editorial-hero {
    min-height: 100svh;
  }

  .story-editorial-hero__inner {
    min-height: 100svh;
    align-items: flex-end;
    padding-bottom: 4.5rem;
  }

  .story-editorial-hero__product {
    inset: 0;
    width: 100%;
    opacity: 0.48;
  }

  .story-editorial-hero__product img {
    object-position: 72% center;
  }

  .story-editorial-hero__shade {
    background:
      linear-gradient(0deg, rgba(5, 6, 6, 0.94) 0%, rgba(5, 6, 6, 0.68) 48%, rgba(5, 6, 6, 0.2) 100%),
      linear-gradient(90deg, rgba(5, 6, 6, 0.72) 0%, rgba(5, 6, 6, 0.1) 100%);
  }

  .story-editorial-hero__copy {
    margin-top: 0;
  }

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

  .story-panel__copy {
    padding: 4.5rem 28px;
  }

  .story-growth__copy {
    width: min(100% - 56px, 560px);
    margin-left: 28px;
    padding: 4.5rem 0;
  }

  .story-panel__media {
    min-height: 430px;
  }

  .story-band {
    min-height: 100svh;
  }

  .story-band__content {
    width: min(650px, calc(100% - 56px));
    margin-inline: 28px;
  }

  .story-birth-strip {
    position: relative;
    height: auto;
    grid-template-columns: repeat(3, 1fr);
  }

  .story-birth-strip img {
    aspect-ratio: 4 / 3;
  }
}

@media (max-width: 600px) {
  .story-editorial-hero {
    min-height: 100svh;
  }

  .story-editorial-hero__inner {
    min-height: 100svh;
    padding-top: calc(var(--header-h) + 2rem);
    padding-bottom: 3rem;
  }

  .story-editorial-hero h1 {
    font-size: clamp(3.2rem, 4rem, 4rem);
  }

  .story-editorial-hero__mission {
    font-size: 1.35rem;
  }

  .story-editorial-hero__lead {
    font-size: 0.96rem;
    line-height: 1.78;
  }

  .story-number {
    gap: 0.75rem;
  }

  .story-number span {
    font-size: 3rem;
  }

  .story-panel h2,
  .story-band h2,
  .story-growth h2 {
    font-size: clamp(2.15rem, 2.75rem, 2.75rem);
  }

  .story-page--editorial .story-richtext p {
    font-size: 0.96rem;
    line-height: 1.82;
  }

  .story-panel__media {
    min-height: 320px;
  }

  .story-band {
    min-height: 100svh;
  }

  .story-band__content {
    width: min(100% - 36px, 620px);
    margin-inline: 18px;
    padding: 4.5rem 0;
  }

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

  .story-birth-strip img {
    aspect-ratio: 16 / 8;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.34);
  }

  .story-growth__copy {
    width: min(100% - 36px, 560px);
    margin-left: 18px;
    padding: 4rem 0;
  }
}

/* ── 笔记本矮视口适配 ── */
@media (max-height: 820px) and (min-width: 821px) {
  .story-panel__copy {
    padding: clamp(2.5rem, 5vh, 4.5rem) clamp(2rem, 7vw, 7rem);
  }

  .story-band__content {
    padding: clamp(2.5rem, 5vh, 4.5rem) 0;
  }

  .story-band--birth .story-band__content {
    padding-top: clamp(3.5rem, 6vh, 5rem);
    padding-bottom: 0;
  }

  .story-band--philosophy .story-band__content {
    padding: clamp(2.5rem, 5vh, 4.5rem) 0;
  }

  .story-growth__copy {
    padding: clamp(2.5rem, 5vh, 4.5rem) 0;
  }

  .story-number span {
    font-size: clamp(2.2rem, 3rem, 3rem);
  }

  .story-panel h2,
  .story-band h2,
  .story-growth h2 {
    font-size: clamp(1.9rem, 2.5rem, 2.5rem);
    margin-bottom: 1rem;
  }

  .story-page--editorial .story-richtext p {
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
    line-height: 1.72;
  }

  /* ── 全屏分屏矮视口适配 ── */
  .section-shell {
    padding: clamp(2.5rem, 5vh, 4.5rem) 0;
  }

  .product-section {
    padding: clamp(2.5rem, 5vh, 4.5rem) 0;
  }

  .product-section .product-card__media img {
    height: clamp(220px, 28vw, 340px);
  }

  .policy-block {
    padding: clamp(2.5rem, 5vh, 4.5rem) 0;
  }

  .policy-block__head {
    margin-bottom: 1.5rem;
  }

  .policy-card {
    padding: 1rem 1.2rem;
  }

  .contact-category {
    min-height: 140px;
    padding: 1rem;
  }
}

.story-editorial-hero {
  min-height: 100svh;
  background: #070808;
}

.story-editorial-hero__bg {
  position: absolute;
  inset: 0;
}

.story-editorial-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 64% center;
  opacity: 0.9;
  filter: saturate(0.82) contrast(1.02);
  transform: translateY(var(--story-parallax-y, 0)) scale(1.02);
}

.story-editorial-hero__city,
.story-editorial-hero__product {
  display: none;
}

.story-editorial-hero__shade {
  background:
    linear-gradient(90deg, rgba(4, 5, 5, 0.96) 0%, rgba(4, 5, 5, 0.78) 34%, rgba(4, 5, 5, 0.32) 62%, rgba(4, 5, 5, 0.28) 100%),
    linear-gradient(0deg, rgba(4, 5, 5, 0.64) 0%, rgba(4, 5, 5, 0.12) 55%, rgba(4, 5, 5, 0.34) 100%);
}

.story-editorial-hero__inner {
  min-height: 100svh;
  align-items: center;
  padding-top: calc(var(--header-h) + 1rem);
  padding-bottom: 4rem;
}

.story-editorial-hero__copy {
  position: relative;
  width: min(680px, 100%);
  margin-top: 2.5rem;
  padding-left: clamp(3.1rem, 4.6vw, 4.7rem);
}

.story-editorial-hero__copy::before {
  position: absolute;
  top: 0.35rem;
  bottom: 0.25rem;
  left: 0;
  width: 2px;
  background: #9ca95f;
  content: "";
}

.story-editorial-hero__meta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.1rem;
  margin-bottom: 2rem;
}

.story-editorial-hero__meta span {
  color: #c6d777;
  font-size: clamp(2.35rem, 3.4vw, 3.9rem);
  font-weight: 400;
  line-height: 0.9;
}

.story-editorial-hero .story-kicker {
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(0.98rem, 1.15vw, 1.24rem);
  letter-spacing: 0.16em;
}

.story-editorial-hero h1 {
  margin: 0 0 1.1rem;
  font-size: clamp(4.6rem, 7.2vw, 8.2rem);
  line-height: 1;
  text-shadow: 0 8px 30px rgba(0, 0, 0, 0.28);
}

.story-editorial-hero__mission {
  max-width: 670px;
  margin-bottom: 2.4rem;
  color: rgba(255, 255, 255, 0.94);
  font-size: clamp(1.65rem, 2.2vw, 2.6rem);
  font-weight: 500;
  line-height: 1.35;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.story-editorial-hero__lead {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1rem, 1.2vw, 1.18rem);
  font-weight: 500;
  line-height: 2.05;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.32);
}

@media (max-width: 1080px) {
  .story-editorial-hero__bg img {
    object-position: 70% center;
  }

  .story-editorial-hero__copy {
    width: min(620px, 100%);
  }
}

@media (max-width: 820px) {
  .story-editorial-hero,
  .story-editorial-hero__inner {
    min-height: 820px;
  }

  .story-editorial-hero__shade {
    background:
      linear-gradient(0deg, rgba(4, 5, 5, 0.93) 0%, rgba(4, 5, 5, 0.72) 50%, rgba(4, 5, 5, 0.2) 100%),
      linear-gradient(90deg, rgba(4, 5, 5, 0.78) 0%, rgba(4, 5, 5, 0.2) 100%);
  }

  .story-editorial-hero__inner {
    align-items: flex-end;
    padding-bottom: 4.5rem;
  }

  .story-editorial-hero__copy {
    margin-top: 0;
  }
}

@media (max-width: 600px) {
  .story-editorial-hero,
  .story-editorial-hero__inner {
    min-height: calc(100svh - var(--header-h));
  }

  .story-editorial-hero__bg img {
    object-position: 70% center;
  }

  .story-editorial-hero__copy {
    padding-left: 1.8rem;
  }

  .story-editorial-hero__meta {
    gap: 0.8rem;
    margin-bottom: 1.5rem;
  }

  .story-editorial-hero__meta span {
    font-size: 2.5rem;
  }

  .story-editorial-hero .story-kicker {
    font-size: 0.84rem;
  }

  .story-editorial-hero h1 {
    font-size: clamp(3.5rem, 15vw, 4.8rem);
  }

  .story-editorial-hero__mission {
    margin-bottom: 1.45rem;
    font-size: clamp(1.32rem, 6vw, 1.7rem);
  }

  .story-editorial-hero__lead {
    display: -webkit-box;
    max-width: 100%;
    overflow: hidden;
    font-size: 0.92rem;
    line-height: 1.8;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 5;
  }
}

.story-panel--origin {
  min-height: 560px;
  grid-template-columns: minmax(360px, 50%) minmax(0, 50%);
  color: #fff;
  background: #191d1a;
}

.story-panel--origin .story-panel__copy {
  position: relative;
  padding: clamp(4.5rem, 8vw, 8.5rem) clamp(2.5rem, 6vw, 6.5rem);
  background:
    linear-gradient(90deg, rgba(16, 19, 17, 0.96), rgba(24, 28, 25, 0.94)),
    #171a18;
}

.story-panel--origin .story-panel__copy::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.045) 100%),
    radial-gradient(circle at 16% 12%, rgba(156, 169, 95, 0.12), transparent 34%);
  content: "";
  pointer-events: none;
}

.story-panel--origin .story-panel__copy > * {
  position: relative;
  z-index: 1;
}

.story-panel--origin .story-number {
  align-items: flex-start;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 2.4rem;
}

.story-panel--origin .story-number span {
  color: #c6d777;
  font-size: clamp(1.8rem, 2.4vw, 2.6rem);
  font-weight: 400;
}

.story-panel--origin .story-number small {
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.88rem;
  letter-spacing: 0.08em;
}

.story-panel--origin h2 {
  position: relative;
  margin-bottom: 2.6rem;
  color: #fff;
  font-size: clamp(2.2rem, 3.2vw, 3.4rem);
  font-weight: 600;
  text-shadow: 0 10px 26px rgba(0, 0, 0, 0.34);
}

.story-panel--origin h2::after {
  position: absolute;
  bottom: -0.65rem;
  left: 0;
  width: 34px;
  height: 2px;
  background: #7f8d4c;
  content: "";
}

.story-panel--origin .story-richtext {
  max-width: 460px;
}

.story-panel--origin .story-richtext p {
  margin-bottom: 1.2rem;
  color: rgba(255, 255, 255, 0.68);
  font-size: clamp(0.92rem, 1vw, 1.02rem);
  font-weight: 400;
  line-height: 1.95;
}

.story-panel--origin .story-panel__media {
  min-height: 560px;
  background: #171a18;
}

.story-panel--origin .story-panel__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.92) contrast(1.02) brightness(0.86);
}

@media (max-width: 820px) {
  .story-panel--origin {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .story-panel--origin .story-panel__copy {
    min-height: auto;
    padding: 4.5rem 28px;
  }

  .story-panel--origin .story-panel__media {
    min-height: 380px;
  }
}

@media (max-width: 600px) {
  .story-panel--origin .story-panel__copy {
    padding: 4rem 22px;
  }

  .story-panel--origin h2 {
    font-size: clamp(2rem, 9vw, 2.8rem);
  }

  .story-panel--origin .story-richtext p {
    font-size: 0.96rem;
    line-height: 1.86;
  }

  .story-panel--origin .story-panel__media {
    min-height: 330px;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
