:root {
  --white: #FFFFFF;
  --off: #F5F3EF;
  --black: #0A0A0A;
  --mid: #3A3A3A;
  --muted: #888;
  --red: #CC0000;
  --red-dark: #990000;
  --red-glow: rgba(204,0,0,0.18);
  --line: rgba(0,0,0,0.08);
  --noise: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'DM Sans', sans-serif; background: var(--white); color: var(--black); font-size: 16px; line-height: 1.6; overflow-x: hidden; -webkit-font-smoothing: antialiased; }
body::after { content: ''; position: fixed; inset: 0; background-image: var(--noise); pointer-events: none; z-index: 9999; opacity: 0.5; }

/* CURSOR GLOW */
.cursor-glow { position: fixed; width: 500px; height: 500px; border-radius: 50%; background: radial-gradient(circle, rgba(204,0,0,0.10) 0%, rgba(204,0,0,0.03) 40%, transparent 70%); pointer-events: none; z-index: 9998; transform: translate(-50%,-50%); transition: opacity 0.3s; opacity: 0; }

/* SCROLL REVEAL */
.reveal { opacity: 0; transform: translateY(32px); transition: opacity 0.75s cubic-bezier(0.16,1,0.3,1), transform 0.75s cubic-bezier(0.16,1,0.3,1); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-32px); transition: opacity 0.75s cubic-bezier(0.16,1,0.3,1), transform 0.75s cubic-bezier(0.16,1,0.3,1); }
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(32px); transition: opacity 0.75s cubic-bezier(0.16,1,0.3,1), transform 0.75s cubic-bezier(0.16,1,0.3,1); }
.reveal-right.visible { opacity: 1; transform: translateX(0); }

/* Language — html class set by inline script in <head> before render */
html.lang-da [data-lang="en"],
html.lang-en [data-lang="da"] { display: none !important; }

/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.1rem 3.5rem;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--line);
  transition: padding 0.3s, box-shadow 0.3s;
}
nav.scrolled { padding: 0.75rem 3.5rem; box-shadow: 0 8px 32px rgba(0,0,0,0.06); }

.logo { display: flex; align-items: center; gap: 0.7rem; text-decoration: none; }
.logo-birds { width: 54px; height: 34px; }
.logo-text { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; font-weight: 600; letter-spacing: 0.04em; color: var(--black); }
.logo-ori { font-family: 'Cormorant Garamond', serif; font-size: 0.78rem; font-weight: 300; letter-spacing: 0.18em; color: var(--muted); margin-left: 0.1rem; }

nav ul { display: flex; gap: 2.5rem; list-style: none; }
nav ul a { text-decoration: none; font-size: 0.8rem; font-weight: 400; letter-spacing: 0.08em; text-transform: uppercase; color: var(--mid); transition: color 0.2s; }
nav ul a:hover, nav ul a.active { color: var(--red); }

.nav-right { display: flex; align-items: center; gap: 1.5rem; }

/* NAV CART BUTTON */
.nav-cart-btn { position: relative; background: none; border: 1px solid var(--line); padding: 0.45rem 0.6rem; cursor: pointer; color: var(--black); display: flex; align-items: center; transition: border-color 0.2s, background 0.2s; }
.nav-cart-btn:hover { border-color: var(--black); background: var(--off); }
.nav-cart-badge { position: absolute; top: -6px; right: -6px; background: var(--red); color: white; font-size: 0.55rem; font-weight: 700; font-family: 'Space Mono', monospace; width: 16px; height: 16px; border-radius: 50%; display: flex; align-items: center; justify-content: center; }

/* NAV CART OVERLAY */
.nav-cart-overlay { display: none; position: fixed; inset: 0; z-index: 199; }
.nav-cart-overlay.open { display: block; }

/* NAV CART DROPDOWN */
.nav-cart-dropdown {
  position: fixed;
  top: 0;
  right: 0;
  width: 420px;
  max-width: 100vw;
  height: 100vh;
  background: var(--white);
  z-index: 200;
  box-shadow: -12px 0 48px rgba(0,0,0,0.12);
  transform: translateX(100%);
  transition: transform 0.45s cubic-bezier(0.16,1,0.3,1);
  display: flex;
  flex-direction: column;
}
.nav-cart-dropdown.open { transform: translateX(0); }

.ncd-inner { display: flex; flex-direction: column; height: 100%; padding: 2rem; overflow-y: auto; }

.ncd-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 2rem; padding-bottom: 1.2rem; border-bottom: 1px solid var(--line); }
.ncd-title { font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; font-weight: 300; }
.ncd-close { background: none; border: none; font-size: 1rem; cursor: pointer; color: var(--muted); padding: 0.3rem 0.5rem; transition: color 0.2s; }
.ncd-close:hover { color: var(--black); }

.ncd-item { display: flex; gap: 1.2rem; padding: 1.5rem 0; border-bottom: 1px solid var(--line); }
.ncd-img { width: 80px; height: 80px; background: var(--black); flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
.ncd-img img { width: 65%; object-fit: contain; }
.ncd-info { flex: 1; }
.ncd-name { font-family: 'Cormorant Garamond', serif; font-size: 1.15rem; font-weight: 400; margin-bottom: 0.25rem; }
.ncd-name em { font-style: italic; }
.ncd-desc { font-size: 0.75rem; font-weight: 300; color: var(--muted); margin-bottom: 0.8rem; }
.ncd-qty-row { display: flex; align-items: center; gap: 0.5rem; }
.ncd-qty-btn { width: 30px; height: 30px; background: none; border: 1px solid var(--line); font-size: 1rem; font-weight: 300; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background 0.2s; }
.ncd-qty-btn:hover { background: var(--off); }
.ncd-qty-num { min-width: 28px; text-align: center; font-family: 'Space Mono', monospace; font-size: 0.85rem; }
.ncd-unit-price { font-size: 0.72rem; color: var(--muted); margin-left: 0.3rem; }

.ncd-totals { padding: 1.2rem 0; margin-top: auto; border-top: 1px solid var(--line); }
.ncd-total-row { display: flex; justify-content: space-between; font-size: 0.82rem; color: var(--muted); padding: 0.3rem 0; }
.ncd-total-bold { font-size: 1rem; color: var(--black); font-weight: 500; padding-top: 0.8rem; margin-top: 0.4rem; border-top: 1px solid var(--line); }
.ncd-total-bold span:last-child { font-family: 'Space Mono', monospace; }

.ncd-checkout-btn { display: block; background: var(--black); color: white; text-decoration: none; text-align: center; padding: 1rem; font-family: 'DM Sans', sans-serif; font-size: 0.78rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; margin-top: 1.2rem; position: relative; overflow: hidden; transition: transform 0.2s; }
.ncd-checkout-btn::before { content: ''; position: absolute; inset: 0; background: var(--red); transform: scaleX(0); transform-origin: left; transition: transform 0.4s cubic-bezier(0.16,1,0.3,1); }
.ncd-checkout-btn:hover::before { transform: scaleX(1); }
.ncd-checkout-btn:hover { transform: translateY(-1px); }
.ncd-checkout-btn span { position: relative; z-index: 1; }
.lang-toggle { display: flex; border: 1px solid var(--line); }
.lang-btn { background: none; border: none; font-family: 'DM Sans', sans-serif; font-size: 0.72rem; font-weight: 400; padding: 0.3rem 0.65rem; cursor: pointer; color: var(--muted); transition: all 0.2s; }
.lang-btn.active { background: var(--black); color: white; }

.btn-nav { background: var(--red); color: white; border: none; padding: 0.55rem 1.4rem; font-family: 'DM Sans', sans-serif; font-size: 0.78rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; cursor: pointer; text-decoration: none; transition: background 0.2s; }
.btn-nav:hover { background: var(--red-dark); }

/* HERO */
.hero { min-height: 100vh; display: grid; grid-template-columns: 52% 48%; padding-top: 62px; position: relative; }
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 20% 50%, rgba(204,0,0,0.04) 0%, transparent 60%),
              radial-gradient(ellipse 50% 80% at 80% 20%, rgba(0,0,0,0.03) 0%, transparent 60%);
  pointer-events: none;
}

.hero-left { display: flex; flex-direction: column; justify-content: center; padding: 5rem 4.5rem 5rem 5rem; }

.hero-tag { font-size: 0.72rem; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase; color: var(--red); margin-bottom: 2rem; display: flex; align-items: center; gap: 0.8rem; }
.hero-tag::before { content: ''; display: block; width: 28px; height: 1px; background: var(--red); }

.hero-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(3.4rem, 5.5vw, 5.8rem); font-weight: 300; line-height: 1.02; letter-spacing: -0.01em; color: var(--black); margin-bottom: 1rem; }
.hero-title em { font-style: italic; color: var(--red); position: relative; }
.hero-title em::after { content: ''; position: absolute; bottom: 2px; left: 0; right: 0; height: 2px; background: var(--red); transform: scaleX(0); transform-origin: left; animation: underlineReveal 0.8s 1.2s cubic-bezier(0.16,1,0.3,1) forwards; }
@keyframes underlineReveal { to { transform: scaleX(1); } }

.hero-slogan { font-family: 'Cormorant Garamond', serif; font-size: 1rem; font-weight: 300; font-style: italic; color: var(--muted); letter-spacing: 0.08em; margin-bottom: 2.2rem; display: block; }

.hero-desc { font-size: 0.96rem; font-weight: 300; color: var(--mid); max-width: 390px; line-height: 1.9; margin-bottom: 3rem; }

.hero-cta { display: flex; align-items: center; gap: 2rem; }

.btn-primary { background: var(--black); color: white; padding: 1rem 2.4rem; font-family: 'DM Sans', sans-serif; font-size: 0.82rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; text-decoration: none; border: none; cursor: pointer; transition: background 0.25s, transform 0.2s, box-shadow 0.25s; display: inline-block; position: relative; overflow: hidden; }
.btn-primary::before { content: ''; position: absolute; inset: 0; background: var(--red); transform: scaleX(0); transform-origin: left; transition: transform 0.35s cubic-bezier(0.16,1,0.3,1); }
.btn-primary span { position: relative; z-index: 1; }
.btn-primary:hover::before { transform: scaleX(1); }
.btn-primary:hover { box-shadow: 0 8px 24px var(--red-glow); transform: translateY(-2px); }
.btn-primary:active { transform: translateY(0); }

.btn-ghost { color: var(--muted); font-size: 0.82rem; font-weight: 400; text-decoration: none; display: flex; align-items: center; gap: 0.5rem; transition: color 0.2s; }
.btn-ghost:hover { color: var(--black); }
.btn-ghost::after { content: '→'; transition: transform 0.2s; }
.btn-ghost:hover::after { transform: translateX(4px); }

/* HERO RIGHT */
.hero-right { background: var(--black); display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.hero-right::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(204,0,0,0.12) 0%, transparent 70%);
  animation: pulseGlow 4s ease-in-out infinite;
}
@keyframes pulseGlow { 0%,100% { opacity: 0.6; transform: scale(1); } 50% { opacity: 1; transform: scale(1.15); } }

#particle-canvas { position: absolute; inset: 0; z-index: 1; }

.hero-floating-orb { position: absolute; border-radius: 50%; pointer-events: none; }
.orb-1 { width: 300px; height: 300px; top: -80px; right: -80px; background: radial-gradient(circle, rgba(204,0,0,0.15), transparent 70%); animation: floatOrb 8s ease-in-out infinite; }
.orb-2 { width: 200px; height: 200px; bottom: -60px; left: -40px; background: radial-gradient(circle, rgba(255,255,255,0.04), transparent 70%); animation: floatOrb 6s ease-in-out infinite reverse; }
@keyframes floatOrb { 0%,100% { transform: translate(0,0); } 50% { transform: translate(20px,-30px); } }

.hero-ori-bg { position: absolute; font-family: 'Cormorant Garamond', serif; font-size: 22rem; font-weight: 300; color: rgba(255,255,255,0.03); top: 50%; left: 50%; transform: translate(-50%, -50%); pointer-events: none; user-select: none; letter-spacing: -0.05em; line-height: 1; z-index: 2; animation: slowSpin 30s linear infinite; }
@keyframes slowSpin { from { transform: translate(-50%,-50%) rotate(0deg); } to { transform: translate(-50%,-50%) rotate(360deg); } }

.hero-img-wrap { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 2rem; width: 100%; padding: 3rem; }

.tilt-card { transform-style: preserve-3d; transition: transform 0.15s ease; }

.hero-price-tag { background: var(--red); color: white; padding: 1rem 2rem; text-align: center; display: flex; align-items: baseline; gap: 0.5rem; justify-content: center; position: relative; overflow: hidden; }
.hero-price-tag::before { content: ''; position: absolute; top: 0; left: -100%; width: 60%; height: 100%; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent); animation: shimmer 3s ease-in-out infinite; }
@keyframes shimmer { 0% { left: -100%; } 100% { left: 200%; } }
.price-num { font-family: 'Cormorant Garamond', serif; font-size: 2.4rem; font-weight: 400; line-height: 1; }
.price-unit { font-size: 0.72rem; font-weight: 400; letter-spacing: 0.1em; text-transform: uppercase; opacity: 0.85; }

.hero-corner { position: absolute; bottom: 2rem; right: 2rem; font-size: 0.65rem; font-weight: 300; color: rgba(255,255,255,0.18); letter-spacing: 0.2em; text-transform: uppercase; }

/* STRIP */
.strip { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.strip-item { padding: 2rem 2.5rem; border-right: 1px solid var(--line); display: flex; flex-direction: column; gap: 0.2rem; transition: background 0.3s; cursor: default; }
.strip-item:last-child { border-right: none; }
.strip-item:hover { background: var(--off); }
.strip-item:hover .strip-num { color: var(--red); }
.strip-num { font-family: 'Cormorant Garamond', serif; font-size: 2.2rem; font-weight: 300; line-height: 1; transition: color 0.3s; }
.strip-num span { color: var(--red); font-size: 1.2rem; }
.strip-label { font-size: 0.72rem; font-weight: 400; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); }

/* PAGE HERO (non-home pages) */
.page-hero {
  background: var(--black); color: white;
  padding: 10rem 5rem 5rem;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 60% at 20% 50%, rgba(204,0,0,0.1) 0%, transparent 60%);
  pointer-events: none;
}
.page-hero-kanji {
  position: absolute; right: 3rem; top: 50%; transform: translateY(-50%);
  font-family: 'Cormorant Garamond', serif; font-size: 18rem; font-weight: 300;
  color: rgba(255,255,255,0.025); pointer-events: none; line-height: 1;
}
.page-hero-eyebrow {
  font-size: 0.72rem; font-weight: 500; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--red); margin-bottom: 1rem;
  display: flex; align-items: center; gap: 0.8rem;
}
.page-hero-eyebrow::before { content: ''; display: block; width: 24px; height: 1px; background: var(--red); }
.page-hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 300; line-height: 1.05; color: white;
}
.page-hero-title em { font-style: italic; color: var(--red); }

/* PRODUCT SECTION */
.product-section { padding: 8rem 5rem; display: grid; grid-template-columns: 1fr 1fr; gap: 7rem; align-items: center; background: var(--off); position: relative; overflow: hidden; }
.product-section::before { content: ''; position: absolute; top: 0; right: 0; width: 50%; height: 100%; background: radial-gradient(ellipse 80% 60% at 80% 50%, rgba(204,0,0,0.04), transparent); pointer-events: none; }

.product-visual { position: relative; }
.product-bg { position: absolute; top: -2.5rem; left: -2.5rem; right: -2.5rem; bottom: -2.5rem; background: var(--black); z-index: 0; }
.product-inner { position: relative; z-index: 1; display: flex; align-items: center; justify-content: center; padding: 4rem; min-height: 440px; perspective: 800px; }
.product-inner-tilt { transform-style: preserve-3d; transition: transform 0.2s ease; width: 100%; display: flex; align-items: center; justify-content: center; }

.product-ori-mark { position: absolute; top: 1.5rem; left: 1.8rem; font-family: 'Cormorant Garamond', serif; font-size: 0.65rem; font-weight: 300; color: rgba(255,255,255,0.25); letter-spacing: 0.2em; text-transform: uppercase; }

.product-eyebrow { font-size: 0.72rem; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase; color: var(--red); margin-bottom: 1rem; display: flex; align-items: center; gap: 0.8rem; }
.product-eyebrow::before { content: ''; display: block; width: 24px; height: 1px; background: var(--red); }

.product-name { font-family: 'Cormorant Garamond', serif; font-size: clamp(2.2rem, 3.5vw, 3.2rem); font-weight: 300; line-height: 1.1; margin-bottom: 0.3rem; }
.product-name em { font-style: italic; }
.product-sub { font-size: 0.82rem; font-weight: 300; color: var(--muted); letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 2rem; display: block; }

.product-desc { font-size: 0.95rem; font-weight: 300; color: var(--mid); line-height: 1.9; margin-bottom: 2.5rem; max-width: 420px; }

.specs { display: flex; flex-direction: column; border-top: 1px solid var(--line); margin-bottom: 2.5rem; }
.spec-row { display: flex; justify-content: space-between; align-items: center; padding: 0.85rem 0; border-bottom: 1px solid rgba(0,0,0,0.05); font-size: 0.85rem; transition: padding-left 0.2s, background 0.2s; border-radius: 4px; }
.spec-row:hover { padding-left: 0.5rem; background: rgba(204,0,0,0.03); }
.spec-l { font-weight: 400; color: var(--black); }
.spec-r { font-weight: 400; color: var(--black); }
.spec-r strong { color: var(--black); font-weight: 400; }

.product-buy { display: flex; align-items: center; gap: 2rem; }
.qty-selector { display: flex; align-items: center; border: 1px solid var(--line); height: 46px; }
.qty-btn { width: 40px; height: 100%; background: none; border: none; font-size: 1.2rem; font-weight: 300; color: var(--black); cursor: pointer; transition: background 0.2s; display: flex; align-items: center; justify-content: center; }
.qty-btn:hover { background: var(--off); }
.qty-num { min-width: 36px; text-align: center; font-family: 'Space Mono', monospace; font-size: 0.9rem; font-weight: 400; border-left: 1px solid var(--line); border-right: 1px solid var(--line); height: 100%; display: flex; align-items: center; justify-content: center; }
.product-price { font-family: 'Cormorant Garamond', serif; font-size: 2.6rem; font-weight: 300; line-height: 1; }
.product-price small { font-family: 'DM Sans', sans-serif; font-size: 0.85rem; color: var(--muted); font-weight: 300; margin-left: 0.2rem; }

/* STORY */
.story-section { background: var(--black); color: white; padding: 8rem 4rem; display: grid; grid-template-columns: 1fr 0.9fr 1fr; gap: 4rem; align-items: center; position: relative; overflow: hidden; }
.story-section::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 70% 50% at 25% 50%, rgba(204,0,0,0.1) 0%, transparent 60%); pointer-events: none; animation: storyPulse 5s ease-in-out infinite; }
@keyframes storyPulse { 0%,100% { opacity: 0.7; } 50% { opacity: 1; } }
.story-bg-word { position: absolute; right: -1rem; top: 50%; transform: translateY(-50%); font-family: 'Cormorant Garamond', serif; font-size: 20rem; font-weight: 300; color: rgba(255,255,255,0.025); pointer-events: none; line-height: 1; letter-spacing: -0.05em; }
.story-eyebrow { font-size: 0.72rem; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase; color: var(--red); margin-bottom: 1.5rem; display: flex; align-items: center; gap: 0.8rem; }
.story-eyebrow::before { content: ''; display: block; width: 24px; height: 1px; background: var(--red); }
.story-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(2rem, 3.5vw, 3.2rem); font-weight: 300; line-height: 1.15; margin-bottom: 2rem; color: white; }
.story-title em { font-style: italic; color: var(--red); }
.story-body { font-size: 0.9rem; font-weight: 300; color: rgba(255,255,255,0.5); line-height: 2; margin-bottom: 1.5rem; }

.story-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: rgba(255,255,255,0.07); position: relative; z-index: 1; }
.story-card { background: var(--black); padding: 2.5rem 2rem; }
.story-card.red { background: var(--red); }
.story-card-icon { font-family: 'Cormorant Garamond', serif; font-size: 2.5rem; font-weight: 300; color: rgba(255,255,255,0.12); display: block; margin-bottom: 1rem; line-height: 1; }
.story-card.red .story-card-icon { color: rgba(255,255,255,0.25); }
.story-card-title { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; font-weight: 400; color: white; display: block; margin-bottom: 0.5rem; }
.story-card-body { font-size: 0.78rem; font-weight: 300; color: rgba(255,255,255,0.45); line-height: 1.7; }
.story-card.red .story-card-body { color: rgba(255,255,255,0.8); }

/* 3D HANGER VIEWER */
.hanger3d-wrap { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 1.2rem; }
.hanger3d { position: relative; width: 100%; max-width: 420px; aspect-ratio: 1/1; cursor: grab; user-select: none; -webkit-user-select: none; touch-action: none; }
.hanger3d.grabbing { cursor: grabbing; }
.hanger3d canvas { display: block; width: 100% !important; height: 100% !important; }
.hanger3d-label-top { font-family: 'Space Mono', monospace; font-size: 0.6rem; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.35); align-self: flex-start; }
.hanger3d-meta { display: flex; justify-content: space-between; align-items: center; width: 100%; max-width: 420px; font-family: 'Space Mono', monospace; font-size: 0.62rem; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255,255,255,0.35); }
.hanger3d-meta .dot { display: inline-block; width: 6px; height: 6px; border-radius: 50%; background: var(--red); margin-right: 0.5rem; vertical-align: middle; animation: blink 1.6s ease-in-out infinite; }
.hanger3d-hint { font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.4); display: flex; align-items: center; gap: 0.5rem; transition: opacity 0.4s; white-space: nowrap; }
.hanger3d-hint::before, .hanger3d-hint::after { content: ''; display: block; width: 14px; height: 1px; background: rgba(255,255,255,0.25); }
.hanger3d-wrap.engaged .hanger3d-hint { opacity: 0.2; }
.hanger3d-loader { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.25); font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase; pointer-events: none; transition: opacity 0.5s; }
.hanger3d-wrap.ready .hanger3d-loader { opacity: 0; }

/* CONTACT */
.contact-section { background: var(--off); padding: 8rem 5rem; display: grid; grid-template-columns: 1fr 1.2fr; gap: 7rem; position: relative; overflow: hidden; }
.contact-section::before { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--red), transparent); }
.contact-eyebrow { font-size: 0.72rem; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase; color: var(--red); margin-bottom: 1rem; display: flex; align-items: center; gap: 0.8rem; }
.contact-eyebrow::before { content: ''; display: block; width: 24px; height: 1px; background: var(--red); }
.contact-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(2rem, 3vw, 2.8rem); font-weight: 300; line-height: 1.2; margin-bottom: 1.5rem; }
.contact-title em { font-style: italic; }
.contact-body { font-size: 0.9rem; font-weight: 300; color: var(--mid); line-height: 1.9; margin-bottom: 2.5rem; }
.c-rows { display: flex; flex-direction: column; }
.c-row { display: flex; gap: 2rem; padding: 1rem 0; border-bottom: 1px solid var(--line); }
.c-row:first-child { border-top: 1px solid var(--line); }
.c-lbl { font-size: 0.68rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); min-width: 70px; padding-top: 2px; }
.c-val { font-size: 0.88rem; font-weight: 300; color: var(--black); }

.contact-form { display: flex; flex-direction: column; gap: 1.2rem; }
.fg { display: flex; flex-direction: column; gap: 0.4rem; }
.fg label { font-size: 0.68rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }
.fg input, .fg textarea, .fg select { background: white; border: 1px solid var(--line); padding: 0.82rem 1rem; font-family: 'DM Sans', sans-serif; font-size: 0.88rem; font-weight: 300; color: var(--black); outline: none; transition: border-color 0.2s; width: 100%; appearance: none; border-radius: 0; }
.fg input:focus, .fg textarea:focus, .fg select:focus { border-color: var(--red); }
.fg textarea { resize: vertical; min-height: 110px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* FOOTER */
footer { background: var(--black); padding: 4rem 5rem 2.5rem; position: relative; overflow: hidden; }
footer::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, var(--red), transparent); }
.footer-top { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr; gap: 4rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,0.06); margin-bottom: 2rem; }
.footer-brand { display: flex; align-items: center; gap: 0.6rem; margin-bottom: 0.5rem; }
.footer-brand-name { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; font-weight: 600; color: white; letter-spacing: 0.03em; }
.footer-brand-sub { font-size: 0.68rem; font-weight: 300; color: var(--red); letter-spacing: 0.18em; text-transform: uppercase; display: block; margin-bottom: 1.2rem; font-style: italic; font-family: 'Cormorant Garamond', serif; }
.footer-desc { font-size: 0.78rem; font-weight: 300; color: rgba(255,255,255,0.28); line-height: 1.8; }
.footer-col h4 { font-size: 0.65rem; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 1.2rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col ul a { text-decoration: none; font-size: 0.78rem; font-weight: 300; color: rgba(255,255,255,0.28); transition: color 0.2s; }
.footer-col ul a:hover { color: var(--red); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; font-size: 0.7rem; font-weight: 300; color: rgba(255,255,255,0.18); }

/* ANIMATIONS */
@keyframes fadeUp { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: translateY(0); } }
.hero-left > * { animation: fadeUp 0.85s ease both; }
.hero-left > *:nth-child(1) { animation-delay: 0.1s; }
.hero-left > *:nth-child(2) { animation-delay: 0.22s; }
.hero-left > *:nth-child(3) { animation-delay: 0.34s; }
.hero-left > *:nth-child(4) { animation-delay: 0.46s; }
.hero-left > *:nth-child(5) { animation-delay: 0.58s; }

/* LIVE COUNTER BADGE */
.hero-live-badge { display: inline-flex; align-items: center; gap: 0.5rem; font-family: 'Space Mono', monospace; font-size: 0.7rem; color: var(--red); letter-spacing: 0.05em; margin-bottom: 1.2rem; }
.hero-live-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--red); animation: blink 1.4s ease-in-out infinite; }
@keyframes blink { 0%,100% { opacity: 1; } 50% { opacity: 0.2; } }

.count-num { font-family: 'Space Mono', monospace; font-size: 0.85rem; font-weight: 700; color: var(--red); }

/* PRODUCT 3D VISUAL */
.product-3d-wrap { position: relative; z-index: 2; cursor: crosshair; }
.product-3d-label { position: absolute; font-family: 'Space Mono', monospace; font-size: 0.6rem; letter-spacing: 0.15em; color: rgba(255,255,255,0.25); text-transform: uppercase; }
.label-tl { top: -1.5rem; left: 0; }
.label-br { bottom: -1.5rem; right: 0; text-align: right; }

/* CLIP VISUALIZER */
.clip-grid { display: grid; grid-template-columns: repeat(13, 1fr); gap: 4px; margin: 1.5rem 0; }
.clip-dot { width: 100%; aspect-ratio: 1; border-radius: 50%; background: rgba(255,255,255,0.12); transition: background 0.15s, transform 0.15s; cursor: pointer; }
.clip-dot.active { background: var(--red); transform: scale(1.3); }
.clip-dot:hover { background: rgba(204,0,0,0.6); transform: scale(1.2); }

/* SHOP */
.shop-section { padding: 8rem 5rem; }
.shop-scroll-hint { display: none; }
.shop-header { margin-bottom: 4rem; border-bottom: 1px solid var(--line); padding-bottom: 1.5rem; display: flex; align-items: flex-end; justify-content: space-between; }
.shop-eyebrow { font-size: 0.72rem; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase; color: var(--red); margin-bottom: 0.6rem; }
.shop-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(2rem, 3vw, 2.8rem); font-weight: 300; line-height: 1.15; }
.shop-title em { font-style: italic; }
.shop-count { font-size: 0.78rem; font-weight: 300; color: var(--muted); letter-spacing: 0.04em; }

.shop-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }

.shop-card { background: var(--white); border: 1px solid var(--line); cursor: pointer; transition: transform 0.35s cubic-bezier(0.16,1,0.3,1), box-shadow 0.35s; position: relative; overflow: hidden; }
.shop-card::after { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, transparent 40%, rgba(204,0,0,0.04)); opacity: 0; transition: opacity 0.3s; pointer-events: none; }
.shop-card:hover { transform: translateY(-8px); box-shadow: 0 24px 60px rgba(0,0,0,0.12); z-index: 2; }
.shop-card:hover::after { opacity: 1; }

.shop-card-img {
  background: var(--black);
  aspect-ratio: 4/3;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: visible;
  perspective: 600px;
}

.shop-card-img-kanji {
  position: absolute;
  font-family: 'Cormorant Garamond', serif;
  font-size: 10rem; font-weight: 300;
  color: rgba(255,255,255,0.04);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none; user-select: none; line-height: 1;
  animation: slowSpin 30s linear infinite;
}

.shop-card-badge {
  position: absolute; top: 1rem; left: 1rem; z-index: 2;
  background: var(--red); color: white;
  font-size: 0.65rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.25rem 0.65rem;
}

.shop-card-body { padding: 1.5rem 1.8rem 1.8rem; }
.shop-card-tag { font-size: 0.68rem; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--red); margin-bottom: 0.5rem; display: flex; align-items: center; gap: 0.5rem; }
.shop-card-tag::before { content: ''; display: block; width: 16px; height: 1px; background: var(--red); }
.shop-card-name { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; font-weight: 400; line-height: 1.1; margin-bottom: 0.4rem; }
.shop-card-name em { font-style: italic; }
.shop-card-desc { font-size: 0.82rem; font-weight: 300; color: var(--muted); line-height: 1.7; margin-bottom: 1.5rem; }
.shop-card-footer { display: flex; align-items: center; justify-content: space-between; padding-top: 1.2rem; border-top: 1px solid var(--line); }
.shop-card-price { font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; font-weight: 300; line-height: 1; }
.shop-card-price small { font-family: 'DM Sans', sans-serif; font-size: 0.75rem; font-weight: 300; color: var(--muted); margin-left: 0.2rem; }
.shop-card-price-shipping { font-size: 0.7rem; font-weight: 300; color: var(--muted); margin-top: 0.2rem; }
.shop-card-btn { background: var(--black); color: white; border: none; padding: 0.65rem 1.4rem; font-family: 'DM Sans', sans-serif; font-size: 0.75rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; cursor: pointer; transition: transform 0.2s, box-shadow 0.2s; text-decoration: none; display: inline-block; position: relative; overflow: hidden; }
.shop-card-btn::before { content: ''; position: absolute; inset: 0; background: var(--red); transform: scaleX(0); transform-origin: left; transition: transform 0.35s cubic-bezier(0.16,1,0.3,1); }
.shop-card-btn span { position: relative; z-index: 1; }
.shop-card-btn:hover::before { transform: scaleX(1); }
.shop-card-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 16px var(--red-glow); }
.shop-card-btn-ghost { background: transparent; color: var(--black); border: 1px solid rgba(0,0,0,0.2); }
.shop-card-btn-ghost::before { background: var(--off); }
.shop-card-btn-ghost:hover { box-shadow: none; }
.shop-card-soon { opacity: 0.4; pointer-events: none; }
.shop-card-soon .shop-card-img { background: var(--off); }
.shop-soon-label { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); font-size: 0.7rem; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); z-index: 2; white-space: nowrap; }

/* EDIT MODE */
#edit-toggle {
  position: fixed; bottom: 1.4rem; right: 1.6rem; z-index: 1000;
  background: var(--red); color: white; border: none;
  width: 48px; height: 48px; border-radius: 50%;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 18px rgba(204,0,0,0.4);
  font-size: 1.1rem; transition: background 0.2s, transform 0.2s;
}
#edit-toggle:hover { background: var(--red-dark); transform: scale(1.06); }
#edit-toggle.active { background: #222; }

#edit-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 999;
  background: var(--black); border-top: 2px solid var(--red);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.75rem 2rem; gap: 1rem;
  transform: translateY(100%); transition: transform 0.3s ease;
}
#edit-bar.open { transform: translateY(0); }
#edit-bar-info { font-size: 0.75rem; color: rgba(255,255,255,0.45); display: flex; align-items: center; gap: 0.6rem; }
#edit-bar-info::before { content: '✏'; font-size: 0.9rem; }
#edit-bar-actions { display: flex; gap: 0.6rem; }
#edit-save-btn, #edit-reset-btn {
  border: none; padding: 0.42rem 1.1rem; font-family: 'DM Sans', sans-serif;
  font-size: 0.73rem; font-weight: 500; letter-spacing: 0.07em;
  text-transform: uppercase; cursor: pointer; transition: background 0.2s;
}
#edit-save-btn { background: var(--red); color: white; }
#edit-save-btn:hover { background: var(--red-dark); }
#edit-save-btn.saved { background: #2a6e3f; }
#edit-reset-btn { background: rgba(255,255,255,0.07); color: rgba(255,255,255,0.5); }
#edit-reset-btn:hover { background: rgba(255,255,255,0.12); color: white; }

body.edit-mode [data-editable] {
  outline: 1.5px dashed rgba(204,0,0,0.3); outline-offset: 3px;
  cursor: text; border-radius: 2px; transition: outline 0.15s, background 0.15s;
  min-width: 20px; min-height: 1em; display: inline-block;
}
body.edit-mode [data-editable]:hover { outline: 2px solid var(--red); background: rgba(204,0,0,0.04); }
body.edit-mode [data-editable]:focus { outline: 2px solid var(--red); background: rgba(204,0,0,0.06); }
body.edit-mode .hero-right [data-editable] { outline-color: rgba(255,255,255,0.25); }
body.edit-mode .hero-right [data-editable]:hover,
body.edit-mode .hero-right [data-editable]:focus { outline-color: rgba(255,120,120,0.7); background: rgba(255,255,255,0.04); }
body.edit-mode .story-section [data-editable]:hover,
body.edit-mode .story-section [data-editable]:focus { background: rgba(255,255,255,0.04); }
body.edit-mode .story-section [data-editable] { outline-color: rgba(255,255,255,0.25); }
body.edit-mode footer [data-editable] { outline-color: rgba(255,255,255,0.2); }

/* LEGAL MODALS */
.legal-modal {
  display: none; position: fixed; inset: 0; z-index: 2000;
  background: rgba(0,0,0,0.7); backdrop-filter: blur(6px);
  align-items: center; justify-content: center; padding: 2rem;
}
.legal-modal.open { display: flex; }
.legal-modal-box {
  background: var(--white); max-width: 640px; width: 100%;
  max-height: 85vh; overflow-y: auto; position: relative;
  padding: 3.5rem 3rem 3rem;
}
.legal-modal-close {
  position: absolute; top: 1.2rem; right: 1.4rem;
  background: none; border: none; cursor: pointer;
  font-size: 1rem; color: var(--muted); transition: color 0.2s;
}
.legal-modal-close:hover { color: var(--black); }
.legal-modal-title {
  font-family: 'Cormorant Garamond', serif; font-size: 2rem;
  font-weight: 300; margin-bottom: 2rem; padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
}
.legal-modal-body h3 {
  font-family: 'DM Sans', sans-serif; font-size: 0.72rem;
  font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--muted); margin: 1.8rem 0 0.6rem;
}
.legal-modal-body h3:first-child { margin-top: 0; }
.legal-modal-body p {
  font-size: 0.88rem; font-weight: 300; color: var(--mid);
  line-height: 1.9;
}

/* HAMBURGER */
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--black); border-radius: 2px; transition: all 0.3s cubic-bezier(0.16,1,0.3,1); }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* TABLET */
@media (max-width: 1200px) {
  .story-section { grid-template-columns: 1fr; gap: 4rem; }
  .hanger3d { max-width: 360px; margin: 0 auto; }
  .hanger3d-wrap { align-items: center; }
}

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-left { padding: 6rem 2.5rem 3rem; }
  .hero-right { min-height: 60vw; }
  .product-section { grid-template-columns: 1fr; padding: 5rem 2.5rem; gap: 3rem; }
  .feat-grid { grid-template-columns: 1fr 1fr; }
  .shop-grid { grid-template-columns: 1fr 1fr; }
  .strip { grid-template-columns: 1fr 1fr; }
  .strip-item { border-bottom: 1px solid var(--line); }
}

/* MOBILE */
@media (max-width: 600px) {
  nav { padding: 0.9rem 1.4rem; }
  nav.scrolled { padding: 0.7rem 1.4rem; }
  nav ul {
    position: fixed; top: 56px; left: 0; right: 0;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(20px);
    flex-direction: column; gap: 0;
    border-bottom: 1px solid var(--line);
    max-height: 0; overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16,1,0.3,1);
    z-index: 99;
  }
  nav ul.open { max-height: 300px; }
  nav ul li { border-bottom: 1px solid var(--line); }
  nav ul a { display: block; padding: 1rem 1.5rem; font-size: 0.85rem; }
  .hamburger { display: flex; }
  .btn-nav { display: none; }
  .lang-toggle { display: flex; }
  .logo-ori { display: none; }
  .logo-birds { width: 40px; height: 25px; }
  .logo-text { font-size: 1.25rem; }

  .hero { grid-template-columns: 1fr; min-height: 100vh; }
  .hero-left { padding: 5.5rem 1.5rem 2rem; order: 1; }
  .hero-right { min-height: 55vw; order: 2; }
  .hero-title { font-size: clamp(2.8rem, 11vw, 4rem); }
  .hero-slogan { font-size: 0.88rem; }
  .hero-desc { font-size: 0.88rem; margin-bottom: 2rem; }
  .hero-cta { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .hero-live-badge { font-size: 0.65rem; }
  .hero-img-wrap { padding: 1.5rem 1rem; gap: 0.8rem; }
  .product-3d-wrap { width: 100%; }
  .tilt-card { min-width: unset !important; min-height: 220px !important; }
  .hero-price-tag { padding: 0.7rem 1.5rem; }
  .price-num { font-size: 1.8rem; }
  .hero-corner { display: none; }

  .strip { grid-template-columns: 1fr 1fr; }
  .strip-item { padding: 1.2rem 1rem; }
  .strip-num { font-size: 1.6rem; }
  .strip-label { font-size: 0.65rem; }

  .product-top { padding: 4rem 1.5rem 2rem !important; }
  .product-bottom { grid-template-columns: 1fr !important; padding: 0 1.5rem 4rem !important; gap: 2rem !important; }
  .product-name { font-size: 2.2rem; }
  .product-buy { flex-wrap: wrap; gap: 1rem; }
  .specs { margin-bottom: 1.5rem; }

  .story-section { padding: 4rem 1.5rem; grid-template-columns: 1fr; gap: 2.5rem; }
  .story-title { font-size: 2rem; }
  .story-cards { grid-template-columns: 1fr 1fr; }
  .story-card { padding: 1.8rem 1.2rem; }
  .story-bg-word { display: none; }
  .hanger3d { max-width: 280px; }

  .shop-section { padding: 4rem 0; }
  .shop-header { flex-direction: column; align-items: flex-start; gap: 0.5rem; margin-bottom: 2rem; padding: 0 1.5rem; }
  .shop-title { font-size: 2.2rem; }
  .shop-grid {
    display: flex;
    flex-direction: row;
    overflow-x: scroll;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 0;
    padding: 0 1.5rem 1.5rem;
    scrollbar-width: none;
  }
  .shop-grid::-webkit-scrollbar { display: none; }
  .shop-card {
    flex: 0 0 82vw;
    scroll-snap-align: start;
    max-width: 340px;
    border-right: none;
  }
  .shop-card + .shop-card { border-left: 1px solid var(--line); }
  .shop-card-soon { display: block; opacity: 0.35; pointer-events: none; }
  .shop-card-img { aspect-ratio: 3/2; overflow: hidden; }
  .shop-card-img img { width: 36% !important; }
  .shop-scroll-hint { display: flex; align-items: center; gap: 0.5rem; padding: 0.8rem 1.5rem 0; font-size: 0.7rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }
  .shop-scroll-hint::after { content: ''; display: block; width: 32px; height: 1px; background: var(--muted); }

  .contact-section { padding: 4rem 1.5rem !important; grid-template-columns: 1fr !important; gap: 3rem !important; }

  footer { padding: 3rem 1.5rem 2rem !important; }
  .footer-top { grid-template-columns: 1fr 1fr !important; gap: 2.5rem !important; }
  .footer-bottom { flex-direction: column !important; gap: 0.5rem; }

  #checkout-modal > div { padding: 1rem !important; }
  #checkout-modal > div > div { padding: 2rem 1.5rem !important; border-radius: 0 !important; margin: 0 !important; max-height: 95vh; overflow-y: auto; }
  .legal-modal { padding: 0 !important; align-items: flex-end !important; }
  .legal-modal-box { max-width: 100% !important; width: 100% !important; max-height: 90vh !important; padding: 2.5rem 1.5rem 2rem !important; border-radius: 0 !important; }

  .page-hero { padding: 8rem 1.5rem 3rem; }
  .page-hero-kanji { font-size: 10rem; right: 0; }
  .page-hero-title { font-size: clamp(2.5rem, 10vw, 3.5rem); }
}
