:root {
  --yi-black: #15100f;
  --yi-paper: #f3ebdd;
  --yi-red: #a62a22;
  --yi-gold: #c28b18;
  --yi-green: #425147;
  --bg: var(--yi-paper);
  --bg-soft: #f8f2e8;
  --panel: #fffaf2;
  --panel-soft: #f5ede1;
  --line: rgba(84, 55, 41, 0.18);
  --line-strong: rgba(84, 55, 41, 0.28);
  --text: #1f1714;
  --muted: #64584f;
  --soft: #877664;
  --accent: var(--yi-red);
  --accent-2: var(--yi-gold);
  --accent-3: var(--yi-black);
  --shadow: 0 18px 40px rgba(21, 16, 15, 0.10);
  --shadow-soft: 0 8px 24px rgba(21, 16, 15, 0.07);
  --radius-xl: 34px;
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --container: min(1200px, calc(100vw - 48px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Inter", system-ui, sans-serif;
  background-color: var(--bg);
  background-image:
    radial-gradient(circle at top left, color-mix(in srgb, var(--yi-red) 14%, transparent), transparent 26%),
    radial-gradient(circle at top right, color-mix(in srgb, var(--yi-gold) 14%, transparent), transparent 28%),
    linear-gradient(180deg, #f5ede0 0%, var(--bg) 100%);
  color: var(--text);
}

.site-main--uk-edit {
  background: linear-gradient(180deg, rgba(255, 247, 238, 0.42) 0%, transparent 16%, transparent 100%);
}

body.admin-bar .announcement-bar { top: 32px; }
body.admin-bar .site-header { top: 76px; }
@media (max-width: 782px) {
  body.admin-bar .announcement-bar { top: 46px; }
  body.admin-bar .site-header { top: 90px; }
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, textarea { font: inherit; }

.container { width: var(--container); margin: 0 auto; }
.section {
  padding: var(--section-padding-top, 88px) 0 var(--section-padding-bottom, 88px);
  position: relative;
}
.alt-bg {
  background: linear-gradient(180deg, rgba(255, 249, 241, 0.72), rgba(255, 244, 233, 0.58));
}

.announcement-bar {
  position: sticky;
  top: 0;
  z-index: 40;
  background: color-mix(in srgb, var(--yi-paper) 92%, white 8%);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}
.announcement-inner {
  min-height: 42px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-size: 13px;
  color: var(--muted);
}
.announcement-inner a {
  color: var(--accent-3);
  font-weight: 600;
}

.site-header {
  position: sticky;
  top: 42px;
  z-index: 30;
  background: color-mix(in srgb, var(--yi-paper) 90%, white 10%);
  border-bottom: 1px solid var(--line-strong);
  backdrop-filter: blur(16px);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 80px;
  gap: 20px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.brand-logo img {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  object-fit: cover;
}
.custom-logo-link { display: inline-flex; }
.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--yi-black), var(--yi-red) 64%, var(--yi-gold) 100%);
  color: #fffdf8;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .12em;
  box-shadow: var(--shadow-soft);
}
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.08;
}
.brand-text strong {
  font-size: 16px;
  letter-spacing: .18em;
  font-weight: 700;
}
.brand-text em {
  font-style: normal;
  font-size: 11px;
  letter-spacing: .18em;
  color: var(--soft);
}
.main-nav,
.nav-actions {
  display: flex;
  align-items: center;
  gap: 22px;
}
.main-nav a,
.text-link,
.nav-actions .text-link {
  color: var(--muted);
  transition: color .2s ease;
}
.main-nav a:hover,
.text-link:hover,
.nav-actions .text-link:hover {
  color: var(--text);
}
.language-switcher {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
}
.language-switcher ul {
  display: flex;
  align-items: center;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.language-switcher a,
.language-switcher .current-lang {
  color: var(--soft);
}
.language-switcher a:hover { color: var(--text); }
.mobile-toggle {
  display: none;
  border: 0;
  background: transparent;
  color: var(--text);
  font-size: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: linear-gradient(135deg, var(--yi-black), color-mix(in srgb, var(--yi-red) 86%, black 14%));
  color: #fffdfa;
  font-weight: 600;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
  box-shadow: 0 12px 28px rgba(21, 16, 15, 0.18);
}
.button:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, color-mix(in srgb, var(--yi-black) 88%, black 12%), color-mix(in srgb, var(--yi-red) 88%, black 12%));
}
.button-outline {
  background: transparent;
  color: var(--text);
  border-color: var(--line-strong);
  box-shadow: none;
}
.button-ghost {
  background: rgba(255,255,255,.65);
  color: var(--text);
  border-color: var(--line);
  box-shadow: none;
}
.button-ghost:hover,
.button-outline:hover {
  background: rgba(255,255,255,.92);
}

.hero {
  padding-top: clamp(28px, 5vh, var(--hero-padding-top, 72px));
  padding-bottom: 32px;
  overflow: clip;
  background:
    linear-gradient(180deg, rgba(255, 248, 239, 0.86), rgba(255, 244, 233, 0.58)),
    radial-gradient(circle at 18% 14%, color-mix(in srgb, var(--yi-red) 16%, transparent), transparent 20%),
    radial-gradient(circle at 82% 16%, color-mix(in srgb, var(--yi-gold) 18%, transparent), transparent 18%);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255,255,255,.18), transparent 36%),
    radial-gradient(circle at 14% 22%, color-mix(in srgb, var(--yi-red) 12%, transparent), transparent 18%),
    radial-gradient(circle at 86% 14%, color-mix(in srgb, var(--yi-gold) 14%, transparent), transparent 16%);
  pointer-events: none;
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.04fr);
  gap: 28px;
  align-items: center;
  min-height: min(calc(100svh - 190px), 640px);
}
.eyebrow {
  margin: 0 0 16px;
  color: var(--accent);
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.hero-copy {
  max-width: 580px;
  padding-top: 4px;
}
.hero h1,
h2,
h3,
.default-title {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  line-height: .97;
  letter-spacing: .01em;
}
.hero h1 {
  font-size: clamp(40px, 4.6vw, 64px);
  max-width: min(var(--hero-title-max-width, 560px), 12ch);
}
.hero-lead,
.section-head p,
.text-panel p,
.chapter-copy p,
.story-band-grid p,
.journal-intro p,
.community-box p,
.newsletter-box p,
.floating-card-copy p,
.collection-card p,
.product-card p,
.journal-card p,
.default-content {
  color: var(--muted);
  line-height: 1.78;
  font-size: 16px;
}
.hero-lead {
  max-width: 560px;
  margin: 18px 0 22px;
  font-size: 16px;
  line-height: 1.66;
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.hero-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}
.hero-notes span,
.story-pills span {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,250,242,.82);
  border: 1px solid var(--line);
  color: var(--soft);
  font-size: 12px;
  letter-spacing: .04em;
}

.hero-carousel {
  position: relative;
  width: 100%;
}
.hero-carousel-track {
  position: relative;
  min-height: 520px;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateX(28px);
  transition: opacity .45s ease, transform .45s ease, visibility .45s ease;
  pointer-events: none;
}
.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  pointer-events: auto;
}
.hero-slide .card-art {
  min-height: 300px;
}
.hero-slide-copy {
  padding: 22px 24px 24px;
}
.hero-slide h3 {
  font-size: clamp(30px, 3.2vw, 46px);
}
.hero-carousel-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 18px;
}
.hero-carousel-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex: 1;
}
.hero-dot,
.hero-arrow {
  border: 1px solid var(--line-strong);
  background: rgba(255,250,242,.9);
  color: var(--text);
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.hero-dot:hover,
.hero-dot.is-active,
.hero-arrow:hover {
  background: rgba(255,255,255,.98);
  border-color: rgba(84, 55, 41, 0.32);
}
.hero-dot {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  padding: 0;
}
.hero-dot.is-active {
  transform: scale(1.12);
  background: var(--accent);
}
.hero-arrow {
  width: 46px;
  height: 46px;
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  font-size: 18px;
  cursor: pointer;
}

.floating-card,
.collection-card,
.product-card,
.journal-card,
.story-band-grid,
.section-head,
.newsletter-box,
.community-box,
.default-article {
  background: rgba(255,250,242,.82);
  border: 1px solid var(--line-strong);
  box-shadow: var(--shadow);
  backdrop-filter: blur(8px);
}
.floating-card,
.collection-card,
.product-card,
.journal-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.floating-card-copy { padding: 18px 20px 20px; }
.mini-label {
  display: inline-block;
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.floating-card h3,
.collection-card h3,
.product-card h3,
.journal-card h3 {
  font-size: clamp(24px, 2.4vw, 34px);
  margin-bottom: 8px;
}
.card-art,
.collection-art,
.product-art,
.image-panel-inner,
.stack-panel {
  position: relative;
  min-height: 240px;
  overflow: hidden;
}
.card-small .card-art { min-height: 120px; }

.art-fire,
.panel-one,
.origin-scene {
  background:
    radial-gradient(circle at 30% 22%, rgba(234, 201, 168,.55), transparent 20%),
    radial-gradient(circle at 72% 34%, rgba(166, 112, 82,.42), transparent 24%),
    linear-gradient(135deg, color-mix(in srgb, var(--yi-gold) 35%, white 65%) 0%, color-mix(in srgb, var(--yi-red) 42%, white 58%) 42%, color-mix(in srgb, var(--yi-paper) 92%, white 8%) 100%);
}
.art-weave,
.panel-two,
.product-art.weave {
  background:
    linear-gradient(45deg, rgba(255,255,255,.22) 25%, transparent 25%),
    linear-gradient(-45deg, rgba(255,255,255,.22) 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, rgba(255,255,255,.22) 75%),
    linear-gradient(-45deg, transparent 75%, rgba(255,255,255,.22) 75%),
    linear-gradient(135deg, color-mix(in srgb, var(--yi-gold) 25%, white 75%), color-mix(in srgb, var(--yi-black) 22%, var(--yi-red) 78%));
  background-size: 28px 28px, 28px 28px, 28px 28px, 28px 28px, auto;
  background-position: 0 0, 0 14px, 14px -14px, -14px 0, 0 0;
}
.art-night,
.panel-three,
.product-art.night {
  background:
    radial-gradient(circle at 72% 20%, rgba(255,243,224,.44), transparent 10%),
    radial-gradient(circle at 28% 72%, rgba(255,255,255,.18), transparent 14%),
    linear-gradient(135deg, color-mix(in srgb, var(--yi-green) 68%, white 32%), var(--yi-black) 62%, color-mix(in srgb, var(--yi-gold) 30%, white 70%));
}
.art-silver,
.product-art.silver {
  background:
    radial-gradient(circle at 38% 24%, rgba(255,255,255,.45), transparent 18%),
    linear-gradient(135deg, color-mix(in srgb, var(--yi-paper) 82%, white 18%), color-mix(in srgb, var(--yi-black) 18%, white 82%) 45%, color-mix(in srgb, var(--yi-paper) 92%, var(--yi-gold) 8%) 100%);
}
.product-art.fire,
.collection-art.art-fire {
  background: linear-gradient(135deg, color-mix(in srgb, var(--yi-gold) 42%, white 58%), color-mix(in srgb, var(--yi-red) 68%, white 32%) 48%, color-mix(in srgb, var(--yi-paper) 88%, white 12%) 100%);
}
.product-art.gift {
  background:
    linear-gradient(135deg, rgba(255,255,255,.2), rgba(255,255,255,.04)),
    linear-gradient(135deg, color-mix(in srgb, var(--yi-paper) 70%, var(--yi-gold) 30%), color-mix(in srgb, var(--yi-red) 58%, white 42%) 48%, color-mix(in srgb, var(--yi-paper) 90%, white 10%));
}
.card-art,
.collection-art,
.product-art,
.stack-panel,
.image-panel-inner,
.has-custom-image,
.has-product-image {
  background-repeat: no-repeat;
}

.story-band {
  padding-top: 28px;
}
.story-band-grid,
.section-head,
.newsletter-box,
.community-box,
.default-article {
  border-radius: var(--radius-xl);
  padding: 34px;
}
.story-band-grid {
  display: grid;
  grid-template-columns: 1.04fr .96fr;
  gap: 26px;
}
.story-band-copy {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.story-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.story-band-grid h2,
.section-head h2,
.text-panel h2,
.chapter-copy h2,
.journal-intro h2,
.community-box h2,
.newsletter-box h2,
.default-title {
  font-size: clamp(34px, 4.5vw, 58px);
  margin-bottom: 16px;
}

.split-grid,
.chapter-grid,
.journal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: center;
}
.image-panel-inner {
  min-height: var(--origin-media-height, 620px);
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.scene-tag {
  position: absolute;
  top: 20px;
  left: 20px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,250,242,.82);
  border: 1px solid var(--line-strong);
  color: var(--text);
  font-size: 12px;
  letter-spacing: .04em;
}
.text-panel { padding-right: 12px; }
.more-link {
  display: inline-flex;
  margin-top: 10px;
  color: var(--accent-3);
  font-weight: 600;
}

.collection-grid,
.product-grid {
  display: grid;
  gap: 20px;
  margin-top: 30px;
}
.collection-grid {
  grid-template-columns: repeat(var(--collection-columns-desktop, 4), 1fr);
}
.product-grid {
  grid-template-columns: repeat(var(--product-columns-desktop, 4), 1fr);
}
.collection-card,
.product-card,
.journal-card {
  min-height: 100%;
}
.collection-card > *,
.product-card > *,
.journal-card > * {
  padding-inline: 22px;
}
.collection-art,
.product-art {
  min-height: 260px;
  padding-inline: 0;
}
.collection-card .mini-label,
.product-card .mini-label,
.journal-card .mini-label {
  margin-top: 18px;
}
.collection-card p,
.product-card p,
.journal-card p {
  margin-bottom: 20px;
}
.collection-card a,
.product-card .product-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
  color: var(--accent-3);
  font-weight: 600;
}
.product-meta strong {
  font-size: 18px;
  color: var(--text);
}
.product-meta a { color: var(--accent-3); }

.chapter-stack {
  position: relative;
  height: var(--chapter-stack-height, 520px);
}
.stack-panel {
  position: absolute;
  inset: 0;
  border-radius: 30px;
  border: 1px solid var(--line-strong);
  box-shadow: var(--shadow);
}
.panel-one { transform: rotate(-6deg) translateY(20px); }
.panel-two { transform: rotate(6deg) translateX(10px); opacity: .88; }
.panel-three { transform: translate(40px, 60px); opacity: .75; }

.journal-grid { align-items: start; }
.journal-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
.journal-card {
  padding-bottom: 6px;
}
.journal-card h3 {
  font-size: 34px;
  margin-bottom: 12px;
}

.community-box {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 24px;
  align-items: center;
}
.community-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.community-stats div {
  background: rgba(255,248,238,.82);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 22px 18px;
}
.community-stats strong {
  display: block;
  font-size: clamp(24px, 2.8vw, 42px);
  font-family: "Cormorant Garamond", Georgia, serif;
  color: var(--accent-3);
}
.community-stats span {
  color: var(--muted);
  font-size: 13px;
  letter-spacing: .04em;
}

.newsletter-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.newsletter-form {
  display: flex;
  gap: 12px;
  min-width: min(100%, 480px);
}
.newsletter-form input {
  flex: 1;
  min-height: 54px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  background: rgba(255,250,242,.88);
  color: var(--text);
  padding: 0 18px;
  outline: none;
}
.newsletter-form input::placeholder { color: var(--soft); }

.site-footer {
  padding: 36px 0 56px;
  border-top: 1px solid var(--line-strong);
  background: rgba(255,248,238,.42);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr .8fr .8fr;
  gap: 22px;
}
.footer-grid h4 {
  margin: 0 0 16px;
  font-size: 12px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--accent);
}
.footer-grid a,
.footer-grid span,
.footer-note {
  display: block;
  color: var(--muted);
  margin-bottom: 10px;
}
.footer-brand { margin-bottom: 14px; }

.default-page { padding-top: 32px; }
.default-content > *:first-child { margin-top: 0; }
.default-content a { color: var(--accent-3); }

.layout-reverse > :first-child { order: 2; }
.layout-reverse > :last-child { order: 1; }

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1100px) {
  .collection-grid,
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero-grid,
  .story-band-grid,
  .split-grid,
  .chapter-grid,
  .journal-grid,
  .community-box,
  .footer-grid,
  .newsletter-box {
    grid-template-columns: 1fr;
  }
  .hero-grid {
    min-height: auto;
    align-items: start;
  }
  .hero-copy { max-width: 100%; }
  .newsletter-box { display: grid; }
}

@media (max-width: 980px) {
  .language-switcher {
    order: 4;
    width: 100%;
    justify-content: flex-end;
  }
}

@media (max-width: 860px) {
  .site-header { top: 42px; }
  .mobile-toggle { display: inline-block; }
  .main-nav,
  .nav-actions {
    display: none;
  }
  .site-header.is-open .main-nav,
  .site-header.is-open .nav-actions {
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 0 0 18px;
  }
  .nav-wrap {
    flex-wrap: wrap;
    align-items: center;
    padding-top: 8px;
  }
  .hero {
    padding-top: 22px;
    padding-bottom: 18px;
  }
  .hero-grid,
  .community-stats,
  .newsletter-form {
    grid-template-columns: 1fr;
  }
  .hero-carousel-track { min-height: 460px; }
  .hero-slide { transform: translateY(12px); }
  .hero-slide.is-active { transform: translateY(0); }
  .hero-slide .card-art { min-height: 220px; }
  .hero-carousel-controls { margin-top: 14px; }
  .image-panel-inner { min-height: 420px; }
  .chapter-stack { height: 360px; }
}

@media (max-width: 768px) {
  .language-switcher { justify-content: flex-start; }
}

@media (max-width: 640px) {
  :root { --container: min(1200px, calc(100vw - 24px)); }
  .section { padding: 56px 0; }
  .announcement-inner {
    min-height: 50px;
    font-size: 12px;
    flex-direction: column;
    justify-content: center;
    padding: 8px 0;
  }
  .brand-text strong { font-size: 15px; }
  .story-band-grid,
  .section-head,
  .newsletter-box,
  .community-box,
  .default-article { padding: 22px; }
  .hero { padding-top: 18px; }
  .hero h1 { font-size: 34px; max-width: 100%; }
  .hero-lead { margin: 16px 0 18px; font-size: 15px; }
  .hero-notes span,
  .story-pills span { padding: 9px 12px; font-size: 11px; }
  .hero-carousel-track { min-height: 410px; }
  .hero-slide .card-art { min-height: 190px; }
  .hero-slide-copy { padding: 18px 18px 20px; }
  .hero-slide h3,
  .floating-card h3,
  .collection-card h3,
  .product-card h3,
  .journal-card h3 { font-size: 28px; }
  .hero-arrow { width: 40px; height: 40px; }
  .collection-grid,
  .product-grid { grid-template-columns: 1fr; }
  .collection-art,
  .product-art { min-height: 220px; }
  .newsletter-form { display: grid; }
}
