:root {
  --bg: #0d0d0d;
  --fg: #f0ebe3;
  --gold: #c9a96e;
  --rose: #c48b8b;
  --dim: rgba(240, 235, 227, 0.5);
  --midnight: #1a1423;
  --street: #2a2018;
  --soft: #1a1719;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Jost', system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── NAV ───────────────────────────────────────── */
.nav {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  padding: 2rem 4rem;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
}

.nav-brand {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.35em;
  color: var(--fg);
}

.nav-tagline {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--dim);
}

/* ── HERO ─────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  padding: 0 4rem 8rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse 80% 60% at 20% 40%, #1a1423 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 80% 80%, #2a2018 0%, transparent 55%),
    linear-gradient(160deg, #0d0d0d 0%, #1a1423 40%, #0d0d0d 100%);
}

.hero-grain {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 256px;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.hero-pre {
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(5rem, 12vw, 11rem);
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: 0.1em;
  color: var(--fg);
  margin-bottom: 2rem;
}

.hero-lead {
  font-size: 1.25rem;
  font-weight: 300;
  color: var(--dim);
  max-width: 480px;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.hero-collections {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-tag {
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201, 169, 110, 0.35);
  padding: 0.4rem 1rem;
  border-radius: 2px;
}

.hero-divider {
  color: var(--dim);
  font-size: 0.8rem;
}

.hero-accent {
  position: absolute;
  right: 4rem;
  bottom: 8rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  z-index: 2;
}

.accent-line {
  width: 1px;
  height: 80px;
  background: linear-gradient(to bottom, transparent, var(--gold), transparent);
}

.accent-text {
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--dim);
  writing-mode: vertical-rl;
}

/* ── COLLECTIONS ─────────────────────────────── */
.collections {
  padding: 10rem 4rem;
  background: var(--bg);
}

.collections-header {
  margin-bottom: 6rem;
  max-width: 600px;
}

.section-label {
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--fg);
}

.collection-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1.5px;
}

.collection-card {
  position: relative;
  padding: 4rem 3rem;
  min-height: 500px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}

.collection-card--dark { background: var(--midnight); }
.collection-card--edge { background: var(--street); }
.collection-card--soft { background: var(--soft); }

.card-inner {
  position: relative;
  z-index: 2;
}

.card-label {
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.card-name {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 500;
  font-style: italic;
  color: var(--fg);
  margin-bottom: 1.25rem;
  line-height: 1.1;
}

.card-desc {
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--dim);
  line-height: 1.7;
}

.card-accent {
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 0;
  transition: height 0.6s ease;
}

.collection-card:hover .card-accent {
  height: 100%;
}

.collection-card--dark .card-accent { background: var(--gold); }
.collection-card--edge .card-accent { background: var(--rose); }
.collection-card--soft .card-accent { background: var(--fg); }

.collection-card:hover .card-name { color: var(--gold); }
.collection-card--edge:hover .card-name { color: var(--rose); }

/* ── MANIFESTO ───────────────────────────────── */
.manifesto {
  padding: 10rem 4rem;
  background: #0a0a0a;
  border-top: 1px solid rgba(201, 169, 110, 0.1);
  border-bottom: 1px solid rgba(201, 169, 110, 0.1);
}

.manifesto-content {
  max-width: 900px;
  margin: 0 auto;
}

.manifesto-quote {
  position: relative;
  padding-left: 0;
  margin-bottom: 4rem;
}

.quote-mark {
  font-family: var(--font-display);
  font-size: 6rem;
  line-height: 0.5;
  color: var(--gold);
  opacity: 0.4;
  display: block;
  margin-bottom: 1.5rem;
}

.quote-text {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.5;
  color: var(--fg);
  margin-bottom: 1rem;
}

.manifesto-rule {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 4rem 0;
}

.manifesto-detail p {
  font-size: 1rem;
  font-weight: 300;
  color: var(--dim);
  max-width: 600px;
  line-height: 1.8;
}

/* ── CLOSER ──────────────────────────────────── */
.closer {
  padding: 12rem 4rem;
  text-align: center;
  background: linear-gradient(180deg, #0d0d0d 0%, #1a1423 50%, #0d0d0d 100%);
}

.closer-inner {
  max-width: 600px;
  margin: 0 auto;
}

.closer-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 400;
  font-style: italic;
  color: var(--fg);
  margin-bottom: 1.5rem;
  line-height: 1;
}

.closer-sub {
  font-size: 0.8rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4rem;
}

.closer-divider {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  margin: 0 auto 4rem;
}

.closer-tagline {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 400;
  font-style: italic;
  color: var(--dim);
  line-height: 2;
}

/* ── FOOTER ──────────────────────────────────── */
.footer {
  padding: 4rem;
  background: var(--bg);
}

.footer-top {
  margin-bottom: 3rem;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.4em;
  color: var(--fg);
  margin-bottom: 0.75rem;
}

.footer-collections {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: var(--dim);
}

.footer-rule {
  width: 100%;
  height: 1px;
  background: rgba(201, 169, 110, 0.1);
  margin-bottom: 3rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copy {
  font-size: 0.7rem;
  color: var(--dim);
  letter-spacing: 0.1em;
}

.footer-note {
  font-size: 0.7rem;
  font-style: italic;
  color: var(--rose);
  font-family: var(--font-display);
}

/* ── RESPONSIVE ──────────────────────────────── */
@media (max-width: 768px) {
  .nav { padding: 1.5rem 2rem; }
  .hero { padding: 0 2rem 6rem; }
  .hero-title { font-size: clamp(3.5rem, 18vw, 6rem); }
  .hero-accent { display: none; }
  .collections { padding: 6rem 2rem; }
  .collection-grid { grid-template-columns: 1fr; }
  .collection-card { min-height: 380px; }
  .manifesto { padding: 6rem 2rem; }
  .closer { padding: 8rem 2rem; }
  .footer { padding: 3rem 2rem; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
}

@media (max-width: 480px) {
  .hero-collections { gap: 0.5rem; }
  .hero-tag { font-size: 0.7rem; padding: 0.3rem 0.7rem; }
}