:root {
  --ivory:      #faf6ef;
  --cream:      #f3ece0;
  --parchment:  #e8dcc8;
  --gold:       #9a7520;
  --gold-light: #b8922a;
  --gold-pale:  #e8d5a3;
  --burgundy:   #5a1520;
  --burg-light: #7a2230;
  --ink:        #0d0702;
  --ink-soft:   #1e0f05;
  --muted:      rgba(15,8,2,0.65);
  --border:     rgba(154,117,32,0.25);
  --border-str: rgba(154,117,32,0.5);
  --shadow:     0 4px 40px rgba(90,21,32,0.1);
  --box-width:  120px;
  --box-height: 360px;
  --box-depth:  120px;
}

/* ─── COLLECTIBLE RARITY CARDS ─── */
.rarity-cards {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 1rem;
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
}

.rarity-card {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  border: 4px solid #fff;
  box-shadow:
    0 0 0 1px rgba(154,117,32,0.25),
    0 10px 40px rgba(0,0,0,0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: block;
}
.rarity-card:hover {
  transform: translateY(-8px) scale(1.02);
}
.rarity-saffron:hover { box-shadow: 0 0 0 2px rgba(208,84,24,0.5), 0 20px 50px rgba(208,84,24,0.25); }
.rarity-golden:hover  { box-shadow: 0 0 0 2px rgba(192,152,24,0.5), 0 20px 50px rgba(192,152,24,0.25); }
.rarity-white:hover   { box-shadow: 0 0 0 2px rgba(180,160,130,0.5), 0 20px 50px rgba(180,160,130,0.2); }
.rarity-crimson:hover { box-shadow: 0 0 0 2px rgba(122,24,32,0.6),  0 20px 50px rgba(122,24,32,0.35); }

/* Shimmer on hover */
.rarity-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 30%, rgba(255,255,255,0.12) 50%, transparent 70%);
  opacity: 0;
  transition: opacity 0.3s;
  z-index: 3;
  pointer-events: none;
}
.rarity-card:hover::before { opacity: 1; }

/* Image — full width, natural height */
.rarity-card picture {
  display: block;
  width: 100%;
}
.rarity-card-img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease;
}
.rarity-card:hover .rarity-card-img { transform: scale(1.04); }

/* Rarity badge — top left */
.rarity-card-badge {
  position: absolute;
  top: 0.55rem;
  left: 0.55rem;
  z-index: 4;
  font-family: 'Cinzel', serif;
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.25rem 0.55rem;
  border-radius: 2px;
}
.rarity-saffron .rarity-card-badge { background: rgba(180,64,16,0.9); color: #fff; }
.rarity-golden  .rarity-card-badge { background: rgba(140,96,8,0.9);  color: #fff8e0; }
.rarity-white   .rarity-card-badge { background: rgba(240,230,210,0.9); color: #3a2a10; }
.rarity-crimson .rarity-card-badge { background: rgba(80,16,28,0.95);  color: #f3e8c0; }

/* Text overlay — absolute bottom */
.rarity-card-body {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 4;
  padding: 2rem 0.8rem 0.8rem;
  background: linear-gradient(to top,
    rgba(8,4,2,0.92) 0%,
    rgba(8,4,2,0.65) 50%,
    transparent 100%
  );
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
  text-align: center;
}

.rarity-name {
  font-family: 'Cinzel', serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0 1px 6px rgba(0,0,0,0.8);
  line-height: 1;
}

.rarity-robe {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.65);
  line-height: 1;
}

.rarity-divider {
  width: 20px;
  height: 1px;
  background: rgba(243,232,192,0.5);
  margin: 0.2rem 0;
}

.rarity-tag {
  font-family: 'Cinzel', serif;
  font-size: 0.48rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #f3e8c0;
  opacity: 0.75;
}

@media (max-width: 600px) {
  .rarity-cards { max-width: 100%; gap: 0.7rem; }
  .rarity-name  { font-size: 0.8rem; }
}




*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--ivory);
  color: var(--ink);
  font-family: 'EB Garamond', serif;
  font-size: 20px;
  overflow-x: hidden;
}

/* ─── NAV ─── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 4rem;
  background: rgba(250,246,239,0.93);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  font-family: 'Cinzel', serif;
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--burgundy);
  text-decoration: none;
}

.nav-links { display: flex; gap: 2.5rem; list-style: none; }
.nav-links a {
  font-family: 'Cinzel', serif;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.3s;
}
.nav-links a:hover { color: var(--burgundy); }

/* ─── SECTION 1: HERO ─── */
#hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  padding: 7rem 4rem 5rem;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 55% at 50% 0%, rgba(184,146,42,0.08) 0%, transparent 70%),
    radial-gradient(ellipse 60% 40% at 50% 100%, rgba(107,31,42,0.05) 0%, transparent 70%),
    var(--ivory);
}

#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='400' height='400' filter='url(%23n)' opacity='0.025'/%3E%3C/svg%3E");
  pointer-events: none;
}

/* decorative inset border */
#hero::after {
  content: '';
  position: absolute;
  top: 5.5rem; left: 2.5rem; right: 2.5rem; bottom: 2.5rem;
  border: 1px solid var(--border);
  pointer-events: none;
}

.hero-badge {
  font-family: 'Cinzel', serif;
  font-size: 0.62rem;
  letter-spacing: 0.3em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 2.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  animation: fadeUp 1s ease both;
}
.hero-badge::before, .hero-badge::after {
  content: '';
  display: block;
  width: 40px; height: 1px;
  background: var(--gold-light);
  opacity: 0.5;
}

.hero-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(2.4rem, 4.5vw, 5.5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: 0.06em;
  color: var(--ink);
  animation: fadeUp 1s 0.15s ease both;
}

.hero-title .line-accent {
  color: var(--burgundy);
  display: block;
  font-weight: 400;
  font-style: italic;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05em;
  letter-spacing: 0.03em;
  margin-top: 0.1em;
}

.hero-descriptor {
  font-family: 'Cinzel', serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--burgundy);
  line-height: 1.7;
  margin-bottom: 1rem;
  max-width: 480px;
}

.hero-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4rem;
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}

.hero-image-wrap {
  position: relative;
  flex: 0 0 auto;
}

.hero-image-wrap picture {
  display: block;
}

.hero-image {
  width: clamp(220px, 28vw, 380px);
  height: clamp(280px, 36vw, 480px);
  object-fit: contain;
  object-position: center;
  border-radius: 0;
  border: none;
  box-shadow: none;
  animation: fadeUp 1s 0.1s ease both;
  display: block;
  background: transparent;
}

.hero-image-glow {
  display: none;
}

.hero-text {
  text-align: left;
  flex: 1;
  min-width: 0;
  max-width: 520px;
  animation: fadeUp 1s 0.2s ease both;
}

.hero-text .hero-ornament { margin: 1.5rem 0; }
.hero-text .hero-sub { max-width: 100%; }

@media (max-width: 768px) {
  .hero-content { flex-direction: column; gap: 2rem; text-align: center; }
  .hero-text { text-align: center; max-width: 100%; }
  .hero-text .hero-ornament { margin: 1.2rem auto; }
  .hero-image { width: 220px; height: 280px; }
  .hero-descriptor { text-align: center; margin: 0 auto 1rem; letter-spacing: 0.02em; }
}

.hero-sub {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  color: var(--ink-soft);
  font-weight: 400;
  font-style: italic;
  letter-spacing: 0.02em;
  max-width: 500px;
  line-height: 1.9;
  animation: fadeUp 1s 0.45s ease both;
}

.hero-scroll {
  position: absolute;
  bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--muted);
  font-family: 'Cinzel', serif;
  font-size: 0.52rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  animation: fadeUp 1s 0.9s ease both;
}
.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2.5s ease-in-out infinite;
}

/* ─── EYEBROW UTILITY ─── */
.eyebrow {
  font-family: 'Cinzel', serif;
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  color: var(--gold);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.2rem;
}
.eyebrow::before, .eyebrow::after {
  content: '';
  display: block;
  width: 28px; height: 1px;
  background: var(--gold-light);
  opacity: 0.5;
}

.section-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(2rem, 5vw, 3.8rem);
  font-weight: 600;
  line-height: 1.1;
  color: var(--ink);
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.section-body {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.35rem;
  color: var(--ink-soft);
  font-weight: 400;
  line-height: 1.9;
  max-width: 500px;
}

/* ─── ABOUT BABA ─── */
#about {
  padding: 8rem 4rem;
  border-top: 1px solid var(--border);
  background: var(--cream);
}

.about-inner {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}

.about-emblem-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 2rem auto 0;
  gap: 0.6rem;
}

.about-emblem-wrap picture {
  display: block;
}

#whats-in-box picture {
  display: block;
  width: 100%;
  min-width: 0;
}

#journey picture {
  display: block;
  margin: 0 auto 2.5rem;
}

.about-emblem {
  width: 160px;
  height: 160px;
  object-fit: contain;
  display: block;
}

.about-emblem-caption {
  font-family: 'Cinzel', serif;
  font-size: 0.58rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
}

.about-body {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  text-align: left;
}

.about-text {
  font-family: 'EB Garamond', serif;
  font-size: 1.2rem;
  color: var(--ink-soft);
  line-height: 1.95;
}

.about-text em {
  font-style: normal;
  color: var(--burgundy);
  font-weight: 500;
}

@media (max-width: 768px) {
  #about { padding: 4rem 1.5rem; }
  .about-text { font-size: 1rem; }
}

/* ─── SECTION 2: CTA ─── */
#cta {
  padding: 8rem 4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border-top: 1px solid var(--border);
  background: var(--cream);
  position: relative;
  overflow: hidden;
}
#cta::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 50% at 50% 50%, rgba(184,146,42,0.05) 0%, transparent 70%);
  pointer-events: none;
}

.cta-buttons {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 2.5rem;
}

.btn-primary {
  font-family: 'Cinzel', serif;
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 1rem 3rem;
  background: var(--burgundy);
  color: var(--gold-pale);
  border: 1px solid var(--burgundy);
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
}
.btn-primary:hover {
  background: var(--burg-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(107,31,42,0.2);
}

.btn-secondary {
  font-family: 'Cinzel', serif;
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 1rem 3rem;
  background: transparent;
  color: var(--burgundy);
  border: 1px solid var(--border-str);
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
}
.btn-secondary:hover {
  background: rgba(107,31,42,0.06);
  border-color: var(--burgundy);
  transform: translateY(-2px);
}

/* ─── SECTION 3: PRODUCT ─── */
#product {
  padding: 8rem 4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-top: 1px solid var(--border);
  background: var(--ivory);
  position: relative;
}

.scene {
  width: 120px; height: 360px;
  perspective: 700px;
  margin: 3rem auto 2.5rem;
}

.box {
  width: 120px; height: 360px;
  position: relative;
  transform-style: preserve-3d;
  animation: spinBox 16s linear infinite;
}

#easter-box {
  cursor: pointer;
  outline: none;
  pointer-events: auto;
}
#easter-box .face {
  pointer-events: none;
}

#easter-overlay {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  background: var(--ivory);
}
#easter-overlay.open { display: flex; }
.easter-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(90, 21, 32, 0.42);
  backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity 0.45s ease;
}
#easter-overlay.open .easter-backdrop { opacity: 1; }
.easter-poster-wrap {
  position: relative;
  z-index: 1;
  width: min(94vw, 620px);
  max-height: 94vh;
  overflow: auto;
  background: linear-gradient(180deg, #faf6ef 0%, #f3ece0 100%);
  border: 1px solid rgba(184,146,42,0.36);
  box-shadow: 0 24px 60px rgba(45, 18, 8, 0.34);
  padding: 1rem 1rem 1.2rem;
  transform: scale(0.94);
  opacity: 0;
  transition: transform 0.45s ease, opacity 0.45s ease;
}
#easter-overlay.open .easter-poster-wrap {
  transform: scale(1);
  opacity: 1;
}
#easter-poster {
  width: 100%;
  height: auto;
  display: block;
  border: 1px solid rgba(184,146,42,0.45);
  box-shadow: 0 12px 34px rgba(0,0,0,0.28);
}
#easter-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(184,146,42,0.75);
  background: rgba(250,246,239,0.96);
  color: var(--burgundy);
  font-family: 'Cinzel', serif;
  cursor: pointer;
}
#easter-close:hover { background: #fff; }

.easter-title {
  font-family: 'Cinzel', serif;
  text-align: center;
  font-size: 0.7rem;
  letter-spacing: 0.23em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0.1rem 0 0.8rem;
}

.easter-subtitle {
  margin: 0.7rem 0 0;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  text-align: center;
  color: var(--muted);
  font-size: 1rem;
}

.easter-cta-row {
  margin: 0.95rem auto 0.8rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.55rem;
}
#easter-rsvp,
#easter-share-devotee {
  width: max-content;
  display: inline-block;
  text-decoration: none;
  border: 1px solid var(--gold);
  color: var(--burgundy);
  background: #f7f0df;
  padding: 0.62rem 1rem;
  font-family: 'Cinzel', serif;
  font-size: 0.55rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
#easter-share-devotee { cursor: pointer; }
#easter-rsvp:hover,
#easter-share-devotee:hover { background: #f3e8cf; }

.easter-share {
  border-top: 1px solid rgba(184,146,42,0.3);
  padding-top: 0.9rem;
}
.easter-share-label {
  text-align: center;
  font-family: 'Cinzel', serif;
  font-size: 0.5rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.6rem;
}
.easter-share-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.45rem;
}
.easter-share-btn {
  border: 1px solid rgba(154,117,32,0.5);
  background: #f8f1e2;
  color: var(--burgundy);
  font-family: 'Cinzel', serif;
  font-size: 0.5rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.45rem 0.55rem;
  cursor: pointer;
}
.easter-share-btn:hover { background: #f3e8cf; }

.face {
  position: absolute;
  backface-visibility: hidden;
  overflow: hidden;
  border: 1px solid rgba(184,146,42,0.2);
}

/* 4 side faces — background-size 400% slices the 4-column sprite sheet */
.face-front, .face-back, .face-left, .face-right {
  width: 120px; height: 360px;
  top: 0; left: 0;
  background-image: url('https://raw.githubusercontent.com/Auraaz/sticqr-labels-client/refs/heads/main/client/sarvam_sai_box.webp');
  background-size: 400% 100%;
  background-repeat: no-repeat;
}
.face-front { transform: translateZ(60px);                   background-position: 0% 0%;      }
.face-right { transform: rotateY(90deg)  translateZ(60px);   background-position: 33.333% 0%; }
.face-back  { transform: rotateY(180deg) translateZ(60px);   background-position: 66.666% 0%; }
.face-left  { transform: rotateY(-90deg) translateZ(60px);   background-position: 100% 0%;    }

/* Top & bottom caps */
.face-top, .face-bottom {
  width: 120px; height: 120px;
  top: 0; left: 0;
  background-image: url('https://raw.githubusercontent.com/Auraaz/sticqr-labels-client/refs/heads/main/client/satyasai_100.webp');
  background-size: 100% 100%;
  background-repeat: no-repeat;
}
.face-top    { top: 120px; transform: rotateX(90deg)  translateZ(180px); }
.face-bottom { top: 480px; transform: rotateX(-90deg) translateZ(180px); }

.face-label {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Cinzel', serif;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--burgundy);
  background: rgba(250,246,239,0.85);
  padding: 0.2rem 0.4rem;
  border: 1px solid var(--gold);
  white-space: nowrap;
  z-index: 10;
  pointer-events: none;
}

.box-caption {
  text-align: center;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: var(--ink-soft);
  font-size: 1.2rem;
  font-weight: 400;
  max-width: 420px;
  line-height: 1.9;
  margin-bottom: 3rem;
}


/* ─── PRODUCT SPECS ─── */
.product-specs {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1px;
  width: 100%;
  max-width: 860px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-bottom: 3rem;
  box-shadow: var(--shadow);
}

.spec-item {
  background: var(--ivory);
  padding: 1.4rem 1rem;
  text-align: center;
  transition: background 0.3s;
}
.spec-item:hover { background: var(--cream); }

.spec-value {
  font-family: 'Cinzel', serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--burgundy);
  letter-spacing: 0.05em;
  margin-bottom: 0.4rem;
  line-height: 1.2;
}

.spec-label {
  font-family: 'Cinzel', serif;
  font-size: 0.55rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

@media (max-width: 768px) {
  .product-specs { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 400px) {
  .product-specs { grid-template-columns: repeat(2, 1fr); }
}

/* ─── DISCOVERY BOX ─── */
.discovery-wrap {
  width: 100%;
  max-width: 520px;
  margin: 2rem 0 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.discovery-header {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
}

.discovery-intro {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.25rem;
  color: var(--ink-soft);
  line-height: 1.9;
  max-width: 580px;
}

.discovery-ratio {
  width: 100%;
  max-width: 520px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.ratio-bar {
  width: 100%;
  display: flex;
  height: 80px;
  border: 1px solid var(--border-str);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.ratio-segment {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  position: relative;
}
.ratio-segment:not(:last-child) {
  border-right: 1px solid rgba(255,255,255,0.2);
}

.ratio-orange { background: linear-gradient(145deg, #b03d08, #d05418); flex: 4; }
.ratio-yellow { background: linear-gradient(145deg, #956808, #c09818); flex: 3; }
.ratio-white  { background: linear-gradient(145deg, #d8d0be, #ede5d4); flex: 2; }
.ratio-red    { background: linear-gradient(145deg, #420810, #7a1820); flex: 1; }

.ratio-num {
  font-family: 'Cinzel', serif;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1;
  color: #fff;
}
.ratio-white .ratio-num { color: var(--burgundy); }

.ratio-name {
  font-family: 'Cinzel', serif;
  font-size: 0.52rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
}
.ratio-white .ratio-name { color: var(--muted); }

.ratio-caption {
  font-family: 'Cinzel', serif;
  font-size: 0.58rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: center;
}

.discovery-note {
  background: var(--cream);
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
  padding: 1.2rem 1.8rem;
  width: 100%;
}

.discovery-note p {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.3rem;
  color: var(--ink-soft);
  line-height: 1.7;
  text-align: center;
}

@media (max-width: 768px) {
  .ratio-bar { height: 64px; }
  .ratio-num { font-size: 1.1rem; }
  .ratio-name { display: none; }
  .discovery-note { padding: 1rem 1.2rem; }
}

/* ─── STANDALONE COUNTDOWN ─── */
.countdown-wrap {
  width: 100%;
  max-width: 860px;
  background: var(--burgundy);
  padding: 1.8rem 2rem;
  text-align: center;
  margin-bottom: 1px;
  position: relative;
  overflow: hidden;
}
.countdown-wrap::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}

.countdown-days {
  font-family: 'Cinzel', serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(243,232,192,0.75);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.3rem;
  white-space: nowrap;
}

.countdown-timer {
  font-family: 'Courier New', Courier, monospace;
  font-size: clamp(1.4rem, 5vw, 2.2rem);
  font-weight: 700;
  color: #f3e8c0;
  letter-spacing: 0.1em;
  line-height: 1;
  display: block;
  text-align: center;
  white-space: nowrap;
}

.countdown-label {
  font-family: 'Cinzel', serif;
  font-size: 0.58rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-top: 0.5rem;
  display: block;
}

.countdown-label {
  font-family: 'Cinzel', serif;
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-top: 0.6rem;
}

.drop-stats {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1px;
  width: 100%;
  max-width: 860px;
  background: var(--border);
  border: 1px solid var(--border);
  border-top: none;
  box-shadow: var(--shadow);
}

.stat-card {
  background: var(--ivory);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: background 0.3s;
  min-height: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.stat-card:hover { background: var(--cream); }

.stat-card--accent {
  background: var(--cream);
  position: relative;
}
.stat-card--accent::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}

.stat-num {
  font-family: 'Cinzel', serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--burgundy);
  line-height: 1;
  margin-bottom: 0.5rem;
  letter-spacing: 0.05em;
  font-variant-numeric: tabular-nums;
  min-width: 0;
  display: block;
  white-space: nowrap;
}

.stat-card--accent {
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

.stat-label {
  font-family: 'Cinzel', serif;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.mint-band {
  width: 100%;
  max-width: 860px;
  margin-top: 1px;
  background: var(--burgundy);
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.mint-band-label {
  font-family: 'Cinzel', serif;
  font-size: 0.55rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(232,213,163,0.55);
}

.mint-band-dates {
  font-family: 'Cinzel', serif;
  font-size: 0.88rem;
  letter-spacing: 0.15em;
  color: var(--gold-pale);
  font-weight: 600;
}

.mint-band-arrow { color: var(--gold); font-size: 1rem; }

/* ─── SECTION 4: CAROUSEL ─── */
#carousel-section {
  padding: 8rem 4rem;
  border-top: 1px solid var(--border);
  background: var(--cream);
  overflow: hidden;
}

.carousel-header { text-align: center; margin-bottom: 4rem; }

.carousel-wrap {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.carousel-track {
  display: flex;
  transition: transform 0.7s cubic-bezier(0.77, 0, 0.175, 1);
}

.slide {
  min-width: 100%;
  padding: 5rem 5rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 440px;
  position: relative;
  overflow: hidden;
}

.slide-orange { background: linear-gradient(145deg, #b03d08 0%, #d05418 50%, #e07035 100%); }
.slide-yellow { background: linear-gradient(145deg, #956808 0%, #ba8c18 50%, #d4a830 100%); }
.slide-white  { background: linear-gradient(145deg, #ddd5c4 0%, #ede5d4 60%, #faf6ef 100%); }
.slide-red    { background: linear-gradient(145deg, #420810 0%, #6e1420 50%, #921c2c 100%); }

/* corner ornaments */
.slide::before {
  content: '';
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  width: 50px; height: 50px;
  border-top: 1px solid rgba(255,255,255,0.18);
  border-right: 1px solid rgba(255,255,255,0.18);
}
.slide::after {
  content: '';
  position: absolute;
  bottom: 1.5rem; left: 1.5rem;
  width: 50px; height: 50px;
  border-bottom: 1px solid rgba(255,255,255,0.18);
  border-left: 1px solid rgba(255,255,255,0.18);
}
.slide-white::before, .slide-white::after { border-color: rgba(107,31,42,0.12); }

.slide-num {
  font-family: 'Cinzel', serif;
  font-size: 7rem;
  font-weight: 700;
  position: absolute;
  top: -1rem; right: 2rem;
  line-height: 1;
  pointer-events: none;
  user-select: none;
  color: #fff;
  opacity: 0.1;
}
.slide-white .slide-num { color: var(--burgundy); opacity: 0.07; }

.slide-tag {
  font-family: 'Cinzel', serif;
  font-size: 0.58rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
  position: relative; z-index: 1;
}
.slide-orange .slide-tag,
.slide-yellow .slide-tag,
.slide-red    .slide-tag { color: rgba(255,255,255,0.9); }
.slide-white  .slide-tag { color: var(--gold); }

.slide-h {
  font-family: 'Cinzel', serif;
  font-size: clamp(1.6rem, 3.5vw, 2.8rem);
  font-weight: 600;
  letter-spacing: 0.06em;
  margin-bottom: 0.2rem;
  position: relative; z-index: 1;
  line-height: 1.1;
}
.slide-orange .slide-h,
.slide-yellow .slide-h,
.slide-red    .slide-h { color: #fff; }
.slide-white  .slide-h { color: var(--ink); }

.slide-meaning {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.2rem;
  margin-bottom: 1.2rem;
  position: relative; z-index: 1;
}
.slide-orange .slide-meaning,
.slide-yellow .slide-meaning,
.slide-red    .slide-meaning { color: rgba(255,255,255,0.9); }
.slide-white  .slide-meaning { color: var(--ink-soft); }

.slide-p {
  font-family: 'EB Garamond', serif;
  font-size: 1.1rem;
  line-height: 1.9;
  max-width: 460px;
  position: relative; z-index: 1;
}
.slide-orange .slide-p,
.slide-yellow .slide-p,
.slide-red    .slide-p { color: rgba(255,255,255,0.95); }
.slide-white  .slide-p { color: var(--ink); }

.carousel-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  margin-top: 2rem;
}

.carousel-btn {
  width: 40px; height: 40px;
  border: 1px solid var(--border-str);
  background: var(--ivory);
  color: var(--burgundy);
  font-size: 1rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s;
}
.carousel-btn:hover {
  background: var(--burgundy);
  color: var(--gold-pale);
  border-color: var(--burgundy);
}

.carousel-dots { display: flex; gap: 0.6rem; align-items: center; }
.dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--parchment);
  border: 1px solid var(--border-str);
  cursor: pointer;
  transition: all 0.3s;
}
.dot.active {
  background: var(--burgundy);
  border-color: var(--burgundy);
  transform: scale(1.3);
}

/* ─── SECTION 5: PROCESS ─── */
#process {
  padding: 8rem 4rem;
  border-top: 1px solid var(--border);
  background: var(--ivory);
}

.process-inner { max-width: 1100px; margin: 0 auto; }

.process-header { margin-bottom: 5rem; max-width: 540px; }

.process-desc {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: var(--muted);
  font-size: 1.3rem;
  line-height: 1.9;
  margin-top: 1.2rem;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.step {
  background: var(--ivory);
  padding: 2.5rem 2rem;
  position: relative;
  transition: background 0.3s;
  overflow: hidden;
}
.step:hover { background: var(--cream); }

.step-line {
  position: absolute;
  top: 0; left: 0;
  height: 2px; width: 0;
  background: linear-gradient(to right, var(--burgundy), var(--gold));
  transition: width 0.6s ease;
}
.step:hover .step-line { width: 100%; }

.step-num {
  font-family: 'Cinzel', serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: rgba(154,117,32,0.25);
  line-height: 1;
  margin-bottom: 1rem;
}

.step-title {
  font-family: 'Cinzel', serif;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--burgundy);
  margin-bottom: 0.8rem;
  text-transform: uppercase;
}

.step-desc {
  font-family: 'EB Garamond', serif;
  color: var(--ink-soft);
  font-size: 1.15rem;
  line-height: 1.8;
}

/* ─── MISSION SECTION ─── */
#mission {
  padding: 6rem 4rem;
  border-top: 1px solid var(--border);
  background: var(--cream);
  text-align: center;
}

.mission-inner {
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.mission-ornament-top {
  display: block;
  opacity: 0.6;
}

.mission-quote {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(1.5rem, 3.5vw, 2.1rem);
  color: var(--ink-soft);
  line-height: 1.9;
  letter-spacing: 0.02em;
  font-weight: 400;
}

.mission-quote em {
  font-style: normal;
  color: var(--burgundy);
  font-weight: 600;
}

.mission-phases {
  width: 100%;
  max-width: 620px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  margin: 1rem 0;
}

.mission-phase {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  width: 100%;
  background: var(--ivory);
  border: 1px solid var(--border);
  padding: 1.8rem 2rem;
  text-align: left;
  transition: background 0.3s;
}
.mission-phase:hover { background: #fdf9f3; }

.mission-phase-num {
  font-family: 'Cinzel', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--burgundy);
  opacity: 0.35;
  flex-shrink: 0;
  width: 28px;
  line-height: 1;
  padding-top: 0.2rem;
}

.mission-phase-body { flex: 1; }

.mission-phase-title {
  font-family: 'Cinzel', serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--burgundy);
  margin-bottom: 0.3rem;
}

.mission-phase-detail {
  font-family: 'Cinzel', serif;
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.7rem;
}

.mission-phase-desc {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.1rem;
  color: var(--ink-soft);
  line-height: 1.8;
}

.mission-phase-arrow {
  font-size: 1.2rem;
  color: var(--gold);
  opacity: 0.5;
  padding: 0.4rem 0;
}

@media (max-width: 768px) {
  #mission { padding: 4rem 1.5rem; }
  .mission-quote { font-size: 1.2rem; }
  .mission-phase { padding: 1.4rem 1.2rem; gap: 1rem; }
}

/* ─── TEAM SECTION ─── */
#team {
  padding: 8rem 4rem;
  border-top: 1px solid var(--border);
  background: var(--ivory);
}

.team-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 4rem;
  background: var(--border);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.team-card {
  background: var(--ivory);
  padding: 3rem 2rem;
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
}
.team-card:hover { background: var(--cream); }

.team-card-line {
  position: absolute;
  top: 0; left: 0;
  height: 2px; width: 0;
  background: linear-gradient(to right, var(--burgundy), var(--gold));
  transition: width 0.6s ease;
}
.team-card:hover .team-card-line { width: 100%; }

.team-role {
  font-family: 'Cinzel', serif;
  font-size: 0.58rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.team-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.7rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.2;
  letter-spacing: 0.02em;
}

.team-avatar {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--burgundy), var(--burg-light));
  color: var(--gold-pale);
  font-family: 'Cinzel', serif;
  font-size: 1.6rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
  border: 2px solid var(--border-str);
  letter-spacing: 0.05em;
}

.team-bio {
  font-family: 'EB Garamond', serif;
  font-size: 1.05rem;
  color: var(--ink-soft);
  line-height: 1.8;
  margin-top: 0.6rem;
  margin-bottom: 0.2rem;
}

.team-linkedin {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: 'Cinzel', serif;
  font-size: 0.58rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #0A66C2;
  text-decoration: none;
  border: 1px solid rgba(10,102,194,0.3);
  padding: 0.4rem 0.9rem;
  transition: all 0.3s;
  margin-top: 1rem;
  display: block;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
.team-linkedin:hover {
  background: #0A66C2;
  color: #fff;
  border-color: #0A66C2;
}

@media (max-width: 768px) {
  #team { padding: 4rem 1.2rem; }
  .team-grid { grid-template-columns: 1fr; }
}

