:root {
  --bg-deep: #182227;
  --bg-soft: #233038;
  --ink: #112028;
  --text: #f5f0e7;
  --text-muted: #d8cebb;
  --gold: #c5a26a;
  --gold-soft: #e5d1aa;
  --panel: rgba(14, 22, 26, 0.78);
  --panel-light: rgba(255, 255, 255, 0.1);
  --stroke: rgba(255, 255, 255, 0.14);
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 20%, rgba(229, 209, 170, 0.18), transparent 30%),
    radial-gradient(circle at 85% 15%, rgba(197, 162, 106, 0.14), transparent 35%),
    linear-gradient(140deg, var(--bg-deep), var(--bg-soft));
  line-height: 1.5;
}

.grain-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.14;
  background-image: radial-gradient(rgba(255, 255, 255, 0.6) 0.6px, transparent 0.6px);
  background-size: 3px 3px;
}

.top-bar {
  position: sticky;
  top: 0;
  z-index: 5;
  text-align: center;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-soft);
  padding: 0.65rem 1rem;
  background: rgba(8, 12, 15, 0.78);
  border-bottom: 1px solid var(--stroke);
  backdrop-filter: blur(8px);
}

.top-bar p {
  margin: 0;
}

.shell {
  width: min(1200px, 92vw);
  margin: 0 auto;
  padding: 1.2rem 0 3rem;
}

.site-header {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  color: var(--text);
}

.brand img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  border-radius: 12px;
  border: 1px solid var(--stroke);
  background: rgba(255, 255, 255, 0.06);
  padding: 0.3rem;
}

.brand-title {
  display: block;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: 0.03em;
}

.brand-subtitle {
  display: block;
  margin-top: -0.5rem;
  color: var(--text-muted);
  font-size: 0.86rem;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.nav {
  justify-self: center;
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
}

.nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  transition: color 220ms ease;
}

.nav a:hover {
  color: var(--gold-soft);
}

.nav a.active {
  color: #f7ddad;
  border-bottom: 1px solid rgba(247, 221, 173, 0.7);
}

.action-pill,
.primary,
.secondary,
.product-meta button,
.site-footer button {
  border-radius: 999px;
  border: 1px solid transparent;
  font: inherit;
  transition: transform 220ms ease, box-shadow 220ms ease, background-color 220ms ease;
}

.action-pill,
.product-meta button,
.site-footer button {
  color: #d0c6b6;
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--stroke);
  padding: 0.55rem 1rem;
}

.hero {
  display: grid;
  grid-template-columns: 1.25fr 0.9fr;
  gap: 2rem;
  align-items: stretch;
  margin-top: 1rem;
}

.hero-copy {
  background: linear-gradient(165deg, rgba(17, 33, 40, 0.92), rgba(17, 33, 40, 0.65));
  border: 1px solid var(--stroke);
  border-radius: 24px;
  padding: 2.2rem;
  box-shadow: var(--shadow);
}

.eyebrow {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--gold-soft);
  font-size: 0.77rem;
}

h1,
h2,
h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  margin: 0;
  line-height: 1.1;
}

.hero-copy h1 {
  font-size: clamp(2rem, 4.2vw, 3.6rem);
  margin-top: 0.6rem;
  margin-bottom: 1rem;
}

.hero-copy p {
  color: var(--text-muted);
  max-width: 62ch;
}

.cta-row {
  margin-top: 1.5rem;
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
}

.primary,
.secondary {
  padding: 0.72rem 1.35rem;
  font-size: 0.95rem;
  text-decoration: none;
}

.primary {
  background: linear-gradient(135deg, #c09a62, #e0c093);
  color: #1a1611;
  font-weight: 700;
}

.secondary {
  border-color: var(--stroke);
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
}

.launch-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--stroke);
  border-radius: 24px;
  padding: 2rem;
  background: linear-gradient(145deg, rgba(9, 14, 18, 0.95), rgba(36, 50, 58, 0.85));
  box-shadow: var(--shadow);
}

.launch-card::after {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  right: -120px;
  bottom: -140px;
  background: radial-gradient(circle at center, rgba(229, 209, 170, 0.28), transparent 68%);
}

.launch-label {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.75rem;
  color: var(--gold-soft);
}

.launch-card h2 {
  margin-top: 0.5rem;
  font-size: 2.1rem;
}

.launch-date {
  margin: 0.45rem 0 1.05rem;
  font-size: 1.45rem;
  color: #f7d7a0;
}

.countdown {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.55rem;
  margin-bottom: 0.7rem;
}

.countdown-item {
  text-align: center;
  border: 1px solid rgba(229, 209, 170, 0.2);
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.18);
  padding: 0.5rem 0.35rem;
}

.count-value {
  display: block;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #f5ddb4;
  line-height: 1;
}

.count-label {
  display: block;
  margin-top: 0.2rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.64rem;
  color: var(--text-muted);
}

.countdown-note {
  margin: 0 0 0.75rem;
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #d9c7a9;
}

.collection-block,
.products,
.site-footer,
.catalog-preview,
.launch-list,
.story-hero {
  margin-top: 2.4rem;
  padding: 2rem;
  background: var(--panel);
  border: 1px solid var(--stroke);
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1rem;
  margin-bottom: 1.2rem;
}

.section-head h2 {
  font-size: clamp(1.6rem, 2.8vw, 2.5rem);
}

.collection-grid,
.product-grid {
  display: grid;
  gap: 1rem;
}

.collection-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.collection-card {
  padding: 1.2rem;
  border-radius: 18px;
  border: 1px solid var(--stroke);
  background: var(--panel-light);
}

.collection-card h3 {
  font-size: 1.55rem;
}

.collection-card p,
.product-card p,
.site-footer p {
  color: var(--text-muted);
}

.collection-card span {
  color: var(--gold-soft);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.75rem;
}

.product-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.product-card {
  padding: 1.2rem;
  border-radius: 18px;
  border: 1px solid var(--stroke);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.04));
}

.product-card h3 {
  font-size: 1.45rem;
}

.product-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1rem;
}

.product-meta span {
  color: #f5ddb4;
  font-size: 1.05rem;
  font-weight: 700;
}

.catalog-preview {
  background:
    radial-gradient(circle at 82% 18%, rgba(229, 209, 170, 0.08), transparent 30%),
    var(--panel);
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 1.2rem;
}

.filter-chip {
  border-radius: 999px;
  border: 1px solid var(--stroke);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-muted);
  padding: 0.45rem 0.95rem;
  font: inherit;
  font-size: 0.86rem;
  letter-spacing: 0.03em;
}

.catalog-grid,
.story-grid,
.timeline-grid {
  display: grid;
  gap: 1rem;
}

.catalog-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.catalog-card,
.value-card,
.timeline-card {
  border: 1px solid var(--stroke);
  border-radius: 18px;
  padding: 1.15rem;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
}

.catalog-card h3,
.value-card h3,
.timeline-card h3 {
  font-size: 1.35rem;
}

.catalog-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
  color: var(--text-muted);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.badge {
  color: #1d160b;
  background: linear-gradient(135deg, #e2c28f, #bb9458);
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  font-weight: 700;
}

.catalog-card p,
.value-card p,
.timeline-card p,
.launch-list p {
  color: var(--text-muted);
}

.launch-form {
  margin-top: 1.2rem;
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 0.8rem;
  align-items: end;
}

.field {
  display: grid;
  gap: 0.35rem;
}

.field span {
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-soft);
}

.field input,
.field select {
  width: 100%;
  border: 1px solid var(--stroke);
  border-radius: 12px;
  padding: 0.7rem 0.75rem;
  font: inherit;
  color: var(--text);
  background: rgba(9, 15, 18, 0.75);
}

.field input::placeholder {
  color: #9e9a90;
}

.field input:focus,
.field select:focus {
  outline: 2px solid rgba(229, 209, 170, 0.35);
  outline-offset: 1px;
}

.launch-form button {
  border-radius: 999px;
  border: 1px solid var(--stroke);
  background: rgba(255, 255, 255, 0.08);
  color: #d8cbb6;
  padding: 0.68rem 1.1rem;
  font: inherit;
}

.story-hero {
  display: grid;
  grid-template-columns: 1.25fr 0.95fr;
  gap: 1.4rem;
}

.story-hero h1 {
  font-size: clamp(2rem, 4.1vw, 3.3rem);
  margin: 0.6rem 0 0.9rem;
}

.story-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.timeline-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.timeline-card span {
  font-size: 0.74rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-soft);
}

button:disabled {
  cursor: not-allowed;
  opacity: 0.72;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  animation: rise 700ms ease-out forwards;
}

.hero.reveal {
  animation-delay: 80ms;
}

.collection-block.reveal {
  animation-delay: 130ms;
}

.products.reveal {
  animation-delay: 180ms;
}

.catalog-preview.reveal,
.launch-list.reveal {
  animation-delay: 205ms;
}

.site-footer.reveal {
  animation-delay: 220ms;
}

@keyframes rise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .nav {
    justify-self: start;
  }

  .hero {
    grid-template-columns: 1fr;
  }

  .collection-grid {
    grid-template-columns: 1fr;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }

  .catalog-grid,
  .story-grid,
  .timeline-grid {
    grid-template-columns: 1fr;
  }

  .launch-form {
    grid-template-columns: 1fr;
  }

  .story-hero {
    grid-template-columns: 1fr;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 620px) {
  .shell {
    width: min(1200px, 94vw);
  }

  .hero-copy,
  .launch-card,
  .collection-block,
  .products,
  .site-footer,
  .catalog-preview,
  .launch-list,
  .story-hero {
    padding: 1.3rem;
  }

  .brand img {
    width: 54px;
    height: 54px;
  }

  .brand-title {
    font-size: 1.7rem;
  }

  .countdown {
    gap: 0.4rem;
  }

  .count-value {
    font-size: 1.12rem;
  }
}
