/* ============================================================
   Omorrow Goods — Designed for the day after tomorrow.
   ============================================================ */

:root{
  --bg: #0c0c0e;
  --bg-2: #131316;
  --ink: #f4f1ea;
  --ink-dim: #9a958c;
  --line: rgba(244,241,234,.12);
  --line-strong: rgba(244,241,234,.28);
  --accent: #d9a890;
  --accent-2: #b78878;
  --shadow-1: 0 30px 80px -30px rgba(0,0,0,.6);
  --shadow-2: 0 50px 120px -40px rgba(0,0,0,.8);
  --serif: 'Cormorant Garamond', 'Noto Serif JP', serif;
  --jp-serif: 'Noto Serif JP', serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;
}

*{ box-sizing: border-box; margin:0; padding:0; }
html{ scroll-behavior: smooth; }
body{
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg{ display: block; max-width: 100%; }
a{ color: inherit; text-decoration: none; }

/* film grain overlay */
.grain{
  position: fixed; inset:0; pointer-events:none; z-index: 100;
  opacity:.05; mix-blend-mode: overlay;
  background-image:
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/></svg>");
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header{
  position: fixed; top:0; left:0; right:0; z-index: 50;
  padding: 22px 0;
  transition: all .35s ease;
  background: linear-gradient(180deg, rgba(12,12,14,.7) 0%, rgba(12,12,14,0) 100%);
  backdrop-filter: blur(0);
}
.site-header.scrolled{
  padding: 14px 0;
  background: rgba(12,12,14,.72);
  backdrop-filter: blur(20px) saturate(140%);
  border-bottom: 1px solid var(--line);
}
.nav-inner{
  max-width: 1440px; margin: 0 auto;
  padding: 0 48px;
  display: flex; align-items: center; justify-content: space-between;
}
.brand{
  display:flex; align-items:center; gap:12px;
  font-family: var(--sans); font-weight: 500;
  letter-spacing: .02em;
}
.brand-mark{
  font-family: var(--serif); font-size: 22px; font-weight: 300;
  color: var(--accent);
}
.brand-mark.big{ font-size: 48px; }
.brand-name{ font-size: 15px; letter-spacing: .12em; }
.brand-dot{ color: var(--accent); }
.nav-links{
  display:flex; gap:38px;
  font-size: 13px; letter-spacing: .12em; text-transform: uppercase;
  font-weight: 400;
}
.nav-links a{ color: var(--ink-dim); transition: color .25s; position: relative; }
.nav-links a:hover{ color: var(--ink); }
.nav-links a::after{
  content:''; position: absolute; bottom: -6px; left:0; right:0;
  height: 1px; background: var(--accent); transform: scaleX(0);
  transition: transform .35s ease; transform-origin: right;
}
.nav-links a:hover::after{ transform: scaleX(1); transform-origin: left; }
.nav-cta{
  font-size: 13px; letter-spacing: .12em; text-transform: uppercase;
  border: 1px solid var(--line-strong);
  padding: 12px 20px; border-radius: 999px;
  transition: all .3s;
}
.nav-cta:hover{ background: var(--ink); color: var(--bg); border-color: var(--ink); }

/* ============================================================
   HERO
   ============================================================ */
.hero{
  position: relative;
  min-height: 100vh;
  padding: 140px 48px 80px;
  display: flex; flex-direction: column; justify-content: center;
  overflow: hidden;
}
.hero-bg{
  position: absolute; inset:0; z-index: 0;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(123,92,255,.18) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 80%, rgba(217,178,124,.10) 0%, transparent 50%),
    linear-gradient(180deg, #0c0c0e 0%, #14111a 60%, #0c0c0e 100%);
}
.orb{
  position: absolute; border-radius: 50%; filter: blur(60px);
  opacity: .5; animation: float 14s ease-in-out infinite;
}
.orb-1{ width: 520px; height: 520px; top:-100px; left:-80px;
  background: radial-gradient(circle, #7b5cff 0%, transparent 70%); }
.orb-2{ width: 380px; height: 380px; top: 40%; right: -60px;
  background: radial-gradient(circle, #d9b27c 0%, transparent 70%);
  animation-delay: -4s; opacity:.35; }
.orb-3{ width: 280px; height: 280px; bottom: 5%; left: 35%;
  background: radial-gradient(circle, #3a8fff 0%, transparent 70%);
  animation-delay: -8s; opacity:.3; }
@keyframes float{
  0%, 100%{ transform: translate(0,0) scale(1); }
  50%{ transform: translate(40px, -30px) scale(1.06); }
}
.grid-lines{
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(244,241,234,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(244,241,234,.04) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}
.hero-content{ position: relative; z-index: 2; max-width: 1440px; margin: 0 auto; width:100%; }
.hero-meta{
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; letter-spacing: .25em; text-transform: uppercase;
  color: var(--ink-dim);
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  margin-bottom: 40px;
}
.hero-meta-dot{
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 14px var(--accent);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse{
  0%,100%{ opacity:1; transform: scale(1); }
  50%{ opacity:.4; transform: scale(.8); }
}
.hero-title{
  font-family: var(--serif);
  font-size: clamp(48px, 9vw, 148px);
  line-height: .96;
  font-weight: 300;
  letter-spacing: -.02em;
  margin-bottom: 36px;
}
.hero-title .line{ display: block; }
.hero-title .italic{
  font-style: italic;
  color: var(--accent);
  font-weight: 300;
}
.dot-accent{ color: var(--accent); }
.hero-lede{
  font-size: clamp(15px, 1.1vw, 17px);
  color: var(--ink-dim);
  max-width: 560px;
  line-height: 1.9;
  font-weight: 300;
  margin-bottom: 48px;
}
.hide-sm{ display: inline; }

.hero-cta-row{ display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }
.btn{
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 28px; border-radius: 999px;
  font-size: 13px; letter-spacing: .14em; text-transform: uppercase;
  font-weight: 500;
  transition: all .3s ease;
  cursor: pointer;
  border: 1px solid transparent;
}
.btn-primary{
  background: var(--ink); color: var(--bg);
}
.btn-primary:hover{ background: var(--accent); color: var(--bg); transform: translateY(-2px); box-shadow: 0 20px 40px -10px rgba(217,178,124,.4); }
.btn-ghost{
  background: transparent; color: var(--ink);
  border-color: var(--line-strong);
}
.btn-ghost:hover{ border-color: var(--ink); background: rgba(244,241,234,.05); }
.btn-line{
  padding: 0; padding-bottom: 6px;
  border-radius: 0;
  border-bottom: 1px solid var(--line-strong);
  font-size: 12px;
  margin-top: 24px;
}
.btn-line:hover{ border-color: var(--accent); color: var(--accent); }

.hero-ticker{
  margin-top: 90px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  padding: 18px 0;
}
.ticker-track{
  display: flex; gap: 64px;
  animation: ticker 40s linear infinite;
  white-space: nowrap;
  font-size: 11px; letter-spacing: .25em;
  color: var(--ink-dim);
  font-weight: 400;
}
@keyframes ticker{ to{ transform: translateX(-50%); } }

.hero-numbers{
  position: absolute; right: 48px; bottom: 60px; z-index: 2;
  display: flex; gap: 56px;
}
.hero-numbers div{
  display: flex; flex-direction: column;
  font-family: var(--serif);
}
.hero-numbers strong{
  font-size: 56px; font-weight: 300; line-height: 1;
  color: var(--ink);
}
.hero-numbers span{
  font-size: 10px; letter-spacing: .25em; text-transform: uppercase;
  color: var(--ink-dim);
  margin-top: 8px; font-family: var(--sans);
}

/* ============================================================
   SECTION HEAD
   ============================================================ */
.section-head{
  max-width: 1440px; margin: 0 auto;
  padding: 140px 48px 80px;
  opacity: 0; transform: translateY(30px);
  transition: opacity .9s ease, transform .9s ease;
}
.section-head.in{ opacity:1; transform: translateY(0); }
.section-num{
  display: inline-block;
  font-size: 11px; letter-spacing: .3em; text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 28px;
  font-weight: 500;
}
.section-title{
  font-family: var(--serif);
  font-size: clamp(40px, 6vw, 88px);
  line-height: 1;
  font-weight: 300;
  letter-spacing: -.015em;
  margin-bottom: 24px;
}
.section-title.small{ font-size: clamp(36px, 4.5vw, 64px); }
.section-title .italic{ font-style: italic; color: var(--accent); }
.section-sub{
  font-size: 14px; color: var(--ink-dim); letter-spacing: .05em;
}

/* ============================================================
   CONCEPT
   ============================================================ */
.concept{ background: var(--bg-2); border-top: 1px solid var(--line); padding-bottom: 140px; }
.concept-grid{
  max-width: 1440px; margin: 0 auto;
  padding: 0 48px;
  display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px;
}
.concept-text{
  font-family: var(--jp-serif);
  font-size: 17px; line-height: 2.1;
  color: var(--ink-dim); font-weight: 300;
}
.concept-text em{
  font-style: normal; color: var(--ink);
  border-bottom: 1px solid var(--accent);
  padding-bottom: 2px;
}
.concept-cards{ display: flex; flex-direction: column; gap: 24px; }
.ccard{
  padding: 36px 40px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: linear-gradient(180deg, rgba(244,241,234,.02) 0%, transparent 100%);
  transition: all .5s ease;
  opacity: 0; transform: translateY(30px);
  position: relative; overflow: hidden;
}
.ccard.in{ opacity:1; transform: translateY(0); }
.ccard:hover{
  border-color: var(--line-strong);
  background: linear-gradient(180deg, rgba(217,178,124,.04) 0%, transparent 100%);
  transform: translateY(-4px);
}
.ccard-num{
  font-family: var(--serif); font-style: italic;
  color: var(--accent); font-size: 22px;
  margin-bottom: 14px;
}
.ccard h3{
  font-family: var(--serif); font-weight: 400;
  font-size: 26px; margin-bottom: 12px;
  letter-spacing: -.005em;
}
.ccard p{
  color: var(--ink-dim); font-size: 14px; line-height: 1.8;
  font-family: var(--jp-serif);
}

/* ============================================================
   COLLECTION / PRODUCTS
   ============================================================ */
.collection{
  background: var(--bg);
  padding-bottom: 160px;
}
.products{
  max-width: 1440px; margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.products-5{
  grid-template-columns: repeat(6, 1fr);
}
.products-5 .product:nth-child(1),
.products-5 .product:nth-child(2),
.products-5 .product:nth-child(3){
  grid-column: span 2;
}
.products-5 .product:nth-child(4){ grid-column: 2 / span 2; }
.products-5 .product:nth-child(5){ grid-column: 4 / span 2; }
.product{
  display: block;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, var(--bg-2) 0%, var(--bg) 100%);
  transition: all .6s cubic-bezier(.2,.7,.2,1);
  opacity: 0; transform: translateY(40px);
  cursor: pointer;
}
.product.in{ opacity:1; transform: translateY(0); }
.product:hover{
  border-color: var(--line-strong);
  transform: translateY(-8px);
  box-shadow: var(--shadow-2);
}
.product.product-wide{ grid-column: span 3; }

.product-visual{
  position: relative;
  aspect-ratio: 4 / 3.2;
  overflow: hidden;
  background: #14110e;
}
.products-5 .product-visual{
  aspect-ratio: 9 / 14;
}
.product-visual img{
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1s cubic-bezier(.2,.7,.2,1);
  display: block;
}
.product:hover .product-visual img{ transform: scale(1.04); }
.product.product-wide .product-visual{ aspect-ratio: 16 / 6; }
.pv-tag{
  position: absolute; top: 22px; left: 22px;
  font-family: var(--serif); font-style: italic;
  font-size: 18px; color: rgba(255,255,255,.85);
  z-index: 3;
  text-shadow: 0 2px 8px rgba(0,0,0,.5);
}
.product-visual::after{
  content:''; position: absolute; inset:0; z-index: 2;
  background:
    radial-gradient(ellipse at 50% 100%, rgba(0,0,0,.5) 0%, transparent 60%),
    linear-gradient(180deg, transparent 50%, rgba(0,0,0,.4) 100%);
  pointer-events: none;
}

/* product visual elements (CSS art) */
.pv-orb{
  position: absolute; top: 50%; left: 50%;
  width: 50%; aspect-ratio: 1; transform: translate(-50%,-50%);
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, var(--p3) 0%, var(--p2) 40%, #1a0f30 100%);
  box-shadow:
    inset -20px -30px 60px rgba(0,0,0,.6),
    inset 20px 20px 40px rgba(255,255,255,.15),
    0 30px 80px rgba(123,92,255,.5),
    0 0 120px var(--p2);
  animation: orbHover 6s ease-in-out infinite;
}
@keyframes orbHover{ 0%,100%{ transform: translate(-50%,-50%); } 50%{ transform: translate(-50%,-55%); } }
.pv-ring{
  position: absolute; top: 50%; left: 50%;
  width: 75%; aspect-ratio: 1; transform: translate(-50%,-50%) rotateX(70deg);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 50%;
  animation: ringSpin 12s linear infinite;
}
.pv-ring-2{ width: 95%; transform: translate(-50%,-50%) rotateX(70deg) rotate(45deg); animation-duration: 18s; animation-direction: reverse; opacity:.5; }
@keyframes ringSpin{ to{ transform: translate(-50%,-50%) rotateX(70deg) rotateZ(360deg); } }

.pv-earring{
  position: absolute; top: 30%;
  width: 14%; aspect-ratio: 1 / 2.4;
  background: linear-gradient(180deg, rgba(255,255,255,.85) 0%, var(--p3) 30%, var(--p2) 100%);
  box-shadow: 0 20px 50px rgba(58,143,255,.5), inset -3px -3px 10px rgba(0,0,0,.3);
  border-radius: 50% 50% 50% 50% / 30% 30% 70% 70%;
}
.pv-earring-l{ left: 30%; }
.pv-earring-r{ right: 30%; }
.pv-earring::after{
  content:''; position: absolute; top:-12%; left: 50%; transform: translateX(-50%);
  width: 25%; aspect-ratio: 1; border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #fff, var(--p3) 50%, var(--p2));
  box-shadow: 0 0 30px rgba(255,255,255,.6);
}

.pv-pen{
  position: absolute; top: 50%; left: 50%;
  width: 65%; height: 8%;
  transform: translate(-50%,-50%) rotate(-25deg);
  background: linear-gradient(90deg, #1c1d1a 0%, #4a4d44 40%, #2a2c27 50%, var(--p3) 95%, #fff 100%);
  border-radius: 100px;
  box-shadow: 0 30px 60px rgba(0,0,0,.5), inset 0 2px 2px rgba(255,255,255,.2);
}
.pv-stroke{
  position: absolute; bottom: 18%; left: 20%;
  width: 60%; height: 30%;
  background:
    radial-gradient(ellipse at 0% 100%, var(--p3) 0%, transparent 50%);
  filter: blur(8px);
  opacity: .6;
}

.pv-bottle{
  position: absolute; top: 50%; left: 50%;
  width: 22%; aspect-ratio: 1 / 2.6;
  transform: translate(-50%,-50%);
  background:
    linear-gradient(90deg, rgba(255,255,255,.05) 0%, rgba(255,255,255,.3) 40%, rgba(255,255,255,.05) 100%),
    linear-gradient(180deg, var(--p3) 0%, var(--p2) 100%);
  border-radius: 30% 30% 20% 20% / 8% 8% 6% 6%;
  box-shadow: 0 40px 80px rgba(31,138,111,.4), inset -8px 0 20px rgba(0,0,0,.3);
}
.pv-bottle::before{
  content:''; position: absolute; top: -12%; left: 30%;
  width: 40%; height: 18%;
  background: linear-gradient(180deg, #2a2a28, #15151a);
  border-radius: 20% 20% 0 0;
}
.pv-droplet{
  position: absolute; bottom: 18%; left: 50%;
  transform: translateX(-50%);
  width: 4%; aspect-ratio: 1 / 1.4;
  background: var(--p3);
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  filter: blur(.5px); opacity: .8;
  animation: drip 3s ease-in-out infinite;
}
@keyframes drip{ 0%,100%{ transform: translate(-50%,0); opacity:.8; } 50%{ transform: translate(-50%, 8px); opacity:.4; } }

.pv-mask{
  position: absolute; top: 50%; left: 50%;
  width: 60%; height: 22%;
  transform: translate(-50%,-50%);
  background:
    radial-gradient(ellipse at 50% 30%, var(--p3) 0%, var(--p2) 60%, #1a0a25 100%);
  border-radius: 50% 50% 40% 40% / 80% 80% 100% 100%;
  box-shadow: 0 40px 70px rgba(91,44,138,.5), inset 0 -10px 20px rgba(0,0,0,.4);
}
.pv-mask::before, .pv-mask::after{
  content:''; position: absolute; top: 50%; width: 20%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--p3));
}
.pv-mask::before{ right: 100%; }
.pv-mask::after{ left: 100%; background: linear-gradient(90deg, var(--p3), transparent); }
.pv-wave{
  position: absolute; left: 0; right: 0; bottom: 18%;
  height: 1px;
  background:
    repeating-linear-gradient(90deg, transparent 0, var(--p3) 4px, transparent 8px, transparent 14px);
  opacity:.4;
}

.pv-cube{
  position: absolute; top: 50%; left: 50%;
  width: 40%; aspect-ratio: 1;
  transform: translate(-50%,-50%) rotateX(20deg) rotateY(-25deg);
  background:
    linear-gradient(135deg, var(--p3) 0%, var(--p2) 100%);
  box-shadow:
    14px 14px 0 -2px var(--p1),
    14px 14px 60px rgba(196,122,75,.5),
    inset -10px -10px 30px rgba(0,0,0,.3),
    inset 10px 10px 20px rgba(255,255,255,.15);
  border-radius: 4px;
}
.pv-smoke{
  position: absolute; top: 10%; left: 50%; transform: translateX(-50%);
  width: 30%; height: 50%;
  background: radial-gradient(ellipse at 50% 100%, var(--p3) 0%, transparent 60%);
  filter: blur(20px); opacity: .5;
  animation: smoke 5s ease-in-out infinite;
}
@keyframes smoke{ 0%,100%{ transform: translateX(-50%) scale(1); opacity:.5; } 50%{ transform: translateX(-45%) scale(1.2); opacity:.3; } }

.pv-jacket{
  position: absolute; top: 50%; left: 50%;
  width: 28%; aspect-ratio: 1 / 1.3;
  transform: translate(-50%,-50%);
  background:
    linear-gradient(160deg, var(--p3) 0%, var(--p2) 40%, var(--p1) 100%);
  clip-path: polygon(20% 0%, 80% 0%, 100% 15%, 100% 100%, 0% 100%, 0% 15%);
  box-shadow: 0 50px 100px rgba(0,0,0,.6), inset -20px -20px 60px rgba(0,0,0,.4);
}
.pv-jacket::before{
  content:''; position: absolute; top:0; left:50%; transform: translateX(-50%);
  width: 30%; height: 30%;
  background: linear-gradient(180deg, #050505 0%, transparent 100%);
  clip-path: polygon(20% 0, 80% 0, 100% 100%, 0 100%);
}
.pv-jacket::after{
  content:''; position: absolute; top: 8%; left:50%; transform: translateX(-50%);
  width: 1px; height: 80%;
  background: linear-gradient(180deg, transparent, var(--p3) 30%, transparent);
  opacity:.4;
}

.product-info{
  padding: 28px 32px 32px;
  display: flex; flex-direction: column; gap: 10px;
}
.product-cat{
  font-size: 10px; letter-spacing: .3em; text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
}
.product-name{
  font-family: var(--serif);
  font-size: 30px; font-weight: 400;
  letter-spacing: -.01em;
}
.product-name .reg{
  font-size: 12px;
  color: var(--ink-dim);
  vertical-align: super;
}
.product-desc{
  font-family: var(--jp-serif);
  color: var(--ink-dim);
  font-size: 13.5px; line-height: 1.85;
  font-weight: 300;
}
.product-foot{
  margin-top: 14px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; align-items: center;
}
.price{
  font-family: var(--serif);
  font-size: 18px; color: var(--ink);
}
.arrow{
  font-size: 11px; letter-spacing: .25em; text-transform: uppercase;
  color: var(--ink-dim);
  transition: all .3s;
}
.product:hover .arrow{ color: var(--accent); transform: translateX(4px); }

/* ============================================================
   STORY
   ============================================================ */
.story{
  background: var(--bg-2);
  padding: 160px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.story-grid{
  max-width: 1440px; margin: 0 auto;
  padding: 0 48px;
  display: grid; grid-template-columns: 1fr 1.1fr; gap: 100px;
  align-items: center;
}
.story-text{
  opacity:0; transform: translateX(-30px);
  transition: all 1s ease;
}
.story-text.in{ opacity:1; transform: translateX(0); }
.story-text p{
  font-family: var(--jp-serif);
  color: var(--ink-dim);
  font-size: 15px; line-height: 2.1;
  margin-bottom: 22px; margin-top: 22px;
  font-weight: 300;
}
.story-text em{
  font-style: italic;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 18px;
}

.story-visual{
  position: relative;
  height: 600px;
  opacity:0; transform: translateX(30px);
  transition: all 1s ease;
}
.story-visual.in{ opacity:1; transform: translateX(0); }
.sv-photo{
  position: absolute;
  border-radius: 6px;
  box-shadow: var(--shadow-2);
  overflow: hidden;
}
.sv-1{
  top:0; left:0;
  width: 56%; height: 70%;
  background:
    linear-gradient(135deg, rgba(217,178,124,.2) 0%, transparent 50%),
    linear-gradient(180deg, #2a2522 0%, #14110f 100%);
}
.sv-1::after{
  content:''; position: absolute; inset: 25% 25%;
  background:
    radial-gradient(ellipse at 50% 40%, var(--accent) 0%, transparent 60%);
  filter: blur(30px); opacity:.4;
}
.sv-2{
  top: 18%; right:0;
  width: 50%; height: 55%;
  background:
    linear-gradient(135deg, #1d2226 0%, #0a0d10 100%);
}
.sv-2::after{
  content:''; position: absolute; bottom: 20%; left: 20%; right: 20%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}
.sv-3{
  bottom: 0; left: 20%;
  width: 42%; height: 38%;
  background:
    linear-gradient(180deg, #3a2618 0%, #1a0f08 100%);
}
.sv-label{
  position: absolute; bottom: -36px; right: 0;
  font-size: 11px; letter-spacing: .3em; text-transform: uppercase;
  color: var(--ink-dim);
}

/* ============================================================
   JOURNAL
   ============================================================ */
.journal{ padding-bottom: 160px; }
.journal-grid{
  max-width: 1440px; margin: 0 auto;
  padding: 0 48px;
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 40px;
}
.jcard{
  opacity: 0; transform: translateY(30px);
  transition: all .8s ease;
  cursor: pointer;
}
.jcard.in{ opacity:1; transform: translateY(0); }
.jcard-img{
  width: 100%; aspect-ratio: 4/3;
  border-radius: 6px;
  margin-bottom: 24px;
  transition: transform .6s ease;
  position: relative; overflow: hidden;
}
.jcard:hover .jcard-img{ transform: scale(.98); }
.jcard-img-1{ background: linear-gradient(135deg, #2a2520 0%, #14110f 50%, #3a2818 100%); }
.jcard-img-2{ background: linear-gradient(135deg, #1d2638 0%, #0a0f1c 50%, #2a3a52 100%); }
.jcard-img-3{ background: linear-gradient(135deg, #2a1f2e 0%, #150f18 50%, #3a2a3e 100%); }
.jcard-img::after{
  content:''; position: absolute; inset: 30% 35%;
  background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
  filter: blur(40px); opacity: .3;
}
.jcard-tag{
  font-size: 11px; letter-spacing: .25em; text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px; display:block;
}
.jcard h3{
  font-family: var(--serif);
  font-size: 24px; font-weight: 400;
  margin-bottom: 12px; line-height: 1.3;
}
.jcard p{
  font-family: var(--jp-serif);
  font-size: 13.5px;
  color: var(--ink-dim);
  line-height: 1.8;
}

/* ============================================================
   NEWSLETTER
   ============================================================ */
.news{
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
  border-top: 1px solid var(--line);
  padding: 120px 0;
}
.news-inner{
  max-width: 1440px; margin: 0 auto;
  padding: 0 48px;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: end;
  opacity: 0; transform: translateY(20px);
  transition: all .8s ease;
}
.news-inner.in{ opacity:1; transform: translateY(0); }
.news-form{
  display: flex; gap: 12px;
  border-bottom: 1px solid var(--line-strong);
  padding-bottom: 12px;
}
.news-form input{
  flex: 1;
  background: transparent;
  border: none;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  padding: 12px 4px;
  outline: none;
}
.news-form input::placeholder{ color: var(--ink-dim); }
.news-form button{
  background: transparent;
  border: none;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 13px; letter-spacing: .14em; text-transform: uppercase;
  font-weight: 500;
  padding: 12px 0;
  cursor: pointer;
  transition: color .3s;
}
.news-form button:hover{ color: var(--accent); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer{
  background: #06060a;
  padding: 100px 0 40px;
  border-top: 1px solid var(--line);
}
.footer-grid{
  max-width: 1440px; margin: 0 auto;
  padding: 0 48px;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 80px;
}
.footer-brand p{
  margin-top: 24px;
  font-size: 13px;
  color: var(--ink-dim);
  line-height: 1.9;
}
.site-footer h4{
  font-size: 11px; letter-spacing: .25em; text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
  font-weight: 500;
}
.site-footer a{
  display: block;
  font-size: 13.5px;
  color: var(--ink-dim);
  padding: 6px 0;
  transition: color .25s;
}
.site-footer a:hover{ color: var(--ink); }
.footer-bottom{
  max-width: 1440px; margin: 0 auto;
  padding: 30px 48px 0;
  border-top: 1px solid var(--line);
  display: flex; justify-content: space-between;
  font-size: 11px; letter-spacing: .15em; text-transform: uppercase;
  color: var(--ink-dim);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px){
  .nav-inner{ padding: 0 28px; }
  .hero{ padding: 130px 28px 80px; }
  .hero-numbers{ right: 28px; gap: 32px; }
  .hero-numbers strong{ font-size: 36px; }
  .section-head{ padding: 100px 28px 60px; }
  .concept-grid, .story-grid, .news-inner{
    grid-template-columns: 1fr; gap: 50px; padding: 0 28px;
  }
  .products{
    grid-template-columns: repeat(2,1fr); padding: 0 28px;
  }
  .product.product-wide{ grid-column: span 2; }
  .products-5{ grid-template-columns: repeat(2, 1fr); }
  .products-5 .product:nth-child(1),
  .products-5 .product:nth-child(2),
  .products-5 .product:nth-child(3),
  .products-5 .product:nth-child(4),
  .products-5 .product:nth-child(5){ grid-column: auto; }
  .products-5 .product:nth-child(5){ grid-column: 1 / -1; max-width: 50%; margin: 0 auto; }
  .journal-grid{ grid-template-columns: 1fr; padding: 0 28px; gap: 60px; }
  .footer-grid{ grid-template-columns: 1fr 1fr; padding: 0 28px; }
  .footer-bottom{ padding: 30px 28px 0; flex-direction: column; gap: 12px; }
  .nav-links{ display: none; }
  .hide-sm{ display: none; }
}
@media (max-width: 640px){
  .hero-numbers{ display: none; }
  .products{ grid-template-columns: 1fr; }
  .product.product-wide{ grid-column: span 1; }
  .products-5 .product:nth-child(5){ max-width: 100%; }
  .footer-grid{ grid-template-columns: 1fr; gap: 40px; }
  .nav-cta{ display:none; }
  .hero-cta-row{ flex-direction: column; align-items: stretch; }
  .btn{ justify-content: center; }
}

/* ============================================================
   PRODUCT LP PAGE
   ============================================================ */
.lp-back{
  position: fixed; top: 28px; left: 48px; z-index: 60;
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; letter-spacing: .2em; text-transform: uppercase;
  color: var(--ink-dim);
  padding: 10px 16px;
  background: rgba(12,12,14,.7);
  backdrop-filter: blur(14px);
  border: 1px solid var(--line);
  border-radius: 999px;
}
.lp-back:hover{ color: var(--ink); border-color: var(--line-strong); }

.lp-hero{
  min-height: 100vh;
  padding: 120px 48px 80px;
  position: relative; overflow: hidden;
  display: flex; align-items: center;
}
.lp-hero-bg{
  position: absolute; inset:0; z-index:0;
  background:
    radial-gradient(ellipse at 30% 30%, var(--p2) 0%, var(--p1) 50%, #060608 100%);
}
.lp-hero-bg::after{
  content:''; position: absolute; inset:0;
  background: radial-gradient(ellipse at 50% 100%, rgba(0,0,0,.5), transparent 60%);
}
.lp-hero-grid{
  position: relative; z-index: 2;
  max-width: 1440px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center; width: 100%;
}
.lp-hero-info .pcat{
  font-size: 11px; letter-spacing: .3em; text-transform: uppercase;
  color: var(--p3); margin-bottom: 28px; display: block;
}
.lp-hero-info h1{
  font-family: var(--serif);
  font-size: clamp(48px, 7vw, 104px);
  font-weight: 300; line-height: .95;
  letter-spacing: -.02em;
  margin-bottom: 28px;
}
.lp-hero-info h1 .italic{ font-style: italic; color: var(--p3); }
.lp-hero-info .tagline{
  font-family: var(--jp-serif);
  font-size: 17px; line-height: 1.95;
  color: rgba(244,241,234,.85);
  max-width: 480px;
  margin-bottom: 36px;
}
.lp-meta-row{
  display: flex; gap: 36px;
  padding: 24px 0;
  border-top: 1px solid rgba(244,241,234,.15);
  border-bottom: 1px solid rgba(244,241,234,.15);
  margin-bottom: 36px;
}
.lp-meta-row div{
  font-size: 11px; letter-spacing: .2em; text-transform: uppercase;
  color: rgba(244,241,234,.6);
}
.lp-meta-row strong{
  display: block;
  font-family: var(--serif); font-style: italic;
  font-size: 22px; color: var(--ink);
  margin-bottom: 4px; font-weight: 400;
  letter-spacing: 0;
}
.lp-buy{
  display: inline-flex; align-items: center; gap: 14px;
  padding: 20px 36px;
  background: var(--ink); color: #0c0c0e;
  border-radius: 999px;
  font-size: 13px; letter-spacing: .15em; text-transform: uppercase;
  font-weight: 500;
  transition: all .3s;
}
.lp-buy:hover{ background: var(--p3); transform: translateY(-2px); box-shadow: 0 20px 50px rgba(0,0,0,.4); }

.lp-hero-visual{
  position: relative;
  aspect-ratio: 9 / 14;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-2);
}
.lp-hero-visual img{
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.lp-hero-visual .pv-orb,
.lp-hero-visual .pv-ring,
.lp-hero-visual .pv-earring,
.lp-hero-visual .pv-pen,
.lp-hero-visual .pv-bottle,
.lp-hero-visual .pv-mask,
.lp-hero-visual .pv-cube,
.lp-hero-visual .pv-jacket{
  transform-origin: center;
}
.lp-hero-visual .pv-orb{ width: 60%; }
.lp-hero-visual .pv-jacket{ width: 50%; }

.lp-section{
  max-width: 1280px; margin: 0 auto;
  padding: 140px 48px;
}
.lp-section.dark{ background: var(--bg-2); max-width: none; padding-left: 0; padding-right: 0; }
.lp-section.dark .lp-section-inner{ max-width: 1280px; margin: 0 auto; padding: 0 48px; }

.lp-intro{
  display: grid; grid-template-columns: 1fr 2fr; gap: 80px;
  align-items: start;
}
.lp-intro .label{
  font-size: 11px; letter-spacing: .3em; text-transform: uppercase;
  color: var(--accent);
}
.lp-intro h2{
  font-family: var(--serif);
  font-size: clamp(36px, 4.5vw, 64px);
  font-weight: 300; line-height: 1.1;
  letter-spacing: -.015em;
}
.lp-intro h2 .italic{ font-style: italic; color: var(--accent); }
.lp-intro-text{
  font-family: var(--jp-serif);
  font-size: 16px; line-height: 2;
  color: var(--ink-dim);
}
.lp-intro-text p{ margin-bottom: 22px; }
.lp-intro-text em{ font-style: normal; color: var(--ink); border-bottom: 1px solid var(--accent); padding-bottom: 1px; }

.lp-features{
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.feat{
  padding: 40px 32px;
  border: 1px solid var(--line);
  border-radius: 8px;
  transition: all .4s;
}
.feat:hover{
  background: rgba(217,178,124,.04);
  border-color: var(--line-strong);
}
.feat-icon{
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--p3) 0%, var(--p2) 100%);
  margin-bottom: 24px;
  box-shadow: 0 10px 30px rgba(0,0,0,.3);
  position: relative;
}
.feat-icon::after{
  content:''; position: absolute; inset: 30%;
  background: rgba(255,255,255,.4);
  border-radius: 50%;
  filter: blur(4px);
}
.feat h3{
  font-family: var(--serif);
  font-size: 24px; font-weight: 400;
  margin-bottom: 12px;
}
.feat p{
  font-family: var(--jp-serif);
  font-size: 14px; line-height: 1.9;
  color: var(--ink-dim);
}

.lp-spec{
  display: grid; grid-template-columns: 1fr 2fr; gap: 80px;
}
.lp-spec h2{
  font-family: var(--serif);
  font-size: 48px; font-weight: 300;
  letter-spacing: -.015em;
}
.spec-table{ width: 100%; }
.spec-row{
  display: grid; grid-template-columns: 1fr 2fr;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
}
.spec-row span:first-child{
  font-size: 11px; letter-spacing: .2em; text-transform: uppercase;
  color: var(--ink-dim);
}
.spec-row span:last-child{
  font-family: var(--jp-serif);
  color: var(--ink);
}

.lp-quote{
  text-align: center;
  padding: 80px 48px;
  max-width: 900px; margin: 0 auto;
}
.lp-quote q{
  font-family: var(--serif); font-style: italic;
  font-size: clamp(28px, 3.5vw, 44px);
  line-height: 1.35;
  font-weight: 300;
  color: var(--ink);
  display: block;
  margin-bottom: 32px;
  quotes: "“" "”";
}
.lp-quote .who{
  font-size: 11px; letter-spacing: .3em; text-transform: uppercase;
  color: var(--accent);
}

.lp-cta{
  text-align: center;
  padding: 160px 48px;
  background: radial-gradient(ellipse at center, var(--p1) 0%, #060608 80%);
  border-top: 1px solid var(--line);
}
.lp-cta h2{
  font-family: var(--serif);
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 300; line-height: 1.05;
  margin-bottom: 24px;
  letter-spacing: -.015em;
}
.lp-cta h2 .italic{ font-style: italic; color: var(--p3); }
.lp-cta p{
  color: var(--ink-dim);
  font-family: var(--jp-serif);
  margin-bottom: 40px;
}

@media (max-width: 1100px){
  .lp-back{ left: 20px; top: 20px; }
  .lp-hero{ padding: 100px 28px 60px; }
  .lp-hero-grid{ grid-template-columns: 1fr; gap: 60px; }
  .lp-section{ padding: 100px 28px; }
  .lp-section.dark .lp-section-inner{ padding: 0 28px; }
  .lp-intro, .lp-spec{ grid-template-columns: 1fr; gap: 40px; }
  .lp-features{ grid-template-columns: 1fr; }
}
