/* =============================================
   DELORÉA — SLEEP IN GOLDEN FREQUENCY
   Landing Page Styles
   ============================================= */

:root {
  --gold: #B8922A;
  --gold-light: #D4A843;
  --gold-dark: #7A5E1A;
  --gold-glow: rgba(184, 146, 42, 0.3);
  --white: #FFFFFF;
  --off-white: #FAFAF7;
  --cream: #F5F0E8;
  --text-dark: #1A1A1A;
  --text-mid: #3A3A3A;
  --text-light: #666666;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Montserrat', sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--white);
  color: var(--text-dark);
  font-family: var(--font-sans);
  overflow-x: hidden;
}

/* CANVAS PARTICLES */
#particles-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.6;
}

/* CONTAINER */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 2;
}

/* TYPOGRAPHY */
h1, h2, h3 {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.15;
  color: #1A1A1A;
}

h1 { font-size: clamp(2rem, 4.5vw, 3.2rem); }
h2 { font-size: clamp(2.2rem, 4.5vw, 3.5rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.9rem); }

em { font-style: italic; color: var(--gold); }

p {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 0.95rem;
  line-height: 1.85;
  color: #2A2A2A;
}

.gold-text { color: var(--gold); }

.section-label {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

/* BUTTONS */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 36px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s ease;
}

.btn-primary:hover::before { left: 100%; }
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--gold-glow);
}

.btn-secondary {
  display: inline-block;
  padding: 10px 28px;
  background: transparent;
  color: var(--gold);
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid var(--gold);
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 16px;
}

.btn-secondary:hover {
  background: var(--gold);
  color: var(--white);
}

/* REVEAL ANIMATION */
.reveal {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.9s ease, transform 0.9s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =============================================
   NAV
   ============================================= */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 60px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201,168,76,0.15);
  transition: all 0.3s ease;
}

.nav-logo img {
  height: 44px;
  width: auto;
}

.nav-cta {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
  transition: all 0.3s ease;
}

.nav-cta:hover { color: var(--gold-dark); }

/* =============================================
   HERO
   ============================================= */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(160deg, #FFFFFF 0%, #FAFAF5 40%, #F5EDD8 100%);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201,168,76,0.12) 0%, transparent 70%);
  animation: pulse-glow 6s ease-in-out infinite;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -10%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(201,168,76,0.08) 0%, transparent 70%);
  animation: pulse-glow 8s ease-in-out infinite reverse;
}

@keyframes pulse-glow {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.1); opacity: 0.7; }
}

.hero-content {
  text-align: center;
  z-index: 2;
  padding: 130px 40px 48px;
  animation: hero-fade-in 1.5s ease forwards;
  max-width: 820px;
  margin: 0 auto;
}

@keyframes hero-fade-in {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-logo-wrap {
  position: relative;
  display: inline-block;
  margin-bottom: 32px;
}

.hero-logo {
  width: 280px;
  height: auto;
  position: relative;
  z-index: 2;
  animation: logo-float 5s ease-in-out infinite;
  filter: drop-shadow(0 4px 24px rgba(201,168,76,0.35));
}

@keyframes logo-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.hero-logo-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 340px;
  height: 340px;
  background: radial-gradient(circle, rgba(201,168,76,0.25) 0%, transparent 70%);
  animation: glow-pulse 3s ease-in-out infinite;
  z-index: 1;
}

@keyframes glow-pulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.8; }
  50% { transform: translate(-50%, -50%) scale(1.3); opacity: 0.4; }
}

.hero-title {
  color: #1A1A1A;
  margin-bottom: 24px;
  letter-spacing: -0.01em;
  font-weight: 500;
  text-align: center;
  width: 100%;
}

.hero-subtitle {
  font-size: 1.05rem;
  font-weight: 400;
  color: #1A1A1A;
  margin-bottom: 28px;
  letter-spacing: 0.02em;
  line-height: 1.75;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.hero-supporting {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  font-weight: 400;
  color: #6A5C40;
  margin-bottom: 36px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}

.hero-cta-group {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
  animation: scroll-hint 2s ease-in-out infinite;
}

@keyframes scroll-hint {
  0%, 100% { opacity: 0.5; transform: translateX(-50%) translateY(0); }
  50% { opacity: 1; transform: translateX(-50%) translateY(6px); }
}

.hero-scroll-hint span {
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
}

/* =============================================
   FREQUENCY SECTION
   ============================================= */
.frequency-section {
  padding: 120px 0;
  background: var(--white);
}

.frequency-section .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.freq-text h2 {
  margin-bottom: 28px;
  color: #1A1A1A;
}

.freq-text p {
  margin-bottom: 16px;
  color: #2A2A2A;
}

.freq-visual {
  display: flex;
  justify-content: center;
}

.freq-bars {
  display: flex;
  align-items: flex-end;
  gap: 40px;
  height: 280px;
}

.freq-bar-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.freq-bar-wrap {
  height: 220px;
  display: flex;
  align-items: flex-end;
}

.freq-bar {
  width: 48px;
  border-radius: 4px 4px 0 0;
  transition: height 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  height: 0;
}

.freq-bar.polyester { background: linear-gradient(to top, #D0D0D0, #E8E8E8); }
.freq-bar.cotton { background: linear-gradient(to top, #B8A88A, #D4C4A8); }
.freq-bar.silk { background: linear-gradient(to top, var(--gold-dark), var(--gold), var(--gold-light)); box-shadow: 0 0 20px var(--gold-glow); }

.freq-bar-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.freq-material {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #2A2A2A;
}

.freq-value {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 500;
  color: #1A1A1A;
}

/* =============================================
   CALCULATOR SECTION
   ============================================= */
.calculator-section {
  padding: 120px 0;
  background: linear-gradient(160deg, #FAFAF5 0%, #F5EDD8 50%, #FAFAF5 100%);
  position: relative;
  overflow: hidden;
}

.calc-bg-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(201,168,76,0.1) 0%, transparent 60%);
  pointer-events: none;
}

.calc-header {
  text-align: center;
  margin-bottom: 60px;
}

.calc-header h2 { margin-bottom: 20px; color: #1A1A1A; }
.calc-header p { max-width: 560px; margin: 0 auto; color: #333333; }

.calc-card {
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 2px;
  padding: 60px;
  max-width: 640px;
  margin: 0 auto;
  box-shadow: 0 20px 80px rgba(201,168,76,0.1);
}

.calc-label {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  text-align: center;
}

.calc-date-inputs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 32px;
}

.calc-input {
  width: 70px;
  padding: 14px 10px;
  text-align: center;
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--text-dark);
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(201,168,76,0.4);
  outline: none;
  transition: border-color 0.3s ease;
  -moz-appearance: textfield;
}

.calc-input::-webkit-outer-spin-button,
.calc-input::-webkit-inner-spin-button { -webkit-appearance: none; }

.calc-input:focus { border-bottom-color: var(--gold); }
.calc-input-year { width: 100px; }

.calc-sep {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--gold);
}

.calc-btn {
  width: 100%;
  justify-content: center;
  font-size: 0.75rem;
  padding: 16px;
}

.calc-privacy {
  text-align: center;
  font-size: 0.7rem;
  color: var(--text-light);
  margin-top: 16px;
  letter-spacing: 0.05em;
}

/* RESULT */
.calc-result {
  text-align: center;
  animation: result-appear 0.8s ease forwards;
}

@keyframes result-appear {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

.result-number-wrap {
  position: relative;
  display: inline-block;
  margin-bottom: 32px;
}

.result-glow-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 140px;
  height: 140px;
  border: 1px solid rgba(201,168,76,0.4);
  border-radius: 50%;
  animation: ring-pulse 2s ease-in-out infinite;
}

.result-glow-ring::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 110px;
  height: 110px;
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 50%;
}

@keyframes ring-pulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
  50% { transform: translate(-50%, -50%) scale(1.08); opacity: 0.6; }
}

.result-number {
  font-family: var(--font-serif);
  font-size: 5rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  position: relative;
  z-index: 2;
  text-shadow: 0 0 40px var(--gold-glow);
}

.result-title-wrap { margin-bottom: 20px; }

.result-title {
  font-size: 2rem;
  color: #1A1A1A;
  margin-top: 8px;
  font-weight: 500;
}

.result-desc {
  margin-bottom: 28px;
  font-size: 0.95rem;
  line-height: 1.8;
  color: #2A2A2A;
}

.result-energy-box {
  background: linear-gradient(135deg, rgba(201,168,76,0.08), rgba(201,168,76,0.04));
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 2px;
  padding: 24px 28px;
  margin-bottom: 32px;
  text-align: left;
}

.result-energy-label {
  display: block;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.result-energy-text {
  font-size: 0.9rem;
  line-height: 1.75;
  font-style: italic;
  color: #1A1A1A;
  font-weight: 400;
}

.result-recommendation { margin-bottom: 16px; }

.result-rec-intro {
  font-size: 0.9rem;
  margin-bottom: 20px;
  color: var(--text-mid);
}

.result-shop-btn {
  font-size: 0.75rem;
  padding: 16px 40px;
}

.recalc-btn {
  display: block;
  margin: 0 auto;
}

/* =============================================
   PRODUCT SECTION
   ============================================= */
.product-section {
  padding: 120px 0;
  background: var(--white);
}

.product-header {
  text-align: center;
  margin-bottom: 60px;
}

.product-header h2 { margin-bottom: 0; }

.product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}

.product-card {
  position: relative;
  overflow: hidden;
}

.product-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.product-card:hover .product-img {
  transform: scale(1.04);
}

.product-img-overlay {
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.product-card:hover .product-img-overlay {
  opacity: 1;
}

.product-btn { font-size: 0.7rem; }

.product-info {
  padding: 24px 0 0;
}

.product-info h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
  color: #1A1A1A;
  font-weight: 500;
}

.product-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  border-top: 1px solid rgba(201,168,76,0.2);
  padding-top: 48px;
}

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

.feat-icon {
  font-size: 1.2rem;
  color: var(--gold);
  margin-bottom: 4px;
}

.feat-title {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: #1A1A1A;
  font-weight: 500;
}

.feat-desc {
  font-size: 0.75rem;
  color: #555555;
  letter-spacing: 0.05em;
}

/* =============================================
   EMAIL SECTION
   ============================================= */
.email-section {
  padding: 120px 0;
  background: linear-gradient(160deg, #F5EDD8 0%, #FAFAF5 100%);
  position: relative;
  overflow: hidden;
}

.email-bg-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201,168,76,0.12) 0%, transparent 60%);
}

.email-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.email-symbol {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 20px;
  animation: symbol-spin 8s linear infinite;
  display: inline-block;
}

@keyframes symbol-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.email-content h2 { margin-bottom: 20px; color: #1A1A1A; }
.email-content p { margin-bottom: 36px; color: #333333; }

.email-form { width: 100%; }

.email-inputs {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}

.email-input {
  width: 100%;
  padding: 14px 20px;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--text-dark);
  background: rgba(255,255,255,0.8);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 1px;
  outline: none;
  transition: border-color 0.3s ease;
}

.email-input:focus {
  border-color: var(--gold);
  background: rgba(255,255,255,0.95);
}

.email-input::placeholder { color: var(--text-light); }

.email-btn {
  width: 100%;
  justify-content: center;
  font-size: 0.75rem;
  padding: 16px;
}

.email-success {
  padding: 32px;
  text-align: center;
  animation: result-appear 0.6s ease forwards;
}

.success-icon {
  display: block;
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 16px;
}

.email-success p {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--text-dark);
}

.email-privacy {
  font-size: 0.7rem;
  color: var(--text-light);
  margin-top: 16px;
  margin-bottom: 0;
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: var(--text-dark);
  padding: 60px 0 40px;
  position: relative;
  z-index: 2;
}

.footer .container {
  display: block;
}

.footer-logo {
  text-align: center;
}

.footer-logo img {
  height: 60px;
  width: auto;
  filter: brightness(0) invert(1) sepia(1) saturate(2) hue-rotate(5deg) brightness(0.9);
  margin-bottom: 8px;
}

.footer-logo p {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
}

.footer-links {
  display: flex;
  gap: 40px;
}

.footer-links a {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover { color: var(--gold); }

.footer-social {
  display: flex;
  gap: 20px;
}

.social-link {
  color: rgba(255,255,255,0.5);
  transition: color 0.3s ease;
}

.social-link:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  width: 100%;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.3);
}

.footer-bottom a {
  color: var(--gold);
  text-decoration: none;
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 900px) {
  .frequency-section .container {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .product-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto 60px;
  }

  .product-features {
    grid-template-columns: repeat(2, 1fr);
  }

  .nav { padding: 16px 24px; }
  .container { padding: 0 24px; }
}

@media (max-width: 600px) {
  .hero-logo { width: 120px; }
  .hero-content { padding: 100px 24px 36px; }
  .calc-card { padding: 40px 24px; }
  .freq-bars { gap: 24px; }
  .freq-bar { width: 36px; }
  .product-features { grid-template-columns: 1fr 1fr; }
  .footer-links { flex-wrap: wrap; justify-content: center; gap: 20px; }
  .nav-logo img { height: 36px; }
}

/* =============================================
   SPIRITUAL SECTION
   ============================================= */
.spiritual-section {
  padding: 120px 0;
  background: linear-gradient(180deg, #FFFFFF 0%, #F8F4EC 50%, #FFFFFF 100%);
  position: relative;
  overflow: hidden;
  z-index: 2;
}

.spiritual-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: center;
}

/* Orbit animation */
.spirit-orbit-wrap {
  position: relative;
  width: 260px;
  height: 260px;
  flex-shrink: 0;
}

.spirit-orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  border: 1px solid rgba(184,146,42,0.3);
  transform: translate(-50%, -50%);
}

.orbit-1 {
  width: 260px;
  height: 260px;
  animation: orbit-spin 20s linear infinite;
  border-color: rgba(184,146,42,0.25);
}

.orbit-1::after {
  content: '';
  position: absolute;
  top: -4px;
  left: 50%;
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  transform: translateX(-50%);
  box-shadow: 0 0 10px var(--gold);
}

.orbit-2 {
  width: 180px;
  height: 180px;
  animation: orbit-spin 14s linear infinite reverse;
  border-color: rgba(184,146,42,0.35);
}

.orbit-2::after {
  content: '';
  position: absolute;
  top: -3px;
  left: 50%;
  width: 6px;
  height: 6px;
  background: var(--gold-light);
  border-radius: 50%;
  transform: translateX(-50%);
  box-shadow: 0 0 8px var(--gold-light);
}

.orbit-3 {
  width: 100px;
  height: 100px;
  animation: orbit-spin 8s linear infinite;
  border-color: rgba(184,146,42,0.5);
}

@keyframes orbit-spin {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

.spirit-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2.4rem;
  color: var(--gold);
  animation: spirit-pulse 4s ease-in-out infinite;
  text-shadow: 0 0 20px rgba(184,146,42,0.5);
  z-index: 2;
}

@keyframes spirit-pulse {
  0%, 100% { opacity: 1; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 0.7; transform: translate(-50%, -50%) scale(1.15); }
}

/* Content */
.spirit-content { position: relative; z-index: 2; }

.spirit-label { color: var(--gold); }

.spirit-heading {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  color: #1A1A1A;
  margin-bottom: 36px;
  line-height: 1.2;
}

/* Quote */
.spirit-quote {
  margin-bottom: 48px;
  padding-left: 24px;
  border-left: 2px solid var(--gold);
}

.quote-text {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-style: italic;
  color: #2A2A2A;
  line-height: 1.8;
  font-weight: 400;
}

/* Pillars */
.spirit-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 48px;
}

.spirit-pillar {
  padding: 24px 20px;
  background: rgba(255,255,255,0.7);
  border: 1px solid rgba(184,146,42,0.2);
  transition: all 0.3s ease;
}

.spirit-pillar:hover {
  border-color: rgba(184,146,42,0.5);
  background: rgba(255,255,255,0.95);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(184,146,42,0.12);
}

.pillar-symbol {
  display: block;
  font-size: 1.4rem;
  color: var(--gold);
  margin-bottom: 12px;
}

.pillar-title {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 500;
  color: #1A1A1A;
  margin-bottom: 8px;
}

.pillar-desc {
  font-size: 0.82rem;
  color: #3A3A3A;
  line-height: 1.7;
  font-weight: 400;
}

/* Mantra */
.spirit-mantra {
  display: flex;
  align-items: center;
  gap: 20px;
}

.mantra-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.mantra-text {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-style: italic;
  color: #1A1A1A;
  white-space: nowrap;
  letter-spacing: 0.05em;
  font-weight: 500;
}

@media (max-width: 900px) {
  .spiritual-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .spirit-orbit-wrap {
    margin: 0 auto;
  }
  .spirit-pillars {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .mantra-text { white-space: normal; text-align: center; }
}

/* =============================================
   SILK BEAUTY SECTION
   ============================================= */
.silk-beauty-section {
  padding: 120px 0;
  background: #FFFFFF;
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.silk-beauty-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(184,146,42,0.3), transparent);
}

.silk-beauty-header {
  text-align: center;
  margin-bottom: 72px;
}

.silk-beauty-header h2 {
  margin-bottom: 20px;
}

.silk-beauty-intro {
  max-width: 600px;
  margin: 0 auto;
  font-size: 1rem;
  color: #3A3A3A;
  line-height: 1.8;
}

.silk-benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 72px;
}

.silk-benefit-card {
  padding: 36px 28px;
  background: #FAFAF7;
  border: 1px solid rgba(184,146,42,0.12);
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}

.silk-benefit-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transition: width 0.5s ease;
}

.silk-benefit-card:hover::after { width: 100%; }

.silk-benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(184,146,42,0.1);
  border-color: rgba(184,146,42,0.3);
  background: #FFFFFF;
}

.silk-benefit-icon-wrap {
  position: relative;
  width: 52px;
  height: 52px;
  margin-bottom: 20px;
}

.silk-benefit-ring {
  position: absolute;
  top: 0; left: 0;
  width: 52px; height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(184,146,42,0.35);
  animation: ring-breathe 3s ease-in-out infinite;
}

@keyframes ring-breathe {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.15); opacity: 0.5; }
}

.silk-benefit-icon {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1.4rem;
  color: var(--gold);
}

.silk-benefit-card h4 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 500;
  color: #1A1A1A;
  margin-bottom: 12px;
}

.silk-benefit-card p {
  font-size: 0.87rem;
  color: #3A3A3A;
  line-height: 1.75;
  margin-bottom: 20px;
}

.silk-benefit-stat {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding-top: 16px;
  border-top: 1px solid rgba(184,146,42,0.15);
}

.stat-number {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--gold);
  line-height: 1;
  transition: all 0.3s ease;
}

.stat-label {
  font-size: 0.72rem;
  color: #666;
  letter-spacing: 0.03em;
  line-height: 1.4;
  font-family: var(--font-sans);
  font-weight: 400;
}

.silk-beauty-cta {
  text-align: center;
  padding: 60px 0 0;
}

.silk-cta-text {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-style: italic;
  color: #1A1A1A;
  margin-bottom: 32px;
}

/* =============================================
   SLEEP IMPORTANCE SECTION
   ============================================= */
.sleep-section {
  padding: 120px 0;
  background: linear-gradient(160deg, #0D0D0D 0%, #1A1208 50%, #0D0D0D 100%);
  position: relative;
  overflow: hidden;
  z-index: 2;
}

.sleep-bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  pointer-events: none;
}

.sleep-stars {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
}

/* Stars generated by JS */
.sleep-star {
  position: absolute;
  background: #fff;
  border-radius: 50%;
  animation: star-twinkle var(--dur, 3s) ease-in-out infinite;
  animation-delay: var(--delay, 0s);
}

@keyframes star-twinkle {
  0%, 100% { opacity: var(--min-op, 0.2); transform: scale(1); }
  50% { opacity: var(--max-op, 0.8); transform: scale(1.3); }
}

/* Gold nebula glow */
.sleep-section::before {
  content: '';
  position: absolute;
  top: 30%; left: 20%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(184,146,42,0.08) 0%, transparent 70%);
  animation: nebula-drift 12s ease-in-out infinite;
}

.sleep-section::after {
  content: '';
  position: absolute;
  bottom: 20%; right: 15%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(184,146,42,0.06) 0%, transparent 70%);
  animation: nebula-drift 16s ease-in-out infinite reverse;
}

@keyframes nebula-drift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -20px) scale(1.1); }
  66% { transform: translate(-20px, 30px) scale(0.9); }
}

.sleep-section .container { position: relative; z-index: 2; }

.sleep-header {
  text-align: center;
  margin-bottom: 72px;
}

.sleep-label-light {
  color: var(--gold-light);
}

.sleep-title {
  color: #FFFFFF;
  font-size: clamp(2.5rem, 5vw, 4rem);
}

.sleep-title em {
  color: var(--gold-light);
}

/* Stats row */
.sleep-stats-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 80px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(184,146,42,0.2);
  padding: 48px 40px;
}

.sleep-stat {
  flex: 1;
  text-align: center;
  padding: 0 40px;
}

.sleep-stat-number {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 400;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 12px;
}

.sleep-stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.05em;
  line-height: 1.5;
  font-family: var(--font-sans);
  font-weight: 300;
}

.sleep-stat-divider {
  width: 1px;
  height: 80px;
  background: rgba(184,146,42,0.3);
  flex-shrink: 0;
}

/* Content grid */
.sleep-content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 72px;
}

.sleep-text-block h3 {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: #FFFFFF;
  margin-bottom: 20px;
  font-weight: 400;
}

.sleep-text-block p {
  color: rgba(255,255,255,0.7);
  font-size: 0.92rem;
  line-height: 1.85;
  margin-bottom: 16px;
  font-weight: 300;
}

/* Quote banner */
.sleep-quote-banner {
  margin-bottom: 80px;
}

.sleep-quote-inner {
  text-align: center;
  padding: 52px 60px;
  border-top: 1px solid rgba(184,146,42,0.3);
  border-bottom: 1px solid rgba(184,146,42,0.3);
  position: relative;
}

.sleep-quote-symbol {
  display: block;
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 24px;
  animation: symbol-pulse 4s ease-in-out infinite;
}

@keyframes symbol-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.2); }
}

.sleep-quote-big {
  font-family: var(--font-serif);
  font-size: clamp(1.3rem, 2.5vw, 1.9rem);
  font-style: italic;
  color: #FFFFFF;
  line-height: 1.6;
  margin-bottom: 20px;
  font-weight: 300;
}

.sleep-quote-author {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  color: var(--gold-light);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

/* Ritual steps */
.sleep-ritual-title {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: #FFFFFF;
  text-align: center;
  margin-bottom: 48px;
  font-weight: 400;
}

.sleep-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.sleep-step {
  padding: 40px 32px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(184,146,42,0.15);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.sleep-step::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.sleep-step:hover::before { transform: translateX(0); }

.sleep-step:hover {
  background: rgba(184,146,42,0.06);
  border-color: rgba(184,146,42,0.35);
}

.step-number {
  font-family: var(--font-serif);
  font-size: 3rem;
  color: rgba(184,146,42,0.25);
  line-height: 1;
  margin-bottom: 20px;
  font-weight: 400;
  transition: color 0.3s ease;
}

.sleep-step:hover .step-number {
  color: rgba(184,146,42,0.6);
}

.step-content h4 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: #FFFFFF;
  margin-bottom: 12px;
  font-weight: 400;
}

.step-content p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.75;
  font-weight: 300;
}

/* Responsive */
@media (max-width: 900px) {
  .silk-benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .sleep-stats-row { flex-direction: column; gap: 32px; padding: 40px 24px; }
  .sleep-stat-divider { width: 60px; height: 1px; }
  .sleep-content-grid { grid-template-columns: 1fr; gap: 40px; }
  .sleep-steps { grid-template-columns: 1fr; gap: 2px; }
  .sleep-quote-inner { padding: 40px 24px; }
}

@media (max-width: 600px) {
  .silk-benefits-grid { grid-template-columns: 1fr; }
}

/* =============================================
   SILK RADIAL LAYOUT (replaces grid)
   ============================================= */
.silk-beauty-section {
  padding: 100px 0 80px;
  background: #FFFFFF;
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.silk-beauty-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(184,146,42,0.3), transparent);
}

.silk-beauty-header {
  text-align: center;
  margin-bottom: 60px;
}

.silk-radial-wrap {
  display: grid;
  grid-template-columns: 1fr 280px 1fr;
  gap: 40px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto 60px;
}

/* Left & Right columns */
.silk-radial-col {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.silk-radial-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.silk-radial-item.visible {
  opacity: 1;
  transform: translateX(0);
}

.silk-radial-right .silk-radial-item {
  flex-direction: row-reverse;
  transform: translateX(20px);
}

.silk-radial-right .silk-radial-item.visible {
  transform: translateX(0);
}

.sri-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(184,146,42,0.35);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--gold);
  background: rgba(184,146,42,0.04);
  transition: all 0.3s ease;
}

.silk-radial-item:hover .sri-icon {
  background: rgba(184,146,42,0.12);
  border-color: var(--gold);
}

.sri-text h4 {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 500;
  color: #1A1A1A;
  margin-bottom: 6px;
}

.sri-text p {
  font-size: 0.82rem;
  color: #4A4A4A;
  line-height: 1.7;
  margin: 0;
}

.sri-text-right {
  text-align: right;
}

/* Center graphic */
.silk-radial-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.silk-center-graphic {
  position: relative;
  width: 260px;
  height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.scg-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(184,146,42,0.2);
}

.scg-ring-1 {
  width: 260px; height: 260px;
  animation: ring-rotate 20s linear infinite;
  border-color: rgba(184,146,42,0.15);
}

.scg-ring-2 {
  width: 200px; height: 200px;
  animation: ring-rotate 15s linear infinite reverse;
  border-color: rgba(184,146,42,0.25);
}

.scg-ring-3 {
  width: 140px; height: 140px;
  animation: ring-rotate 10s linear infinite;
  border-color: rgba(184,146,42,0.35);
}

@keyframes ring-rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.scg-svg {
  width: 130px;
  height: 130px;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 0 12px rgba(184,146,42,0.3));
  animation: svg-breathe 4s ease-in-out infinite;
}

@keyframes svg-breathe {
  0%, 100% { filter: drop-shadow(0 0 12px rgba(184,146,42,0.3)); }
  50% { filter: drop-shadow(0 0 24px rgba(184,146,42,0.6)); }
}

.scg-label {
  position: absolute;
  bottom: 10px;
  font-family: var(--font-sans);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  text-align: center;
  line-height: 1.5;
}

.silk-center-stat {
  text-align: center;
}

.scs-number {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  color: var(--gold);
  font-weight: 400;
  line-height: 1;
}

.scs-unit {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--gold);
  opacity: 0.7;
  margin-left: 4px;
}

.scs-desc {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #888;
  margin-top: 6px;
}

/* =============================================
   SLEEP SECTION - DAY TO NIGHT TRANSITION
   ============================================= */
.sleep-section {
  padding: 0;
  position: relative;
  overflow: hidden;
  z-index: 2;
}

.sleep-daynight-bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  /* Top: warm cream (day), bottom: deep night */
  background: linear-gradient(
    to bottom,
    #F5EDD8 0%,
    #E8D5B0 8%,
    #C4A97A 15%,
    #8B6B3D 22%,
    #4A3520 30%,
    #1A0F05 38%,
    #0D0A12 50%,
    #0A0810 100%
  );
  pointer-events: none;
}

/* Horizon glow - sunset line */
.sleep-horizon {
  position: absolute;
  top: 18%;
  left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, rgba(255,160,50,0.6) 20%, rgba(255,200,80,0.9) 50%, rgba(255,160,50,0.6) 80%, transparent 100%);
  box-shadow: 0 0 40px 15px rgba(255,140,30,0.25), 0 0 80px 30px rgba(200,100,20,0.15);
}

/* Sun glow above horizon */
.sleep-daynight-bg::before {
  content: '';
  position: absolute;
  top: 5%;
  left: 50%;
  transform: translateX(-50%);
  width: 300px;
  height: 200px;
  background: radial-gradient(ellipse at center bottom, rgba(255,200,80,0.35) 0%, rgba(255,150,40,0.15) 40%, transparent 70%);
}

/* Moon glow below horizon */
.sleep-daynight-bg::after {
  content: '';
  position: absolute;
  top: 35%;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(184,146,42,0.12) 0%, transparent 70%);
  animation: moon-glow 6s ease-in-out infinite;
}

@keyframes moon-glow {
  0%, 100% { opacity: 0.8; transform: translateX(-50%) scale(1); }
  50% { opacity: 1; transform: translateX(-50%) scale(1.2); }
}

.sleep-stars {
  position: absolute;
  top: 35%; left: 0; right: 0; bottom: 0;
}

.sleep-section .container {
  position: relative;
  z-index: 2;
  padding-top: 80px;
  padding-bottom: 100px;
}

/* Text colors for day part (top) */
.sleep-header {
  text-align: center;
  margin-bottom: 60px;
}

.sleep-label-light {
  color: rgba(255,200,80,0.9);
  text-shadow: 0 0 20px rgba(255,150,40,0.5);
}

.sleep-title {
  color: #FFFFFF;
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
}

.sleep-title em {
  color: #F5C842;
}

/* Stats row */
.sleep-stats-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 70px;
  background: rgba(0,0,0,0.25);
  border: 1px solid rgba(184,146,42,0.25);
  padding: 40px 40px;
  backdrop-filter: blur(4px);
}

.sleep-stat {
  flex: 1;
  text-align: center;
  padding: 0 32px;
}

.sleep-stat-number {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 400;
  color: #F5C842;
  line-height: 1;
  margin-bottom: 10px;
}

.sleep-stat-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.05em;
  line-height: 1.5;
  font-family: var(--font-sans);
  font-weight: 300;
}

.sleep-stat-divider {
  width: 1px;
  height: 70px;
  background: rgba(184,146,42,0.3);
  flex-shrink: 0;
}

/* Content grid */
.sleep-content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  margin-bottom: 60px;
}

.sleep-text-block h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: #FFFFFF;
  margin-bottom: 16px;
  font-weight: 400;
}

.sleep-text-block p {
  color: rgba(255,255,255,0.72);
  font-size: 0.9rem;
  line-height: 1.85;
  margin-bottom: 14px;
  font-weight: 300;
}

/* Quote banner */
.sleep-quote-banner {
  margin-bottom: 70px;
}

.sleep-quote-inner {
  text-align: center;
  padding: 44px 50px;
  border-top: 1px solid rgba(184,146,42,0.3);
  border-bottom: 1px solid rgba(184,146,42,0.3);
}

.sleep-quote-symbol {
  display: block;
  font-size: 1.4rem;
  color: #F5C842;
  margin-bottom: 20px;
  animation: symbol-pulse 4s ease-in-out infinite;
}

.sleep-quote-big {
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 2.2vw, 1.7rem);
  font-style: italic;
  color: #FFFFFF;
  line-height: 1.65;
  margin-bottom: 18px;
  font-weight: 300;
}

.sleep-quote-author {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  color: #F5C842;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.8;
}

/* Ritual steps */
.sleep-ritual-title {
  font-family: var(--font-serif);
  font-size: 1.7rem;
  color: #FFFFFF;
  text-align: center;
  margin-bottom: 40px;
  font-weight: 400;
}

.sleep-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.sleep-step {
  padding: 36px 28px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(184,146,42,0.15);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.sleep-step::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 2px;
  background: linear-gradient(90deg, transparent, #F5C842, transparent);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.sleep-step:hover::before { transform: translateX(0); }

.sleep-step:hover {
  background: rgba(184,146,42,0.07);
  border-color: rgba(184,146,42,0.35);
}

.step-number {
  font-family: var(--font-serif);
  font-size: 2.8rem;
  color: rgba(245,200,66,0.2);
  line-height: 1;
  margin-bottom: 18px;
  font-weight: 400;
  transition: color 0.3s ease;
}

.sleep-step:hover .step-number {
  color: rgba(245,200,66,0.55);
}

.step-content h4 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: #FFFFFF;
  margin-bottom: 10px;
  font-weight: 400;
}

.step-content p {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.75;
  font-weight: 300;
}

/* Responsive */
@media (max-width: 900px) {
  .silk-radial-wrap {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .silk-radial-center { order: -1; }
  .silk-radial-right .silk-radial-item { flex-direction: row; }
  .sri-text-right { text-align: left; }
  .sleep-stats-row { flex-direction: column; gap: 28px; padding: 32px 20px; }
  .sleep-stat-divider { width: 50px; height: 1px; }
  .sleep-content-grid { grid-template-columns: 1fr; gap: 32px; }
  .sleep-steps { grid-template-columns: 1fr; }
  .sleep-quote-inner { padding: 32px 20px; }
}

/* ===== HERO MASKS PREVIEW ===== */
.hero-masks-preview {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: flex-end;
  margin: 32px 0 28px;
}
.hero-mask-thumb {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  transform: translateY(20px);
  animation: heroMaskIn 0.8s ease forwards;
}
.hero-mask-thumb:nth-child(1) { animation-delay: 0.6s; }
.hero-mask-thumb:nth-child(2) { animation-delay: 0.9s; }
.hero-mask-thumb:nth-child(3) { animation-delay: 1.2s; }
@keyframes heroMaskIn { to { opacity: 1; transform: translateY(0); } }
.hero-mask-thumb img {
  width: 120px;
  height: 80px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid rgba(184,146,42,0.3);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.hero-mask-thumb--center img {
  width: 150px;
  height: 100px;
  border-color: rgba(184,146,42,0.6);
  box-shadow: 0 12px 32px rgba(184,146,42,0.25);
}
.hero-mask-thumb:hover img { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(184,146,42,0.3); }
.hero-mask-thumb span {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #B8922A;
}

/* ===== PRODUCT GRID 3 COLUMNS ===== */
.product-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}
.product-header-sub {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #B8922A;
  margin-top: 12px;
}
.product-card-featured {
  border-color: rgba(184,146,42,0.5) !important;
  box-shadow: 0 8px 32px rgba(184,146,42,0.2) !important;
  transform: scale(1.02);
}
.product-card-featured:hover { transform: scale(1.02) translateY(-6px) !important; }
.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #1a1a1a;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 4px;
  z-index: 2;
}
.product-badge-gold { background: linear-gradient(135deg, #B8922A, #E8C96A); }
.product-price-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 14px 0 12px;
}
.product-price-old {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  color: #999;
  text-decoration: line-through;
}
.product-price-new {
  font-family: 'Montserrat', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #111;
}
.product-details {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
}
.product-details li {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  color: #1A1A1A;
  padding: 6px 0;
  border-bottom: 1px solid #f0ede6;
  display: flex;
  align-items: center;
  gap: 6px;
}
.product-details li::before { content: '✦'; color: #B8922A; font-size: 8px; flex-shrink: 0; }
.product-card-btn {
  width: 100%;
  text-align: center;
  display: block;
  font-size: 11px;
  padding: 13px 20px;
  margin-top: 4px;
}
.product-info h3 { font-size: 22px; color: #111 !important; margin-bottom: 8px; }
.product-info p { font-size: 13px; color: #1A1A1A !important; line-height: 1.8; }

/* ===== GLOBAL TEXT CONTRAST FIX ===== */
.freq-text p { color: #1a1a1a !important; }
.calc-header p { color: #222 !important; }
.calc-privacy { color: #444 !important; }
.result-desc, .result-energy-text, .result-rec-intro { color: #1a1a1a !important; }
.email-section p { color: #1a1a1a !important; }
.email-privacy { color: #555 !important; }
.spirit-quote p { color: #1a1a1a !important; }
.pillar-desc { color: #222 !important; }
.pillar-title { color: #111 !important; }
.sri-text h4 { color: #111 !important; }
.sri-text p { color: #333 !important; }
.scs-desc { color: #333 !important; }

@media (max-width: 900px) {
  .product-grid-3 { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
  .hero-masks-preview { gap: 12px; }
  .hero-mask-thumb img { width: 90px; height: 60px; }
  .hero-mask-thumb--center img { width: 110px; height: 74px; }
}


/* ===== REVIEWS SECTION ===== */
.reviews-section { padding: 100px 0; background: #fff; }
.reviews-section h2 { text-align: center; margin-bottom: 60px; color: #111; }
.reviews-grid { display: grid; grid-template-columns: 1fr 1.2fr 1fr; gap: 28px; align-items: start; }
.review-card { background: #faf9f6; border: 1px solid #e8e0d0; border-radius: 16px; padding: 36px 30px; transition: transform 0.3s, box-shadow 0.3s; }
.review-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(184,146,42,0.12); }
.review-card-featured { background: linear-gradient(135deg, #fdf8ee 0%, #fff 100%); border-color: #c9a84c; box-shadow: 0 8px 32px rgba(184,146,42,0.15); }
.review-stars { color: #B8922A; font-size: 14px; letter-spacing: 3px; margin-bottom: 16px; }
.review-text { color: #2A2A2A; font-size: 15px; line-height: 1.7; font-style: italic; margin-bottom: 24px; }
.review-author { display: flex; align-items: center; gap: 14px; }
.review-avatar { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, #B8922A, #e8c96a); color: #fff; font-weight: 700; font-size: 18px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.review-author strong { display: block; color: #111; font-size: 15px; }
.review-author span { color: #777; font-size: 13px; }

/* ===== FAQ SECTION ===== */
.faq-section { padding: 100px 0; background: #faf9f6; }
.faq-section h2 { text-align: center; margin-bottom: 60px; color: #111; }
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid #e0d8c8; overflow: hidden; }
.faq-question { width: 100%; background: none; border: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; padding: 24px 0; text-align: left; font-family: inherit; font-size: 17px; font-weight: 600; color: #1A1A1A; transition: color 0.2s; }
.faq-question:hover { color: #B8922A; }
.faq-arrow { font-size: 24px; color: #B8922A; font-weight: 300; transition: transform 0.3s; flex-shrink: 0; margin-left: 16px; }
.faq-item.open .faq-arrow { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s; }
.faq-item.open .faq-answer { max-height: 300px; padding-bottom: 20px; }
.faq-answer p { color: #2A2A2A; font-size: 15px; line-height: 1.8; }

/* ===== PRODUCT MODAL ===== */
.product-modal { position: fixed; inset: 0; z-index: 9999; display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: opacity 0.4s; }
.product-modal.open { opacity: 1; pointer-events: all; }
.modal-overlay { position: absolute; inset: 0; background: rgba(10,8,5,0.75); backdrop-filter: blur(6px); }
.modal-content { position: relative; z-index: 1; background: #fff; border-radius: 24px; width: 90vw; max-width: 960px; max-height: 90vh; overflow-y: auto; box-shadow: 0 40px 120px rgba(0,0,0,0.4); transform: translateY(30px) scale(0.97); transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1); }
.product-modal.open .modal-content { transform: translateY(0) scale(1); }
.modal-close { position: absolute; top: 20px; right: 24px; background: none; border: none; cursor: pointer; font-size: 22px; color: #888; z-index: 2; width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: background 0.2s, color 0.2s; }
.modal-close:hover { background: #f0ebe0; color: #111; }
.modal-inner { display: grid; grid-template-columns: 1fr 1fr; min-height: 520px; }
.modal-img-side { background: #faf9f6; border-radius: 24px 0 0 24px; padding: 48px 36px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 20px; }
.modal-img-wrap { position: relative; }
.modal-img { width: 100%; max-width: 340px; border-radius: 12px; animation: modalImgFloat 4s ease-in-out infinite; }
@keyframes modalImgFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
.modal-img-glow { position: absolute; bottom: -20px; left: 50%; transform: translateX(-50%); width: 200px; height: 30px; background: radial-gradient(ellipse, rgba(184,146,42,0.3), transparent); filter: blur(10px); }
.modal-info-side { padding: 48px 40px; display: flex; flex-direction: column; gap: 16px; }
.modal-label { font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: #B8922A; }
.modal-title { font-size: 32px; color: #111; margin: 0; line-height: 1.2; }
.modal-desc { color: #2A2A2A; font-size: 15px; line-height: 1.7; }
.modal-price-wrap { display: flex; align-items: center; gap: 12px; }
.modal-price-old { text-decoration: line-through; color: #999; font-size: 16px; }
.modal-price-new { font-size: 28px; font-weight: 700; color: #111; }
.modal-features { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.modal-features li { color: #2A2A2A; font-size: 14px; padding-left: 16px; position: relative; }
.modal-features li::before { content: '\2726'; position: absolute; left: 0; color: #B8922A; font-size: 10px; top: 3px; }
.modal-cta-wrap { display: flex; flex-direction: column; gap: 8px; }
.modal-cta { text-align: center; padding: 16px 24px; font-size: 15px; }
.modal-note { font-size: 12px; color: #999; text-align: center; }
.modal-specs { display: flex; flex-direction: column; gap: 10px; padding-top: 8px; border-top: 1px solid #e8e0d0; }
.modal-spec { display: flex; align-items: center; gap: 10px; font-size: 13px; color: #444; }
.spec-icon { color: #B8922A; font-size: 14px; width: 18px; text-align: center; }
.modal-badge-row { display: flex; gap: 8px; flex-wrap: wrap; }
.modal-badge { background: #111; color: #fff; font-size: 11px; letter-spacing: 1px; text-transform: uppercase; padding: 4px 12px; border-radius: 20px; }
.modal-badge-gold { background: linear-gradient(135deg, #B8922A, #e8c96a); }

@media (max-width: 768px) {
  .reviews-grid { grid-template-columns: 1fr; }
  .modal-inner { grid-template-columns: 1fr; }
  .modal-img-side { border-radius: 24px 24px 0 0; padding: 32px 24px; }
  .modal-info-side { padding: 28px 24px; }
  .modal-content { width: 95vw; }
}

/* ===== NAV CTA GROUP ===== */
.nav-cta-group {
  display: flex;
  gap: 10px;
  align-items: center;
}
.nav-cta-secondary {
  background: transparent;
  color: #8A7A5A;
  border: 1px solid rgba(138,122,90,0.35);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  padding: 8px 16px;
  text-decoration: none;
  text-transform: uppercase;
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  transition: all 0.3s ease;
}
.nav-cta-secondary:hover {
  border-color: #C9A84C;
  color: #C9A84C;
}

/* ===== HERO CTA SUB LINKS ===== */
.hero-cta-sub {
  display: flex;
  gap: 24px;
  margin-top: 14px;
  flex-wrap: wrap;
  justify-content: center;
}
.hero-link {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  font-weight: 400;
  color: #8A7A5A;
  text-decoration: none;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.3s ease;
}
.hero-link:hover {
  color: #C9A84C;
}

/* ===== AS SEEN ON TIKTOK SECTION ===== */
.tiktok-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #1A1A1A 0%, #2A2A2A 50%, #1A1A1A 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.tiktok-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(201,168,76,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.tiktok-inner {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.tiktok-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(201,168,76,0.12);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 40px;
  padding: 8px 20px;
  margin-bottom: 32px;
  color: #C9A84C;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.tiktok-section h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: #F5F0E8;
  margin-bottom: 20px;
  line-height: 1.2;
}
.tiktok-section h2 em {
  color: #C9A84C;
  font-style: italic;
}
.tiktok-section p {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  font-weight: 300;
  color: rgba(245,240,232,0.7);
  line-height: 1.8;
  margin-bottom: 40px;
}
.tiktok-cta-row {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 50px;
}
.tiktok-section .btn-primary {
  background: linear-gradient(135deg, #C9A84C, #E8C96A);
  color: #1A1A1A;
}
.tiktok-section .btn-secondary {
  border-color: rgba(245,240,232,0.3);
  color: #F5F0E8;
}
.tiktok-section .btn-secondary:hover {
  border-color: #C9A84C;
  color: #C9A84C;
}
.tiktok-stats {
  display: flex;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
  border-top: 1px solid rgba(201,168,76,0.15);
  padding-top: 40px;
}
.tiktok-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.tiktok-stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 400;
  color: #C9A84C;
}
.tiktok-stat-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.65rem;
  font-weight: 400;
  color: rgba(245,240,232,0.5);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* ===== PRODUCT BUY ROW ===== */
.product-buy-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 16px;
}
.product-card-btn {
  flex: 1;
  text-align: center;
  padding: 12px 16px;
  font-size: 0.65rem;
}
.product-card-btn-sec {
  flex: 0 0 auto;
  padding: 12px 16px;
  font-size: 0.65rem;
  text-decoration: none;
  border: 1px solid rgba(138,122,90,0.4);
  color: #8A7A5A;
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all 0.3s ease;
  display: inline-block;
}
.product-card-btn-sec:hover {
  border-color: #C9A84C;
  color: #C9A84C;
}

/* ===== MODAL BUY ROW ===== */
.modal-buy-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
.modal-cta-sec {
  padding: 14px 24px;
  font-size: 0.65rem;
  text-decoration: none;
  border: 1px solid rgba(138,122,90,0.4);
  color: #8A7A5A;
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all 0.3s ease;
  display: inline-block;
}
.modal-cta-sec:hover {
  border-color: #C9A84C;
  color: #C9A84C;
}

/* ===== NEW FOOTER ===== */
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(201,168,76,0.12);
  margin-bottom: 32px;
}
@media (max-width: 900px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}
@media (max-width: 600px) {
  .footer-top {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-logo-img {
  height: 48px;
  width: auto;
  opacity: 0.85;
}
.footer-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.95rem;
  font-style: italic;
  color: #C9A84C;
  margin: 0;
}
.footer-company {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.68rem;
  font-weight: 400;
  color: rgba(245,240,232,0.6);
  line-height: 1.9;
  margin: 0;
}
.footer-company em {
  font-style: normal;
  color: rgba(245,240,232,0.5);
}
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-col-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #C9A84C;
  margin: 0 0 4px 0;
}
.footer-col a {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  font-weight: 400;
  color: rgba(245,240,232,0.72);
  text-decoration: none;
  transition: color 0.3s ease;
  line-height: 1.7;
}
.footer-col a:hover {
  color: #C9A84C;
}
.footer-social-link {
  display: flex !important;
  align-items: center;
  gap: 8px;
}
.footer-bottom {
  text-align: center;
}
.footer-bottom p {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.68rem;
  font-weight: 400;
  color: rgba(245,240,232,0.5);
  letter-spacing: 0.06em;
}
.footer-bottom a {
  color: rgba(245,240,232,0.4);
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer-bottom a:hover {
  color: #C9A84C;
}

.btn-bol{display:inline-flex;align-items:center;justify-content:center;padding:.85rem 1.8rem;background:#0000a4;color:#fff;font-family:var(--font-sans);font-size:.75rem;font-weight:600;letter-spacing:.12em;text-transform:uppercase;text-decoration:none;border:none;cursor:pointer;transition:background .25s,transform .2s}
.btn-bol:hover{background:#0000c8;transform:translateY(-1px)}
.btn-vinted{display:inline-flex;align-items:center;justify-content:center;padding:.85rem 1.8rem;background:transparent;color:#09b1ba;font-family:var(--font-sans);font-size:.75rem;font-weight:600;letter-spacing:.12em;text-transform:uppercase;text-decoration:none;border:1.5px solid #09b1ba;cursor:pointer;transition:background .25s,color .25s,transform .2s}
.btn-vinted:hover{background:#09b1ba;color:#fff;transform:translateY(-1px)}
.launch-tag{font-size:.62rem;background:var(--gold);color:#000;padding:.1rem .4rem;font-weight:700;letter-spacing:.05em;vertical-align:middle;margin-left:.3rem}
.product-launch-note{font-size:.72rem;color:var(--gold);letter-spacing:.08em;text-align:center;margin:.5rem 0 .8rem;opacity:.85}
.coming-soon-modal{position:fixed;inset:0;z-index:9999;display:flex;align-items:center;justify-content:center}
.csm-overlay{position:absolute;inset:0;background:rgba(0,0,0,.75);backdrop-filter:blur(4px)}
.csm-content{position:relative;z-index:1;background:#0a0a0a;border:1px solid rgba(201,168,76,.35);padding:3rem 2.5rem;max-width:440px;width:90%;text-align:center;box-shadow:0 0 60px rgba(201,168,76,.12)}
.csm-close{position:absolute;top:1rem;right:1rem;background:none;border:none;color:rgba(255,255,255,.5);font-size:1.1rem;cursor:pointer;transition:color .2s}
.csm-close:hover{color:#fff}
.csm-symbol{font-size:2rem;color:var(--gold);margin-bottom:1rem}
.csm-title{font-family:var(--font-serif);font-size:1.5rem;color:#fff;margin-bottom:.8rem}
.csm-text{color:rgba(255,255,255,.65);font-size:.9rem;line-height:1.6;margin-bottom:1.8rem}
.csm-social-row{display:flex;flex-direction:column;gap:.8rem}
.csm-btn{width:100%;justify-content:center}


/* ===== HERO VIDEO SECTION ===== */
.hero-video-wrap {
  position: relative;
  width: min(820px, 92vw);
  margin: 1.6rem auto 0;
  border-radius: 20px;
  overflow: hidden;
  box-shadow:
    0 12px 60px rgba(180,140,40,0.22),
    0 4px 20px rgba(0,0,0,0.08),
    0 0 0 1px rgba(201,168,76,0.18);
  z-index: 2;
}
.hero-video {
  width: 100%;
  display: block;
  border-radius: 20px;
  object-fit: cover;
  max-height: 560px;
}
.hero-video-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.5rem 1.8rem;
  background: linear-gradient(to top, rgba(10,8,5,0.72) 0%, transparent 100%);
  display: flex;
  flex-direction: column;
  gap: 4px;
  pointer-events: none;
}
.hero-video-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 400;
  color: #F5E6C0;
  letter-spacing: 0.04em;
}
.hero-video-sub {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 400;
  color: rgba(245,230,192,0.75);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.btn-buy-now {
  font-size: 1rem !important;
  padding: 1rem 2.8rem !important;
  letter-spacing: 0.12em;
}
.hero-cta-group {
  flex-direction: column !important;
  gap: 0 !important;
}
.hero-cta-secondary {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 0.75rem;
}
.hero-cta-secondary .btn-bol,
.hero-cta-secondary .btn-vinted {
  font-size: 0.78rem !important;
  padding: 0.55rem 1.4rem !important;
}
.product-card-secondary {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.5rem;
  flex-wrap: wrap;
}
.product-card-btn-sm {
  font-size: 0.72rem !important;
  padding: 0.4rem 0.9rem !important;
  border-radius: 4px;
  flex: 1;
  text-align: center;
  min-width: 80px;
}
@media (max-width: 600px) {
  .hero-video-wrap { width: 100%; border-radius: 10px; }
  .hero-video { border-radius: 10px; max-height: 320px; }
  .hero-cta-secondary { flex-direction: column; align-items: center; }
}


/* Banner image removed - using text hero */

/* ===== MOBILE READABILITY IMPROVEMENTS ===== */
@media (max-width: 768px) {
  .hero-subtitle {
    font-size: 1rem;
    margin-bottom: 20px;
  }
  .hero-supporting {
    font-size: 0.72rem;
    margin-bottom: 28px;
  }
  .product-info h3 { font-size: 19px !important; }
  .product-info p { font-size: 12px !important; }
  .product-details li { font-size: 11px; }
  .footer-company { font-size: 0.65rem; }
  .footer-col a { font-size: 0.75rem; }
  .footer-col-title { font-size: 0.62rem; }
  .hero-link { font-size: 0.68rem; }
  .section-label { font-size: 0.65rem; }
}
@media (max-width: 480px) {
  .hero-content { padding: 90px 20px 30px; }
  .hero-subtitle { font-size: 0.95rem; }
  .btn-buy-now { font-size: 0.88rem !important; padding: 0.9rem 2rem !important; }
  .hero-cta-sub { gap: 16px; }
  .hero-link { font-size: 0.65rem; }
}

/* ===== PRODUCT PRICE BADGE ===== */
.product-price-badge {
  display: inline-block;
  background: linear-gradient(135deg, #7A5E1A, #B8922A);
  color: #fff;
  font-family: var(--font-sans);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 2px;
  vertical-align: middle;
  margin-left: 4px;
}


/* ===== HERO VIDEO SECTION ===== */
.hero-video-wrap {
  position: relative;
  width: min(680px, 90vw);
  margin: 2.5rem auto 0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(180,140,40,0.18), 0 2px 12px rgba(0,0,0,0.10);
  border: 1px solid rgba(201,168,76,0.25);
  z-index: 2;
}
.hero-video {
  width: 100%;
  display: block;
  border-radius: 16px;
  object-fit: cover;
  max-height: 480px;
}
.hero-video-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.5rem 1.8rem;
  background: linear-gradient(to top, rgba(10,8,5,0.72) 0%, transparent 100%);
  display: flex;
  flex-direction: column;
  gap: 4px;
  pointer-events: none;
}
.hero-video-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 400;
  color: #F5E6C0;
  letter-spacing: 0.04em;
}
.hero-video-sub {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 400;
  color: rgba(245,230,192,0.75);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.btn-buy-now {
  font-size: 1rem !important;
  padding: 1rem 2.8rem !important;
  letter-spacing: 0.12em;
}
.hero-cta-group {
  flex-direction: column !important;
  gap: 0 !important;
}
.hero-cta-secondary {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 0.75rem;
}
.hero-cta-secondary .btn-bol,
.hero-cta-secondary .btn-vinted {
  font-size: 0.78rem !important;
  padding: 0.55rem 1.4rem !important;
}
.product-card-secondary {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.5rem;
  flex-wrap: wrap;
}
.product-card-btn-sm {
  font-size: 0.72rem !important;
  padding: 0.4rem 0.9rem !important;
  border-radius: 4px;
  flex: 1;
  text-align: center;
  min-width: 80px;
}
@media (max-width: 600px) {
  .hero-video-wrap { width: 100%; border-radius: 10px; }
  .hero-video { border-radius: 10px; max-height: 320px; }
  .hero-cta-secondary { flex-direction: column; align-items: center; }
}


/* ===== VIDEO-FIRST HERO LAYOUT ===== */
.hero-video-first {
  flex-direction: column;
  padding-top: 80px;
  padding-bottom: 0;
  min-height: auto;
  justify-content: flex-start;
  background: linear-gradient(180deg, #FFFFFF 0%, #FAFAF5 60%, #F5EDD8 100%);
}
.hero-video-top {
  width: min(900px, 96vw);
  margin: 0 auto;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 16px 70px rgba(180,140,40,0.22), 0 4px 24px rgba(0,0,0,0.10), 0 0 0 1.5px rgba(201,168,76,0.22);
  position: relative;
  z-index: 2;
}
.hero-video-top .hero-video {
  width: 100%;
  display: block;
  border-radius: 18px;
  object-fit: cover;
  max-height: 600px;
}
.hero-content-below-video {
  padding: 52px 24px 60px;
  text-align: center;
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
}
.hero-cta-stack-v2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}
.hero-cta-secondary-row-v2 {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}
.btn-hero-sm {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 22px;
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 2px;
  white-space: nowrap;
}
.btn-hero-sm-vinted {
  background: transparent;
  color: #09b1ba;
  border-color: #09b1ba;
}
.btn-hero-sm-vinted:hover {
  background: #09b1ba;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(9,177,186,0.22);
}
.btn-hero-sm-bol {
  background: transparent;
  color: #0000a4;
  border-color: #0000a4;
}
.btn-hero-sm-bol:hover {
  background: #0000a4;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,164,0.18);
}
@media (max-width: 768px) {
  .hero-video-first { padding-top: 70px; }
  .hero-video-top { width: 100%; border-radius: 0; }
  .hero-video-top .hero-video { border-radius: 0; max-height: 380px; }
  .hero-content-below-video { padding: 36px 20px 48px; }
  .hero-cta-secondary-row-v2 { flex-direction: column; align-items: center; gap: 10px; }
  .btn-hero-sm { width: 100%; max-width: 260px; text-align: center; }
}
@media (max-width: 480px) {
  .hero-video-top .hero-video { max-height: 300px; }
  .hero-content-below-video { padding: 28px 16px 40px; }
}


/* ===== CINEMATIC HERO VIDEO ===== */
.hero-video-cinematic {
  width: min(1360px, 98vw);
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  box-shadow:
    0 24px 80px rgba(140,100,20,0.28),
    0 8px 32px rgba(0,0,0,0.14),
    0 0 0 1.5px rgba(201,168,76,0.20);
  position: relative;
  z-index: 2;
}

.hero-video-main {
  width: 100%;
  display: block;
  border-radius: 16px;
  object-fit: cover;
  height: clamp(340px, 48vw, 640px);
}

/* Tighten gap between video and text */
.hero-content-below-video {
  padding: 36px 24px 56px !important;
  max-width: 700px;
}

/* Remove old video-top styles that might conflict */
.hero-video-top { display: none; }

@media (max-width: 900px) {
  .hero-video-cinematic {
    width: 100%;
    border-radius: 12px;
    margin: 0;
  }
  .hero-video-main {
    border-radius: 12px;
    height: clamp(260px, 52vw, 420px);
  }
}

@media (max-width: 600px) {
  .hero-video-cinematic {
    width: 100%;
    border-radius: 0;
    box-shadow: 0 8px 40px rgba(140,100,20,0.20);
  }
  .hero-video-main {
    border-radius: 0;
    height: clamp(220px, 60vw, 340px);
  }
  .hero-content-below-video {
    padding: 28px 18px 44px !important;
  }
}
