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

:root {
  --navy-950: #020611;
  --navy-900: #070c16;
  --navy-800: #111827;
  --ink: #f4f6fb;
  --muted: #a5acb8;
  --soft: #080e19;
  --white: #ffffff;
  --line: rgba(255, 255, 255, 0.16);
  --line-light: rgba(255, 255, 255, 0.22);
  --pink: #d7b58c;
  --pink-deep: #c7a678;
  --gold: #d8c9b1;
  --blue-gray: #64748b;
  --container: 1180px;
  --brand: "Cinzel", "Noto Sans KR", "Noto Sans JP", "Noto Sans SC", Georgia, serif;
  --serif: "Cinzel", "Noto Sans KR", "Noto Sans JP", "Noto Sans SC", Georgia, serif;
  --sans: "Cinzel", "Noto Sans KR", "Noto Sans JP", "Noto Sans SC", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

html[lang="zh-CN"] {
  --brand: "Cinzel", "Noto Sans SC", "Noto Sans KR", system-ui, sans-serif;
  --serif: "Cinzel", "Noto Sans SC", "Noto Sans KR", Georgia, serif;
  --sans: "Noto Sans SC", "Noto Sans KR", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

html[lang="ja"] {
  --brand: "Cinzel", "Noto Sans JP", "Noto Sans KR", system-ui, sans-serif;
  --serif: "Cinzel", "Noto Sans JP", "Noto Sans KR", Georgia, serif;
  --sans: "Noto Sans JP", "Noto Sans KR", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

html[lang="zh-CN"] body,
html[lang="ja"] body {
  line-break: strict;
  overflow-wrap: anywhere;
  word-break: normal;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--navy-950);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.75;
  letter-spacing: 0;
  word-break: keep-all;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

body.nav-open::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 90;
  background: var(--navy-950);
}

body.nav-open .site-header {
  background: var(--navy-950);
  border-bottom-color: rgba(255, 255, 255, 0.12);
  backdrop-filter: none;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
  letter-spacing: 0;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 0;
  z-index: 200;
  transform: translateY(calc(-100% - 8px));
  background: var(--white);
  color: var(--ink);
  padding: 10px 14px;
  border: 1px solid var(--line);
}

.skip-link:focus {
  transform: translateY(12px);
}

.site-header {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 100;
  width: 100%;
  color: var(--white);
  background: rgba(2, 6, 17, 0.34);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  transition: background 220ms ease, border-color 220ms ease;
}

.site-header.is-scrolled,
.site-header.light {
  background: rgba(2, 6, 17, 0.92);
  border-bottom: 1px solid var(--line-light);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100% - 48px, 1400px);
  height: 78px;
  margin: 0 auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 178px;
  line-height: 1;
}

.brand img {
  width: 100%;
  height: auto;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 36px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-list a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: rgba(255, 255, 255, 0.78);
  font-family: var(--brand);
  font-size: 13px;
  font-weight: 400;
  text-transform: uppercase;
}

.nav-list a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 8px;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.nav-list a:hover,
.nav-list a[aria-current="page"] {
  color: var(--white);
}

.nav-list a:hover::after,
.nav-list a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.language-switcher {
  display: inline-flex;
  align-items: center;
}

.mobile-header-actions {
  display: none;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}

.language-select {
  min-width: 112px;
  height: 38px;
  padding: 0 34px 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background:
    linear-gradient(45deg, transparent 50%, currentColor 50%) right 16px center / 6px 6px no-repeat,
    linear-gradient(135deg, currentColor 50%, transparent 50%) right 11px center / 6px 6px no-repeat,
    rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.86);
  font-family: var(--brand);
  font-size: 12px;
  font-weight: 400;
  text-transform: uppercase;
  appearance: none;
  cursor: pointer;
}

.language-select:focus {
  outline: 2px solid rgba(216, 201, 177, 0.42);
  outline-offset: 3px;
}

.language-select option {
  background: var(--navy-950);
  color: var(--white);
}

.language-select--mobile {
  min-width: 58px;
  width: 58px;
  height: 38px;
  padding: 0 22px 0 11px;
  background:
    linear-gradient(45deg, transparent 50%, currentColor 50%) right 13px center / 5px 5px no-repeat,
    linear-gradient(135deg, currentColor 50%, transparent 50%) right 9px center / 5px 5px no-repeat,
    rgba(255, 255, 255, 0.08);
  font-size: 12px;
  text-align: center;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 50%;
  background: transparent;
  color: var(--white);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 1px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

body.nav-open .menu-toggle span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

body.nav-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

body.nav-open .menu-toggle span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

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

.narrow {
  width: min(100% - 48px, 880px);
  margin: 0 auto;
}

.eyebrow {
  display: block;
  margin-bottom: 18px;
  color: var(--gold);
  font-family: var(--brand);
  font-size: 12px;
  font-weight: 400;
  text-transform: uppercase;
}

.serif {
  font-family: var(--serif);
}

.hero {
  position: relative;
  min-height: 760px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(5, 8, 20, 0.82), rgba(5, 8, 20, 0.22) 58%, rgba(5, 8, 20, 0.38)),
    url("../img/hero_image.png") center / cover no-repeat;
  overflow: hidden;
}

.hero::after,
.page-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 170px;
  background: linear-gradient(180deg, transparent, rgba(5, 8, 20, 0.96));
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: center;
  min-height: 760px;
  padding: 120px 0 86px;
}

.hero-copy {
  width: min(100%, 980px);
}

.hero h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(54px, 6.2vw, 90px);
  font-weight: 400;
  line-height: 1.12;
  color: rgba(255, 255, 255, 0.95);
}

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

.hero-title-accent {
  color: #c9a0ff;
  text-shadow: 0 0 28px rgba(201, 160, 255, 0.32);
}

.page-hero h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: 76px;
  font-weight: 400;
  line-height: 1.12;
}

.hero .eyebrow {
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
  font-weight: 400;
}

.hero p {
  width: min(100%, 500px);
  margin: 34px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 18px;
  font-weight: 400;
  line-height: 2.05;
}

.hero p span {
  display: block;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 50px;
}

.hero .text-link {
  border-bottom-color: #a985e8;
}

.hero .text-link span {
  color: #c9a0ff;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  min-height: 42px;
  border-bottom: 1px solid currentColor;
  color: inherit;
  font-family: var(--brand);
  font-size: 13px;
  font-weight: 400;
  text-transform: uppercase;
}

.text-link span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  transition: transform 180ms ease;
}

.text-link:hover span {
  transform: translateX(4px);
}

.section {
  padding: 112px 0;
}

.section-tight {
  padding: 86px 0;
}

.section-soft {
  background: var(--soft);
}

.section-dark {
  background: var(--navy-900);
  color: var(--white);
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1fr);
  gap: 72px;
  align-items: end;
  margin-bottom: 54px;
}

.section-head h2,
.split-copy h2,
.contact-panel h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: 42px;
  font-weight: 400;
  line-height: 1.32;
}

.section-head p,
.split-copy p,
.lead {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.95;
}

.section-dark .section-head p,
.section-dark .lead {
  color: rgba(255, 255, 255, 0.68);
}

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

.value-item {
  min-height: 230px;
  padding: 38px 34px;
  border-right: 1px solid var(--line);
}

.value-item:last-child {
  border-right: 0;
}

.line-icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 30px;
  color: var(--gold);
}

.line-icon svg {
  width: 42px;
  height: 42px;
  stroke-width: 1.3;
}

.value-item h3,
.product-card h3,
.journal-card h3,
.portfolio-card h3,
.info-card h3 {
  margin: 0 0 12px;
  font-size: 20px;
  font-weight: 500;
}

.value-item p,
.product-card p,
.journal-card p,
.portfolio-card p,
.info-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.product-feature {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  min-height: 520px;
  background: #f4f0e8;
}

.product-feature .split-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 76px 8vw;
}

.product-visual {
  position: relative;
  min-height: 480px;
  overflow: hidden;
}

.product-visual img {
  width: 100%;
  height: 100%;
  min-height: 480px;
  object-fit: cover;
}

.product-grid,
.journal-grid,
.portfolio-grid,
.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.product-card,
.journal-card,
.portfolio-card,
.info-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.product-card img,
.journal-card img,
.portfolio-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.product-card div,
.journal-card div,
.portfolio-card div,
.info-card {
  padding: 24px;
}

.section-dark .product-grid .product-card img {
  height: 250px;
  padding: 0;
  background: #f7f1ee;
  object-fit: cover;
  object-position: center;
}

.science-band {
  position: relative;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(5, 8, 20, 0.96), rgba(5, 8, 20, 0.74), rgba(5, 8, 20, 0.36)),
    url("../img/mood-lab.jpg") center / cover no-repeat;
}

.science-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.62fr) minmax(0, 1fr);
  gap: 70px;
  align-items: center;
}

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

.stat {
  padding: 34px 28px;
  border-right: 1px solid var(--line-light);
}

.stat:last-child {
  border-right: 0;
}

.stat strong {
  display: block;
  margin-bottom: 10px;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 400;
}

.stat span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.journal-card time,
.portfolio-card .tag {
  display: block;
  margin-bottom: 12px;
  color: var(--pink-deep);
  font-family: var(--brand);
  font-size: 12px;
  font-weight: 400;
  text-transform: uppercase;
}

.cta-band {
  position: relative;
  min-height: 420px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(5, 8, 20, 0.94), rgba(5, 8, 20, 0.42)),
    url("../img/home/promise-earth.png") center bottom / cover no-repeat;
}

.portfolio-cta-band {
  background:
    linear-gradient(90deg, rgba(5, 8, 20, 0.98), rgba(5, 8, 20, 0.72) 42%, rgba(5, 8, 20, 0.18)),
    url("../img/portfolio-cta-partnership.jpg") center / cover no-repeat;
}

.cta-band .container {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: center;
  min-height: 420px;
}

.cta-band h2 {
  width: min(100%, 650px);
  margin: 0;
  font-family: var(--serif);
  font-size: 48px;
  font-weight: 400;
  line-height: 1.28;
}

.cta-band p {
  width: min(100%, 550px);
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.74);
}

.page-hero {
  position: relative;
  min-height: 510px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(5, 8, 20, 0.9), rgba(5, 8, 20, 0.34)),
    url("../img/hero_image.png") center / cover no-repeat;
  overflow: hidden;
}

.page-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: end;
  min-height: 510px;
  padding: 136px 0 96px;
}

.page-hero p {
  width: min(100%, 600px);
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
}

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

.about-image {
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid var(--line);
}

.about-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.company-identity-visual {
  position: relative;
  min-height: 250px;
  aspect-ratio: 16 / 9;
  padding: 26px 28px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(9, 15, 28, 0.98), rgba(18, 27, 42, 0.94) 54%, rgba(44, 36, 43, 0.88)),
    linear-gradient(180deg, rgba(216, 201, 177, 0.18), rgba(199, 166, 120, 0.04));
}

.company-identity-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 64px 64px;
  opacity: 0.16;
  pointer-events: none;
}

.company-identity-visual::after {
  content: "";
  position: absolute;
  right: 26px;
  bottom: 30px;
  width: 54%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(216, 201, 177, 0.56), transparent);
  transform: rotate(-16deg);
  transform-origin: right center;
  pointer-events: none;
}

.identity-visual-top,
.identity-visual-core,
.identity-layer-list {
  position: relative;
  z-index: 1;
}

.identity-visual-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.identity-visual-top span {
  color: rgba(255, 255, 255, 0.62);
  font-family: var(--brand);
  font-size: 10px;
  text-transform: uppercase;
}

.identity-visual-top strong {
  border: 1px solid rgba(216, 201, 177, 0.34);
  border-radius: 999px;
  padding: 5px 12px;
  color: var(--gold);
  font-family: var(--brand);
  font-size: 11px;
  font-weight: 500;
  line-height: 1;
}

.identity-visual-core {
  position: absolute;
  left: 28px;
  top: 82px;
  width: 188px;
}

.identity-visual-core span {
  display: block;
  margin-bottom: 12px;
  color: var(--gold);
  font-family: var(--brand);
  font-size: 11px;
  line-height: 1.3;
}

.identity-visual-core strong {
  display: block;
  color: rgba(255, 255, 255, 0.96);
  font-family: var(--serif);
  font-size: 29px;
  font-weight: 400;
  line-height: 1.04;
}

.identity-layer-list {
  position: absolute;
  right: 24px;
  bottom: 24px;
  display: grid;
  width: min(54%, 250px);
  gap: 8px;
}

.identity-layer-list div {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  column-gap: 10px;
  align-items: center;
  min-height: 43px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  padding: 8px 10px;
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(14px);
}

.identity-layer-list span {
  grid-row: span 2;
  color: var(--gold);
  font-family: var(--brand);
  font-size: 11px;
}

.identity-layer-list strong {
  color: rgba(255, 255, 255, 0.94);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.2;
}

.identity-layer-list em {
  color: rgba(255, 255, 255, 0.58);
  font-size: 11px;
  font-style: normal;
  line-height: 1.35;
}

.timeline {
  display: grid;
  gap: 18px;
  margin-top: 34px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 24px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.timeline-item strong {
  color: var(--pink-deep);
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
}

.timeline-item p {
  margin: 0;
  color: var(--muted);
}

.principle-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.principle {
  min-height: 210px;
  padding: 26px 22px;
  background: var(--white);
}

.principle strong {
  display: block;
  margin-bottom: 14px;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
}

.principle p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.portfolio-card img {
  height: 250px;
}

.quality-showcase,
.experience-showcase {
  display: grid;
  gap: 62px;
}

.quality-group,
.experience-group {
  display: grid;
  grid-template-columns: minmax(220px, 0.34fr) minmax(0, 1fr);
  gap: 34px;
  align-items: start;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding-top: 38px;
}

.quality-group:first-child,
.experience-group:first-child {
  border-top: 0;
  padding-top: 0;
}

.quality-group-head,
.experience-group-head {
  position: sticky;
  top: 104px;
}

.quality-group-head .tag,
.experience-group-head .tag {
  display: block;
  margin-bottom: 18px;
  color: var(--gold);
  font-family: var(--brand);
  font-size: 12px;
  text-transform: uppercase;
}

.quality-group-head h3,
.experience-group-head h3 {
  margin: 0 0 18px;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.35;
}

.quality-group-head p,
.experience-group-head p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.quality-image-grid,
.experience-image-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.experience-image-grid--six {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.experience-image-grid--eight {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.quality-image-card,
.experience-image-card {
  overflow: hidden;
  min-height: 210px;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
}

.quality-image-card img,
.experience-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.portfolio-card.featured {
  grid-column: span 2;
}

.portfolio-card.featured img {
  height: 360px;
}

.product-line-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}

.product-line-grid .portfolio-card.featured {
  grid-column: 1 / -1;
}

.product-line-grid .portfolio-card {
  background: #ffffff;
  border-color: rgba(231, 77, 111, 0.18);
  color: #151922;
}

.product-line-grid .portfolio-card img {
  height: 210px;
  padding: 0;
  background: #f7f1ee;
  object-fit: cover;
  object-position: center;
}

.product-line-grid .portfolio-card.featured img {
  height: 470px;
  object-position: top center;
}

.product-line-grid .portfolio-card:not(.featured) div {
  min-height: 172px;
  padding: 22px 20px 24px;
}

.product-line-grid .portfolio-card h3 {
  color: #151922;
}

.product-line-grid .portfolio-card p {
  color: rgba(21, 25, 34, 0.64);
}

.product-line-grid .portfolio-card .tag {
  color: rgba(166, 112, 59, 0.86);
}

.section.certification-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 16%, rgba(216, 201, 177, 0.22), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f7f7f4 100%);
  color: var(--ink);
}

.certification-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.06), transparent 1px),
    radial-gradient(circle at 12% 80%, rgba(30, 64, 91, 0.06), transparent 26%);
}

.certification-section .container {
  position: relative;
  z-index: 1;
}

.certification-section .eyebrow {
  color: rgba(111, 94, 66, 0.9);
}

.certification-section .section-head h2 {
  color: rgba(17, 18, 20, 0.94);
}

.certification-section .section-head p {
  color: rgba(17, 18, 20, 0.62);
}

.certification-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid rgba(17, 18, 20, 0.12);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 24px 60px rgba(5, 8, 13, 0.08);
}

.certification-mark {
  display: grid;
  justify-items: center;
  align-content: center;
  min-height: 230px;
  padding: 28px 18px;
  border-right: 1px solid rgba(17, 18, 20, 0.1);
  text-align: center;
}

.certification-mark:last-child {
  border-right: 0;
}

.certification-mark img {
  width: min(100%, 170px);
  height: 96px;
  object-fit: contain;
  filter: drop-shadow(0 16px 18px rgba(0, 0, 0, 0.12));
}

.certification-mark strong {
  margin-top: 18px;
  color: rgba(17, 18, 20, 0.9);
  font-family: var(--brand);
  font-size: 14px;
  font-weight: 400;
  text-transform: uppercase;
}

.certification-mark span {
  margin-top: 8px;
  color: rgba(17, 18, 20, 0.58);
  font-size: 13px;
  line-height: 1.5;
}

.section.retail-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 74% 40%, rgba(216, 201, 177, 0.18), transparent 30%),
    radial-gradient(circle at 16% 84%, rgba(30, 64, 91, 0.06), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f8f7f4 100%);
  color: var(--ink);
}

.retail-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(17, 18, 20, 0.05), transparent 1px),
    linear-gradient(90deg, rgba(17, 18, 20, 0.035), transparent 28%, transparent 72%, rgba(17, 18, 20, 0.035));
}

.retail-section .container {
  position: relative;
  z-index: 1;
}

.retail-section .eyebrow {
  color: rgba(111, 94, 66, 0.92);
}

.retail-section .section-head h2 {
  color: rgba(17, 18, 20, 0.96);
}

.retail-section .section-head p {
  color: rgba(17, 18, 20, 0.62);
}

.retail-network-stage {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 0.46fr) minmax(0, 0.54fr);
  gap: 48px;
  align-items: center;
  min-height: 560px;
  overflow: hidden;
  padding: 70px 64px;
  border-top: 1px solid rgba(17, 18, 20, 0.08);
  border-bottom: 1px solid rgba(17, 18, 20, 0.08);
  background:
    radial-gradient(ellipse at 70% 55%, rgba(216, 201, 177, 0.2), transparent 32%),
    radial-gradient(ellipse at 74% 76%, rgba(30, 64, 91, 0.08), transparent 28%);
}

.retail-network-stage::after {
  display: none;
}

.retail-copy {
  position: relative;
  z-index: 5;
  max-width: 430px;
}

.retail-visual-column {
  display: grid;
  gap: 18px;
  min-width: 0;
}

.retail-hero-visual {
  position: relative;
  z-index: 2;
  overflow: hidden;
  border: 1px solid rgba(17, 18, 20, 0.1);
  border-radius: 8px;
  background: #f5f3ee;
  box-shadow: 0 30px 55px rgba(17, 18, 20, 0.12);
}

.retail-hero-image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: inherit;
}

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

.retail-channel-card {
  display: grid;
  place-items: center;
  min-height: 58px;
  border: 1px solid rgba(17, 18, 20, 0.08);
  border-radius: 8px;
  padding: 13px 16px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(250, 248, 244, 0.9));
  box-shadow: 0 16px 30px rgba(17, 18, 20, 0.08);
}

.retail-channel-card img {
  width: min(100%, 112px);
  height: 30px;
  object-fit: contain;
}

.retail-hero-logo {
  position: absolute;
  z-index: 4;
  width: clamp(70px, 7.2vw, 116px);
  height: auto;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow:
    0 18px 30px rgba(17, 18, 20, 0.12),
    0 0 28px rgba(255, 255, 255, 0.82);
  pointer-events: none;
}

.retail-hero-logo-shopee {
  left: 8%;
  top: 13%;
}

.retail-hero-logo-coupang {
  left: 32%;
  top: 10%;
}

.retail-hero-logo-ably {
  right: 27%;
  top: 13%;
}

.retail-hero-logo-cjmall {
  right: 5%;
  top: 30%;
}

.retail-hero-logo-oliveyoung {
  left: 12%;
  top: 34%;
  width: clamp(92px, 9vw, 146px);
}

.retail-hero-logo-nshopping {
  left: 36%;
  bottom: 8%;
}

.retail-hero-logo-qoo10 {
  left: 17%;
  top: 55%;
  transform: translate(-50%, -50%);
}

.retail-hero-logo-akplaza {
  right: 9%;
  bottom: 5%;
  width: clamp(86px, 8.6vw, 138px);
}

.retail-lockup {
  width: min(100%, 330px);
  height: auto;
  margin-bottom: 34px;
  filter: drop-shadow(0 14px 18px rgba(0, 0, 0, 0.12));
}

.retail-copy h3 {
  margin: 0;
  color: rgba(17, 18, 20, 0.94);
  font-family: var(--serif);
  font-size: clamp(30px, 3vw, 44px);
  font-weight: 400;
  line-height: 1.26;
}

.retail-copy p {
  margin: 22px 0 0;
  color: rgba(17, 18, 20, 0.62);
  font-size: 16px;
  line-height: 1.9;
}

.retail-store {
  position: absolute;
  right: -1%;
  bottom: 76px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: min(66%, 900px);
}

.retail-store img {
  width: 100%;
  height: auto;
  filter:
    drop-shadow(0 34px 34px rgba(17, 18, 20, 0.22))
    drop-shadow(0 0 26px rgba(255, 255, 255, 0.7));
}

.retail-channel-cloud {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
}

.retail-channel-cloud::before,
.retail-channel-cloud::after {
  content: "";
  position: absolute;
  left: 59%;
  top: 50%;
  border: 1px solid rgba(17, 18, 20, 0.1);
  border-radius: 50%;
  transform: translate(-50%, -50%) rotate(-12deg);
  pointer-events: none;
}

.retail-channel-cloud::before {
  width: min(72vw, 960px);
  height: min(33vw, 440px);
}

.retail-channel-cloud::after {
  width: min(54vw, 720px);
  height: min(24vw, 320px);
  transform: translate(-50%, -50%) rotate(12deg);
}

.retail-logo {
  position: absolute;
  display: grid;
  place-items: center;
  width: clamp(120px, 11vw, 190px);
  min-height: 72px;
  filter: drop-shadow(0 16px 16px rgba(17, 18, 20, 0.16));
}

.retail-logo::before {
  content: "";
  position: absolute;
  inset: 18% -4%;
  z-index: -1;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  filter: blur(16px);
  opacity: 0.62;
}

.retail-logo img {
  width: 100%;
  height: 62px;
  object-fit: contain;
}

.logo-shopee { left: 8%; bottom: 24%; }
.logo-coupang { left: 27%; bottom: 8%; }
.logo-ably { right: 28%; top: 9%; }
.logo-cjmall { right: 7%; top: 30%; }
.logo-oliveyoung { left: 42%; top: 20%; }
.logo-akplaza { right: 12%; bottom: 4%; }
.logo-nshopping { left: 45%; bottom: 4%; }
.logo-qoo10 { left: 22%; top: 49%; }

.channel-carousel-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 18%, rgba(216, 201, 177, 0.11), transparent 28%),
    linear-gradient(180deg, #020611 0%, #06101d 100%);
  color: var(--white);
}

.channel-carousel-section .section-head p {
  color: rgba(255, 255, 255, 0.66);
}

.retail-moment-carousel {
  position: relative;
  overflow: hidden;
  margin-top: 6px;
  padding: 8px 0 12px;
}

.retail-moment-carousel::before,
.retail-moment-carousel::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: min(16vw, 190px);
  pointer-events: none;
}

.retail-moment-carousel::before {
  left: 0;
  background: linear-gradient(90deg, #020611, transparent);
}

.retail-moment-carousel::after {
  right: 0;
  background: linear-gradient(270deg, #06101d, transparent);
}

.retail-moment-track {
  --moment-gap-offset: 11px;
  display: flex;
  width: max-content;
  gap: 22px;
  padding-left: max(22px, calc((100vw - 1280px) / 2 + 22px));
  animation: retailMomentLoop 38s linear infinite;
  will-change: transform;
}

.retail-moment-carousel:hover .retail-moment-track {
  animation-play-state: paused;
}

.retail-moment-card {
  position: relative;
  flex: 0 0 clamp(300px, 42vw, 570px);
  overflow: hidden;
  aspect-ratio: 1.58 / 1;
  border: 1px solid rgba(216, 201, 177, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 28px 50px rgba(0, 0, 0, 0.3);
}

.retail-moment-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@keyframes retailMomentLoop {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - var(--moment-gap-offset)));
  }
}

@media (max-width: 700px) {
  .retail-moment-carousel {
    padding-bottom: 4px;
  }

  .retail-moment-track {
    --moment-gap-offset: 7px;
    gap: 14px;
    padding-left: 18px;
    animation-duration: 34s;
  }

  .retail-moment-card {
    flex-basis: min(82vw, 360px);
    aspect-ratio: 1.32 / 1;
  }

  .retail-moment-card div {
    right: 18px;
    bottom: 18px;
    left: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .retail-moment-carousel {
    overflow-x: auto;
  }

  .retail-moment-track {
    animation: none;
  }
}

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

.contact-list {
  display: grid;
  gap: 18px;
  margin-top: 36px;
}

.contact-row {
  display: grid;
  grid-template-columns: 136px 1fr;
  gap: 22px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.contact-row strong {
  color: var(--pink-deep);
}

.contact-row span,
.contact-row a {
  color: var(--muted);
}

.contact-form {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.field {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
}

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

.field label {
  font-size: 13px;
  font-weight: 800;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #fbfaf7;
  padding: 13px 14px;
  color: var(--ink);
}

.field textarea {
  min-height: 160px;
  resize: vertical;
}

.submit-button {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-height: 46px;
  border: 0;
  border-bottom: 1px solid currentColor;
  background: transparent;
  color: var(--ink);
  padding: 0;
  font-family: var(--brand);
  font-size: 13px;
  font-weight: 400;
  text-transform: uppercase;
  cursor: pointer;
}

.map-panel {
  position: relative;
  min-height: 380px;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(5, 8, 20, 0.92), rgba(5, 8, 20, 0.48) 48%, rgba(5, 8, 20, 0.18)),
    url("../img/home/global-map-korea.png") 64% center / cover no-repeat;
}

.map-panel .container {
  display: grid;
  align-content: center;
  min-height: 380px;
}

.map-panel h2 {
  margin: 0 0 18px;
  font-family: var(--serif);
  font-size: 42px;
  font-weight: 400;
}

.site-footer {
  background: #f5f2ed;
  color: var(--ink);
}

.footer-top {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) repeat(3, minmax(0, 1fr));
  gap: 46px;
  padding: 58px 0;
  border-bottom: 1px solid var(--line);
}

.footer-brand strong {
  display: block;
  margin-bottom: 12px;
}

.footer-logo {
  width: 168px;
  height: auto;
}

.footer-brand p,
.footer-col p,
.footer-col a {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.footer-col h2 {
  margin: 0 0 16px;
  font-family: var(--brand);
  font-size: 12px;
  font-weight: 400;
  text-transform: uppercase;
}

.footer-col ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 0;
  color: var(--muted);
  font-size: 13px;
}

.home-page .site-header {
  background: rgba(2, 6, 17, 0.24);
}

.moodboard-shell {
  display: grid;
  grid-template-columns: 290px minmax(0, 1fr);
  min-height: 100vh;
  padding-top: 78px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    radial-gradient(circle at 18% 12%, rgba(30, 41, 59, 0.36), transparent 32%),
    var(--navy-950);
  background-size: 80px 80px, 80px 80px, auto, auto;
  border-bottom: 1px solid var(--line);
}

.mood-sidebar {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: calc(100vh - 78px);
  padding: 52px 44px 40px;
  border-right: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(7, 12, 22, 0.78), rgba(2, 6, 17, 0.98)),
    url("../img/hero-space.jpg") center / cover no-repeat;
}

.mood-sidebar::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(2, 6, 17, 0.62);
  pointer-events: none;
}

.mood-sidebar > * {
  position: relative;
  z-index: 1;
}

.mood-logo {
  width: 190px;
  margin-bottom: 12px;
}

.mood-kicker,
.mood-concept-title,
.mood-meta-title {
  display: block;
  color: rgba(255, 255, 255, 0.84);
  font-family: var(--brand);
  font-size: 13px;
  font-weight: 400;
  text-transform: uppercase;
}

.mood-statement {
  margin: 72px 0 66px;
  padding: 54px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.84);
  font-size: 14px;
  line-height: 1.85;
  text-align: center;
}

.mood-concept {
  margin-top: auto;
}

.mood-concept-title {
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.72);
  text-align: center;
}

.mood-concept ul {
  display: grid;
  gap: 26px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.mood-concept li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 18px;
  align-items: center;
}

.mood-icon {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  color: rgba(255, 255, 255, 0.82);
}

.mood-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.1;
}

.mood-concept strong {
  display: block;
  margin-bottom: 2px;
  color: var(--white);
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 400;
}

.mood-concept small {
  display: block;
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
}

.mood-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: minmax(218px, 24vh);
  align-content: start;
}

.mood-panel {
  position: relative;
  min-height: 220px;
  overflow: hidden;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--navy-900);
  color: var(--white);
}

.mood-panel img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.74) contrast(1.08) saturate(0.88);
}

.mood-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2, 6, 17, 0.58), rgba(2, 6, 17, 0.16) 48%, rgba(2, 6, 17, 0.68)),
    linear-gradient(180deg, rgba(2, 6, 17, 0.14), rgba(2, 6, 17, 0.38));
  pointer-events: none;
}

.panel-01 {
  grid-column: span 12;
  min-height: 330px;
}

.panel-02 {
  grid-column: span 5;
}

.panel-02 img {
  filter: brightness(0.92) contrast(1.04) saturate(0.9);
}

.panel-02::after {
  background: linear-gradient(180deg, rgba(2, 6, 17, 0.02), rgba(2, 6, 17, 0.12));
}

.panel-03 {
  grid-column: span 7;
}

.panel-04 {
  grid-column: span 5;
}

.panel-05 {
  grid-column: span 7;
}

.panel-06,
.panel-07,
.panel-08 {
  grid-column: span 4;
}

.panel-06 img {
  filter: brightness(0.9) contrast(1.06) saturate(0.9);
}

.panel-06::after {
  background: linear-gradient(180deg, rgba(2, 6, 17, 0.06), rgba(2, 6, 17, 0.18));
}

.mood-number {
  position: absolute;
  left: 24px;
  top: 20px;
  z-index: 2;
  display: grid;
  gap: 0;
  color: rgba(255, 255, 255, 0.9);
  font-family: var(--brand);
  line-height: 1.05;
  text-transform: uppercase;
}

.mood-number.dark {
  color: rgba(2, 6, 17, 0.78);
}

.mood-number strong {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
}

.mood-number span {
  font-size: 11px;
}

.mood-copy {
  position: absolute;
  z-index: 2;
  left: 56%;
  right: 8%;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.86);
}

.mood-copy-right {
  left: auto;
  right: 11%;
  width: min(360px, 34vw);
}

.mood-copy img {
  position: static;
  width: 180px;
  height: auto;
  margin: 0 0 22px;
  object-fit: contain;
  filter: none;
}

.mood-copy p {
  margin: 0;
  font-size: 15px;
  line-height: 1.9;
}

.mood-copy-dark {
  left: auto;
  right: 9%;
  color: rgba(2, 6, 17, 0.9);
}

.mood-meta {
  display: grid;
  grid-template-columns: 1.1fr 1.35fr 1.6fr;
  gap: 0;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(8, 14, 25, 0.98), rgba(2, 6, 17, 1)),
    var(--navy-950);
}

.mood-meta-block {
  min-height: 136px;
  padding: 24px 42px;
  border-right: 1px solid var(--line);
}

.mood-meta-block:last-child {
  border-right: 0;
}

.mood-meta-title {
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 12px;
}

.palette-list,
.keyword-list {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
}

.palette-list span {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.78);
  font-family: var(--brand);
  font-size: 10px;
}

.palette-list i {
  display: block;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  background: var(--swatch);
  box-shadow: inset 0 0 18px rgba(255, 255, 255, 0.08);
}

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

.type-pair p {
  margin: 0;
  color: var(--white);
  font-family: var(--serif);
  font-size: 20px;
  line-height: 1.35;
}

.type-pair small {
  display: block;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.52);
  font-family: var(--brand);
  font-size: 10px;
  text-transform: uppercase;
}

.keyword-list {
  gap: 10px;
}

.keyword-list span {
  min-width: 74px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 999px;
  padding: 6px 14px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 11px;
  text-align: center;
}

.section,
.section-soft {
  background: var(--navy-950);
  color: var(--ink);
}

.section-soft {
  background: var(--soft);
}

.section-head p,
.split-copy p,
.lead,
.value-item p,
.product-card p,
.journal-card p,
.portfolio-card p,
.info-card p,
.timeline-item p,
.principle p {
  color: var(--muted);
}

.value-grid,
.stat-grid,
.principle-grid {
  background: transparent;
  border-color: var(--line);
}

.value-item,
.stat,
.timeline-item {
  border-color: var(--line);
}

.product-feature,
.product-card,
.journal-card,
.portfolio-card,
.info-card,
.contact-form,
.principle {
  background: rgba(8, 14, 25, 0.86);
  border-color: var(--line);
  color: var(--ink);
}

.product-feature {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.about-image {
  border-color: var(--line);
}

.field label,
.contact-row strong {
  color: rgba(255, 255, 255, 0.88);
}

.field input,
.field textarea,
.field select {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.06);
  color: var(--ink);
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #050914;
  color: var(--ink);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 520ms ease, transform 520ms ease;
}

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

@media (max-width: 1020px) {
  .moodboard-shell {
    grid-template-columns: 1fr;
    padding-top: 78px;
  }

  .mood-sidebar {
    min-height: auto;
    padding: 44px 32px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .mood-statement {
    margin: 38px 0;
    padding: 34px 0;
  }

  .mood-concept ul {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 18px;
  }

  .mood-concept li {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .mood-grid {
    grid-auto-rows: minmax(220px, auto);
  }

  .panel-01 {
    min-height: 360px;
  }

  .panel-02,
  .panel-03,
  .panel-04,
  .panel-05,
  .panel-06,
  .panel-07,
  .panel-08 {
    grid-column: span 6;
  }

  .mood-meta {
    grid-template-columns: 1fr;
  }

  .mood-meta-block {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .hero h1 {
    font-size: 60px;
  }

  .page-hero h1 {
    font-size: 56px;
  }

  .section-head,
  .product-feature,
  .science-inner,
  .about-grid,
  .contact-layout,
  .footer-top {
    grid-template-columns: 1fr;
  }

  .profile-timeline {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .profile-timeline::before {
    left: 34px;
    right: auto;
    top: 0;
    bottom: 0;
    width: 1px;
    height: auto;
    background: linear-gradient(180deg, transparent, rgba(216, 201, 177, 0.46), transparent);
  }

  .timeline-card {
    min-height: auto;
    padding: 26px 24px 28px;
  }

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

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

  .company-identity-visual {
    width: min(100%, 560px);
    margin: 0 auto;
  }

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

  .product-line-grid .portfolio-card.featured {
    grid-column: 1 / -1;
  }

}

@media (max-width: 820px) {
  .header-inner {
    width: min(100% - 32px, 1400px);
  }

  .mobile-header-actions {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: 78px 0 0;
    z-index: 101;
    display: none;
    height: calc(100dvh - 78px);
    overflow-y: auto;
    overscroll-behavior: contain;
    background: var(--navy-950);
    padding: 36px 24px 48px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  body.nav-open .site-nav {
    display: block;
  }

  .nav-list {
    display: grid;
    gap: 4px;
  }

  .nav-list a {
    min-height: 56px;
    color: rgba(255, 255, 255, 0.92);
    font-size: 20px;
  }

  .language-switcher--desktop {
    display: none;
  }

  .language-select--nav {
    width: min(100%, 240px);
    height: 46px;
    font-size: 14px;
  }

  .language-select--mobile {
    width: 58px;
    min-width: 58px;
    height: 38px;
    font-size: 12px;
  }

  .mood-grid {
    display: block;
  }

  .mood-panel,
  .panel-01 {
    min-height: 290px;
  }

  .mood-copy,
  .mood-copy-right,
  .mood-copy-dark {
    left: 24px;
    right: 24px;
    top: auto;
    bottom: 28px;
    width: auto;
    transform: none;
  }

  .mood-copy img {
    width: 150px;
    margin-bottom: 14px;
  }

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

  .type-pair {
    grid-template-columns: 1fr;
  }

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

  .hero,
  .hero-inner {
    min-height: 700px;
  }

  .hero h1 {
    font-size: 44px;
  }

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

  .page-hero h1 {
    font-size: 44px;
  }

  .hero p,
  .page-hero p {
    font-size: 16px;
  }

  .section {
    padding: 76px 0;
  }

  .section-tight {
    padding: 62px 0;
  }

  .section-head {
    gap: 24px;
    margin-bottom: 34px;
  }

  .section-head h2,
  .split-copy h2,
  .contact-panel h2,
  .cta-band h2 {
    font-size: 34px;
  }

  .value-grid,
  .stat-grid,
  .product-grid,
  .journal-grid,
  .portfolio-grid,
  .info-grid {
    grid-template-columns: 1fr;
  }

  .product-line-grid {
    grid-template-columns: 1fr;
  }

  .value-item,
  .stat {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .section-dark .stat {
    border-bottom-color: var(--line-light);
  }

  .value-item:last-child,
  .stat:last-child {
    border-bottom: 0;
  }

  .company-identity-visual {
    min-height: 390px;
    aspect-ratio: auto;
    padding: 24px;
  }

  .company-identity-visual::after {
    display: none;
  }

  .identity-visual-core {
    position: relative;
    left: auto;
    top: auto;
    width: auto;
    margin: 54px 0 26px;
  }

  .identity-layer-list {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
  }

  .product-feature .split-copy {
    padding: 58px 24px;
  }

  .portfolio-card.featured {
    grid-column: span 1;
  }

  .product-line-grid .portfolio-card.featured {
    grid-column: 1 / -1;
  }

  .portfolio-card.featured img,
  .portfolio-card img,
  .product-card img,
  .journal-card img {
    height: 220px;
  }

  .quality-showcase,
  .experience-showcase {
    gap: 44px;
  }

  .quality-group,
  .experience-group {
    grid-template-columns: 1fr;
    gap: 22px;
    padding-top: 32px;
  }

  .quality-group-head,
  .experience-group-head {
    position: static;
  }

  .quality-image-grid,
  .experience-image-grid,
  .experience-image-grid--six,
  .experience-image-grid--eight {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .quality-image-card,
  .experience-image-card {
    min-height: 220px;
  }

  .product-line-grid .portfolio-card.featured img,
  .product-line-grid .portfolio-card img {
    height: 280px;
  }

  .product-line-grid .portfolio-card.featured img {
    height: auto;
    object-fit: contain;
    object-position: center;
  }

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

  .contact-form {
    padding: 24px;
  }

  .contact-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .footer-bottom {
    display: grid;
  }
}

@media (max-width: 560px) {
  .brand {
    width: 152px;
  }

  .mood-sidebar {
    padding: 36px 22px;
  }

  .mood-logo {
    width: 168px;
  }

  .mood-concept ul {
    grid-template-columns: 1fr;
    justify-items: stretch;
  }

  .mood-concept li {
    grid-template-columns: 38px 1fr;
    justify-items: start;
    text-align: left;
  }

  .mood-meta-block {
    padding: 24px 22px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: 38px;
  }

  .hero-actions {
    display: grid;
    gap: 14px;
  }

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

  .company-identity-visual {
    min-height: 370px;
    padding: 22px;
  }

  .identity-visual-top {
    align-items: flex-start;
  }

  .identity-visual-core strong {
    font-size: 26px;
  }

  .identity-layer-list div {
    grid-template-columns: 28px minmax(0, 1fr);
  }
}

.legacy-home {
  --ink: #171717;
  --muted: #6f737b;
  --soft: #f7f4ef;
  --line: rgba(17, 24, 39, 0.14);
  --line-light: rgba(255, 255, 255, 0.18);
  --pink: #e85a78;
  --pink-deep: #c83e5d;
  --gold: #c7a678;
  --blue-gray: #44576c;
  background: var(--white);
  color: var(--ink);
}

.legacy-home .site-header {
  background: transparent;
  border-bottom: 0;
  backdrop-filter: none;
}

.legacy-home .site-header.is-scrolled,
.legacy-home .site-header.light {
  background: rgba(5, 8, 20, 0.88);
  border-bottom: 1px solid var(--line-light);
  backdrop-filter: blur(18px);
}

.legacy-home .section {
  background: var(--white);
  color: var(--ink);
}

.legacy-home .section-soft {
  background: var(--soft);
}

.legacy-home .product-feature {
  background: #f4f0e8;
  border: 0;
  color: var(--ink);
}

.legacy-home .product-card,
.legacy-home .journal-card,
.legacy-home .portfolio-card,
.legacy-home .info-card {
  background: var(--white);
  border-color: var(--line);
  color: var(--ink);
}

.legacy-home .value-grid,
.legacy-home .stat-grid,
.legacy-home .principle-grid {
  border-color: var(--line);
}

.legacy-home .value-item,
.legacy-home .stat {
  border-color: var(--line);
}

.legacy-home .science-band {
  color: var(--white);
}

.legacy-home .cta-band {
  color: var(--white);
}

.legacy-home .site-footer {
  border-top: 0;
  background: #f5f2ed;
  color: var(--ink);
}

.legacy-home .footer-brand p,
.legacy-home .footer-col p,
.legacy-home .footer-col a,
.legacy-home .footer-bottom {
  color: var(--muted);
}

.profile-feature {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: 52px;
  align-items: stretch;
}

.hero-proof-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.hero-proof-list span {
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  padding: 8px 14px;
  color: rgba(255, 255, 255, 0.82);
  font-family: var(--brand);
  font-size: 11px;
  text-transform: uppercase;
}

.hero-proof-list + .hero-actions {
  margin-top: 28px;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.proof-card {
  min-height: 260px;
  padding: 30px 26px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0)),
    rgba(8, 14, 25, 0.94);
}

.proof-card span {
  display: block;
  margin-bottom: 34px;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 400;
}

.proof-card strong {
  display: block;
  margin-bottom: 14px;
  color: var(--white);
  font-family: var(--brand);
  font-size: 20px;
  font-weight: 400;
}

.proof-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
  line-height: 1.8;
}

.brand-keyword-flow {
  display: flex;
  align-items: center;
  width: min(100%, 760px);
  margin: 52px auto 0;
}

.brand-keyword-flow span {
  display: grid;
  place-items: center;
  width: clamp(104px, 10.4vw, 136px);
  aspect-ratio: 1;
  margin-left: -1px;
  border: 1px solid rgba(216, 201, 177, 0.72);
  border-radius: 50%;
  color: var(--white);
  font-family: var(--serif);
  font-size: clamp(16px, 1.4vw, 20px);
  font-weight: 400;
  line-height: 1;
}

.brand-keyword-flow span:first-child {
  margin-left: 0;
}

.brand-keyword-flow i {
  position: relative;
  flex: 1;
  min-width: 72px;
  height: 1px;
  margin-left: -1px;
  background: rgba(216, 201, 177, 0.72);
}

.brand-keyword-flow i::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 13px;
  height: 13px;
  border-right: 1px solid rgba(216, 201, 177, 0.72);
  border-top: 1px solid rgba(216, 201, 177, 0.72);
  transform: translateY(-50%) rotate(45deg);
  transform-origin: center;
}

.profile-quote,
.profile-note {
  display: grid;
  align-content: center;
  min-height: 360px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(8, 14, 25, 0.96), rgba(17, 24, 39, 0.76)),
    url("../img/hero-space.jpg") center / cover no-repeat;
  padding: 42px;
  color: var(--white);
}

.profile-quote span,
.profile-note span {
  color: var(--gold);
  font-family: var(--brand);
  font-size: 12px;
  text-transform: uppercase;
}

.profile-quote strong {
  display: block;
  margin: 18px 0 16px;
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 400;
  line-height: 1.12;
}

.profile-quote p,
.profile-note p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

.brand-meaning-visual {
  position: relative;
  display: grid;
  align-content: center;
  min-height: 360px;
  padding: 30px;
  color: var(--white);
  background:
    radial-gradient(circle at 50% 54%, rgba(216, 201, 177, 0.2), transparent 38%),
    linear-gradient(135deg, rgba(8, 14, 25, 0.98), rgba(14, 23, 38, 0.94));
}

.meaning-visual-label {
  position: absolute;
  left: 28px;
  top: 26px;
  z-index: 2;
  color: var(--gold);
  font-family: var(--brand);
  font-size: 12px;
  text-transform: uppercase;
}

.meaning-venn {
  position: relative;
  width: min(100%, 430px);
  aspect-ratio: 1;
  margin: 16px auto 0;
}

.meaning-circle {
  position: absolute;
  width: 66%;
  aspect-ratio: 1;
  border: 1px solid rgba(216, 201, 177, 0.66);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.035);
  box-shadow: inset 0 0 42px rgba(216, 201, 177, 0.05);
}

.meaning-circle span {
  position: absolute;
  color: rgba(255, 255, 255, 0.88);
  font-family: var(--brand);
  font-size: clamp(15px, 1.45vw, 19px);
  line-height: 1.18;
  text-align: center;
  text-transform: uppercase;
  transform: translate(-50%, -50%);
}

.meaning-circle-food {
  left: 17%;
  top: 0;
}

.meaning-circle-food span {
  left: 50%;
  top: 30%;
}

.meaning-circle-sustain {
  left: 1%;
  bottom: 6%;
}

.meaning-circle-sustain span {
  left: 34%;
  top: 58%;
}

.meaning-circle-routine {
  right: 1%;
  bottom: 6%;
}

.meaning-circle-routine span {
  left: 66%;
  top: 58%;
}

.meaning-venn strong {
  position: absolute;
  left: 50%;
  top: 55%;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 112px;
  height: 112px;
  border: 1px solid rgba(216, 201, 177, 0.86);
  border-radius: 50%;
  background: rgba(8, 14, 25, 0.82);
  color: var(--gold);
  font-family: var(--brand);
  font-size: 19px;
  font-weight: 500;
  transform: translate(-50%, -50%);
}

.brand-meaning-visual p {
  width: min(100%, 520px);
  margin: 12px auto 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  line-height: 1.75;
  text-align: center;
}

.profile-note p {
  margin-bottom: 18px;
  font-family: var(--serif);
  font-size: clamp(30px, 3.4vw, 48px);
  line-height: 1.25;
}

.timeline-section {
  position: relative;
  overflow: hidden;
}

.timeline-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 16% 18%, rgba(216, 201, 177, 0.12), transparent 24%),
    radial-gradient(circle at 86% 74%, rgba(100, 116, 139, 0.18), transparent 28%);
}

.timeline-section .container {
  position: relative;
  z-index: 1;
}

.profile-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 46px;
}

.profile-timeline::before {
  content: "";
  position: absolute;
  left: 9%;
  right: 9%;
  top: 41px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(216, 201, 177, 0.54), transparent);
}

.timeline-card {
  position: relative;
  display: grid;
  align-content: start;
  min-height: 390px;
  padding: 28px 26px 30px;
  border: 1px solid rgba(216, 201, 177, 0.24);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.012)),
    rgba(5, 10, 18, 0.82);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.18);
}

.timeline-card::before {
  content: "";
  position: absolute;
  left: 28px;
  top: 35px;
  width: 12px;
  height: 12px;
  border: 1px solid rgba(216, 201, 177, 0.9);
  border-radius: 50%;
  background: var(--soft);
  box-shadow: 0 0 0 6px rgba(216, 201, 177, 0.08);
}

.timeline-card.is-featured {
  border-color: rgba(216, 201, 177, 0.42);
  background:
    linear-gradient(180deg, rgba(216, 201, 177, 0.08), rgba(255, 255, 255, 0.016)),
    rgba(5, 10, 18, 0.9);
}

.timeline-year {
  display: grid;
  gap: 4px;
  padding-left: 34px;
}

.timeline-year strong {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 400;
  line-height: 1;
}

.timeline-year span {
  color: rgba(255, 255, 255, 0.56);
  font-family: var(--brand);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.timeline-card h3 {
  margin: 34px 0 0;
  color: var(--white);
  font-size: 22px;
  font-weight: 400;
  line-height: 1.45;
}

.timeline-card ul {
  display: grid;
  gap: 13px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.timeline-card li {
  position: relative;
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 15px;
  line-height: 1.65;
}

.timeline-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.78em;
  width: 6px;
  height: 6px;
  border: 1px solid rgba(216, 201, 177, 0.74);
  border-radius: 50%;
  transform: translateY(-50%);
}

@media (max-width: 1020px) {
  .profile-timeline {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .profile-timeline::before {
    left: 34px;
    right: auto;
    top: 0;
    bottom: 0;
    width: 1px;
    height: auto;
    background: linear-gradient(180deg, transparent, rgba(216, 201, 177, 0.46), transparent);
  }

  .timeline-card {
    min-height: auto;
    padding: 26px 24px 28px;
  }
}

@media (max-width: 560px) {
  .timeline-card {
    padding: 24px 20px 26px;
  }

  .timeline-card h3 {
    margin-top: 28px;
    font-size: 20px;
  }

  .timeline-card li {
    font-size: 14px;
  }
}

.channel-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.channel-pills span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 14px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
}

.document-visual {
  background: var(--white);
}

.document-visual img {
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  background: var(--white);
}

@media (max-width: 1020px) {
  .profile-feature {
    grid-template-columns: 1fr;
  }

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

  .brand-keyword-flow {
    width: min(100%, 560px);
  }

  .brand-meaning-visual {
    min-height: 430px;
  }

  .meaning-venn {
    width: min(100%, 390px);
  }
}

@media (max-width: 560px) {
  .hero-proof-list {
    gap: 8px;
    margin-top: 26px;
  }

  .hero-proof-list span {
    padding: 7px 11px;
    font-size: 10px;
  }

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

  .proof-card {
    min-height: auto;
    padding: 26px 22px;
  }

  .proof-card span {
    margin-bottom: 22px;
  }

  .brand-keyword-flow {
    justify-content: center;
    margin-top: 38px;
  }

  .brand-keyword-flow span {
    width: 108px;
    font-size: 15px;
  }

  .brand-keyword-flow i {
    display: none;
  }

  .brand-meaning-visual {
    min-height: 380px;
    padding: 24px 20px;
  }

  .meaning-visual-label {
    left: 22px;
    top: 22px;
    font-size: 11px;
  }

  .meaning-venn {
    width: min(100%, 310px);
    margin-top: 24px;
  }

  .meaning-circle span {
    font-size: 13px;
  }

  .meaning-venn strong {
    width: 86px;
    height: 86px;
    font-size: 15px;
  }

  .brand-meaning-visual p {
    font-size: 13px;
  }

  .profile-quote,
  .profile-note {
    min-height: 280px;
    padding: 28px 22px;
  }
}

.home-rebuild {
  --home-ink: #111111;
  --home-muted: #626262;
  --home-paper: #f7f6f3;
  --home-line: rgba(17, 17, 17, 0.12);
  background: var(--home-paper);
  color: var(--home-ink);
}

.home-rebuild .container {
  width: min(100% - 56px, 1280px);
}

.home-rebuild .site-header {
  background: rgba(2, 6, 17, 0.18);
  border-bottom: 0;
}

.home-rebuild .site-header.is-scrolled,
.home-rebuild .site-header.light {
  background: rgba(2, 6, 17, 0.86);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.home-rebuild .header-inner {
  width: min(100% - 56px, 1400px);
}

.home-rebuild .brand {
  width: 168px;
}

.home-hero {
  position: relative;
  min-height: 740px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(2, 6, 17, 0.9), rgba(2, 6, 17, 0.2) 54%, rgba(2, 6, 17, 0.16)),
    url("../img/home/hero-earth.png") center / cover no-repeat;
  overflow: hidden;
}

.home-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 120px;
  background: linear-gradient(180deg, transparent, rgba(2, 6, 17, 0.22));
  pointer-events: none;
}

.home-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: center;
  min-height: 740px;
  padding: 112px 0 72px;
}

.home-hero-copy {
  width: min(100%, 780px);
}

.home-hero h1 {
  margin: 0;
  color: rgba(255, 255, 255, 0.96);
  font-family: var(--serif);
  font-size: clamp(54px, 5.4vw, 82px);
  font-weight: 400;
  line-height: 1.02;
}

.home-hero p {
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 16px;
  line-height: 1.8;
}

.home-hero .hero-proof-list {
  margin-top: 24px;
}

.attract-section,
.direction-section,
.product-section,
.journal-section {
  background: var(--home-paper);
  color: var(--home-ink);
}

.attract-section {
  padding: 78px 0 74px;
}

.attract-grid {
  display: grid;
  grid-template-columns: minmax(220px, 0.68fr) minmax(0, 1.32fr);
  gap: 92px;
  align-items: start;
}

.home-rebuild .attract-section .eyebrow,
.home-rebuild .direction-section .eyebrow,
.home-rebuild .product-section .eyebrow,
.home-rebuild .journal-section .eyebrow {
  color: #2b2b2b;
}

.attract-intro h2,
.journal-title h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(32px, 3vw, 44px);
  font-weight: 400;
  line-height: 1.22;
}

.attract-intro p,
.direction-copy p,
.product-copy p,
.journal-title p {
  margin: 26px 0 0;
  color: #333333;
  font-size: 16px;
  line-height: 1.8;
}

.attract-content h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(48px, 5vw, 72px);
  font-weight: 400;
  line-height: 1.1;
}

.attract-content > p {
  margin: 14px 0 28px;
  color: var(--home-muted);
  font-size: 17px;
}

.attract-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.attract-card {
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 4px;
}

.attract-card img {
  width: 100%;
  aspect-ratio: 1.42;
  object-fit: cover;
}

.attract-card div {
  padding: 18px 20px 20px;
}

.attract-card strong,
.home-journal-grid time,
.benefit-list strong,
.science-points strong {
  display: block;
  font-family: var(--brand);
  font-size: 12px;
  font-weight: 400;
  text-transform: uppercase;
}

.attract-card span {
  display: block;
  margin-top: 6px;
  color: #333333;
  font-size: 13px;
}

.direction-section {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  min-height: 350px;
  border-top: 1px solid rgba(17, 17, 17, 0.06);
  border-bottom: 1px solid rgba(17, 17, 17, 0.06);
}

.direction-image {
  min-height: 350px;
  overflow: hidden;
}

.direction-image img {
  width: 100%;
  height: 100%;
  min-height: 350px;
  object-fit: cover;
}

.direction-copy {
  display: grid;
  align-content: center;
  padding: 70px 9vw;
}

.direction-copy h2,
.product-copy h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(42px, 4.8vw, 66px);
  font-weight: 400;
  line-height: 1.08;
}

.science-section {
  padding: 74px 0;
  background:
    radial-gradient(circle at 36% 42%, rgba(30, 64, 91, 0.45), transparent 38%),
    linear-gradient(90deg, #020611, #06101d 52%, #020611);
  color: var(--white);
}

.science-layout {
  display: grid;
  grid-template-columns: minmax(220px, 0.62fr) minmax(420px, 1fr) minmax(260px, 0.72fr);
  gap: 40px 54px;
  align-items: center;
}

.science-copy {
  grid-column: 1 / -1;
  justify-self: center;
  max-width: 760px;
  text-align: center;
}

.science-copy h2 {
  margin: 0;
  text-align: center;
  font-family: var(--serif);
  font-size: clamp(36px, 3.9vw, 58px);
  font-weight: 400;
  line-height: 1.12;
}

.science-copy p {
  margin: 24px auto 0;
  text-align: center;
  color: rgba(255, 255, 255, 0.76);
  font-size: 15px;
  line-height: 1.85;
}

.venn {
  grid-column: 2;
  position: relative;
  --venn-circle: clamp(238px, 62%, 322px);
  --venn-core: min(18%, 78px);
  width: 100%;
  max-width: 520px;
  aspect-ratio: 1 / 1;
  height: auto;
  margin: 0 auto;
  isolation: isolate;
}

.venn::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 52%;
  width: 34%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(216, 201, 177, 0.28), rgba(52, 76, 82, 0.16) 68%, transparent 72%);
  transform: translate(-50%, -50%);
  z-index: 0;
}

.venn-circle {
  position: absolute;
  left: var(--venn-x);
  top: var(--venn-y);
  width: var(--venn-circle);
  aspect-ratio: 1;
  background:
    radial-gradient(circle at 36% 28%, rgba(255, 255, 255, 0.08), transparent 45%),
    var(--venn-tint);
  border: 1px solid rgba(216, 201, 177, 0.72);
  border-radius: 50%;
  box-shadow: inset 0 0 70px rgba(216, 201, 177, 0.08);
  color: rgba(255, 255, 255, 0.86);
  text-align: center;
  z-index: 1;
  transform: translate(-50%, -50%);
}

.venn-label {
  position: absolute;
  display: grid;
  gap: 6px;
  width: 124px;
  color: rgba(255, 255, 255, 0.9);
  text-align: center;
  transform: translate(-50%, -50%);
  z-index: 3;
  text-shadow: 0 2px 14px rgba(2, 6, 17, 0.72);
  pointer-events: none;
}

.venn-label strong {
  font-family: var(--brand);
  font-size: 15px;
  font-weight: 400;
  text-transform: uppercase;
}

.venn-label span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  line-height: 1.35;
}

.venn-label-nature {
  left: 50%;
  top: 22%;
}

.venn-label-science {
  left: 20%;
  top: 61%;
}

.venn-label-routine {
  left: 80%;
  top: 61%;
}

.venn-nature {
  --venn-x: 50%;
  --venn-y: 34%;
  --venn-tint: rgba(164, 224, 164, 0.16);
}

.venn-science {
  --venn-x: 36%;
  --venn-y: 62%;
  --venn-tint: rgba(132, 179, 255, 0.18);
}

.venn-routine {
  --venn-x: 64%;
  --venn-y: 62%;
  --venn-tint: rgba(255, 206, 126, 0.16);
}

.venn-core {
  position: absolute;
  left: 50%;
  top: 52%;
  color: #ffffff;
  font-family: var(--brand);
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.045em;
  line-height: 1;
  text-shadow:
    0 0 4px rgba(255, 255, 255, 0.92),
    0 0 14px rgba(216, 201, 177, 0.82),
    0 0 28px rgba(93, 160, 210, 0.42),
    0 2px 16px rgba(2, 6, 17, 0.95);
  text-transform: uppercase;
  transform: translate(-50%, -50%);
  z-index: 4;
}

.science-points {
  grid-column: 3;
  display: grid;
  gap: 32px;
}

.science-points article,
.benefit-list article {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 20px;
  align-items: center;
}

.line-symbol {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border: 1px solid rgba(216, 201, 177, 0.5);
  border-radius: 50%;
  color: currentColor;
}

.line-symbol svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.science-points p,
.benefit-list p {
  margin: 5px 0 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 13px;
}

.global-section {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(2, 6, 17, 0.98), rgba(2, 6, 17, 0.78) 31%, rgba(2, 6, 17, 0.08) 66%, rgba(2, 6, 17, 0.35)),
    linear-gradient(180deg, rgba(2, 6, 17, 0.04), rgba(2, 6, 17, 0.28)),
    url("../img/home/global-map-korea.png") center / cover no-repeat;
}

.global-section::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 1px),
    linear-gradient(180deg, transparent 70%, rgba(2, 6, 17, 0.36));
  z-index: 2;
}

.global-layout {
  position: relative;
  z-index: 3;
  display: grid;
  align-items: center;
  min-height: 560px;
  padding: 96px 0;
}

.global-copy {
  width: min(100%, 520px);
}

.global-section .eyebrow {
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.72);
}

.global-copy h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 400;
  line-height: 1.26;
}

.global-copy p {
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  line-height: 1.9;
}

.global-link {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.86);
  font-family: var(--brand);
  font-size: 12px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.global-link::after {
  content: "";
  order: 1;
  width: 72px;
  height: 1px;
  background: rgba(255, 255, 255, 0.54);
}

.global-link span {
  order: 2;
  margin-left: -10px;
}

.product-section {
  padding: 82px 0;
}

.product-section .product-layout {
  display: grid;
  width: min(100% - 28px, 1560px);
  grid-template-columns: 1fr;
  gap: 42px;
  align-items: start;
}

.product-copy {
  justify-self: center;
  max-width: 720px;
  text-align: center;
}

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

.text-arrow {
  display: inline-flex;
  margin-top: 18px;
  color: var(--home-ink);
  font-size: 28px;
}

.gravity-bottle {
  position: relative;
  display: grid;
  justify-items: center;
  filter: drop-shadow(0 20px 24px rgba(0, 0, 0, 0.28));
}

.bottle-cap {
  width: 106px;
  height: 34px;
  border-radius: 12px 12px 4px 4px;
  background: linear-gradient(90deg, #050505, #333, #050505);
  box-shadow: inset 0 -8px 14px rgba(255, 255, 255, 0.08);
}

.bottle-body {
  display: grid;
  justify-items: center;
  align-content: center;
  width: 132px;
  height: 210px;
  border-radius: 20px 20px 32px 32px;
  background:
    radial-gradient(circle at 30% 18%, rgba(255, 255, 255, 0.18), transparent 28%),
    linear-gradient(90deg, #050505, #222 42%, #050505);
  color: var(--white);
}

.bottle-body span {
  font-family: var(--brand);
  font-size: 20px;
  letter-spacing: 2px;
}

.bottle-body small {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.78);
  font-family: var(--brand);
  font-size: 9px;
  line-height: 1.35;
  text-align: center;
  text-transform: uppercase;
}

.bottle-body i {
  margin-top: 30px;
  color: rgba(255, 255, 255, 0.56);
  font-family: var(--brand);
  font-size: 8px;
  font-style: normal;
  text-transform: uppercase;
}

.product-showcase {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
  justify-self: stretch;
  width: 100%;
}

.pures-product-card {
  display: block;
  min-width: 0;
  overflow: hidden;
  border-radius: 22px;
  background: #f6f2ef;
  box-shadow: 0 18px 42px rgba(17, 17, 17, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.pures-product-card:hover {
  box-shadow: 0 24px 52px rgba(17, 17, 17, 0.12);
  transform: translateY(-4px);
}

.pures-product-card img {
  width: 100%;
  height: auto;
  border-radius: inherit;
}

.benefit-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-left: 1px solid var(--home-line);
}

.benefit-list article {
  grid-template-columns: 1fr;
  justify-items: center;
  min-height: 150px;
  padding: 20px 28px;
  border-right: 1px solid var(--home-line);
  text-align: center;
}

.benefit-list .line-symbol {
  border: 0;
}

.benefit-list p {
  color: #4f4f4f;
}

.journal-section {
  padding: 58px 0 74px;
}

.journal-layout {
  display: grid;
  grid-template-columns: minmax(230px, 0.56fr) minmax(0, 1.44fr);
  gap: 64px;
  align-items: end;
}

.home-journal-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.home-journal-grid article {
  min-width: 0;
}

.home-journal-grid img {
  width: 100%;
  aspect-ratio: 1.72;
  object-fit: cover;
  border-radius: 3px;
}

.home-journal-grid time {
  margin-top: 14px;
  color: #999999;
  font-size: 11px;
}

.home-journal-grid h3 {
  margin: 6px 0 0;
  color: #1f1f1f;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.45;
}

.dark-link {
  margin-top: 34px;
  color: var(--home-ink);
}

.promise-section {
  position: relative;
  min-height: 360px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(2, 6, 17, 0.96), rgba(2, 6, 17, 0.64), rgba(2, 6, 17, 0.86)),
    url("../img/home/promise-earth.png") center / cover no-repeat;
}

.promise-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.5fr);
  gap: 90px;
  align-items: center;
  min-height: 360px;
  padding: 72px 0;
}

.promise-layout h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(42px, 5vw, 68px);
  font-weight: 400;
  line-height: 1.12;
}

.promise-layout p {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 17px;
  line-height: 1.9;
}

.home-footer {
  background: #020611;
  color: var(--white);
}

@media (max-width: 1120px) {
  .science-layout,
  .product-layout,
  .journal-layout {
    grid-template-columns: 1fr;
  }

  .venn,
  .science-points {
    grid-column: 1;
  }

  .product-section .product-layout {
    grid-template-columns: 1fr;
  }

  .attract-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .benefit-list {
    border-left: 0;
  }

  .benefit-list article {
    border-left: 1px solid var(--home-line);
  }

  .product-showcase {
    grid-template-columns: repeat(5, minmax(150px, 1fr));
  }

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

  .certification-mark:nth-child(3n) {
    border-right: 0;
  }

  .certification-mark:nth-child(n + 4) {
    border-top: 1px solid rgba(17, 18, 20, 0.1);
  }

  .retail-lockup {
    margin-right: auto;
    margin-left: auto;
  }

  .retail-network-stage {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 54px 42px;
  }

  .retail-copy {
    max-width: 390px;
    text-align: center;
    margin: 0 auto;
  }

  .retail-visual-column,
  .retail-hero-visual {
    width: min(100%, 760px);
    margin: 0 auto;
  }

  .retail-hero-logo {
    width: clamp(78px, 13vw, 122px);
  }

  .retail-hero-logo-shopee {
    left: 7%;
    top: 10%;
  }

  .retail-hero-logo-coupang {
    left: 30%;
    top: 8%;
  }

  .retail-hero-logo-ably {
    right: 24%;
    top: 10%;
  }

  .retail-hero-logo-cjmall {
    right: 5%;
    top: 28%;
  }

  .retail-hero-logo-oliveyoung {
    left: 9%;
    top: 31%;
    width: clamp(88px, 16vw, 136px);
  }

  .retail-hero-logo-nshopping {
    left: 36%;
    bottom: 6%;
  }

  .retail-hero-logo-qoo10 {
    left: 18%;
    top: 48%;
  }

  .retail-hero-logo-akplaza {
    right: 8%;
    bottom: 3%;
  }

  .retail-store {
    right: -7%;
    bottom: 86px;
    width: min(76%, 760px);
  }

  .retail-logo {
    width: clamp(108px, 14vw, 158px);
  }

  .logo-shopee { left: 5%; bottom: 25%; }
  .logo-coupang { left: 23%; bottom: 7%; }
  .logo-ably { right: 31%; top: 8%; }
  .logo-cjmall { right: 3%; top: 31%; }
  .logo-oliveyoung { left: 40%; top: 22%; }
  .logo-akplaza { right: 9%; bottom: 4%; }
  .logo-nshopping { left: 43%; bottom: 3%; }
  .logo-qoo10 { left: 18%; top: 49%; }
}

@media (max-width: 860px) {
  .home-rebuild .container,
  .home-rebuild .header-inner {
    width: auto;
    max-width: none;
    margin-right: 16px;
    margin-left: 16px;
  }

  .home-rebuild .container > *,
  .home-hero-copy,
  .direction-image,
  .direction-copy,
  .science-copy,
  .science-points,
  .promise-layout,
  .promise-layout > * {
    min-width: 0;
    max-width: 100%;
  }

  .home-hero,
  .home-hero-inner {
    min-height: 720px;
  }

  .home-hero h1 {
    font-size: 48px;
  }

  .home-hero p br {
    display: none;
  }

  .attract-cards,
  .home-journal-grid,
  .benefit-list {
    grid-template-columns: 1fr;
  }

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

  .direction-section {
    grid-template-columns: 1fr;
    overflow: hidden;
  }

  .direction-copy {
    padding: 56px 24px;
  }

  .science-layout {
    gap: 34px;
  }

  .global-section,
  .global-layout {
    min-height: 560px;
  }

  .global-section {
    background-position: 58% center;
  }

  .promise-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

@media (max-width: 560px) {
  .home-rebuild .brand {
    width: 152px;
  }

  .home-hero h1 {
    font-size: 40px;
  }

  .home-hero-copy {
    width: min(100%, 420px);
  }

  .home-hero {
    background-position: 56% center;
  }

  .attract-section,
  .product-section,
  .journal-section,
  .science-section,
  .global-layout {
    padding: 58px 0;
  }

  .global-layout {
    padding-top: 88px;
  }

  .attract-content h2,
  .direction-copy h2,
  .product-copy h2 {
    font-size: 38px;
  }

  .science-copy h2,
  .global-copy h2,
  .promise-layout h2 {
    font-size: 32px;
  }

  .global-section {
    min-height: 620px;
    background-position: 68% center;
  }

  .global-layout {
    min-height: 620px;
  }

  .global-copy p br {
    display: none;
  }

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

  .pures-product-card {
    border-radius: 20px;
  }

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

  .certification-mark {
    min-height: 190px;
    padding: 22px 14px;
  }

  .certification-mark:nth-child(3n) {
    border-right: 1px solid rgba(17, 18, 20, 0.1);
  }

  .certification-mark:nth-child(2n) {
    border-right: 0;
  }

  .certification-mark:nth-child(n + 3) {
    border-top: 1px solid rgba(17, 18, 20, 0.1);
  }

  .certification-mark img {
    width: min(100%, 142px);
    height: 78px;
  }

  .retail-network-stage {
    min-height: auto;
    padding: 34px 18px 26px;
    overflow: visible;
  }

  .retail-network-stage::after,
  .retail-channel-cloud::before,
  .retail-channel-cloud::after {
    display: none;
  }

  .retail-copy {
    max-width: none;
    padding: 0;
    text-align: center;
  }

  .retail-lockup {
    width: min(100%, 270px);
    margin-bottom: 24px;
  }

  .retail-copy h3 {
    font-size: clamp(28px, 9vw, 38px);
  }

  .retail-copy p {
    margin-top: 18px;
    font-size: 14px;
  }

  .retail-hero-visual {
    margin-top: 10px;
    border-radius: 6px;
  }

  .retail-channel-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .retail-channel-card {
    min-height: 48px;
    padding: 10px 12px;
  }

  .retail-channel-card img {
    height: 24px;
  }

  .retail-hero-logo {
    width: clamp(46px, 14vw, 66px);
    padding: 3px 5px;
  }

  .retail-hero-logo-shopee {
    left: 4%;
    top: 7%;
  }

  .retail-hero-logo-coupang {
    left: 29%;
    top: 5%;
  }

  .retail-hero-logo-ably {
    right: 23%;
    top: 7%;
  }

  .retail-hero-logo-cjmall {
    right: 3%;
    top: 25%;
  }

  .retail-hero-logo-oliveyoung {
    left: 5%;
    top: 30%;
    width: clamp(62px, 19vw, 88px);
  }

  .retail-hero-logo-nshopping {
    left: 38%;
    bottom: 4%;
  }

  .retail-hero-logo-qoo10 {
    left: 15%;
    top: 56%;
  }

  .retail-hero-logo-akplaza {
    right: 7%;
    bottom: 2%;
  }

  .retail-store {
    position: relative;
    right: auto;
    bottom: auto;
    width: 118%;
    margin: 22px -9% 2px;
  }

  .retail-channel-cloud {
    position: relative;
    inset: auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 8px;
    padding: 0 12px;
  }

  .retail-logo,
  .logo-shopee,
  .logo-coupang,
  .logo-ably,
  .logo-cjmall,
  .logo-oliveyoung,
  .logo-akplaza,
  .logo-nshopping,
  .logo-qoo10 {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
  }

  .retail-logo {
    width: min(100%, 145px);
    min-height: 56px;
    justify-self: center;
  }

  .retail-logo::before {
    inset: 14% 2%;
    filter: blur(14px);
  }

  .retail-logo img {
    height: 52px;
  }

  .science-points article {
    grid-template-columns: 48px minmax(0, 1fr);
    justify-content: center;
    text-align: left;
    width: 100%;
  }

  .science-points {
    justify-items: center;
    width: 100%;
  }

  .venn {
    --venn-circle: 62%;
    --venn-core: min(20%, 42px);
    max-width: 340px;
  }

  .venn-nature {
    --venn-x: 50%;
    --venn-y: 34%;
  }

  .venn-science {
    --venn-x: 36%;
    --venn-y: 62%;
  }

  .venn-routine {
    --venn-x: 64%;
    --venn-y: 62%;
  }

  .venn-label {
    width: 92px;
    gap: 4px;
  }

  .venn-label strong {
    font-size: 12px;
  }

  .venn-label span {
    font-size: 11px;
    line-height: 1.3;
  }

  .venn-label-nature {
    top: 21%;
  }

  .venn-label-science {
    left: 18%;
    top: 62%;
  }

  .venn-label-routine {
    left: 82%;
    top: 62%;
  }

  .venn-core {
    font-size: 13px;
    top: 52%;
  }

  .line-symbol {
    width: 48px;
    height: 48px;
  }

  .product-layout {
    gap: 42px;
  }

  .gravity-bottle {
    justify-self: center;
  }
}

.retail-section .section-head .eyebrow {
  color: rgba(111, 94, 66, 0.92);
}

.retail-section .section-head h2 {
  color: rgba(17, 18, 20, 0.96);
}

.retail-section .section-head p {
  color: rgba(17, 18, 20, 0.64);
}
