:root {
  --ink: #181510;
  --deep: #211a14;
  --coffee: #34281d;
  --gold: #caa05a;
  --gold-soft: #e4c486;
  --ivory: #fbf6ea;
  --paper: #fffaf0;
  --warm: #ead5b2;
  --muted: #786d5f;
  --line: rgba(202, 160, 90, 0.32);
  --shadow: 0 30px 90px rgba(32, 21, 12, 0.22);
  --serif: "Source Han Serif SC", "Noto Serif SC", "Songti SC", "SimSun", serif;
  --sans: "Source Han Sans SC", "Noto Sans SC", "Microsoft YaHei", Arial, sans-serif;
  --latin: "Cinzel", "Times New Roman", serif;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background:
    linear-gradient(115deg, rgba(255, 246, 225, 0.72), rgba(24, 21, 16, 0) 34%),
    var(--paper);
  font-family: var(--sans);
  line-height: 1.75;
}

section {
  scroll-margin-top: 88px;
}

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

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

.edit-launcher {
  position: fixed;
  right: 18px;
  bottom: 24px;
  z-index: 120;
  min-height: 46px;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid rgba(255, 236, 178, 0.9);
  border-radius: 999px;
  color: #21170f;
  background: linear-gradient(135deg, #f3d891, #c79a4d);
  box-shadow: 0 16px 42px rgba(32, 21, 12, 0.28);
  font-weight: 900;
}

.is-editing .edit-launcher {
  display: inline-flex;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 30;
  display: flex;
  align-items: center;
  gap: 34px;
  min-height: 78px;
  padding: 14px clamp(20px, 4vw, 68px);
  border-bottom: 1px solid rgba(228, 196, 134, 0.2);
  color: #fff7e8;
  background: linear-gradient(180deg, rgba(24, 21, 16, 0.88), rgba(24, 21, 16, 0.58));
  backdrop-filter: blur(18px);
  transition: background 240ms ease, min-height 240ms ease, box-shadow 240ms ease;
}

.site-header.is-scrolled {
  min-height: 66px;
  background: rgba(24, 21, 16, 0.94);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.22);
}

.brand-mark {
  position: relative;
  width: 190px;
  height: 56px;
  flex: 0 0 190px;
  overflow: hidden;
}

.brand-mark img {
  position: absolute;
  left: 0;
  top: -40px;
  width: 190px;
  max-width: none;
  filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.22));
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-left: auto;
  color: rgba(255, 248, 230, 0.82);
  font-size: 14px;
  font-weight: 600;
}

.nav-links a {
  padding: 8px 0;
}

.nav-links a:hover {
  color: var(--gold-soft);
}

.nav-action,
.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 22px;
  border: 1px solid rgba(228, 196, 134, 0.72);
  border-radius: 999px;
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  isolation: isolate;
  transform: translateZ(0);
  transition: transform 240ms ease, border-color 240ms ease, background 240ms ease, box-shadow 240ms ease;
}

.nav-action,
.button,
.route-pills span,
.editorial-card b {
  position: relative;
  border: 1px solid rgba(255, 226, 156, 0.92);
  color: #1c140d;
  background:
    radial-gradient(circle at 26% 18%, rgba(255, 248, 220, 0.72), transparent 32%),
    linear-gradient(135deg, #f6dc8c 0%, #d8ad58 46%, #b98532 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.62),
    inset 0 -1px 0 rgba(116, 74, 24, 0.2),
    0 16px 34px rgba(199, 154, 77, 0.24);
  font-family: var(--serif);
  font-weight: 800;
  letter-spacing: 0.02em;
  isolation: isolate;
  overflow: hidden;
  animation: buttonGlow 5.6s ease-in-out infinite;
}

.nav-action::before,
.button::before,
.route-pills span::before,
.editorial-card b::before {
  content: "";
  position: absolute;
  inset: 3px;
  z-index: -1;
  border: 1px solid rgba(255, 246, 214, 0.58);
  border-radius: inherit;
  pointer-events: none;
}

.nav-action::after,
.button::after,
.route-pills span::after,
.editorial-card b::after {
  content: "";
  position: absolute;
  inset: -48% auto -48% -74%;
  z-index: 0;
  width: 46%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.34), transparent);
  transform: skewX(-18deg);
  transition: transform 780ms ease;
  animation: buttonSweep 5.8s ease-in-out infinite;
  pointer-events: none;
}

.nav-action {
  color: #21170f;
  min-height: 38px;
  padding: 0 18px;
  font-size: 13px;
  letter-spacing: 0.04em;
  animation: none;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.52),
    inset 0 -1px 0 rgba(116, 74, 24, 0.16),
    0 10px 24px rgba(199, 154, 77, 0.18);
}

.button:hover,
.nav-action:hover,
.route-pills span:hover,
.editorial-card b:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 239, 190, 0.98);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.72),
    inset 0 -1px 0 rgba(116, 74, 24, 0.22),
    0 20px 44px rgba(199, 154, 77, 0.32);
}

.button:hover::after,
.nav-action:hover::after,
.route-pills span:hover::after,
.editorial-card b:hover::after {
  transform: translateX(440%) skewX(-18deg);
}

.button.primary {
  color: #21170f;
}

.button.ghost {
  color: #21170f;
}

.button.text {
  min-height: 44px;
  padding: 0 22px;
  border-radius: 999px;
  color: #21170f;
}

.section-dark {
  color: #fff8ea;
  background: var(--deep);
}

.section-ivory {
  background: linear-gradient(135deg, #fffaf0, #ead5b2);
}

.section-light {
  background: #fffaf0;
}

.hero {
  position: relative;
  --hero-progress: 0;
  --hero-x: 0px;
  --hero-y: 0px;
  min-height: 100vh;
  display: grid;
  align-items: center;
  padding: 118px clamp(20px, 6vw, 92px) 42px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.34;
  background:
    linear-gradient(112deg, transparent 0 34%, rgba(255, 232, 176, 0.16) 48%, transparent 62%),
    linear-gradient(180deg, transparent 0%, rgba(228, 196, 134, 0.08) 100%);
  mix-blend-mode: screen;
  transform: translateX(-12%);
  animation: champagneSweep 18s ease-in-out infinite alternate;
  pointer-events: none;
}

.hero::after {
  content: "GUANGHUAN";
  position: absolute;
  left: clamp(18px, 4vw, 58px);
  bottom: 10vh;
  z-index: 1;
  color: rgba(255, 248, 230, 0.045);
  font-family: var(--latin);
  font-size: clamp(96px, 18vw, 260px);
  font-weight: 700;
  letter-spacing: 0.04em;
  pointer-events: none;
}

.hero-bg,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-bg {
  background-image: url("./assets/store-real-4.jpg");
  background-position: 58% center;
  background-size: cover;
  filter: saturate(0.88) contrast(1.1) brightness(0.96) sepia(0.1);
  transform: scale(calc(1.05 + var(--hero-progress) * 0.035)) translate3d(var(--hero-x), calc(var(--hero-progress) * 18px + var(--hero-y)), 0);
  animation: heroBreath 26s ease-in-out infinite alternate;
  will-change: transform;
}

.hero-shade {
  background:
    linear-gradient(118deg, rgba(255, 244, 214, 0.22), transparent 28%),
    linear-gradient(90deg, rgba(20, 15, 10, 0.9), rgba(20, 15, 10, 0.68) 43%, rgba(20, 15, 10, 0.24) 100%),
    linear-gradient(180deg, rgba(20, 15, 10, 0.24), rgba(20, 15, 10, 0.62));
}

.hero-shade::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.12;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 3px 3px;
  mix-blend-mode: soft-light;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1180px;
  transform: none;
  transition: none;
  will-change: auto;
}

.hero-inner::after {
  content: "";
  display: block;
  width: min(540px, 62vw);
  height: 1px;
  margin-top: 24px;
  background: linear-gradient(90deg, rgba(228, 196, 134, 0.95), transparent);
  transform-origin: left;
  animation: none;
}

.eyebrow,
.section-kicker {
  margin: 0 0 18px;
  color: var(--gold-soft);
  font-family: var(--latin);
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-logo-mark {
  position: relative;
  width: clamp(250px, 26vw, 390px);
  display: none;
  margin: 0 0 18px;
  overflow: hidden;
  isolation: isolate;
}

.hero-logo-mark::before {
  content: "";
  position: absolute;
  inset: -28%;
  z-index: 1;
  background: linear-gradient(118deg, transparent 0 42%, rgba(255, 246, 214, 0.74) 49%, transparent 56%);
  mix-blend-mode: screen;
  opacity: 0;
  transform: translateX(-68%) skewX(-12deg);
  animation: logoSheen 5.8s cubic-bezier(0.19, 1, 0.22, 1) infinite;
  pointer-events: none;
}

.hero-logo-mark::after {
  content: "";
  position: absolute;
  left: 13%;
  top: 15%;
  z-index: 2;
  width: 24px;
  height: 24px;
  background: linear-gradient(135deg, #fff6d6, #d9a94d);
  clip-path: polygon(50% 0, 58% 42%, 100% 50%, 58% 58%, 50% 100%, 42% 58%, 0 50%, 42% 42%);
  filter: drop-shadow(0 0 12px rgba(228, 196, 134, 0.72));
  opacity: 0;
  transform: scale(0.58);
  animation: logoGlint 5.8s ease-in-out infinite;
  pointer-events: none;
}

.hero-logo {
  width: 100%;
  display: block;
  margin: 0;
  filter: drop-shadow(0 18px 36px rgba(0, 0, 0, 0.3));
  animation: logoPrestige 8.5s ease-in-out infinite;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.14;
}

h1 {
  max-width: none;
  color: #fff8ea;
  font-size: clamp(46px, 4.8vw, 70px);
  text-shadow: 0 18px 42px rgba(0, 0, 0, 0.34);
}

.hero-inner h1 {
  animation: none;
  will-change: auto;
  white-space: nowrap;
}

.hero-inner h1,
.hero-slogan {
  word-break: keep-all;
  overflow-wrap: normal;
}

.hero-inner h1 span {
  display: inline-block;
}

.hero-slogan span {
  display: block;
}

.hero-title-gap {
  margin-left: clamp(18px, 3vw, 44px);
}

h2 {
  color: var(--ink);
  font-size: clamp(34px, 4.8vw, 64px);
}

.section-dark h2,
.section-dark h3 {
  color: #fff8ea;
}

h3 {
  font-size: clamp(23px, 2.2vw, 32px);
}

p {
  margin: 14px 0 0;
}

.hero-copy {
  max-width: 720px;
  color: rgba(255, 248, 230, 0.9);
  font-size: clamp(17px, 1.45vw, 21px);
  line-height: 1.82;
  overflow-wrap: anywhere;
}

.hero-copy span {
  display: block;
}

.hero-slogan {
  color: #fff8ea;
  font-family: var(--serif);
  font-size: clamp(28px, 3.2vw, 48px);
  font-weight: 700;
  line-height: 1.36;
  animation: none;
  will-change: auto;
}

.hero-brief {
  max-width: 640px;
  color: rgba(255, 248, 230, 0.78);
  font-size: clamp(17px, 1.35vw, 20px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-top: 26px;
  perspective: 900px;
}

.hero-actions .button,
.hero-actions .button.ghost,
.hero-actions .button.text {
  width: 188px;
  min-height: 54px;
  padding: 0 28px;
  border: 1px solid rgba(255, 226, 156, 0.92);
  border-radius: 999px;
  color: #21170f;
  background:
    radial-gradient(circle at 26% 18%, rgba(255, 248, 220, 0.72), transparent 32%),
    linear-gradient(135deg, #f6dc8c 0%, #d8ad58 46%, #b98532 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.62),
    inset 0 -1px 0 rgba(116, 74, 24, 0.2),
    0 16px 34px rgba(199, 154, 77, 0.24);
  font-weight: 800;
  animation: buttonGlow 8s ease-in-out infinite;
  will-change: transform;
}

.hero-actions .button.ghost {
  color: #fff8ea;
  background: rgba(24, 21, 16, 0.18);
  border-color: rgba(255, 236, 188, 0.78);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 14px 32px rgba(0, 0, 0, 0.18);
  animation: none;
}

.hero-actions .button:nth-child(1) {
  animation-delay: 0ms;
}

.hero-actions .button:nth-child(2) {
  animation-delay: 140ms;
}

.hero-actions .button:nth-child(3) {
  animation-delay: 280ms;
}

.hero-actions .button.text {
  display: inline-flex;
}

.hero-proof {
  position: relative;
  z-index: 2;
  align-self: end;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 70px;
  border: 1px solid rgba(228, 196, 134, 0.28);
  background: rgba(228, 196, 134, 0.22);
}

.hero-proof span {
  min-height: 72px;
  display: grid;
  place-items: center;
  padding: 14px;
  text-align: center;
  color: rgba(255, 248, 230, 0.88);
  background: rgba(20, 15, 10, 0.56);
  font-weight: 700;
  transition: color 260ms ease, background 260ms ease;
}

.hero-proof span:hover {
  color: #21170f;
  background: rgba(228, 196, 134, 0.86);
}

.kinetic-strip {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  display: flex;
  gap: 42px;
  padding: 12px 0;
  overflow: hidden;
  border-top: 1px solid rgba(228, 196, 134, 0.18);
  color: rgba(255, 248, 230, 0.34);
  background: rgba(24, 21, 16, 0.38);
  font-family: var(--latin);
  font-size: clamp(14px, 1.6vw, 22px);
  letter-spacing: 0.2em;
  white-space: nowrap;
}

.kinetic-strip span {
  animation: stripMove 14s linear infinite;
}

.brand-line,
.standards,
.standard,
.capability,
.membership,
.mini-program,
.retail,
.ecosystem,
.service,
.partners,
.cooperation-paths,
.contact {
  padding: clamp(78px, 9vw, 138px) clamp(20px, 5vw, 82px);
}

.brand-line {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.25fr);
  gap: clamp(34px, 6vw, 88px);
  align-items: end;
}

.brand-line-inner,
.section-heading,
.split,
.capability-inner,
.mini-layout,
.service-grid,
.contact-panel {
  max-width: 1240px;
  margin: 0 auto;
}

.brand-line-inner p:last-child,
.section-heading p,
.standards .section-heading p,
.split-copy p,
.capability-copy p,
.mini-layout p,
.service-copy p,
.contact-panel p {
  color: #625646;
  font-size: clamp(17px, 1.4vw, 20px);
}

.standard-promise {
  align-items: center;
  min-height: auto;
  padding-top: clamp(54px, 6vw, 88px);
  padding-bottom: clamp(50px, 6vw, 82px);
}

.standard-promise .brand-line-inner {
  max-width: 740px;
}

.standard-promise .brand-principles article {
  min-height: 178px;
}

.standards {
  position: relative;
  overflow: hidden;
}

.standards::before {
  content: "TEN STANDARDS";
  position: absolute;
  right: -2vw;
  top: 52px;
  color: rgba(202, 160, 90, 0.075);
  font-family: var(--latin);
  font-size: clamp(56px, 11vw, 160px);
  font-weight: 700;
  letter-spacing: 0.06em;
  white-space: nowrap;
  pointer-events: none;
}

.standards .section-heading .standards-tagline {
  display: inline-flex;
  align-items: center;
  gap: clamp(12px, 2vw, 26px);
  margin-top: 24px;
  color: #4e4437;
  font-family: var(--serif);
  font-size: clamp(18px, 1.7vw, 24px);
  font-weight: 700;
  letter-spacing: 0.1em;
}

.standards-tagline span {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 4px;
}

.standards-tagline span::before {
  content: "";
  width: 6px;
  height: 6px;
  margin-right: 12px;
  border-radius: 999px;
  background: var(--gold);
  box-shadow: 0 0 0 6px rgba(202, 160, 90, 0.12);
}

.standards-tagline i {
  display: block;
  width: clamp(34px, 5vw, 86px);
  height: 1px;
  background: linear-gradient(90deg, rgba(202, 160, 90, 0), rgba(202, 160, 90, 0.88), rgba(202, 160, 90, 0));
}

.standards-grid {
  position: relative;
  z-index: 1;
  max-width: 1240px;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin: 0 auto;
}

.standard-card {
  position: relative;
  overflow: hidden;
  min-height: 220px;
  padding: 24px 22px;
  border: 1px solid rgba(202, 160, 90, 0.3);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.78), rgba(234, 213, 178, 0.34));
  box-shadow: 0 18px 48px rgba(65, 42, 18, 0.08);
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 580ms ease, transform 580ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.standard-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, rgba(202, 160, 90, 0), rgba(202, 160, 90, 0.9), rgba(202, 160, 90, 0));
  transform: translateX(-100%);
  transition: transform 760ms ease;
}

.standards-grid.is-visible .standard-card {
  opacity: 1;
  transform: translateY(0);
}

.standards-grid.is-visible .standard-card:nth-child(1) { transition-delay: 20ms; }
.standards-grid.is-visible .standard-card:nth-child(2) { transition-delay: 70ms; }
.standards-grid.is-visible .standard-card:nth-child(3) { transition-delay: 120ms; }
.standards-grid.is-visible .standard-card:nth-child(4) { transition-delay: 170ms; }
.standards-grid.is-visible .standard-card:nth-child(5) { transition-delay: 220ms; }
.standards-grid.is-visible .standard-card:nth-child(6) { transition-delay: 270ms; }
.standards-grid.is-visible .standard-card:nth-child(7) { transition-delay: 320ms; }
.standards-grid.is-visible .standard-card:nth-child(8) { transition-delay: 370ms; }
.standards-grid.is-visible .standard-card:nth-child(9) { transition-delay: 420ms; }
.standards-grid.is-visible .standard-card:nth-child(10) { transition-delay: 470ms; }

.standard-card:hover {
  border-color: rgba(202, 160, 90, 0.62);
  box-shadow: 0 24px 68px rgba(65, 42, 18, 0.14);
  transform: translateY(-4px);
}

.standard-card:hover::before {
  transform: translateX(100%);
}

.standard-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(202, 160, 90, 0.48);
  border-radius: 50%;
  color: var(--gold);
  font-family: var(--latin);
  font-weight: 700;
}

.standard-card h3 {
  margin-top: 24px;
  color: var(--ink);
  font-size: clamp(24px, 2vw, 30px);
  word-break: keep-all;
}

.standard-card p {
  margin-top: 12px;
  color: #625646;
  font-size: 15.5px;
  line-height: 1.68;
}

.standard-proof .capability-copy {
  max-width: 900px;
}

.standard-proof .data-wall article {
  min-height: 248px;
}

.standard-routes {
  display: grid;
  grid-template-columns: 1fr;
  max-width: 720px;
}

.standard-routes span {
  width: fit-content;
  border-radius: 8px;
}

.compact-proof article,
.compact-proof .daily-card {
  min-height: 250px;
}

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

.brand-principles article,
.standard-rail article,
.abc-table article,
.service-steps article,
.proof-grid article,
.qr-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 250, 240, 0.72);
  box-shadow: 0 20px 58px rgba(65, 42, 18, 0.08);
}

.brand-principles article {
  min-height: 210px;
  padding: 24px;
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 620ms ease, transform 620ms ease, border-color 260ms ease, box-shadow 260ms ease;
}

.brand-line.is-visible .brand-principles article {
  opacity: 1;
  transform: translateY(0);
}

.brand-line.is-visible .brand-principles article:nth-child(1) { transition-delay: 80ms; }
.brand-line.is-visible .brand-principles article:nth-child(2) { transition-delay: 180ms; }
.brand-line.is-visible .brand-principles article:nth-child(3) { transition-delay: 280ms; }

.brand-principles article:hover {
  border-color: rgba(202, 160, 90, 0.42);
  box-shadow: 0 24px 58px rgba(65, 42, 18, 0.12);
  transform: translateY(-3px);
}

.brand-principles span,
.service-steps span {
  color: var(--gold);
  font-family: var(--latin);
  font-weight: 700;
}

.brand-principles strong,
.qr-card strong,
.proof-grid strong {
  display: block;
  margin-top: 16px;
  font-family: var(--serif);
  font-size: 25px;
}

.section-heading {
  max-width: 920px;
  margin-bottom: 46px;
  text-align: center;
}

.standard {
  position: relative;
}

.standard::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(202, 160, 90, 0.08) 1px, transparent 1px),
    linear-gradient(180deg, rgba(202, 160, 90, 0.08) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, transparent, #000 20%, #000 80%, transparent);
  pointer-events: none;
}

.standard-rail {
  position: relative;
  max-width: 1240px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin: 0 auto;
}

.standard-rail article {
  min-height: 300px;
  padding: 28px;
}

.standard-rail span {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin-bottom: 30px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 28px;
}

.capability {
  position: relative;
  overflow: hidden;
}

.capability::before {
  content: "DATA / SERVICE / CITY / SUPPLY";
  position: absolute;
  right: -3vw;
  top: 8vh;
  color: rgba(255, 248, 230, 0.055);
  font-family: var(--latin);
  font-size: clamp(48px, 9vw, 130px);
  font-weight: 700;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.capability-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(28px, 5vw, 56px);
}

.capability-copy {
  max-width: 1240px;
}

.capability-copy h2 {
  max-width: none;
  font-size: clamp(36px, 4.2vw, 62px);
}

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

.data-wall article {
  min-height: 286px;
  padding: clamp(22px, 3vw, 32px);
  border: 1px solid rgba(228, 196, 134, 0.28);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(228, 196, 134, 0.06));
  transition: transform 260ms ease, border-color 260ms ease, background 260ms ease;
}

.data-wall article:hover {
  transform: translateY(-5px);
  border-color: rgba(228, 196, 134, 0.54);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.13), rgba(228, 196, 134, 0.12));
}

.data-number {
  display: inline-flex;
  align-items: baseline;
  color: var(--gold-soft);
  font-family: var(--latin);
  font-size: clamp(54px, 6vw, 96px);
  font-weight: 700;
  line-height: 0.9;
}

.data-number::after {
  content: "+";
  margin-left: 4px;
  font-size: 0.32em;
}

.data-wall article:nth-child(1) .data-number::after,
.data-wall article:nth-child(2) .data-number::after {
  content: "";
}

.data-wall strong {
  display: block;
  margin-top: 16px;
  color: #fff8ea;
  font-family: var(--serif);
  font-size: clamp(24px, 2vw, 30px);
  line-height: 1.2;
  word-break: keep-all;
}

.data-wall p {
  color: rgba(255, 248, 230, 0.74);
}

.city-line {
  position: relative;
  z-index: 1;
  max-width: 1240px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 34px auto 0;
}

.city-line div {
  padding: 22px 24px;
  border: 1px solid rgba(228, 196, 134, 0.24);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.city-line strong,
.city-line span {
  display: block;
}

.city-line strong {
  color: var(--gold-soft);
  font-family: var(--serif);
  font-size: 24px;
}

.city-line span {
  margin-top: 6px;
  color: rgba(255, 248, 230, 0.76);
}

.store-visit-layout {
  position: relative;
  z-index: 1;
  max-width: 1240px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.78fr);
  gap: clamp(26px, 4vw, 54px);
  align-items: center;
  margin: 36px auto 0;
  padding: clamp(20px, 3vw, 34px);
  border: 1px solid rgba(228, 196, 134, 0.24);
  border-radius: 8px;
  background:
    radial-gradient(circle at 88% 16%, rgba(228, 196, 134, 0.14), transparent 32%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.07), rgba(228, 196, 134, 0.06));
  box-shadow: 0 22px 72px rgba(0, 0, 0, 0.18);
}

.store-visit-copy h3 {
  max-width: 680px;
  color: #fff8ea;
  font-size: clamp(30px, 3.2vw, 46px);
  line-height: 1.18;
}

.store-visit-copy > p:not(.section-kicker) {
  max-width: 720px;
  color: rgba(255, 248, 230, 0.78);
  font-size: clamp(16px, 1.35vw, 19px);
  line-height: 1.75;
}

.store-visit-layout .city-line {
  max-width: none;
  grid-template-columns: 1fr;
  margin: 24px 0 0;
}

.store-visit-layout .city-line div {
  padding: 18px 20px;
}

.store-showcase {
  position: relative;
  z-index: 1;
  max-width: 520px;
  display: block;
  margin: 0;
}

.store-showcase figure {
  position: relative;
  min-height: 0;
  aspect-ratio: 4 / 3;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(228, 196, 134, 0.28);
  border-radius: 8px;
  background: #18120d;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
}

.store-showcase-main {
  min-height: 0;
}

.store-showcase img {
  width: 100%;
  height: 100%;
  min-height: 0;
  display: block;
  object-fit: cover;
  object-position: center top;
  filter: saturate(0.95) contrast(1.08) brightness(0.82);
  transform: scale(1.01);
  transition: transform 720ms ease, filter 720ms ease;
}

.store-map-image-link {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  color: inherit;
}

.store-map-image-link span {
  position: absolute;
  right: 24px;
  bottom: 24px;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid rgba(255, 226, 156, 0.92);
  border-radius: 999px;
  color: #21170f;
  background:
    radial-gradient(circle at 26% 18%, rgba(255, 248, 220, 0.72), transparent 32%),
    linear-gradient(135deg, #f6dc8c 0%, #d8ad58 46%, #b98532 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.62),
    inset 0 -1px 0 rgba(116, 74, 24, 0.2),
    0 16px 34px rgba(32, 21, 12, 0.24);
  font-family: var(--serif);
  font-weight: 800;
  letter-spacing: 0.02em;
  z-index: 2;
}

.store-showcase figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(17, 13, 9, 0.04), rgba(17, 13, 9, 0.36)),
    radial-gradient(circle at 18% 18%, rgba(232, 197, 125, 0.16), transparent 34%);
  pointer-events: none;
}

.store-showcase figcaption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 1;
  color: rgba(255, 248, 230, 0.78);
}

.store-showcase figcaption strong {
  display: block;
  color: var(--gold-soft);
  font-family: var(--serif);
  font-size: clamp(22px, 2vw, 30px);
}

.store-showcase figcaption span {
  display: block;
  margin-top: 6px;
  font-size: 14px;
  line-height: 1.55;
}

.store-showcase figure:hover img {
  transform: scale(1.055);
  filter: saturate(1.04) contrast(1.12) brightness(0.9);
}

.split,
.mini-layout,
.service-grid,
.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  gap: clamp(34px, 6vw, 82px);
  align-items: center;
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 32px;
}

.metric-row div {
  padding: 20px 18px;
  border: 1px solid rgba(228, 196, 134, 0.3);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.metric-row strong {
  display: block;
  color: var(--gold-soft);
  font-family: var(--latin);
  font-size: clamp(30px, 3vw, 44px);
  line-height: 1;
}

.metric-row span {
  display: block;
  margin-top: 10px;
  color: rgba(255, 248, 230, 0.78);
  font-size: 14px;
}

.membership-type {
  margin: 0;
  padding: clamp(28px, 5vw, 58px);
  border: 1px solid rgba(228, 196, 134, 0.26);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(228, 196, 134, 0.11)),
    linear-gradient(90deg, rgba(228, 196, 134, 0.12) 1px, transparent 1px);
  background-size: auto, 32px 100%;
  box-shadow: var(--shadow);
}

.type-number {
  display: block;
  color: var(--gold-soft);
  font-family: var(--latin);
  font-size: clamp(112px, 14vw, 210px);
  font-weight: 700;
  line-height: 0.86;
}

.type-label {
  display: block;
  margin-top: 20px;
  color: #fff8ea;
  font-family: var(--serif);
  font-size: clamp(28px, 3.4vw, 48px);
  font-weight: 700;
}

.membership-type p {
  max-width: 560px;
  color: rgba(255, 248, 230, 0.78);
  font-size: clamp(17px, 1.4vw, 20px);
}

.mini-program {
  color: #fff8ea;
  background:
    radial-gradient(circle at 72% 12%, rgba(232, 197, 125, 0.2), transparent 30%),
    linear-gradient(135deg, #13100c, #2a2118 48%, #12100d);
}

.mini-layout {
  max-width: 1240px;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  gap: clamp(30px, 5vw, 68px);
  margin: 0 auto;
}

.mini-layout .section-kicker {
  color: var(--gold-soft);
}

.mini-layout h2 {
  color: #fff8ea;
  line-height: 1.08;
  font-size: clamp(42px, 4.4vw, 62px);
}

.mini-layout h2 span {
  display: block;
}

.member-intro {
  max-width: 560px;
  color: rgba(255, 250, 238, 0.96);
  font-size: clamp(17px, 1.35vw, 20px);
  font-weight: 600;
  line-height: 1.7;
}

.member-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button.ivory {
  color: #21170f;
}

.route-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.route-pills span {
  padding: 9px 15px;
  border: 1px solid rgba(228, 196, 134, 0.44);
  border-radius: 999px;
  color: rgba(255, 248, 230, 0.88);
  background: rgba(255, 248, 230, 0.07);
  box-shadow: none;
  font-family: var(--sans);
  font-weight: 700;
  letter-spacing: 0;
  animation: none;
}

.route-pills span::before,
.route-pills span::after {
  display: none;
}

.route-pills span:hover {
  transform: none;
  border-color: rgba(228, 196, 134, 0.64);
  box-shadow: none;
}

.member-benefit-link {
  position: relative;
  min-height: 60px;
  display: inline-grid;
  align-content: center;
  gap: 3px;
  padding: 10px 22px;
  border: 1px solid rgba(247, 217, 146, 0.58);
  border-radius: 999px;
  color: #17120d;
  background: linear-gradient(135deg, #f5d77b, #c7963e 58%, #f4df9a);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.52);
  overflow: hidden;
}

.member-benefit-link::after {
  content: "";
  position: absolute;
  inset: -80% auto -80% -40%;
  width: 34%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.55), transparent);
  transform: skewX(-18deg);
  animation: glint 4.8s ease-in-out infinite;
}

.member-benefit-link span,
.member-benefit-link strong {
  position: relative;
  z-index: 1;
}

.member-benefit-link span {
  font-weight: 900;
}

.member-benefit-link strong {
  font-size: 13px;
  font-weight: 800;
}

.qr-card {
  padding: clamp(22px, 4vw, 40px);
  text-align: center;
  background: rgba(255, 255, 255, 0.72);
}

.qr-card img {
  width: min(100%, 300px);
  margin: 0 auto 22px;
  border: 1px solid rgba(202, 160, 90, 0.28);
  border-radius: 8px;
  background: #fff;
}

.member-entry-anchor {
  display: block;
  height: 0;
  scroll-margin-top: 112px;
}

.member-entry-card {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  align-items: center;
  gap: 18px;
  max-width: 640px;
  margin-top: 30px;
  padding: 16px;
  border: 1px solid rgba(228, 196, 134, 0.42);
  border-radius: 8px;
  color: #fff8ea;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(228, 196, 134, 0.1));
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.2);
  scroll-margin-top: 112px;
}

.member-entry-card img {
  width: 180px;
  height: auto;
  padding: 10px;
  border-radius: 8px;
  background: #fff;
}

.member-entry-copy span {
  color: var(--gold-soft);
  font-family: var(--latin);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.member-entry-copy strong {
  display: block;
  margin-top: 6px;
  max-width: 12em;
  color: #fff8ea;
  font-family: var(--serif);
  font-size: clamp(22px, 2.1vw, 30px);
  line-height: 1.2;
}

.member-entry-copy p {
  margin-top: 8px;
  color: rgba(255, 248, 230, 0.78);
  font-size: 15px;
  line-height: 1.55;
}

.member-card-stage {
  position: relative;
  min-height: 430px;
  padding: 22px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background:
    radial-gradient(circle at 82% 10%, rgba(232, 197, 125, 0.32), transparent 34%),
    radial-gradient(circle at 18% 86%, rgba(255, 255, 255, 0.08), transparent 28%),
    linear-gradient(145deg, #17140f, #2a2118 54%, #11100d);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.member-card-stage::before {
  content: none;
}

.member-card-art {
  width: min(100%, 760px);
  height: auto;
  min-height: 0;
  display: block;
  object-fit: contain;
  object-position: center;
  filter: saturate(1.08) contrast(1.08) brightness(1.08);
  transform: translateY(0);
  transition: transform 900ms ease, filter 900ms ease;
}

.member-card-stage:hover .member-card-art {
  transform: translateY(-4px);
  filter: saturate(1.1) contrast(1.08) brightness(1.12);
}

.black-member-card {
  position: absolute;
  display: grid;
  align-content: center;
  border: 1px solid rgba(232, 190, 112, 0.82);
  border-radius: 18px;
  color: #e5c077;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.05), transparent 34%),
    radial-gradient(circle at 18% 18%, rgba(255, 235, 182, 0.12), transparent 28%),
    #151411;
  box-shadow: 0 24px 58px rgba(0, 0, 0, 0.34), inset 0 0 0 1px rgba(255, 255, 255, 0.05);
  overflow: hidden;
}

.black-member-card::after {
  content: "";
  position: absolute;
  inset: -60% auto -60% -80%;
  width: 42%;
  background: linear-gradient(90deg, transparent, rgba(255, 230, 162, 0.26), transparent);
  transform: skewX(-16deg);
  animation: cardSheen 5.6s ease-in-out infinite;
}

.card-back {
  top: 58px;
  right: 26px;
  width: min(82%, 390px);
  height: 158px;
  padding: 30px 40px;
  transform: rotate(4deg);
}

.card-back span,
.card-back strong {
  position: relative;
  z-index: 1;
  display: block;
  font-family: var(--serif);
  font-size: clamp(18px, 2vw, 28px);
  font-weight: 700;
  letter-spacing: 0.08em;
}

.card-back i {
  position: relative;
  z-index: 1;
  display: block;
  width: 64%;
  height: 1px;
  margin: 18px 0;
  background: linear-gradient(90deg, rgba(229, 192, 119, 0.85), transparent);
}

.card-front {
  left: 26px;
  right: 24px;
  bottom: 74px;
  min-height: 178px;
  grid-template-columns: 84px minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 28px 34px;
  transform: rotate(-3deg);
}

.card-front img {
  width: 82px;
  filter: brightness(1.08) contrast(1.05);
}

.card-front strong {
  display: block;
  color: #e8c57d;
  font-family: var(--serif);
  font-size: clamp(24px, 2.3vw, 34px);
  line-height: 1.12;
}

.card-front small {
  display: block;
  margin-top: 6px;
  color: rgba(232, 197, 125, 0.78);
  font-family: var(--latin);
  font-size: 11px;
  letter-spacing: 0.1em;
}

.card-front b {
  padding-left: 18px;
  border-left: 1px solid rgba(232, 197, 125, 0.62);
  color: #e8c57d;
  font-family: var(--latin);
  font-size: clamp(28px, 3.2vw, 48px);
  letter-spacing: 0.04em;
}

.member-card-benefits {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  z-index: 2;
}

.member-card-benefits span {
  padding: 7px 11px;
  border: 1px solid rgba(232, 197, 125, 0.36);
  border-radius: 999px;
  color: rgba(255, 248, 230, 0.84);
  background: rgba(255, 255, 255, 0.06);
  font-size: 13px;
  font-weight: 700;
}

.member-benefits-panel {
  position: relative;
  max-width: 1240px;
  display: grid;
  grid-template-columns: minmax(300px, 0.3fr) minmax(0, 1fr);
  gap: clamp(22px, 3vw, 34px);
  margin: clamp(28px, 5vw, 54px) auto 0;
  padding: clamp(24px, 4vw, 40px);
  scroll-margin-top: 132px;
  border: 1px solid rgba(232, 197, 125, 0.28);
  border-radius: 8px;
  background:
    linear-gradient(112deg, transparent 0 34%, rgba(255, 235, 174, 0.08) 44%, transparent 56%),
    radial-gradient(circle at 12% 8%, rgba(232, 197, 125, 0.22), transparent 28%),
    radial-gradient(circle at 86% 16%, rgba(255, 248, 220, 0.1), transparent 24%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.055), rgba(228, 196, 134, 0.07)),
    linear-gradient(160deg, #17130f 0%, #30261b 46%, #19140f 100%);
  background-size: auto;
  box-shadow:
    inset 0 1px 0 rgba(255, 246, 214, 0.08),
    0 26px 78px rgba(0, 0, 0, 0.18);
  overflow: hidden;
}

.member-benefits-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, transparent 0 32%, rgba(255, 237, 184, 0.08) 40%, transparent 52%),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.012) 0 1px, transparent 1px 28px);
  opacity: 0.58;
  pointer-events: none;
}

.member-benefits-panel::after {
  content: "";
  position: absolute;
  inset: 1px;
  border: 1px solid rgba(255, 246, 214, 0.08);
  border-radius: 7px;
  pointer-events: none;
}

.benefit-heading,
.benefit-list {
  position: relative;
  z-index: 1;
}

.benefit-heading span {
  color: var(--gold-soft);
  font-family: var(--latin);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.benefit-heading strong {
  display: block;
  margin-top: 18px;
  color: #fff8ea;
  font-family: var(--serif);
  font-size: clamp(38px, 3.5vw, 54px);
  line-height: 1.14;
  white-space: nowrap;
  text-shadow: 0 16px 34px rgba(0, 0, 0, 0.28);
}

.benefit-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: benefit;
}

.benefit-list li {
  position: relative;
  min-height: 112px;
  padding: 18px 18px 18px 66px;
  border: 1px solid rgba(232, 197, 125, 0.18);
  border-radius: 8px;
  color: rgba(255, 248, 230, 0.78);
  background:
    radial-gradient(circle at 92% 16%, rgba(232, 197, 125, 0.16), transparent 32%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 250, 240, 0.035));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.045);
  font-size: 14.5px;
  line-height: 1.55;
  opacity: 0;
  transform: translateY(18px);
  overflow: hidden;
  transition: opacity 620ms ease, transform 620ms ease, border-color 260ms ease, box-shadow 260ms ease, background 260ms ease;
}

.benefit-list li::after {
  content: "";
  position: absolute;
  inset: -60% auto -60% -78%;
  width: 40%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.55), transparent);
  transform: skewX(-18deg);
  transition: transform 860ms ease;
}

.benefit-list li::before {
  counter-increment: benefit;
  content: counter(benefit, decimal-leading-zero);
  position: absolute;
  left: 18px;
  top: 18px;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(176, 122, 47, 0.32);
  border-radius: 50%;
  color: #f1d385;
  background: rgba(255, 255, 255, 0.06);
  font-family: var(--latin);
  font-weight: 800;
  font-size: 12px;
}

.benefit-list strong {
  display: block;
  color: #fff8ea;
  font-family: var(--serif);
  font-size: 21px;
  line-height: 1.2;
}

.benefit-list span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 248, 230, 0.7);
}

.member-benefits-panel.is-visible .benefit-list li {
  opacity: 1;
  transform: translateY(0);
}

.member-benefits-panel.is-visible .benefit-list li:nth-child(1) { transition-delay: 40ms; }
.member-benefits-panel.is-visible .benefit-list li:nth-child(2) { transition-delay: 90ms; }
.member-benefits-panel.is-visible .benefit-list li:nth-child(3) { transition-delay: 140ms; }
.member-benefits-panel.is-visible .benefit-list li:nth-child(4) { transition-delay: 190ms; }
.member-benefits-panel.is-visible .benefit-list li:nth-child(5) { transition-delay: 240ms; }
.member-benefits-panel.is-visible .benefit-list li:nth-child(6) { transition-delay: 290ms; }
.member-benefits-panel.is-visible .benefit-list li:nth-child(7) { transition-delay: 340ms; }
.member-benefits-panel.is-visible .benefit-list li:nth-child(8) { transition-delay: 390ms; }
.member-benefits-panel.is-visible .benefit-list li:nth-child(9) { transition-delay: 440ms; }
.member-benefits-panel.is-visible .benefit-list li:nth-child(10) { transition-delay: 490ms; }

.benefit-list li:hover {
  border-color: rgba(232, 197, 125, 0.44);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.13), rgba(255, 250, 240, 0.06)),
    radial-gradient(circle at 96% 12%, rgba(202, 160, 90, 0.28), transparent 30%);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.18);
  transform: translateY(-3px);
}

.benefit-list li:hover::after {
  transform: translateX(520%) skewX(-18deg);
}

.retail-editorial {
  max-width: 1240px;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.75fr);
  gap: 16px;
  margin: 0 auto;
}

.retail-editorial figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: #241b14;
}

.retail-editorial img {
  width: 100%;
  height: min(68vh, 620px);
  object-fit: cover;
  filter: saturate(0.92) contrast(1.08);
  transition: transform 500ms ease;
}

.retail-editorial figure:hover img {
  transform: scale(1.035);
}

.retail-copywall {
  display: grid;
  align-content: center;
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid rgba(202, 160, 90, 0.28);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(255, 250, 240, 0.86), rgba(234, 213, 178, 0.4));
}

.retail-copywall span {
  display: block;
  padding: 14px 0;
  border-bottom: 1px solid rgba(202, 160, 90, 0.24);
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(34px, 4vw, 56px);
  font-weight: 700;
}

.retail-copywall p {
  margin-top: 28px;
  color: #625646;
  font-size: clamp(17px, 1.4vw, 20px);
}

.abc-table {
  max-width: 1240px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 0 auto;
}

.abc-table article {
  display: flex;
  min-height: 330px;
  flex-direction: column;
  padding: 30px;
  color: rgba(255, 248, 230, 0.82);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(228, 196, 134, 0.06));
}

.abc-table strong {
  color: #fff8ea;
  font-family: var(--serif);
  font-size: 30px;
}

.abc-table a {
  width: fit-content;
  margin-top: auto;
  padding: 9px 15px;
  border: 1px solid rgba(228, 196, 134, 0.48);
  border-radius: 999px;
  color: var(--gold-soft);
  font-weight: 700;
}

.service-steps {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.service-steps article {
  min-height: 205px;
  padding: 24px;
}

.service-steps strong {
  display: block;
  margin-top: 12px;
  font-family: var(--serif);
  font-size: 24px;
}

.service-copy h2 span {
  display: block;
}

.service-photo {
  margin: 0;
  aspect-ratio: 5 / 4;
  overflow: hidden;
  border: 1px solid rgba(202, 160, 90, 0.26);
  border-radius: 8px;
  background: #18120d;
  box-shadow: var(--shadow);
}

.service-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.96) contrast(1.04) brightness(0.94);
}

.conversion-paths {
  max-width: 1240px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: clamp(28px, 4vw, 54px) auto 0;
}

.conversion-paths article {
  min-height: 238px;
  display: flex;
  flex-direction: column;
  padding: clamp(22px, 2.8vw, 32px);
  border: 1px solid rgba(202, 160, 90, 0.28);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(255, 250, 240, 0.56)),
    radial-gradient(circle at 88% 14%, rgba(202, 160, 90, 0.16), transparent 32%);
  box-shadow: 0 22px 58px rgba(52, 40, 29, 0.08);
}

.conversion-paths span {
  color: var(--gold);
  font-family: var(--latin);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.conversion-paths strong {
  display: block;
  margin-top: 14px;
  color: #2a2118;
  font-family: var(--serif);
  font-size: clamp(23px, 2.2vw, 30px);
  line-height: 1.25;
}

.conversion-paths p {
  margin-top: 14px;
  color: #625646;
  font-size: 16px;
  line-height: 1.72;
}

.conversion-paths a {
  width: fit-content;
  margin-top: auto;
  padding-top: 14px;
  color: #7d5a25;
  font-weight: 800;
}

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

.co-creation-showcase {
  max-width: 1240px;
  margin: 0 auto 22px;
  padding: clamp(12px, 2vw, 20px);
  border: 1px solid rgba(202, 160, 90, 0.26);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.86), rgba(234, 213, 178, 0.42));
  box-shadow: var(--shadow);
}

.co-creation-showcase img {
  width: 100%;
  border-radius: 6px;
}

.partner-badges {
  max-width: 1240px;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
  margin: 0 auto 22px;
}

.partner-badges span {
  display: grid;
  min-height: 42px;
  place-items: center;
  padding: 8px 10px;
  border: 1px solid rgba(202, 160, 90, 0.28);
  border-radius: 8px;
  color: #5c4630;
  background: rgba(255, 250, 240, 0.7);
  font-weight: 700;
  text-align: center;
  line-height: 1.35;
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.partner-badges span:hover {
  transform: translateY(-3px);
  border-color: rgba(202, 160, 90, 0.56);
  background: rgba(255, 255, 255, 0.82);
}

.co-create-tagline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: clamp(10px, 1.8vw, 18px);
  margin-top: 22px;
  margin-left: auto;
  margin-right: auto;
  padding: 8px 16px;
  border-top: 1px solid rgba(202, 160, 90, 0.26);
  border-bottom: 1px solid rgba(202, 160, 90, 0.26);
  color: #5b4937;
  font-family: var(--serif);
  font-size: clamp(17px, 1.45vw, 22px);
  font-weight: 700;
  letter-spacing: 0.08em;
}

.co-create-tagline span {
  position: relative;
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}

.co-create-tagline span + span::before {
  content: "";
  width: 4px;
  height: 4px;
  margin-right: clamp(10px, 1.6vw, 18px);
  border-radius: 50%;
  background: #b99155;
  box-shadow: 0 0 0 5px rgba(202, 160, 90, 0.1);
}

.co-create-lead {
  position: relative;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 28px;
  padding-top: 28px;
  color: #5b5145;
  font-family: var(--serif);
  font-size: clamp(18px, 1.55vw, 24px);
  font-weight: 600;
  line-height: 1.9;
  letter-spacing: 0.02em;
}

.co-create-lead::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: min(180px, 32vw);
  height: 1px;
  background: linear-gradient(90deg, rgba(202, 160, 90, 0), rgba(202, 160, 90, 0.72), rgba(202, 160, 90, 0));
  transform: translateX(-50%);
}

.co-create-lead span {
  display: block;
}

.co-create-hero-image {
  position: relative;
  max-width: 1240px;
  margin: 0 auto 22px;
  overflow: hidden;
  border: 1px solid rgba(202, 160, 90, 0.26);
  border-radius: 8px;
  background: #efe3cf;
  box-shadow: 0 24px 60px rgba(65, 42, 18, 0.1);
}

.co-create-hero-image img {
  width: 100%;
  max-height: 520px;
  display: block;
  object-fit: cover;
  object-position: center 24%;
  filter: saturate(0.98) contrast(1.02);
}

.co-create-hero-image figcaption {
  position: absolute;
  left: 18px;
  bottom: 18px;
  padding: 8px 14px;
  border: 1px solid rgba(202, 160, 90, 0.34);
  border-radius: 999px;
  color: #5d3f20;
  background: rgba(255, 250, 240, 0.78);
  backdrop-filter: blur(10px);
  font-size: 13px;
  font-weight: 800;
}

.co-create-program {
  max-width: 1240px;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.72fr);
  gap: 18px;
  margin: 0 auto 22px;
}

.co-create-copy,
.solution-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(202, 160, 90, 0.24);
  border-radius: 8px;
  background:
    radial-gradient(circle at 92% 10%, rgba(255, 255, 255, 0.72), transparent 28%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.78), rgba(234, 213, 178, 0.44));
  box-shadow: 0 20px 58px rgba(65, 42, 18, 0.08);
}

.co-create-copy {
  padding: clamp(24px, 4vw, 42px);
}

.co-create-copy span,
.gallery-heading span {
  color: #9a6a26;
  font-family: var(--latin);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.co-create-copy h3 {
  margin-top: 18px;
  color: var(--ink);
  font-size: clamp(28px, 3.1vw, 46px);
}

.co-create-copy p {
  max-width: 720px;
  color: #5f5140;
  font-size: 17px;
  line-height: 1.75;
}

.co-create-values {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 26px;
}

.co-create-values strong {
  min-height: 92px;
  display: grid;
  align-content: center;
  justify-items: center;
  padding: 14px 10px;
  border: 1px solid rgba(202, 160, 90, 0.22);
  border-radius: 8px;
  color: #5b3e21;
  background: rgba(255, 250, 240, 0.58);
  font-family: var(--serif);
  font-size: 20px;
  text-align: center;
}

.co-create-values small {
  display: block;
  margin-top: 8px;
  color: #7c6b56;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 700;
}

.solution-card {
  padding: clamp(24px, 4vw, 38px);
}

.solution-card strong {
  display: block;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(26px, 2.7vw, 38px);
  text-align: center;
}

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

.solution-card span {
  min-height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(202, 160, 90, 0.26);
  border-radius: 8px;
  color: #4f3c28;
  background: rgba(255, 250, 240, 0.58);
  font-size: 14px;
  font-weight: 800;
}

.event-gallery {
  max-width: 1240px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 0 auto;
}

.gallery-heading {
  grid-column: span 2;
  min-height: 290px;
  display: grid;
  align-content: end;
  padding: 26px;
  border: 1px solid rgba(202, 160, 90, 0.24);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 250, 240, 0.16), rgba(255, 250, 240, 0.9)),
    url("./assets/co-creation-results-202605-web.jpg") center / cover;
  box-shadow: 0 18px 48px rgba(65, 42, 18, 0.08);
}

.gallery-heading strong {
  display: block;
  margin-top: 10px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(24px, 2.5vw, 36px);
  line-height: 1.18;
}

.event-gallery figure {
  position: relative;
  min-height: 172px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(202, 160, 90, 0.18);
  border-radius: 8px;
  background: #ead5b2;
  box-shadow: 0 14px 34px rgba(65, 42, 18, 0.08);
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 620ms ease, transform 620ms ease, box-shadow 260ms ease;
}

.event-gallery.is-visible figure {
  opacity: 1;
  transform: translateY(0);
}

.event-gallery.is-visible figure:nth-of-type(1) { transition-delay: 70ms; }
.event-gallery.is-visible figure:nth-of-type(2) { transition-delay: 120ms; }
.event-gallery.is-visible figure:nth-of-type(3) { transition-delay: 170ms; }
.event-gallery.is-visible figure:nth-of-type(4) { transition-delay: 220ms; }
.event-gallery.is-visible figure:nth-of-type(5) { transition-delay: 270ms; }
.event-gallery.is-visible figure:nth-of-type(6) { transition-delay: 320ms; }
.event-gallery.is-visible figure:nth-of-type(7) { transition-delay: 370ms; }
.event-gallery.is-visible figure:nth-of-type(8) { transition-delay: 420ms; }

.event-gallery figure:hover {
  box-shadow: 0 22px 54px rgba(65, 42, 18, 0.14);
  transform: translateY(-4px);
}

.event-gallery img {
  width: 100%;
  height: 100%;
  min-height: 172px;
  display: block;
  object-fit: cover;
  filter: saturate(0.96) contrast(1.04);
  transition: transform 560ms ease, filter 560ms ease;
}

.event-gallery figure:hover img {
  transform: scale(1.05);
  filter: saturate(1.04) contrast(1.06);
}

.event-gallery figcaption {
  position: absolute;
  left: 10px;
  bottom: 10px;
  padding: 5px 10px;
  border-radius: 999px;
  color: #fff8ea;
  background: rgba(31, 24, 16, 0.66);
  backdrop-filter: blur(10px);
  font-size: 12px;
  font-weight: 800;
}

.daily-card,
.proof-grid article {
  min-height: 290px;
}

.proof-grid .daily-card {
  grid-column: 1 / -1;
}

.daily-card {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background:
    radial-gradient(circle at 80% 12%, rgba(255, 255, 255, 0.9), transparent 28%),
    radial-gradient(circle at 16% 80%, rgba(255, 255, 255, 0.56), transparent 32%),
    linear-gradient(116deg, rgba(255, 250, 241, 0.99), rgba(239, 219, 185, 0.94));
  border: 1px solid rgba(202, 160, 90, 0.28);
  box-shadow: var(--shadow);
}

.daily-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, transparent 0 44%, rgba(255, 255, 255, 0.34) 46%, transparent 48%),
    linear-gradient(90deg, rgba(174, 111, 32, 0.08), transparent 30% 70%, rgba(174, 111, 32, 0.1));
  pointer-events: none;
}

.editorial-card {
  color: #2a2118;
}

.editorial-card em {
  color: #9a6a26;
  font-family: var(--latin);
  font-size: 13px;
  font-style: normal;
  letter-spacing: 0.16em;
}

.editorial-card strong {
  display: block;
  margin-top: 24px;
  color: #4a321b;
  font-family: var(--serif);
  font-size: clamp(46px, 5.4vw, 78px);
  font-weight: 700;
  line-height: 1.08;
}

.editorial-card p {
  color: rgba(56, 44, 31, 0.78);
  font-size: 18px;
  line-height: 1.7;
}

.media-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(250px, 0.58fr);
  align-items: center;
  gap: clamp(18px, 3vw, 34px);
  max-width: 1240px;
  margin: 28px auto 0;
  padding: clamp(32px, 5vw, 68px);
  color: #2a2118;
  background:
    radial-gradient(circle at 82% 18%, rgba(202, 160, 90, 0.2), transparent 32%),
    linear-gradient(135deg, rgba(255, 252, 244, 0.98), rgba(246, 230, 198, 0.96));
  box-shadow: 0 22px 70px rgba(65, 42, 18, 0.1);
}

.media-feature.reveal {
  opacity: 1;
  transform: none;
}

.media-feature-copy {
  position: relative;
  z-index: 1;
}

.media-feature-copy em {
  color: #9b6a2f;
}

.media-feature .media-feature-copy strong {
  color: #2a2118;
}

.media-feature .media-feature-copy strong span {
  display: inline-block;
}

.media-feature .media-feature-copy strong span + span {
  margin-left: 0.18em;
}

.media-feature .media-feature-copy .media-date {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 14px;
  width: fit-content;
  margin-top: 22px;
  padding: 8px 0 0;
  border-top: 1px solid rgba(154, 106, 38, 0.24);
  color: #6a5846;
  font-size: clamp(15px, 1.1vw, 17px);
  font-weight: 600;
  letter-spacing: 0.03em;
  line-height: 1.5;
}

.media-date span {
  display: inline-flex;
  align-items: center;
}

.media-date span + span::before {
  content: "";
  width: 4px;
  height: 4px;
  margin-right: 14px;
  border-radius: 999px;
  background: #b99155;
  box-shadow: 0 0 0 5px rgba(202, 160, 90, 0.11);
}

.editorial-card .media-tagline {
  position: relative;
  display: block;
  width: min(100%, 660px);
  max-width: 100%;
  margin-top: 26px;
  padding: 18px 0 18px 28px;
  border-left: 2px solid rgba(182, 123, 45, 0.72);
  color: #4b3320;
  background: linear-gradient(90deg, rgba(255, 252, 244, 0.72), rgba(255, 252, 244, 0));
  font-family: var(--serif);
  font-size: clamp(22px, 2vw, 30px);
  font-weight: 800;
  line-height: 1.38;
  letter-spacing: 0.01em;
}

.editorial-card .media-tagline::before {
  content: "“";
  position: absolute;
  left: 10px;
  top: -2px;
  color: rgba(182, 123, 45, 0.34);
  font-family: var(--serif);
  font-size: 58px;
  line-height: 1;
}

.editorial-card b {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  margin-top: 26px;
  padding: 0 28px;
  border: 1px solid rgba(255, 226, 156, 0.92);
  border-radius: 999px;
  color: #21170f;
  font-size: 17px;
  letter-spacing: 0;
}

.media-phone {
  justify-self: end;
  width: min(100%, 330px);
  aspect-ratio: 9 / 16;
  padding: 10px;
  border: 2px solid rgba(126, 78, 30, 0.5);
  border-radius: 36px;
  background: linear-gradient(135deg, #f8d9a2, #fff9ef 42%, #bd7a34);
  box-shadow: 0 24px 54px rgba(81, 55, 29, 0.22);
  transform: rotate(2deg);
  animation: phoneFloat 6.6s ease-in-out infinite;
}

.media-phone-screen {
  height: 100%;
  padding: 0;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 249, 239, 0.96)),
    radial-gradient(circle at 72% 82%, rgba(210, 160, 83, 0.18), transparent 34%);
  color: #2a2118;
  overflow: hidden;
}

.media-phone-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.proof-grid article {
  padding: 28px;
}

.cooperation-paths {
  position: relative;
  overflow: hidden;
}

.cooperation-paths::before {
  content: "RELATIONSHIP ASSET";
  position: absolute;
  left: clamp(20px, 5vw, 82px);
  top: 42px;
  color: rgba(202, 160, 90, 0.08);
  font-family: var(--latin);
  font-size: clamp(42px, 8vw, 118px);
  font-weight: 700;
  letter-spacing: 0.08em;
  white-space: nowrap;
  pointer-events: none;
}

.cooperation-paths .section-heading {
  max-width: 900px;
  text-align: center;
}

.cooperation-grid {
  max-width: 1240px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin: clamp(30px, 5vw, 60px) auto 0;
  border: 1px solid rgba(202, 160, 90, 0.34);
  border-radius: 8px;
  background: rgba(202, 160, 90, 0.26);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.cooperation-grid article {
  min-height: 300px;
  display: flex;
  flex-direction: column;
  padding: clamp(24px, 3vw, 34px);
  background:
    radial-gradient(circle at 84% 12%, rgba(202, 160, 90, 0.16), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(255, 250, 240, 0.86));
}

.cooperation-grid span {
  color: #9b7636;
  font-family: var(--latin);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  line-height: 1.5;
}

.cooperation-grid strong {
  display: block;
  margin-top: auto;
  color: #2a2118;
  font-family: var(--serif);
  font-size: clamp(24px, 2.25vw, 32px);
  line-height: 1.22;
}

.cooperation-grid p {
  margin: 16px 0 0;
  color: #625646;
  font-size: 16px;
  line-height: 1.72;
}

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

.partner-list li {
  min-height: 40px;
  display: flex;
  align-items: center;
  padding: 8px 12px;
  border: 1px dashed rgba(202, 160, 90, 0.34);
  border-radius: 8px;
  color: #2a2218;
  background: rgba(255, 250, 240, 0.55);
  font-size: 17px;
  line-height: 1.35;
}

.contact-panel {
  padding: clamp(26px, 5vw, 58px);
  border: 1px solid rgba(228, 196, 134, 0.32);
  border-radius: 8px;
  background:
    radial-gradient(circle at 86% 18%, rgba(228, 196, 134, 0.2), transparent 32%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(228, 196, 134, 0.08));
  box-shadow: var(--shadow);
}

.contact-info {
  padding: 26px;
  border-radius: 8px;
  background: rgba(24, 21, 16, 0.76);
  backdrop-filter: blur(14px);
}

.contact-info .button {
  margin: 0 12px 16px 0;
}

.contact-info p {
  margin-top: 10px;
  color: rgba(255, 248, 230, 0.82);
  font-size: 15px;
}

.store-map-cards {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.store-map-cards article {
  padding: 24px;
  border: 1px solid rgba(228, 196, 134, 0.28);
  border-radius: 8px;
  background:
    radial-gradient(circle at 88% 18%, rgba(228, 196, 134, 0.16), transparent 30%),
    rgba(24, 21, 16, 0.72);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.16);
}

.store-map-cards span {
  color: var(--gold-soft);
  font-family: var(--latin);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.store-map-cards strong {
  display: block;
  margin-top: 12px;
  color: #fff8ea;
  font-family: var(--serif);
  font-size: clamp(25px, 2.4vw, 34px);
  line-height: 1.2;
}

.store-map-cards p {
  max-width: 560px;
  color: rgba(255, 248, 230, 0.78);
  font-size: 15px;
  line-height: 1.7;
}

.store-map-cards .map-button {
  margin-top: 18px;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(20px, 5vw, 82px);
  color: rgba(255, 248, 230, 0.72);
  background: #181510;
}

.site-footer img {
  width: 190px;
}

.site-footer p {
  margin: 0;
}

.is-editing {
  padding-top: 92px;
  padding-bottom: 40px;
}

.is-editing .copy-editable {
  min-height: 1.35em;
  border-radius: 6px;
  outline: 1px dashed rgba(202, 160, 90, 0.58);
  outline-offset: 5px;
  cursor: pointer;
}

.is-editing .copy-editable:hover,
.is-editing .copy-editable.is-active {
  background: rgba(255, 244, 214, 0.82);
  outline: 2px solid rgba(202, 160, 90, 0.9);
}

.is-editing .section-dark .copy-editable:hover,
.is-editing .section-dark .copy-editable.is-active,
.is-editing .hero .copy-editable:hover,
.is-editing .hero .copy-editable.is-active {
  color: #21170f;
}

.edit-toolbar {
  position: fixed;
  left: 12px;
  right: 12px;
  top: 84px;
  z-index: 96;
  display: flex;
  max-width: none;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  padding: 12px 14px;
  border: 1px solid rgba(228, 196, 134, 0.72);
  border-radius: 8px;
  color: #fff8ea;
  background: linear-gradient(135deg, rgba(24, 21, 16, 0.98), rgba(68, 47, 25, 0.96));
  box-shadow: 0 18px 58px rgba(0, 0, 0, 0.34);
  transform: none;
  backdrop-filter: blur(18px);
}

.edit-toolbar strong {
  color: var(--gold-soft);
  white-space: nowrap;
}

.edit-toolbar button,
.edit-toolbar a {
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(228, 196, 134, 0.58);
  border-radius: 999px;
  color: #fff8ea;
  background: rgba(255, 255, 255, 0.08);
  font: inherit;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
  cursor: pointer;
}

.edit-toolbar button:hover,
.edit-toolbar a:hover {
  background: rgba(228, 196, 134, 0.22);
}

.edit-toolbar span {
  flex: 1 1 280px;
  color: rgba(255, 248, 230, 0.78);
  font-size: 13px;
}

.edit-panel {
  position: fixed;
  right: 18px;
  top: 188px;
  z-index: 97;
  display: none;
  width: min(420px, calc(100vw - 36px));
  padding: 16px;
  border: 1px solid rgba(228, 196, 134, 0.54);
  border-radius: 8px;
  color: #fff8ea;
  background: rgba(24, 21, 16, 0.96);
  box-shadow: 0 20px 68px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(18px);
}

.edit-panel.is-open {
  display: block;
}

.edit-panel label {
  display: block;
  margin-bottom: 10px;
  color: var(--gold-soft);
  font-weight: 700;
}

.edit-panel textarea {
  width: 100%;
  min-height: 136px;
  resize: vertical;
  padding: 12px;
  border: 1px solid rgba(228, 196, 134, 0.42);
  border-radius: 8px;
  color: #21170f;
  background: #fffaf0;
  font: 16px/1.7 var(--sans);
}

.edit-panel div {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.edit-panel button {
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid rgba(228, 196, 134, 0.58);
  border-radius: 999px;
  color: #fff8ea;
  background: rgba(255, 255, 255, 0.08);
  font: inherit;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
}

.edit-panel button:first-child {
  color: #21170f;
  border-color: var(--gold-soft);
  background: linear-gradient(135deg, #f3d891, #c79a4d);
}

.edit-export {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 79;
  width: min(420px, calc(100vw - 36px));
  padding: 12px;
  border: 1px solid rgba(228, 196, 134, 0.42);
  border-radius: 8px;
  color: #fff8ea;
  background: rgba(24, 21, 16, 0.9);
  box-shadow: 0 16px 52px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(18px);
}

.edit-export.is-collapsed,
.comment-panel.is-collapsed {
  display: none;
}

.edit-export strong {
  display: block;
  margin-bottom: 8px;
  color: var(--gold-soft);
  font-size: 13px;
}

.edit-export textarea {
  width: 100%;
  height: 150px;
  resize: vertical;
  padding: 10px;
  border: 1px solid rgba(228, 196, 134, 0.3);
  border-radius: 8px;
  color: #21170f;
  background: #fffaf0;
  font: 12px/1.5 Consolas, "Microsoft YaHei", monospace;
}

.is-commenting {
  cursor: crosshair;
}

.is-commenting section,
.is-commenting article,
.is-commenting figure,
.is-commenting .member-card-stage,
.is-commenting .event-gallery,
.is-commenting .proof-grid,
.is-commenting .mini-layout,
.is-commenting .contact-panel {
  outline: 1px dashed rgba(202, 160, 90, 0.34);
  outline-offset: -4px;
}

.is-commenting section:hover,
.is-commenting article:hover,
.is-commenting figure:hover,
.is-commenting .member-card-stage:hover,
.is-commenting .event-gallery:hover,
.is-commenting .proof-grid:hover,
.is-commenting .mini-layout:hover,
.is-commenting .contact-panel:hover {
  outline-color: rgba(202, 160, 90, 0.86);
}

.comment-pin {
  position: absolute;
  z-index: 78;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 236, 178, 0.9);
  border-radius: 50%;
  color: #21170f;
  background: linear-gradient(135deg, #f3d891, #c79a4d);
  box-shadow: 0 10px 28px rgba(40, 27, 14, 0.22);
  font: 800 12px/1 var(--latin);
  cursor: pointer;
  transform: translate(-50%, -50%);
}

.comment-pin:hover {
  transform: translate(-50%, -50%) scale(1.08);
}

.comment-panel {
  position: fixed;
  right: 18px;
  top: 188px;
  z-index: 76;
  width: min(390px, calc(100vw - 36px));
  max-height: calc(100vh - 300px);
  display: grid;
  grid-template-rows: auto minmax(120px, 1fr) auto;
  gap: 10px;
  padding: 14px;
  border: 1px solid rgba(228, 196, 134, 0.42);
  border-radius: 8px;
  color: #fff8ea;
  background: rgba(24, 21, 16, 0.9);
  box-shadow: 0 16px 52px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(18px);
}

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

.comment-panel-head strong {
  color: var(--gold-soft);
}

.comment-panel-head span {
  color: rgba(255, 248, 230, 0.68);
  font-size: 13px;
}

.comment-list {
  overflow: auto;
  display: grid;
  align-content: start;
  gap: 8px;
  padding-right: 4px;
}

.comment-list article,
.comment-empty {
  margin: 0;
  padding: 10px;
  border: 1px solid rgba(228, 196, 134, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.comment-list article.is-active {
  border-color: rgba(228, 196, 134, 0.9);
  background: rgba(228, 196, 134, 0.18);
}

.comment-list article strong,
.comment-list article span,
.comment-list article p {
  display: block;
}

.comment-list article strong {
  color: var(--gold-soft);
  font-family: var(--latin);
  font-size: 12px;
}

.comment-list article span {
  margin-top: 5px;
  color: rgba(255, 248, 230, 0.58);
  font-size: 12px;
  line-height: 1.45;
}

.comment-list article p {
  margin-top: 8px;
  color: rgba(255, 248, 230, 0.9);
  font-size: 14px;
  line-height: 1.6;
}

.comment-panel textarea {
  width: 100%;
  height: 112px;
  resize: vertical;
  padding: 10px;
  border: 1px solid rgba(228, 196, 134, 0.3);
  border-radius: 8px;
  color: #21170f;
  background: #fffaf0;
  font: 12px/1.5 Consolas, "Microsoft YaHei", monospace;
}

.comment-editor {
  position: fixed;
  z-index: 98;
  display: none;
  width: min(420px, calc(100vw - 36px));
  padding: 16px;
  border: 1px solid rgba(228, 196, 134, 0.54);
  border-radius: 8px;
  color: #fff8ea;
  background: rgba(24, 21, 16, 0.96);
  box-shadow: 0 20px 68px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(18px);
}

.comment-editor.is-open {
  display: block;
}

.comment-editor label {
  display: block;
  margin-bottom: 10px;
  color: var(--gold-soft);
  font-weight: 700;
}

.comment-editor textarea {
  width: 100%;
  min-height: 120px;
  resize: vertical;
  padding: 12px;
  border: 1px solid rgba(228, 196, 134, 0.42);
  border-radius: 8px;
  color: #21170f;
  background: #fffaf0;
  font: 16px/1.7 var(--sans);
}

.comment-editor div {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.comment-editor button {
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid rgba(228, 196, 134, 0.58);
  border-radius: 999px;
  color: #fff8ea;
  background: rgba(255, 255, 255, 0.08);
  font: inherit;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
}

.comment-editor button:first-child {
  color: #21170f;
  border-color: var(--gold-soft);
  background: linear-gradient(135deg, #f3d891, #c79a4d);
}

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

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

@keyframes heroBreath {
  from {
    transform: scale(calc(1.04 + var(--hero-progress) * 0.035)) translate3d(var(--hero-x), calc(var(--hero-progress) * 18px + var(--hero-y)), 0);
  }
  to {
    transform: scale(calc(1.08 + var(--hero-progress) * 0.035)) translate3d(calc(var(--hero-x) - 1%), calc(var(--hero-progress) * 18px + var(--hero-y)), 0);
  }
}

@keyframes champagneSweep {
  0% { transform: translateX(-22%) skewX(-8deg); opacity: 0.28; }
  46% { opacity: 0.64; }
  100% { transform: translateX(14%) skewX(-8deg); opacity: 0.78; }
}

@keyframes logoReveal {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.98);
    filter: blur(6px) drop-shadow(0 18px 36px rgba(0, 0, 0, 0.3));
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0) drop-shadow(0 18px 36px rgba(0, 0, 0, 0.3));
  }
}

@keyframes logoPrestige {
  0%, 100% {
    transform: translateY(0) scale(1);
    filter:
      drop-shadow(0 18px 36px rgba(0, 0, 0, 0.3))
      drop-shadow(0 0 0 rgba(228, 196, 134, 0));
  }
  45% {
    transform: translateY(-4px) scale(1.012);
    filter:
      drop-shadow(0 22px 42px rgba(0, 0, 0, 0.34))
      drop-shadow(0 0 14px rgba(228, 196, 134, 0.28));
  }
  62% {
    transform: translateY(-2px) scale(1.006);
  }
}

@keyframes logoSheen {
  0%, 18% {
    opacity: 0;
    transform: translateX(-72%) skewX(-12deg);
  }
  31% {
    opacity: 0.62;
  }
  45%, 100% {
    opacity: 0;
    transform: translateX(72%) skewX(-12deg);
  }
}

@keyframes logoGlint {
  0%, 22%, 100% {
    opacity: 0;
    transform: scale(0.48);
  }
  30% {
    opacity: 0.92;
    transform: scale(1);
  }
  42% {
    opacity: 0;
    transform: scale(1.28);
  }
}

@keyframes heroTitleReveal {
  from {
    opacity: 0;
    clip-path: inset(0 0 100% 0);
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    clip-path: inset(0 0 0 0);
    transform: translateY(0);
  }
}

@keyframes heroSloganReveal {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroButtonReveal {
  from {
    opacity: 0;
    transform: translateY(18px) rotateX(10deg);
  }
  to {
    opacity: 1;
    transform: translateY(0) rotateX(0);
  }
}

@keyframes softFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

@keyframes lineGrow {
  from { transform: scaleX(0); opacity: 0; }
  to { transform: scaleX(1); opacity: 1; }
}

@keyframes luxuryBeam {
  from { transform: translateX(-8%) rotate(-18deg); opacity: 0.28; }
  to { transform: translateX(8%) rotate(-18deg); opacity: 0.72; }
}

@keyframes cardSheen {
  0%, 42% { transform: translateX(0) skewX(-16deg); opacity: 0; }
  52% { opacity: 1; }
  76%, 100% { transform: translateX(520%) skewX(-16deg); opacity: 0; }
}

@keyframes glint {
  0%, 46% { transform: translateX(0) skewX(-18deg); opacity: 0; }
  54% { opacity: 1; }
  78%, 100% { transform: translateX(520%) skewX(-18deg); opacity: 0; }
}

@keyframes buttonSweep {
  0%, 58% { transform: translateX(0) skewX(-18deg); opacity: 0; }
  66% { opacity: 0.85; }
  88%, 100% { transform: translateX(440%) skewX(-18deg); opacity: 0; }
}

@keyframes buttonGlow {
  0%, 100% {
    filter: saturate(1) brightness(1);
  }
  50% {
    filter: saturate(1.08) brightness(1.04);
  }
}

@keyframes phoneFloat {
  0%, 100% { transform: rotate(2deg) translateY(0); }
  50% { transform: rotate(1deg) translateY(-8px); }
}

@keyframes stripMove {
  from { transform: translateX(0); }
  to { transform: translateX(-260px); }
}

@media (max-width: 1100px) {
  .nav-links {
    display: none;
  }

  .brand-line,
  .split,
  .capability-inner,
  .mini-layout,
  .service-grid,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .standard-rail,
  .standards-grid,
  .data-wall,
  .abc-table,
  .proof-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .store-showcase-main {
    grid-row: auto;
    grid-column: span 2;
  }

  .proof-grid .daily-card {
    grid-column: span 2;
  }

  .media-feature {
    grid-template-columns: minmax(0, 1fr) minmax(190px, 0.56fr);
  }

  .editorial-card strong {
    font-size: clamp(36px, 5.8vw, 58px);
  }

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

  .benefit-list {
    grid-template-columns: 1fr;
  }

  .co-create-program {
    grid-template-columns: 1fr;
  }

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

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

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

  .gallery-heading {
    grid-column: span 2;
    grid-row: auto;
    min-height: 240px;
  }
}

@media (max-width: 760px) {
  .site-header {
    min-height: 54px;
    padding: 8px 18px;
    background: rgba(24, 21, 16, 0.88);
  }

  .brand-mark img {
    width: 132px;
  }

  .nav-action {
    display: none;
  }

  .hero {
    min-height: 640px;
    padding: 80px 20px 34px;
    align-items: end;
  }

  .hero-bg {
    background-position: 61% center;
  }

  .hero-shade {
    background:
      linear-gradient(180deg, rgba(20, 15, 10, 0.7), rgba(20, 15, 10, 0.34) 34%, rgba(20, 15, 10, 0.9) 100%),
      linear-gradient(90deg, rgba(20, 15, 10, 0.78), rgba(20, 15, 10, 0.28) 68%, rgba(20, 15, 10, 0.48)),
      radial-gradient(circle at 28% 34%, rgba(245, 218, 154, 0.14), transparent 36%);
  }

  .hero-logo-mark {
    display: none;
  }

  h1 {
    max-width: 330px;
    font-size: clamp(34px, 9vw, 42px);
    line-height: 1.12;
    white-space: normal;
  }

  .hero-copy {
    font-size: 16px;
    line-height: 1.75;
  }

  .hero-slogan {
    margin-top: 12px;
    font-size: clamp(22px, 6.2vw, 28px);
    line-height: 1.34;
  }

  .hero-actions {
    align-items: center;
    justify-content: flex-start;
    flex-direction: row;
    width: min(100%, 320px);
    gap: 9px;
    margin-top: 20px;
  }

  .hero-title-gap {
    margin-left: 0;
  }

  .hero-inner h1 span {
    display: block;
  }

  .hero-actions .button,
  .hero-actions .button.ghost,
  .hero-actions .button.text {
    width: 148px;
    min-height: 46px;
    padding: 0 16px;
    font-size: 14px;
  }

  .hero-actions .button {
    min-width: 148px;
  }

  .hero-actions .button.text {
    width: fit-content;
    min-width: 146px;
    align-self: center;
    flex-basis: auto;
  }

  .button {
    width: 100%;
  }

  .member-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .member-entry-card {
    scroll-margin-top: 148px;
    grid-template-columns: 164px minmax(0, 1fr);
    gap: 14px;
    margin-top: 24px;
    padding: 14px;
  }

  .member-entry-card img {
    width: 164px;
    height: auto;
    padding: 8px;
  }

  .member-entry-copy strong {
    max-width: 7.5em;
    font-size: 20px;
    line-height: 1.25;
  }

  .hero-proof,
  .brand-principles,
  .standard-rail,
  .metric-row,
  .abc-table,
  .conversion-paths,
  .service-steps,
  .proof-grid,
  .cooperation-grid {
    grid-template-columns: 1fr;
  }

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

  .hero-proof {
    margin-top: 38px;
  }

  .hero-proof span {
    min-height: 46px;
    padding: 10px 12px;
    font-size: 13px;
    line-height: 1.35;
  }

  .brand-line,
  .standards,
  .standard,
  .capability,
  .membership,
  .mini-program,
  .retail,
  .ecosystem,
    .service,
    .partners,
    .cooperation-paths,
    .contact {
    padding: 70px 20px;
  }

  .conversion-paths article {
    min-height: auto;
  }

  .service-copy h2 {
    font-size: clamp(30px, 8.4vw, 32px);
    line-height: 1.18;
  }

  .service-photo {
    aspect-ratio: 16 / 10;
  }

  .service-steps {
    grid-column: auto;
    grid-template-columns: 1fr;
  }

  .cooperation-paths .section-heading {
    text-align: left;
  }

  .cooperation-grid article {
    min-height: 240px;
  }

  .section-heading {
    text-align: left;
  }

  .standards .section-heading .standards-tagline {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
    margin-top: 20px;
    font-size: 18px;
    letter-spacing: 0.08em;
  }

  .standards-tagline i {
    width: 72px;
    margin-left: 18px;
  }

  .data-wall,
  .standards-grid,
  .city-line,
  .store-visit-layout {
    grid-template-columns: 1fr;
  }

  .retail-editorial {
    grid-template-columns: 1fr;
  }

  .retail-editorial img {
    height: 330px;
  }

  .proof-grid .daily-card {
    grid-column: auto;
  }

  .store-map-cards {
    grid-template-columns: 1fr;
  }

  .media-feature {
    grid-template-columns: 1fr;
    padding: 28px 22px;
  }

  .editorial-card strong {
    margin-top: 24px;
    font-size: clamp(34px, 10vw, 46px);
    line-height: 1.15;
  }

  .media-feature .media-feature-copy strong span {
    display: block;
  }

  .media-feature .media-feature-copy strong span + span {
    margin-left: 0;
  }

  .editorial-card p {
    font-size: 16px;
  }

  .media-feature .media-feature-copy .media-date {
    gap: 7px 12px;
    font-size: 14px;
  }

  .media-date span + span::before {
    margin-right: 10px;
  }

  .editorial-card .media-tagline {
    margin-top: 20px;
    padding: 16px 0 16px 22px;
    font-size: clamp(21px, 6vw, 26px);
    line-height: 1.42;
  }

  .editorial-card .media-tagline::before {
    left: 7px;
    font-size: 46px;
  }

  .media-phone {
    width: min(86%, 260px);
    justify-self: center;
    transform: rotate(0deg);
    animation: none;
  }

  .member-card-stage {
    min-height: 0;
    padding: 12px;
  }

  .member-card-art {
    min-height: 0;
    object-position: center;
  }

  .card-back {
    right: 16px;
    width: 82%;
    height: 134px;
    padding: 22px 26px;
  }

  .card-front {
    left: 16px;
    right: 16px;
    bottom: 74px;
    min-height: 154px;
    grid-template-columns: 58px minmax(0, 1fr);
    padding: 22px;
  }

  .card-front img {
    width: 58px;
  }

  .card-front b {
    grid-column: 1 / -1;
    width: fit-content;
    margin-top: 6px;
    padding-left: 0;
    border-left: 0;
    font-size: 30px;
  }

  .member-card-benefits {
    left: 16px;
    right: 16px;
  }

  .member-benefits-panel {
    padding: 22px;
  }

  .benefit-heading strong {
    white-space: normal;
    font-size: clamp(36px, 12vw, 48px);
  }

  .co-create-tagline {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 14px;
    width: 100%;
    padding: 9px 10px;
    font-size: 16px;
    letter-spacing: 0.04em;
  }

  .co-create-tagline span + span::before {
    margin-right: 10px;
  }

  .co-create-lead {
    margin-top: 22px;
    padding-top: 22px;
    font-size: 18px;
    line-height: 1.75;
    text-align: left;
  }

  .co-create-lead span + span {
    margin-top: 8px;
  }

  .co-create-hero-image img {
    max-height: 360px;
  }

  .co-create-values,
  .solution-card div,
  .event-gallery {
    grid-template-columns: 1fr;
  }

  .store-showcase {
    max-width: 100%;
    margin: 0;
  }

  .store-showcase-main {
    grid-column: auto;
    min-height: 0;
  }

  .store-showcase figure {
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .store-map-image-link span {
    right: 14px;
    bottom: 14px;
    min-height: 42px;
    padding: 0 16px;
    font-size: 14px;
  }

  .gallery-heading {
    grid-column: auto;
    min-height: 220px;
  }

  .event-gallery figure,
  .event-gallery img {
    min-height: 210px;
  }

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

  .edit-toolbar {
    left: 10px;
    right: 10px;
    bottom: 10px;
    flex-wrap: wrap;
    transform: none;
  }

  .edit-toolbar span {
    width: 100%;
  }

  .edit-panel {
    left: 10px;
    right: 10px;
    top: auto;
    bottom: 142px;
    width: auto;
  }

  .edit-export {
    left: 10px;
    right: 10px;
    bottom: 260px;
    width: auto;
  }

  .edit-export textarea {
    height: 110px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

/* ninaupgrade03: production polish */
:root {
  --ink: #171916;
  --deep: #121512;
  --coffee: #242720;
  --gold: #bd9450;
  --gold-soft: #e2c47e;
  --ivory: #f7f4ed;
  --paper: #fbfaf6;
  --warm: #e7dfd0;
  --muted: #686b64;
  --jade: #466859;
  --plum: #70535d;
  --line: rgba(23, 25, 22, 0.16);
  --shadow: 0 26px 72px rgba(16, 18, 15, 0.16);
}

* {
  letter-spacing: 0 !important;
}

body {
  color: var(--ink);
  background: var(--paper);
}

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

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

.site-progress {
  position: fixed;
  inset: 0 0 auto;
  z-index: 80;
  height: 2px;
  background: transparent;
  pointer-events: none;
}

.site-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--jade), var(--gold-soft), var(--plum));
  transform: scaleX(0);
  transform-origin: left;
  will-change: transform;
}

.site-header {
  min-height: 76px;
  padding: 13px clamp(24px, 4vw, 68px);
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(12, 15, 12, 0.74);
  backdrop-filter: blur(20px) saturate(1.05);
}

.site-header.is-scrolled {
  min-height: 66px;
  background: rgba(12, 15, 12, 0.94);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.nav-links a {
  position: relative;
  color: rgba(255, 255, 255, 0.76);
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 2px;
  height: 1px;
  background: var(--gold-soft);
  transition: right 220ms ease;
}

.nav-links a:hover::after,
.nav-links a.is-active::after {
  right: 0;
}

.nav-links a.is-active {
  color: #fff;
}

.nav-action,
.button,
.hero-actions .button,
.hero-actions .button.ghost,
.hero-actions .button.text,
.editorial-card b {
  border-radius: 6px;
  animation: none;
  font-family: var(--sans);
  box-shadow: none;
}

.nav-action,
.button.primary,
.hero-actions .button:first-child {
  border-color: #e6ca88;
  color: #171510;
  background: #dfbd70;
}

.button.ghost,
.hero-actions .button.ghost {
  border-color: rgba(255, 255, 255, 0.58);
  color: #fff;
  background: rgba(12, 15, 12, 0.18);
}

.nav-action::before,
.nav-action::after,
.button::before,
.button::after,
.route-pills span::before,
.route-pills span::after,
.editorial-card b::before,
.editorial-card b::after {
  display: none;
}

.button:hover,
.nav-action:hover,
.editorial-card b:hover {
  transform: translateY(-2px);
  border-color: #f1da9e;
  box-shadow: 0 12px 28px rgba(7, 9, 7, 0.2);
}

.section-dark {
  background: var(--deep);
}

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

.section-ivory {
  background: #f1eee7;
}

.hero {
  min-height: calc(100svh - 30px);
  max-height: 940px;
  padding: 120px clamp(24px, 6vw, 96px) 44px;
  align-items: center;
}

.hero::before {
  opacity: 0.24;
  background: linear-gradient(110deg, transparent 0 40%, rgba(255, 238, 194, 0.22) 50%, transparent 60%);
  animation-duration: 24s;
}

.hero::after {
  left: auto;
  right: clamp(18px, 4vw, 60px);
  bottom: 6vh;
  color: rgba(255, 255, 255, 0.035);
  font-size: 156px;
}

.hero-bg {
  background-position: 58% 48%;
  filter: saturate(0.92) contrast(1.06) brightness(1.08);
  animation-duration: 34s;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(8, 11, 9, 0.9), rgba(8, 11, 9, 0.64) 44%, rgba(8, 11, 9, 0.2) 100%),
    linear-gradient(180deg, rgba(8, 11, 9, 0.18), rgba(8, 11, 9, 0.62));
}

.hero-shade::after {
  opacity: 0.07;
}

.hero-inner {
  width: min(1180px, 100%);
}

.hero-inner::after {
  width: min(600px, 70%);
  margin-top: 26px;
  background: linear-gradient(90deg, var(--gold-soft), rgba(70, 104, 89, 0.5), transparent);
}

.hero-overline {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 20px;
  color: var(--gold-soft);
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 700;
}

.hero-overline::before {
  content: "";
  width: 42px;
  height: 1px;
  background: currentColor;
}

.hero-overline span {
  padding-left: 14px;
  border-left: 1px solid rgba(255, 255, 255, 0.28);
  color: rgba(255, 255, 255, 0.76);
}

h1,
.hero-inner h1 {
  max-width: 940px;
  font-size: 68px;
  line-height: 1.08;
  text-shadow: 0 16px 38px rgba(0, 0, 0, 0.34);
}

h2 {
  font-size: 58px;
}

.hero-slogan {
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.9);
  font-family: var(--sans);
  font-size: 28px;
  font-weight: 500;
  line-height: 1.55;
}

.hero-actions {
  margin-top: 32px;
}

.hero-actions .button,
.hero-actions .button.ghost,
.hero-actions .button.text {
  width: 190px;
  min-height: 52px;
  padding: 0 26px;
}

.media-feature .media-tagline > span {
  display: block;
}

.cooperation-paths .section-heading h2 span {
  display: inline;
}

.cooperation-paths .section-heading h2 span + span::before {
  content: " ";
}

.section-kicker,
.eyebrow {
  color: var(--jade);
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 800;
}

.section-dark .section-kicker,
.mini-layout .section-kicker {
  color: var(--gold-soft);
}

.standards,
.capability,
.mini-program,
.service,
.partners,
.cooperation-paths,
.contact {
  padding-top: 112px;
  padding-bottom: 112px;
}

.standards::before {
  opacity: 0.16;
}

.standards-grid {
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.standard-card {
  min-height: 230px;
  border: 0;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.standard-card::before {
  background: var(--jade);
}

.standard-card span {
  color: var(--jade);
}

.standard-card:hover {
  background: #f0f2ed;
  box-shadow: none;
}

.standard-card h3 {
  font-size: 26px;
}

.standard-card p {
  color: #62665f;
}

.capability {
  background:
    linear-gradient(110deg, rgba(70, 104, 89, 0.2), transparent 34%),
    var(--deep);
}

.data-wall article {
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.045);
}

.data-wall article:nth-child(2n) .data-number {
  color: #b8cabe;
}

.store-showcase figure,
.service-photo,
.member-card-stage,
.member-entry-card,
.member-benefits-panel,
.conversion-paths article,
.cooperation-grid article,
.media-feature {
  border-radius: 6px;
}

.mini-program {
  background:
    linear-gradient(130deg, rgba(70, 104, 89, 0.22), transparent 38%),
    linear-gradient(145deg, #111411, #24251f 52%, #111310);
}

.route-pills {
  gap: 20px;
}

.route-pills span {
  padding: 4px 0 4px 13px;
  border: 0;
  border-left: 2px solid var(--gold);
  border-radius: 0;
  color: rgba(255, 255, 255, 0.78);
  background: transparent;
}

.member-entry-card {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.22);
}

.member-card-stage {
  background:
    linear-gradient(145deg, rgba(70, 104, 89, 0.2), transparent 44%),
    #171916;
}

.member-benefits-panel {
  border-color: rgba(255, 255, 255, 0.15);
}

.service {
  background:
    linear-gradient(90deg, rgba(70, 104, 89, 0.06), transparent 36%),
    var(--paper);
}

.service-photo img,
.store-showcase img,
.event-gallery img {
  transition: transform 600ms cubic-bezier(0.2, 0.7, 0.2, 1), filter 500ms ease;
}

.conversion-paths article,
.cooperation-grid article {
  border-color: rgba(23, 25, 22, 0.16);
  background: rgba(255, 255, 255, 0.46);
  box-shadow: none;
}

.conversion-paths article:hover,
.cooperation-grid article:hover {
  border-color: rgba(70, 104, 89, 0.56);
  background: rgba(255, 255, 255, 0.72);
}

.conversion-paths article > span,
.cooperation-grid article > span {
  color: var(--jade);
}

.contact {
  background:
    linear-gradient(110deg, rgba(112, 83, 93, 0.18), transparent 42%),
    var(--deep);
}

.map-button {
  border-radius: 6px;
}

.site-footer {
  background: #0c0f0c;
}

.mobile-action-dock {
  display: none;
}

.semantic-lines span {
  display: inline;
}

.semantic-lines span + span::before {
  content: " ";
}

@media (max-width: 1100px) {
  h1,
  .hero-inner h1 {
    font-size: 58px;
  }

  h2 {
    font-size: 50px;
  }

  .hero::after {
    font-size: 118px;
  }
}

@media (max-width: 760px) {
  body {
    padding-bottom: 74px;
  }

  section {
    scroll-margin-top: 74px;
  }

  .site-header,
  .site-header.is-scrolled {
    min-height: 66px;
    height: 66px;
    padding: 10px 18px;
  }

  .brand-mark {
    position: relative;
    width: 156px;
    height: 48px;
    flex: 0 0 156px;
    display: flex;
    align-items: center;
    overflow: hidden;
  }

  .brand-mark img {
    position: absolute;
    left: 0;
    top: -33px;
    width: 156px;
    height: auto;
    max-width: none;
  }

  .nav-action {
    min-height: 38px;
    padding: 0 13px;
    font-size: 12px;
  }

  .hero {
    min-height: calc(100svh - 24px);
    max-height: none;
    padding: 106px 20px 40px;
    align-items: center;
  }

  .hero-bg {
    background-position: 68% center;
    filter: saturate(0.9) contrast(1.05) brightness(1.05);
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(8, 11, 9, 0.88), rgba(8, 11, 9, 0.54) 68%, rgba(8, 11, 9, 0.32)),
      linear-gradient(180deg, rgba(8, 11, 9, 0.22), rgba(8, 11, 9, 0.7));
  }

  .hero::after {
    right: 16px;
    bottom: 10%;
    font-size: 74px;
    writing-mode: vertical-rl;
  }

  .hero-overline {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
    margin-bottom: 18px;
    font-size: 11px;
  }

  .hero-overline::before {
    width: 30px;
  }

  .hero-overline span {
    padding-left: 0;
    border-left: 0;
  }

  h1,
  .hero-inner h1 {
    font-size: 48px;
    line-height: 1.12;
    white-space: normal;
  }

  .hero-inner h1 span {
    display: block;
  }

  .hero-title-gap {
    margin: 5px 0 0;
  }

  h2 {
    font-size: 40px;
  }

  .hero-slogan {
    margin-top: 20px;
    font-size: 22px;
    line-height: 1.5;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    width: 100%;
    margin-top: 28px;
  }

  .hero-actions .button,
  .hero-actions .button.ghost,
  .hero-actions .button.text {
    width: 100%;
    min-width: 0;
    min-height: 50px;
    padding: 0 12px;
    font-size: 14px;
  }

  .editorial-card .media-tagline {
    font-size: 22px;
    line-height: 1.45;
  }

  .cooperation-paths .section-heading h2 {
    font-size: 30px;
    line-height: 1.3;
  }

  .cooperation-paths .section-heading h2 span {
    display: block;
  }

  .cooperation-paths .section-heading h2 span + span {
    margin-top: 5px;
  }

  .cooperation-paths .section-heading h2 span + span::before {
    content: none;
  }

  .standards,
  .capability,
  .mini-program,
  .service,
  .partners,
  .cooperation-paths,
  .contact {
    padding-top: 78px;
    padding-bottom: 78px;
  }

  .standard-card {
    min-height: 0;
    padding: 24px 20px;
  }

  .standard-card h3 {
    font-size: 24px;
  }

  .route-pills {
    gap: 10px 16px;
  }

  .member-entry-card {
    scroll-margin-top: 148px;
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .member-entry-copy {
    width: 100%;
  }

  .member-entry-copy span {
    display: block;
    overflow-wrap: anywhere;
  }

  .member-entry-copy strong {
    max-width: none;
  }

  .semantic-lines span {
    display: block;
  }

  .semantic-lines span + span {
    margin-top: 4px;
  }

  .semantic-lines span + span::before {
    content: none;
  }

  .service-lead,
  .cooperation-lead {
    max-width: 100%;
  }

  .cooperation-paths .section-heading .cooperation-lead {
    font-size: 14px;
    line-height: 1.75;
  }

  .service-steps .semantic-lines span,
  .cooperation-grid .semantic-lines span {
    margin-top: 0;
  }

  .contact-panel {
    gap: 28px;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .contact-info {
    padding: 0;
    border: 0;
    background: transparent;
  }

  .store-map-cards {
    gap: 0;
    border-top: 1px solid rgba(228, 196, 134, 0.28);
  }

  .store-map-cards article {
    padding: 24px 0;
    border: 0;
    border-bottom: 1px solid rgba(228, 196, 134, 0.28);
    border-radius: 0;
    background: transparent;
  }

  .mobile-action-dock {
    position: fixed;
    left: 10px;
    right: 10px;
    bottom: max(10px, env(safe-area-inset-bottom));
    z-index: 60;
    display: grid;
    grid-template-columns: 1.08fr 0.92fr;
    min-height: 58px;
    border: 1px solid rgba(226, 196, 126, 0.42);
    border-radius: 7px;
    background: rgba(12, 15, 12, 0.94);
    box-shadow: 0 14px 44px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(18px);
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(calc(100% + 22px));
    transition: opacity 220ms ease, transform 220ms ease, visibility 220ms ease;
  }

  .mobile-action-dock.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .mobile-action-dock a {
    display: grid;
    align-content: center;
    justify-items: center;
    padding: 7px 10px;
    color: #fff;
  }

  .mobile-action-dock a:first-child {
    color: #171510;
    background: #dfbd70;
  }

  .mobile-action-dock a + a {
    border-left: 1px solid rgba(255, 255, 255, 0.14);
  }

  .mobile-action-dock span {
    font-size: 9px;
    line-height: 1.2;
    opacity: 0.7;
  }

  .mobile-action-dock strong {
    font-size: 14px;
    line-height: 1.35;
  }

  .site-footer {
    padding-bottom: 32px;
  }
}
