:root {
  --bg: #f5f2ed;
  --paper: #faf8f5;
  --ink: #0e0e0e;
  --ink-soft: #2a2a2a;
  --ink-mute: #888;
  --dark: #0c0b09;
  --gold: #b8a882;
}

* { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; }

body {
  background: var(--dark);
  color: #e8e0d0;
  font-family: 'Shippori Mincho', serif;
  font-weight: 300;
  letter-spacing: 0.06em;
  overflow-x: hidden;
}

/* ===== NAV ===== */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 300;
  padding: 28px 56px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav-logo {
  opacity: 0;
  animation: navFade 1s ease 3.2s forwards;
}
.nav-logo img {
  height: 32px;
  filter: invert(1);
  opacity: .85;
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 44px;
  opacity: 0;
  animation: navFade 1s ease 3.4s forwards;
}
.nav-links a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 11px;
  letter-spacing: .5em;
  text-transform: uppercase;
  color: rgba(232,224,208,.7);
  text-decoration: none;
  transition: color .3s;
}
.nav-links a:hover { color: #e8e0d0; }
@keyframes navFade { to { opacity:1; } }

/* ===== HERO ===== */
.hero {
  height: 100vh;
  background: var(--dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 50% 50%, rgba(184,168,130,.07), transparent 70%);
  animation: pulse 8s ease-in-out infinite alternate;
}
@keyframes pulse {
  from { opacity: .4; transform: scale(.95); }
  to   { opacity: 1;  transform: scale(1.05); }
}

.hero::after {
  content: "";
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' 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");
  pointer-events: none;
}

.hero-logo-wrap {
  position: relative; z-index: 2;
  margin-bottom: 72px;
}

.hero-logo {
  width: min(340px, 62vw);
  filter: invert(1);
  mix-blend-mode: screen;
  opacity: 0;
  transform: scale(.88);
  animation: logoReveal 3s cubic-bezier(.16,1,.3,1) .3s forwards;
}
@keyframes logoReveal {
  0%   { opacity:0; transform: scale(.84) translateY(16px); filter: invert(1) blur(12px); }
  40%  { opacity:.6; filter: invert(1) blur(3px); }
  100% { opacity:1; transform: scale(1) translateY(0); filter: invert(1) blur(0); }
}

.hero-rule {
  width: 0;
  height: 1px;
  background: rgba(184,168,130,.4);
  margin: 0 auto 56px;
  animation: ruleDraw 1.4s ease 2.4s forwards;
}
@keyframes ruleDraw { to { width: min(260px, 50vw); } }

.hero-catch {
  position: relative; z-index: 2;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 1.4s ease 2.8s forwards;
}
.hero-catch-main {
  font-family: 'Shippori Mincho', serif;
  font-size: clamp(14px, 1.8vw, 18px);
  font-weight: 400;
  letter-spacing: .4em;
  line-height: 2;
  color: rgba(232,224,208,.9);
}
.hero-catch-sub {
  margin-top: 24px;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(12px, 1.3vw, 14px);
  letter-spacing: .3em;
  color: rgba(232,224,208,.45);
  line-height: 1.8;
}

.scroll-cue {
  position: absolute;
  bottom: 40px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  z-index: 2;
  opacity: 0;
  animation: navFade 1s ease 3.6s forwards;
}
.scroll-cue span {
  font-family: 'Cormorant Garamond', serif;
  font-size: 9px;
  letter-spacing: .7em;
  color: rgba(232,224,208,.4);
}
.scroll-cue::after {
  content: "";
  display: block;
  width: 1px; height: 50px;
  background: rgba(232,224,208,.25);
  animation: lineGrow 2.4s ease-in-out infinite;
  transform-origin: top;
}
@keyframes lineGrow {
  0%,100%{ transform:scaleY(.2); opacity:.2; }
  50%    { transform:scaleY(1);   opacity:.6; }
}

@keyframes fadeUp {
  to { opacity:1; transform:translateY(0); }
}

/* ===== MAIN MESSAGE ===== */
.msg-sec {
  background: var(--paper);
  color: var(--ink);
  padding: 200px 0 180px;
  text-align: center;
}
.msg-inner {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 48px;
}
.msg-title {
  font-family: 'Shippori Mincho', serif;
  font-size: clamp(26px, 4vw, 52px);
  font-weight: 600;
  letter-spacing: .2em;
  line-height: 1.7;
  margin-bottom: 80px;
  color: var(--ink);
}
.msg-body {
  font-size: 16px;
  line-height: 3;
  color: #444;
  letter-spacing: .12em;
}
.msg-body .em {
  font-size: 1.35em;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: .18em;
}

/* ===== PHILOSOPHY ===== */
.phil-sec {
  background: var(--dark);
  color: #e8e0d0;
  padding: 220px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.phil-sec::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 50% at 50% 50%, rgba(184,168,130,.06), transparent 70%);
}
.phil-inner {
  position: relative; z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 48px;
}
.phil-label {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 13px;
  letter-spacing: .45em;
  color: var(--gold);
  display: block;
  margin-bottom: 56px;
}
.phil-quote {
  font-size: clamp(24px, 3.8vw, 46px);
  font-weight: 500;
  letter-spacing: .18em;
  line-height: 1.7;
  margin-bottom: 72px;
}
.phil-body {
  font-size: 16px;
  line-height: 3;
  color: rgba(232,224,208,.75);
  letter-spacing: .12em;
}
.phil-body .em {
  font-size: 1.2em;
  font-weight: 500;
  color: #e8e0d0;
}

/* ===== CONCEPT ===== */
.concept-sec {
  background: var(--paper);
  color: var(--ink);
  padding: 180px 0;
  text-align: center;
}
.concept-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 48px;
}
.concept-labels {
  display: flex;
  justify-content: center;
  gap: 80px;
  margin-bottom: 120px;
  flex-wrap: wrap;
}
.concept-labels span {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(20px, 3vw, 34px);
  letter-spacing: .5em;
  font-weight: 300;
}
.specs-title {
  font-size: clamp(20px, 3vw, 34px);
  font-weight: 600;
  letter-spacing: .25em;
  margin-bottom: 80px;
}
.specs-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.spec-row {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 40px;
  padding: 36px 0;
  text-align: left;
  background: transparent;
}
.spec-row + .spec-row {
  border-top: 1px solid rgba(0,0,0,.08);
}
.spec-row-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 11px;
  letter-spacing: .5em;
  text-transform: uppercase;
  color: #aaa;
  padding-top: 4px;
}
.spec-row-body {
  font-size: 15px;
  line-height: 2.4;
  color: #333;
}
.spec-row-body .em {
  font-size: 1.15em;
  font-weight: 600;
  color: var(--ink);
}

/* ===== PROOF ===== */
.proof-sec {
  background: var(--dark);
  color: #e8e0d0;
  padding: 200px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.proof-sec::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 40% at 50% 50%, rgba(184,168,130,.07), transparent 70%);
}
.proof-inner {
  position: relative; z-index: 2;
  max-width: 720px;
  margin: 0 auto;
  padding: 0 48px;
}
.proof-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(13px, 1.6vw, 16px);
  letter-spacing: .6em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 60px;
}
.proof-big {
  font-size: clamp(26px, 4vw, 48px);
  font-weight: 500;
  letter-spacing: .2em;
  line-height: 1.8;
  margin-bottom: 52px;
}
.proof-body {
  font-size: 16px;
  line-height: 3;
  color: rgba(232,224,208,.7);
}
.proof-body .em {
  font-weight: 500;
  color: #e8e0d0;
  font-size: 1.15em;
}

/* ===== RELEASE ===== */
.release-sec {
  background: var(--paper);
  color: var(--ink);
  padding: 200px 0;
  text-align: center;
}
.release-inner {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 48px;
}
.release-big {
  font-size: clamp(32px, 5vw, 64px);
  font-weight: 600;
  letter-spacing: .18em;
  line-height: 1.5;
  margin-bottom: 40px;
}
.release-sub {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(14px, 1.8vw, 18px);
  letter-spacing: .4em;
  color: #999;
}
.release-link {
  display: inline-block;
  margin-top: 56px;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(13px, 1.5vw, 16px);
  letter-spacing: .35em;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid rgba(14,14,14,.3);
  padding-bottom: 4px;
  transition: border-color .3s, color .3s;
}
.release-link:hover {
  color: var(--ink-soft);
  border-color: var(--ink);
}

/* ===== COMPANY ===== */
.company-sec {
  background: var(--dark);
  color: #e8e0d0;
  padding: 180px 0;
}
.company-inner {
  max-width: 640px;
  margin: 0 auto;
  padding: 0 48px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.company-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px;
  letter-spacing: .6em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 72px;
}
.company-rows {
  width: 480px;
  max-width: 100%;
  margin-bottom: 80px;
  text-align: left;
}
.c-row {
  display: flex;
  gap: 40px;
  padding: 22px 0;
  font-size: 14px;
  line-height: 1.9;
}
.c-row + .c-row { border-top: 1px solid rgba(232,224,208,.1); }
.c-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 10px;
  letter-spacing: .45em;
  text-transform: uppercase;
  color: var(--gold);
  min-width: 80px;
  padding-top: 3px;
}
.c-val { color: rgba(232,224,208,.75); flex:1; }
.coop-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 11px;
  letter-spacing: .5em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 28px;
}
.coop-names { font-size: 14px; line-height: 2.6; color: rgba(232,224,208,.65); }

/* ===== FOOTER ===== */
footer {
  background: #080807;
  color: #e8e0d0;
  padding: 80px 48px 36px;
  text-align: center;
}
.footer-logo {
  display: block;
  width: 120px;
  margin: 0 auto 36px;
  filter: invert(1);
  opacity: .7;
}
.footer-nav {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 36px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.footer-nav a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 10px;
  letter-spacing: .5em;
  text-transform: uppercase;
  color: rgba(232,224,208,.45);
  text-decoration: none;
  transition: color .3s;
}
.footer-nav a:hover { color: rgba(232,224,208,.8); }
.footer-policy {
  margin-bottom: 40px;
}
.footer-policy a {
  font-size: 11px;
  letter-spacing: .2em;
  color: rgba(232,224,208,.3);
  text-decoration: none;
}
.footer-copy {
  font-family: 'Cormorant Garamond', serif;
  font-size: 10px;
  letter-spacing: .35em;
  opacity: .3;
}

/* ===== REVEAL ===== */
.r {
  opacity: 0;
  transform: translateY(44px);
  transition: opacity 1.6s cubic-bezier(.16,1,.3,1), transform 1.6s cubic-bezier(.16,1,.3,1);
}
.r.on { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media(max-width:700px){
  nav { padding:20px 24px; }
  .nav-links { gap:20px; }
  .msg-inner,.phil-inner,.concept-inner,.proof-inner,.release-inner,.company-inner { padding:0 24px; }
  .msg-sec,.phil-sec,.concept-sec,.proof-sec,.release-sec,.company-sec { padding:120px 0; }
  .spec-row { grid-template-columns:1fr; gap:8px; }
  .concept-labels { gap:40px; }
}
