:root {
  --bg: #0d0b09;
  --bg-warm: #1a1510;
  --fg: #f5efe6;
  --fg-muted: #a69b8a;
  --gold: #c9a84c;
  --gold-soft: #d4b96e;
  --gold-dark: #8b7332;
  --accent: #e8d5a3;
  --font-display: 'Cormorant Garamond', serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
}

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

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

/* Hero */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 4rem 2rem;
  background: radial-gradient(ellipse at 30% 50%, rgba(201, 168, 76, 0.06) 0%, transparent 60%);
}

.hero-inner {
  max-width: 800px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.hero-tag {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 2rem;
  color: var(--fg);
}

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

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

.hero-accent {
  position: absolute;
  top: 20%;
  right: 10%;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  border: 1px solid rgba(201, 168, 76, 0.1);
  animation: float 8s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(5deg); }
}

/* Philosophy */
.philosophy {
  padding: 8rem 2rem;
  background: var(--bg-warm);
}

.philosophy-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 4rem;
  align-items: center;
}

.philosophy-text h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 300;
  margin-bottom: 1.5rem;
  color: var(--accent);
}

.philosophy-text p {
  font-size: 1.05rem;
  color: var(--fg-muted);
  margin-bottom: 1.2rem;
}

.philosophy-text strong {
  color: var(--gold);
  font-weight: 500;
}

.philosophy-visual {
  position: relative;
  height: 300px;
}

.gold-circle {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  border: 2px solid var(--gold-dark);
  position: absolute;
  top: 20%;
  left: 20%;
}

.gold-circle-2 {
  width: 150px;
  height: 150px;
  border: 1px solid rgba(201, 168, 76, 0.3);
  top: 40%;
  left: 40%;
}

/* Collections */
.collections {
  padding: 8rem 2rem;
}

.collections h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  text-align: center;
  margin-bottom: 4rem;
  color: var(--accent);
}

.collection-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.collection-card {
  padding: 3rem 2.5rem;
  border: 1px solid rgba(201, 168, 76, 0.15);
  border-radius: 2px;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.collection-card:hover {
  border-color: var(--gold-dark);
  background: rgba(201, 168, 76, 0.03);
}

.collection-icon {
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 1.2rem;
}

.collection-card h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 400;
  margin-bottom: 0.8rem;
  color: var(--fg);
}

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

/* Story */
.story {
  padding: 8rem 2rem;
  background: var(--bg-warm);
}

.story-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.story-quote blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  font-style: italic;
  color: var(--gold-soft);
  line-height: 1.6;
  border-left: 2px solid var(--gold-dark);
  padding-left: 2rem;
}

.story-details h2 {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 300;
  margin-bottom: 1.5rem;
  color: var(--accent);
}

.story-details p {
  font-size: 1rem;
  color: var(--fg-muted);
  margin-bottom: 1.2rem;
  line-height: 1.8;
}

/* Closing */
.closing {
  padding: 10rem 2rem;
  text-align: center;
  background: radial-gradient(ellipse at 50% 80%, rgba(201, 168, 76, 0.08) 0%, transparent 60%);
}

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

.closing h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 300;
  line-height: 1.3;
  margin-bottom: 1.5rem;
  color: var(--fg);
}

.closing-sub {
  font-size: 1.1rem;
  color: var(--fg-muted);
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

/* Hero CTAs */
.hero-ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2.5rem;
}
.hero-btn-primary {
  display: inline-block;
  padding: 0.9rem 2.2rem;
  background: var(--gold);
  color: var(--bg);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s;
}
.hero-btn-primary:hover { background: var(--gold-soft); }
.hero-btn-secondary {
  display: inline-block;
  padding: 0.9rem 2.2rem;
  border: 1px solid rgba(201, 168, 76, 0.4);
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.2s;
}
.hero-btn-secondary:hover {
  border-color: var(--gold);
  background: rgba(201, 168, 76, 0.06);
}

/* Closing CTA */
.closing-ctas { margin-top: 2.5rem; }
.closing-btn-primary {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: var(--gold);
  color: var(--bg);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s;
}
.closing-btn-primary:hover { background: var(--gold-soft); }

/* Landing page nav */
.landing-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 2rem;
  background: rgba(13, 11, 9, 0.0);
  transition: background 0.3s;
}
.landing-nav.scrolled { background: rgba(13, 11, 9, 0.95); backdrop-filter: blur(12px); }
.landing-nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.landing-nav-brand {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: 0.05em;
}
.landing-nav-shop {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.landing-nav-shop:hover { color: var(--gold); }

/* Collection cards — add link styling */
.collection-card a,
.collections a {
  text-decoration: none;
  color: inherit;
}

/* Make landing collection cards clickable */
a.collection-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
  padding: 3rem 2.5rem;
  border: 1px solid rgba(201, 168, 76, 0.15);
  border-radius: 2px;
  transition: border-color 0.3s ease, background 0.3s ease;
}
a.collection-card-link:hover {
  border-color: var(--gold-dark);
  background: rgba(201, 168, 76, 0.03);
}

/* Footer */
.site-footer {
  padding: 4rem 2rem;
  border-top: 1px solid rgba(201, 168, 76, 0.1);
}

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

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

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

/* Responsive */
@media (max-width: 768px) {
  .philosophy-inner,
  .story-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .collection-grid {
    grid-template-columns: 1fr;
  }

  .philosophy-visual {
    display: none;
  }

  .hero {
    min-height: 80vh;
  }

  .hero-accent {
    width: 150px;
    height: 150px;
    right: 5%;
  }

  .collection-card {
    padding: 2rem 1.5rem;
  }

  .closing {
    padding: 6rem 2rem;
  }
}