:root {
  --green-980: #02140f;
  --green-950: #031b15;
  --green-920: #05241c;
  --green-880: #073126;
  --green-820: #0a4333;
  --green-700: #166149;
  --gold-500: #d8ad57;
  --gold-400: #e7c376;
  --gold-300: #f1d99e;
  --ivory-100: #faf7ee;
  --ivory-150: #f5f0e3;
  --ivory-200: #eee5d2;
  --ink: #14221d;
  --muted-dark: #5e6b65;
  --white: #fffdf7;
  --line-dark: rgba(241, 217, 158, 0.2);
  --line-light: rgba(20, 34, 29, 0.14);
  --shadow-deep: 0 32px 80px rgba(0, 12, 9, 0.34);
  --shadow-soft: 0 24px 60px rgba(29, 41, 34, 0.13);
  --shell: min(1280px, calc(100% - 64px));
  --header-height: 84px;
  --serif: Georgia, "Times New Roman", "Noto Serif KR", "Noto Serif CJK KR", serif;
  --sans: "Pretendard", "Noto Sans KR", "Apple SD Gothic Neo", "Malgun Gothic", system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--green-950); overflow-x: hidden; }
body {
  margin: 0;
  min-width: 320px;
  background: var(--green-950);
  color: var(--white);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
button, a, input, select { font: inherit; }
a { color: inherit; text-decoration: none; }
button { border: 0; }
img { display: block; max-width: 100%; }
::selection { color: var(--green-950); background: var(--gold-300); }

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--green-950);
  background: var(--ivory-100);
  border-radius: 999px;
  transform: translateY(-160%);
  transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }

.scroll-progress {
  position: fixed;
  z-index: 1200;
  inset: 0 0 auto 0;
  height: 3px;
  pointer-events: none;
  background: transparent;
}
.scroll-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--gold-500), var(--gold-300));
  box-shadow: 0 0 14px rgba(231, 195, 118, .55);
}

.section-shell { width: var(--shell); margin: 0 auto; }
.section-dark { background: var(--green-950); }
.section-green { background: var(--green-920); }
.section-ivory { color: var(--ink); background: var(--ivory-100); }

.section-kicker,
.eyebrow {
  margin: 0 0 20px;
  color: var(--gold-400);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .21em;
  text-transform: uppercase;
}
.section-kicker.dark { color: #8a6b2e; }
.section-heading { max-width: 860px; }
.section-heading.centered { margin: 0 auto; text-align: center; }
.section-heading.split {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(300px, .72fr);
  align-items: end;
  gap: 80px;
  max-width: none;
}
.section-heading h2,
.real-art-copy h2,
.savori-copy h2,
.store-copy h2,
.faq-heading h2,
.closing-inner h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.45rem, 4.2vw, 5.15rem);
  font-weight: 700;
  line-height: 1.16;
  letter-spacing: -.045em;
}
.section-heading > p:last-child,
.real-art-copy > p,
.savori-intro,
.store-copy > p,
.faq-heading > p {
  margin: 30px 0 0;
  color: rgba(255, 253, 247, .66);
  font-size: 1.06rem;
  line-height: 1.92;
}
.section-ivory .section-heading > p:last-child,
.section-ivory .real-art-copy > p,
.section-ivory .faq-heading > p { color: var(--muted-dark); }

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 26px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: .94rem;
  font-weight: 800;
  letter-spacing: -.015em;
  transition: transform .24s ease, background .24s ease, border-color .24s ease, color .24s ease, box-shadow .24s ease;
}
.button:hover { transform: translateY(-2px); }
.button:focus-visible,
.desktop-nav a:focus-visible,
.language-select:focus-visible,
.menu-button:focus-visible,
.prompt-options button:focus-visible,
.savori-tabs button:focus-visible,
.accordion button:focus-visible,
.back-to-top:focus-visible {
  outline: 3px solid var(--gold-300);
  outline-offset: 4px;
}
.button-primary {
  color: var(--green-950);
  background: var(--gold-400);
  box-shadow: 0 14px 38px rgba(216, 173, 87, .18);
}
.button-primary:hover { background: #f0d48f; box-shadow: 0 18px 44px rgba(216, 173, 87, .25); }
.button-ghost {
  color: var(--white);
  border-color: rgba(255, 253, 247, .27);
  background: rgba(255, 255, 255, .04);
  backdrop-filter: blur(10px);
}
.button-ghost:hover { border-color: var(--gold-400); background: rgba(255, 255, 255, .08); }
.button-dark { color: var(--white); background: var(--green-950); box-shadow: 0 14px 32px rgba(3, 27, 21, .18); }
.button-dark:hover { background: var(--green-820); }

/* Header */
.site-header {
  position: fixed;
  z-index: 1000;
  inset: 0 0 auto;
  height: var(--header-height);
  border-bottom: 1px solid transparent;
  transition: background .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.site-header.is-scrolled {
  background: rgba(3, 27, 21, .9);
  border-color: rgba(231, 195, 118, .14);
  box-shadow: 0 14px 40px rgba(0, 12, 9, .2);
  backdrop-filter: blur(18px);
}
.header-inner {
  width: var(--shell);
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.brand { display: inline-flex; align-items: center; gap: 12px; min-width: max-content; }
.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--gold-400);
  font-family: var(--serif);
  font-size: 1.65rem;
  font-weight: 700;
  line-height: 1;
  border: 1px solid rgba(231, 195, 118, .64);
  border-radius: 13px;
  background: rgba(5, 36, 28, .6);
  box-shadow: inset 0 0 0 4px rgba(231, 195, 118, .05);
}
.brand-copy { display: flex; flex-direction: column; line-height: 1; }
.brand-copy strong { color: var(--gold-400); font-family: var(--serif); font-size: 1.12rem; letter-spacing: .14em; }
.brand-copy small { margin-top: 7px; color: rgba(255, 253, 247, .58); font-size: .52rem; font-weight: 800; letter-spacing: .17em; }
.header-actions { display: flex; align-items: center; justify-content: flex-end; gap: 14px; min-width: 0; }
.desktop-nav { display: flex; align-items: center; gap: clamp(18px, 2vw, 34px); }
.desktop-nav a { position: relative; color: rgba(255, 253, 247, .76); font-size: .86rem; font-weight: 700; transition: color .2s ease; }
.desktop-nav a::after {
  position: absolute;
  content: "";
  right: 0;
  bottom: -9px;
  left: 0;
  height: 1px;
  background: var(--gold-400);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .24s ease;
}
.desktop-nav a:hover { color: var(--white); }
.desktop-nav a:hover::after { transform: scaleX(1); transform-origin: left; }
.desktop-nav .nav-store { padding: 10px 16px; border: 1px solid rgba(231, 195, 118, .33); border-radius: 999px; color: var(--gold-300); }
.desktop-nav .nav-store::after { display: none; }
.desktop-nav .nav-store:hover { border-color: var(--gold-400); background: rgba(231, 195, 118, .08); }
.language-select-wrap { position: relative; flex: 0 0 auto; }
.language-select {
  height: 40px;
  min-width: 82px;
  padding: 0 30px 0 12px;
  cursor: pointer;
  color: var(--gold-300);
  border: 1px solid rgba(231, 195, 118, .28);
  border-radius: 999px;
  outline: 0;
  background-color: rgba(3, 27, 21, .72);
  background-image: linear-gradient(45deg, transparent 50%, var(--gold-300) 50%), linear-gradient(135deg, var(--gold-300) 50%, transparent 50%);
  background-position: calc(100% - 15px) 17px, calc(100% - 11px) 17px;
  background-size: 4px 4px, 4px 4px;
  background-repeat: no-repeat;
  appearance: none;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .02em;
}
.language-select:hover { border-color: rgba(231, 195, 118, .58); background-color: rgba(7, 49, 38, .86); }
.language-select option { color: #17231f; background: #fffdf7; }
.menu-button {
  display: none;
  width: 46px;
  height: 46px;
  padding: 12px 9px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
  border-radius: 14px;
  color: var(--white);
  background: rgba(255,255,255,.06);
}
.menu-button span { display: block; width: 24px; height: 1px; background: currentColor; transition: transform .26s ease, opacity .2s ease; }
.menu-button.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-button.is-open span:nth-child(2) { opacity: 0; }
.menu-button.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  z-index: 900;
  inset: 0;
  display: none;
  visibility: hidden;
  opacity: 0;
  background: rgba(2, 20, 15, .985);
  transform: translateY(-16px);
  transition: opacity .26s ease, transform .26s ease, visibility .26s;
}
.mobile-menu.is-open { visibility: visible; opacity: 1; transform: translateY(0); }
.mobile-menu-inner {
  width: min(560px, calc(100% - 40px));
  min-height: 100%;
  margin: 0 auto;
  padding: calc(var(--header-height) + 44px) 0 42px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.mobile-menu-label { margin: 0 0 18px; color: var(--gold-400); font-size: .7rem; font-weight: 800; letter-spacing: .22em; }
.mobile-menu nav { display: flex; flex-direction: column; border-top: 1px solid var(--line-dark); }
.mobile-menu nav a { display: flex; align-items: baseline; gap: 18px; padding: 15px 0; border-bottom: 1px solid var(--line-dark); font-family: var(--serif); font-size: clamp(1.6rem, 8vw, 2.7rem); line-height: 1.2; }
.mobile-menu nav a span { color: var(--gold-400); font-family: var(--sans); font-size: .68rem; letter-spacing: .16em; }
.mobile-store-button { display: flex; margin-top: 28px; min-height: 54px; align-items: center; justify-content: space-between; padding: 0 20px; color: var(--green-950); background: var(--gold-400); border-radius: 15px; font-weight: 800; }
.mobile-menu-note { margin: 22px 0 0; color: rgba(255,255,255,.45); font-size: .82rem; }

/* Hero */
.hero {
  position: relative;
  isolation: isolate;
  min-height: max(760px, 100svh);
  overflow: clip;
  background:
    linear-gradient(90deg, rgba(2,20,15,.98) 0%, rgba(3,27,21,.94) 40%, rgba(3,27,21,.36) 100%),
    url("../images/art-texture.webp") center/cover no-repeat;
}
.hero::after {
  position: absolute;
  z-index: -1;
  content: "";
  inset: auto 0 0;
  height: 26%;
  background: linear-gradient(180deg, transparent, rgba(3,27,21,.76));
}
.hero-atmosphere {
  position: absolute;
  z-index: -1;
  width: min(70vw, 980px);
  aspect-ratio: 1;
  right: -13vw;
  top: -24vw;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 50%, rgba(216,173,87,.25), rgba(10,67,51,.14) 38%, transparent 68%);
  filter: blur(8px);
}
.hero-orbit { position: absolute; z-index: -1; border: 1px solid rgba(231,195,118,.14); border-radius: 50%; pointer-events: none; }
.orbit-one { width: 520px; height: 520px; right: 9%; top: 14%; transform: rotate(-18deg); }
.orbit-two { width: 720px; height: 290px; right: -2%; top: 34%; transform: rotate(24deg); }
.hero-inner {
  position: relative;
  width: var(--shell);
  min-height: max(760px, 100svh);
  margin: 0 auto;
  padding: calc(var(--header-height) + 72px) 0 74px;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(430px, .92fr);
  align-items: center;
  gap: 32px;
}
.hero-copy { position: relative; z-index: 3; max-width: 760px; }
.eyebrow { display: flex; align-items: center; gap: 12px; }
.eyebrow span { width: 42px; height: 1px; background: var(--gold-400); }
.hero h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3.4rem, 6.5vw, 7.5rem);
  font-weight: 700;
  line-height: .99;
  letter-spacing: -.06em;
  text-wrap: balance;
}
.hero h1 em { color: var(--gold-400); font-style: normal; letter-spacing: -.035em; }
.hero-lead { max-width: 670px; margin: 34px 0 0; color: rgba(255,253,247,.73); font-size: clamp(1rem, 1.35vw, 1.16rem); line-height: 1.95; word-break: keep-all; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 38px; }
.hero-facts { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); max-width: 620px; margin: 48px 0 0; padding-top: 24px; border-top: 1px solid var(--line-dark); }
.hero-facts div { padding-right: 20px; }
.hero-facts div + div { padding-left: 28px; border-left: 1px solid var(--line-dark); }
.hero-facts dt { color: var(--gold-400); font-family: var(--serif); font-size: 1.95rem; font-weight: 700; line-height: 1; }
.hero-facts dd { margin: 9px 0 0; color: rgba(255,253,247,.58); font-size: .78rem; font-weight: 700; }

.hero-visual { position: relative; align-self: stretch; min-height: 660px; }
.hero-character-halo {
  position: absolute;
  width: 530px;
  height: 530px;
  top: 10%;
  left: 50%;
  border: 1px solid rgba(231,195,118,.28);
  border-radius: 50%;
  transform: translateX(-46%);
  box-shadow: inset 0 0 80px rgba(216,173,87,.06), 0 0 70px rgba(216,173,87,.05);
}
.hero-character-halo::before,
.hero-character-halo::after {
  position: absolute;
  content: "";
  border-radius: 50%;
  border: 1px dashed rgba(231,195,118,.18);
}
.hero-character-halo::before { inset: 48px; transform: rotate(18deg); }
.hero-character-halo::after { inset: 102px; transform: rotate(-12deg); }
.hero-character {
  position: absolute;
  z-index: 2;
  width: min(37vw, 525px);
  max-height: 720px;
  object-fit: contain;
  right: 1%;
  bottom: -10px;
  filter: drop-shadow(0 34px 34px rgba(0,0,0,.42));
  animation: characterFloat 6s ease-in-out infinite;
}
@keyframes characterFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
.savori-card {
  position: absolute;
  z-index: 4;
  width: min(360px, 72%);
  left: -5%;
  bottom: 12%;
  padding: 20px;
  border: 1px solid rgba(231,195,118,.28);
  border-radius: 22px;
  background: rgba(4, 36, 28, .88);
  box-shadow: var(--shadow-deep);
  backdrop-filter: blur(18px);
}
.savori-card-head { display: flex; align-items: center; gap: 12px; }
.savori-avatar { display: grid; width: 40px; height: 40px; place-items: center; border: 1px solid rgba(231,195,118,.56); border-radius: 50%; color: var(--gold-400); font-family: var(--serif); font-weight: 700; }
.savori-card-head div { display: flex; flex-direction: column; line-height: 1.2; }
.savori-card-head strong { font-size: .92rem; }
.savori-card-head small { margin-top: 3px; color: rgba(255,255,255,.5); font-size: .62rem; letter-spacing: .12em; text-transform: uppercase; }
.savori-card > p { min-height: 50px; margin: 16px 0 14px; color: rgba(255,253,247,.83); font-size: .88rem; line-height: 1.65; }
.prompt-options { display: flex; flex-wrap: wrap; gap: 7px; }
.prompt-options button { cursor: pointer; padding: 8px 11px; color: rgba(255,253,247,.72); border: 1px solid rgba(255,255,255,.14); border-radius: 999px; background: rgba(255,255,255,.05); font-size: .72rem; transition: .2s ease; }
.prompt-options button:hover, .prompt-options button.is-active { color: var(--green-950); border-color: var(--gold-400); background: var(--gold-400); }
.hero-floating-tag {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,253,247,.7);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .04em;
}
.hero-floating-tag span { color: var(--gold-400); font-size: .58rem; letter-spacing: .16em; }
.tag-one { right: 1%; top: 18%; }
.tag-two { left: 2%; top: 30%; }
.tag-three { right: -2%; bottom: 22%; }
.scroll-cue {
  position: absolute;
  z-index: 5;
  right: max(32px, calc((100vw - 1280px)/2));
  bottom: 28px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,.46);
  font-size: .59rem;
  font-weight: 800;
  letter-spacing: .17em;
  writing-mode: vertical-rl;
}
.scroll-cue i { display: block; width: 1px; height: 52px; overflow: hidden; background: rgba(255,255,255,.16); }
.scroll-cue i::after { display: block; content: ""; width: 1px; height: 24px; background: var(--gold-400); animation: cue 2s ease-in-out infinite; }
@keyframes cue { 0% { transform: translateY(-26px); } 70%,100% { transform: translateY(56px); } }

/* Brand transition */
.brand-transition { padding: 150px 0 140px; }
.brand-map { display: grid; grid-template-columns: 1fr 84px 1.08fr 84px 1fr; align-items: center; margin-top: 78px; }
.brand-map-card { position: relative; min-height: 280px; padding: 34px 30px; border: 1px solid var(--line-dark); border-radius: 24px; background: rgba(255,255,255,.025); transition: transform .28s ease, border-color .28s ease, background .28s ease; }
.brand-map-card:hover { transform: translateY(-7px); border-color: rgba(231,195,118,.52); background: rgba(255,255,255,.045); }
.brand-map-card.platform { min-height: 322px; border-color: rgba(231,195,118,.52); background: linear-gradient(145deg, rgba(216,173,87,.12), rgba(255,255,255,.025)); box-shadow: 0 28px 70px rgba(0,0,0,.18); }
.brand-map-index { position: absolute; top: 24px; right: 26px; color: rgba(231,195,118,.46); font-family: var(--serif); font-size: 1.5rem; }
.brand-map-label { margin: 0 0 34px; color: var(--gold-400); font-size: .62rem; font-weight: 800; letter-spacing: .2em; }
.brand-map-card h3 { margin: 0; color: var(--gold-300); font-family: var(--serif); font-size: clamp(1.85rem, 2.6vw, 2.8rem); }
.brand-map-card p:last-child { margin: 20px 0 0; color: rgba(255,255,255,.6); font-size: .93rem; line-height: 1.82; }
.brand-map-arrow { display: grid; place-items: center; }
.brand-map-arrow span { position: relative; display: block; width: 48px; height: 1px; background: rgba(231,195,118,.34); }
.brand-map-arrow span::after { position: absolute; content: ""; width: 8px; height: 8px; right: 0; top: -4px; border-top: 1px solid var(--gold-400); border-right: 1px solid var(--gold-400); transform: rotate(45deg); }
.philosophy-band { margin-top: 72px; padding: 44px 0 0; display: grid; grid-template-columns: 180px 1fr; gap: 40px; border-top: 1px solid var(--line-dark); }
.philosophy-band > span { color: var(--gold-400); font-size: .68rem; font-weight: 800; letter-spacing: .18em; }
.philosophy-band blockquote { max-width: 890px; margin: 0; font-family: var(--serif); font-size: clamp(1.65rem, 3vw, 3rem); line-height: 1.5; letter-spacing: -.035em; }

/* Real art */
.real-art { padding: 150px 0; overflow: hidden; }
.real-art-grid { display: grid; grid-template-columns: minmax(0,.82fr) minmax(520px,1.18fr); align-items: center; gap: clamp(70px, 8vw, 130px); }
.real-art-copy { max-width: 520px; }
.real-art-copy h2 { font-size: clamp(2.45rem, 4.3vw, 4.8rem); }
.check-list { display: grid; gap: 14px; margin: 36px 0 0; padding: 0; list-style: none; }
.check-list li { display: flex; align-items: center; gap: 13px; color: #31423a; font-weight: 700; }
.check-list span { display: grid; width: 26px; height: 26px; place-items: center; color: #6d5423; border: 1px solid rgba(138,107,46,.35); border-radius: 50%; font-size: .72rem; }
.art-collage { position: relative; min-height: 670px; }
.art-collage figure { margin: 0; overflow: hidden; background: #d9d1c1; box-shadow: var(--shadow-soft); }
.art-collage img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s cubic-bezier(.2,.7,.2,1); }
.art-collage figure:hover img { transform: scale(1.035); }
.collage-main { position: absolute; width: 68%; height: 72%; right: 0; top: 12%; border-radius: 170px 14px 14px 14px; }
.collage-main figcaption { position: absolute; inset: auto 0 0; display: flex; align-items: center; gap: 18px; padding: 20px 24px; color: var(--white); background: linear-gradient(180deg, transparent, rgba(3,27,21,.88)); }
.collage-main figcaption strong { color: var(--gold-300); font-size: .62rem; letter-spacing: .18em; }
.collage-main figcaption span { font-size: .78rem; }
.collage-small { position: absolute; width: 38%; height: 35%; left: 0; border: 8px solid var(--ivory-100); border-radius: 12px; }
.collage-small.top { top: 0; }
.collage-small.bottom { bottom: 0; }
.collage-number { position: absolute; left: 31%; bottom: 8%; display: grid; width: 170px; height: 170px; place-items: center; align-content: center; color: var(--white); border: 7px solid var(--ivory-100); border-radius: 50%; background: var(--green-950); box-shadow: 0 18px 44px rgba(3,27,21,.24); }
.collage-number strong { color: var(--gold-400); font-family: var(--serif); font-size: 2.55rem; line-height: 1; }
.collage-number span { margin-top: 8px; font-size: .57rem; font-weight: 800; letter-spacing: .15em; }

/* Experience */
.experience { padding: 150px 0 160px; }
.experience-grid { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 14px; margin-top: 78px; }
.experience-card { position: relative; min-height: 380px; padding: 32px 28px 28px; overflow: hidden; border: 1px solid var(--line-dark); border-radius: 22px; background: rgba(255,255,255,.025); transition: transform .3s ease, border-color .3s ease, background .3s ease; }
.experience-card::before { position: absolute; content: ""; width: 160px; height: 160px; right: -70px; bottom: -80px; border-radius: 50%; background: rgba(216,173,87,.06); transition: transform .35s ease; }
.experience-card:hover { transform: translateY(-8px); border-color: rgba(231,195,118,.48); background: rgba(255,255,255,.045); }
.experience-card:hover::before { transform: scale(1.7); }
.experience-icon { display: grid; width: 62px; height: 62px; place-items: center; color: var(--gold-400); border: 1px solid rgba(231,195,118,.3); border-radius: 18px; background: rgba(216,173,87,.05); }
.experience-icon svg { width: 30px; height: 30px; fill: none; stroke: currentColor; stroke-width: 1.4; stroke-linecap: round; stroke-linejoin: round; }
.experience-number { position: absolute; right: 24px; top: 28px; color: rgba(231,195,118,.32); font-family: var(--serif); font-size: 1.35rem; }
.experience-card h3 { margin: 40px 0 0; font-family: var(--serif); font-size: 1.75rem; }
.experience-card p { margin: 18px 0 0; color: rgba(255,255,255,.58); font-size: .92rem; line-height: 1.82; }
.experience-action { position: absolute; left: 28px; right: 28px; bottom: 27px; display: flex; justify-content: space-between; align-items: center; padding-top: 18px; color: var(--gold-300); border-top: 1px solid var(--line-dark); font-size: .78rem; font-weight: 800; }
.experience-action b { font-size: 1rem; }

/* Savori */
.savori-section { padding: 150px 0; overflow: hidden; }
.savori-layout { display: grid; grid-template-columns: minmax(380px,.82fr) minmax(0,1.18fr); align-items: center; gap: clamp(70px, 9vw, 150px); }
.savori-portrait { position: relative; }
.portrait-frame { position: relative; height: min(760px, 70vw); max-height: 760px; min-height: 560px; overflow: hidden; border: 1px solid rgba(231,195,118,.22); border-radius: 260px 260px 24px 24px; background: #0c3d2e; box-shadow: var(--shadow-deep); }
.portrait-frame::after { position: absolute; content: ""; inset: 0; box-shadow: inset 0 0 80px rgba(3,27,21,.24); pointer-events: none; }
.portrait-frame img { width: 100%; height: 100%; object-fit: cover; object-position: center 22%; }
.portrait-caption { position: absolute; right: -46px; bottom: 48px; width: 240px; padding: 22px; border: 1px solid rgba(231,195,118,.32); border-radius: 18px; background: rgba(4,36,28,.93); box-shadow: var(--shadow-deep); }
.portrait-caption span { color: var(--gold-400); font-size: .64rem; font-weight: 800; letter-spacing: .18em; }
.portrait-caption p { margin: 10px 0 0; color: rgba(255,255,255,.67); font-size: .78rem; line-height: 1.7; }
.savori-copy h2 { max-width: 700px; }
.savori-intro { max-width: 690px; }
.savori-tabs { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 42px; }
.savori-tabs button { cursor: pointer; padding: 11px 15px; color: rgba(255,255,255,.58); border: 1px solid rgba(255,255,255,.13); border-radius: 999px; background: rgba(255,255,255,.025); font-size: .8rem; font-weight: 700; transition: .2s ease; }
.savori-tabs button:hover, .savori-tabs button[aria-selected="true"] { color: var(--green-950); border-color: var(--gold-400); background: var(--gold-400); }
.savori-tab-panel { min-height: 250px; margin-top: 18px; padding: 34px; border: 1px solid var(--line-dark); border-radius: 22px; background: linear-gradient(145deg, rgba(216,173,87,.1), rgba(255,255,255,.025)); }
.savori-tab-panel > span { color: var(--gold-400); font-size: .64rem; font-weight: 800; letter-spacing: .18em; }
.savori-tab-panel blockquote { margin: 24px 0 0; font-family: var(--serif); font-size: clamp(1.45rem, 2.4vw, 2.25rem); line-height: 1.5; letter-spacing: -.03em; }
.savori-tab-panel p { margin: 20px 0 0; color: rgba(255,255,255,.58); font-size: .92rem; }
.savori-tab-panel.is-changing { animation: panelChange .34s ease; }
@keyframes panelChange { 0% { opacity: .2; transform: translateY(8px); } 100% { opacity: 1; transform: translateY(0); } }

/* Connection */
.connection { padding: 150px 0; }
.connection-stage { display: grid; grid-template-columns: minmax(0,1.25fr) minmax(340px,.75fr); min-height: 620px; margin-top: 76px; box-shadow: var(--shadow-soft); }
.connection-image { position: relative; min-height: 620px; overflow: hidden; border-radius: 28px 0 0 28px; }
.connection-image img { width: 100%; height: 100%; object-fit: cover; }
.connection-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(3,27,21,.08), rgba(3,27,21,.82)); }
.connection-image > p { position: absolute; left: 34px; bottom: 28px; margin: 0; color: var(--white); font-family: var(--serif); font-size: clamp(1.55rem, 2.5vw, 2.5rem); letter-spacing: .05em; }
.connection-image > p span { color: var(--gold-400); }
.connection-cards { display: grid; color: var(--white); border-radius: 0 28px 28px 0; overflow: hidden; background: var(--green-950); }
.connection-cards article { position: relative; padding: 34px 36px; border-bottom: 1px solid var(--line-dark); transition: background .25s ease; }
.connection-cards article:last-child { border-bottom: 0; }
.connection-cards article:hover { background: rgba(216,173,87,.08); }
.connection-cards span { position: absolute; right: 28px; top: 24px; color: rgba(231,195,118,.34); font-family: var(--serif); font-size: 1.25rem; }
.connection-cards h3 { margin: 0; color: var(--gold-300); font-family: var(--serif); font-size: 1.65rem; }
.connection-cards p { margin: 13px 0 0; color: rgba(255,255,255,.58); font-size: .88rem; line-height: 1.75; }

/* Journey */
.journey { padding: 130px 0 142px; }
.journey-steps { position: relative; display: grid; grid-template-columns: repeat(5,minmax(0,1fr)); margin: 74px 0 0; padding: 0; list-style: none; }
.journey-steps::before { position: absolute; content: ""; left: 6%; right: 6%; top: 40px; height: 1px; background: rgba(231,195,118,.26); }
.journey-steps li { position: relative; z-index: 1; padding: 0 18px; text-align: center; }
.journey-steps li > span { display: grid; width: 80px; height: 80px; margin: 0 auto; place-items: center; color: var(--gold-400); border: 1px solid rgba(231,195,118,.4); border-radius: 50%; background: var(--green-920); font-family: var(--serif); font-size: 1.15rem; transition: background .25s ease, color .25s ease, transform .25s ease; }
.journey-steps li:hover > span { color: var(--green-950); background: var(--gold-400); transform: translateY(-5px); }
.journey-steps strong { display: block; margin-top: 22px; font-family: var(--serif); font-size: 1.24rem; }
.journey-steps p { margin: 10px 0 0; color: rgba(255,255,255,.54); font-size: .78rem; line-height: 1.7; }

/* Store */
.store-section { position: relative; isolation: isolate; padding: 150px 0; overflow: hidden; color: var(--ink); background: var(--ivory-150); }
.store-background { position: absolute; z-index: -1; width: 780px; height: 780px; right: -280px; top: -190px; border-radius: 50%; background: radial-gradient(circle, rgba(216,173,87,.28), transparent 66%); }
.store-layout { display: grid; grid-template-columns: minmax(0,.95fr) minmax(470px,1.05fr); align-items: center; gap: clamp(70px,9vw,150px); }
.store-copy h2 { max-width: 720px; font-size: clamp(2.55rem,4.5vw,5rem); }
.store-copy > p { color: var(--muted-dark); }
.store-copy .button { margin-top: 36px; }
.store-copy .store-note { margin-top: 16px; font-size: .76rem; color: #7e877f; }
.store-visual { position: relative; display: grid; min-height: 660px; place-items: center; }
.store-device { width: min(470px, 88%); max-height: 660px; overflow: hidden; border: 12px solid var(--green-950); border-radius: 44px; background: var(--green-950); box-shadow: 0 36px 80px rgba(3,27,21,.23); transform: rotate(2deg); }
.store-device img { width: 100%; height: 100%; max-height: 640px; object-fit: cover; object-position: center top; border-radius: 32px; }
.store-seal { position: absolute; left: 2%; bottom: 10%; display: flex; width: 150px; height: 150px; align-items: center; justify-content: center; gap: 10px; color: var(--white); border: 8px solid var(--ivory-150); border-radius: 50%; background: var(--green-950); box-shadow: var(--shadow-soft); }
.store-seal strong { color: var(--gold-400); font-family: var(--serif); font-size: 2.5rem; line-height: 1; }
.store-seal span { font-size: .54rem; font-weight: 800; letter-spacing: .13em; line-height: 1.45; }

/* FAQ */
.faq { padding: 140px 0 150px; }
.faq-layout { display: grid; grid-template-columns: minmax(300px,.72fr) minmax(0,1.28fr); gap: clamp(70px,9vw,150px); }
.faq-heading { position: sticky; top: calc(var(--header-height) + 40px); align-self: start; }
.faq-heading h2 { font-size: clamp(2.3rem,3.8vw,4.2rem); }
.accordion { border-top: 1px solid var(--line-light); }
.accordion-item { border-bottom: 1px solid var(--line-light); }
.accordion-item > button { width: 100%; min-height: 88px; padding: 0 4px; display: flex; align-items: center; justify-content: space-between; gap: 20px; cursor: pointer; color: var(--ink); background: transparent; text-align: left; font-family: var(--serif); font-size: clamp(1.1rem,1.6vw,1.45rem); font-weight: 700; }
.accordion-item i { position: relative; flex: 0 0 26px; width: 26px; height: 26px; border: 1px solid rgba(20,34,29,.28); border-radius: 50%; }
.accordion-item i::before, .accordion-item i::after { position: absolute; content: ""; width: 10px; height: 1px; left: 7px; top: 12px; background: var(--ink); transition: transform .22s ease; }
.accordion-item i::after { transform: rotate(90deg); }
.accordion-item.is-open i::after { transform: rotate(0); }
.accordion-panel { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .28s ease; }
.accordion-panel > p { min-height: 0; overflow: hidden; margin: 0; color: var(--muted-dark); line-height: 1.85; }
.accordion-item.is-open .accordion-panel { grid-template-rows: 1fr; }
.accordion-item.is-open .accordion-panel > p { padding: 0 48px 28px 4px; }

/* Closing */
.closing { position: relative; isolation: isolate; min-height: 660px; display: grid; place-items: center; overflow: hidden; background: var(--green-950); }
.closing-texture { position: absolute; z-index: -2; inset: 0; background: linear-gradient(90deg, rgba(3,27,21,.94), rgba(3,27,21,.45)), url("../images/art-texture.webp") center/cover no-repeat; transform: scale(1.03); }
.closing::after { position: absolute; z-index: -1; content: ""; inset: 0; background: radial-gradient(circle at 80% 50%, rgba(216,173,87,.16), transparent 42%); }
.closing-inner { padding: 100px 0; text-align: center; }
.closing-inner > p { margin: 0 0 24px; color: var(--gold-400); font-size: .7rem; font-weight: 800; letter-spacing: .21em; }
.closing-inner h2 { font-size: clamp(3rem,6vw,6.5rem); }
.closing-actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 12px; margin-top: 42px; }

/* Footer */
.site-footer { padding: 58px 0 42px; background: #01100c; }
.footer-inner { width: var(--shell); margin: 0 auto; display: grid; grid-template-columns: .8fr 1.2fr .8fr; gap: 50px; align-items: end; }
.footer-brand { display: flex; flex-direction: column; }
.footer-brand strong { color: var(--gold-400); font-family: var(--serif); font-size: 1.45rem; letter-spacing: .15em; }
.footer-brand span { margin-top: 7px; color: rgba(255,255,255,.38); font-size: .68rem; }
.footer-description p { margin: 0; color: rgba(255,255,255,.48); font-size: .8rem; }
.footer-description a { display: inline-block; margin-top: 10px; color: var(--gold-300); font-size: .78rem; font-weight: 700; }
.footer-meta { text-align: right; }
.footer-meta p { margin: 0; color: rgba(255,255,255,.32); font-size: .68rem; }
.footer-meta a { display: inline-block; margin-top: 10px; color: rgba(255,255,255,.58); font-size: .74rem; }

.back-to-top {
  position: fixed;
  z-index: 700;
  right: 24px;
  bottom: 24px;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  cursor: pointer;
  color: var(--green-950);
  border-radius: 50%;
  background: var(--gold-400);
  box-shadow: 0 14px 30px rgba(0,0,0,.25);
  opacity: 0;
  transform: translateY(14px);
  pointer-events: none;
  transition: opacity .25s ease, transform .25s ease;
}
.back-to-top.is-visible { opacity: 1; transform: translateY(0); pointer-events: auto; }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .75s ease, transform .75s cubic-bezier(.2,.7,.2,1); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.experience-card.reveal:nth-child(2) { transition-delay: .08s; }
.experience-card.reveal:nth-child(3) { transition-delay: .16s; }
.experience-card.reveal:nth-child(4) { transition-delay: .24s; }

@media (max-width: 1180px) {
  :root { --shell: min(1120px, calc(100% - 48px)); }
  .desktop-nav { gap: 20px; }
  .desktop-nav a { font-size: .8rem; }
  .hero-inner { grid-template-columns: minmax(0,1.05fr) minmax(380px,.95fr); }
  .hero-character { width: min(41vw,500px); right: -3%; }
  .savori-card { left: -2%; }
  .brand-map { grid-template-columns: 1fr 50px 1.08fr 50px 1fr; }
  .experience-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .experience-card { min-height: 340px; }
  .real-art-grid { grid-template-columns: minmax(0,.9fr) minmax(470px,1.1fr); gap: 70px; }
  .savori-layout { gap: 80px; }
  .portrait-caption { right: -20px; }
}

@media (max-width: 980px) {
  :root { --header-height: 74px; --shell: min(920px, calc(100% - 40px)); }
  .desktop-nav { display: none; }
  .menu-button { display: flex; }
  .mobile-menu { display: block; }
  .hero-inner { min-height: auto; padding-top: calc(var(--header-height) + 80px); grid-template-columns: 1fr; gap: 0; }
  .hero-copy { max-width: 820px; }
  .hero h1 { font-size: clamp(3.5rem, 10vw, 6.4rem); }
  .hero-visual { min-height: 680px; margin-top: 0; }
  .hero-character { width: min(62vw,510px); right: 8%; }
  .hero-character-halo { width: 510px; height: 510px; left: 65%; }
  .savori-card { left: 5%; bottom: 12%; }
  .tag-two { left: 9%; }
  .brand-map { grid-template-columns: 1fr; gap: 18px; }
  .brand-map-card, .brand-map-card.platform { min-height: 0; }
  .brand-map-arrow { height: 40px; transform: rotate(90deg); }
  .real-art-grid, .savori-layout, .store-layout, .faq-layout { grid-template-columns: 1fr; }
  .real-art-copy { max-width: 760px; }
  .art-collage { min-height: 650px; }
  .portrait-frame { width: min(620px, 86%); margin: 0 auto; height: 720px; }
  .portrait-caption { right: 2%; }
  .savori-copy { max-width: 800px; }
  .connection-stage { grid-template-columns: 1fr; }
  .connection-image { border-radius: 28px 28px 0 0; min-height: 500px; }
  .connection-cards { grid-template-columns: repeat(3,1fr); border-radius: 0 0 28px 28px; }
  .connection-cards article { border-bottom: 0; border-right: 1px solid var(--line-dark); }
  .connection-cards article:last-child { border-right: 0; }
  .journey-steps { grid-template-columns: repeat(5,minmax(140px,1fr)); overflow-x: auto; padding-bottom: 18px; scroll-snap-type: x mandatory; }
  .journey-steps li { scroll-snap-align: center; }
  .store-copy { max-width: 760px; }
  .store-visual { min-height: 620px; }
  .faq-heading { position: static; max-width: 700px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-meta { grid-column: 1 / -1; text-align: left; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.08); }
}

@media (max-width: 720px) {
  :root { --shell: calc(100% - 32px); }
  .site-header { height: 70px; }
  .header-inner { gap: 12px; }
  .header-actions { gap: 8px; }
  .language-select { height: 38px; min-width: 74px; max-width: 92px; padding-left: 10px; padding-right: 27px; font-size: .67rem; }
  .brand-mark { width: 38px; height: 38px; border-radius: 11px; font-size: 1.45rem; }
  .brand-copy strong { font-size: .98rem; }
  .brand-copy small { font-size: .46rem; }
  .menu-button { width: 42px; height: 42px; }
  .section-heading h2,
  .real-art-copy h2,
  .savori-copy h2,
  .store-copy h2,
  .faq-heading h2 { font-size: clamp(2.2rem, 11vw, 3.6rem); word-break: keep-all; }
  .section-heading > p:last-child,
  .real-art-copy > p,
  .savori-intro,
  .store-copy > p,
  .faq-heading > p { margin-top: 22px; font-size: .96rem; line-height: 1.82; }
  .section-kicker, .eyebrow { margin-bottom: 16px; font-size: .66rem; }
  .button { width: 100%; min-height: 52px; }
  .hero { min-height: auto; background-position: 60% center; }
  .hero::before { position: absolute; z-index: -1; content: ""; inset: 0; background: linear-gradient(180deg, rgba(2,20,15,.94) 0%, rgba(3,27,21,.72) 42%, rgba(3,27,21,.94) 100%); }
  .hero-inner { padding: 126px 0 44px; }
  .hero h1 { font-size: clamp(3.25rem, 17vw, 5.1rem); line-height: 1.02; }
  .hero-lead { margin-top: 26px; font-size: .96rem; line-height: 1.82; }
  .hero-actions { margin-top: 30px; flex-direction: column; }
  .hero-facts { margin-top: 36px; }
  .hero-facts div { padding-right: 10px; }
  .hero-facts div + div { padding-left: 12px; }
  .hero-facts dt { font-size: 1.55rem; }
  .hero-facts dd { font-size: .67rem; line-height: 1.4; }
  .hero-visual { min-height: 590px; margin-top: 4px; }
  .hero-character { width: min(98vw, 470px); right: 50%; bottom: -18px; transform: translateX(50%); animation: none; }
  .hero-character-halo { width: 420px; height: 420px; top: 15%; left: 50%; transform: translateX(-50%); }
  .savori-card { width: calc(100% - 10px); left: 5px; bottom: 12px; padding: 17px; }
  .savori-card > p { min-height: 44px; margin: 13px 0 12px; }
  .hero-floating-tag { display: none; }
  .scroll-cue { display: none; }
  .brand-transition, .real-art, .experience, .savori-section, .connection, .store-section { padding: 100px 0; }
  .faq { padding: 96px 0 108px; }
  .section-heading.split { grid-template-columns: 1fr; gap: 24px; }
  .brand-map { margin-top: 52px; }
  .brand-map-card { padding: 28px 24px; border-radius: 20px; }
  .philosophy-band { margin-top: 54px; grid-template-columns: 1fr; gap: 16px; }
  .philosophy-band blockquote { font-size: 1.55rem; }
  .real-art-grid { gap: 54px; }
  .art-collage { min-height: 510px; }
  .collage-main { width: 72%; height: 70%; top: 14%; border-radius: 100px 12px 12px 12px; }
  .collage-small { width: 42%; height: 31%; border-width: 5px; }
  .collage-number { width: 124px; height: 124px; left: 29%; bottom: 10%; border-width: 5px; }
  .collage-number strong { font-size: 2rem; }
  .collage-number span { font-size: .48rem; }
  .collage-main figcaption { display: none; }
  .experience-grid { grid-template-columns: 1fr; margin-top: 50px; }
  .experience-card { min-height: 320px; padding: 26px 24px; }
  .experience-action { left: 24px; right: 24px; }
  .portrait-frame { width: 100%; height: 620px; min-height: 0; border-radius: 180px 180px 20px 20px; }
  .portrait-caption { right: -4px; bottom: 26px; width: 210px; }
  .savori-layout { gap: 70px; }
  .savori-tabs { display: grid; grid-template-columns: repeat(2,1fr); }
  .savori-tabs button { padding: 10px; }
  .savori-tab-panel { min-height: 280px; padding: 28px 24px; }
  .connection-stage { margin-top: 52px; }
  .connection-image { min-height: 390px; }
  .connection-cards { grid-template-columns: 1fr; }
  .connection-cards article { border-right: 0; border-bottom: 1px solid var(--line-dark); padding: 30px 28px; }
  .connection-cards article:last-child { border-bottom: 0; }
  .journey { padding: 96px 0 108px; }
  .journey-steps { width: 100%; margin-top: 52px; grid-template-columns: repeat(5, 180px); justify-content: start; margin-right: 0; overscroll-behavior-inline: contain; -webkit-overflow-scrolling: touch; }
  .journey-steps::before { left: 90px; right: 90px; }
  .store-layout { gap: 55px; }
  .store-visual { min-height: 520px; }
  .store-device { width: min(390px,86%); max-height: 520px; border-width: 9px; border-radius: 34px; }
  .store-device img { max-height: 500px; border-radius: 25px; }
  .store-seal { width: 118px; height: 118px; left: 0; bottom: 7%; border-width: 6px; }
  .store-seal strong { font-size: 2rem; }
  .store-seal span { font-size: .46rem; }
  .faq-layout { gap: 50px; }
  .accordion-item > button { min-height: 78px; font-size: 1.08rem; }
  .closing { min-height: 560px; }
  .closing-inner { padding: 90px 0; }
  .closing-inner h2 { font-size: clamp(2.85rem,14vw,5rem); }
  .closing-actions { flex-direction: column; }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .footer-meta { grid-column: auto; }
  .back-to-top { right: 16px; bottom: 16px; width: 44px; height: 44px; }
}

@media (max-width: 420px) {
  :root { --shell: calc(100% - 26px); }
  .brand-copy small { display: none; }
  .language-select { min-width: 68px; max-width: 78px; padding-left: 8px; font-size: .62rem; }
  .hero-inner { padding-top: 112px; }
  .hero h1 { font-size: clamp(3rem, 16vw, 4rem); }
  .hero-facts dd { font-size: .61rem; }
  .hero-visual { min-height: 560px; }
  .hero-character { width: 112vw; max-width: 450px; }
  .savori-card { bottom: 8px; }
  .prompt-options button { padding: 7px 9px; font-size: .66rem; }
  .art-collage { min-height: 450px; }
  .collage-number { left: 27%; bottom: 8%; }
  .portrait-frame { height: 540px; }
  .portrait-caption { width: 190px; padding: 18px; }
  .store-visual { min-height: 480px; }
  .mobile-menu-inner { width: calc(100% - 28px); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* =========================================================
   SavorIP PWA mobile refinement · 2026-08
   Keeps the desktop identity while giving the installed app
   denser typography, safer touch targets and app navigation.
   ========================================================= */

:root {
  --safe-top: env(safe-area-inset-top, 0px);
  --safe-right: env(safe-area-inset-right, 0px);
  --safe-bottom: env(safe-area-inset-bottom, 0px);
  --safe-left: env(safe-area-inset-left, 0px);
  --mobile-tabbar-height: 66px;
}

html { scroll-padding-top: calc(var(--header-height) + 18px); }
body { min-height: 100dvh; }
button, a, select { -webkit-tap-highlight-color: transparent; }

/* Legal/company footer */
.site-footer {
  padding: 72px 0 32px;
  border-top: 1px solid rgba(231, 195, 118, .12);
  background:
    radial-gradient(circle at 85% 10%, rgba(216,173,87,.08), transparent 28%),
    #01100c;
}
.footer-inner {
  width: var(--shell);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(240px, .68fr) minmax(0, 1.32fr);
  gap: 56px 72px;
  align-items: start;
}
.footer-intro { display: grid; gap: 28px; }
.footer-brand { display: flex; flex-direction: column; }
.footer-brand strong { color: var(--gold-400); font-family: var(--serif); font-size: 1.55rem; letter-spacing: .15em; }
.footer-brand span { margin-top: 7px; color: rgba(255,255,255,.38); font-size: .68rem; }
.footer-description p { margin: 0; color: rgba(255,255,255,.54); font-size: .82rem; line-height: 1.78; }
.footer-description .footer-operator { margin-top: 9px; color: rgba(255,255,255,.36); font-size: .73rem; }
.footer-description a { display: inline-block; margin-top: 15px; color: var(--gold-300); font-size: .8rem; font-weight: 800; }

.business-disclosure {
  min-width: 0;
  border-top: 1px solid rgba(231,195,118,.24);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.business-disclosure summary {
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  cursor: pointer;
  color: var(--white);
  list-style: none;
}
.business-disclosure summary::-webkit-details-marker { display: none; }
.business-disclosure summary::after {
  content: "+";
  display: grid;
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  place-items: center;
  color: var(--gold-300);
  border: 1px solid rgba(231,195,118,.28);
  border-radius: 50%;
  font-size: 1rem;
  font-weight: 400;
  transition: transform .2s ease, background .2s ease;
}
.business-disclosure[open] summary::after { content: "−"; background: rgba(231,195,118,.08); }
.business-disclosure summary span { font-family: var(--serif); font-size: 1.14rem; font-weight: 700; }
.business-disclosure summary small { margin-left: auto; color: rgba(231,195,118,.52); font-size: .58rem; font-weight: 800; letter-spacing: .17em; }
.business-grid { padding: 3px 0 26px; }
.business-grid dl {
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 34px;
}
.business-grid dl > div {
  min-width: 0;
  padding: 12px 0;
  display: grid;
  grid-template-columns: minmax(92px, .72fr) minmax(0, 1.28fr);
  gap: 14px;
  border-top: 1px solid rgba(255,255,255,.06);
}
.business-grid dl > div:nth-child(-n+2) { border-top: 0; }
.business-grid .business-wide { grid-column: 1 / -1; grid-template-columns: 106px minmax(0,1fr); }
.business-grid dt { color: rgba(255,255,255,.36); font-size: .68rem; font-weight: 700; }
.business-grid dd { min-width: 0; margin: 0; color: rgba(255,255,255,.72); font-size: .72rem; line-height: 1.65; overflow-wrap: anywhere; }

.footer-bottom {
  grid-column: 1 / -1;
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255,255,255,.08);
}
.footer-bottom p { margin: 0; color: rgba(255,255,255,.30); font-size: .68rem; }
.footer-bottom > div { display: flex; align-items: center; gap: 18px; }
.footer-bottom a,
.footer-install-button {
  color: rgba(255,255,255,.62);
  background: transparent;
  cursor: pointer;
  font-size: .74rem;
  font-weight: 700;
}
.footer-install-button { color: var(--gold-300); }

/* Installed-app navigation */
.mobile-tabbar { display: none; }
.mobile-install-button {
  width: 100%;
  min-height: 50px;
  margin-top: 10px;
  padding: 0 18px;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  color: var(--gold-300);
  border: 1px solid rgba(231,195,118,.25);
  border-radius: 15px;
  background: rgba(231,195,118,.06);
  font-size: .8rem;
  font-weight: 800;
}
.mobile-install-button:not([hidden]) { display: flex; }

@media (max-width: 980px) {
  .footer-inner {
    grid-template-columns: minmax(220px, .7fr) minmax(0, 1.3fr);
    gap: 46px;
  }
  .footer-meta { grid-column: auto; }
}

@media (max-width: 720px) {
  :root {
    --header-height: 64px;
    --shell: calc(100% - 28px);
  }

  html { scroll-padding-top: calc(var(--header-height) + 10px); }
  body {
    font-size: 15px;
    line-height: 1.64;
    padding-bottom: calc(var(--mobile-tabbar-height) + var(--safe-bottom));
  }

  .site-header {
    top: var(--safe-top);
    height: var(--header-height);
    background: rgba(3,27,21,.92);
    border-color: rgba(231,195,118,.10);
    backdrop-filter: blur(18px);
  }
  .header-inner { width: calc(100% - 24px); }
  .brand { gap: 9px; }
  .brand-mark { width: 36px; height: 36px; border-radius: 10px; font-size: 1.35rem; }
  .brand-copy strong { font-size: .92rem; letter-spacing: .12em; }
  .brand-copy small { margin-top: 5px; font-size: .42rem; letter-spacing: .14em; }
  .header-actions { gap: 7px; }
  .language-select { height: 36px; min-width: 72px; max-width: 84px; padding: 0 25px 0 9px; font-size: .63rem; background-position: calc(100% - 13px) 15px, calc(100% - 9px) 15px; }
  .menu-button { width: 40px; height: 40px; border-radius: 12px; padding: 10px 8px; gap: 5px; }
  .menu-button span { width: 22px; }
  .menu-button.is-open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .menu-button.is-open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

  .mobile-menu {
    top: var(--safe-top);
    bottom: 0;
    z-index: 1100;
    overflow-y: auto;
    overscroll-behavior: contain;
  }
  .mobile-menu-inner {
    width: calc(100% - 28px);
    min-height: 100%;
    padding: calc(var(--header-height) + 30px) 0 calc(30px + var(--safe-bottom));
    justify-content: flex-start;
  }
  .mobile-menu-label { margin-bottom: 12px; font-size: .62rem; }
  .mobile-menu nav a { gap: 14px; padding: 12px 0; font-size: clamp(1.45rem, 6.5vw, 1.9rem); line-height: 1.14; }
  .mobile-menu nav a span { font-size: .58rem; }
  .mobile-store-button { min-height: 50px; margin-top: 18px; padding: 0 17px; border-radius: 14px; font-size: .78rem; }
  .mobile-menu-note { margin-top: 14px; font-size: .72rem; }

  .section-kicker,
  .eyebrow { margin-bottom: 13px; font-size: .61rem; letter-spacing: .18em; }
  .section-heading h2,
  .real-art-copy h2,
  .savori-copy h2,
  .store-copy h2,
  .faq-heading h2 {
    font-size: clamp(2rem, 9.15vw, 2.72rem);
    line-height: 1.19;
    letter-spacing: -.038em;
    word-break: keep-all;
  }
  .section-heading > p:last-child,
  .real-art-copy > p,
  .savori-intro,
  .store-copy > p,
  .faq-heading > p {
    margin-top: 18px;
    font-size: .9rem;
    line-height: 1.72;
  }

  .button { min-height: 48px; padding: 0 18px; font-size: .8rem; }

  /* Hero: one purposeful app opening rather than two oversized screens */
  .hero { min-height: auto; background-position: 64% center; }
  .hero-inner { padding: calc(var(--header-height) + 34px) 0 28px; }
  .hero h1 { font-size: clamp(2.72rem, 12.1vw, 3.45rem); line-height: 1.03; letter-spacing: -.052em; }
  .hero-lead { margin-top: 20px; max-width: 100%; font-size: .88rem; line-height: 1.72; }
  .hero-actions { margin-top: 24px; display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 9px; }
  .hero-actions .button { width: 100%; min-width: 0; padding-inline: 12px; white-space: nowrap; }
  .hero-facts {
    margin-top: 24px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0,1fr));
    gap: 7px;
  }
  .hero-facts div,
  .hero-facts div + div {
    min-width: 0;
    padding: 11px 8px;
    border: 1px solid rgba(231,195,118,.13);
    border-radius: 14px;
    background: rgba(255,255,255,.035);
  }
  .hero-facts div + div { border-left: 1px solid rgba(231,195,118,.13); }
  .hero-facts dt { font-size: 1.3rem; }
  .hero-facts dd { margin-top: 2px; font-size: .58rem; line-height: 1.34; }
  .hero-visual { min-height: 430px; margin-top: -2px; }
  .hero-character { width: min(96vw, 410px); max-width: none; bottom: -10px; }
  .hero-character-halo { width: 330px; height: 330px; top: 16%; }
  .savori-card { width: 100%; left: 0; bottom: 0; padding: 14px; border-radius: 18px; }
  .savori-card-head { gap: 10px; }
  .savori-avatar { width: 36px; height: 36px; }
  .savori-card-head strong { font-size: .83rem; }
  .savori-card-head small { font-size: .5rem; }
  .savori-card > p { min-height: 38px; margin: 10px 0 10px; font-size: .78rem; line-height: 1.5; }
  .prompt-options { gap: 6px; }
  .prompt-options button { min-height: 34px; padding: 6px 8px; font-size: .61rem; }

  .brand-transition,
  .real-art,
  .experience,
  .savori-section,
  .connection,
  .store-section { padding: 76px 0; }
  .faq { padding: 74px 0 82px; }
  .journey { padding: 76px 0 86px; }

  .section-heading.split { gap: 18px; }
  .brand-map { margin-top: 34px; gap: 12px; }
  .brand-map-card,
  .brand-map-card.platform { min-height: 0; padding: 22px 20px; border-radius: 18px; }
  .brand-map-card h3 { font-size: 1.72rem; }
  .brand-map-card p:last-child { margin-top: 12px; font-size: .82rem; line-height: 1.65; }
  .brand-map-arrow { height: 28px; }
  .philosophy-band { margin-top: 38px; padding-top: 28px; gap: 10px; }
  .philosophy-band blockquote { font-size: 1.32rem; line-height: 1.52; }

  .real-art-grid { gap: 38px; }
  .check-list { margin-top: 25px; }
  .check-list li { padding: 11px 0; font-size: .82rem; }
  .art-collage { min-height: 390px; }
  .collage-main { width: 76%; height: 72%; top: 11%; }
  .collage-small { width: 42%; height: 30%; }
  .collage-number { width: 106px; height: 106px; left: 31%; bottom: 5%; }
  .collage-number strong { font-size: 1.62rem; }

  /* Swipeable, app-like experience deck */
  .experience-grid {
    width: calc(100% + 14px);
    margin-top: 34px;
    margin-right: -14px;
    padding: 0 14px 12px 0;
    display: flex;
    gap: 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    overscroll-behavior-inline: contain;
    -webkit-overflow-scrolling: touch;
  }
  .experience-grid::-webkit-scrollbar { display: none; }
  .experience-card {
    flex: 0 0 min(82vw, 310px);
    min-height: 248px;
    padding: 22px 20px;
    scroll-snap-align: start;
    border-radius: 19px;
  }
  .experience-icon { width: 48px; height: 48px; }
  .experience-card h3 { margin-top: 24px; font-size: 1.48rem; }
  .experience-card p { margin-top: 10px; font-size: .81rem; line-height: 1.63; }
  .experience-action { left: 20px; right: 20px; bottom: 18px; font-size: .7rem; }

  .savori-layout { gap: 42px; }
  .portrait-frame { height: 430px; min-height: 0; border-radius: 132px 132px 18px 18px; }
  .portrait-frame img { object-position: center 18%; }
  .portrait-caption { right: 0; bottom: 17px; width: 174px; padding: 16px; }
  .portrait-caption span { font-size: .55rem; }
  .portrait-caption strong { margin-top: 7px; font-size: 1rem; }
  .savori-tabs { gap: 6px; }
  .savori-tabs button { min-height: 40px; padding: 8px; font-size: .68rem; }
  .savori-tab-panel { min-height: 210px; padding: 23px 20px; }
  .savori-tab-panel blockquote { margin-top: 16px; font-size: 1.3rem; line-height: 1.43; }
  .savori-tab-panel p { margin-top: 14px; font-size: .8rem; }

  .connection-stage { margin-top: 36px; min-height: 0; }
  .connection-image { min-height: 280px; }
  .connection-image > p { left: 22px; bottom: 18px; font-size: 1.45rem; }
  .connection-cards article { padding: 23px 22px; }
  .connection-cards h3 { font-size: 1.35rem; }
  .connection-cards p { margin-top: 8px; font-size: .79rem; line-height: 1.62; }

  .journey-steps { margin-top: 34px; grid-template-columns: repeat(5, 150px); padding-bottom: 8px; }
  .journey-steps::before { left: 75px; right: 75px; top: 31px; }
  .journey-steps li { padding-inline: 10px; }
  .journey-steps li > span { width: 62px; height: 62px; font-size: .94rem; }
  .journey-steps strong { margin-top: 15px; font-size: 1rem; }
  .journey-steps p { margin-top: 7px; font-size: .68rem; }

  .store-layout { gap: 34px; }
  .store-copy .button { margin-top: 24px; }
  .store-copy .store-note { margin-top: 12px; font-size: .68rem; }
  .store-visual { min-height: 380px; }
  .store-device { width: min(300px, 82%); max-height: 385px; border-width: 7px; border-radius: 28px; }
  .store-device img { max-height: 370px; border-radius: 21px; }
  .store-seal { width: 92px; height: 92px; bottom: 5%; border-width: 5px; }
  .store-seal strong { font-size: 1.65rem; }
  .store-seal span { font-size: .4rem; }

  .faq-layout { gap: 32px; }
  .accordion-item > button { min-height: 66px; font-size: .96rem; line-height: 1.38; }
  .accordion-item.is-open .accordion-panel > p { padding: 0 38px 21px 4px; font-size: .82rem; line-height: 1.68; }

  .closing { min-height: 420px; }
  .closing-inner { padding: 70px 0; }
  .closing-inner > p { margin-bottom: 17px; font-size: .58rem; }
  .closing-inner h2 { font-size: clamp(2.25rem, 10vw, 3.05rem); line-height: 1.18; }
  .closing-actions { margin-top: 28px; display: grid; grid-template-columns: 1fr 1fr; gap: 9px; }

  .site-footer { padding: 52px 0 calc(26px + var(--safe-bottom)); }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-intro { gap: 20px; }
  .footer-brand strong { font-size: 1.35rem; }
  .footer-description p { font-size: .76rem; }
  .footer-description .footer-operator { font-size: .68rem; }
  .business-disclosure summary { min-height: 58px; }
  .business-disclosure summary span { font-size: 1.02rem; }
  .business-disclosure summary small { display: none; }
  .business-grid { padding-bottom: 20px; }
  .business-grid dl { grid-template-columns: 1fr; }
  .business-grid dl > div,
  .business-grid dl > div:nth-child(-n+2),
  .business-grid .business-wide {
    grid-column: auto;
    grid-template-columns: 104px minmax(0,1fr);
    gap: 12px;
    padding: 10px 0;
    border-top: 1px solid rgba(255,255,255,.06);
  }
  .business-grid dl > div:first-child { border-top: 0; }
  .business-grid dt { font-size: .65rem; }
  .business-grid dd { font-size: .69rem; }
  .footer-bottom { padding-top: 20px; align-items: flex-start; flex-direction: column; gap: 12px; }
  .footer-bottom > div { width: 100%; justify-content: space-between; }

  .mobile-tabbar {
    position: fixed;
    z-index: 980;
    right: max(8px, var(--safe-right));
    bottom: max(8px, var(--safe-bottom));
    left: max(8px, var(--safe-left));
    height: var(--mobile-tabbar-height);
    padding: 6px 8px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0,1fr));
    border: 1px solid rgba(231,195,118,.18);
    border-radius: 20px;
    background: rgba(2,20,15,.94);
    box-shadow: 0 18px 50px rgba(0,0,0,.34);
    backdrop-filter: blur(22px);
  }
  .mobile-tabbar a {
    min-width: 0;
    min-height: 52px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    color: rgba(255,255,255,.52);
    border-radius: 14px;
    font-size: .58rem;
    font-weight: 800;
  }
  .mobile-tabbar a.is-active { color: var(--green-950); background: var(--gold-400); }
  .mobile-tabbar .tab-icon { height: 21px; display: grid; place-items: center; font-size: 1.15rem; line-height: 1; }
  .mobile-tabbar .tab-s { font-family: var(--serif); font-weight: 700; }
  .back-to-top { right: 17px; bottom: calc(var(--mobile-tabbar-height) + var(--safe-bottom) + 20px); width: 42px; height: 42px; }
}

@media (max-width: 380px) {
  :root { --shell: calc(100% - 24px); }
  .brand-copy small { display: none; }
  .hero h1 { font-size: clamp(2.55rem, 12.8vw, 3rem); }
  .hero-actions,
  .closing-actions { grid-template-columns: 1fr; }
  .hero-visual { min-height: 412px; }
  .hero-character { width: min(104vw, 390px); }
  .experience-card { flex-basis: 84vw; }
  .business-grid dl > div,
  .business-grid .business-wide { grid-template-columns: 94px minmax(0,1fr); }
}

@media (display-mode: standalone) and (max-width: 720px) {
  .site-header { top: var(--safe-top); }
  .hero-inner { padding-top: calc(var(--header-height) + var(--safe-top) + 28px); }
  .mobile-menu { top: var(--safe-top); }
  .site-footer { padding-bottom: calc(30px + var(--safe-bottom)); }
}

@media (hover: none) and (pointer: coarse) {
  .button:hover,
  .brand-map-card:hover,
  .experience-card:hover,
  .connection-cards article:hover,
  .journey-steps li:hover > span { transform: none; }
}

@media (max-width: 720px) {
  .mobile-menu { z-index: 900; }
  body.menu-open .mobile-tabbar { opacity: 0; pointer-events: none; transform: translateY(12px); }
  .mobile-tabbar { transition: opacity .2s ease, transform .2s ease; }
}

/* SavorIP compact business footer 2026-08-21 */
.business-disclosure:not([open]) .business-grid { display: none; }
@media (max-width: 760px) {
  .site-footer { padding-top: 38px; }
  .footer-inner { gap: 24px; }
  .business-disclosure summary { min-height: 54px; }
  .business-disclosure summary span { font-size: .94rem; }
  .business-grid { padding-bottom: 16px; }
}
