:root {
  --paper: #f8f8f6;
  --white: #ffffff;
  --ink: #191918;
  --muted: #6d6d68;
  --line: rgba(25, 25, 24, 0.14);
  --silver: #c9c9c5;
  --night: #141414;
  --night-soft: #20201f;
  --cool: #e4e9ed;
  --shell: min(1320px, calc(100vw - 64px));
  --header-height: 110px;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "DM Sans", "Manrope", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.lang-ko {
  font-family: "Noto Sans KR", "DM Sans", sans-serif;
  word-break: keep-all;
}

body.lang-ar {
  font-family: "Noto Sans Arabic", "DM Sans", sans-serif;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

button {
  color: inherit;
  font: inherit;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 9999;
  inset-block-start: 12px;
  inset-inline-start: 12px;
  padding: 10px 14px;
  background: var(--ink);
  color: var(--white);
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: none;
}

.site-header {
  position: fixed;
  z-index: 1000;
  inset: 0 0 auto;
  background: rgba(248, 248, 246, .84);
  backdrop-filter: blur(14px);
  color: var(--ink);
  transition: background-color .35s ease, border-color .35s ease, color .35s ease;
}

body.admin-bar .site-header {
  inset-block-start: 32px;
}

.site-header::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: transparent;
  transition: background-color .35s ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(248, 248, 246, .97);
  backdrop-filter: blur(18px);
}

.site-header.is-scrolled::after,
.site-header.is-open::after {
  background: var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  min-width: 120px;
}

.brand-crop {
  display: block;
  width: 92px;
  height: 92px;
}

.brand-image-custom,
.brand-image-fallback {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.desktop-nav {
  position: absolute;
  inset-inline-start: 50%;
  display: flex;
  align-items: center;
  gap: clamp(22px, 2.5vw, 42px);
  transform: translateX(-50%);
}

[dir="rtl"] .desktop-nav {
  transform: translateX(50%);
}

.desktop-nav a,
.footer-nav a {
  position: relative;
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .07em;
  white-space: nowrap;
}

.desktop-nav a::after,
.footer-nav a::after {
  content: "";
  position: absolute;
  inset: auto 0 -6px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .35s var(--ease);
}

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.language-switcher {
  position: relative;
}

.language-trigger,
.menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 58px;
  min-height: 42px;
  gap: 8px;
  border: 1px solid rgba(25, 25, 24, .28);
  border-radius: 999px;
  background: rgba(255, 255, 255, .28);
  cursor: pointer;
}

.language-trigger {
  font-size: .76rem;
  font-weight: 600;
  letter-spacing: .1em;
}

.language-trigger svg {
  transition: transform .25s ease;
}

.language-trigger[aria-expanded="true"] svg {
  transform: rotate(180deg);
}

.language-menu {
  position: absolute;
  inset-block-start: calc(100% + 10px);
  inset-inline-end: 0;
  width: 210px;
  padding: 7px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 18px 60px rgba(0, 0, 0, .13);
}

.language-menu[hidden] {
  display: none;
}

.language-menu a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 44px;
  padding: 0 12px;
  font-size: .84rem;
}

.language-menu a:hover,
.language-menu a:focus-visible,
.language-menu a[aria-current="page"] {
  background: #f1f1ef;
}

.language-menu a span:last-child {
  color: var(--muted);
  font-size: .72rem;
  letter-spacing: .1em;
}

.menu-toggle {
  display: none;
  min-width: 92px;
  padding-inline: 14px;
}

.menu-toggle-label {
  font-size: .78rem;
  font-weight: 600;
}

.menu-toggle-icon {
  position: relative;
  display: block;
  width: 17px;
  height: 12px;
}

.menu-toggle-icon i {
  position: absolute;
  inset-inline: 0;
  height: 1px;
  background: currentColor;
  transition: transform .3s ease, top .3s ease;
}

.menu-toggle-icon i:first-child { top: 3px; }
.menu-toggle-icon i:last-child { top: 9px; }
.menu-toggle[aria-expanded="true"] .menu-toggle-icon i:first-child { top: 6px; transform: rotate(45deg); }
.menu-toggle[aria-expanded="true"] .menu-toggle-icon i:last-child { top: 6px; transform: rotate(-45deg); }

.mobile-menu {
  position: fixed;
  z-index: -1;
  inset: var(--header-height) 0 0;
  background: var(--paper);
}

.mobile-menu[hidden] {
  display: none;
}

.mobile-nav {
  display: grid;
  padding-block: 32px;
}

.mobile-nav a {
  display: flex;
  align-items: baseline;
  gap: 22px;
  padding-block: 18px;
  border-bottom: 1px solid var(--line);
  font-size: clamp(1.6rem, 8vw, 3rem);
  line-height: 1.1;
}

.mobile-nav a span {
  min-width: 24px;
  color: var(--muted);
  font-size: .68rem;
  letter-spacing: .12em;
}

.mobile-nav a[aria-current="page"] {
  color: var(--muted);
}

.hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: max(680px, 100svh);
  overflow: hidden;
  background: #edf1f4;
}

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

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

.hero-shade {
  background: linear-gradient(90deg, rgba(238, 242, 245, .97) 0%, rgba(238, 242, 245, .78) 31%, rgba(238, 242, 245, .08) 57%, transparent 76%);
}

[dir="rtl"] .hero-shade {
  background: linear-gradient(270deg, rgba(238, 242, 245, .97) 0%, rgba(238, 242, 245, .78) 31%, rgba(238, 242, 245, .08) 57%, transparent 76%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-block: calc(var(--header-height) + 72px) 84px;
}

.kicker {
  margin: 0 0 24px;
  color: var(--muted);
  font-size: .73rem;
  font-weight: 600;
  letter-spacing: .2em;
  line-height: 1.4;
  text-transform: uppercase;
}

.hero-kicker {
  color: #4c5359;
}

.hero h1,
.story h2,
.collection h2,
.ritual-title,
.world h2,
.contact h2,
.product-detail-copy h1,
.not-found h1 {
  margin: 0;
  font-family: "Manrope", "Noto Sans KR", "Noto Sans Arabic", sans-serif;
  font-weight: 400;
  letter-spacing: -.055em;
  line-height: .98;
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(4.25rem, 8.5vw, 8.8rem);
}

.lang-ko .hero h1,
.lang-ar .hero h1 {
  font-size: clamp(3.2rem, 7vw, 7rem);
  line-height: 1.12;
}

.hero-copy {
  max-width: 550px;
  margin: 34px 0 0;
  color: #4f5355;
  font-size: clamp(1rem, 1.3vw, 1.2rem);
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 42px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  min-width: 220px;
  min-height: 56px;
  gap: 28px;
  padding: 0 22px;
  border: 1px solid transparent;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .05em;
  transition: transform .3s var(--ease), background-color .3s ease, color .3s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-3px);
}

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

.button-dark:hover,
.button-dark:focus-visible {
  background: #333331;
}

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

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding-block: 10px;
  border-bottom: 1px solid rgba(25, 25, 24, .42);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .04em;
}

.hero-index {
  position: absolute;
  z-index: 2;
  inset-inline-end: 34px;
  inset-block-end: 26px;
  margin: 0;
  color: rgba(25, 25, 24, .55);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .16em;
  writing-mode: vertical-rl;
}

.section-pad {
  padding-block: clamp(100px, 12vw, 180px);
}

.story {
  background: var(--paper);
}

.story-grid {
  display: grid;
  grid-template-columns: minmax(180px, .72fr) minmax(0, 2fr);
  gap: clamp(50px, 8vw, 150px);
}

.story h2,
.collection h2,
.ritual-title,
.world h2,
.contact h2 {
  font-size: clamp(2.7rem, 5.2vw, 5.6rem);
}

.story h2 {
  max-width: 990px;
}

.lead {
  max-width: 760px;
  margin: 54px 0 0;
  color: #545451;
  font-size: clamp(1.05rem, 1.7vw, 1.42rem);
  line-height: 1.75;
}

.principles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 80px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.principles span {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .06em;
}

.collection {
  background: var(--night);
  color: var(--white);
}

.collection .kicker,
.collection .section-intro {
  color: #a4a4a0;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(260px, .7fr);
  align-items: end;
  gap: 60px;
  margin-bottom: clamp(60px, 7vw, 100px);
}

.section-intro {
  margin: 0 0 5px;
  font-size: 1.02rem;
  line-height: 1.75;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, .16);
  border: 1px solid rgba(255, 255, 255, .16);
}

.product-card {
  min-width: 0;
  background: var(--night);
  transition: background-color .4s ease;
}

.product-card:hover,
.product-card:focus-visible {
  background: var(--night-soft);
}

.product-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: clamp(320px, 38vw, 560px);
  overflow: hidden;
}

.product-number {
  position: relative;
  z-index: 2;
  font-family: "Manrope", sans-serif;
  font-size: clamp(3.8rem, 7vw, 7.6rem);
  font-weight: 400;
  letter-spacing: -.06em;
}

.product-photo,
.product-detail-photo {
  position: absolute;
  z-index: 1;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-detail-photo {
  object-fit: contain;
  background: #f1f1ef;
}

.product-visual.has-product-image::after,
.product-detail-visual.has-product-image::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  pointer-events: none;
}

.product-visual.has-product-image::after {
  background: linear-gradient(180deg, transparent 72%, rgba(0, 0, 0, .08));
}

.product-detail-visual.has-product-image::after {
  background: linear-gradient(180deg, transparent 76%, rgba(0, 0, 0, .14));
}

.product-visual.has-product-image .product-number,
.product-visual.has-product-image .product-orbit {
  opacity: 0;
}

.product-visual.has-product-image .product-sequence {
  z-index: 2;
  color: rgba(25, 25, 24, .5);
  text-shadow: 0 1px 8px rgba(255, 255, 255, .9);
}

.product-orbit,
.detail-orbit {
  position: absolute;
  width: min(62%, 360px);
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 50%;
  transition: transform .8s var(--ease), border-color .5s ease;
}

.product-orbit::before,
.product-orbit::after,
.detail-orbit::before,
.detail-orbit::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 50%;
}

.product-orbit::before,
.detail-orbit::before {
  inset: 13%;
}

.product-orbit::after,
.detail-orbit::after {
  inset: -13%;
}

.product-card:nth-child(2n) .product-orbit { transform: translate(18%, -10%); }
.product-card:nth-child(3n) .product-orbit { transform: translate(-22%, 8%); }
.product-card:nth-child(5n) .product-orbit { transform: scale(.78); }
.product-card:hover .product-orbit { transform: scale(1.12) rotate(16deg); border-color: rgba(255, 255, 255, .45); }

.product-sequence {
  position: absolute;
  inset-block-start: 24px;
  inset-inline-end: 24px;
  color: #858581;
  font-size: .67rem;
  letter-spacing: .14em;
}

.product-meta {
  display: flex;
  align-items: end;
  justify-content: space-between;
  min-height: 142px;
  gap: 24px;
  padding: 24px;
  border-top: 1px solid rgba(255, 255, 255, .13);
}

.product-meta p {
  margin: 0 0 7px;
  color: #8e8e8a;
  font-size: .67rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.product-meta h3 {
  margin: 0;
  font-size: clamp(1.15rem, 1.65vw, 1.65rem);
  font-weight: 400;
  letter-spacing: -.025em;
  line-height: 1.2;
  overflow-wrap: anywhere;
}

.round-arrow {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 50%;
  transition: background-color .3s ease, color .3s ease;
}

.product-card:hover .round-arrow {
  background: var(--white);
  color: var(--ink);
}

.ritual {
  background: var(--white);
}

.ritual-title {
  max-width: 920px;
}

.ritual-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: clamp(70px, 9vw, 130px);
  border-top: 1px solid var(--line);
}

.ritual-step {
  min-height: 330px;
  padding: 30px clamp(20px, 3vw, 46px) 24px 0;
  border-inline-end: 1px solid var(--line);
}

[dir="rtl"] .ritual-step {
  padding: 30px 0 24px clamp(20px, 3vw, 46px);
}

.ritual-step + .ritual-step {
  padding-inline-start: clamp(20px, 3vw, 46px);
}

.ritual-step:last-child {
  border-inline-end: 0;
}

.step-number {
  color: #8a8a85;
  font-size: .72rem;
  letter-spacing: .16em;
}

.ritual-step h3 {
  margin: 110px 0 18px;
  font-size: clamp(1.6rem, 2.6vw, 2.5rem);
  font-weight: 400;
  letter-spacing: -.04em;
}

.ritual-step p {
  max-width: 350px;
  margin: 0;
  color: var(--muted);
}

.world {
  background: var(--cool);
}

.world-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, .8fr);
  align-items: start;
  gap: clamp(70px, 12vw, 180px);
}

.world .lead {
  margin-top: 34px;
}

.language-list {
  border-top: 1px solid rgba(25, 25, 24, .25);
}

.language-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  gap: 24px;
  border-bottom: 1px solid rgba(25, 25, 24, .25);
  transition: padding .3s var(--ease);
}

.language-list a:hover,
.language-list a:focus-visible {
  padding-inline: 12px;
}

.language-list a span:first-child {
  font-size: 1.18rem;
}

.language-list a span:last-child {
  color: #656b70;
  font-size: .7rem;
  letter-spacing: .12em;
}

.contact {
  background: var(--ink);
  color: var(--white);
  text-align: center;
}

.contact-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact .kicker,
.contact p {
  color: #aaa9a5;
}

.contact h2 {
  max-width: 980px;
}

.contact > .contact-inner > p:not(.kicker) {
  max-width: 600px;
  margin: 32px 0 0;
  font-size: 1.05rem;
}

.contact .button {
  margin-top: 42px;
}

.site-footer {
  padding-block: 72px 26px;
  background: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
}

.footer-brand {
  min-width: 0;
}

.footer-note {
  max-width: 440px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: .8rem;
}

.footer-nav {
  display: flex;
  align-items: start;
  gap: 34px;
  padding-top: 10px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  margin-top: 70px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: #777772;
  font-size: .7rem;
  letter-spacing: .06em;
}

.footer-bottom p {
  margin: 0;
}

.product-page {
  padding-top: var(--header-height);
}

.product-hero {
  min-height: calc(100svh - var(--header-height));
}

.product-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, .92fr);
  align-items: center;
  gap: clamp(60px, 9vw, 150px);
}

.product-detail-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: min(680px, 72svh);
  overflow: hidden;
  background: var(--night);
  color: var(--white);
}

.product-detail-code {
  position: relative;
  z-index: 2;
  font-size: clamp(5rem, 10vw, 10rem);
  font-weight: 400;
  letter-spacing: -.07em;
}

.detail-orbit {
  width: 58%;
}

.detail-wordmark {
  position: absolute;
  inset-inline-start: 24px;
  inset-block-end: 22px;
  color: rgba(255, 255, 255, .38);
  font-size: .65rem;
  letter-spacing: .22em;
}

.product-detail-visual.has-product-image .product-detail-code,
.product-detail-visual.has-product-image .detail-orbit {
  opacity: 0;
}

.product-detail-visual.has-product-image .detail-wordmark {
  z-index: 2;
  color: rgba(255, 255, 255, .82);
}

.product-detail-copy .kicker {
  margin-bottom: 28px;
}

.product-detail-copy h1 {
  max-width: 760px;
  font-size: clamp(3.2rem, 5.5vw, 6rem);
  overflow-wrap: anywhere;
}

.product-meta-line {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.product-meta-line span + span {
  position: relative;
}

.product-meta-line span + span::before {
  content: "";
  position: absolute;
  inset-inline-start: -13px;
  inset-block-start: 50%;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: currentColor;
}

.product-description {
  max-width: 590px;
  margin: 42px 0 0;
  color: #4f4f4b;
  font-size: clamp(1.1rem, 1.8vw, 1.5rem);
  line-height: 1.7;
}

.product-note {
  max-width: 540px;
  margin: 38px 0;
  padding-block: 20px;
  border-block: 1px solid var(--line);
  color: var(--muted);
  font-size: .85rem;
}

.product-facts {
  background: var(--night);
  color: var(--white);
}

.product-facts-intro {
  display: grid;
  grid-template-columns: minmax(170px, .42fr) minmax(0, 1fr);
  align-items: start;
  gap: clamp(36px, 8vw, 130px);
  margin-bottom: 64px;
}

.product-facts-intro .kicker {
  color: rgba(255, 255, 255, .55);
}

.product-facts-intro h2 {
  max-width: 900px;
  margin: 0;
  font-family: "Manrope", "Noto Sans KR", "Noto Sans Arabic", sans-serif;
  font-size: clamp(2.6rem, 5vw, 5.4rem);
  font-weight: 400;
  letter-spacing: -.055em;
  line-height: 1.04;
  overflow-wrap: anywhere;
}

.product-facts-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, .16);
  border-block: 1px solid rgba(255, 255, 255, .16);
}

.product-fact {
  min-width: 0;
  padding: clamp(30px, 4vw, 54px);
  background: var(--night);
}

.product-fact-number {
  display: block;
  color: rgba(255, 255, 255, .38);
  font-size: .68rem;
  letter-spacing: .18em;
}

.product-fact h3 {
  margin: 64px 0 24px;
  font-size: .76rem;
  font-weight: 500;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.product-fact p,
.product-fact li {
  color: rgba(255, 255, 255, .7);
  font-size: .96rem;
  line-height: 1.75;
}

.product-fact p {
  margin: 0;
}

.product-fact ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.product-fact li {
  padding-block: 10px;
  border-top: 1px solid rgba(255, 255, 255, .13);
}

.product-fact li:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, .13);
}

.product-detail-footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-top: 58px;
}

.product-detail-footer p {
  max-width: 680px;
  margin: 0;
  color: rgba(255, 255, 255, .55);
  font-size: .82rem;
  line-height: 1.7;
}

.product-detail-footer strong {
  display: block;
  margin-bottom: 6px;
  color: rgba(255, 255, 255, .86);
  font-weight: 500;
}

.editorial-page {
  padding-top: var(--header-height);
}

.editorial-hero {
  display: grid;
  align-items: center;
  min-height: calc(82svh - var(--header-height));
  padding-block: clamp(86px, 10vw, 150px);
  background: var(--cool);
}

.editorial-hero-grid {
  display: grid;
  grid-template-columns: minmax(170px, .38fr) minmax(0, 1fr);
  align-items: start;
  gap: clamp(40px, 8vw, 140px);
}

.editorial-hero h1,
.editorial-statement h2,
.editorial-closing h2 {
  margin: 0;
  font-family: "Manrope", "Noto Sans KR", "Noto Sans Arabic", sans-serif;
  font-weight: 400;
  letter-spacing: -.06em;
  line-height: 1.02;
}

.editorial-hero h1 {
  max-width: 1020px;
  font-size: clamp(4rem, 7.4vw, 8rem);
}

.editorial-hero-grid > div > p {
  max-width: 760px;
  margin: 48px 0 0;
  color: #4f4f4b;
  font-size: clamp(1.08rem, 1.65vw, 1.42rem);
  line-height: 1.75;
}

.editorial-statement-grid {
  display: grid;
  grid-template-columns: minmax(170px, .38fr) minmax(0, 1fr);
  gap: clamp(40px, 8vw, 140px);
}

.editorial-index {
  margin: 0;
  color: var(--muted);
  font-size: .7rem;
  letter-spacing: .16em;
}

.editorial-statement h2 {
  max-width: 1060px;
  font-size: clamp(3rem, 6vw, 6.5rem);
}

.editorial-statement-grid > div > p {
  max-width: 700px;
  margin: 46px 0 0;
  color: #565651;
  font-size: 1.08rem;
  line-height: 1.85;
}

.editorial-pillars {
  background: var(--white);
}

.editorial-pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 58px;
  border-block: 1px solid var(--line);
}

.editorial-pillar-grid article {
  min-width: 0;
  min-height: 370px;
  padding: 40px clamp(24px, 3.5vw, 52px) 44px;
  border-inline-end: 1px solid var(--line);
}

.editorial-pillar-grid article:last-child {
  border-inline-end: 0;
}

.editorial-pillar-grid span {
  color: var(--muted);
  font-size: .68rem;
  letter-spacing: .16em;
}

.editorial-pillar-grid h2 {
  margin: 92px 0 24px;
  font-family: "Manrope", "Noto Sans KR", "Noto Sans Arabic", sans-serif;
  font-size: clamp(1.55rem, 2.2vw, 2.3rem);
  font-weight: 400;
  letter-spacing: -.035em;
  line-height: 1.15;
}

.editorial-pillar-grid p {
  max-width: 390px;
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
}

.editorial-closing {
  background: var(--night);
  color: var(--white);
}

.editorial-closing-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 60px;
}

.editorial-closing .kicker {
  color: rgba(255, 255, 255, .5);
}

.editorial-closing h2 {
  max-width: 900px;
  margin-top: 50px;
  font-size: clamp(3rem, 6vw, 6.5rem);
}

.editorial-closing-grid > div > p:last-child {
  max-width: 670px;
  margin: 36px 0 0;
  color: rgba(255, 255, 255, .62);
  font-size: 1rem;
  line-height: 1.8;
}

/* Administrator-only store preview */
.store-preview-page {
  padding-top: var(--header-height);
  background: #f2f2ef;
}

.store-preview-hero {
  padding-block: 104px 92px;
  background: var(--night);
  color: var(--white);
}

.store-preview-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, .85fr);
  align-items: end;
  gap: 10vw;
}

.store-preview-hero .kicker,
.store-preview-foundation .kicker {
  color: rgba(255, 255, 255, .5);
}

.store-preview-hero h1 {
  max-width: 820px;
  margin: 38px 0 0;
  font-family: "Manrope", "Noto Sans KR", "Noto Sans Arabic", sans-serif;
  font-size: clamp(4rem, 7.5vw, 8rem);
  font-weight: 400;
  letter-spacing: -.065em;
  line-height: .92;
}

.store-preview-intro > p {
  max-width: 620px;
  margin: 0;
  color: rgba(255, 255, 255, .68);
  font-size: 1.05rem;
  line-height: 1.75;
}

.store-preview-status {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 36px;
}

.store-preview-status span {
  padding: 9px 14px;
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 999px;
  color: rgba(255, 255, 255, .82);
  font-size: .78rem;
  letter-spacing: .03em;
}

.store-preview-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 540px);
  align-items: end;
  gap: 8vw;
  margin-bottom: 64px;
}

.store-preview-heading h2,
.store-preview-foundation h2 {
  margin: 0;
  font-family: "Manrope", "Noto Sans KR", "Noto Sans Arabic", sans-serif;
  font-size: clamp(2.6rem, 4.7vw, 5rem);
  font-weight: 400;
  letter-spacing: -.055em;
  line-height: 1;
}

.store-preview-heading p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.store-preview-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.store-preview-card {
  display: grid;
  grid-template-columns: minmax(190px, .86fr) minmax(0, 1.14fr);
  min-height: 440px;
  overflow: hidden;
  background: var(--white);
}

.store-preview-visual {
  display: grid;
  place-items: center;
  min-height: 100%;
  padding: 38px 20px;
  overflow: hidden;
  background: #e4e8eb;
}

.store-preview-visual img {
  width: 100%;
  height: 100%;
  max-height: 360px;
  object-fit: contain;
  transition: transform .7s var(--ease);
}

.store-preview-visual:hover img {
  transform: scale(1.035);
}

.store-preview-card-copy {
  display: flex;
  flex-direction: column;
  padding: 34px;
}

.store-preview-card-meta,
.store-preview-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.store-preview-card-meta {
  color: var(--muted);
  font-size: .72rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.store-preview-card h3 {
  margin: 54px 0 18px;
  font-family: "Manrope", "Noto Sans KR", "Noto Sans Arabic", sans-serif;
  font-size: clamp(1.55rem, 2vw, 2.2rem);
  font-weight: 400;
  letter-spacing: -.045em;
  line-height: 1.05;
}

.store-preview-card-copy > p {
  margin: 0;
  color: var(--muted);
  font-size: .92rem;
  line-height: 1.65;
}

.store-preview-card-footer {
  margin-top: auto;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  font-size: .78rem;
}

.store-preview-card-footer strong {
  color: #8a8a85;
  font-weight: 500;
}

.store-preview-card-footer a {
  font-weight: 600;
}

.store-preview-foundation {
  background: var(--night);
  color: var(--white);
}

.store-preview-foundation-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, .16);
}

.store-preview-foundation article {
  min-height: 490px;
  padding: 54px;
  background: var(--night);
}

.store-preview-foundation h2 {
  margin-top: 46px;
  font-size: clamp(2.7rem, 4.2vw, 4.7rem);
}

.store-preview-foundation article > p:not(.kicker) {
  max-width: 570px;
  margin: 42px 0 0;
  color: rgba(255, 255, 255, .62);
  line-height: 1.8;
}

.store-preview-foundation .button {
  margin-top: 36px;
  background: var(--white);
  color: var(--ink);
}

.not-found {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  min-height: 80svh;
  padding-block: calc(var(--header-height) + 80px) 80px;
}

.standard-page {
  min-height: 72svh;
  padding-block: calc(var(--header-height) + 100px) 120px;
}

.standard-page article {
  max-width: 860px;
}

.standard-page h1 {
  margin: 0;
  font-family: "Manrope", "Noto Sans KR", "Noto Sans Arabic", sans-serif;
  font-size: clamp(3rem, 6vw, 6rem);
  font-weight: 400;
  letter-spacing: -.05em;
  line-height: 1;
}

.standard-page-content {
  margin-top: 54px;
  color: #4f4f4b;
  font-size: 1.05rem;
  line-height: 1.8;
}

.standard-page-content h2,
.standard-page-content h3 {
  margin: 2.2em 0 .8em;
  color: var(--ink);
  font-weight: 500;
  line-height: 1.2;
}

.not-found h1 {
  max-width: 900px;
  font-size: clamp(3rem, 7vw, 7rem);
}

.not-found .button {
  margin-top: 44px;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}

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

:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 4px;
}

@media (max-width: 1080px) {
  :root {
    --shell: min(100% - 42px, 1320px);
  }

  .desktop-nav {
    display: none;
  }

  .store-preview-hero-grid,
  .store-preview-heading {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 42px;
  }

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

  .menu-toggle {
    display: inline-flex;
  }

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

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

  .world-grid {
    gap: 70px;
  }

  .product-detail-grid {
    gap: 54px;
  }

  .editorial-hero-grid,
  .editorial-statement-grid {
    grid-template-columns: minmax(130px, .28fr) minmax(0, 1fr);
    gap: 46px;
  }

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

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

  .product-fact:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 780px) {
  :root {
    --shell: min(100% - 34px, 1320px);
    --header-height: 82px;
  }

  body.admin-bar .site-header {
    inset-block-start: 46px;
  }

  .brand,
  .brand-crop {
    min-width: 0;
    width: 72px;
  }

  .brand-crop {
    height: 64px;
  }

  .language-trigger {
    min-width: 50px;
  }

  .menu-toggle {
    min-width: 48px;
    width: 48px;
    padding: 0;
  }

  .menu-toggle-label {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
  }

  .hero {
    align-items: end;
    min-height: 760px;
  }

  .hero-media img {
    object-position: 68% center;
  }

  [dir="rtl"] .hero-media img {
    object-position: 55% center;
  }

  .hero-shade,
  [dir="rtl"] .hero-shade {
    background: linear-gradient(0deg, rgba(238, 242, 245, .99) 0%, rgba(238, 242, 245, .86) 34%, rgba(238, 242, 245, .08) 69%, transparent 100%);
  }

  .hero-content {
    padding-block: 420px 72px;
  }

  .hero h1 {
    font-size: clamp(3.5rem, 17vw, 5.2rem);
  }

  .lang-ko .hero h1,
  .lang-ar .hero h1 {
    font-size: clamp(2.8rem, 13vw, 4.5rem);
  }

  .hero-copy {
    margin-top: 22px;
    font-size: .98rem;
    line-height: 1.65;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 14px;
    margin-top: 30px;
  }

  .button {
    width: 100%;
  }

  .text-link {
    align-self: flex-start;
  }

  .hero-index {
    display: none;
  }

  .section-pad {
    padding-block: 92px;
  }

  .store-preview-hero {
    padding-block: 72px 68px;
  }

  .store-preview-hero h1 {
    font-size: clamp(3.3rem, 15vw, 5rem);
  }

  .store-preview-heading {
    margin-bottom: 42px;
  }

  .store-preview-heading h2,
  .store-preview-foundation h2 {
    font-size: clamp(2.5rem, 11vw, 4rem);
  }

  .store-preview-card {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .store-preview-visual {
    min-height: 380px;
  }

  .store-preview-card-copy {
    min-height: 360px;
    padding: 28px;
  }

  .store-preview-foundation-grid {
    grid-template-columns: 1fr;
  }

  .store-preview-foundation article {
    min-height: 0;
    padding: 42px 28px 54px;
  }

  .story h2,
  .collection h2,
  .ritual-title,
  .world h2,
  .contact h2 {
    font-size: clamp(2.5rem, 12vw, 4.1rem);
  }

  .lead {
    margin-top: 32px;
    font-size: 1rem;
  }

  .principles {
    grid-template-columns: 1fr;
    margin-top: 52px;
  }

  .principles span {
    padding-block: 12px;
    border-bottom: 1px solid var(--line);
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 54px;
  }

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

  .product-visual {
    min-height: 390px;
  }

  .ritual-grid {
    grid-template-columns: 1fr;
    margin-top: 58px;
  }

  .ritual-step,
  [dir="rtl"] .ritual-step,
  .ritual-step + .ritual-step {
    min-height: 0;
    padding: 24px 0 38px;
    border-inline-end: 0;
    border-bottom: 1px solid var(--line);
  }

  .ritual-step h3 {
    margin-top: 50px;
  }

  .world-grid,
  .product-detail-grid {
    grid-template-columns: 1fr;
  }

  .product-detail-visual {
    min-height: 480px;
  }

  .product-detail-copy h1 {
    font-size: clamp(3.2rem, 15vw, 5.4rem);
  }

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

  .product-facts-intro {
    gap: 22px;
    margin-bottom: 42px;
  }

  .product-facts-intro h2 {
    font-size: clamp(2.45rem, 11vw, 4rem);
  }

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

  .product-fact h3 {
    margin-top: 42px;
  }

  .product-detail-footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 30px;
    margin-top: 44px;
  }

  .editorial-hero {
    min-height: calc(76svh - var(--header-height));
    padding-block: 76px 86px;
  }

  .editorial-hero-grid,
  .editorial-statement-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .editorial-hero h1 {
    font-size: clamp(3.35rem, 15vw, 5.5rem);
  }

  .editorial-hero-grid > div > p,
  .editorial-statement-grid > div > p {
    margin-top: 30px;
    font-size: 1rem;
  }

  .editorial-statement h2,
  .editorial-closing h2 {
    font-size: clamp(2.7rem, 12vw, 4.3rem);
  }

  .editorial-pillar-grid {
    grid-template-columns: 1fr;
    margin-top: 42px;
  }

  .editorial-pillar-grid article,
  .editorial-pillar-grid article:last-child {
    min-height: 0;
    padding: 32px 0 42px;
    border-inline-end: 0;
    border-bottom: 1px solid var(--line);
  }

  .editorial-pillar-grid article:last-child {
    border-bottom: 0;
  }

  .editorial-pillar-grid h2 {
    margin-top: 48px;
  }

  .editorial-closing-grid {
    align-items: start;
    gap: 44px;
  }

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

  .footer-nav {
    align-items: flex-start;
    flex-direction: column;
    gap: 24px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    margin-top: 52px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
