:root {
  --font-hei: "SimHei", "Heiti SC", "STHeiti", "Microsoft YaHei", "Noto Sans SC", sans-serif;
  --font-deng: "DengXian", "等线", "Microsoft YaHei", "PingFang SC", "Noto Sans SC", sans-serif;
  --ink: #1a0f24;
  --plum: #4a2a6a;
  --violet: #6b3d8f;
  --lilac: #a78bc4;
  --mist: #e8dff2;
  --cream: #f7f2fb;
  --gold: #c4a35a;
  --gold-soft: #e8d5a3;
  --white: #fffdfb;
  --muted: rgba(26, 15, 36, 0.62);
  --line: rgba(107, 61, 143, 0.18);
  --shadow: 0 24px 60px rgba(45, 18, 72, 0.18);
  --radius: 2px;
  --max: 1120px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-deng); font-weight: 400;
  color: var(--ink);
  background:
    radial-gradient(1200px 700px at 12% -10%, rgba(167, 139, 196, 0.35), transparent 55%),
    radial-gradient(900px 600px at 100% 8%, rgba(196, 163, 90, 0.12), transparent 50%),
    linear-gradient(180deg, #f4eef9 0%, var(--cream) 35%, #f9f5fc 100%);
  line-height: 1.65;
  overflow-x: hidden;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
}
main { flex: 1; }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; }

.wrap {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

/* —— Nav —— */
.nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 40;
  padding: 1.1rem 0;
  transition: background 0.4s var(--ease), backdrop-filter 0.4s, border-color 0.4s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled,
.nav.solid {
  background: rgba(247, 242, 251, 0.86);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.brand {
  font-family: var(--font-hei);
  font-weight: 900;
  font-size: 1.15rem;
  letter-spacing: 0.08em;
  color: var(--plum);
  white-space: nowrap;
}
.brand span {
  font-family: var(--font-deng);
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.02em;
  color: var(--lilac);
  margin-left: 0.45rem;
  font-size: 1rem;
}
.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.15rem;
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--muted);
  justify-content: center;
}
.nav-links a:hover,
.nav-links a.active { color: var(--plum); }
.nav-cta {
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 1.1rem;
  background: var(--plum);
  color: var(--white);
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  transition: transform 0.35s var(--ease), background 0.25s;
  white-space: nowrap;
}
.nav-cta:hover { background: var(--violet); transform: translateY(-1px); }

.lang-switch {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.2rem;
  padding: 0.2rem;
  border: 1px solid var(--line);
  background: rgba(255, 253, 251, 0.55);
  max-width: min(100%, 28rem);
}
.lang-btn {
  padding: 0.35rem 0.6rem;
  font-size: 0.7rem;
  letter-spacing: 0.02em;
  color: var(--muted);
  transition: color 0.25s, background 0.25s;
  white-space: nowrap;
}
.lang-btn:hover { color: var(--plum); }
.lang-btn.active {
  background: var(--plum);
  color: var(--white);
}
.nav:not(.scrolled):not(.solid) .lang-switch {
  border-color: rgba(255, 253, 251, 0.28);
  background: rgba(26, 15, 36, 0.28);
}
.nav:not(.scrolled):not(.solid) .lang-btn { color: rgba(255, 253, 251, 0.78); }
.nav:not(.scrolled):not(.solid) .lang-btn:hover { color: var(--white); }
.nav:not(.scrolled):not(.solid) .lang-btn.active {
  background: rgba(232, 213, 163, 0.92);
  color: var(--ink);
}

/* —— Hero —— */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  padding: 6.5rem 0 2.8rem;
  isolation: isolate;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 88% 8%;
  transform: scale(1.04);
  animation: heroBreath 16s ease-in-out infinite alternate;
  filter: saturate(0.92) contrast(1.04);
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(26, 15, 36, 0.9) 0%, rgba(26, 15, 36, 0.62) 22%, rgba(26, 15, 36, 0.18) 48%, transparent 68%),
    linear-gradient(90deg, rgba(26, 15, 36, 0.45) 0%, rgba(26, 15, 36, 0.12) 28%, transparent 52%),
    radial-gradient(ellipse 38% 34% at 82% 22%, rgba(232, 213, 163, 0.1), transparent 65%);
  pointer-events: none;
}
@keyframes heroBreath {
  from { transform: scale(1.04); }
  to { transform: scale(1.08); }
}

.hero-copy {
  max-width: 30rem;
  color: var(--white);
  text-align: left;
  padding: 0;
  background: none;
  border: 0;
  box-shadow: none;
  opacity: 0;
  transform: translateY(28px);
  animation: riseIn 1.1s var(--ease) 0.15s forwards;
}
@keyframes riseIn {
  to { opacity: 1; transform: none; }
}
.hero-brand {
  margin-bottom: 0.55rem;
}
.hero-brand em {
  display: block;
  font-family: var(--font-deng);
  font-style: normal;
  font-weight: 400;
  font-size: clamp(0.85rem, 1.6vw, 1.05rem);
  letter-spacing: 0.18em;
  color: var(--gold-soft);
  text-shadow: 0 2px 24px rgba(18, 8, 28, 0.45);
}
.hero h1 {
  font-family: var(--font-hei);
  font-size: clamp(1.15rem, 2.6vw, 1.55rem);
  font-weight: 700;
  line-height: 1.45;
  margin-bottom: 0.65rem;
  max-width: 18em;
  text-shadow: 0 2px 18px rgba(18, 8, 28, 0.4);
}
.hero p {
  font-weight: 300;
  font-size: 0.98rem;
  color: rgba(255, 253, 251, 0.86);
  max-width: 28em;
  margin-bottom: 1.35rem;
  text-shadow: 0 1px 14px rgba(18, 8, 28, 0.35);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

/* —— Page hero (inner pages) —— */
.page-hero {
  padding: 8.5rem 0 3.2rem;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(167, 139, 196, 0.16), transparent 70%);
}
.page-hero .eyebrow { margin-bottom: 0.4rem; }
.page-hero h1 {
  font-family: var(--font-hei);
  font-size: clamp(2rem, 4.5vw, 2.9rem);
  font-weight: 900;
  color: var(--plum);
  line-height: 1.25;
  margin-bottom: 0.85rem;
  max-width: 16em;
}
.page-hero .lead {
  color: var(--muted);
  font-weight: 300;
  font-size: 1.08rem;
  max-width: 34em;
}
.crumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  align-items: center;
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 1.1rem;
}
.crumb a:hover { color: var(--plum); }
.crumb span { opacity: 0.45; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.45rem;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  transition: transform 0.35s var(--ease), background 0.25s, color 0.25s, border-color 0.25s;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--gold);
  color: var(--ink);
}
.btn-primary:hover { background: var(--gold-soft); }
.btn-ghost {
  border: 1px solid rgba(255, 253, 251, 0.45);
  color: var(--white);
}
.btn-ghost:hover {
  border-color: var(--white);
  background: rgba(255, 253, 251, 0.08);
}
.btn-outline {
  border: 1px solid var(--line);
  color: var(--plum);
  background: rgba(255, 253, 251, 0.55);
}
.btn-outline:hover {
  border-color: var(--plum);
  background: var(--white);
}

/* —— Sections —— */
section { padding: 5.5rem 0; }
.section-pad { padding: 4.5rem 0; }
.eyebrow {
  font-family: var(--font-deng);
  font-style: normal;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--violet);
  letter-spacing: 0.04em;
  margin-bottom: 0.55rem;
}
.section-title {
  font-family: var(--font-hei);
  font-size: clamp(1.7rem, 3.5vw, 2.35rem);
  font-weight: 900;
  color: var(--plum);
  line-height: 1.3;
  margin-bottom: 0.75rem;
}
.section-lead {
  color: var(--muted);
  max-width: 36rem;
  font-size: 1.05rem;
  font-weight: 300;
}

/* —— Category hub buttons —— */
.hub {
  padding: 4.5rem 0 5.5rem;
}
.hub-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
  margin-top: 2.4rem;
}
.hub-btn {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 1.4rem;
  min-height: 11.5rem;
  padding: 1.7rem 1.55rem;
  text-align: center;
  background: rgba(255, 253, 251, 0.62);
  border: 1px solid var(--line);
  transition: transform 0.4s var(--ease), background 0.35s, border-color 0.35s, box-shadow 0.4s;
}
.hub-btn:hover {
  transform: translateY(-4px);
  background: var(--white);
  border-color: rgba(107, 61, 143, 0.35);
  box-shadow: var(--shadow);
}
.hub-btn .tag {
  font-family: var(--font-deng);
  font-style: normal;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gold);
}
.hub-btn h3 {
  font-family: var(--font-hei);
  font-size: 1.45rem;
  font-weight: 900;
  color: var(--plum);
  margin: 0.35rem 0 0.5rem;
}
.hub-btn p {
  color: var(--muted);
  font-weight: 300;
  font-size: 0.95rem;
  flex: 1;
}
.hub-btn .go {
  font-size: 0.88rem;
  color: var(--violet);
  letter-spacing: 0.04em;
}
.hub-btn.wide { grid-column: span 2; }
.hub-btn.accent {
  background: var(--plum);
  border-color: transparent;
  color: var(--white);
}
.hub-btn.accent .tag { color: var(--gold-soft); }
.hub-btn.accent h3 { color: var(--white); }
.hub-btn.accent p { color: rgba(255, 253, 251, 0.78); }
.hub-btn.accent .go { color: var(--gold-soft); }
.hub-btn.accent:hover {
  background: var(--violet);
  border-color: transparent;
}

/* —— Feeling —— */
.feeling-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 3.2rem;
  align-items: center;
  margin-top: 2.5rem;
}
.feeling-portrait {
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 3 / 4;
  background: var(--plum);
}
.feeling-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
  transition: transform 1.2s var(--ease);
}
.feeling-portrait:hover img { transform: scale(1.03); }
.feeling-portrait figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 2.4rem 1.4rem 1.3rem;
  background: linear-gradient(to top, rgba(26, 15, 36, 0.82), transparent);
  color: var(--white);
  font-family: var(--font-hei);
  font-size: 1.05rem;
  letter-spacing: 0.08em;
}
.feeling-portrait figcaption span {
  display: block;
  margin-top: 0.25rem;
  font-family: var(--font-deng);
  font-style: normal;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  color: var(--gold-soft);
  opacity: 0.9;
}
.feeling-quote {
  font-family: var(--font-hei);
  font-weight: 700;
  font-size: clamp(1.25rem, 2.5vw, 1.65rem);
  line-height: 1.7;
  color: var(--plum);
  position: relative;
  padding-left: 1.4rem;
  border-left: 2px solid var(--gold);
}
.feeling-quote cite {
  display: block;
  margin-top: 1.2rem;
  font-family: var(--font-deng);
  font-style: normal;
  font-size: 0.92rem;
  color: var(--muted);
  font-weight: 300;
}
.feeling-note {
  margin-top: 1.6rem;
  color: var(--muted);
  font-weight: 300;
  font-size: 1rem;
  max-width: 30em;
}

/* —— Categories —— */
.cats {
  background:
    linear-gradient(180deg, transparent, rgba(167, 139, 196, 0.12) 20%, rgba(167, 139, 196, 0.08) 80%, transparent);
}
.cat-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2.8rem;
}
.cat {
  display: block;
  padding: 2.2rem 2rem;
  border-top: 1px solid var(--line);
  transition: background 0.4s var(--ease), transform 0.35s var(--ease);
}
.cat:hover { background: rgba(255, 253, 251, 0.55); transform: translateY(-2px); }
.cat-label {
  font-family: var(--font-deng);
  font-style: normal;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gold);
  margin-bottom: 0.4rem;
}
.cat h3 {
  font-family: var(--font-hei);
  font-size: 1.55rem;
  font-weight: 900;
  color: var(--plum);
  margin-bottom: 0.65rem;
}
.cat p { color: var(--muted); font-weight: 300; max-width: 28em; }
.cat .go {
  display: inline-block;
  margin-top: 1.1rem;
  font-size: 0.9rem;
  color: var(--violet);
  letter-spacing: 0.03em;
}

/* —— Offerings —— */
.offer-head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: end;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
.offer-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}
.offer {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr) auto;
  gap: 1.5rem;
  align-items: center;
  padding: 1.85rem 0;
  border-bottom: 1px solid var(--line);
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease), background 0.3s;
  color: inherit;
}
.offer.in { opacity: 1; transform: none; }
a.offer:hover { background: rgba(255, 253, 251, 0.45); }
.offer h3 {
  font-family: var(--font-hei);
  font-weight: 900;
  font-size: 1.25rem;
  color: var(--plum);
  margin-bottom: 0.35rem;
}
.offer .meta {
  font-size: 0.88rem;
  color: var(--lilac);
  letter-spacing: 0.03em;
  margin-bottom: 0.45rem;
}
.offer p {
  color: var(--muted);
  font-weight: 300;
  font-size: 0.98rem;
}
.offer-note {
  color: var(--muted);
  font-weight: 300;
  font-size: 0.95rem;
}
.price {
  font-family: var(--font-hei);
  font-weight: 900;
  font-size: 1.85rem;
  color: var(--plum);
  white-space: nowrap;
  text-align: right;
}
.price small {
  display: block;
  font-family: var(--font-deng);
  font-size: 0.75rem;
  color: var(--muted);
  letter-spacing: 0.04em;
  margin-top: 0.15rem;
}

/* —— Detail body —— */
.detail {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2.5rem;
  align-items: start;
}
.detail-body p {
  color: var(--muted);
  font-weight: 300;
  font-size: 1.05rem;
  margin-bottom: 1.1rem;
  max-width: 36em;
}
.detail-body h2 {
  font-family: var(--font-hei);
  font-weight: 900;
  font-size: 1.45rem;
  color: var(--plum);
  margin: 1.8rem 0 0.7rem;
}
.detail-side {
  padding: 2rem;
  background: rgba(255, 253, 251, 0.72);
  border: 1px solid var(--line);
  position: sticky;
  top: 5.5rem;
}
.detail-side .price {
  text-align: left;
  margin: 0.4rem 0 1.2rem;
}
.detail-side .meta {
  color: var(--lilac);
  font-size: 0.9rem;
  margin-bottom: 0.35rem;
}
.detail-side h3 {
  font-family: var(--font-hei);
  font-weight: 900;
  font-size: 1.35rem;
  color: var(--plum);
}
.detail-side .actions {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  margin-top: 1.4rem;
}
.detail-side .actions .btn { width: 100%; }

.detail-visual {
  margin-bottom: 2.5rem;
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 16 / 9;
  background: var(--ink);
}
.detail-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.offer-with-media {
  grid-template-columns: 7.5rem minmax(0, 1.4fr) minmax(0, 1fr) auto;
  align-items: center;
}
.offer-thumb {
  width: 7.5rem;
  height: 7.5rem;
  overflow: hidden;
  background: var(--ink);
  flex-shrink: 0;
}
.offer-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hub-btn.has-media {
  padding: 0;
  overflow: hidden;
  min-height: 0;
  align-items: stretch;
}
.hub-btn.has-media .hub-media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--ink);
}
.hub-btn.has-media .hub-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease);
}
.hub-btn.has-media:hover .hub-media img { transform: scale(1.04); }
.hub-btn.has-media .hub-copy {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 1.2rem;
  padding: 1.45rem 1.35rem 1.55rem;
  text-align: center;
  flex: 1;
}
.hub-btn.has-media.accent .hub-copy {
  background: var(--plum);
}
.hub-btn.has-media.accent:hover .hub-copy {
  background: var(--violet);
}

/* —— Ritual —— */
.ritual-band {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  min-height: 420px;
  background: var(--ink);
  color: var(--white);
  box-shadow: var(--shadow);
}
.ritual-visual {
  position: relative;
  background: var(--ink);
  overflow: hidden;
  min-height: 320px;
}
.ritual-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  position: absolute;
  inset: 0;
}
.ritual-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 55%, rgba(26, 15, 36, 0.35) 100%);
  pointer-events: none;
  z-index: 1;
}
.ritual-mark {
  display: none;
}
.ritual-copy {
  padding: clamp(2rem, 5vw, 3.5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.ritual-copy .eyebrow { color: var(--gold-soft); }
.ritual-copy .section-title { color: var(--white); }
.ritual-copy .section-lead { color: rgba(255, 253, 251, 0.72); }
.lang-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.6rem;
}
.lang-pill {
  padding: 0.45rem 0.9rem;
  border: 1px solid rgba(232, 213, 163, 0.35);
  color: var(--gold-soft);
  font-size: 0.88rem;
  letter-spacing: 0.04em;
}

/* —— Path —— */
.path-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2.8rem;
  counter-reset: step;
}
.step {
  position: relative;
  padding-top: 2.4rem;
}
.step::before {
  counter-increment: step;
  content: "0" counter(step);
  position: absolute;
  top: 0;
  left: 0;
  font-family: var(--font-deng);
  font-size: 1.35rem;
  color: var(--gold);
  letter-spacing: 0.08em;
}
.step h3 {
  font-family: var(--font-hei);
  font-weight: 900;
  font-size: 1.2rem;
  color: var(--plum);
  margin-bottom: 0.5rem;
}
.step p { color: var(--muted); font-weight: 300; font-size: 0.98rem; }

/* —— Contact —— */
.contact { padding-bottom: 6rem; }
.contact-box {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.5rem;
  align-items: stretch;
  padding: 2.8rem;
  background:
    linear-gradient(135deg, rgba(255, 253, 251, 0.9), rgba(232, 223, 242, 0.65));
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.contact-box h2 {
  font-family: var(--font-hei);
  font-weight: 900;
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  color: var(--plum);
  margin-bottom: 0.8rem;
}
.contact-box > div > p {
  color: var(--muted);
  font-weight: 300;
  margin-bottom: 1.5rem;
  max-width: 28em;
}
.facts { display: grid; gap: 0.85rem; }
.fact {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--line);
  font-size: 0.95rem;
}
.fact dt { color: var(--muted); font-weight: 300; }
.fact dd {
  font-family: var(--font-hei);
  color: var(--plum);
  text-align: right;
}
.contact-side {
  background: var(--plum);
  color: var(--white);
  padding: 2.2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 2rem;
}
.contact-side h3 {
  font-family: var(--font-hei);
  font-weight: 900;
  font-size: 1.35rem;
  margin-bottom: 0.7rem;
}
.contact-side p {
  color: rgba(255, 253, 251, 0.78);
  font-weight: 300;
  font-size: 0.98rem;
}
.contact-side .btn-primary {
  align-self: flex-start;
  margin-top: 1.2rem;
}

/* —— Related links —— */
.related {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}
.related h3 {
  font-family: var(--font-hei);
  font-weight: 900;
  font-size: 1.15rem;
  color: var(--plum);
  margin-bottom: 1rem;
}
.related-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

/* —— Footer —— */
footer {
  padding: 2rem 0 2.5rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 300;
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}
footer .brand { font-size: 1rem; }
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-nav a:hover { color: var(--plum); }

/* —— Reveal —— */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal.in {
  opacity: 1;
  transform: none;
}

/* —— Mobile —— */
.menu-btn {
  display: none;
  width: 2.4rem;
  height: 2.4rem;
  place-items: center;
  color: var(--plum);
}
.menu-btn span,
.menu-btn span::before,
.menu-btn span::after {
  display: block;
  width: 1.2rem;
  height: 1.5px;
  background: currentColor;
  position: relative;
}
.menu-btn span::before,
.menu-btn span::after {
  content: "";
  position: absolute;
  left: 0;
}
.menu-btn span::before { top: -5px; }
.menu-btn span::after { top: 5px; }

@media (max-width: 960px) {
  .hub-grid { grid-template-columns: 1fr 1fr; }
  .hub-btn.wide { grid-column: span 1; }
}

@media (max-width: 860px) {
  .nav-links, .nav-cta { display: none; }
  .lang-switch {
    margin-left: auto;
    max-width: min(100%, 18rem);
  }
  .lang-btn {
    font-size: 0.65rem;
    padding: 0.3rem 0.45rem;
  }
  .nav.open .nav-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(247, 242, 251, 0.96);
    backdrop-filter: blur(12px);
    padding: 1.2rem 1.25rem 1.5rem;
    border-bottom: 1px solid var(--line);
    gap: 1rem;
  }
  .nav.open .nav-cta {
    display: inline-flex;
    margin: 0.5rem 1.25rem 1.2rem;
    width: calc(100% - 2.5rem);
    justify-content: center;
  }
  .nav.open .lang-switch {
    border-color: var(--line);
    background: rgba(255, 253, 251, 0.55);
    max-width: none;
  }
  .nav.open .lang-btn { color: var(--muted); }
  .nav.open .lang-btn.active {
    background: var(--plum);
    color: var(--white);
  }
  .menu-btn { display: grid; }
  .feeling-grid,
  .cat-row,
  .ritual-band,
  .contact-box,
  .path-steps,
  .detail,
  .hub-grid {
    grid-template-columns: 1fr;
  }
  .hub-btn.wide { grid-column: span 1; }
  .feeling-portrait {
    max-width: 420px;
    margin-inline: auto;
    width: 100%;
  }
  .hero {
    padding: 5.5rem 0 1.6rem;
    align-items: end;
  }
  .hero-bg img { object-position: 70% 6%; }
  .hero-bg::after {
    background:
      linear-gradient(to top, rgba(26, 15, 36, 0.94) 0%, rgba(26, 15, 36, 0.72) 26%, rgba(26, 15, 36, 0.2) 48%, transparent 64%);
  }
  .hero-copy {
    max-width: none;
    width: 100%;
  }
  .hero h1 {
    font-size: 1.12rem;
  }
  .hero p {
    font-size: 0.92rem;
    margin-bottom: 1.1rem;
  }
  .offer,
  .offer-with-media {
    grid-template-columns: 1fr;
    gap: 0.65rem;
  }
  .offer-thumb {
    width: 100%;
    height: 11rem;
  }
  .detail-visual { aspect-ratio: 1 / 1; }
  .price { text-align: left; }
  .ritual-visual { min-height: 220px; }
  .contact-box { padding: 0; border: 0; box-shadow: none; background: none; }
  .contact-box > div:first-child {
    padding: 1.8rem;
    background: rgba(255, 253, 251, 0.75);
    border: 1px solid var(--line);
  }
  .detail-side { position: static; }
}
