/*
 * ÎæmCherry — Tech · Fashion · Empire
 * © 2026 Cherry Ihuoma. All rights reserved.
 * Unauthorized reproduction prohibited.
 * contact: treasurecherish4life@gmail.com
 */
:root {
  --cherry: #8b1a1a;
  --cherry-glow: #c0392b;
  --gold: #b8964a;
  --gold-light: #c6a25a;
  --font-d: "Cormorant Garamond", serif;
  --font-s: "Syne", sans-serif;
  --font-m: "DM Mono", monospace;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}
[data-theme="night"] {
  --bg: #0d0500;
  --bg2: #160800;
  --surface: #1e0d05;
  --surface2: #2a1208;
  --border: rgba(198, 162, 90, 0.12);
  --text: #f5e9e2;
  --text2: rgba(245, 233, 226, 0.55);
  --text3: rgba(245, 233, 226, 0.3);
  --main: #3b1c0a;
  --accent: var(--cherry-glow);
  --gold-use: var(--gold-light);
  --glow: rgba(139, 26, 26, 0.15);
}
[data-theme="day"] {
  --bg: #f5e9e2;
  --bg2: #ede0d6;
  --surface: #e8d8cc;
  --surface2: #dfd0c4;
  --border: rgba(75, 46, 43, 0.12);
  --text: #1c1412;
  --text2: rgba(28, 20, 18, 0.55);
  --text3: rgba(28, 20, 18, 0.3);
  --main: #4b2e2b;
  --accent: var(--cherry);
  --gold-use: var(--gold);
  --glow: rgba(75, 46, 43, 0.08);
}
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-s);
  overflow-x: hidden;
  transition:
    background 0.5s var(--ease),
    color 0.5s var(--ease);
  cursor: none;
}
.cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 8px;
  height: 8px;
  background: var(--gold-use);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition:
    width 0.3s var(--ease),
    height 0.3s var(--ease),
    background 0.3s;
  mix-blend-mode: difference;
}
.cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  width: 32px;
  height: 32px;
  border: 1px solid var(--gold-use);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition:
    width 0.3s var(--ease),
    height 0.3s var(--ease);
  opacity: 0.5;
}
a,
button {
  cursor: none;
}
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-s);
  overflow-x: hidden;
  transition:
    background 0.5s var(--ease),
    color 0.5s var(--ease);
  cursor: none;
}
.cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 8px;
  height: 8px;
  background: var(--gold-use);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition:
    width 0.3s var(--ease),
    height 0.3s var(--ease),
    background 0.3s;
  mix-blend-mode: difference;
}
.cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  width: 32px;
  height: 32px;
  border: 1px solid var(--gold-use);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition:
    width 0.3s var(--ease),
    height 0.3s var(--ease);
  opacity: 0.5;
}
a,
button {
  cursor: none;
}
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 48px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  transition:
    background 0.5s var(--ease),
    border-color 0.5s var(--ease);
}
nav::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-use), transparent);
  opacity: 0.4;
}
.nav-logo {
  font-family: var(--font-d);
  font-size: 22px;
  font-weight: 300;
  color: var(--text);
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: color 0.3s;
}
.nav-logo em {
  font-style: italic;
  color: var(--accent);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  font-family: var(--font-s);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text2);
  text-decoration: none;
  transition: color 0.25s;
  position: relative;
}
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gold-use);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.nav-links a:hover {
  color: var(--text);
}
.nav-links a:hover::after {
  transform: scaleX(1);
}
.theme-toggle {
  display: flex;
  align-items: center;
  gap: 10px;
  background: none;
  border: 1px solid var(--border);
  padding: 7px 14px;
  border-radius: 2px;
  color: var(--text2);
  font-family: var(--font-m);
  font-size: 9px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  transition: all 0.3s var(--ease);
}
.theme-toggle:hover {
  border-color: var(--gold-use);
  color: var(--text);
}
.toggle-track {
  width: 28px;
  height: 14px;
  background: var(--surface2);
  border-radius: 7px;
  position: relative;
  transition: background 0.3s;
}
.toggle-thumb {
  position: absolute;
  top: 2px;
  left: 2px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold-use);
  transition:
    transform 0.35s var(--ease),
    background 0.3s;
}
[data-theme="day"] .toggle-thumb {
  transform: translateX(14px);
}
.page {
  display: none;
  padding-top: 72px;
  min-height: 100vh;
}
.page.active {
  display: block;
}
.hero {
  min-height: calc(100vh - 72px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
}
[data-theme="night"] .hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 70% 80% at 20% 50%,
      rgba(59, 28, 10, 0.5) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse 50% 60% at 80% 20%,
      rgba(139, 26, 26, 0.08) 0%,
      transparent 50%
    );
  pointer-events: none;
  z-index: 0;
}
[data-theme="day"] .hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 60% 70% at 20% 50%,
    rgba(75, 46, 43, 0.06) 0%,
    transparent 60%
  );
  pointer-events: none;
  z-index: 0;
}
.hero-left {
  padding: 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 28px;
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  font-family: var(--font-m);
  font-size: 10px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold-use);
  opacity: 0.8;
  animation: fadeUp 0.8s ease both;
}
.hero-name {
  font-family: var(--font-d);
  font-size: clamp(52px, 7vw, 112px);
  font-weight: 300;
  line-height: 0.88;
  letter-spacing: -0.015em;
  color: var(--text);
  animation: fadeUp 0.8s 0.1s ease both;
}
.hero-name em {
  font-style: italic;
  color: var(--accent);
  display: block;
}
.hero-tagline {
  font-family: var(--font-d);
  font-style: italic;
  font-size: clamp(18px, 2vw, 26px);
  font-weight: 300;
  color: var(--text2);
  line-height: 1.4;
  max-width: 400px;
  animation: fadeUp 0.8s 0.2s ease both;
}
.hero-desc {
  font-family: var(--font-s);
  font-size: 13px;
  line-height: 1.85;
  color: var(--text2);
  max-width: 380px;
  animation: fadeUp 0.8s 0.28s ease both;
}
.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  animation: fadeUp 0.8s 0.35s ease both;
}
.btn-primary {
  background: var(--accent);
  color: #f5e9e2;
  font-family: var(--font-s);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 14px 28px;
  border: none;
  border-radius: 2px;
  transition:
    transform 0.2s var(--ease),
    box-shadow 0.2s;
  text-decoration: none;
  display: inline-block;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--glow);
}
.btn-secondary {
  background: transparent;
  color: var(--text);
  font-family: var(--font-s);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 13px 28px;
  border: 1px solid var(--border);
  border-radius: 2px;
  transition:
    border-color 0.2s,
    color 0.2s;
  text-decoration: none;
  display: inline-block;
}
.btn-secondary:hover {
  border-color: var(--gold-use);
  color: var(--gold-use);
}
.hero-meta {
  display: flex;
  gap: 28px;
  animation: fadeUp 0.8s 0.42s ease both;
}
.hero-meta-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hero-meta-num {
  font-family: var(--font-d);
  font-size: 28px;
  font-weight: 300;
  color: var(--text);
  line-height: 1;
}
.hero-meta-label {
  font-family: var(--font-m);
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text3);
}
.hero-right {
  position: relative;
  overflow: hidden;
  z-index: 1;
  display: flex;
  flex-direction: column;
}
[data-theme="night"] .hero-right {
  background: linear-gradient(160deg, #1e0d05 0%, #0d0500 100%);
  border-left: 1px solid var(--border);
}
[data-theme="day"] .hero-right {
  background: linear-gradient(160deg, #e8d8cc 0%, #dfd0c4 100%);
  border-left: 1px solid var(--border);
}
.lookbook-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  height: 100%;
}
.btn-secondary {
  background: transparent;
  color: var(--text);
  font-family: var(--font-s);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 13px 28px;
  border: 1px solid var(--border);
  border-radius: 2px;
  transition:
    border-color 0.2s,
    color 0.2s;
  text-decoration: none;
  display: inline-block;
}
.btn-secondary:hover {
  border-color: var(--gold-use);
  color: var(--gold-use);
}
.hero-meta {
  display: flex;
  gap: 28px;
  animation: fadeUp 0.8s 0.42s ease both;
}
.hero-meta-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hero-meta-num {
  font-family: var(--font-d);
  font-size: 28px;
  font-weight: 300;
  color: var(--text);
  line-height: 1;
}
.hero-meta-label {
  font-family: var(--font-m);
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text3);
}
.hero-right {
  position: relative;
  overflow: hidden;
  z-index: 1;
  display: flex;
  flex-direction: column;
}
[data-theme="night"] .hero-right {
  background: linear-gradient(160deg, #1e0d05 0%, #0d0500 100%);
  border-left: 1px solid var(--border);
}
[data-theme="day"] .hero-right {
  background: linear-gradient(160deg, #e8d8cc 0%, #dfd0c4 100%);
  border-left: 1px solid var(--border);
}
.lookbook-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  height: 100%;
}
.lb-item {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 20px;
  min-height: 200px;
  transition: all 0.4s var(--ease);
}
.lb-content {
  position: relative;
  z-index: 1;
}
.lb-tag {
  font-family: var(--font-m);
  font-size: 8px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-use);
  opacity: 0.7;
  display: block;
  margin-bottom: 4px;
}
.lb-name {
  font-family: var(--font-d);
  font-size: 16px;
  font-weight: 300;
  color: var(--text);
  line-height: 1.2;
}
[data-theme="night"] .lb-1 {
  background: #1e0d05;
}
[data-theme="night"] .lb-2 {
  background: #2a1208;
}
[data-theme="night"] .lb-3 {
  background: #3b1c0a;
}
[data-theme="night"] .lb-4 {
  background: #1a0a00;
}
[data-theme="day"] .lb-1 {
  background: #e8d8cc;
}
[data-theme="day"] .lb-2 {
  background: #dfd0c4;
}
[data-theme="day"] .lb-3 {
  background: #4b2e2b;
}
[data-theme="day"] .lb-4 {
  background: #ede0d6;
}
[data-theme="day"] .lb-3 .lb-name {
  color: #f5e9e2;
}
[data-theme="day"] .lb-3 .lb-tag {
  color: var(--gold-light);
}
.lb-deco {
  position: absolute;
  border: 1px solid var(--border);
  border-radius: 50%;
  opacity: 0.3;
}
.lb-deco-1 {
  width: 100px;
  height: 100px;
  top: 15%;
  right: 10%;
}
.lb-deco-2 {
  width: 60px;
  height: 60px;
  top: 10%;
  left: 15%;
}
.hero-right-wm {
  position: absolute;
  bottom: -10px;
  right: -5px;
  font-family: var(--font-d);
  font-size: 70px;
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--text);
  opacity: 0.04;
  pointer-events: none;
  z-index: 2;
  white-space: nowrap;
}
.scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 60px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-m);
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text3);
  animation: fadeUp 1s 0.6s ease both;
  z-index: 2;
}
.scroll-hint::before {
  content: "";
  width: 32px;
  height: 1px;
  background: linear-gradient(to right, var(--gold-use), transparent);
}
.intro-strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
  overflow: hidden;
}
.strip-inner {
  display: flex;
  gap: 48px;
  align-items: center;
  animation: marquee 22s linear infinite;
  white-space: nowrap;
}
.strip-item {
  font-family: var(--font-m);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text3);
  flex-shrink: 0;
}
.strip-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold-use);
  flex-shrink: 0;
  opacity: 0.5;
}
@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.about-teaser {
  padding: 100px 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
.at-label {
  font-family: var(--font-m);
  font-size: 10px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold-use);
  margin-bottom: 24px;
}
.at-headline {
  font-family: var(--font-d);
  font-size: clamp(36px, 4.5vw, 64px);
  font-weight: 300;
  line-height: 1;
  color: var(--text);
  letter-spacing: -0.01em;
  margin-bottom: 20px;
}
.at-headline em {
  font-style: italic;
  color: var(--accent);
}
.at-body {
  font-family: var(--font-s);
  font-size: 14px;
  line-height: 1.9;
  color: var(--text2);
  margin-bottom: 32px;
}
.at-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}
.at-card {
  background: var(--surface);
  padding: 28px 24px;
  transition: background 0.3s;
}
.at-card:hover {
  background: var(--surface2);
}
.at-card-num {
  font-family: var(--font-d);
  font-size: 36px;
  font-weight: 300;
  color: var(--text);
  line-height: 1;
  margin-bottom: 6px;
}
.at-card-label {
  font-family: var(--font-s);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-use);
  margin-bottom: 6px;
}
.at-card-desc {
  font-family: var(--font-s);
  font-size: 12px;
  line-height: 1.6;
  color: var(--text2);
}
.featured {
  padding: 100px 48px;
  background: var(--surface);
  transition: background 0.5s var(--ease);
}
.featured-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  max-width: 1200px;
  margin: 0 auto 52px;
}
.featured-title {
  font-family: var(--font-d);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 300;
  color: var(--text);
}
.featured-title em {
  font-style: italic;
  color: var(--accent);
}
.featured-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  max-width: 1200px;
  margin: 0 auto;
}
.product-card {
  background: var(--bg);
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
}
.product-card:hover {
  background: var(--surface2);
}
.product-img {
  aspect-ratio: 3/4;
  background: var(--surface2);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-img-inner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.prod-deco {
  width: 110px;
  height: 110px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.prod-deco::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid var(--border);
  border-radius: 50%;
}
.prod-deco-label {
  font-family: var(--font-d);
  font-size: 11px;
  font-style: italic;
  color: var(--text3);
  text-align: center;
  line-height: 1.3;
}
.product-tag-overlay {
  position: absolute;
  top: 16px;
  left: 16px;
  font-family: var(--font-m);
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: var(--accent);
  color: #f5e9e2;
  padding: 4px 8px;
}
.product-info {
  padding: 20px 24px;
}
.product-category {
  font-family: var(--font-m);
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-use);
  margin-bottom: 6px;
}
.product-name {
  font-family: var(--font-d);
  font-size: 20px;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 6px;
}
.product-price {
  font-family: var(--font-s);
  font-size: 13px;
  font-weight: 700;
  color: var(--text2);
}
.manifesto {
  background: var(--main);
  padding: 80px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: background 0.5s var(--ease);
}
.manifesto::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    rgba(198, 162, 90, 0.02) 0px,
    rgba(198, 162, 90, 0.02) 1px,
    transparent 1px,
    transparent 20px
  );
}
.manifesto-quote {
  font-family: var(--font-d);
  font-style: italic;
  font-size: clamp(22px, 3.5vw, 48px);
  font-weight: 300;
  color: #f5e9e2;
  line-height: 1.2;
  max-width: 800px;
  margin: 0 auto 24px;
  position: relative;
  z-index: 1;
}
.manifesto-quote em {
  color: var(--gold-light);
  font-style: normal;
}
.manifesto-attr {
  font-family: var(--font-m);
  font-size: 10px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(245, 233, 226, 0.35);
  position: relative;
  z-index: 1;
}
.journal-teaser {
  padding: 100px 48px;
  max-width: 1200px;
  margin: 0 auto;
}
.jt-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 52px;
}
.section-title {
  font-family: var(--font-d);
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 300;
  color: var(--text);
}
.section-title em {
  font-style: italic;
  color: var(--accent);
}
.journal-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2px;
}
.journal-card {
  background: var(--surface);
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
  border: 1px solid var(--border);
}
.journal-card:hover {
  background: var(--surface2);
}
.journal-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold-use);
  opacity: 0;
  transition: opacity 0.3s;
}
.journal-card:hover::before {
  opacity: 1;
}
.jc-date {
  font-family: var(--font-m);
  font-size: 9px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text3);
  margin-bottom: 12px;
}
.jc-tag {
  display: inline-block;
  font-family: var(--font-m);
  font-size: 8px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-use);
  border: 1px solid var(--border);
  padding: 3px 8px;
  margin-bottom: 14px;
}
.jc-title {
  font-family: var(--font-d);
  font-size: clamp(18px, 2vw, 26px);
  font-weight: 400;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 12px;
}
.jc-excerpt {
  font-family: var(--font-s);
  font-size: 12px;
  line-height: 1.75;
  color: var(--text2);
}
.jc-read {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  font-family: var(--font-s);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-use);
  text-decoration: none;
}
.jc-read::after {
  content: "→";
}
.page-header {
  padding: 64px 48px 48px;
  border-bottom: 1px solid var(--border);
  max-width: 1200px;
  margin: 0 auto;
}
.page-header-eyebrow {
  font-family: var(--font-m);
  font-size: 10px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold-use);
  margin-bottom: 16px;
}
.page-header-title {
  font-family: var(--font-d);
  font-size: clamp(40px, 6vw, 80px);
  font-weight: 300;
  color: var(--text);
  line-height: 0.9;
}
.page-header-title em {
  font-style: italic;
  color: var(--accent);
}
.shop-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 0;
  max-width: 1200px;
  margin: 0 auto;
}
.shop-sidebar {
  padding: 40px 32px 40px 48px;
  border-right: 1px solid var(--border);
}
.sidebar-label {
  font-family: var(--font-m);
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text3);
  margin-bottom: 12px;
  margin-top: 24px;
}
.sidebar-label:first-child {
  margin-top: 0;
}
.filter-item {
  font-family: var(--font-s);
  font-size: 12px;
  color: var(--text2);
  padding: 6px 0;
  display: block;
  text-decoration: none;
  transition: color 0.2s;
}
.filter-item:hover,
.filter-item.active {
  color: var(--gold-use);
}
.shop-grid-wrap {
  padding: 40px 48px 40px 40px;
}
.shop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.about-layout {
  max-width: 1200px;
  margin: 0 auto;
}
.about-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 60vh;
}
.about-hero-left {
  padding: 80px 60px 60px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
}
.about-hero-right {
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  border-left: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.about-portrait-placeholder {
  width: 200px;
  height: 200px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.about-portrait-placeholder::before {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px solid var(--border);
  border-radius: 50%;
}
.app-initials {
  font-family: var(--font-d);
  font-size: 48px;
  font-weight: 300;
  color: var(--text);
  opacity: 0.3;
  font-style: italic;
}
.about-pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border-top: 1px solid var(--border);
}
.pillar {
  background: var(--bg);
  padding: 40px 32px;
  transition: background 0.3s;
}
.pillar:hover {
  background: var(--surface);
}
.pillar-num {
  font-family: var(--font-m);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--gold-use);
  margin-bottom: 10px;
}
.pillar-title {
  font-family: var(--font-d);
  font-size: 24px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
}
.pillar-desc {
  font-family: var(--font-s);
  font-size: 13px;
  line-height: 1.7;
  color: var(--text2);
}
.about-body {
  padding: 80px 48px;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  border-top: 1px solid var(--border);
}
.about-body-label {
  font-family: var(--font-m);
  font-size: 10px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold-use);
  position: sticky;
  top: 100px;
  height: fit-content;
}
.about-body-text {
  font-family: var(--font-s);
  font-size: 15px;
  line-height: 2;
  color: var(--text2);
}
.about-body-text p + p {
  margin-top: 24px;
}
.about-body-text strong {
  color: var(--text);
  font-weight: 700;
}
.journal-layout {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 48px;
}
.journal-full-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 52px;
}
.jf-card {
  background: var(--surface);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: background 0.3s;
}
.jf-card:hover {
  background: var(--surface2);
}
.jf-img {
  height: 160px;
  background: var(--surface2);
  display: flex;
  align-items: center;
  justify-content: center;
}
.jf-body {
  padding: 24px;
}
.contact-layout {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - 72px);
}
.contact-left {
  padding: 80px 60px 60px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 28px;
  border-right: 1px solid var(--border);
}
.contact-headline {
  font-family: var(--font-d);
  font-size: clamp(36px, 4.5vw, 64px);
  font-weight: 300;
  line-height: 1;
  color: var(--text);
}
.contact-headline em {
  font-style: italic;
  color: var(--accent);
}
.contact-channels {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.contact-channel {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  border: 1px solid var(--border);
  text-decoration: none;
  transition:
    border-color 0.2s,
    background 0.2s;
}
.contact-channel:hover {
  border-color: var(--gold-use);
  background: var(--surface);
}
.cc-icon {
  font-family: var(--font-m);
  font-size: 10px;
  letter-spacing: 0.15em;
  color: var(--gold-use);
  width: 80px;
}
.cc-val {
  font-family: var(--font-s);
  font-size: 13px;
  color: var(--text);
}
.contact-right {
  padding: 80px 48px 60px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
}
.contact-form-label {
  font-family: var(--font-m);
  font-size: 10px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold-use);
  margin-bottom: 6px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-label {
  font-family: var(--font-m);
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text3);
}
.form-input {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 12px 16px;
  font-family: var(--font-s);
  font-size: 13px;
  color: var(--text);
  outline: none;
  transition:
    border-color 0.2s,
    background 0.2s;
}
.form-input:focus {
  border-color: var(--gold-use);
  background: var(--surface2);
}
.form-input::placeholder {
  color: var(--text3);
}
textarea.form-input {
  resize: vertical;
  min-height: 110px;
}
footer {
  background: var(--main);
  padding: 64px 48px 40px;
  position: relative;
  overflow: hidden;
  transition: background 0.5s var(--ease);
}
footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-use), transparent);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  max-width: 1200px;
  margin: 0 auto 48px;
}
.footer-brand-name {
  font-family: var(--font-d);
  font-size: 32px;
  font-weight: 300;
  color: #f5e9e2;
  margin-bottom: 12px;
  letter-spacing: 0.02em;
}
.footer-brand-name em {
  color: var(--cherry-glow);
  font-style: italic;
}
.footer-brand-desc {
  font-family: var(--font-s);
  font-size: 12px;
  line-height: 1.75;
  color: rgba(245, 233, 226, 0.4);
  max-width: 260px;
}
.footer-col-title {
  font-family: var(--font-m);
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 16px;
  opacity: 0.7;
}
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  font-family: var(--font-s);
  font-size: 12px;
  color: rgba(245, 233, 226, 0.4);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover {
  color: rgba(245, 233, 226, 0.9);
}
.footer-bottom {
  border-top: 1px solid rgba(245, 233, 226, 0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
.footer-copy {
  font-family: var(--font-m);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: rgba(245, 233, 226, 0.25);
  text-transform: uppercase;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 900px) {
  nav {
    padding: 0 24px;
  }
  .nav-links {
    display: none;
  }
  .hero,
  .about-hero,
  .contact-layout {
    grid-template-columns: 1fr;
  }
  .hero-right,
  .about-hero-right {
    display: none;
  }
  .hero-left,
  .about-hero-left {
    padding: 48px 24px;
  }
  .featured-grid,
  .shop-grid,
  .journal-full-grid {
    grid-template-columns: 1fr 1fr;
  }
  .journal-grid {
    grid-template-columns: 1fr;
  }
  .about-pillars {
    grid-template-columns: 1fr 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .shop-layout {
    grid-template-columns: 1fr;
  }
  .shop-sidebar {
    display: none;
  }
  .about-teaser {
    grid-template-columns: 1fr;
    padding: 60px 24px;
  }
  .journal-teaser,
  .journal-layout,
  .featured,
  .manifesto {
    padding: 60px 24px;
  }
  .contact-left,
  .contact-right {
    padding: 48px 24px;
  }
  .page-header {
    padding: 48px 24px 32px;
  }
  .about-body {
    grid-template-columns: 1fr;
    padding: 48px 24px;
  }
  .about-body-label {
    position: static;
  }
}
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 8px;
  transition: border-color 0.3s;
  z-index: 101;
}
.hamburger:hover {
  border-color: var(--gold-use);
}
.hamburger span {
  display: block;
  width: 18px;
  height: 1px;
  background: var(--text);
  transition:
    transform 0.35s var(--ease),
    opacity 0.35s,
    width 0.35s;
  transform-origin: center;
}
.hamburger.open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
  width: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.45s var(--ease),
    padding 0.35s var(--ease);
  z-index: 99;
}
.mobile-menu::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-use), transparent);
  opacity: 0.4;
}
.mobile-menu.open {
  max-height: 400px;
  padding: 12px 0 24px;
}
.mobile-menu a {
  font-family: var(--font-s);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text2);
  text-decoration: none;
  padding: 14px 32px;
  border-bottom: 1px solid var(--border);
  transition:
    color 0.2s,
    background 0.2s;
  position: relative;
}
.mobile-menu a:last-child {
  border-bottom: none;
}
.mobile-menu a:hover {
  color: var(--text);
  background: var(--surface);
}
.mobile-menu a::after {
  content: "→";
  position: absolute;
  right: 32px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 10px;
  color: var(--gold-use);
  opacity: 0;
  transition: opacity 0.2s;
}
.mobile-menu a:hover::after {
  opacity: 1;
}

@media (max-width: 900px) {
  .nav-links {
    display: none;
  }
  .theme-toggle span {
    display: none;
  }
  .theme-toggle{
    display: none;
  }
  .hamburger {
    display: flex;
    margin-left: auto;
  }
  .article-layout {
    padding: 40px 24px 80px;
  }
  .article-next-grid {
    grid-template-columns: 1fr;
  }
}
/* SPLASH */
.splash {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: all;
}

.splash-left,
.splash-right {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 50%;
  background: #0d0500;
  transition: transform 0.9s cubic-bezier(0.76, 0, 0.24, 1);
  z-index: 1;
}
.splash-left {
  left: 0;
}
.splash-right {
  right: 0;
}

.splash.exit .splash-left {
  transform: translateX(-100%);
}
.splash.exit .splash-right {
  transform: translateX(100%);
}

.splash-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  z-index: 2;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.splash.exit .splash-content {
  opacity: 0;
}

/* gold line top */
.splash::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    #b8964a,
    #c6a25a,
    transparent
  );
  z-index: 3;
  animation: splashLine 1s ease forwards;
  transform: scaleX(0);
  transform-origin: left;
}
@keyframes splashLine {
  to {
    transform: scaleX(1);
  }
}
.splash-logo {
  font-family: var(--font-d);
  font-size: clamp(72px, 14vw, 160px);
  font-weight: 300;
  line-height: 0.88;
  letter-spacing: -0.02em;
  color: #f5e9e2;
  opacity: 0;
  margin-bottom: 20px;
  animation: splashUp 0.8s 0.5s var(--ease) forwards;
}
.splash-logo em {
  font-style: italic;
  color: #c0392b;
}

.splash-tagline {
  font-family: var(--font-d);
  font-style: italic;
  font-size: clamp(16px, 2vw, 22px);
  font-weight: 300;
  color: rgba(245, 233, 226, 0.5);
  opacity: 0;
  margin-bottom: 48px;
  animation: splashFade 0.6s 0.8s ease forwards;
}

/* LOADING BAR */
.splash-bar-wrap {
  width: 200px;
  height: 1px;
  background: rgba(198, 162, 90, 0.15);
  position: relative;
  margin-bottom: 12px;
  opacity: 0;
  animation: splashFade 0.4s 1s ease forwards;
}
.splash-bar {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #b8964a, #c6a25a);
  transition: width 0.05s linear;
  box-shadow: 0 0 8px rgba(198, 162, 90, 0.4);
}

.splash-percent {
  font-family: var(--font-m);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: rgba(198, 162, 90, 0.5);
  opacity: 0;
  animation: splashFade 0.4s 1s ease forwards;
}

@keyframes splashFade {
  to {
    opacity: 1;
  }
}
@keyframes splashUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* lock scroll while splash is active */
body.splash-active {
  overflow: hidden;
}

.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  position: absolute;
  inset: 0;
  transition: transform 0.5s var(--ease);
}

.product-card:hover .product-img img {
  transform: scale(1.04);
}

/* ARTICLE PAGE */
.article-layout {
  max-width: 720px;
  margin: 0 auto;
  padding: 60px 48px 100px;
}

.article-back a {
  font-family: var(--font-m);
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-use);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 52px;
  opacity: 0.7;
  transition: opacity 0.2s;
}
.article-back a:hover {
  opacity: 1;
}

.article-header {
  margin-bottom: 48px;
}

.article-meta-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.article-date {
  font-family: var(--font-m);
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text3);
}

.article-tag {
  font-family: var(--font-m);
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-use);
  border: 1px solid var(--border);
  padding: 3px 10px;
}

.article-title {
  font-family: var(--font-d);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 300;
  line-height: 1;
  color: var(--text);
  letter-spacing: -0.01em;
  margin-bottom: 20px;
}

.article-subtitle {
  font-family: var(--font-d);
  font-style: italic;
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 300;
  color: var(--text2);
  line-height: 1.5;
}

.article-hero-img {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--surface);
  border: 1px solid var(--border);
  margin-bottom: 52px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.article-hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.article-hero-img .article-img-placeholder {
  font-family: var(--font-d);
  font-size: 48px;
  font-weight: 300;
  font-style: italic;
  color: var(--text);
  opacity: 0.08;
}

/* ARTICLE BODY TYPOGRAPHY */
.article-body {
  font-family: var(--font-s);
  font-size: 16px;
  line-height: 2;
  color: var(--text2);
  margin-bottom: 80px;
}
.article-body p {
  margin-bottom: 28px;
}
.article-body p:last-child {
  margin-bottom: 0;
}
.article-body strong {
  color: var(--text);
  font-weight: 700;
}
.article-body em {
  font-style: italic;
  color: var(--text);
}

.article-body h2 {
  font-family: var(--font-d);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 300;
  color: var(--text);
  margin: 48px 0 20px;
  line-height: 1.1;
}

.article-body blockquote {
  border-left: 2px solid var(--gold-use);
  padding: 4px 0 4px 28px;
  margin: 40px 0;
  font-family: var(--font-d);
  font-style: italic;
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 300;
  color: var(--text);
  line-height: 1.4;
}

.article-body .article-divider {
  width: 40px;
  height: 1px;
  background: var(--gold-use);
  margin: 48px auto;
  opacity: 0.4;
}

/* CONTINUE READING */
.article-footer {
  border-top: 1px solid var(--border);
  padding-top: 48px;
}
.article-footer-label {
  font-family: var(--font-m);
  font-size: 10px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold-use);
  margin-bottom: 24px;
}
.article-next-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}
.article-next-card {
  background: var(--surface);
  padding: 24px;
  text-decoration: none;
  border: 1px solid var(--border);
  transition: background 0.3s;
  display: block;
}
.article-next-card:hover {
  background: var(--surface2);
}
.anc-tag {
  font-family: var(--font-m);
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-use);
  margin-bottom: 10px;
  display: block;
}
.anc-title {
  font-family: var(--font-d);
  font-size: 18px;
  font-weight: 400;
  color: var(--text);
  line-height: 1.3;
}

.jf-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  inset: 0;
  transition: transform 0.5s var(--ease);
}
.jf-card:hover .jf-img img {
  transform: scale(1.04);
}
