/* ============================================================
   RISING9 COMPANY — Unified Design System
============================================================ */

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

:root {
  --header-height: 84px;
  --content-width: 1224px;
  --page-max: var(--content-width);
  --page-gutter: clamp(20px, 4.5vw, 64px);

  --color-bg: #f7f3ec;
  --color-bg-soft: #fcfaf6;
  --color-bg-ivory: #f7f3ec;
  --color-bg-light: #fcfaf6;
  --color-paper: #fcfaf6;
  --color-text: #28231d;
  --color-text-soft: #5d554c;
  --color-body: #3b3833;
  --color-copy: #3b3833;
  --color-copy-soft: #5d554c;
  --color-muted: #6b635a;
  --color-gold: #b48749;
  --color-gold-dark: #96733e;
  --color-elnoir: #9a7350;
  --color-line: rgba(40, 35, 29, 0.13);
  --color-dark: #27231e;
  --color-naver: #03b355;

  --font-body: "Pretendard", "Noto Sans KR", sans-serif;
  --font-title: "Noto Serif KR", "Nanum Myeongjo", serif;
  --font-en: "Cormorant Garamond", "Times New Roman", serif;
  --font-display: var(--font-title);
  --font-editorial: var(--font-title);
  --font-sans: var(--font-body);
  --font-serif: var(--font-title);
  --font-en-serif: var(--font-en);

  /* ── Unified typography scale ── */
  --text-display-size: clamp(40px, 4.2vw, 58px);
  --text-section-title-size: clamp(34px, 3.2vw, 44px);
  --text-brand-title-size: clamp(27px, 2.4vw, 32px);
  --text-card-title-size: 17px;
  --text-body-size: 15px;
  --text-small-size: 13px;
  --text-label-size: 11px;

  --leading-display: 1.22;
  --leading-section-title: 1.32;
  --leading-brand-title: 1.4;
  --leading-body: 1.8;
  --leading-small: 1.7;

  --tracking-heading: -0.04em;
  --tracking-body: -0.018em;
  --tracking-label: 0.16em;

  /* Compatibility aliases (existing selectors) */
  --text-body: var(--text-body-size);
  --text-body-mobile: 14px;
  --text-body-min: var(--text-body-size);
  --text-body-min-mobile: 14px;
  --text-nav: 13px;
  --text-nav-dropdown: 14px;
  --text-store-link: 13px;
  --text-hero-eyebrow: var(--text-label-size);
  --text-hero-title: var(--text-display-size);
  --text-hero-title-mobile: clamp(34px, 9vw, 40px);
  --text-hero-lead: var(--text-body-size);
  --text-hero-lead-mobile: 14px;
  --text-hero-desc: var(--text-body-size);
  --text-hero-desc-mobile: 14px;
  --text-hero-btn: 13px;
  --text-section-label: var(--text-label-size);
  --text-section-label-mobile: 10px;
  --text-section-title: var(--text-section-title-size);
  --text-section-title-mobile: 29px;
  --text-section-copy: var(--text-body-size);
  --text-section-copy-mobile: 14px;
  --text-card-num: 11px;
  --text-card-title: var(--text-card-title-size);
  --text-card-title-mobile: 16px;
  --text-card-desc: var(--text-small-size);
  --text-card-desc-mobile: 13px;
  --text-brand-body: var(--text-body-size);
  --text-brand-signature: var(--text-brand-title-size);
  --text-brand-signature-mobile: 24px;
  --text-brand-slogan-en: var(--text-small-size);
  --text-brand-slogan-en-mobile: 13px;
  --text-brand-tab: 12px;
  --text-partnership-title: var(--text-section-title-size);
  --text-partnership-title-mobile: 29px;
  --text-contact-label: 12px;
  --text-contact-value: 14px;
  --text-footer: 13px;
  --text-footer-brand: clamp(22px, 2vw, 26px);
  --text-footer-heading: 12px;
  --text-wordmark: clamp(24px, 2vw, 28px);
  --text-wordmark-mobile: 22px;

  --fw-normal: 400;
  --fw-medium: 500;
  --fw-semibold: 600;

  --lh-body: var(--leading-body);
  --lh-copy: var(--leading-body);
  --lh-copy-relaxed: 1.85;
  --lh-title: var(--leading-section-title);
  --lh-title-mobile: 1.4;
  --lh-hero: var(--leading-display);
  --lh-hero-mobile: 1.25;

  --letter-body: var(--tracking-body);
  --letter-title: var(--tracking-heading);
  --letter-label: var(--tracking-label);
  --letter-brand-en: 0.06em;

  --space-label-title: 22px;
  --space-title-copy: clamp(24px, 2.2vw, 28px);
  --space-paragraph: clamp(14px, 1.2vw, 16px);
  --space-content-gap: clamp(42px, 4vw, 52px);
  --space-card-title-desc: 13px;
  --copy-max-width: 580px;
  --copy-max-width-wide: min(620px, 100%);

  --container-width: var(--page-max);
  --space-section: clamp(88px, 8vw, 104px);
  --pad-x: var(--page-gutter);
  --pad-section: var(--space-section);
  --header-h: var(--header-height);
  --scroll-offset: calc(var(--header-height) + 28px);
}

body {
  margin: 0;
  width: 100%;
  max-width: 100%;
  color: var(--color-body);
  background: var(--color-bg);
  font-family: var(--font-body);
  font-size: var(--text-body);
  font-weight: var(--fw-normal);
  line-height: var(--lh-body);
  letter-spacing: var(--letter-body);
  word-break: keep-all;
  overflow-wrap: break-word;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

@media (max-width: 767px) {
  body {
    font-size: var(--text-body-mobile);
  }
}

body.nav-open { overflow: hidden; }

img, svg { display: block; max-width: 100%; height: auto; }

video {
  display: block;
  max-width: 100%;
  height: auto;
}

.mobile-only-br {
  display: none;
}

.desktop-only-br {
  display: block;
}

@media (max-width: 767px) {
  .mobile-only-br {
    display: block;
  }

  .desktop-only-br {
    display: none;
  }
}

a { color: inherit; }
button { font: inherit; cursor: pointer; }

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

#philosophy,
#brand-story,
#selected-products,
#business,
#partnership,
[data-scroll-section] {
  scroll-margin-top: 90px;
}

@media (max-width: 768px) {
  #philosophy,
  #brand-story,
  #selected-products,
  #business,
  #partnership,
  [data-scroll-section] {
    scroll-margin-top: 72px;
  }
}

.site-container,
.container {
  width: min(calc(100% - (var(--page-gutter) * 2)), var(--content-width));
  margin-inline: auto;
}

.page-section {
  padding-block: var(--space-section);
}

@media (max-width: 1023px) {
  .page-section {
    padding-block: clamp(72px, 8vw, 96px);
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 78px;
    --text-display-size: clamp(34px, 9vw, 40px);
    --text-section-title-size: 29px;
    --text-brand-title-size: 24px;
    --text-card-title-size: 16px;
    --text-body-size: 14px;
    --text-small-size: 13px;
    --text-label-size: 10px;
    --leading-section-title: 1.4;
    --leading-brand-title: 1.42;
    --leading-body: 1.75;
    --tracking-heading: -0.04em;
    --tracking-body: -0.015em;
    --tracking-label: 0.14em;
    --space-label-title: 17px;
    --space-title-copy: 22px;
    --space-content-gap: 36px;
    --space-section: clamp(52px, 10vw, 64px);
    --page-gutter: 22px;
    --text-hero-title-mobile: clamp(34px, 9vw, 40px);
    --text-section-title-mobile: 29px;
    --text-section-label-mobile: 10px;
    --text-section-copy-mobile: 14px;
    --text-body-mobile: 14px;
    --text-body-min-mobile: 14px;
    --text-card-desc-mobile: 13px;
    --lh-hero-mobile: 1.25;
    --lh-title-mobile: 1.4;
  }

  .page-section {
    padding-block: var(--space-section);
  }
}

.section-label {
  display: block;
  margin: 0 0 var(--space-label-title);
  color: var(--color-gold);
  font-family: var(--font-en);
  font-size: var(--text-label-size);
  font-weight: var(--fw-medium);
  line-height: 1.2;
  letter-spacing: var(--tracking-label);
  text-transform: uppercase;
}

.section-title {
  margin: 0;
  font-family: var(--font-title);
  font-size: var(--text-section-title-size);
  font-weight: var(--fw-normal);
  line-height: var(--leading-section-title);
  letter-spacing: var(--tracking-heading);
  word-break: keep-all;
  overflow-wrap: normal;
  text-wrap: balance;
  color: var(--color-text);
}

.display-title {
  margin: 0;
  color: #28231d;
  font-family: var(--font-title);
  font-size: var(--text-section-title-size);
  font-weight: var(--fw-normal);
  font-style: normal;
  line-height: var(--leading-section-title);
  letter-spacing: var(--tracking-heading);
  word-break: keep-all;
  overflow-wrap: normal;
  text-wrap: balance;
  font-synthesis: none;
  -webkit-font-smoothing: antialiased;
}

.display-title span {
  display: block;
}

.hero-title.display-title {
  color: #fff;
  font-size: var(--text-display-size);
  line-height: var(--leading-display);
  letter-spacing: -0.045em;
}

.philosophy-title,
.philosophy-heading {
  max-width: 650px;
  font-family: var(--font-title);
  font-size: var(--text-section-title-size);
  line-height: var(--leading-section-title);
  letter-spacing: var(--tracking-heading);
  font-weight: var(--fw-normal);
}

.philosophy-title span,
.philosophy-heading span {
  display: block;
  white-space: nowrap;
}

.business-title {
  max-width: min(720px, 100%);
  font-family: var(--font-title);
  font-size: var(--text-section-title-size);
  line-height: var(--leading-section-title);
  letter-spacing: var(--tracking-heading);
  font-weight: var(--fw-normal);
  word-break: keep-all;
  overflow-wrap: normal;
}

.business-title.display-title span {
  display: block;
  white-space: nowrap;
}

.brand-story-title span {
  display: block;
  white-space: nowrap;
}

.partnership-title {
  max-width: none;
  margin: 0;
  font-family: var(--font-title);
  font-size: var(--text-section-title-size);
  font-weight: var(--fw-normal);
  line-height: var(--leading-section-title);
  letter-spacing: var(--tracking-heading);
  word-spacing: normal;
  word-break: keep-all;
  white-space: normal;
}

.product-brand-signature {
  min-height: clamp(52px, 5vw, 64px);
  margin: clamp(28px, 3vw, 38px) 0 clamp(32px, 3.5vw, 44px);
}

.product-brand-signature__ko {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(17px, 1.4vw, 20px);
  font-weight: var(--fw-semibold);
  line-height: 1.45;
  letter-spacing: -0.03em;
  color: var(--color-text);
  word-break: keep-all;
}

.product-brand-signature__en {
  margin: 8px 0 0;
  font-family: var(--font-en);
  font-size: var(--text-brand-slogan-en);
  font-weight: var(--fw-normal);
  font-style: normal;
  line-height: 1.45;
  letter-spacing: 0.04em;
  word-break: keep-all;
}

.product-brand-signature--rising9 .product-brand-signature__en {
  color: #b88743;
}

.product-brand-signature--elnoir .product-brand-signature__en {
  color: #9a7350;
}

.display-title + .philosophy-copy,
.display-title + .story-description,
.display-title + .business-intro,
.display-title + .partnership-description {
  margin-top: var(--space-title-copy);
}

.section-copy,
.philosophy-copy,
.story-description,
.business-intro,
.partnership-description {
  color: var(--color-copy);
  font-family: var(--font-body);
  font-size: var(--text-body-size);
  font-weight: var(--fw-normal);
  line-height: var(--leading-body);
  letter-spacing: var(--tracking-body);
  word-break: keep-all;
  overflow-wrap: break-word;
  max-width: var(--copy-max-width);
}

.partnership-description p {
  margin: 0;
}

.partnership-description p + p {
  margin-top: var(--space-paragraph);
}

.philosophy-copy p + p,
.story-description p + p,
.business-intro p + p {
  margin-top: var(--space-paragraph);
}

.philosophy-copy {
  min-width: 0;
  max-width: var(--copy-max-width-wide);
  width: 100%;
  font-size: var(--text-section-copy);
  font-weight: var(--fw-normal);
  line-height: var(--lh-copy);
  letter-spacing: var(--letter-body);
  color: var(--color-copy);
  overflow-wrap: break-word;
}

.philosophy-copy__lead {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  font-weight: var(--fw-normal);
  line-height: inherit;
  letter-spacing: inherit;
  color: var(--color-copy);
}

.philosophy-copy__lead + p {
  margin-top: var(--space-paragraph);
}

.philosophy-copy p:not(.philosophy-copy__lead) {
  margin: 0;
  font-weight: var(--fw-normal);
}

.philosophy-copy p + p:not(.philosophy-copy__lead) {
  margin-top: var(--space-paragraph);
}

.philosophy-copy strong {
  font-weight: var(--fw-semibold);
  color: var(--color-text);
}

.service-description,
.product-description {
  font-size: var(--text-body-min);
  line-height: var(--lh-body);
  letter-spacing: -0.02em;
}

.text-strong { font-weight: 600; color: var(--color-text); }

[data-reveal] {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
[data-reveal].is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  [data-reveal], .hero-reveal { opacity: 1; transform: none; transition: none; }
}

/* ── Header ── */
.site-header {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1000;
  height: var(--header-height);
  background: linear-gradient(
    180deg,
    rgba(24, 20, 16, 0.42) 0%,
    rgba(24, 20, 16, 0.12) 70%,
    rgba(24, 20, 16, 0) 100%
  );
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  transition:
    background 0.3s ease,
    color 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.site-header.is-scrolled {
  position: fixed;
  background: rgba(248, 245, 239, 0.94);
  color: #28231d;
  border-bottom: 1px solid rgba(40, 35, 29, 0.1);
  box-shadow: 0 8px 30px rgba(34, 28, 22, 0.05);
  backdrop-filter: blur(16px);
}

.header-inner {
  width: min(calc(100% - (var(--page-gutter) * 2)), var(--content-width));
  height: 100%;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.header-wordmark {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  flex-shrink: 0;
  color: #fff;
  text-decoration: none;
  white-space: nowrap;
}

.wordmark-rising9,
.header-wordmark-main {
  font-family: var(--font-en);
  font-size: var(--text-wordmark);
  font-weight: var(--fw-semibold);
  line-height: 1;
  letter-spacing: var(--letter-brand-en);
}

.wordmark-company,
.header-wordmark-company {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: var(--fw-semibold);
  line-height: 1;
  letter-spacing: 0.2em;
}

.site-header.is-scrolled .header-wordmark {
  color: #28231d;
}

.header-wordmark--mobile {
  display: inline-flex;
  margin-bottom: 32px;
  color: var(--color-text);
}

.primary-nav,
.nav-links--desktop {
  display: flex;
  align-items: center;
  gap: clamp(22px, 2.2vw, 36px);
  flex-wrap: nowrap;
}

.primary-nav > a,
.primary-nav > button,
.primary-nav .nav-link,
.primary-nav .nav-dropdown__toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 30px 0;
  color: rgba(255, 255, 255, 0.9);
  font-family: var(--font-body);
  font-size: var(--text-nav);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.015em;
  text-decoration: none;
  white-space: nowrap;
  background: none;
  border: none;
  cursor: pointer;
  box-shadow: inset 0 -1px 0 transparent;
  transition: color 0.25s ease, box-shadow 0.25s ease;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.16);
}

.nav-link--brand {
  font-family: var(--font-en);
  font-weight: 600;
  letter-spacing: 0.01em;
}

.site-header.is-scrolled .primary-nav > a,
.site-header.is-scrolled .primary-nav .nav-link,
.site-header.is-scrolled .primary-nav .nav-dropdown__toggle {
  text-shadow: none;
}

.primary-nav > a:hover,
.primary-nav .nav-link:hover,
.primary-nav .nav-dropdown__toggle:hover {
  color: rgba(255, 255, 255, 0.96);
}

.primary-nav > a.is-active,
.primary-nav .nav-link.is-active {
  color: #d2a25e;
  box-shadow: inset 0 -1px 0 #c49352;
}

.site-header.is-scrolled .primary-nav > a,
.site-header.is-scrolled .primary-nav .nav-link,
.site-header.is-scrolled .primary-nav .nav-dropdown__toggle {
  color: #28231d;
}

.site-header.is-scrolled .primary-nav > a:hover,
.site-header.is-scrolled .primary-nav .nav-link:hover,
.site-header.is-scrolled .primary-nav .nav-dropdown__toggle:hover {
  color: #3f3a34;
}

.site-header.is-scrolled .primary-nav > a.is-active,
.site-header.is-scrolled .primary-nav .nav-link.is-active {
  color: #b48749;
  box-shadow: inset 0 -1px 0 #b48749;
}

.nav-link.is-active {
  font-weight: 600;
}

/* Header store dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 8px;
}

.nav-dropdown--store::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 8px;
}

.primary-nav .nav-dropdown__toggle {
  gap: 6px;
}

.nav-dropdown__toggle::after {
  content: "";
  flex-shrink: 0;
  display: block;
  width: 6px;
  height: 6px;
  margin-top: -1px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  opacity: 0.65;
  transform: rotate(45deg);
  transition: transform 0.25s ease;
  transform-origin: 50% 50%;
}

.nav-dropdown.is-open > .nav-dropdown__toggle::after {
  transform: rotate(-135deg);
  margin-top: 2px;
}

.nav-dropdown.is-open > .nav-dropdown__toggle {
  color: #d2a25e;
  box-shadow: inset 0 -1px 0 #c49352;
}

.site-header.is-scrolled .nav-dropdown.is-open > .nav-dropdown__toggle {
  color: #b48749;
  box-shadow: inset 0 -1px 0 #b48749;
}

.nav-dropdown.is-open > .nav-dropdown__toggle.is-active {
  color: #d2a25e;
  box-shadow: inset 0 -1px 0 #c49352;
}

.site-header.is-scrolled .nav-dropdown.is-open > .nav-dropdown__toggle.is-active {
  color: #b48749;
  box-shadow: inset 0 -1px 0 #b48749;
}

.nav-dropdown__menu {
  position: absolute;
  top: calc(100% + 1px);
  right: 0;
  left: auto;
  width: 260px;
  max-width: calc(100vw - 32px);
  padding: 0;
  background-color: #f8f5ef;
  color: #1f1b17;
  border: 1px solid #ddd6cc;
  border-radius: 0;
  box-shadow: 0 8px 24px rgba(40, 32, 24, 0.08);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s;
  z-index: 1200;
}

.nav-dropdown.is-open .nav-dropdown__menu {
  opacity: 1;
  visibility: visible;
}

.nav-dropdown__menu--brand,
.nav-dropdown__menu--store {
  min-width: 180px;
  width: auto;
  left: 0;
  right: auto;
  padding: 16px 0;
}

.nav-dropdown--store .nav-dropdown__menu {
  right: 0;
  left: auto;
}

.nav-dropdown__brand-label {
  display: block;
  margin: 0 20px 8px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(120, 105, 85, 0.2);
  color: var(--color-gold);
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.06em;
}

.nav-submenu__link {
  display: block;
  padding: 11px 20px;
  color: #1f1b17;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: -0.02em;
  text-decoration: none;
  background: transparent;
  transition: color 0.2s ease, background-color 0.2s ease;
}

.nav-submenu__link:hover,
.nav-submenu__link:focus-visible {
  background-color: #f1ebe2;
  color: #b77a2d;
}

.site-header.is-scrolled .nav-submenu__link {
  color: #1f1b17;
}

.store-dropdown {
  min-width: 200px;
  padding: 16px 0;
  background-color: #f8f5ef;
  color: #1f1b17;
  border: 1px solid #ddd6cc;
  border-radius: 0;
  box-shadow: 0 6px 20px rgba(40, 32, 24, 0.06);
}

.store-brand {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 0;
  padding: 10px 0;
}

.store-brand:first-child {
  padding-top: 0;
}

.store-brand:last-child {
  padding-bottom: 0;
}

.store-brand + .store-brand {
  border-top: 1px solid #ddd6cc;
}

.store-brand-name {
  display: block;
  margin: 0 0 8px;
  color: #b77a2d;
  font-family: var(--font-en);
  font-size: clamp(12px, 0.85vw, 13px);
  font-weight: var(--fw-semibold);
  line-height: 1;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.store-links {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 24px;
}

.store-links a {
  color: #1f1b17;
  font-family: var(--font-body);
  font-size: var(--text-store-link);
  font-weight: var(--fw-medium);
  line-height: 1.5;
  letter-spacing: -0.01em;
  text-decoration: none;
  white-space: nowrap;
  background: transparent;
  transition: color 0.2s ease;
}

.store-links a:hover,
.store-links a:focus-visible {
  color: #b77a2d;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  background: none;
  border: none;
}

.nav-toggle-bar {
  display: block;
  width: 22px;
  height: 1.5px;
  background: #fff;
  transition: background 0.3s;
}

.site-header.is-scrolled .nav-toggle-bar { background: var(--color-text); }

/* ── Mobile Nav ── */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 1100;
  visibility: hidden;
  pointer-events: none;
  transition: visibility 0.35s;
}

.mobile-nav[aria-hidden="false"] {
  visibility: visible;
  pointer-events: auto;
}

.mobile-nav::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(20, 18, 16, 0.48);
  opacity: 0;
  transition: opacity 0.35s;
}

.mobile-nav[aria-hidden="false"]::before { opacity: 1; }

.mobile-nav-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(320px, 88vw);
  height: 100%;
  background: var(--color-bg-light);
  transform: translateX(100%);
  transition: transform 0.35s ease;
  overflow-y: auto;
}

.mobile-nav[aria-hidden="false"] .mobile-nav-panel { transform: none; }

.mobile-nav-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
}

.mobile-nav-close-icon {
  display: block;
  width: 20px;
  height: 20px;
  margin: auto;
  position: relative;
}

.mobile-nav-close-icon::before,
.mobile-nav-close-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1.5px;
  background: var(--color-text);
}

.mobile-nav-close-icon::before { transform: rotate(45deg); }
.mobile-nav-close-icon::after { transform: rotate(-45deg); }

.mobile-nav-inner {
  padding: 72px 28px 40px;
  min-height: 100%;
}

.mobile-nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mobile-nav-list li,
.mobile-nav-accordion {
  border-bottom: 1px solid var(--color-line);
}

.mobile-nav-list a.is-active {
  color: var(--color-gold-dark);
}

.mobile-accordion {
  padding: 0;
}

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

.mobile-accordion summary::after {
  content: "+";
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 400;
  line-height: 1;
  opacity: 0.55;
  transition: transform 0.2s ease;
}

.mobile-accordion[open] summary::after {
  content: "−";
}

.mobile-nav-list a {
  display: block;
  padding: 17px 0;
  min-height: 44px;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.4;
  text-decoration: none;
  color: var(--color-text);
}

.mobile-accordion summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 17px 0;
  min-height: 44px;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.4;
  color: var(--color-text);
  cursor: pointer;
  list-style: none;
}

.mobile-accordion__brand {
  font-family: var(--font-en);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.03em;
}

.mobile-accordion--brand.is-active > summary {
  color: var(--color-gold-dark);
}

.mobile-accordion .mobile-nav-sub {
  padding: 0 0 12px 14px;
  border-bottom: none;
}

.mobile-nav-sub {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mobile-nav-sub a {
  display: flex;
  align-items: center;
  min-height: 44px;
  padding: 11px 0 11px 14px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  text-decoration: none;
  color: var(--color-text-soft);
}

.mobile-nav-sub a:hover,
.mobile-nav-sub a:focus-visible,
.mobile-nav-sub a.is-active {
  color: var(--color-gold-dark);
}

.mobile-nav-tagline {
  margin: 32px 0 0;
  font-family: var(--font-body);
  font-size: var(--text-body-min);
  letter-spacing: -0.02em;
  color: var(--color-copy);
}

/* ── Hero ── */
.hero {
  position: relative;
  min-height: clamp(660px, 82svh, 850px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #393027;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(
      90deg,
      rgba(26, 21, 17, 0.76) 0%,
      rgba(26, 21, 17, 0.56) 35%,
      rgba(26, 21, 17, 0.16) 65%,
      rgba(26, 21, 17, 0.06) 100%
    ),
    linear-gradient(
      180deg,
      rgba(20, 17, 14, 0.1) 50%,
      rgba(20, 17, 14, 0.3) 100%
    );
}

.hero::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  height: 1px;
  background: rgba(255, 255, 255, 0.16);
  pointer-events: none;
}

.hero-media,
.hero__media {
  position: absolute;
  inset: 0;
}

.hero-media img,
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 52%;
  filter:
    brightness(0.92)
    saturate(0.82)
    contrast(0.97);
}

.hero__overlay {
  display: none;
}

.hero-content-wrap,
.hero__inner {
  position: relative;
  z-index: 2;
  width: min(calc(100% - (var(--page-gutter) * 2)), var(--content-width));
  margin-inline: auto;
  padding-top: var(--header-height);
}

.hero-content,
.hero__copy,
.hero-copy {
  max-width: 760px;
  transform: translateY(12px);
}

.hero-eyebrow {
  margin: 0 0 25px;
  color: #d2a25e;
  font-family: var(--font-en);
  font-size: var(--text-hero-eyebrow);
  font-weight: var(--fw-medium);
  line-height: 1;
  letter-spacing: 0.16em;
}

.hero-title {
  margin: 0;
  color: #fff;
  font-family: var(--font-title);
  font-size: var(--text-hero-title);
  font-weight: var(--fw-normal);
  line-height: var(--lh-hero);
  letter-spacing: -0.045em;
  word-break: keep-all;
  overflow-wrap: break-word;
  text-wrap: balance;
}

.hero-title.display-title {
  color: #fff;
  font-family: var(--font-title);
  letter-spacing: -0.045em;
  line-height: var(--lh-hero);
  font-weight: var(--fw-normal);
  font-size: var(--text-hero-title);
}

.hero-title span {
  display: block;
  white-space: nowrap;
}

.hero-brand-message {
  max-width: 700px;
  margin: clamp(26px, 2.2vw, 32px) 0 0;
  color: rgba(255, 255, 255, 0.93);
  font-family: var(--font-body);
  font-size: var(--text-hero-lead);
  font-weight: var(--fw-medium);
  line-height: 1.8;
  letter-spacing: var(--letter-body);
}

.hero-description {
  margin-top: clamp(14px, 1.4vw, 18px);
  max-width: min(640px, 100%);
  font-family: var(--font-body);
  font-size: var(--text-hero-desc);
  font-weight: var(--fw-normal);
  line-height: 1.78;
  letter-spacing: -0.015em;
  color: rgba(255, 255, 255, 0.9);
  word-break: keep-all;
  overflow-wrap: break-word;
}

.hero-brand-message span {
  display: block;
}

.hero-description span {
  display: block;
}

.hero-actions {
  display: flex;
  gap: 13px;
  margin-top: clamp(26px, 2.2vw, 32px);
}

.hero-action {
  min-width: 150px;
  min-height: 52px;
  padding: 0 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: var(--text-hero-btn);
  font-weight: var(--fw-medium);
  text-decoration: none;
  border-radius: 2px;
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.hero-action--primary {
  background: #bd8e4d;
  border: 1px solid #bd8e4d;
  color: #fff;
}

.hero-action--primary:hover {
  background: #a7793d;
  border-color: #a7793d;
  color: #fff;
}

.hero-action--secondary {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.54);
  color: #fff;
  backdrop-filter: blur(5px);
}

.hero-action--secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.72);
  color: #fff;
}

.hero + .philosophy-section,
.hero + .philosophy {
  margin-top: 0;
}

.hero-reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.hero-reveal.is-visible { opacity: 1; transform: none; }

.hero-content .hero-reveal.is-visible {
  transform: none;
}

.hero-reveal[data-order="2"] { transition-delay: 0.08s; }
.hero-reveal[data-order="3"] { transition-delay: 0.16s; }
.hero-reveal[data-order="4"] { transition-delay: 0.24s; }
.hero-reveal[data-order="5"] { transition-delay: 0.32s; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  min-width: 44px;
  padding: 0 1.875rem;
  font-size: 13px;
  font-weight: var(--fw-semibold);
  line-height: 1;
  letter-spacing: -0.015em;
  text-decoration: none;
  border-radius: 2px;
  border: 1px solid transparent;
  transition: background 0.3s, color 0.3s, border-color 0.3s;
  white-space: nowrap;
}

.btn--gold {
  background: var(--color-gold);
  color: #fff;
  border-color: var(--color-gold);
}

.btn--gold:hover {
  background: var(--color-gold-dark);
  border-color: var(--color-gold-dark);
}

.btn--outline-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.45);
}

.btn--outline-light:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.btn--dark {
  background: var(--color-text);
  color: #fff;
  border-color: var(--color-text);
}

.btn--dark:hover {
  background: var(--color-gold-dark);
  border-color: var(--color-gold-dark);
}

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

.btn--outline:hover {
  border-color: var(--color-gold);
  color: var(--color-gold-dark);
}

/* ── Philosophy ── */
.philosophy {
  background: var(--color-bg-ivory);
}

.philosophy-section.page-section,
.philosophy.page-section {
  padding-top: var(--space-section);
  padding-bottom: var(--space-section);
}

.philosophy__grid {
  display: grid;
  align-items: start;
}

.philosophy-intro,
.philosophy__grid--intro {
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  column-gap: 64px;
  row-gap: 0;
  align-items: start;
}

.philosophy__head {
  min-width: 0;
  padding-left: 0;
}

.philosophy-section .philosophy-title,
.philosophy-section .philosophy-heading {
  width: 100%;
  max-width: 520px;
  margin: var(--space-label-title) 0 0;
  font-family: var(--font-title);
  font-size: var(--text-section-title-size);
  font-weight: var(--fw-normal);
  line-height: var(--leading-section-title);
  letter-spacing: var(--tracking-heading);
  word-break: keep-all;
  overflow-wrap: normal;
  text-wrap: balance;
}

.philosophy-section .philosophy-title span,
.philosophy-section .philosophy-heading span {
  display: block;
  white-space: nowrap;
}

.philosophy-section .philosophy-copy,
.philosophy-section .philosophy-description {
  min-width: 0;
  max-width: var(--copy-max-width);
  margin-top: 0;
  padding-top: 38px;
  font-size: var(--text-body-size);
  line-height: var(--leading-body);
  letter-spacing: var(--tracking-body);
  word-break: keep-all;
  overflow-wrap: normal;
}

.philosophy-section .philosophy-description p + p {
  margin-top: var(--space-paragraph);
}

.philosophy__values,
.philosophy-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: var(--space-content-gap);
  margin-bottom: 0;
  padding-top: 0;
  border-top: 1px solid rgba(42, 35, 28, 0.13);
  gap: 0;
  align-items: stretch;
}

.philosophy__value,
.philosophy-value {
  display: flex;
  flex-direction: column;
  min-height: 0;
  height: 100%;
  padding: 30px 28px;
}

.philosophy__value + .philosophy__value,
.philosophy-value + .philosophy-value {
  padding-left: 28px;
  border-left: 1px solid rgba(42, 35, 28, 0.13);
}

.philosophy__value-num,
.philosophy-value-number,
.philosophy-value__number {
  display: block;
  margin-bottom: 22px;
  color: var(--color-gold);
  font-size: var(--text-card-num);
  font-weight: var(--fw-semibold);
  letter-spacing: 0.08em;
  line-height: 1;
}

.philosophy__value-title,
.philosophy-value h3 {
  margin: 0;
  font-size: var(--text-card-title-size);
  font-weight: var(--fw-semibold);
  line-height: 1.45;
  letter-spacing: -0.025em;
  color: #29241e;
  word-break: keep-all;
}

.philosophy__value-desc,
.philosophy-value p {
  margin: 13px 0 0;
  max-width: none;
  font-size: var(--text-small-size);
  font-weight: var(--fw-normal);
  line-height: var(--leading-small);
  letter-spacing: -0.015em;
  color: var(--color-copy);
  word-break: keep-all;
  overflow-wrap: break-word;
}

.philosophy__value-line {
  display: block;
}

.philosophy-middot {
  padding: 0 0.18em;
}

@media (max-width: 767px) {
  .philosophy__value-line {
    display: inline;
  }

  .philosophy__value-line + .philosophy__value-line::before {
    content: " ";
  }
}

.brand-story-section {
  background: #f7f3eb;
  border-top: 1px solid rgba(43, 36, 28, 0.1);
}

.brand-story-section.page-section {
  /* inherits unified section padding */
}

.section-header {
  margin: 0;
}

.brand-story-header {
  margin-bottom: 24px;
}

.brand-story-header .section-label,
.brand-story-header .section-eyebrow {
  margin-bottom: 0;
}

.story-tabs {
  position: relative;
  z-index: 2;
}

.brand-story-tabs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: 100%;
  margin-top: 0;
  margin-bottom: clamp(48px, 5vw, 64px);
  border-top: 1px solid var(--color-line);
  border-bottom: 1px solid var(--color-line);
  background: transparent;
}

.brand-story-tab,
.product-brand-tab {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 60px;
  padding: 0 24px;
  border: 0;
  background: transparent;
  color: #817a70;
  font-family: var(--font-body);
  font-size: clamp(14px, 1vw, 15px);
  font-weight: var(--fw-medium);
  letter-spacing: -0.015em;
  line-height: 1.2;
  white-space: nowrap;
  cursor: pointer;
  transition: color 0.25s ease;
}

.brand-story-tab + .brand-story-tab,
.product-brand-tab + .product-brand-tab {
  border-left: 1px solid rgba(40, 35, 29, 0.1);
}

.brand-story-tab:hover,
.product-brand-tab:hover {
  color: rgba(40, 35, 29, 0.82);
}

.brand-story-tab.is-active,
.brand-story-tab[aria-selected="true"] {
  color: #211e1a;
  font-weight: 600;
}

.product-brand-tab.is-active,
.product-brand-tab[aria-selected="true"] {
  color: #24201b;
  font-weight: var(--fw-semibold);
}

.brand-story-tab.is-active::after,
.brand-story-tab[aria-selected="true"]::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 1px;
  background: var(--color-gold);
}

.product-brand-tab.is-active::after,
.product-brand-tab[aria-selected="true"]::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 1px;
  background: var(--color-gold);
}

.product-brand-tab[data-product-tab="rising9"].is-active::after,
.product-brand-tab[data-product-tab="rising9"][aria-selected="true"]::after {
  background: var(--color-gold);
}

.product-brand-tab[data-product-tab="elnoir"].is-active::after,
.product-brand-tab[data-product-tab="elnoir"][aria-selected="true"]::after {
  background: var(--color-elnoir);
}

.story-tabs__panels {
  display: grid;
  position: relative;
  width: 100%;
}

.story-tabs__panels > .brand-story-panel,
.story-tabs__panels > .story-panel {
  grid-area: 1 / 1;
  align-self: start;
}

.story-tabs__panels > .brand-story-panel:not([hidden]),
.story-tabs__panels > .story-panel:not([hidden]) {
  z-index: 1;
}

.story-tabs__panels > .brand-story-panel[hidden],
.story-tabs__panels > .story-panel[hidden] {
  z-index: 0;
}

.brand-story-panel,
.story-panel {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: clamp(56px, 6vw, 80px);
  padding: 0;
  margin: 0;
  min-height: 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.brand-story-panel__intro {
  display: grid;
  grid-template-columns: minmax(0, 0.465fr) minmax(0, 0.535fr);
  gap: clamp(64px, 6.5vw, 84px);
  align-items: start;
}

.brand-story-panel.is-active,
.story-panel.is-active {
  opacity: 1;
}

.story-panel.is-leaving {
  opacity: 0;
}

.story-panel[hidden] {
  display: none !important;
}

.brand-story-media,
.brand-story-visual {
  width: 100%;
  margin: 0;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 0;
  background: #ede8df;
}

.brand-story-image,
.brand-story-media img,
.brand-story-visual img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

.brand-story-media--rising9 img,
.brand-story-media--rising9 .brand-story-image {
  object-position: center 55%;
}

.brand-story-media--elnoir img,
.brand-story-media--elnoir .brand-story-image {
  object-position: center center;
}

.brand-story-col--media {
  display: flex;
  flex-direction: column;
  gap: 24px;
  min-width: 0;
}

.brand-story-col--content {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.brand-logo-stage {
  width: 100%;
  height: auto;
  min-height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  flex-shrink: 0;
  overflow: visible;
  text-align: center;
}

.brand-logo {
  display: block;
  object-fit: contain;
  object-position: center;
  margin-inline: auto;
}

.brand-logo--rising9 {
  width: clamp(210px, 16vw, 260px);
  max-width: 260px;
  height: auto;
  transform: none;
}

.brand-logo--elnoir {
  width: clamp(190px, 14vw, 235px);
  max-width: 235px;
  height: auto;
}

.brand-story-title {
  margin: 0;
  max-width: 520px;
  font-family: "Noto Serif KR", var(--font-title);
  font-size: clamp(40px, 4vw, 56px);
  font-weight: 400;
  line-height: 1.32;
  letter-spacing: -0.045em;
  color: #29241e;
  word-break: keep-all;
  overflow-wrap: break-word;
  text-wrap: balance;
}

.brand-story-title span {
  display: block;
  white-space: nowrap;
}

.brand-story-copy {
  margin-top: 26px;
  max-width: var(--copy-max-width);
  font-family: "Pretendard", var(--font-body);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.85;
  letter-spacing: -0.015em;
  color: #3f3a34;
  word-break: keep-all;
  overflow-wrap: break-word;
}

.brand-story-copy p {
  margin: 0;
}

.brand-story-copy p + p {
  margin-top: 18px;
}

.brand-story-copy strong {
  font-weight: 600;
  color: #29241e;
}

/* BRAND STORY typography */
.brand-story-col--content .story-brand-name {
  margin: 0 0 8px;
  font-family: "Cormorant Garamond", var(--font-en);
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.14em;
  color: #b18448;
}

.brand-story-col--content .story-brand-intro-slogan {
  margin: 0 0 22px;
  font-family: "Cormorant Garamond", var(--font-en);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.08em;
  color: #9d794d;
}

.brand-story-col--content .story-brand-title {
  max-width: 620px;
  margin: 0 0 28px;
  font-family: "Noto Serif KR", "Nanum Myeongjo", var(--font-title);
  font-size: clamp(31px, 3.1vw, 44px);
  font-weight: 400;
  line-height: 1.42;
  letter-spacing: -0.04em;
  color: #28231e;
  word-break: keep-all;
  overflow-wrap: break-word;
  text-wrap: balance;
}

.brand-story-col--content .story-brand-title .brand-en {
  display: inline;
  font-family: "Cormorant Garamond", var(--font-en);
  font-weight: 600;
  letter-spacing: 0.015em;
  white-space: nowrap;
}

.brand-story-col--content .story-brand-title span {
  display: inline;
  white-space: normal;
}

.brand-story-col--content .story-brand-copy {
  max-width: var(--copy-max-width);
  margin-top: 0;
  font-family: var(--font-body);
  font-size: var(--text-body-size);
  font-weight: var(--fw-normal);
  line-height: var(--leading-body);
  letter-spacing: var(--tracking-body);
  color: #3e3933;
  word-break: keep-all;
}

.brand-story-col--content .story-brand-copy p {
  margin: 0;
}

.brand-story-col--content .story-brand-copy p + p {
  margin-top: 17px;
}

.brand-story-col--content .story-brand-copy strong {
  font-weight: 600;
  color: #29251f;
}

.brand-story-col--content .story-why-title {
  margin: 0 0 var(--space-label-title);
  padding-top: 0;
  border-top: 0;
  font-family: var(--font-en);
  font-size: var(--text-label-size);
  font-weight: var(--fw-medium);
  line-height: 1.2;
  letter-spacing: var(--tracking-label);
  color: var(--color-gold);
  text-transform: uppercase;
}

.story-why-block {
  max-width: 620px;
  margin-top: 38px;
  padding-top: 28px;
  border-top: 1px solid rgba(177, 132, 72, 0.25);
}

.story-why-block--elnoir {
  border-top-color: transparent;
  background: transparent;
  margin-left: 0;
  margin-right: 0;
  padding: 0;
}

.story-why-block--elnoir .story-why-title {
  color: #6b5d4f;
}

.story-why-heading {
  margin: 0 0 18px;
  font-family: "Noto Serif KR", var(--font-title);
  font-size: clamp(20px, 2vw, 24px);
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: -0.03em;
  color: #2f2a24;
  word-break: keep-all;
}

.brand-story-col--content .story-why-copy {
  max-width: var(--copy-max-width);
  font-family: var(--font-body);
  font-size: var(--text-body-size);
  font-weight: var(--fw-normal);
  line-height: var(--leading-body);
  letter-spacing: var(--tracking-body);
  color: #4a453e;
  word-break: keep-all;
}

.brand-story-col--content .story-why-copy p {
  margin: 0;
}

.brand-story-col--content .story-why-copy p + p {
  margin-top: clamp(16px, 1.2vw, 18px);
}

.brand-story-col--content .story-why-copy strong {
  font-weight: 600;
  color: #29251f;
}

.brand-story-col--content .story-closing-message {
  max-width: var(--copy-max-width-wide);
  margin: clamp(22px, 2.5vw, 26px) 0 0;
  font-family: "Noto Serif KR", var(--font-title);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: var(--letter-title);
  color: #2f2a24;
  word-break: keep-all;
}

.brand-story-col--content .story-bottom-slogan {
  margin: clamp(22px, 2.5vw, 26px) 0 0;
  font-family: "Cormorant Garamond", var(--font-en);
  font-size: 15px;
  font-weight: 500;
  font-style: italic;
  line-height: 1.4;
  letter-spacing: 0.055em;
  color: #ad8149;
}

.brand-story-col--content .story-bottom-slogan + .brand-story-cta {
  /* PC bottom-align uses margin-top:auto on .brand-story-cta */
}

.brand-story-col--content > .story-why-block:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}

.brand-story-col--content .story-bottom-slogan--elnoir {
  color: #6b5d4f;
  letter-spacing: 0.06em;
}

.story-products {
  width: 100%;
  margin-top: clamp(12px, 2vw, 20px);
  padding-top: clamp(36px, 4vw, 48px);
  border-top: 1px solid rgba(41, 37, 31, 0.08);
}

.story-products-header {
  max-width: 720px;
  margin-bottom: clamp(28px, 3vw, 36px);
}

.story-products-label {
  margin: 0 0 10px;
  font-family: "Cormorant Garamond", var(--font-en);
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.14em;
  color: #a87c43;
}

.story-products--elnoir .story-products-label {
  color: #6b5d4f;
}

.story-products-title {
  margin: 0 0 12px;
  font-family: "Noto Serif KR", var(--font-title);
  font-size: clamp(24px, 2.4vw, 30px);
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: -0.03em;
  color: #29241e;
  word-break: keep-all;
}

.story-products-desc {
  margin: 0;
  max-width: 560px;
  font-family: "Pretendard", var(--font-body);
  font-size: 17px;
  line-height: 1.8;
  letter-spacing: -0.015em;
  color: #4a453e;
  word-break: keep-all;
}

.story-products-carousel {
  margin-bottom: clamp(28px, 3vw, 36px);
}

.story-products .product-card {
  flex: 0 0 calc((100% - 72px) / 4);
}

.story-products .product-card__body,
.story-products .product-card-body {
  min-height: 88px;
  padding: 18px 20px 20px;
}

.story-products .product-card__visual,
.story-products .product-image-wrap {
  padding: 18px;
  aspect-ratio: 1 / 1;
}

.story-products .product-card__desc,
.story-products .product-description,
.story-products .product-link-label,
.story-products .product-link-text {
  display: none;
}

.story-products .product-card__name,
.story-products .product-name {
  font-size: 15px;
  line-height: 1.45;
  letter-spacing: -0.02em;
}

.story-products .product-card__cat,
.story-products .product-category {
  margin-bottom: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #9d794d;
}

.story-products--elnoir .product-card__cat,
.story-products--elnoir .product-category {
  color: #7a6a58;
}

.story-store-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  min-height: 48px;
  padding: 0 24px;
  font-size: var(--text-body-min);
  font-weight: var(--fw-medium);
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.brand-story-col--content .story-brand-bottom-slogan {
  margin: 30px 0 24px;
  padding-top: 18px;
  border-top: 1px solid rgba(177, 132, 72, 0.2);
  font-family: "Cormorant Garamond", var(--font-en);
  font-size: 15px;
  font-weight: 500;
  font-style: italic;
  line-height: 1.4;
  letter-spacing: 0.055em;
  color: #b18448;
}

.brand-story-col--content .story-brand-bottom-slogan + .brand-story-cta {
  /* keep margin-top:auto */
}

.brand-story-signature,
.brand-signature {
  margin-top: clamp(24px, 3vw, 32px);
  padding-top: 0;
  border-top: 0;
}

.brand-signature--rising9 .brand-story-signature-en,
.brand-signature--rising9 span.brand-story-signature-en {
  color: #b88743;
}

.brand-signature--elnoir .brand-story-signature-en,
.brand-signature--elnoir span.brand-story-signature-en {
  color: #9a7350;
}

.brand-story-cta {
  width: 100%;
  max-width: none;
  margin-top: auto;
  padding-top: 28px;
}

.brand-story-product-button {
  width: 100%;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  color: #fff;
  background: #1b1814;
  border: 1px solid #1b1814;
  border-radius: 2px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.01em;
  text-decoration: none;
  text-align: center;
}

.brand-story-product-button:hover {
  background: #3a342c;
  border-color: #3a342c;
  color: #fff;
}

.brand-story-store-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  width: 100%;
  margin-top: 10px;
}

.brand-story-store-button {
  width: 100%;
  min-width: 0;
  min-height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  padding: 0 8px;
  color: #1b1814;
  background: transparent;
  border: 1px solid rgba(27, 24, 20, 0.32);
  border-radius: 2px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.01em;
  text-decoration: none;
  text-align: center;
  white-space: nowrap;
}

.brand-story-store-button:hover {
  background: #1b1814;
  border-color: #1b1814;
  color: #fff;
}

.brand-story-signature-en,
.brand-signature span {
  display: block;
  margin-top: 0;
  font-family: var(--font-en);
  font-size: var(--text-brand-slogan-en);
  font-style: normal;
  font-weight: var(--fw-medium);
  letter-spacing: 0.14em;
  color: #b88743;
}

.btn-official,
.btn-official-store {
  background: var(--color-dark);
  border-color: var(--color-dark);
  color: #fff;
}

.btn-official:hover,
.btn-official-store:hover {
  background: #3a342c;
  border-color: #3a342c;
  color: #fff;
}

.btn-naver,
.btn-naver-store {
  background: transparent;
  border: 1px solid rgba(33, 29, 25, 0.35);
  color: #211d19;
}

.btn-naver:hover,
.btn-naver-store:hover {
  background: #211d19;
  border-color: #211d19;
  color: #fff;
}

.brand-store-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
  opacity: 1;
  visibility: visible;
}

.brand-store-actions .store-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 124px;
  min-height: 42px;
  padding: 0 20px;
  box-sizing: border-box;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.01em;
  opacity: 1;
  visibility: visible;
  text-decoration: none;
  white-space: nowrap;
}

.brand-store-actions .store-button--primary {
  color: #fff;
  background: #211d19;
  border: 1px solid #211d19;
}

.brand-store-actions .store-button--primary:hover {
  color: #fff;
  background: #3a342c;
  border-color: #3a342c;
}

.brand-store-actions .store-button--secondary {
  color: #211d19;
  background: rgba(255, 252, 247, 0.65);
  border: 1px solid rgba(33, 29, 25, 0.35);
}

.brand-store-actions .store-button--secondary:hover {
  color: #fff;
  background: #211d19;
  border-color: #211d19;
}

@media (max-width: 480px) {
  .brand-store-actions:not(.brand-story-actions) {
    width: 100%;
    gap: 8px;
  }

  .brand-store-actions:not(.brand-story-actions) .store-button {
    flex: 1 1 calc(50% - 4px);
    min-width: 0;
    padding: 0 12px;
    white-space: normal;
    word-break: keep-all;
  }
}

/* ── Products ── */
.products.page-section,
.selected-products.page-section {
  background: var(--color-paper);
}

.selected-products.page-section {
  padding-top: clamp(50px, 5vw, 70px);
  padding-bottom: clamp(80px, 7vw, 110px);
}

.selected-products .section-label {
  margin: 0;
  font-size: var(--text-label-size);
  letter-spacing: var(--tracking-label);
  line-height: 1.2;
}

.product-tabs__panels {
  display: grid;
  position: relative;
  width: 100%;
  margin-top: var(--space-content-gap);
}

.selected-products .product-tabs__panels {
  margin-top: 0;
}

.product-tabs__panels > .product-panel {
  grid-area: 1 / 1;
  align-self: start;
  width: 100%;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.product-panel.is-active {
  opacity: 1;
}

.product-panel.is-leaving {
  opacity: 0;
}

.product-brand-intro {
  max-width: var(--copy-max-width-wide);
  margin-bottom: clamp(36px, 4vw, 48px);
  padding-top: 0;
  padding-bottom: clamp(28px, 3vw, 36px);
  border-bottom: 1px solid rgba(41, 37, 31, 0.08);
}

.selected-products .product-brand-intro {
  height: auto;
  min-height: 0;
  margin: 0;
  padding: 0;
  border-bottom: 0;
}

.product-brand-eyebrow {
  margin: 0 0 15px;
  min-height: 0;
  color: var(--color-gold);
  font-family: var(--font-en);
  font-size: var(--text-label-size);
  font-weight: var(--fw-medium);
  line-height: 1.2;
  letter-spacing: var(--tracking-label);
  text-align: left;
  text-transform: none;
}

.selected-products .product-brand-eyebrow {
  margin: 0 0 15px;
  min-height: 0;
  font-size: var(--text-label-size);
  font-weight: var(--fw-medium);
  letter-spacing: var(--tracking-label);
}

.product-brand-intro__title {
  margin: 0 0 28px;
  min-height: calc(2 * 1.3em);
  font-family: var(--font-title);
  font-size: var(--text-brand-title-size);
  font-weight: var(--fw-normal);
  line-height: var(--leading-brand-title);
  letter-spacing: -0.035em;
  color: #29241e;
  word-break: keep-all;
}

.selected-products .product-brand-intro__title {
  min-height: 0;
  max-width: 520px;
  margin: 0 0 13px;
  font-size: var(--text-brand-title-size);
  letter-spacing: -0.035em;
  line-height: var(--leading-brand-title);
  word-break: keep-all;
  overflow-wrap: normal;
}

.selected-products .product-brand-intro__title span {
  display: block;
  white-space: nowrap;
}

.product-brand-intro__copy {
  max-width: var(--copy-max-width);
  font-family: var(--font-body);
  font-size: var(--text-body-size);
  line-height: var(--leading-body);
  letter-spacing: var(--tracking-body);
  color: #3e3933;
  word-break: keep-all;
}

.selected-products .product-brand-intro__copy {
  max-width: var(--copy-max-width);
  margin: 0;
  font-size: var(--text-body-size);
  line-height: var(--leading-body);
  letter-spacing: var(--tracking-body);
  word-break: keep-all;
}

.product-brand-intro__copy p {
  margin: 0;
}

.selected-products .product-brand-intro__copy p {
  margin: 0;
}

.product-brand-intro__copy p + p {
  margin-top: clamp(14px, 1.2vw, 16px);
}

.product-brand-intro__copy strong {
  font-weight: 600;
  color: #29251f;
}

.selected-products .products-carousel-wrap {
  position: relative;
  width: 100%;
  margin-top: 32px;
  margin-bottom: 0;
  padding-top: 0;
  border-top: 0;
}

.selected-products .carousel__controls {
  position: static;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 8px;
  margin: 0 0 12px;
}

.selected-products .carousel__btn {
  width: 40px;
  height: 40px;
}

.products-carousel-wrap {
  position: relative;
  width: 100%;
  margin-top: 0;
  margin-bottom: 0;
}

.selected-products .product-card__desc,
.selected-products .product-description,
.selected-products .product-link-label,
.selected-products .product-link-text {
  display: none;
}

.selected-products .product-card__body,
.selected-products .product-card-body {
  min-height: 0;
  padding: 16px 16px 20px;
  display: flex;
  flex-direction: column;
}

.selected-products .product-card__link {
  height: 100%;
}

.selected-products .product-card__visual,
.selected-products .product-image-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  height: auto;
  padding: 0 !important;
  margin: 0;
  overflow: hidden;
  background: #f4efe7;
  display: block;
}

.selected-products .product-card__visual img,
.selected-products .product-image-wrap img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
  padding: 0;
  margin: 0;
  --img-scale: 1;
  transform: scale(var(--img-scale));
  transform-origin: center center;
  transition: transform 0.35s ease;
}

/* package/lifestyle 구분과 무관하게 SELECTED PRODUCTS는 cover로 통일 */
.selected-products .product-card__visual--package,
.selected-products .product-image-wrap.product-card__visual--package,
.selected-products .product-card__visual--lifestyle,
.selected-products .product-image-wrap.product-card__visual--lifestyle {
  padding: 0 !important;
}

.selected-products .product-card__visual--package img,
.selected-products .product-image-wrap.product-card__visual--package img,
.selected-products .product-card__visual--lifestyle img,
.selected-products .product-image-wrap.product-card__visual--lifestyle img {
  object-fit: cover;
  object-position: center;
}

/* 원본 내부 여백 보정 (공통 — 브랜드 무관) */
.selected-products .product-card.image-scale-small img {
  --img-scale: 1.05;
}

.selected-products .product-card.image-scale-medium img {
  --img-scale: 1.08;
}

.selected-products .product-card.image-scale-large img {
  --img-scale: 1.12;
}

.selected-products .product-card.image-position-top img {
  object-position: center top;
}

.selected-products .product-card.image-position-bottom img {
  object-position: center 58%;
}

.selected-products .product-card__link:hover .product-card__visual img,
.selected-products .product-card__link:hover .product-image-wrap img {
  transform: scale(calc(var(--img-scale, 1) * 1.03));
}

.selected-products .product-card__cat,
.selected-products .product-category {
  margin: 0 0 8px;
  font-size: 12px;
  font-weight: var(--fw-medium);
  letter-spacing: 0;
  line-height: 1.3;
}

.selected-products .product-card__name,
.selected-products .product-name {
  min-height: 0;
  font-size: 15px;
  font-weight: var(--fw-semibold);
  line-height: 1.45;
  letter-spacing: -0.025em;
  word-break: keep-all;
}

.product-tabs__list,
.product-brand-tabs {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: clamp(28px, 2.5vw, 34px);
  margin-bottom: 0;
  border-top: 1px solid var(--color-line);
  border-bottom: 1px solid var(--color-line);
  background: #faf8f4;
}

.selected-products .product-brand-tabs {
  margin-top: 24px;
  margin-bottom: 36px;
}

.selected-products .product-brand-tab {
  font-size: var(--text-brand-tab);
  font-weight: var(--fw-medium);
  letter-spacing: -0.01em;
  line-height: 1;
}

.product-panel {
  margin: 0;
  padding: 0;
}

.product-tab .tab-brand-ko,
.product-brand-tab .tab-brand-ko,
.product-tab .tab-brand-sep,
.product-brand-tab .tab-brand-sep,
.product-tab .tab-brand-en,
.product-brand-tab .tab-brand-en {
  font-weight: inherit;
  font-size: inherit;
  color: inherit;
}

.product-tab .tab-brand-sep,
.product-brand-tab .tab-brand-sep {
  margin: 0 0.2em;
}

.tab-name-ko {
  font-weight: 600;
}

.tab-divider {
  font-weight: 400;
  color: rgba(41, 37, 31, 0.28);
}

.tab-name-en {
  font-weight: 500;
}

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

.carousel { position: relative; }

.carousel__controls {
  position: absolute;
  right: 0;
  top: -60px;
  display: flex;
  gap: 10px;
  margin-bottom: 0;
  z-index: 2;
}

.carousel__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  background: var(--color-bg-light);
  border: 1px solid var(--color-line);
  border-radius: 50%;
  color: var(--color-text);
  transition: border-color 0.25s, color 0.25s;
}

.carousel__btn:hover:not(:disabled) {
  border-color: var(--color-gold);
  color: var(--color-gold-dark);
}

.carousel__btn:disabled { opacity: 0.42; cursor: not-allowed; }

.carousel__btn svg { width: 14px; height: 14px; }

.carousel__viewport {
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  cursor: grab;
}

.carousel__viewport::-webkit-scrollbar { display: none; }
.carousel__viewport.is-dragging { cursor: grabbing; scroll-behavior: auto; }

.carousel__track,
.products-track {
  display: flex;
  gap: 22px;
  padding-block: 4px;
}

.product-card {
  position: relative;
  flex: 0 0 calc((100% - 72px) / 4);
  min-width: 0;
  scroll-snap-align: start;
}

.product-card__link {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
  background: #fcfaf6;
  border: 1px solid rgba(41, 37, 31, 0.12);
  border-radius: 2px;
  overflow: hidden;
  transition: border-color 0.25s;
  cursor: pointer;
}

.product-card__link > * {
  position: relative;
  z-index: 2;
}

.product-card__link:hover {
  border-color: rgba(183, 140, 77, 0.55);
}

.product-card__link:hover .product-card__visual img,
.product-card__link:hover .product-image-wrap img {
  transform: scale(1.03);
}

.product-card__visual,
.product-image-wrap {
  margin: 0;
  aspect-ratio: 1 / 1;
  height: auto;
  padding: 18px;
  background: #f4efe7;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-card__visual img,
.product-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.35s ease;
}

.product-card__visual--package,
.product-image-wrap.product-card__visual--package {
  padding: 18px;
  background: #f4efe7;
}

.product-card__visual--package img,
.product-image-wrap.product-card__visual--package img {
  object-fit: contain;
}

.product-card__visual--lifestyle,
.product-image-wrap.product-card__visual--lifestyle {
  padding: 0;
  background: #efe8de;
}

.product-card__visual--lifestyle img,
.product-image-wrap.product-card__visual--lifestyle img {
  object-fit: cover;
}

.product-card__body,
.product-card-body {
  min-height: 170px;
  padding: 24px;
  border-top: 1px solid var(--color-line);
}

.product-card__cat,
.product-category {
  display: block;
  min-height: 20px;
  margin: 0 0 10px;
  font-size: 12px;
  font-weight: var(--fw-medium);
  line-height: 1.3;
  letter-spacing: 0;
  color: #9d743a;
  word-break: keep-all;
}

.product-card__name-wrap {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
}

.product-card__name,
.product-name {
  min-height: 0;
  margin: 0;
  flex: 1;
  font-size: 14px;
  font-weight: var(--fw-semibold);
  line-height: 1.5;
  letter-spacing: -0.025em;
  word-break: keep-all;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-size {
  flex-shrink: 0;
  padding: 4px 8px;
  border: 1px solid var(--color-line);
  border-radius: 2px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--color-copy);
}

.product-card__desc,
.product-card .product-description {
  min-height: 52px;
  margin-top: var(--space-card-title-desc);
  color: var(--color-copy);
  font-size: var(--text-body-min);
  line-height: 1.8;
  letter-spacing: var(--letter-body);
  word-break: keep-all;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-link-label,
.product-link-text {
  position: relative;
  z-index: 3;
  display: inline-block;
  margin-top: 16px;
  font-size: var(--text-body-min);
  font-weight: var(--fw-medium);
  letter-spacing: -0.01em;
  color: var(--color-gold-dark);
  transition: color 0.25s;
}

.product-card__link:hover .product-link-label,
.product-card__link:hover .product-link-text {
  color: var(--color-gold);
}

/* ── Business & Partnership ── */
.business-section.page-section {
  background: var(--color-bg-soft);
  border-top: 1px solid rgba(42, 35, 28, 0.12);
}

.partnership-description p span {
  display: inline;
}

@media (max-width: 767px) {
  .partnership-description p span {
    display: block;
  }
}

.business-header {
  max-width: 760px;
}

.business-title span {
  display: block;
}

.business-intro {
  max-width: var(--copy-max-width-wide);
  margin-top: var(--space-title-copy);
}

.business-intro p {
  margin: 0;
  font-family: var(--font-body);
  word-break: keep-all;
}

.business-intro strong {
  font-weight: 600;
  color: var(--color-text);
}

.business-services {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(24px, 2.5vw, 28px);
  margin-top: var(--space-content-gap);
}

.business-service {
  min-height: 176px;
  padding: 28px 20px 20px 0;
  border-top: 1px solid var(--color-line);
}

.business-service-number {
  display: block;
  margin-bottom: 22px;
  color: var(--color-gold);
  font-size: var(--text-card-num);
  font-weight: var(--fw-semibold);
  letter-spacing: 0.08em;
  line-height: 1;
}

.business-service h3 {
  margin: 0;
  font-size: var(--text-card-title-size);
  font-weight: var(--fw-semibold);
  line-height: 1.45;
  letter-spacing: -0.025em;
  word-break: keep-all;
}

.business-service p,
.business-service .service-description {
  max-width: 280px;
  margin: 13px 0 0;
  color: var(--color-copy);
  font-size: var(--text-small-size);
  line-height: var(--leading-small);
  letter-spacing: -0.015em;
  word-break: keep-all;
  overflow-wrap: break-word;
}

.partnership-section {
  padding-block: clamp(72px, 7vw, 88px);
  background: var(--color-paper);
  border-top: 1px solid rgba(120, 105, 85, 0.18);
}

.partnership-inner {
  width: min(100% - 64px, 1200px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.85fr);
  column-gap: clamp(72px, 8vw, 130px);
  align-items: start;
}

.partnership-content {
  min-width: 0;
}

.partnership-eyebrow {
  display: block;
  margin: 0 0 var(--space-label-title);
  color: var(--color-gold);
  font-family: var(--font-en);
  font-size: var(--text-label-size);
  font-weight: var(--fw-medium);
  line-height: 1.2;
  letter-spacing: var(--tracking-label);
  text-transform: uppercase;
}

.partnership-section .partnership-title {
  margin: 0 0 var(--space-title-copy);
  max-width: 620px;
  font-family: var(--font-title);
  font-size: var(--text-section-title-size);
  font-weight: var(--fw-normal);
  line-height: var(--leading-section-title);
  letter-spacing: var(--tracking-heading);
  word-spacing: normal;
  word-break: keep-all;
  overflow-wrap: normal;
  color: #211e1a;
  white-space: normal;
}

.partnership-section .partnership-description {
  max-width: 510px;
  margin-top: 0;
}

.partnership-section .partnership-description p {
  margin: 0;
  color: #302d29;
  font-family: var(--font-body);
  font-size: var(--text-body-size);
  font-weight: var(--fw-normal);
  line-height: var(--leading-body);
  letter-spacing: var(--tracking-body);
  word-break: keep-all;
  white-space: normal;
}

.partnership-section .partnership-description p + p {
  margin-top: 10px;
}

.partnership-section .partnership-contact {
  width: 100%;
  margin: 54px 0 0;
  padding: 0;
  border-top: 1px solid rgba(120, 105, 85, 0.22);
}

.partnership-section .contact-row {
  min-height: 64px;
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  align-items: center;
  column-gap: 20px;
  margin: 0;
  border-bottom: 1px solid rgba(120, 105, 85, 0.22);
}

.partnership-section .contact-row dt,
.partnership-section .contact-row dd {
  margin: 0;
}

.partnership-section .contact-row dt {
  color: var(--color-gold);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: var(--fw-medium);
  line-height: 1.4;
  letter-spacing: -0.01em;
  text-align: left;
}

.partnership-section .contact-row dd {
  min-width: 0;
  white-space: nowrap;
  color: #211e1a;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: var(--fw-normal);
  line-height: 1.5;
  letter-spacing: -0.015em;
}

.partnership-section .contact-row a {
  color: #211e1a;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: -0.015em;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s ease;
}

.partnership-section .contact-row a:hover,
.partnership-section .contact-row a:focus-visible {
  color: var(--color-gold);
}

@media (max-width: 1024px) {
  .partnership-section {
    padding: 84px 0;
  }

  .partnership-inner {
    width: min(100% - 48px, 900px);
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.8fr);
    column-gap: 52px;
  }

  .partnership-section .partnership-title {
    white-space: normal;
  }

  .partnership-section .partnership-contact {
    margin-top: 48px;
  }
}

@media (max-width: 767px) {
  .partnership-section {
    padding: 42px 0;
  }

  .partnership-inner {
    width: calc(100% - 40px);
    display: grid;
    grid-template-columns: 1fr;
    row-gap: 32px;
  }

  .partnership-eyebrow {
    margin-bottom: 20px;
    font-size: 10px;
    letter-spacing: 0.16em;
  }

  .partnership-section .partnership-title {
    max-width: 100%;
    font-size: 30px;
    line-height: 1.4;
    letter-spacing: -0.025em;
    word-spacing: 0.12em;
    word-break: keep-all;
    white-space: normal;
  }

  .partnership-section .partnership-description {
    max-width: 100%;
    margin-top: 0;
  }

  .partnership-section .partnership-description p {
    font-size: 16px;
    line-height: 1.8;
    letter-spacing: -0.015em;
  }

  .partnership-section .partnership-description p + p {
    margin-top: 10px;
  }

  .partnership-section .partnership-contact {
    margin: 0;
  }

  .partnership-section .contact-row {
    min-height: 60px;
    grid-template-columns: 58px minmax(0, 1fr);
    column-gap: 16px;
  }

  .partnership-section .contact-row dt {
    font-size: 11px;
  }

  .partnership-section .contact-row dd,
  .partnership-section .contact-row a {
    font-size: 13px;
    line-height: 1.5;
  }
}

@media (max-width: 374px) {
  .partnership-inner {
    width: calc(100% - 32px);
  }

  .partnership-section .partnership-title {
    font-size: 29px;
    letter-spacing: -0.025em;
    word-spacing: 0.12em;
  }

  .partnership-section .contact-row {
    grid-template-columns: 52px minmax(0, 1fr);
    column-gap: 12px;
  }

  .partnership-section .contact-row dd,
  .partnership-section .contact-row a {
    font-size: 12px;
  }
}

/* ── Selected Products — mobile alignment ── */
@media (max-width: 767px) {
  .brand-story-section.page-section {
    padding-bottom: clamp(32px, 5vw, 40px);
  }

  .selected-products.page-section {
    padding-top: clamp(32px, 5vw, 40px);
    padding-bottom: clamp(64px, 10vw, 80px);
    overflow-x: clip;
  }

  .selected-products .site-container {
    width: 100%;
    max-width: none;
    padding-inline: 20px;
    margin-inline: auto;
  }

  .selected-products .section-label {
    margin: 0;
    font-size: 9px;
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: 0.08em;
  }

  .selected-products .product-brand-tabs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    margin: 22px 0 26px;
    border-top: 1px solid var(--color-line);
    border-bottom: 1px solid var(--color-line);
  }

  .selected-products .product-tabs__panels {
    margin-top: 0;
  }

  .selected-products .product-brand-tab {
    min-width: 0;
    min-height: 46px;
    height: 46px;
    margin: 0;
    padding: 0 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    font-size: 11px;
    font-weight: 500;
    line-height: 1.15;
    letter-spacing: -0.025em;
  }

  .selected-products .product-brand-tab.is-active,
  .selected-products .product-brand-tab[aria-selected="true"] {
    font-weight: 600;
  }

  .selected-products .product-brand-tab.is-active::after,
  .selected-products .product-brand-tab[aria-selected="true"]::after {
    height: 1px;
  }

  .selected-products .product-brand-intro {
    margin: 0;
    padding: 0;
    min-height: 0;
    border-bottom: 0;
  }

  .selected-products .product-brand-eyebrow {
    min-height: 0;
    margin: 0 0 14px;
    color: var(--color-gold);
    font-size: 11px;
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: 0.08em;
    white-space: normal;
  }

  .selected-products .product-brand-intro__title {
    margin: 0 0 12px;
    min-height: 0;
    max-width: 100%;
    font-size: 24px;
    font-weight: 400;
    line-height: 1.4;
    letter-spacing: -0.035em;
    word-break: keep-all;
    overflow-wrap: normal;
  }

  .selected-products .product-brand-intro__title span {
    display: block;
    white-space: nowrap;
  }

  .selected-products .product-brand-intro__copy {
    max-width: 100%;
    margin: 0;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.7;
    letter-spacing: -0.025em;
    word-break: keep-all;
  }

  .selected-products .product-brand-intro__copy p {
    margin: 0;
  }

  .selected-products .product-brand-intro__copy p:last-child {
    margin-bottom: 0;
  }

  .selected-products .product-brand-intro__copy p + p {
    margin-top: clamp(14px, 1.2vw, 16px);
  }

  .selected-products .product-brand-intro__copy strong {
    font-weight: 600;
  }

  .selected-products .product-panel {
    padding-bottom: 0;
  }

  .selected-products .products-carousel-wrap {
    margin-top: 28px;
    margin-bottom: 0;
    padding-top: 0;
    border-top: 0;
  }

  .selected-products .carousel {
    overflow: hidden;
  }

  .selected-products .carousel__controls {
    position: static;
    display: flex;
    justify-content: flex-end;
    gap: 8px;
    margin: 0 0 14px;
  }

  .selected-products .carousel__btn {
    width: 38px;
    height: 38px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
  }

  .selected-products .carousel__btn svg {
    width: 14px;
    height: 14px;
  }

  .selected-products .carousel__viewport {
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .selected-products .carousel__track {
    display: flex;
    gap: 22px;
    padding: 0 0 4px;
  }

  .selected-products .product-card {
    flex: 0 0 min(84%, 320px);
    max-width: 320px;
    scroll-snap-align: start;
  }

  .selected-products .product-card__visual,
  .selected-products .product-image-wrap {
    width: 100%;
    aspect-ratio: 1 / 1;
    padding: 0 !important;
    overflow: hidden;
  }

  .selected-products .product-card__visual--package,
  .selected-products .product-image-wrap.product-card__visual--package {
    padding: 0 !important;
  }

  .selected-products .product-card__visual img,
  .selected-products .product-image-wrap img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
  }

  .selected-products .product-card__visual--package img,
  .selected-products .product-image-wrap.product-card__visual--package img {
    object-fit: cover;
    object-position: center;
  }

  /* 모바일에서 과도한 확대만 소폭 완화 */
  .selected-products .product-card.image-scale-large img {
    --img-scale: 1.1;
  }

  .selected-products .product-card.image-scale-medium img {
    --img-scale: 1.06;
  }

  .selected-products .product-card__body,
  .selected-products .product-card-body {
    min-height: 0;
    padding: 14px 14px 18px;
  }

  .selected-products .product-card__cat,
  .selected-products .product-category {
    margin: 0 0 8px;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: 0;
  }

  .selected-products .product-card__name,
  .selected-products .product-name {
    margin: 0;
    min-height: 0;
    font-size: 14px;
    font-weight: var(--fw-semibold);
    line-height: 1.45;
    letter-spacing: -0.025em;
    word-break: keep-all;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    overflow: hidden;
  }
}

@media (max-width: 360px) {
  .selected-products .site-container {
    padding-inline: 18px;
  }

  .selected-products .product-card {
    flex: 0 0 calc(82vw - 18px);
  }
}

/* ── Footer ── */
.site-footer {
  padding: 72px 0 24px;
  background: #24211d;
  color: #f5f1ea;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(320px, 1.5fr) minmax(160px, 0.75fr) minmax(160px, 0.75fr);
  align-items: start;
  column-gap: clamp(48px, 7vw, 110px);
  row-gap: 0;
}

.footer-identity {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 13px;
  min-width: 0;
}

.footer-wordmark {
  display: block;
  margin: 0;
  font-family: var(--font-en);
  font-size: var(--text-footer-brand);
  font-weight: var(--fw-semibold);
  line-height: 1;
  letter-spacing: 0.1em;
  color: #f5f1ea;
}

.footer-operating {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px 10px;
  margin: 0;
}

.footer-operating__label {
  color: rgba(245, 241, 234, 0.48);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: -0.01em;
}

.footer-brands {
  margin: 0;
  color: #d0ad72;
  font-family: var(--font-en);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.08em;
}

.footer-business-names {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: -0.015em;
}

.footer-heading,
.footer-column-label {
  display: block;
  margin: 0 0 16px;
  color: #c39a5d;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: var(--fw-semibold);
  line-height: 1;
  letter-spacing: 0.08em;
}

.footer-links,
.footer-social {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 0;
}

.footer-links a,
.footer-social a {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  width: fit-content;
  color: rgba(255, 255, 255, 0.88);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: -0.01em;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s ease;
}

.footer-links a + a,
.footer-social a + a {
  margin-top: 10px;
}

.footer-links a:hover,
.footer-links a:focus-visible,
.footer-social a:hover,
.footer-social a:focus-visible {
  color: #e8d7b5;
}

.footer-bottom {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.11);
}

.footer-bottom small {
  color: rgba(255, 255, 255, 0.48);
  font-family: var(--font-body);
  font-size: 11px;
  line-height: 1.5;
  letter-spacing: 0.01em;
}

@media (min-width: 1024px) {
  .footer-main {
    grid-template-columns: minmax(320px, 1.5fr) minmax(160px, 0.75fr) minmax(160px, 0.75fr);
    align-items: start;
    column-gap: clamp(48px, 7vw, 110px);
  }

  .footer-wordmark,
  .footer-column-label {
    line-height: 1;
  }
}

@media (max-width: 767px) {
  .site-footer {
    padding: 48px 20px 24px;
  }

  .site-footer .site-container {
    width: 100%;
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
  }

  .footer-main {
    grid-template-columns: 1fr;
    align-items: start;
    row-gap: 28px;
    column-gap: 0;
  }

  .footer-identity {
    grid-column: auto;
    gap: 12px;
  }

  .footer-wordmark {
    font-size: clamp(22px, 5.8vw, 26px);
    line-height: 1.2;
    white-space: normal;
    word-break: keep-all;
  }

  .footer-links,
  .footer-social {
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 0;
  }

  .footer-links a,
  .footer-social a {
    font-size: 13px;
    line-height: 1.5;
  }

  .footer-bottom {
    margin-top: 28px;
    padding-top: 24px;
  }
}

/* ── Responsive ── */
@media (max-width: 1200px) {
  .nav-links--desktop { gap: 12px; }
}

@media (max-width: 1024px) {
  .header-inner,
  .hero-content-wrap,
  .hero__inner {
    width: min(100% - 56px, 1240px);
  }
}

@media (max-width: 767px) {
  :root {
    --header-height: 70px;
    --page-gutter: 20px;
  }

  .site-header {
    height: 70px;
  }

  .header-inner,
  .hero-content-wrap,
  .hero__inner {
    width: min(100% - 40px, 1240px);
  }

  .wordmark-rising9,
  .header-wordmark-main {
    font-size: var(--text-wordmark-mobile);
  }

  .wordmark-company,
  .header-wordmark-company {
    font-size: 9px;
  }

  .hero {
    min-height: 680px;
    height: auto;
    align-items: flex-end;
    padding-top: 100px;
    padding-bottom: 48px;
  }

  .hero-content-wrap,
  .hero__inner {
    padding: 88px 24px 48px;
  }

  .hero-title,
  .hero .hero__copy .hero-title,
  .hero .hero-title,
  #home .hero-title,
  .hero-title.display-title {
    width: 100%;
    max-width: 620px;
    margin: 0 0 24px;
    font-size: clamp(36px, 9.5vw, 43px);
    font-weight: var(--fw-normal);
    line-height: 1.17;
    letter-spacing: -0.05em;
  }

  .hero-title span {
    white-space: normal;
  }

  .hero-brand-message {
    margin-top: 20px;
    font-size: var(--text-hero-lead-mobile);
    line-height: 1.78;
  }

  .hero-description {
    margin-top: 16px;
    font-size: var(--text-hero-desc-mobile);
    line-height: 1.78;
  }

  .hero-description span {
    display: block;
    white-space: normal;
  }

  .hero-brand-message span {
    white-space: normal;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-top: 22px;
    gap: 10px;
  }

  .hero-action {
    min-width: 0;
    min-height: 52px;
    padding-inline: 18px;
  }

  .hero-media img,
  .hero__media img {
    object-position: 62% center;
  }

  .hero::before {
    background:
      linear-gradient(
        180deg,
        rgba(24, 20, 16, 0.18) 0%,
        rgba(24, 20, 16, 0.42) 40%,
        rgba(24, 20, 16, 0.8) 100%
      );
  }

  .philosophy-title span,
  .philosophy-heading span {
    display: block;
    white-space: normal;
  }

  .philosophy-title span + span::before,
  .philosophy-heading span + span::before {
    content: none;
  }

  .philosophy-intro,
  .philosophy__grid--intro {
    grid-template-columns: 1fr;
    gap: clamp(20px, 5vw, 26px);
  }

  .brand-story-tab {
    min-height: 60px;
    padding: 0 clamp(8px, 2.5vw, 16px);
    font-size: clamp(13px, 3.2vw, 15px);
    white-space: nowrap;
  }

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

  .brand-story-title span {
    display: inline;
    white-space: normal;
  }

  .brand-story-title span.brand-en {
    white-space: nowrap;
  }

  .brand-story-col--content .story-brand-title {
    font-size: clamp(27px, 8vw, 35px);
    line-height: 1.45;
    letter-spacing: -0.04em;
    margin-bottom: 22px;
  }

  .brand-story-col--content .story-brand-copy {
    font-size: 16px;
    line-height: 1.85;
    letter-spacing: -0.015em;
  }

  .brand-story-col--content .story-brand-copy p + p {
    margin-top: 16px;
  }

  .brand-story-col--content .story-why-title {
    margin-top: 0;
    padding-top: 0;
    font-size: 16px;
  }

  .brand-story-col--content .story-why-copy {
    font-size: 16px;
    line-height: 1.78;
    letter-spacing: -0.015em;
  }

  .brand-story-col--content .story-why-copy p + p {
    margin-top: 16px;
  }

  .brand-story-col--content .story-closing-message {
    font-size: 18px;
    line-height: 1.62;
    margin-top: 18px;
  }

  .brand-story-col--content .story-brand-intro-slogan,
  .brand-story-col--content .story-bottom-slogan {
    font-size: 14px;
  }

  .brand-story-title {
    font-size: clamp(32px, 8vw, 40px);
    line-height: 1.32;
  }

  .brand-story-copy {
    font-size: 16px;
    line-height: 1.85;
  }

  .philosophy-title,
  .philosophy-heading,
  .business-title,
  .display-title {
    font-size: clamp(30px, 8vw, 38px);
    line-height: 1.28;
    letter-spacing: -0.045em;
  }

  .philosophy-title,
  .philosophy-heading {
    max-width: 100%;
    font-size: clamp(28px, 7.4vw, 36px);
    line-height: 1.28;
    letter-spacing: -0.05em;
  }

  .section-label {
    font-size: var(--text-section-label-mobile);
  }

  .brand-story-signature-ko,
  .brand-signature p {
    font-size: var(--text-brand-signature-mobile);
  }

  .philosophy-copy,
  .story-description,
  .business-intro {
    font-size: var(--text-section-copy-mobile);
  }

  .philosophy__value-title,
  .philosophy-value h3,
  .business-service h3 {
    font-size: var(--text-card-title-mobile);
  }

  .philosophy__value-desc,
  .philosophy-value p,
  .business-service p {
    font-size: var(--text-card-desc-mobile);
  }

  .brand-story-signature-ko,
  .brand-signature p {
    font-size: var(--text-brand-signature-mobile);
  }

  .brand-story-signature-en,
  .brand-signature span {
    font-size: var(--text-brand-slogan-en-mobile);
  }

  .display-title span {
    display: inline;
  }

  .display-title span + span::before {
    content: " ";
  }

  .business-services {
    grid-template-columns: 1fr;
    margin-top: 44px;
    gap: 22px;
  }

  .business-service {
    min-height: auto;
    padding: 22px 0;
  }

  .story-products .product-card {
    flex: 0 0 72%;
  }

  .brand-story-panel,
  .story-panel {
    gap: 0;
    padding: 0;
    min-height: 0;
  }

  .brand-story-panel__intro {
    grid-template-columns: 1fr;
    grid-template-areas:
      "logo"
      "media"
      "content";
    gap: 0;
  }

  .brand-story-col--media {
    display: contents;
  }

  .brand-story-col--content {
    grid-area: content;
    display: flex;
    flex-direction: column;
    margin-top: 0;
  }

  .brand-logo-stage {
    grid-area: logo;
    width: 100%;
    max-width: 100%;
    height: 120px;
    min-height: 120px;
    margin: 24px 0 22px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
    text-align: center;
  }

  .brand-logo {
    display: block;
    width: auto;
    height: auto;
    object-fit: contain;
    object-position: center;
    margin-left: auto;
    margin-right: auto;
  }

  .brand-logo--rising9 {
    width: clamp(150px, 43vw, 168px);
    max-width: clamp(150px, 43vw, 168px);
    max-height: 104px;
    height: auto;
  }

  .brand-logo--elnoir {
    width: clamp(178px, 51vw, 198px);
    max-width: clamp(178px, 51vw, 198px);
    max-height: 68px;
    height: auto;
    transform: none;
  }

  .brand-story-media,
  .brand-story-visual {
    grid-area: media;
    width: 100%;
    max-width: 100%;
    aspect-ratio: 3 / 2;
    margin: 0;
    overflow: hidden;
    border-radius: 0;
  }

  .brand-story-media img,
  .brand-story-visual img,
  .brand-story-image {
    display: block;
    width: 100%;
    height: 100%;
    margin: 0;
    aspect-ratio: auto;
    object-fit: cover;
    object-position: center center;
  }

  .story-why-block--elnoir {
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .brand-story-title {
    margin-bottom: 0;
  }

  .brand-story-copy {
    margin-top: 22px;
  }

  .brand-story-signature,
  .brand-signature {
    margin-top: 22px;
  }

  .brand-story-cta {
    margin-top: 0;
  }

  .brand-story-col--media,
  .brand-story-col--content {
    min-width: 0;
  }

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

  .story-why-heading {
    font-size: 19px;
  }
}

@media (max-width: 1023px) {
  .brand-story-panel__intro {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 48px;
  }

  .brand-story-copy {
    margin-top: 26px;
  }

  .story-products .product-card {
    flex: 0 0 calc((100% - 24px) / 2);
  }

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

  .product-card {
    flex: 0 0 calc((100% - 24px) / 2);
  }
}

@media (max-width: 1024px) {
  .nav-links--desktop { display: none; }
  .nav-toggle { display: flex; }

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

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

  .philosophy__values,
  .philosophy-values {
    grid-template-columns: 1fr;
  }

  .philosophy__value,
  .philosophy-value {
    min-height: auto;
    padding: 28px 0;
  }

  .philosophy__value + .philosophy__value,
  .philosophy-value + .philosophy-value {
    padding-left: 0;
    border-left: 0;
    border-top: 1px solid rgba(39, 35, 30, 0.1);
    margin-top: 0;
  }

  .philosophy__value-num,
  .philosophy-value-number,
  .philosophy-value__number {
    margin-bottom: 22px;
  }

  .philosophy__value-desc {
    max-width: none;
  }
}

@media (min-width: 430px) and (max-width: 767px) {
  .hero {
    min-height: 650px;
  }
}

@media (max-width: 430px) {
  .hero-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .hero-action {
    width: 100%;
    min-width: 0;
    min-height: 50px;
    padding: 0 8px;
    font-size: 12px;
    white-space: nowrap;
  }
}

/* ── Mobile polish (320–767px) ── */
@media (max-width: 767px) {
  :root {
    --header-height: 78px;
    --scroll-offset: 106px;
    --letter-label: 0.13em;
    --text-section-label-mobile: 11.5px;
    --text-hero-title-mobile: clamp(36px, 9.5vw, 43px);
    --text-section-title-mobile: clamp(30px, 8vw, 38px);
    --lh-hero-mobile: 1.17;
    --lh-title-mobile: 1.28;
  }

  main,
  .site-container,
  .partnership-inner,
  .header-inner {
    min-width: 0;
  }

  .site-container,
  .partnership-inner {
    width: 100%;
    max-width: none;
    margin-inline: auto;
    padding-inline: 20px;
  }

  .header-inner {
    width: 100%;
    max-width: none;
    padding-inline: 20px;
  }

  .page-section:not(.hero) {
    padding-block: clamp(64px, 10vw, 80px);
  }

  .section-header {
    margin-bottom: 28px;
  }

  .section-label,
  .section-eyebrow {
    margin-bottom: 24px;
  }

  .section-title + .section-description,
  .display-title + .philosophy-copy,
  .display-title + .business-intro,
  .display-title + .partnership-description {
    margin-top: 20px;
  }

  /* ── Philosophy spacing ── */
  .philosophy-section.page-section,
  .philosophy.page-section {
    padding-top: 36px;
    padding-bottom: 0;
  }

  .philosophy__head .section-label {
    margin-bottom: 30px;
  }

  .philosophy-title,
  .philosophy-heading {
    margin-bottom: 24px;
  }

  .philosophy-copy {
    margin-top: 0;
  }

  .philosophy-intro,
  .philosophy__grid--intro {
    gap: 0;
  }

  /* ── Section labels (English only) ── */
  .section-label,
  .section-eyebrow,
  .partnership-eyebrow {
    font-family: var(--font-en);
    font-size: 11.5px;
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: 0.13em;
    text-transform: uppercase;
  }

  .story-why-title,
  .product-brand-eyebrow,
  .selected-products .section-label {
    letter-spacing: 0.08em;
    line-height: 1.4;
  }

  .selected-products .section-label {
    margin: 0;
  }

  .story-bottom-slogan,
  .brand-tagline {
    font-size: 13px;
    line-height: 1.4;
    letter-spacing: 0.1em;
  }

  /* ── Korean titles ── */
  .hero-title,
  .hero-title.display-title {
    width: 100%;
    max-width: 620px;
    margin: 0 0 24px;
    font-size: clamp(36px, 9.5vw, 43px);
    line-height: 1.17;
    letter-spacing: -0.05em;
    word-break: keep-all;
    overflow-wrap: break-word;
    white-space: normal;
  }

  .hero-title span,
  .hero-title.display-title span {
    display: block;
    white-space: normal;
  }

  .hero-title.display-title span + span::before {
    content: none;
  }

  .philosophy-title,
  .philosophy-heading,
  .business-title,
  .display-title {
    width: 100%;
    max-width: 100%;
    margin: 0;
    font-size: clamp(30px, 8vw, 38px);
    line-height: 1.28;
    letter-spacing: -0.045em;
    word-break: keep-all;
    overflow-wrap: break-word;
    white-space: normal;
  }

  .philosophy-title,
  .philosophy-heading {
    font-size: clamp(28px, 7.4vw, 36px);
    line-height: 1.28;
    letter-spacing: -0.05em;
  }

  .partnership-section .partnership-title {
    width: 100%;
    max-width: 100%;
    margin: 26px 0 24px;
    font-size: 30px;
    line-height: 1.4;
    letter-spacing: -0.025em;
    word-spacing: 0.12em;
    word-break: keep-all;
    overflow-wrap: break-word;
    white-space: normal;
  }

  .partnership-section .partnership-description,
  .partnership-section .partnership-description p {
    max-width: 100%;
    margin: 0;
    font-size: 16px;
    line-height: 1.8;
    letter-spacing: -0.015em;
    word-break: keep-all;
    overflow-wrap: break-word;
    white-space: normal;
  }

  .partnership-section .partnership-description p + p {
    margin-top: 10px;
  }

  .philosophy-title span,
  .philosophy-heading span,
  .business-title.display-title span {
    display: block;
    white-space: normal;
  }

  .philosophy-title.display-title span + span::before,
  .business-title.display-title span + span::before {
    content: none;
  }

  .display-title span {
    white-space: normal;
  }

  /* ── Korean body copy ── */
  .philosophy-copy,
  .philosophy-copy p,
  .business-intro,
  .business-intro p,
  .brand-story-col--content .story-why-copy,
  .brand-story-col--content .story-why-copy p,
  .brand-story-copy,
  .brand-story-copy p {
    max-width: 100%;
    margin: 0;
    font-size: 16px;
    line-height: 1.78;
    letter-spacing: -0.015em;
    word-break: keep-all;
    overflow-wrap: break-word;
    white-space: normal;
  }

  .philosophy-copy__lead + p,
  .philosophy-copy p + p:not(.philosophy-copy__lead) {
    margin-top: 18px;
  }

  .philosophy-copy p + p,
  .business-intro p + p,
  .brand-story-col--content .story-why-copy p + p,
  .brand-story-copy p + p {
    margin-top: 16px;
  }

  .philosophy-copy p + p {
    margin-top: 18px;
  }

  .philosophy-copy p:last-child {
    margin-bottom: 0;
  }

  .philosophy-title,
  .business-title {
    max-width: 100%;
  }

  .philosophy-copy,
  .business-intro,
  .brand-story-copy,
  .story-why-copy {
    max-width: 100%;
  }

  /* ── Header ── */
  .site-header {
    height: 78px;
  }

  .header-inner {
    height: 78px;
  }

  .header-wordmark {
    max-width: 252px;
    min-width: 0;
  }

  .nav-toggle {
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
    margin: 0;
    padding: 0;
  }

  /* ── Hero ── */
  .hero {
    position: relative;
    width: 100%;
    min-height: 680px;
    height: auto;
    padding: 100px 0 48px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
  }

  .hero::before {
    background:
      linear-gradient(
        180deg,
        rgba(20, 16, 12, 0.2) 0%,
        rgba(20, 16, 12, 0.32) 45%,
        rgba(20, 16, 12, 0.6) 100%
      );
  }

  .hero-media img,
  .hero__media img {
    object-position: 56% center;
  }

  .hero-content-wrap,
  .hero__inner {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    margin: 0 auto;
    padding: 88px 24px 48px;
    box-sizing: border-box;
    transform: none;
    left: auto;
    right: auto;
  }

  .hero-content,
  .hero__copy,
  .hero-copy {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    margin: 0;
    padding: 0;
    transform: none;
  }

  .hero-eyebrow,
  .hero-title,
  .hero-brand-message,
  .hero-description,
  .hero-actions,
  .hero-reveal {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    margin-left: 0;
    margin-right: 0;
    transform: none;
    text-align: left;
    box-sizing: border-box;
  }

  .hero-eyebrow {
    display: block;
    margin: 0 0 18px;
    font-size: 11.5px;
    line-height: 1.4;
    letter-spacing: 0.13em;
    white-space: normal;
  }

  .hero-title,
  .hero-title.display-title {
    margin: 0 0 24px;
    font-size: clamp(36px, 9.5vw, 43px);
    line-height: 1.17;
    letter-spacing: -0.05em;
    word-break: keep-all;
    overflow-wrap: break-word;
    white-space: normal;
  }

  .hero-title span,
  .hero-title.display-title span {
    display: block;
    white-space: normal;
  }

  .hero-brand-message {
    margin-top: 18px;
    font-size: 16.5px;
    line-height: 1.78;
    letter-spacing: -0.015em;
  }

  .hero-brand-message span + span {
    margin-top: 6px;
  }

  .hero-description {
    margin-top: 14px;
    max-width: 100%;
    font-size: 16px;
    line-height: 1.78;
    letter-spacing: -0.015em;
  }

  .hero-description span + span {
    margin-top: 6px;
  }

  .hero-actions {
    margin-top: 20px;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .hero-action {
    width: 100%;
    min-width: 0;
    min-height: 50px;
    margin: 0;
    padding: 0 8px;
    font-size: 12px;
    line-height: 1.2;
    white-space: nowrap;
    box-sizing: border-box;
  }

  /* ── Brand Story mobile unify ── */
  .brand-story-section,
  #story-rising9,
  #story-elnoir {
    scroll-margin-top: 72px;
  }

  .brand-story-section.page-section {
    padding-top: clamp(52px, 10vw, 64px);
    padding-bottom: 0;
  }

  .brand-story-section .site-container {
    width: 100%;
    max-width: 100%;
    padding-left: 20px;
    padding-right: 20px;
    box-sizing: border-box;
  }

  .brand-story-section .section-header,
  .brand-story-header {
    margin-bottom: 24px;
  }

  .brand-story-header .section-label,
  .brand-story-header .section-eyebrow {
    margin-bottom: 0;
  }

  .brand-story-tabs {
    width: 100%;
    max-width: 100%;
    margin-top: 0;
    margin-bottom: 0;
  }

  .story-tabs__panels {
    display: block;
    width: 100%;
    max-width: 100%;
    margin-top: 0;
    min-height: 0 !important;
  }

  .story-tabs__panels > .brand-story-panel,
  .story-tabs__panels > .story-panel {
    grid-area: auto;
    align-self: auto;
  }

  .story-tabs__panels > .brand-story-panel[hidden],
  .story-tabs__panels > .story-panel[hidden],
  .brand-story-panel[hidden],
  .story-panel[hidden] {
    display: none !important;
    margin: 0;
    padding: 0;
    height: 0;
    min-height: 0;
    overflow: hidden;
  }

  .brand-story-tab {
    min-width: 0;
    min-height: 58px;
    height: 58px;
    padding: 10px 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 15px;
    line-height: 1.25;
    letter-spacing: -0.035em;
    white-space: normal;
    word-break: keep-all;
  }

  .brand-story-panel,
  .story-panel,
  #story-rising9.brand-story-panel,
  #story-elnoir.brand-story-panel {
    box-sizing: border-box;
    position: static;
    display: block;
    flex-direction: column;
    gap: 0;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    height: auto;
    min-height: 0;
    margin: 0;
    padding: 0 0 64px;
    transform: none;
    align-self: auto;
    background: transparent;
  }

  .brand-story-panel.is-active,
  .story-panel.is-active {
    display: block;
  }

  .brand-story-panel__intro,
  .brand-story-col--media,
  .brand-story-col--content,
  .brand-story-media,
  .brand-story-visual,
  .story-why-block {
    position: static;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    height: auto;
    min-height: 0;
    margin: 0;
    padding: 0;
    transform: none;
    align-self: auto;
  }

  .brand-story-panel__intro {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .brand-story-col--media {
    display: contents;
  }

  .brand-story-col--content {
    display: flex;
    flex-direction: column;
    margin-top: 0;
    min-width: 0;
    width: 100%;
    max-width: 100%;
  }

  /* Logo slot: fixed height, shared optical center */
  .brand-logo-stage,
  #story-rising9 .brand-logo-stage,
  #story-elnoir .brand-logo-stage {
    width: 100%;
    max-width: 100%;
    height: 120px;
    min-height: 120px;
    margin: 24px 0 22px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: visible;
    box-sizing: border-box;
    transform: none;
  }

  .brand-logo,
  #story-rising9 .brand-logo,
  #story-elnoir .brand-logo {
    display: block;
    width: auto;
    height: auto;
    margin: 0 auto;
    object-fit: contain;
    object-position: center;
    transform: none;
  }

  .brand-logo--rising9,
  #story-rising9 .brand-logo--rising9 {
    width: clamp(150px, 43vw, 168px);
    max-width: clamp(150px, 43vw, 168px);
    max-height: 104px;
    height: auto;
  }

  .brand-logo--elnoir,
  #story-elnoir .brand-logo--elnoir {
    width: clamp(178px, 51vw, 198px);
    max-width: clamp(178px, 51vw, 198px);
    max-height: 68px;
    height: auto;
  }

  /* Hero image: identical 3/2 frame */
  .brand-story-media,
  .brand-story-visual,
  #story-rising9 .brand-story-media,
  #story-rising9 .brand-story-visual,
  #story-elnoir .brand-story-media,
  #story-elnoir .brand-story-visual {
    width: 100%;
    max-width: 100%;
    aspect-ratio: 3 / 2;
    height: auto;
    margin: 0;
    padding: 0;
    overflow: hidden;
    border-radius: 0;
    background: #ede8df;
  }

  .brand-story-media img,
  .brand-story-visual img,
  .brand-story-image,
  #story-rising9 .brand-story-media img,
  #story-rising9 .brand-story-visual img,
  #story-rising9 .brand-story-image,
  #story-elnoir .brand-story-media img,
  #story-elnoir .brand-story-visual img,
  #story-elnoir .brand-story-image {
    display: block;
    width: 100%;
    height: 100%;
    margin: 0;
    aspect-ratio: auto;
    object-fit: cover;
    object-position: center center;
    transform: none;
  }

  .brand-story-col--content > .story-why-block:first-child,
  .story-why-block,
  .story-why-block--rising9,
  .story-why-block--elnoir {
    margin: 0;
    padding: 0;
    border-top: 0;
    max-width: 100%;
    width: 100%;
    background: transparent;
  }

  .brand-story-col--content .story-why-title,
  #story-rising9 .brand-story-col--content .story-why-title,
  #story-elnoir .brand-story-col--content .story-why-title {
    margin: 40px 0 24px;
    padding: 0;
    text-align: left;
  }

  .brand-story-col--content .story-why-copy,
  .brand-story-col--content .story-why-copy p,
  #story-rising9 .brand-story-col--content .story-why-copy,
  #story-rising9 .brand-story-col--content .story-why-copy p,
  #story-elnoir .brand-story-col--content .story-why-copy,
  #story-elnoir .brand-story-col--content .story-why-copy p {
    width: 100%;
    max-width: 100%;
    margin: 0;
    word-break: keep-all;
    overflow-wrap: break-word;
  }

  .brand-story-col--content .story-why-copy p + p,
  .brand-story-col--content .story-closing-message,
  #story-rising9 .brand-story-col--content .story-why-copy p + p,
  #story-rising9 .brand-story-col--content .story-closing-message,
  #story-elnoir .brand-story-col--content .story-why-copy p + p,
  #story-elnoir .brand-story-col--content .story-closing-message {
    margin-top: 20px;
  }

  .brand-story-col--content .story-bottom-slogan,
  .brand-story-col--content .story-bottom-slogan--elnoir,
  #story-rising9 .brand-story-col--content .story-bottom-slogan,
  #story-elnoir .brand-story-col--content .story-bottom-slogan {
    margin: 26px 0 0;
    padding: 0;
    text-align: left;
  }

  .brand-story-col--content .story-bottom-slogan + .brand-story-cta,
  #story-rising9 .brand-story-col--content .story-bottom-slogan + .brand-story-cta,
  #story-elnoir .brand-story-col--content .story-bottom-slogan + .brand-story-cta {
    margin-top: 0;
  }

  .brand-story-col--content,
  #story-rising9 .brand-story-col--content,
  #story-elnoir .brand-story-col--content {
    height: auto;
  }

  .brand-story-cta,
  #story-rising9 .brand-story-cta,
  #story-elnoir .brand-story-cta {
    width: 100%;
    max-width: none;
    margin: 0;
    padding-top: 26px;
    align-self: stretch;
  }

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

  .brand-story-product-button {
    min-height: 50px;
    font-size: 14px;
  }

  .brand-story-store-button {
    min-height: 48px;
    font-size: 13px;
  }

  /* ── Selected Products overflow fix ── */
  .selected-products.page-section {
    padding-top: clamp(32px, 5vw, 40px);
    padding-bottom: clamp(64px, 10vw, 80px);
    overflow-x: clip;
  }

  .product-tabs,
  .product-tabs__panels,
  .product-panel,
  .product-brand-intro,
  .product-brand-intro__title,
  .product-brand-intro__copy {
    min-width: 0;
    max-width: 100%;
  }

  .selected-products .product-brand-intro__title {
    display: block;
    width: 100%;
    max-width: 100%;
    margin: 0 0 12px;
    font-size: 24px;
    line-height: 1.4;
    letter-spacing: -0.035em;
    white-space: normal;
    word-break: keep-all;
    overflow-wrap: normal;
  }

  .selected-products .product-brand-intro__title span {
    display: block;
    white-space: nowrap;
  }

  .selected-products .product-brand-intro__copy {
    width: 100%;
    max-width: 100%;
    margin: 0;
    font-size: 13px;
    line-height: 1.7;
    letter-spacing: -0.025em;
    word-break: keep-all;
  }

  .selected-products .product-brand-intro__copy p {
    margin: 0;
  }

  .selected-products .product-brand-intro__copy p + p {
    margin-top: clamp(14px, 1.2vw, 16px);
  }

  .selected-products .products-carousel-wrap {
    margin-top: 28px;
    margin-bottom: 0;
    padding-top: 0;
    border-top: 0;
  }

  .selected-products .carousel__viewport {
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    overscroll-behavior-inline: contain;
    -webkit-overflow-scrolling: touch;
  }

  .selected-products .carousel__track {
    width: max-content;
    max-width: none;
  }

  .selected-products .product-card {
    flex: 0 0 min(82%, 330px);
    width: min(82%, 330px);
    min-width: 0;
    max-width: 330px;
  }

  /* ── Business ── */
  .business-services {
    margin-top: 40px;
    gap: 22px;
  }

  .business-service {
    min-width: 0;
    min-height: 0;
    padding: 20px 0 24px;
  }

  .business-service-number {
    margin-bottom: 20px;
    font-size: 13px;
    letter-spacing: 0.08em;
  }

  .business-service h3 {
    margin: 0 0 0;
    font-size: 22px;
    line-height: 1.4;
    letter-spacing: -0.028em;
    word-break: keep-all;
  }

  .business-service p,
  .business-service .service-description {
    max-width: 100%;
    margin-top: var(--space-card-title-desc);
    font-size: 16px;
    line-height: 1.8;
    letter-spacing: -0.015em;
    word-break: keep-all;
  }

  /* ── Partnership ── */
  .partnership-section {
    padding-block: 42px;
    overflow-x: clip;
  }

  .partnership-inner {
    width: 100%;
    padding-inline: 20px;
  }

  .partnership-section .partnership-eyebrow {
    margin-bottom: 24px;
  }

  .partnership-section .partnership-title {
    margin: 26px 0 22px;
  }

  .partnership-section .partnership-description {
    margin-bottom: 32px;
    max-width: 100%;
  }

  .partnership-section .contact-row {
    min-height: 76px;
    grid-template-columns: 92px minmax(0, 1fr);
    column-gap: 12px;
    padding: 18px 0;
  }

  .partnership-section .contact-row dt {
    font-size: 14px;
    line-height: 1.4;
    letter-spacing: -0.01em;
  }

  .partnership-section .contact-row dd,
  .partnership-section .contact-row a {
    min-width: 0;
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: -0.02em;
    word-break: break-all;
    white-space: normal;
  }

  /* Footer mobile layout is owned by the dedicated footer @media (max-width: 767px) block */
}

@media (max-width: 389px) {
  .business-services {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

@media (min-width: 390px) and (max-width: 767px) {
  .business-services {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 24px;
    row-gap: 42px;
  }
}

@media (min-width: 430px) and (max-width: 767px) {
  .hero {
    min-height: 650px;
  }
}

/* ── BRAND STORY PC (1024px+) ── */
@media (min-width: 1024px) {
  .brand-story-section.page-section {
    padding-top: clamp(88px, 8vw, 110px);
    padding-bottom: clamp(50px, 5vw, 70px);
  }

  .brand-story-section .site-container {
    width: min(calc(100% - 96px), 1200px);
    max-width: 1200px;
  }

  .brand-story-header {
    margin-bottom: 28px;
  }

  .brand-story-tabs {
    width: 100%;
    max-width: 100%;
    margin-bottom: 0;
    background: transparent;
  }

  .brand-story-tab {
    min-height: 62px;
    padding: 16px 20px;
    font-size: 15px;
    line-height: 1.3;
  }

  .story-tabs__panels {
    width: 100%;
  }

  .brand-story-panel,
  .story-panel {
    gap: 0;
    padding-top: 48px;
    padding-bottom: 0;
    background: transparent;
  }

  .story-tabs__panels {
    min-height: 0 !important;
  }

  .brand-story-panel__intro {
    display: grid;
    grid-template-columns: minmax(0, 48%) minmax(0, 52%);
    column-gap: 64px;
    row-gap: 0;
    align-items: stretch;
    width: 100%;
  }

  .brand-story-col--media {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    min-width: 0;
    gap: 0;
    margin: 0;
    padding: 0;
    position: static;
    transform: none;
    align-self: start;
  }

  .brand-story-col--content {
    display: flex;
    flex-direction: column;
    min-height: 0;
    min-width: 0;
    height: 100%;
    padding-top: 0;
    margin-top: 0;
    align-self: stretch;
  }

  .brand-logo-stage {
    position: static;
    width: 100%;
    height: auto;
    min-height: 120px;
    margin: 0 0 26px;
    padding: 0 20px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: visible;
    text-align: center;
    transform: none;
  }

  .brand-logo {
    display: block;
    margin: 0 auto;
    object-fit: contain;
    object-position: center center;
    transform: none;
  }

  .brand-logo--rising9 {
    width: min(190px, 52%);
    max-width: 190px;
    height: auto;
    max-height: 120px;
  }

  .brand-logo--elnoir {
    width: min(180px, 48%);
    max-width: 180px;
    height: auto;
    max-height: 120px;
  }

  .brand-story-media,
  .brand-story-visual {
    position: static;
    width: 100%;
    max-width: 500px;
    aspect-ratio: auto;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background: #ede8df;
    transform: none;
  }

  .brand-story-image,
  .brand-story-media img,
  .brand-story-visual img {
    display: block;
    width: 100%;
    height: 360px;
    margin: 0;
    aspect-ratio: auto;
    object-fit: cover;
    object-position: center center;
    transform: none;
  }

  #story-rising9 .brand-story-media img,
  #story-rising9 .brand-story-visual img,
  #story-rising9 .brand-story-image,
  #story-elnoir .brand-story-media img,
  #story-elnoir .brand-story-visual img,
  #story-elnoir .brand-story-image {
    object-position: center center;
  }

  .story-why-block,
  .story-why-block--elnoir {
    max-width: none;
    margin: 0;
    padding: 0;
    border-top: 0;
    background: transparent;
  }

  .brand-story-col--content .story-why-title {
    margin: 0 0 24px;
    padding-top: 0;
    font-size: 14px;
    line-height: 1;
    letter-spacing: 0.14em;
  }

  .brand-story-col--content .story-why-copy {
    max-width: none;
    font-size: 17px;
    line-height: 1.85;
    letter-spacing: -0.015em;
  }

  .brand-story-col--content .story-why-copy p {
    margin: 0;
  }

  .brand-story-col--content .story-why-copy p + p {
    margin-top: 16px;
  }

  .brand-story-col--content .story-closing-message {
    max-width: none;
    margin-top: 16px;
    font-size: 18px;
    line-height: 1.6;
  }

  .brand-story-col--content .story-bottom-slogan {
    margin: 24px 0 0;
    font-size: 15px;
    line-height: 1.4;
  }

  .brand-story-cta {
    width: min(100%, 420px);
    max-width: 420px;
    margin-top: auto;
    margin-left: auto;
    margin-right: auto;
    padding-top: 30px;
    align-self: center;
  }

  .brand-story-product-button {
    width: 100%;
    min-height: 48px;
  }

  .brand-story-store-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    width: 100%;
    margin-top: 10px;
  }

  .brand-story-store-button {
    width: 100%;
    min-width: 0;
    min-height: 46px;
  }
}

/* ── SELECTED PRODUCTS PC typography / controls (1024+) ── */
@media (min-width: 1024px) {
  .selected-products .product-brand-intro__title {
    font-size: 34px;
    line-height: 1.38;
    letter-spacing: -0.04em;
    margin-bottom: 14px;
  }

  .selected-products .product-brand-intro__copy,
  .selected-products .product-brand-intro__copy p {
    max-width: 650px;
    font-size: 15px;
    line-height: 1.75;
  }

  .selected-products .products-carousel-wrap {
    margin-top: 32px;
  }

  .selected-products .carousel__controls {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 8px;
    margin: 0 0 12px;
  }

  .selected-products .carousel__btn {
    width: 40px;
    height: 40px;
  }

  .selected-products .product-card__body,
  .selected-products .product-card-body {
    padding: 16px 16px 20px;
  }

  .selected-products .product-category,
  .selected-products .product-card__cat {
    margin-bottom: 8px;
    font-size: 12px;
    line-height: 1.3;
  }

  .selected-products .product-name,
  .selected-products .product-card__name {
    font-size: 15px;
    font-weight: 600;
    line-height: 1.45;
    letter-spacing: -0.025em;
  }
}

@media (max-width: 360px) {
  .selected-products .product-brand-intro__title {
    font-size: 23px;
  }

  .selected-products .product-brand-intro__title span {
    white-space: normal;
  }

  .hero-content-wrap,
  .hero__inner {
    padding-left: 24px;
    padding-right: 24px;
  }
}

/* ── OUR PHILOSOPHY responsive overrides ── */
@media (min-width: 901px) {
  .philosophy-section .philosophy-intro,
  .philosophy-section .philosophy__grid--intro {
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
    column-gap: 64px;
  }
}

@media (min-width: 601px) {
  .philosophy-section .philosophy__values,
  .philosophy-section .philosophy-values {
    grid-template-columns: repeat(3, 1fr);
  }

  .philosophy-section .philosophy__value,
  .philosophy-section .philosophy-value {
    min-height: 0;
    padding: 30px 28px;
  }

  .philosophy-section .philosophy__value + .philosophy__value,
  .philosophy-section .philosophy-value + .philosophy-value {
    padding-left: 28px;
    border-left: 1px solid rgba(42, 35, 28, 0.13);
    border-top: 0;
    margin-top: 0;
  }
}

@media (max-width: 900px) {
  .philosophy-section.page-section,
  .philosophy.page-section {
    padding-top: 60px;
    padding-bottom: 56px;
  }

  .philosophy-section .philosophy-intro,
  .philosophy-section .philosophy__grid--intro {
    grid-template-columns: 1fr;
    row-gap: 24px;
    column-gap: 0;
  }

  .philosophy-section .philosophy-title,
  .philosophy-section .philosophy-heading {
    max-width: 100%;
    margin-top: 18px;
    font-size: 32px;
    line-height: 1.35;
  }

  .philosophy-section .philosophy-copy,
  .philosophy-section .philosophy-description {
    max-width: 100%;
    padding-top: 0;
  }
}

@media (max-width: 767px) {
  .philosophy-section.page-section,
  .philosophy.page-section {
    padding-top: 36px;
    padding-bottom: 0;
  }

  .philosophy-section .philosophy-title.display-title,
  .philosophy-section .philosophy-heading.display-title {
    max-width: 100%;
    margin: 0 0 24px;
    font-size: 29px;
    line-height: 1.35;
    letter-spacing: -0.04em;
    word-break: keep-all;
    overflow-wrap: normal;
  }

  .philosophy-section .philosophy-title.display-title span,
  .philosophy-section .philosophy-heading.display-title span {
    display: block;
    white-space: nowrap;
  }

  .philosophy-section .philosophy-copy,
  .philosophy-section .philosophy-description {
    font-size: 14px;
    line-height: 1.75;
  }
}

@media (max-width: 600px) {
  .philosophy-section .philosophy__values,
  .philosophy-section .philosophy-values {
    grid-template-columns: 1fr;
    margin-top: 40px;
  }

  .philosophy-section .philosophy__value,
  .philosophy-section .philosophy-value {
    height: auto;
    min-height: 0;
    padding: 30px 8px 32px;
    border-left: 0;
  }

  .philosophy-section .philosophy__value + .philosophy__value,
  .philosophy-section .philosophy-value + .philosophy-value {
    padding-left: 8px;
    border-left: 0;
    border-top: 1px solid rgba(33, 29, 25, 0.14);
  }

  .philosophy-section .philosophy__value:last-child,
  .philosophy-section .philosophy-value:last-child {
    padding-bottom: 44px;
  }
}

/* ── BUSINESS / PARTNERSHIP title: keep 2-line lock with shared scale ── */
@media (max-width: 768px) {
  .business-section .business-title.display-title,
  .partnership-section .partnership-title {
    max-width: 100%;
    font-size: 29px;
    line-height: 1.4;
    letter-spacing: -0.04em;
    word-break: keep-all;
    overflow-wrap: normal;
  }

  .business-section .business-title.display-title span {
    display: block;
    white-space: nowrap;
  }
}

/* ============================================================
   Unified Typography System — final cascade
   Maps all section roles to shared tokens and overrides
   earlier one-off font-size / letter-spacing hardcodes.
============================================================ */

.section-label,
.section-eyebrow,
.partnership-eyebrow,
.brand-story-col--content .story-why-title,
.selected-products .section-label,
.selected-products .product-brand-eyebrow {
  color: var(--color-gold);
  font-family: var(--font-en);
  font-size: var(--text-label-size);
  font-weight: var(--fw-medium);
  line-height: 1.2;
  letter-spacing: var(--tracking-label);
  text-transform: uppercase;
}

.section-label,
.section-eyebrow,
.partnership-eyebrow,
.brand-story-col--content .story-why-title {
  margin: 0 0 var(--space-label-title);
}

.philosophy-title,
.philosophy-heading,
.philosophy-section .philosophy-title,
.philosophy-section .philosophy-heading,
.business-title,
.business-section .business-title,
.business-section .business-title.display-title,
.partnership-title,
.partnership-section .partnership-title,
.display-title:not(.hero-title):not(.product-brand-intro__title) {
  font-family: var(--font-title);
  font-size: var(--text-section-title-size);
  font-weight: var(--fw-normal);
  line-height: var(--leading-section-title);
  letter-spacing: var(--tracking-heading);
  word-break: keep-all;
  overflow-wrap: normal;
  word-spacing: normal;
}

.selected-products .product-brand-intro__title,
.product-brand-intro__title {
  font-family: var(--font-title);
  font-size: var(--text-brand-title-size);
  font-weight: var(--fw-normal);
  line-height: var(--leading-brand-title);
  letter-spacing: -0.035em;
  word-break: keep-all;
}

.section-copy,
.philosophy-copy,
.philosophy-section .philosophy-copy,
.philosophy-section .philosophy-description,
.story-description,
.brand-story-col--content .story-why-copy,
.brand-story-col--content .story-why-copy p,
.brand-story-col--content .story-brand-copy,
.brand-story-col--content .story-brand-copy p,
#story-rising9 .brand-story-col--content .story-why-copy,
#story-rising9 .brand-story-col--content .story-why-copy p,
#story-elnoir .brand-story-col--content .story-why-copy,
#story-elnoir .brand-story-col--content .story-why-copy p,
.business-intro,
.business-intro p,
.partnership-description,
.partnership-section .partnership-description p,
.selected-products .product-brand-intro__copy,
.selected-products .product-brand-intro__copy p {
  font-family: var(--font-body);
  font-size: var(--text-body-size);
  font-weight: var(--fw-normal);
  line-height: var(--leading-body);
  letter-spacing: var(--tracking-body);
  word-break: keep-all;
  max-width: var(--copy-max-width);
}

.business-intro strong,
.philosophy-copy strong,
.brand-story-col--content .story-why-copy strong,
.brand-story-col--content .story-brand-copy strong {
  font-size: inherit;
  font-weight: 600;
}

.philosophy__value-num,
.philosophy-value-number,
.philosophy-value__number,
.business-service-number {
  font-size: var(--text-card-num);
  font-weight: var(--fw-semibold);
  letter-spacing: 0.08em;
  line-height: 1;
  color: var(--color-gold);
  margin-bottom: 22px;
}

.philosophy__value-title,
.philosophy-value h3,
.business-service h3 {
  font-size: var(--text-card-title-size);
  font-weight: var(--fw-semibold);
  line-height: 1.45;
  letter-spacing: -0.025em;
  word-break: keep-all;
}

.philosophy__value-desc,
.philosophy-value p,
.business-service p,
.business-service .service-description {
  font-size: var(--text-small-size);
  font-weight: var(--fw-normal);
  line-height: var(--leading-small);
  letter-spacing: -0.015em;
  word-break: keep-all;
  margin-top: 13px;
}

.product-tab,
.product-brand-tab,
.brand-story-tab,
.story-tab,
.selected-products .product-brand-tab {
  font-size: var(--text-brand-tab);
  font-weight: var(--fw-medium);
  line-height: 1;
  letter-spacing: -0.01em;
}

.product-tab.is-active,
.product-brand-tab.is-active,
.brand-story-tab.is-active,
.story-tab.is-active {
  font-size: inherit;
  font-weight: var(--fw-semibold);
}

.btn,
.store-button,
.brand-store-actions .store-button,
.btn-official,
.btn-naver {
  font-size: 13px;
  font-weight: var(--fw-semibold);
  line-height: 1;
  letter-spacing: -0.015em;
}

.product-card__cat,
.product-category,
.selected-products .product-card__cat,
.selected-products .product-category,
.story-products .product-card__cat {
  font-size: 12px;
  font-weight: var(--fw-medium);
  line-height: 1.3;
  letter-spacing: 0;
}

.product-card__name,
.product-name,
.selected-products .product-card__name,
.selected-products .product-name {
  font-size: 15px;
  font-weight: var(--fw-semibold);
  line-height: 1.45;
  letter-spacing: -0.025em;
  word-break: keep-all;
}

.partnership-section .contact-row dt {
  font-size: 12px;
  font-weight: var(--fw-medium);
}

.partnership-section .contact-row dd,
.partnership-section .contact-row dd a {
  font-size: 14px;
  font-weight: var(--fw-normal);
}

.footer-copy {
  font-size: var(--text-footer);
  letter-spacing: var(--tracking-body);
}

.footer-heading,
.footer-label {
  font-size: 11px;
  letter-spacing: 0.08em;
}

@media (max-width: 768px) {
  .section-label,
  .section-eyebrow,
  .partnership-eyebrow,
  .brand-story-col--content .story-why-title,
  .selected-products .section-label,
  .selected-products .product-brand-eyebrow {
    font-size: 10px;
    letter-spacing: 0.14em;
    margin-bottom: 17px;
  }

  .philosophy-title,
  .philosophy-heading,
  .philosophy-section .philosophy-title,
  .philosophy-section .philosophy-heading,
  .business-title,
  .business-section .business-title,
  .business-section .business-title.display-title,
  .partnership-title,
  .partnership-section .partnership-title,
  .display-title:not(.hero-title):not(.product-brand-intro__title) {
    font-size: 29px;
    line-height: 1.4;
    letter-spacing: -0.04em;
  }

  .philosophy-section .philosophy-title,
  .philosophy-section .philosophy-heading {
    font-size: 29px;
    line-height: 1.35;
    margin-top: 0;
    margin-bottom: 24px;
  }

  .selected-products .product-brand-intro__title,
  .product-brand-intro__title {
    font-size: 24px;
    line-height: 1.42;
  }

  .section-copy,
  .philosophy-copy,
  .philosophy-section .philosophy-copy,
  .philosophy-section .philosophy-description,
  .story-description,
  .brand-story-col--content .story-why-copy,
  .brand-story-col--content .story-why-copy p,
  .brand-story-col--content .story-brand-copy,
  .brand-story-col--content .story-brand-copy p,
  .business-intro,
  .business-intro p,
  .partnership-description,
  .partnership-section .partnership-description p,
  .selected-products .product-brand-intro__copy,
  .selected-products .product-brand-intro__copy p {
    font-size: 14px;
    line-height: 1.75;
    letter-spacing: -0.015em;
    max-width: 100%;
  }

  .philosophy__value-title,
  .philosophy-value h3,
  .business-service h3 {
    font-size: 16px;
  }

  .philosophy__value-desc,
  .philosophy-value p,
  .business-service p,
  .business-service .service-description {
    font-size: 13px;
    line-height: 1.7;
  }

  .product-tab,
  .product-brand-tab,
  .brand-story-tab,
  .story-tab,
  .selected-products .product-brand-tab,
  .btn,
  .store-button,
  .brand-store-actions .store-button {
    font-size: 12px;
  }

  .product-card__name,
  .product-name,
  .selected-products .product-card__name,
  .selected-products .product-name {
    font-size: 14px;
    line-height: 1.45;
  }

  .philosophy-section.page-section,
  .philosophy.page-section {
    padding-top: 36px;
    padding-bottom: 0;
  }

  .brand-story-section.page-section,
  .selected-products.page-section,
  .business-section.page-section {
    padding-top: clamp(52px, 10vw, 64px);
    padding-bottom: clamp(52px, 10vw, 64px);
  }

  .partnership-section {
    padding-block: clamp(52px, 10vw, 64px);
  }

  .selected-products .product-brand-tabs {
    margin-top: 22px;
    margin-bottom: 32px;
  }
}

/* ── Mobile Brand Story: final shared template (≤767px) ── */
@media (max-width: 767px) {
  .brand-story-section.page-section {
    padding-bottom: 0;
  }

  .brand-story-panel.is-active,
  #story-rising9.brand-story-panel.is-active,
  #story-elnoir.brand-story-panel.is-active {
    padding-bottom: 64px;
  }

  .brand-logo-stage,
  #story-rising9 .brand-logo-stage,
  #story-elnoir .brand-logo-stage {
    height: 120px;
    min-height: 120px;
    margin: 24px 0 22px;
    padding: 0;
  }

  .brand-logo--rising9,
  #story-rising9 .brand-logo--rising9 {
    width: clamp(150px, 43vw, 168px);
    max-height: 104px;
  }

  .brand-logo--elnoir,
  #story-elnoir .brand-logo--elnoir {
    width: clamp(178px, 51vw, 198px);
    max-height: 68px;
  }

  .brand-story-media,
  .brand-story-visual,
  #story-rising9 .brand-story-media,
  #story-elnoir .brand-story-media {
    aspect-ratio: 3 / 2;
    margin: 0;
    max-width: 100%;
  }

  .brand-story-media img,
  .brand-story-visual img,
  .brand-story-image,
  #story-rising9 .brand-story-image,
  #story-elnoir .brand-story-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
  }

  .brand-story-col--content .story-why-title,
  #story-rising9 .brand-story-col--content .story-why-title,
  #story-elnoir .brand-story-col--content .story-why-title {
    margin: 40px 0 24px;
  }

  .brand-story-col--content .story-why-copy p + p,
  .brand-story-col--content .story-closing-message,
  #story-rising9 .brand-story-col--content .story-why-copy p + p,
  #story-elnoir .brand-story-col--content .story-why-copy p + p,
  #story-rising9 .brand-story-col--content .story-closing-message,
  #story-elnoir .brand-story-col--content .story-closing-message {
    margin-top: 20px;
  }

  .brand-story-col--content .story-bottom-slogan,
  #story-rising9 .brand-story-col--content .story-bottom-slogan,
  #story-elnoir .brand-story-col--content .story-bottom-slogan {
    margin: 26px 0 0;
  }

  .brand-story-col--content,
  #story-rising9 .brand-story-col--content,
  #story-elnoir .brand-story-col--content {
    height: auto;
  }

  .brand-story-cta,
  #story-rising9 .brand-story-cta,
  #story-elnoir .brand-story-cta {
    width: 100%;
    max-width: none;
    margin: 0;
    padding-top: 26px;
    align-self: stretch;
  }

  .brand-story-product-button {
    min-height: 50px;
    font-size: 14px;
  }

  .brand-story-store-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .brand-story-store-button {
    min-height: 48px;
    font-size: 13px;
  }
}

/* ── OUR PHILOSOPHY mobile spacing (≤767) — final cascade ── */
@media (max-width: 767px) {
  .philosophy-section.page-section,
  .philosophy.page-section {
    padding-top: 36px;
    padding-bottom: 0;
  }

  .philosophy-section .philosophy__head .section-label,
  .philosophy .philosophy__head .section-label {
    margin: 0 0 30px;
  }

  .philosophy-section .philosophy-intro,
  .philosophy-section .philosophy__grid--intro,
  .philosophy .philosophy-intro,
  .philosophy .philosophy__grid--intro {
    row-gap: 0;
    column-gap: 0;
    gap: 0;
  }

  .philosophy-section .philosophy-title,
  .philosophy-section .philosophy-heading,
  .philosophy-section .philosophy-title.display-title,
  .philosophy-section .philosophy-heading.display-title {
    margin: 0 0 24px;
    line-height: 1.35;
  }

  .philosophy-section .philosophy-copy,
  .philosophy-section .philosophy-description,
  .philosophy .philosophy-copy,
  .philosophy .philosophy-description {
    margin: 0;
    padding-top: 0;
    margin-bottom: 0;
    line-height: 1.75;
  }

  .philosophy-section .philosophy-copy p,
  .philosophy-section .philosophy-description p,
  .philosophy .philosophy-copy p,
  .philosophy .philosophy-description p {
    margin: 0;
    line-height: 1.75;
  }

  .philosophy-section .philosophy-copy p + p,
  .philosophy-section .philosophy-description p + p,
  .philosophy .philosophy-copy p + p,
  .philosophy .philosophy-description p + p {
    margin-top: 18px;
  }

  .philosophy-section .philosophy-copy p:last-child,
  .philosophy-section .philosophy-description p:last-child {
    margin-bottom: 0;
  }

  .philosophy-section .philosophy__values,
  .philosophy-section .philosophy-values,
  .philosophy .philosophy__values,
  .philosophy .philosophy-values {
    grid-template-columns: 1fr;
    margin-top: 40px;
    margin-bottom: 0;
    padding-top: 0;
    border-top: 1px solid rgba(42, 35, 28, 0.13);
  }

  .philosophy-section .philosophy__value,
  .philosophy-section .philosophy-value,
  .philosophy .philosophy__value,
  .philosophy .philosophy-value {
    display: flex;
    flex-direction: column;
    height: auto;
    min-height: 0;
    padding: 30px 8px 32px;
    border-left: 0;
  }

  .philosophy-section .philosophy__value + .philosophy__value,
  .philosophy-section .philosophy-value + .philosophy-value,
  .philosophy .philosophy__value + .philosophy__value,
  .philosophy .philosophy-value + .philosophy-value {
    margin-top: 0;
    padding-left: 8px;
    border-left: 0;
    border-top: 1px solid rgba(33, 29, 25, 0.14);
  }

  .philosophy-section .philosophy__value:last-child,
  .philosophy-section .philosophy-value:last-child,
  .philosophy .philosophy__value:last-child,
  .philosophy .philosophy-value:last-child {
    padding-bottom: 44px;
  }

  .philosophy-section .philosophy__value-num,
  .philosophy-section .philosophy-value-number,
  .philosophy-section .philosophy-value__number,
  .philosophy .philosophy__value-num,
  .philosophy .philosophy-value-number,
  .philosophy .philosophy-value__number {
    margin: 0 0 22px;
  }

  .philosophy-section .philosophy__value-title,
  .philosophy-section .philosophy-value h3,
  .philosophy .philosophy__value-title,
  .philosophy .philosophy-value h3 {
    margin: 0;
  }

  .philosophy-section .philosophy__value-desc,
  .philosophy-section .philosophy-value p,
  .philosophy .philosophy__value-desc,
  .philosophy .philosophy-value p {
    margin: 16px 0 0;
    line-height: 1.7;
  }
}


/* ── Final polish: Brand Story CTA centering + Selected Products PC ── */
@media (min-width: 1024px) {
  .brand-story-panel__intro {
    align-items: stretch;
  }

  .brand-story-col--content {
    display: flex;
    flex-direction: column;
    align-self: stretch;
    height: 100%;
  }

  .brand-story-cta {
    width: min(100%, 420px);
    max-width: 420px;
    margin-top: auto;
    margin-left: auto;
    margin-right: auto;
    padding-top: 30px;
    align-self: center;
  }

  .brand-story-product-button {
    width: 100%;
    min-height: 48px;
  }

  .brand-story-store-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    width: 100%;
    margin-top: 10px;
  }

  .brand-story-store-button {
    width: 100%;
    min-width: 0;
    min-height: 46px;
  }

  .selected-products .product-brand-intro__title {
    font-size: 34px;
    line-height: 1.38;
    letter-spacing: -0.04em;
    margin-bottom: 14px;
  }

  .selected-products .product-brand-intro__copy,
  .selected-products .product-brand-intro__copy p {
    max-width: 650px;
    font-size: 15px;
    line-height: 1.75;
  }

  .selected-products .product-name,
  .selected-products .product-card__name {
    font-size: 15px;
    font-weight: 600;
    line-height: 1.45;
    letter-spacing: -0.025em;
  }
}

@media (max-width: 767px) {
  .brand-story-col--content {
    height: auto;
  }

  .brand-story-cta {
    width: 100%;
    max-width: none;
    margin: 0;
    padding-top: 26px;
    align-self: stretch;
  }

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