:root {
  --bone: #f1eee6;
  --hematite: #3b0f18;
  --ash: #7d7a73;
  --obsidian: #0d0d0d;
  --ink: #141210;
  --surface: #fffdf7;
  --glow: rgba(241, 238, 230, 0.35);
  --shadow: rgba(13, 13, 13, 0.6);
  --serif: "Cormorant Garamond", "Iowan Old Style", "Garamond", serif;
  --sans: "Inter", "Helvetica Neue", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  background: var(--bone);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.6;
}

body {
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

.grain {
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='120' height='120' filter='url(%23n)' opacity='.08'/%3E%3C/svg%3E");
  pointer-events: none;
  mix-blend-mode: multiply;
  z-index: 1;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 5;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  padding: 1.25rem 6vw;
  border-bottom: 1px solid rgba(20, 18, 16, 0.1);
  background: rgba(241, 238, 230, 0.9);
  backdrop-filter: blur(6px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--serif);
  letter-spacing: 0.3rem;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.brand-mark {
  color: var(--hematite);
  font-weight: 700;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  font-size: 0.9rem;
  justify-content: center;
}

.site-nav a {
  text-decoration: none;
  color: var(--ink);
  opacity: 0.75;
  transition: opacity 0.2s ease;
}

.site-nav a:hover {
  opacity: 1;
}

.nav-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: flex-end;
}

.icon-link {
  font-size: 0.85rem;
  text-decoration: none;
  color: var(--ink);
  opacity: 0.7;
}

main {
  position: relative;
  z-index: 2;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 4vw;
  padding: 5rem 6vw 4rem;
  align-items: center;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.4rem;
  font-size: 0.85rem;
  margin: 0 0 1rem;
  color: var(--ash);
}

.hero h1 {
  font-family: var(--serif);
  font-size: clamp(2.6rem, 4vw, 4rem);
  margin: 0 0 1.5rem;
}

.lead {
  font-size: 1.05rem;
  margin: 0 0 1.1rem;
  max-width: 60ch;
}

.cta {
  margin-top: 2rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn {
  padding: 0.75rem 1.6rem;
  border-radius: 999px;
  border: 1px solid var(--obsidian);
  text-decoration: none;
  color: var(--bone);
  background: var(--obsidian);
  font-size: 0.9rem;
  letter-spacing: 0.1rem;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
}

.btn.ghost {
  background: transparent;
  color: var(--obsidian);
}

.hero-meta {
  margin-top: 1.5rem;
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  color: var(--ash);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.2rem;
}

.hero-visual {
  display: grid;
  gap: 1.5rem;
}

.product-stack {
  display: grid;
  gap: 1.5rem;
}

.product-card {
  background: var(--surface);
  border: 1px solid rgba(20, 18, 16, 0.12);
  box-shadow: 0 20px 40px rgba(13, 13, 13, 0.12);
  border-radius: 20px;
  overflow: hidden;
}

.product-image {
  height: 220px;
  background: linear-gradient(135deg, rgba(13, 13, 13, 0.85), rgba(59, 15, 24, 0.75));
}

.product-image.light {
  background: linear-gradient(135deg, rgba(241, 238, 230, 0.8), rgba(125, 122, 115, 0.7));
}

.product-info {
  padding: 1.5rem;
  display: grid;
  gap: 0.75rem;
}

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.link {
  text-decoration: none;
  color: var(--hematite);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.12rem;
}


.ticker {
  border-top: 1px solid rgba(20, 18, 16, 0.08);
  border-bottom: 1px solid rgba(20, 18, 16, 0.08);
  overflow: hidden;
  background: var(--bone);
}

.ticker-track {
  display: flex;
  gap: 4rem;
  white-space: nowrap;
  padding: 1rem 0;
  font-family: var(--serif);
  letter-spacing: 0.4rem;
  text-transform: uppercase;
  animation: scroll 18s linear infinite;
}

@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.panel {
  padding: 4rem 6vw;
  border-top: 1px solid rgba(20, 18, 16, 0.1);
}

.panel.dark {
  background: var(--obsidian);
  color: var(--bone);
}

.panel.soft {
  background: #f6f3ea;
}

.panel-head h2 {
  font-family: var(--serif);
  font-size: 2.4rem;

  .panel-foot {
    margin-top: 2.5rem;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
  }

  .product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
  }

  .catalog-card {
    background: var(--surface);
    border-radius: 20px;
    border: 1px solid rgba(20, 18, 16, 0.12);
    padding: 1.5rem;
    display: grid;
    gap: 0.75rem;
    box-shadow: 0 20px 40px rgba(13, 13, 13, 0.08);
  }

  .catalog-image {
    height: 180px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(59, 15, 24, 0.85), rgba(13, 13, 13, 0.8));
  }

  .catalog-image.dark {
    background: linear-gradient(135deg, rgba(13, 13, 13, 0.92), rgba(59, 15, 24, 0.6));
  }

  .catalog-image.light {
    background: linear-gradient(135deg, rgba(241, 238, 230, 0.9), rgba(125, 122, 115, 0.7));
  }

  .catalog-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .catalog-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
  }

  .drop-grid,
  .collection-grid,
  .story-grid,
  .journal-grid,
  .support-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
  }

  .collection-card {
    padding: 1.5rem;
    border: 1px solid rgba(20, 18, 16, 0.12);
    border-radius: 20px;
    background: var(--surface);
  }

  .journal-grid article {
    padding: 1.5rem;
    border-radius: 20px;
    background: var(--surface);
    border: 1px solid rgba(20, 18, 16, 0.12);
  }

  .newsletter {
    padding: 4rem 6vw 5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    border-top: 1px solid rgba(20, 18, 16, 0.1);
  }

  .newsletter-form {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
  }

  .newsletter-form input {
    padding: 0.75rem 1rem;
    border-radius: 999px;
    border: 1px solid rgba(20, 18, 16, 0.2);
    min-width: 260px;
    font-size: 0.95rem;
  }
}

.finale h2 {
  font-family: var(--serif);
  font-size: 2.1rem;
  margin-bottom: 2rem;
}

.finale-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}

.site-footer {
  border-top: 1px solid rgba(20, 18, 16, 0.1);
  padding: 2rem 6vw 3rem;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  background: var(--bone);
}

.site-footer p {
  color: var(--ash);
  margin: 0;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
}

.footer-links a {
  text-decoration: none;
  color: var(--ink);
  opacity: 0.7;
  font-size: 0.85rem;
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .site-header {
    grid-template-columns: 1fr;
    gap: 1rem;
    justify-items: start;
  }

  .site-nav {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .site-footer {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .newsletter {
    flex-direction: column;
    align-items: flex-start;
  }
}
