:root {
  --bg: #0c0c0f;
  --bg-elevated: #161619;
  --bg-card: #1c1c21;
  --fg: #e8e6e1;
  --fg-muted: #9a9890;
  --fg-dim: #5a5852;
  --accent: #4ecdc4;
  --accent-warm: #e9c46a;
  --accent-pink: #ff6b9d;
  --serif: 'Playfair Display', Georgia, serif;
  --sans: 'Outfit', sans-serif;
}

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

html { font-size: 16px; scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 6rem 2rem 4rem;
  position: relative;
}

.hero-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.hero-tag {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}

.hero h1 em {
  font-style: italic;
  color: var(--accent);
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--fg-muted);
  max-width: 540px;
  margin: 0 auto 3rem;
  line-height: 1.8;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1rem;
}

.grid-item {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.art-placeholder {
  aspect-ratio: 3/4;
  border-radius: 8px;
  transition: transform 0.4s ease;
}

.grid-item:hover .art-placeholder {
  transform: scale(1.03);
}

.art-label {
  font-size: 0.75rem;
  color: var(--fg-dim);
  text-align: center;
  letter-spacing: 0.05em;
}

.gi-2 { transform: translateY(-2rem); }

/* ─── COLLECTIONS ─── */
.collections {
  padding: 8rem 2rem;
  background: var(--bg-elevated);
}

.collections-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.collections h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 1rem;
}

.collections-intro {
  color: var(--fg-muted);
  font-size: 1.05rem;
  max-width: 520px;
  margin-bottom: 4rem;
  line-height: 1.8;
}

.collection-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.card {
  background: var(--bg-card);
  border-radius: 12px;
  padding: 2rem;
  transition: transform 0.3s ease, background 0.3s ease;
}

.card:hover {
  transform: translateY(-4px);
  background: #222228;
}

.card-swatch {
  width: 100%;
  height: 120px;
  border-radius: 8px;
  margin-bottom: 1.5rem;
}

.card h3 {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
}

.card p {
  color: var(--fg-muted);
  font-size: 0.92rem;
  line-height: 1.7;
}

/* ─── WHY ─── */
.why {
  padding: 8rem 2rem;
}

.why-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: start;
}

.why h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 3rem;
}

.why-points {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.point {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.point-num {
  font-family: var(--serif);
  font-size: 2rem;
  color: var(--fg-dim);
  line-height: 1;
  flex-shrink: 0;
  width: 3rem;
}

.point h4 {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
}

.point p {
  color: var(--fg-muted);
  font-size: 0.92rem;
  line-height: 1.7;
}

.why-visual {
  position: relative;
  height: 400px;
}

.frame-stack {
  position: relative;
  width: 100%;
  height: 100%;
}

.frame {
  position: absolute;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.f1 {
  width: 65%;
  height: 70%;
  top: 0;
  left: 0;
}

.f2 {
  width: 50%;
  height: 55%;
  top: 25%;
  right: 0;
  z-index: 1;
}

.f3 {
  width: 40%;
  height: 40%;
  bottom: 0;
  left: 20%;
  z-index: 2;
}

/* ─── CLOSING ─── */
.closing {
  padding: 8rem 2rem;
  background: var(--bg-elevated);
  text-align: center;
}

.closing-inner {
  max-width: 700px;
  margin: 0 auto;
}

.closing h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.closing h2 em {
  font-style: italic;
  color: var(--accent-warm);
}

.closing p {
  color: var(--fg-muted);
  font-size: 1.05rem;
  line-height: 1.9;
}

/* ─── NAV ─── */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 2rem;
  background: rgba(12, 12, 15, 0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}

.nav-brand {
  font-family: var(--serif);
  font-size: 1.15rem;
  color: var(--fg);
  text-decoration: none;
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--fg-muted);
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: color 0.2s ease;
}

.nav-link:hover { color: var(--fg); }

.nav-link--cta {
  padding: 0.45rem 1rem;
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
  border-radius: 6px;
  font-weight: 500;
}

.nav-link--cta:hover { background: var(--accent); color: #0c0c0f; }

/* ─── FOOTER ─── */
.site-footer {
  padding: 3rem 2rem;
  border-top: 1px solid #222;
}

.footer-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-brand {
  font-family: var(--serif);
  font-size: 1.1rem;
}

.footer-tagline {
  color: var(--fg-dim);
  font-size: 0.85rem;
}

/* ─── MOBILE ─── */
@media (max-width: 768px) {
  .hero { padding: 4rem 1.5rem 3rem; }
  .hero-grid { grid-template-columns: repeat(3, 1fr); gap: 0.75rem; }
  .gi-2 { transform: translateY(-1rem); }
  .collections { padding: 5rem 1.5rem; }
  .collection-cards { grid-template-columns: 1fr; }
  .why { padding: 5rem 1.5rem; }
  .why-inner { grid-template-columns: 1fr; gap: 3rem; }
  .why-visual { height: 280px; }
  .closing { padding: 5rem 1.5rem; }
  .footer-inner { flex-direction: column; gap: 0.5rem; text-align: center; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 2.2rem; }
  .hero-grid { grid-template-columns: 1fr 1fr; }
  .gi-3 { grid-column: span 2; }
  .gi-3 .art-placeholder { aspect-ratio: 16/9; }
  .card { padding: 1.5rem; }
  .card-swatch { height: 80px; }
}