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

:root {
  --paper: #f7f3ea;
  --ivory: #fffbf4;
  --ink: #292522;
  --muted: #746e67;
  --plum: #49283a;
  --plum-deep: #34202c;
  --mango: #f6b527;
  --apricot: #e9a17f;
  --clay: #c96c50;
  --sage: #aeb99a;
  --sage-light: #dce1d2;
  --blush: #f2d8ce;
  --line: rgba(41, 37, 34, .17);
  --shadow: 0 28px 70px rgba(55, 39, 29, .12);
  --header-height: 78px;
  --shell: min(1380px, calc(100vw - 72px));
  --font-ko: "Noto Sans KR", "Apple SD Gothic Neo", "Malgun Gothic", sans-serif;
  --font-en: "DM Sans", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-height) + 20px); }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: var(--font-ko); -webkit-font-smoothing: antialiased; overflow-x: hidden; }
body.menu-open, body.popup-open { overflow: hidden; }
img { display: block; width: 100%; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { color: inherit; font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button:focus-visible, a:focus-visible { outline: 3px solid var(--mango); outline-offset: 4px; }
[hidden] { display: none !important; }

.skip-link { position: fixed; z-index: 500; top: 10px; left: 10px; padding: 12px 18px; color: white; background: var(--plum); transform: translateY(-150%); }
.skip-link:focus { transform: none; }
.preview-bar { min-height: 30px; display: flex; align-items: center; justify-content: center; gap: 14px; padding: 6px 16px; color: var(--ivory); background: var(--plum); font: 600 10px var(--font-en); letter-spacing: .09em; }
.preview-bar strong { color: var(--mango); }

.site-header { position: sticky; z-index: 80; top: 0; height: var(--header-height); display: grid; grid-template-columns: 190px 1fr 190px; align-items: center; padding: 0 34px; background: rgba(255, 251, 244, .94); border-bottom: 1px solid var(--line); backdrop-filter: blur(18px); transition: height .3s ease, box-shadow .3s ease; }
.site-header.is-scrolled { height: 66px; box-shadow: 0 8px 30px rgba(50, 38, 29, .07); }
.brand { display: inline-flex; align-items: center; gap: 10px; width: max-content; }
.brand-mark { position: relative; z-index: 1; width: 38px; height: 38px; display: grid; place-items: center; border-radius: 50%; background: var(--mango); border: 1.5px solid var(--ink); font: 800 18px var(--font-en); }
.brand-mark i { position: absolute; z-index: -1; top: -5px; width: 14px; height: 14px; border-radius: 50%; background: var(--mango); border: 1.5px solid var(--ink); }
.brand-mark i:first-child { left: 1px; }
.brand-mark i:nth-child(2) { right: 1px; }
.brand-mark b { transform: translateY(-1px); }
.brand-type { display: grid; line-height: .88; }
.brand-type strong { font: 700 16px var(--font-en); letter-spacing: -.04em; }
.brand-type small { font: 600 10px var(--font-en); letter-spacing: .24em; }
.desktop-nav { display: flex; justify-content: center; align-items: center; gap: clamp(19px, 2vw, 35px); font-size: 13px; font-weight: 700; white-space: nowrap; }
.desktop-nav a { position: relative; padding: 27px 0; }
.desktop-nav a::after { position: absolute; right: 0; bottom: 21px; left: 0; height: 1.5px; content: ""; background: currentColor; transform: scaleX(0); transform-origin: right; transition: transform .25s ease; }
.desktop-nav a:hover::after { transform: scaleX(1); transform-origin: left; }
.desktop-nav .has-sub span { color: var(--muted); font-size: 10px; }
.header-tools { display: flex; justify-content: flex-end; align-items: center; gap: 13px; }
.header-tool { width: 38px; height: 38px; display: grid; place-items: center; border: 0; background: none; cursor: pointer; }
.header-tool svg { width: 20px; fill: none; stroke: currentColor; stroke-width: 1.6; }
.store-link { padding: 10px 0 8px; border-bottom: 1px solid var(--ink); font: 700 11px var(--font-en); letter-spacing: .09em; }
.store-link span { margin-left: 8px; }
.menu-button { display: none; width: 44px; height: 44px; padding: 10px; border: 0; background: none; cursor: pointer; }
.menu-button span { display: block; height: 1.5px; margin: 7px 0; background: var(--ink); transition: transform .25s ease; }
.menu-button[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
.menu-button[aria-expanded="true"] span:last-child { transform: translateY(-4.5px) rotate(-45deg); }

.mobile-menu { visibility: hidden; position: fixed; z-index: 70; inset: calc(30px + var(--header-height)) 0 0; padding: 38px 24px calc(30px + env(safe-area-inset-bottom)); display: flex; flex-direction: column; color: var(--ivory); background: var(--plum-deep); opacity: 0; transform: translateY(-20px); transition: opacity .3s ease, transform .35s ease, visibility .35s; }
.mobile-menu.is-open { visibility: visible; opacity: 1; transform: none; }
.mobile-menu-head { display: flex; justify-content: space-between; align-items: center; padding-bottom: 18px; border-bottom: 1px solid rgba(255,255,255,.22); }
.mobile-menu-head p { margin: 0; color: var(--mango); font: 700 11px var(--font-en); letter-spacing: .16em; }
.mobile-menu-head span { color: rgba(255,255,255,.55); font-size: 10px; }
.mobile-menu nav { display: grid; grid-template-columns: 1fr 1fr; }
.mobile-menu nav a { min-height: 82px; display: flex; align-items: center; gap: 13px; border-bottom: 1px solid rgba(255,255,255,.18); }
.mobile-menu nav a:nth-child(odd) { border-right: 1px solid rgba(255,255,255,.18); }
.mobile-menu nav a:nth-child(even) { padding-left: 20px; }
.mobile-menu nav b { color: var(--apricot); font: 600 9px var(--font-en); }
.mobile-menu nav span { font-size: 17px; font-weight: 700; letter-spacing: -.04em; }
.mobile-social { margin-top: auto; display: flex; gap: 22px; font: 600 11px var(--font-en); }

.section-shell { width: var(--shell); margin-inline: auto; }
.eyebrow { margin: 0 0 14px; color: var(--clay); font: 700 10px/1.3 var(--font-en); letter-spacing: .17em; }
.button { min-height: 50px; display: inline-flex; align-items: center; justify-content: space-between; gap: 25px; padding: 0 20px; border: 1px solid transparent; border-radius: 999px; font-size: 12px; font-weight: 700; cursor: pointer; transition: transform .25s ease, box-shadow .25s ease, background .25s ease; }
.button:hover { transform: translateY(-3px); box-shadow: 0 12px 25px rgba(45, 30, 27, .16); }
.button-plum { color: var(--ivory); background: var(--plum); }
.button-ivory { color: var(--plum); background: var(--ivory); }
.button-kakao { background: var(--mango); }
.button-ghost { border-color: var(--line); background: transparent; }
.line-link { padding-bottom: 6px; border-bottom: 1px solid currentColor; font-size: 12px; font-weight: 700; }

.hero-section { padding: clamp(58px, 7vw, 100px) 0 75px; overflow: hidden; }
.hero-heading { width: var(--shell); margin: 0 auto 46px; text-align: center; }
.hero-heading h1 { margin: 0; font-size: clamp(32px, 3.7vw, 54px); line-height: 1.22; font-weight: 800; letter-spacing: -.055em; }
.hero-carousel { position: relative; }
.hero-stage { position: relative; height: clamp(510px, 42vw, 620px); }
.hero-card { visibility: hidden; position: absolute; top: 0; left: 50%; width: min(1180px, 82vw); height: 100%; display: grid; grid-template-columns: 1fr 1fr; background: var(--ivory); border: 1px solid rgba(65, 49, 40, .08); border-radius: 34px; box-shadow: var(--shadow); opacity: 0; overflow: hidden; pointer-events: none; transform: translateX(-50%) scale(.84); transition: transform .7s cubic-bezier(.22, 1, .36, 1), opacity .55s ease, filter .55s ease; }
.hero-card.is-current, .hero-card.is-prev, .hero-card.is-next { visibility: visible; }
.hero-card.is-current { z-index: 3; opacity: 1; pointer-events: auto; transform: translateX(-50%) scale(1); }
.hero-card.is-prev { z-index: 1; opacity: .72; filter: saturate(.65); transform: translateX(-137%) scale(.9); }
.hero-card.is-next { z-index: 1; opacity: .72; filter: saturate(.65); transform: translateX(37%) scale(.9); }
.hero-card:nth-child(2) { background: #f2ded5; }
.hero-card:nth-child(3) { background: var(--sage-light); }
.hero-card-copy { position: relative; z-index: 2; padding: clamp(43px, 5vw, 78px); align-self: center; }
.card-kicker { margin: 0 0 19px; color: var(--clay); font: 700 10px var(--font-en); letter-spacing: .16em; }
.hero-card h2 { margin: 0; font-size: clamp(42px, 4.1vw, 58px); line-height: 1.08; letter-spacing: -.07em; }
.hero-card h2 span { display: block; white-space: nowrap; }
.hero-card h2 em { color: var(--clay); font-style: normal; }
.hero-card-copy > p:not(.card-kicker) { max-width: 420px; margin: 24px 0 30px; color: var(--muted); font-size: 15px; line-height: 1.8; word-break: keep-all; }
.hero-card-art, .hero-card-product { position: relative; min-width: 0; overflow: hidden; }
.hero-card-art::after { position: absolute; inset: 0 auto 0 0; width: 24%; content: ""; background: linear-gradient(90deg, var(--ivory), transparent); pointer-events: none; }
.hero-card-art img { width: 100%; height: 100%; object-fit: cover; object-position: 64% center; transition: transform 7s ease; }
.hero-card.is-current .hero-card-art img { transform: scale(1.04); }
.hero-card-product { display: grid; place-items: center; }
.hero-card-product .soft-shape { position: absolute; width: 72%; aspect-ratio: 1; border-radius: 42% 58% 61% 39% / 53% 40% 60% 47%; background: rgba(233,161,127,.48); animation: morph 10s ease-in-out infinite alternate; }
.hero-card-product.philosophy .soft-shape { background: rgba(174,185,154,.8); }
.hero-card-product img { position: relative; width: min(72%, 430px); aspect-ratio: 1; object-fit: cover; border-radius: 22px; box-shadow: 0 28px 45px rgba(56,40,37,.16); transform: rotate(2deg); transition: transform .5s ease; }
.hero-card.is-current .hero-card-product img { transform: rotate(-2deg) translateY(-5px); }
@keyframes morph { to { border-radius: 58% 42% 38% 62% / 45% 63% 37% 55%; transform: rotate(8deg); } }
.hero-controls { width: min(1180px, 82vw); margin: 26px auto 0; display: flex; justify-content: flex-end; align-items: center; gap: 12px; }
.hero-controls > button { width: 43px; height: 43px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; background: var(--ivory); cursor: pointer; transition: background .2s ease, color .2s ease; }
.hero-controls > button:hover { color: white; background: var(--plum); }
.hero-progress { min-width: 170px; display: flex; align-items: center; gap: 11px; font: 600 10px var(--font-en); }
.hero-progress strong { color: var(--clay); font-size: 13px; }
.hero-progress span { position: relative; width: 100px; height: 1px; background: var(--line); overflow: hidden; }
.hero-progress i { position: absolute; inset: 0; background: var(--plum); transform: scaleX(.333); transform-origin: left; transition: transform .45s ease; }
.hero-pause { font: 700 10px var(--font-en) !important; }

.quick-nav { width: var(--shell); margin: 0 auto; padding: 42px 0 100px; display: grid; grid-template-columns: repeat(6, 1fr); border-bottom: 1px solid var(--line); }
.quick-nav a { position: relative; display: grid; justify-items: center; padding: 0 8px; text-align: center; }
.quick-nav a:not(:last-child)::after { position: absolute; top: 25px; right: 0; width: 1px; height: 88px; content: ""; background: var(--line); }
.quick-nav i { position: absolute; top: 2px; left: 20%; color: var(--apricot); font: 600 8px var(--font-en); font-style: normal; }
.quick-icon { width: 68px; height: 68px; display: grid; place-items: center; margin-bottom: 15px; border-radius: 50%; background: var(--ivory); border: 1px solid var(--line); font: 700 18px var(--font-en); transition: transform .3s ease, background .3s ease; }
.quick-nav a:nth-child(2) .quick-icon, .quick-nav a:nth-child(5) .quick-icon { background: var(--blush); }
.quick-nav a:nth-child(3) .quick-icon, .quick-nav a:nth-child(6) .quick-icon { background: var(--sage-light); }
.quick-nav a:hover .quick-icon { background: var(--mango); transform: translateY(-7px) rotate(-5deg); }
.quick-nav strong { font-size: 14px; }
.quick-nav small { margin-top: 5px; color: var(--muted); font-size: 10px; }

.brand-statement { padding: clamp(100px, 12vw, 180px) 4vw; }
.statement-number { margin-bottom: clamp(55px, 7vw, 95px); color: var(--clay); font: 600 10px var(--font-en); letter-spacing: .16em; }
.statement-copy { max-width: 1120px; margin-inline: auto; }
.statement-copy > p { margin: 0 0 15px; color: var(--muted); font-size: clamp(16px, 1.5vw, 21px); }
.statement-copy h2 { margin: 0; font-size: clamp(41px, 6vw, 86px); line-height: 1.15; font-weight: 700; letter-spacing: -.065em; }
.statement-copy em { color: var(--clay); font-style: normal; }
.statement-foot { max-width: 1120px; margin: 65px auto 0; padding-top: 22px; display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--line); }
.statement-foot span { color: var(--plum); font: 700 10px var(--font-en); letter-spacing: .16em; }
.statement-foot p { max-width: 480px; margin: 0; color: var(--muted); font-size: 13px; line-height: 1.8; }

.curation-section { padding: 60px 0 clamp(110px, 12vw, 180px); }
.section-head { margin-bottom: 45px; display: flex; justify-content: space-between; align-items: flex-end; gap: 30px; }
.section-head h2 { margin: 0; font-size: clamp(38px, 4.2vw, 62px); line-height: 1.12; letter-spacing: -.06em; }
.segmented-tabs, .category-tabs, .recommend-tabs { display: inline-flex; padding: 4px; border: 1px solid var(--line); border-radius: 999px; background: rgba(255,255,255,.35); }
.segmented-tabs button, .category-tabs button, .recommend-tabs button { min-width: 91px; min-height: 40px; padding: 0 17px; border: 0; border-radius: 999px; background: transparent; cursor: pointer; font: 700 11px var(--font-en); transition: color .2s ease, background .2s ease; }
.segmented-tabs button[aria-selected="true"], .category-tabs button[aria-selected="true"], .recommend-tabs button[aria-selected="true"] { color: var(--ivory); background: var(--plum); }
.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.product-card { min-width: 0; }
.product-card.is-filtered { display: none; }
.product-image { position: relative; aspect-ratio: 1; display: block; border-radius: 18px; background: #ece6dc; overflow: hidden; }
.product-image img { height: 100%; object-fit: cover; transition: transform .55s cubic-bezier(.22,1,.36,1), filter .4s ease; }
.product-image:hover img { transform: scale(1.045); filter: saturate(1.05); }
.rank { position: absolute; z-index: 2; top: 16px; left: 16px; color: rgba(41,37,34,.7); font: 600 13px var(--font-en); }
.badge { position: absolute; z-index: 2; right: 13px; top: 13px; padding: 7px 10px; color: var(--ivory); background: var(--plum); border-radius: 999px; font: 700 9px var(--font-en); letter-spacing: .07em; }
.badge-new { color: var(--ink); background: var(--mango); }
.badge-age { color: var(--ink); background: var(--sage-light); }
.product-meta { padding: 17px 4px 0; }
.product-meta p { margin: 0 0 6px; color: var(--clay); font-size: 11px; font-weight: 600; }
.product-meta h3 { margin: 0 0 8px; font-size: 19px; letter-spacing: -.04em; }
.product-meta > span { display: block; margin-bottom: 15px; color: var(--muted); font-size: 11px; }
.product-meta a { display: flex; justify-content: space-between; padding-top: 11px; border-top: 1px solid var(--line); font-size: 11px; font-weight: 700; }

.category-entry { padding-bottom: clamp(120px, 13vw, 190px); }
.category-entry-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.entry-card { min-height: 490px; position: relative; display: grid; grid-template-columns: 1fr 1fr; border-radius: 28px; overflow: hidden; }
.entry-card.books { background: var(--blush); }
.entry-card.play { color: var(--ivory); background: var(--sage); }
.entry-copy { position: relative; z-index: 2; padding: clamp(32px, 4vw, 58px); align-self: end; }
.entry-copy > span { font: 700 10px var(--font-en); letter-spacing: .15em; }
.entry-copy h3 { margin: 13px 0 11px; font-size: clamp(27px, 2.7vw, 40px); letter-spacing: -.055em; }
.entry-copy p { margin: 0 0 30px; color: rgba(41,37,34,.66); font-size: 13px; line-height: 1.7; }
.entry-card.play .entry-copy p { color: rgba(255,255,255,.75); }
.entry-copy b { display: inline-block; padding-bottom: 5px; border-bottom: 1px solid currentColor; font-size: 11px; }
.entry-product { align-self: center; padding: 35px 35px 35px 0; }
.entry-product img { border-radius: 21px; box-shadow: 0 25px 45px rgba(80,52,43,.16); transform: rotate(3deg); transition: transform .4s ease; }
.entry-card:hover .entry-product img { transform: rotate(-1deg) scale(1.025); }
.entry-scene { position: absolute; inset: 0 0 0 43%; overflow: hidden; }
.entry-scene::after { position: absolute; inset: 0; content: ""; background: linear-gradient(90deg, var(--sage) 0, transparent 50%); }
.entry-scene img { height: 100%; object-fit: cover; object-position: 59% center; transition: transform .6s ease; }
.entry-card:hover .entry-scene img { transform: scale(1.035); }

.featured-section { padding: clamp(100px, 10vw, 155px) 0; background: #ece5d9; }
.featured-inner { width: var(--shell); margin-inline: auto; }
.featured-top { margin-bottom: 45px; display: flex; justify-content: space-between; align-items: flex-end; gap: 30px; }
.featured-top h2 { margin: 0; font-size: clamp(40px, 4.5vw, 66px); letter-spacing: -.06em; }
.category-tabs button { min-width: 130px; }
.category-visual { position: relative; aspect-ratio: 2.2; border-radius: 30px; background: var(--sage); overflow: hidden; }
.category-visual img { height: calc(100% + 70px); object-fit: cover; object-position: center; transform: translate3d(0, var(--parallax-y, -30px), 0) scale(1.04); will-change: transform; }
.category-visual span { position: absolute; right: 35px; bottom: 30px; padding: 17px 20px; color: var(--ivory); background: rgba(73,40,58,.88); border-radius: 50%; font: 700 11px/1.15 var(--font-en); letter-spacing: .08em; text-align: center; transform: rotate(7deg); }
.category-copy { padding: 42px 3px 55px; display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: end; }
.category-copy > div:first-child p { margin: 0 0 12px; color: var(--clay); font: 700 10px var(--font-en); letter-spacing: .15em; }
.category-copy h3 { margin: 0; font-size: clamp(35px, 4.3vw, 61px); line-height: 1.1; letter-spacing: -.06em; }
.category-copy > div:last-child > p { max-width: 510px; margin: 0 0 23px; color: var(--muted); font-size: 14px; line-height: 1.85; }
.mobile-rail-status { display: none; }
.concept-products { display: grid; }
.concept-image { aspect-ratio: 1; border-radius: 18px; overflow: hidden; }
.concept-image img { width: 160%; max-width: none; height: 100%; object-fit: cover; }
.concept-image.pos-a img { object-position: 25% center; }
.concept-image.pos-b img { object-position: 50% center; transform: translateX(-18%); }
.concept-image.pos-c img { object-position: 78% center; transform: translateX(-35%); }
.concept-image.pos-d img { object-position: 95% center; transform: translateX(-37%); }
.concept-card p { margin: 17px 0 5px; color: var(--clay); font: 700 9px var(--font-en); letter-spacing: .11em; }
.concept-card h3 { margin: 0 0 8px; font-size: 19px; }
.concept-card > span { color: var(--muted); font-size: 11px; }

.recommend-section { padding: clamp(105px, 12vw, 185px) max(36px, calc((100vw - 1380px) / 2)); color: var(--ivory); background: var(--plum); }
.recommend-intro { max-width: 800px; margin-bottom: 55px; }
.recommend-intro .eyebrow { color: var(--apricot); }
.recommend-intro h2 { margin: 0; font-size: clamp(45px, 5.8vw, 82px); line-height: 1.09; letter-spacing: -.065em; }
.recommend-intro > p:last-child { margin: 24px 0 0; color: rgba(255,255,255,.61); }
.recommend-card { padding: 35px clamp(25px, 4vw, 55px) 24px; color: var(--ink); background: var(--ivory); border-radius: 28px; }
.recommend-tabs { margin-bottom: 30px; }
.recommend-table { border-top: 1px solid var(--line); }
.recommend-table a { min-height: 85px; display: grid; grid-template-columns: 125px 1.3fr 1fr 30px; gap: 20px; align-items: center; border-bottom: 1px solid var(--line); transition: padding .25s ease, background .25s ease; }
.recommend-table a:hover { padding-inline: 17px; background: rgba(246,181,39,.13); }
.recommend-table strong { color: var(--clay); font-size: 18px; }
.recommend-table span { font-size: 17px; font-weight: 700; }
.recommend-table b { color: var(--muted); font-size: 12px; font-weight: 500; }
.recommend-table i { font-style: normal; }
.draft-note { margin: 20px 0 0; color: var(--muted); font-size: 10px; text-align: right; }
.recommend-help { margin-top: 22px; padding: 25px 30px; display: flex; justify-content: space-between; align-items: center; gap: 30px; color: var(--ink); background: var(--sage-light); border-radius: 22px; }
.recommend-help > div:first-child { display: grid; gap: 4px; }
.recommend-help strong { font-size: 16px; }
.recommend-help span { color: var(--muted); font-size: 12px; }
.recommend-help > div:last-child { display: flex; gap: 8px; }

.reviews-section { padding-block: clamp(110px, 12vw, 180px); }
.review-grid { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 22px; }
.review-card > div { position: relative; aspect-ratio: 1; border-radius: 22px; overflow: hidden; }
.review-card:first-child > div { aspect-ratio: 1.08; }
.review-card img { height: 100%; object-fit: cover; transition: transform .55s ease; }
.review-card:hover img { transform: scale(1.04); }
.review-card > div span { position: absolute; top: 13px; left: 13px; padding: 7px 10px; color: white; background: rgba(41,37,34,.82); border-radius: 999px; font: 700 8px var(--font-en); letter-spacing: .1em; }
.review-card p { margin: 18px 0 9px; font-size: 17px; line-height: 1.55; font-weight: 700; letter-spacing: -.035em; }
.review-card small { color: var(--muted); font-size: 10px; }

.news-section { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--line); }
.event-side, .notice-side { padding: clamp(80px, 8vw, 125px) max(36px, calc((100vw - 1380px) / 2)); }
.event-side { padding-right: 5vw; background: var(--blush); }
.notice-side { padding-left: 5vw; background: var(--sage-light); }
.news-heading { position: relative; margin-bottom: 35px; }
.news-heading h2 { margin: 0; font-size: clamp(35px, 3.3vw, 50px); letter-spacing: -.055em; }
.news-heading > a { position: absolute; right: 0; bottom: 5px; font-size: 10px; font-weight: 700; }
.event-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.event-cards a { min-height: 270px; padding: 25px; display: flex; flex-direction: column; justify-content: space-between; border-radius: 20px; background: var(--ivory); transition: transform .3s ease; }
.event-cards a:hover { transform: translateY(-7px) rotate(-1deg); }
.event-cards span { width: fit-content; padding: 6px 9px; color: white; background: var(--clay); border-radius: 999px; font-size: 9px; }
.event-cards strong { font-size: 23px; line-height: 1.45; letter-spacing: -.04em; }
.event-cards small { color: var(--muted); font: 600 9px var(--font-en); }
.notice-list { border-top: 1px solid rgba(41,37,34,.32); }
.notice-list a { min-height: 85px; display: grid; grid-template-columns: 60px 1fr 88px; gap: 12px; align-items: center; border-bottom: 1px solid rgba(41,37,34,.32); }
.notice-list span { color: var(--clay); font-size: 10px; font-weight: 700; }
.notice-list p { margin: 0; font-size: 14px; font-weight: 600; }
.notice-list time { color: var(--muted); font: 500 9px var(--font-en); text-align: right; }

.closing-cta { min-height: 620px; position: relative; padding: 100px 30px; display: grid; place-items: center; color: var(--plum); background: var(--apricot); text-align: center; overflow: hidden; }
.closing-cta > div:last-child { position: relative; z-index: 2; }
.closing-cta .eyebrow { color: var(--plum); }
.closing-cta h2 { margin: 0 0 35px; font-size: clamp(52px, 7vw, 100px); line-height: 1.04; letter-spacing: -.075em; }
.closing-orbit span { position: absolute; width: 105px; height: 105px; display: grid; place-items: center; border: 1px solid rgba(73,40,58,.4); border-radius: 50%; font: 700 9px var(--font-en); letter-spacing: .12em; animation: float 6s ease-in-out infinite; }
.closing-orbit span:first-child { top: 16%; left: 12%; background: var(--mango); }
.closing-orbit span:nth-child(2) { right: 13%; bottom: 18%; background: var(--sage-light); animation-delay: -2s; }
.closing-orbit span:nth-child(3) { top: 17%; right: 20%; color: white; background: var(--plum); animation-delay: -4s; }
@keyframes float { 50% { transform: translateY(-15px) rotate(7deg); } }

.site-footer { padding: 85px max(36px, calc((100vw - 1380px) / 2)) 25px; color: var(--ivory); background: var(--plum-deep); }
.footer-main { display: grid; grid-template-columns: 1fr 1.25fr; gap: 90px; }
.footer-brand .brand-mark { color: var(--ink); }
.footer-brand h2 { margin: 25px 0 9px; color: var(--mango); font: 700 clamp(45px, 5.5vw, 80px)/.9 var(--font-en); letter-spacing: -.06em; }
.footer-brand p { color: rgba(255,255,255,.55); font-size: 12px; }
.footer-columns { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.footer-columns > div { display: grid; align-content: start; gap: 11px; }
.footer-columns p { margin: 0 0 12px; color: var(--apricot); font: 700 9px var(--font-en); letter-spacing: .15em; }
.footer-columns a, .footer-button { width: fit-content; padding: 0; color: rgba(255,255,255,.73); border: 0; background: none; font-size: 11px; text-align: left; cursor: pointer; }
.footer-columns a:hover, .footer-button:hover { color: var(--mango); }
.footer-bottom { margin-top: 85px; padding-top: 20px; display: grid; grid-template-columns: 1fr 1fr auto; gap: 30px; border-top: 1px solid rgba(255,255,255,.16); color: rgba(255,255,255,.4); font: 500 8px var(--font-en); letter-spacing: .06em; }

.floating-contact { position: fixed; z-index: 60; right: 24px; bottom: 24px; }
.float-main { width: 60px; height: 60px; border: 0; border-radius: 50%; color: var(--ivory); background: var(--plum); box-shadow: 0 12px 28px rgba(57,37,45,.26); cursor: pointer; }
.float-main span { font-size: 11px; font-weight: 700; }
.float-options { visibility: hidden; position: absolute; right: 0; bottom: 72px; width: 135px; display: grid; gap: 7px; opacity: 0; transform: translateY(10px); transition: .2s ease; }
.floating-contact.is-open .float-options { visibility: visible; opacity: 1; transform: none; }
.float-options button { padding: 11px 13px; border: 1px solid var(--line); border-radius: 999px; background: var(--ivory); box-shadow: 0 8px 18px rgba(50,38,29,.12); cursor: pointer; font-size: 11px; }
.mobile-sticky-cta { display: none; }
.toast { visibility: hidden; position: fixed; z-index: 300; bottom: 28px; left: 50%; max-width: calc(100vw - 32px); padding: 14px 20px; color: var(--ivory); background: var(--ink); border-radius: 999px; opacity: 0; transform: translate(-50%, 12px); transition: .2s ease; font-size: 12px; text-align: center; }
.toast.is-visible { visibility: visible; opacity: 1; transform: translate(-50%, 0); }

.popup { visibility: hidden; position: fixed; z-index: 200; inset: 0; opacity: 0; transition: opacity .3s ease, visibility .3s; }
.popup.is-open { visibility: visible; opacity: 1; }
.popup-backdrop { position: absolute; inset: 0; background: rgba(35,28,30,.57); backdrop-filter: blur(14px); }
.popup-card { position: absolute; top: 50%; left: 50%; width: min(920px, calc(100vw - 40px)); max-height: calc(100svh - 40px); background: var(--ivory); border-radius: 25px; box-shadow: 0 35px 90px rgba(28,20,23,.34); overflow: auto; transform: translate(-50%, -46%) scale(.97); transition: transform .35s cubic-bezier(.22,1,.36,1); }
.popup.is-open .popup-card { transform: translate(-50%, -50%) scale(1); }
.popup-close { position: absolute; z-index: 4; top: 15px; right: 15px; width: 42px; height: 42px; border: 1px solid var(--line); border-radius: 50%; background: var(--ivory); cursor: pointer; font-size: 25px; line-height: 1; }
.popup-slide { min-height: 520px; display: grid; grid-template-columns: .95fr 1.05fr; }
.popup-art { min-width: 0; overflow: hidden; border-radius: 25px 0 0 25px; }
.popup-art img { height: 100%; object-fit: cover; object-position: 67% center; }
.popup-art.product { padding: 45px; display: grid; place-items: center; background: var(--blush); }
.popup-art.product img { height: auto; border-radius: 18px; box-shadow: 0 20px 40px rgba(60,39,37,.16); }
.popup-copy { padding: 60px 50px; align-self: center; }
.popup-copy h2 { margin: 0; font-size: clamp(36px, 4vw, 53px); line-height: 1.13; letter-spacing: -.06em; }
.popup-copy > p:not(.eyebrow) { margin: 20px 0 28px; color: var(--muted); font-size: 13px; line-height: 1.75; }
.popup-nav { position: absolute; z-index: 3; right: 22px; bottom: 18px; display: flex; align-items: center; gap: 8px; }
.popup-nav button { width: 31px; height: 31px; border: 1px solid var(--line); border-radius: 50%; background: var(--ivory); cursor: pointer; }
.popup-nav span { min-width: 47px; font: 600 9px var(--font-en); text-align: center; }
.popup-nav strong { color: var(--clay); }
.popup-today { position: absolute; z-index: 3; left: calc(47.5% + 50px); bottom: 25px; padding: 2px 0; color: var(--muted); border: 0; border-bottom: 1px solid currentColor; background: none; cursor: pointer; font-size: 9px; }

/* Scroll motion: content stays readable without JavaScript, and animates only when JS is active. */
.js [data-reveal="fade"] { opacity: 0; transform: translateY(34px); }
.js [data-reveal="fade"].is-visible { opacity: 1; transform: none; transition: opacity .8s ease, transform .9s cubic-bezier(.22,1,.36,1); }
.js [data-reveal="lines"] > * { opacity: 0; transform: translateY(38px); }
.js [data-reveal="lines"].is-visible > * { opacity: 1; transform: none; transition: opacity .7s ease, transform .85s cubic-bezier(.22,1,.36,1); }
.js [data-reveal="lines"].is-visible > *:nth-child(2) { transition-delay: .12s; }
.js [data-reveal="lines"].is-visible > *:nth-child(3) { transition-delay: .22s; }
.js [data-reveal="stagger"] > * { opacity: 0; transform: translateY(30px); }
.js [data-reveal="stagger"].is-visible > * { opacity: 1; transform: none; transition: opacity .65s ease, transform .75s cubic-bezier(.22,1,.36,1); }
.js [data-reveal="stagger"].is-visible > *:nth-child(2) { transition-delay: .08s; }
.js [data-reveal="stagger"].is-visible > *:nth-child(3) { transition-delay: .16s; }
.js [data-reveal="stagger"].is-visible > *:nth-child(4) { transition-delay: .24s; }
.js [data-reveal="stagger"].is-visible > *:nth-child(5) { transition-delay: .32s; }
.js [data-reveal="stagger"].is-visible > *:nth-child(6) { transition-delay: .4s; }
.js [data-reveal="mask"] { clip-path: inset(0 0 100% 0 round 30px); }
.js [data-reveal="mask"].is-visible { clip-path: inset(0 0 0 0 round 30px); transition: clip-path 1.05s cubic-bezier(.77,0,.18,1); }

@media (max-width: 1180px) {
  :root { --shell: calc(100vw - 48px); }
  .site-header { grid-template-columns: 165px 1fr 150px; padding-inline: 24px; }
  .desktop-nav { gap: 16px; font-size: 11px; }
  .product-grid { grid-template-columns: repeat(2, 1fr); row-gap: 52px; }
  .curation-grid .product-card:nth-child(n+3) { display: block; }
  .entry-card { min-height: 440px; }
  .recommend-section { padding-inline: 24px; }
  .news-section { grid-template-columns: 1fr; }
  .event-side, .notice-side { padding-inline: 5vw; }
  .footer-main { grid-template-columns: .8fr 1.2fr; gap: 55px; }
}

@media (max-width: 900px) {
  :root { --header-height: 66px; --shell: calc(100vw - 32px); }
  .site-header { height: var(--header-height); grid-template-columns: 1fr auto; padding-inline: 16px; }
  .site-header.is-scrolled { height: var(--header-height); }
  .desktop-nav { display: none; }
  .header-tools { grid-column: 2; }
  .store-link, .header-tool { display: none; }
  .menu-button { display: block; }
  .mobile-menu { top: calc(30px + var(--header-height)); }
  .hero-card { grid-template-columns: 1fr 1fr; }
  .hero-card-copy { padding: 43px; }
  .quick-nav { grid-template-columns: repeat(3, 1fr); row-gap: 40px; }
  .quick-nav a:nth-child(3)::after { display: none; }
  .quick-nav a::after { height: 75px; }
  .category-entry-grid { grid-template-columns: 1fr; }
  .entry-card { min-height: 430px; }
  .featured-products { grid-template-columns: repeat(2, 1fr); }
  .category-copy { gap: 35px; }
  .review-grid { grid-template-columns: 1.15fr 1fr; }
  .review-card:last-child { grid-column: 2; }
  .footer-main { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  body { padding-bottom: calc(70px + env(safe-area-inset-bottom)); }
  .preview-bar { min-height: 27px; }
  .preview-bar span { font-size: 9px; }
  .brand-type { display: none; }
  .mobile-menu { top: calc(27px + var(--header-height)); }
  .mobile-menu nav span { font-size: 15px; }
  .hero-section { padding: 45px 0 55px; }
  .hero-heading { margin-bottom: 30px; padding-inline: 8px; text-align: left; }
  .hero-heading h1 { font-size: 31px; }
  .hero-stage { height: 590px; }
  .hero-card { width: calc(100vw - 42px); grid-template-columns: 1fr; grid-template-rows: 55% 45%; border-radius: 25px; }
  .hero-card.is-prev { transform: translateX(-148%) scale(.92); }
  .hero-card.is-next { transform: translateX(48%) scale(.92); }
  .hero-card-copy { grid-row: 1; padding: 34px 27px 20px; align-self: center; }
  .hero-card h2 { font-size: clamp(37px, 10.5vw, 46px); }
  .hero-card-copy > p:not(.card-kicker) { margin: 17px 0 20px; font-size: 13px; line-height: 1.65; }
  .hero-card .button { min-height: 45px; }
  .hero-card-art, .hero-card-product { grid-row: 2; }
  .hero-card-art::after { inset: 0 0 auto; width: 100%; height: 18%; background: linear-gradient(180deg, var(--ivory), transparent); }
  .hero-card-art img { object-position: 63% 48%; }
  .hero-card-product img { width: 47%; border-radius: 14px; }
  .hero-card-product .soft-shape { width: 55%; }
  .hero-controls { width: calc(100vw - 42px); margin-top: 18px; justify-content: center; }
  .hero-controls > button { width: 39px; height: 39px; }
  .hero-progress { min-width: 142px; }
  .hero-progress span { width: 72px; }
  .quick-nav { padding: 30px 0 75px; row-gap: 34px; }
  .quick-nav a { padding: 0 3px; }
  .quick-nav i { left: 8%; }
  .quick-nav a::after { top: 18px; height: 65px; }
  .quick-icon { width: 57px; height: 57px; margin-bottom: 11px; font-size: 15px; }
  .quick-nav strong { font-size: 12px; }
  .quick-nav small { display: none; }
  .brand-statement { padding: 85px 8px; }
  .statement-number { margin-bottom: 45px; }
  .statement-copy > p { font-size: 14px; }
  .statement-copy h2 { font-size: 38px; line-height: 1.2; }
  .statement-foot { margin-top: 45px; grid-template-columns: 1fr; gap: 17px; }
  .statement-foot p { font-size: 12px; }
  .curation-section { padding: 35px 0 105px; }
  .section-head, .featured-top { align-items: flex-start; flex-direction: column; margin-bottom: 34px; }
  .section-head h2, .featured-top h2 { font-size: 39px; }
  .segmented-tabs { width: 100%; }
  .segmented-tabs button { flex: 1; }
  .product-grid, .featured-products, .concept-products { display: flex; gap: 14px; margin-right: -16px; padding-right: 16px; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; }
  .product-grid::-webkit-scrollbar, .featured-products::-webkit-scrollbar { display: none; }
  .product-grid .product-card, .featured-products .product-card, .concept-products .concept-card { flex: 0 0 82%; scroll-snap-align: start; }
  .category-entry { padding-bottom: 100px; }
  .entry-card { min-height: 480px; grid-template-columns: 1fr; }
  .entry-copy { padding: 28px; align-self: end; }
  .entry-copy h3 { font-size: 32px; }
  .entry-product { position: absolute; top: 30px; right: 20px; width: 56%; padding: 0; }
  .entry-scene { inset: 0; }
  .entry-scene::after { background: linear-gradient(0deg, var(--sage) 0, rgba(174,185,154,.95) 25%, transparent 70%); }
  .entry-scene img { object-position: 54% center; }
  .featured-section { padding: 90px 0; }
  .category-tabs { width: 100%; }
  .category-tabs button { min-width: 0; flex: 1; }
  .category-visual { aspect-ratio: 4 / 5; border-radius: 22px; }
  .category-visual img { height: calc(100% + 50px); object-position: center; }
  .category-visual span { right: 18px; bottom: 18px; }
  .category-copy { padding: 35px 0 42px; grid-template-columns: 1fr; gap: 25px; }
  .category-copy h3 { font-size: 41px; }
  .category-copy > div:last-child > p { font-size: 13px; }
  .mobile-rail-status { margin-top: 25px; display: flex; align-items: center; gap: 12px; }
  .mobile-rail-status > span { width: 80px; height: 2px; background: rgba(41,37,34,.15); }
  .mobile-rail-status i { display: block; width: 25%; height: 100%; background: var(--plum); }
  .mobile-rail-status b { font: 600 8px var(--font-en); letter-spacing: .1em; }
  .recommend-section { padding: 90px 16px; }
  .recommend-intro h2 { font-size: 43px; }
  .recommend-intro > p:last-child { font-size: 13px; line-height: 1.7; }
  .recommend-card { padding: 22px 17px 18px; border-radius: 22px; }
  .recommend-tabs { width: 100%; }
  .recommend-tabs button { min-width: 0; flex: 1; }
  .recommend-table a { min-height: 0; padding: 20px 3px; grid-template-columns: 70px 1fr 20px; gap: 10px; }
  .recommend-table strong { font-size: 14px; }
  .recommend-table span { font-size: 14px; line-height: 1.55; }
  .recommend-table b { grid-column: 2; font-size: 10px; }
  .recommend-table i { grid-column: 3; grid-row: 1 / span 2; }
  .draft-note { text-align: left; line-height: 1.6; }
  .recommend-help { padding: 23px; align-items: stretch; flex-direction: column; }
  .recommend-help > div:last-child { flex-direction: column; }
  .recommend-help .button { width: 100%; }
  .reviews-section { padding-block: 95px; }
  .review-tabs { width: 100%; }
  .review-tabs button { min-width: 0; flex: 1; }
  .review-grid { display: flex; gap: 14px; margin-right: -16px; padding-right: 16px; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; }
  .review-card { flex: 0 0 84%; scroll-snap-align: start; }
  .review-card:first-child > div { aspect-ratio: 1; }
  .news-section { grid-template-columns: 1fr; }
  .event-side, .notice-side { padding: 78px 16px; }
  .news-heading h2 { font-size: 37px; }
  .event-cards { grid-template-columns: 1fr; }
  .event-cards a { min-height: 235px; }
  .notice-list a { grid-template-columns: 45px 1fr; padding-block: 15px; }
  .notice-list time { grid-column: 2; text-align: left; }
  .closing-cta { min-height: 570px; padding-inline: 16px; }
  .closing-cta h2 { font-size: 49px; }
  .closing-orbit span { width: 70px; height: 70px; }
  .closing-orbit span:first-child { left: 3%; }
  .closing-orbit span:nth-child(2) { right: 4%; }
  .closing-orbit span:nth-child(3) { display: none; }
  .site-footer { padding: 75px 24px 25px; }
  .footer-brand h2 { font-size: 52px; }
  .footer-columns { grid-template-columns: 1fr 1fr; margin-top: 20px; }
  .footer-columns > div:last-child { grid-column: 1 / -1; }
  .footer-bottom { margin-top: 60px; grid-template-columns: 1fr; gap: 12px; }
  .floating-contact { display: none; }
  .mobile-sticky-cta { position: fixed; z-index: 90; right: 10px; bottom: calc(8px + env(safe-area-inset-bottom)); left: 10px; min-height: 58px; padding: 0 18px; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 12px; color: var(--ivory); background: var(--plum); border-radius: 999px; box-shadow: 0 10px 30px rgba(45,29,38,.25); }
  .mobile-sticky-cta span { padding: 6px 8px; color: var(--ink); background: var(--mango); border-radius: 999px; font: 700 9px var(--font-en); }
  .mobile-sticky-cta strong { font-size: 13px; }
  .mobile-sticky-cta i { font-style: normal; }
  .toast { bottom: 82px; }
  .popup-card { width: calc(100vw - 26px); }
  .popup-slide { min-height: 660px; grid-template-columns: 1fr; grid-template-rows: 43% 57%; }
  .popup-art { border-radius: 25px 25px 0 0; }
  .popup-art img { object-position: 63% 50%; }
  .popup-art.product { padding: 25px; }
  .popup-art.product img { width: 57%; }
  .popup-copy { padding: 32px 25px 75px; align-self: start; }
  .popup-copy h2 { font-size: 35px; }
  .popup-copy > p:not(.eyebrow) { margin: 15px 0 20px; font-size: 12px; }
  .popup-copy .button { width: 100%; }
  .popup-today { left: 26px; bottom: 28px; }
  .popup-nav { right: 18px; bottom: 18px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .js [data-reveal], .js [data-reveal] > * { opacity: 1 !important; transform: none !important; clip-path: none !important; }
  [data-parallax] { transform: none !important; }
}
