/* ===== RESET & BASE ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg: #0A0A0A;
  --gold: #C9A962;
  --gold-dim: #C9A96260;
  --gold-glow: #C9A96240;
  --white: #FFFFFF;
  --text-muted: #848484;
  --text-dim: #6A6A6A;
  --text-faint: #4A4A4A;
  --border: #2A2A2A;
  --surface: #141414;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

/* ===== UTILITIES ===== */
.icon-14 { width: 14px; height: 14px; }
.icon-16 { width: 16px; height: 16px; }
.icon-18 { width: 18px; height: 18px; }
.text-muted { color: var(--text-muted); }
.star-icon { color: var(--gold); fill: var(--gold); }

.gold-line {
  width: 60px;
  height: 1px;
  background: var(--gold);
}

.section-subtitle {
  font-size: 12px;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 3px;
  font-family: var(--font-body);
}

.section-title {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 500;
  color: var(--white);
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--gold);
  color: var(--bg);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  padding: 16px 36px;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s;
}
.btn-primary:hover { opacity: 0.9; }

.btn-primary-sm {
  display: inline-flex;
  align-items: center;
  background: var(--gold);
  color: var(--bg);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  padding: 12px 24px;
  transition: opacity 0.2s;
}
.btn-primary-sm:hover { opacity: 0.9; }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  padding: 16px 36px;
  background: transparent;
  cursor: pointer;
  transition: border-color 0.2s;
}
.btn-secondary:hover { border-color: var(--text-muted); }

.btn-primary--icon {
  gap: 10px;
}

.icon-btn {
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  display: flex;
  align-items: center;
}

/* ===== HEADER ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s;
}
.header.scrolled { border-bottom-color: var(--border); }

.header-inner {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 56px;
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-mark {
  width: 36px;
  height: 36px;
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-letter {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--gold);
}

.logo-text {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 3px;
}

.nav-area {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-link {
  font-size: 14px;
  color: var(--text-muted);
  transition: color 0.2s;
}
.nav-link:hover { color: var(--white); }

.right-area {
  display: flex;
  align-items: center;
  gap: 24px;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  cursor: pointer;
}

/* ===== HERO ===== */
.hero {
  width: 100%;
  height: 700px;
  background-size: cover;
  background-position: center;
  background-color: var(--bg);
  position: relative;
}

.hero-overlay {
  width: 100%;
  height: 100%;
  background: #0A0A0ACC;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  padding: 80px 120px;
}

.hero-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--gold-dim);
  padding: 8px 20px;
}

.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 6px var(--gold-glow);
}

.badge-text {
  font-size: 12px;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 2px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: 72px;
  font-weight: 500;
  line-height: 1.1;
  text-align: center;
  max-width: 900px;
}

.hero-sub {
  font-size: 16px;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.6;
  max-width: 680px;
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 20px;
}

.hero-bottom {
  width: 100%;
  max-width: 1200px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
}

.hero-scroll,
.hero-roman {
  font-size: 11px;
  color: var(--text-faint);
  letter-spacing: 2px;
}

.hero-line {
  width: 60px;
  height: 1px;
  background: var(--border);
}

/* ===== COLLECTION INTRO ===== */
.collection-intro {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  padding: 100px 200px;
  background: var(--bg);
}

.intro-title {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 500;
  text-align: center;
}

.intro-body {
  font-size: 15px;
  color: var(--text-dim);
  line-height: 1.8;
  text-align: center;
  max-width: 700px;
}

.intro-stats {
  display: flex;
  align-items: center;
  gap: 80px;
  padding-top: 40px;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.stat-val {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 500;
  color: var(--gold);
}

.stat-label {
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 1px;
}

/* ===== PERFUME GRID ===== */
.perfume-grid {
  padding: 60px 56px;
  background: var(--bg);
  max-width: 1440px;
  margin: 0 auto;
}

.grid-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 40px;
}

.grid-header-left {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.grid-nav {
  display: flex;
  gap: 10px;
}

.grid-nav-btn {
  width: 36px;
  height: 36px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
}
.grid-nav-btn:hover { border-color: var(--text-muted); }
.grid-nav-btn--active {
  background: var(--gold);
  color: var(--bg);
  border-color: var(--gold);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* ===== PERFUME CARD ===== */
.perfume-card {
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s, transform 0.3s;
}
.perfume-card:hover {
  border-color: var(--gold-dim);
  transform: translateY(-4px);
}

.card-img {
  width: 100%;
  height: 260px;
  background-size: cover;
  background-position: center;
  background-color: var(--surface);
}

.card-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: var(--bg);
}

.card-planet {
  font-size: 10px;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 3px;
}

.card-name {
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 500;
}

.card-desc {
  font-size: 12px;
  color: var(--text-dim);
}

.card-desc--italic {
  font-family: var(--font-display);
  font-size: 14px;
  font-style: italic;
  color: var(--gold);
}

/* Galaxy page card overrides */
.olfactive-section .card-grid .card-planet {
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 4px;
}

.olfactive-section .card-grid .card-name {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 3px;
}

.olfactive-section .card-grid .card-img {
  height: 200px;
}

.olfactive-section .card-grid .card-content {
  gap: 8px;
}

.card-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
}

.card-price {
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 500;
  color: var(--gold);
}

/* ===== SIGNATURE FEATURE ===== */
.signature-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 600px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.feature-image {
  background-size: cover;
  background-position: center;
  background-color: var(--surface);
}

.feature-content {
  background: var(--bg);
  padding: 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 32px;
}

.feature-badge {
  display: inline-flex;
  align-self: flex-start;
  padding: 6px 16px;
  border: 1px solid var(--gold-glow);
}
.feature-badge span {
  font-size: 10px;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 2px;
}

.feature-planet {
  font-size: 13px;
  color: var(--text-muted);
}

.feature-title {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 500;
}

.feature-desc {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.8;
}

.notes-row {
  display: flex;
  gap: 40px;
}

.note {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.note-label {
  font-size: 10px;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 2px;
}

.note-value {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
}

.feature-ctas {
  display: flex;
  align-items: center;
  gap: 16px;
}

.feature-price {
  font-family: var(--font-mono);
  font-size: 18px;
  font-weight: 500;
  color: var(--gold);
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  padding: 100px 56px;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}

.testimonial-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  width: 100%;
  max-width: 1328px;
}

.testimonial-card {
  border: 1px solid var(--border);
  background: var(--bg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.stars {
  display: flex;
  gap: 4px;
}

.testimonial-quote {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  font-style: italic;
  line-height: 1.6;
  color: var(--white);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 40px;
  height: 40px;
  background: var(--surface);
  border: 1px solid var(--gold);
  border-radius: 0;
}

.author-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.author-name {
  font-size: 13px;
  font-weight: 500;
}

.author-role {
  font-size: 12px;
  color: var(--text-muted);
}

/* ===== GALAXY BANNER ===== */
.galaxy-banner {
  height: 500px;
  background-size: cover;
  background-position: center;
  background-color: var(--surface);
  border-top: 1px solid var(--border);
}

.galaxy-banner-overlay {
  width: 100%;
  height: 100%;
  background: #0A0A0ABB;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.galaxy-banner-title {
  font-family: var(--font-display);
  font-size: 72px;
  font-weight: 500;
  letter-spacing: 8px;
  text-align: center;
}

.galaxy-banner-subtitle {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  font-style: italic;
  color: var(--gold);
}

.galaxy-banner-desc {
  font-size: 14px;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.8;
  max-width: 560px;
}

/* ===== FINAL CTA ===== */
.final-cta {
  height: 500px;
  background-size: cover;
  background-position: center;
  background-color: var(--surface);
}

.cta-overlay {
  width: 100%;
  height: 100%;
  background: #0A0A0ABB;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}

.cta-headline {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 500;
  text-align: center;
}

.cta-subline {
  font-size: 15px;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.7;
  max-width: 550px;
}

.cta-buttons {
  display: flex;
  align-items: center;
  gap: 20px;
}

.cta-price-note {
  font-size: 12px;
  color: var(--text-faint);
}

/* ===== FOOTER ===== */
.footer {
  border-top: 1px solid var(--border);
  padding: 60px 56px;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 300px;
}

.footer-tagline {
  font-size: 13px;
  color: var(--text-dim);
  line-height: 1.7;
}

.footer-nav {
  display: flex;
  gap: 80px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-col-title {
  font-size: 12px;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 1px;
}

.footer-col a {
  font-size: 13px;
  color: var(--text-dim);
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--white); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.footer-copyright {
  font-size: 11px;
  color: var(--text-faint);
}

.footer-legal {
  display: flex;
  gap: 24px;
}

.footer-legal a {
  font-size: 11px;
  color: var(--text-faint);
  transition: color 0.2s;
}
.footer-legal a:hover { color: var(--text-muted); }

/* ===== PRODUCT PAGE: HERO ===== */
.product-hero {
  width: 100%;
  height: 800px;
  background-size: cover;
  background-position: center;
  background-color: var(--bg);
}

.product-hero-overlay {
  width: 100%;
  height: 100%;
  background: #0A0A0AAA;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
}

.product-planet-num {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 6px;
}

.product-hero-title {
  font-family: var(--font-display);
  font-size: 96px;
  font-weight: 500;
  letter-spacing: 12px;
  text-align: center;
}

.product-hero-name {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 500;
  font-style: italic;
  color: var(--gold);
}

.product-hero-sub {
  font-size: 15px;
  color: var(--text-muted);
  letter-spacing: 2px;
}

.product-price-row {
  display: flex;
  align-items: center;
  gap: 32px;
}

.product-price-label {
  font-size: 13px;
  color: var(--text-dim);
  letter-spacing: 1px;
}

.product-price-val {
  font-family: var(--font-mono);
  font-size: 18px;
  font-weight: 500;
  color: var(--gold);
}

/* ===== PRODUCT PAGE: CONCEPT ===== */
.concept-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  padding: 100px 200px;
  background: var(--bg);
}

.concept-label {
  font-size: 12px;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 3px;
}

.concept-title {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 500;
  line-height: 1.2;
  text-align: center;
  max-width: 700px;
}

.concept-body {
  font-size: 15px;
  color: var(--text-dim);
  line-height: 1.8;
  text-align: center;
  max-width: 700px;
}

/* ===== PRODUCT PAGE: OLFACTIVE PYRAMID ===== */
.olfactive-section {
  padding: 80px 56px;
  border-top: 1px solid var(--border);
  background: var(--bg);
}

.pyramid-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-bottom: 48px;
  width: 100%;
}

.pyramid-title {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 500;
}

.pyramid-desc {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.7;
  text-align: center;
  max-width: 600px;
}

.notes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.note-card {
  border: 1px solid var(--border);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.note-card-icon {
  color: var(--gold);
}

.note-card-label {
  font-size: 11px;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 3px;
}

.note-card-name {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 500;
}

.note-card-line {
  width: 100%;
  height: 1px;
  background: var(--border);
}

.note-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.note-item-name {
  font-size: 14px;
  font-weight: 500;
}

.note-item-desc {
  font-size: 12px;
  color: var(--text-dim);
  line-height: 1.6;
}

/* ===== PRODUCT PAGE: VESSEL ===== */
.vessel-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 600px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.vessel-image {
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-color: var(--bg);
}

.vessel-content {
  background: var(--bg);
  padding: 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 32px;
}

.vessel-badge {
  display: inline-flex;
  align-self: flex-start;
  padding: 6px 16px;
  border: 1px solid var(--gold-glow);
}
.vessel-badge span {
  font-size: 10px;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 2px;
}

.vessel-sub {
  font-size: 13px;
  color: var(--text-muted);
}

.vessel-title {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 500;
}

.vessel-desc {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.8;
}

.vessel-details {
  display: flex;
  gap: 40px;
}

.vessel-detail {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.vessel-detail-label {
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 1px;
}

.vessel-detail-val {
  font-size: 14px;
  font-weight: 500;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
  .card-grid { grid-template-columns: repeat(3, 1fr); }
  .collection-intro { padding: 80px 80px; }
  .concept-section { padding: 80px 80px; }
}

@media (max-width: 1024px) {
  .header-inner { padding: 20px 32px; }
  .nav-area { display: none; }
  .mobile-menu-btn { display: flex; }

  .hero { height: 600px; }
  .hero-overlay { padding: 60px 32px; }
  .hero-title { font-size: 48px; }
  .hero-sub { font-size: 14px; }
  .hero-bottom { display: none; }

  .collection-intro { padding: 60px 32px; }
  .intro-title { font-size: 32px; }
  .intro-stats { gap: 40px; }

  .perfume-grid { padding: 40px 32px; }
  .card-grid { grid-template-columns: repeat(2, 1fr); }

  .galaxy-banner { height: 400px; }
  .galaxy-banner-title { font-size: 48px; letter-spacing: 4px; }

  .signature-feature { grid-template-columns: 1fr; height: auto; }
  .feature-image { height: 400px; }
  .feature-content { padding: 48px 32px; }
  .feature-title { font-size: 36px; }

  .testimonial-grid { grid-template-columns: 1fr; }
  .testimonials { padding: 60px 32px; }

  .final-cta { height: 400px; }
  .cta-headline { font-size: 36px; }

  .footer { padding: 40px 32px; }
  .footer-top { flex-direction: column; gap: 40px; }
  .footer-nav { gap: 40px; }

  /* Product page responsive */
  .product-hero { height: 600px; }
  .product-hero-title { font-size: 56px; letter-spacing: 6px; }
  .concept-section { padding: 60px 32px; }
  .concept-title { font-size: 32px; }
  .notes-grid { grid-template-columns: 1fr; }
  .olfactive-section { padding: 60px 32px; }
  .vessel-section { grid-template-columns: 1fr; height: auto; }
  .vessel-image { height: 400px; }
  .vessel-content { padding: 48px 32px; }
  .vessel-title { font-size: 36px; }
}

@media (max-width: 640px) {
  .hero-title { font-size: 36px; }
  .hero-ctas { flex-direction: column; width: 100%; }
  .hero-ctas .btn-primary,
  .hero-ctas .btn-secondary { width: 100%; text-align: center; }

  .intro-stats { flex-direction: column; gap: 32px; }
  .stat-val { font-size: 28px; }

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

  .notes-row { flex-direction: column; gap: 24px; }

  .cta-headline { font-size: 28px; }
  .cta-buttons { flex-direction: column; }

  .footer-nav { flex-direction: column; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .footer-legal { flex-wrap: wrap; justify-content: center; }

  .product-hero { height: 500px; }
  .product-hero-title { font-size: 40px; letter-spacing: 4px; }
  .product-hero-name { font-size: 22px; }

  .vessel-details { flex-direction: column; gap: 20px; }
}
