/* ═══════════════════════════════════════════════════════════════
   ZELMIRA — Ultra-Premium Coming Soon Landing Page
   Design System & Styles
   ═══════════════════════════════════════════════════════════════ */

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400&family=Outfit:wght@100;200;300;400;500&family=Inter:wght@200;300;400;500&display=swap');

/* ── Design Tokens ── */
:root {
  /* Colors */
  --black-deep:       #0a0a0a;
  --black-matte:      #111111;
  --charcoal-deep:    #1a1a1a;
  --charcoal:         #222222;
  --charcoal-light:   #2a2a2a;
  --champagne:        #c9a96e;
  --champagne-light:  #d4b878;
  --champagne-glow:   rgba(201, 169, 110, 0.15);
  --champagne-soft:   rgba(201, 169, 110, 0.08);
  --gold-warm:        #b8943f;
  --gold-reflection:  rgba(201, 169, 110, 0.25);
  --ivory:            #f5f0e8;
  --ivory-soft:       rgba(245, 240, 232, 0.7);
  --ivory-faint:      rgba(245, 240, 232, 0.4);
  --white-faint:      rgba(255, 255, 255, 0.06);
  --white-ghost:      rgba(255, 255, 255, 0.03);
  --glass-bg:         rgba(20, 20, 20, 0.6);
  --glass-border:     rgba(201, 169, 110, 0.2);
  --glass-border-hover: rgba(201, 169, 110, 0.5);

  /* Typography */
  --font-serif:    'Cormorant Garamond', 'Georgia', serif;
  --font-sans:     'Outfit', 'Inter', sans-serif;
  --font-body:     'Inter', 'Outfit', sans-serif;

  /* Spacing */
  --space-xs:  0.5rem;
  --space-sm:  1rem;
  --space-md:  1.5rem;
  --space-lg:  2.5rem;
  --space-xl:  4rem;
  --space-2xl: 6rem;
  --space-3xl: 8rem;

  /* Effects */
  --glow-champagne: 0 0 40px rgba(201, 169, 110, 0.15);
  --glow-champagne-strong: 0 0 60px rgba(201, 169, 110, 0.25);
  --shadow-luxury: 0 25px 60px rgba(0, 0, 0, 0.5);
  --transition-smooth: all 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
  --transition-slow:   all 0.8s cubic-bezier(0.25, 0.1, 0.25, 1);
}

/* ── Reset & Base ── */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-sans);
  background: var(--black-deep);
  color: var(--ivory);
  overflow-x: hidden;
  min-height: 100vh;
  position: relative;
}

::selection {
  background: var(--champagne);
  color: var(--black-deep);
}

/* ── Page Wrapper ── */
.page-wrapper {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

/* ══════════════════════════════════════════
   BACKGROUND & AMBIENT EFFECTS
   ══════════════════════════════════════════ */

/* Subtle noise texture overlay */
.bg-texture {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px 256px;
}

/* Cinematic spotlight */
.spotlight {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: radial-gradient(
    ellipse 60% 50% at 50% 30%,
    rgba(201, 169, 110, 0.06) 0%,
    rgba(201, 169, 110, 0.02) 40%,
    transparent 70%
  );
}

/* Light rays */
.light-rays {
  position: fixed;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 120%;
  height: 60%;
  z-index: 1;
  pointer-events: none;
  background: conic-gradient(
    from 180deg at 50% 0%,
    transparent 40%,
    rgba(201, 169, 110, 0.015) 45%,
    transparent 50%,
    transparent 55%,
    rgba(201, 169, 110, 0.01) 58%,
    transparent 62%
  );
  animation: rotateRays 30s linear infinite;
  opacity: 0.8;
}

@keyframes rotateRays {
  from { transform: translateX(-50%) rotate(0deg); }
  to   { transform: translateX(-50%) rotate(360deg); }
}

/* Dust particles canvas */
#particles-canvas {
  position: fixed;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

/* Ambient vignette */
.vignette {
  position: fixed;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: radial-gradient(
    ellipse at center,
    transparent 50%,
    rgba(0, 0, 0, 0.4) 100%
  );
}

/* ══════════════════════════════════════════
   FLOATING JEWELLERY PIECES
   ══════════════════════════════════════════ */
.floating-jewellery {
  position: fixed;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  overflow: hidden;
}

.jewel-piece {
  position: absolute;
  opacity: 0;
  animation: fadeInJewel 2s ease forwards;
  filter: brightness(0.85) contrast(1.1);
  transition: var(--transition-slow);
}

.jewel-piece img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.6));
}

.jewel-piece.ring {
  width: 220px;
  height: 220px;
  top: 12%;
  right: 8%;
  animation-delay: 0.5s;
  animation-name: fadeInJewel, floatJewel1;
  animation-duration: 2s, 8s;
  animation-timing-function: ease, ease-in-out;
  animation-fill-mode: forwards, none;
  animation-iteration-count: 1, infinite;
  animation-delay: 0.5s, 0.5s;
}

.jewel-piece.necklace {
  width: 240px;
  height: 240px;
  bottom: 22%;
  left: 4%;
  animation-delay: 1s;
  animation-name: fadeInJewel, floatJewel2;
  animation-duration: 2s, 10s;
  animation-timing-function: ease, ease-in-out;
  animation-fill-mode: forwards, none;
  animation-iteration-count: 1, infinite;
  animation-delay: 1s, 1s;
}

.jewel-piece.earring {
  width: 180px;
  height: 180px;
  bottom: 25%;
  right: 6%;
  animation-delay: 1.5s;
  animation-name: fadeInJewel, floatJewel3;
  animation-duration: 2s, 9s;
  animation-timing-function: ease, ease-in-out;
  animation-fill-mode: forwards, none;
  animation-iteration-count: 1, infinite;
  animation-delay: 1.5s, 1.5s;
}

.jewel-piece.hero-piece {
  width: 380px;
  height: 380px;
  top: 35%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation-delay: 0.3s;
  animation-name: fadeInHero, floatJewelCenter;
  animation-duration: 2.5s, 12s;
  animation-timing-function: ease, ease-in-out;
  animation-fill-mode: forwards, none;
  animation-iteration-count: 1, infinite;
  animation-delay: 0.3s, 0.3s;
  opacity: 0;
  z-index: -1;
}

@keyframes fadeInJewel {
  from { opacity: 0; transform: scale(0.9); }
  to   { opacity: 0.35; transform: scale(1); }
}

@keyframes fadeInHero {
  from { opacity: 0; transform: translate(-50%, -50%) scale(0.9); }
  to   { opacity: 0.22; transform: translate(-50%, -50%) scale(1); }
}

@keyframes floatJewel1 {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  25%      { transform: translateY(-15px) rotate(2deg); }
  50%      { transform: translateY(-8px) rotate(-1deg); }
  75%      { transform: translateY(-20px) rotate(1.5deg); }
}

@keyframes floatJewel2 {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  33%      { transform: translateY(-18px) rotate(-2deg); }
  66%      { transform: translateY(-10px) rotate(1deg); }
}

@keyframes floatJewel3 {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  30%      { transform: translateY(-12px) rotate(1.5deg); }
  60%      { transform: translateY(-22px) rotate(-1deg); }
}

@keyframes floatJewelCenter {
  0%, 100% { transform: translate(-50%, -50%) scale(1); }
  50%      { transform: translate(-50%, -53%) scale(1.02); }
}

/* ══════════════════════════════════════════
   MAIN CONTENT
   ══════════════════════════════════════════ */
.main-content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: var(--space-lg) var(--space-md);
  text-align: center;
}

/* ── Decorative top line ── */
.top-accent {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--champagne), transparent);
  margin-bottom: var(--space-lg);
  opacity: 0;
  animation: fadeSlideDown 1.5s ease 0.3s forwards;
}

/* ── Logo ── */
.logo-container {
  margin-bottom: var(--space-xl);
  opacity: 0;
  animation: fadeScaleIn 2s cubic-bezier(0.25, 0.1, 0.25, 1) 0.5s forwards;
}

.logo-container img {
  width: 280px;
  max-width: 80vw;
  height: auto;
  filter: drop-shadow(0 0 40px rgba(201, 169, 110, 0.2));
  transition: var(--transition-smooth);
}

.logo-container img:hover {
  filter: drop-shadow(0 0 60px rgba(201, 169, 110, 0.35));
  transform: scale(1.02);
}

/* ── Heading Section ── */
.heading-section {
  margin-bottom: var(--space-xl);
  opacity: 0;
  animation: fadeSlideUp 1.8s ease 1s forwards;
}

.coming-soon-title {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 300;
  letter-spacing: 0.4em;
  color: var(--ivory);
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: var(--space-md);
  background: linear-gradient(
    135deg,
    var(--ivory) 0%,
    var(--champagne-light) 40%,
    var(--ivory) 60%,
    var(--champagne) 100%
  );
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmerText 6s ease-in-out infinite;
}

@keyframes shimmerText {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.subtitle {
  font-family: var(--font-serif);
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  font-weight: 300;
  font-style: italic;
  color: var(--ivory-soft);
  letter-spacing: 0.15em;
  margin-bottom: var(--space-sm);
}

.tagline {
  font-family: var(--font-sans);
  font-size: clamp(0.7rem, 1.5vw, 0.85rem);
  font-weight: 300;
  color: var(--ivory-faint);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-top: var(--space-sm);
}

/* ── Decorative divider ── */
.divider {
  width: 100px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--champagne), transparent);
  margin: var(--space-lg) auto;
  position: relative;
}

.divider::after {
  content: '◆';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 0.5rem;
  color: var(--champagne);
  background: var(--black-deep);
  padding: 0 12px;
}

/* ══════════════════════════════════════════
   COUNTDOWN TIMER
   ══════════════════════════════════════════ */
.countdown-section {
  margin-bottom: var(--space-xl);
  opacity: 0;
  animation: fadeSlideUp 1.8s ease 1.4s forwards;
}

.countdown-label {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 300;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--champagne);
  margin-bottom: var(--space-md);
  opacity: 0.8;
}

.countdown {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
}

.countdown-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 80px;
  position: relative;
}

.countdown-value {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 300;
  color: var(--ivory);
  line-height: 1;
  letter-spacing: 0.05em;
  position: relative;
}

.countdown-value::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--champagne-glow), transparent);
}

.countdown-unit-label {
  font-family: var(--font-sans);
  font-size: 0.6rem;
  font-weight: 300;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ivory-faint);
  margin-top: var(--space-sm);
}

.countdown-separator {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--champagne);
  opacity: 0.4;
  align-self: flex-start;
  margin-top: 0.3rem;
  animation: pulseSeparator 2s ease-in-out infinite;
}

@keyframes pulseSeparator {
  0%, 100% { opacity: 0.4; }
  50%      { opacity: 0.1; }
}

/* ══════════════════════════════════════════
   EMAIL SUBSCRIPTION
   ══════════════════════════════════════════ */
.subscription-section {
  margin-bottom: var(--space-xl);
  opacity: 0;
  animation: fadeSlideUp 1.8s ease 1.8s forwards;
  width: 100%;
  max-width: 520px;
}

.subscription-text {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ivory-faint);
  margin-bottom: var(--space-md);
}

.subscription-form {
  position: relative;
  display: flex;
  align-items: stretch;
  gap: 0;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 4px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  overflow: hidden;
  transition: var(--transition-smooth);
  box-shadow: var(--glow-champagne);
}

.subscription-form:hover,
.subscription-form:focus-within {
  border-color: var(--glass-border-hover);
  box-shadow: var(--glow-champagne-strong);
}

.subscription-form input[type="email"] {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  padding: 18px 24px;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--ivory);
  letter-spacing: 0.08em;
  caret-color: var(--champagne);
}

.subscription-form input[type="email"]::placeholder {
  color: rgba(245, 240, 232, 0.25);
  letter-spacing: 0.1em;
  font-weight: 200;
}

.subscription-form button {
  background: linear-gradient(135deg, var(--champagne) 0%, var(--gold-warm) 100%);
  border: none;
  padding: 18px 32px;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--black-deep);
  cursor: pointer;
  transition: var(--transition-smooth);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.subscription-form button::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--champagne-light), var(--champagne));
  opacity: 0;
  transition: var(--transition-smooth);
}

.subscription-form button:hover {
  letter-spacing: 0.35em;
  box-shadow: 0 0 30px rgba(201, 169, 110, 0.3);
}

.subscription-form button:hover::before {
  opacity: 1;
}

.subscription-form button span {
  position: relative;
  z-index: 1;
}

/* Success state */
.subscription-success {
  display: none;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  padding: var(--space-md);
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 300;
  letter-spacing: 0.15em;
  color: var(--champagne);
  background: var(--glass-bg);
  border: 1px solid var(--champagne);
  border-radius: 4px;
  backdrop-filter: blur(20px);
  animation: fadeScaleIn 0.5s ease forwards;
}

.subscription-success.show {
  display: flex;
}

.subscription-success svg {
  width: 18px;
  height: 18px;
  stroke: var(--champagne);
}

/* ══════════════════════════════════════════
   SOCIAL ICONS
   ══════════════════════════════════════════ */
.social-section {
  margin-bottom: var(--space-lg);
  opacity: 0;
  animation: fadeSlideUp 1.8s ease 2.2s forwards;
}

.social-icons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-lg);
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: var(--ivory-faint);
  transition: var(--transition-smooth);
  position: relative;
  text-decoration: none;
}

.social-icon::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 20px;
  height: 1px;
  background: var(--champagne);
  transition: var(--transition-smooth);
}

.social-icon:hover {
  color: var(--champagne);
  transform: translateY(-3px);
}

.social-icon:hover::after {
  transform: translateX(-50%) scaleX(1);
}

.social-icon svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
  transition: var(--transition-smooth);
}

.social-icon:hover svg {
  filter: drop-shadow(0 0 8px rgba(201, 169, 110, 0.4));
}

/* ── Footer ── */
.footer-text {
  font-family: var(--font-sans);
  font-size: 0.6rem;
  font-weight: 300;
  letter-spacing: 0.2em;
  color: rgba(245, 240, 232, 0.2);
  text-transform: uppercase;
  margin-top: var(--space-lg);
  opacity: 0;
  animation: fadeSlideUp 1.8s ease 2.5s forwards;
}

/* ══════════════════════════════════════════
   ANIMATIONS
   ══════════════════════════════════════════ */
@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeSlideDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

/* ── Cursor glow effect ── */
.cursor-glow {
  position: fixed;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(201, 169, 110, 0.04) 0%,
    transparent 70%
  );
  pointer-events: none;
  z-index: 4;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease;
  opacity: 0;
}

.cursor-glow.active {
  opacity: 1;
}

/* ══════════════════════════════════════════
   RESPONSIVE DESIGN
   ══════════════════════════════════════════ */

/* ── Touch device optimizations ── */
@media (hover: none) and (pointer: coarse) {
  .cursor-glow {
    display: none !important;
  }

  .social-icon {
    width: 48px;
    height: 48px;
    -webkit-tap-highlight-color: transparent;
  }

  .social-icon svg {
    width: 22px;
    height: 22px;
  }

  .subscription-form button {
    min-height: 48px;
  }

  .subscription-form input[type="email"] {
    min-height: 48px;
    font-size: 16px; /* prevents iOS zoom on focus */
  }
}

/* ── Tablets (1024px) ── */
@media (max-width: 1024px) {
  .main-content {
    padding: var(--space-lg) var(--space-md);
  }

  .logo-container {
    margin-bottom: var(--space-lg);
  }

  .heading-section {
    margin-bottom: var(--space-lg);
  }

  .jewel-piece.ring {
    width: 160px;
    height: 160px;
    right: 3%;
  }
  
  .jewel-piece.necklace {
    width: 180px;
    height: 180px;
    left: 2%;
  }
  
  .jewel-piece.earring {
    width: 130px;
    height: 130px;
    right: 3%;
  }

  .jewel-piece.hero-piece {
    width: 260px;
    height: 260px;
  }
}

/* ── Mobile (768px) ── */
@media (max-width: 768px) {
  .main-content {
    padding: var(--space-md) var(--space-sm);
    justify-content: flex-start;
    padding-top: 8vh;
    min-height: 100dvh; /* dynamic viewport height for mobile browsers */
  }

  .top-accent {
    margin-bottom: var(--space-md);
  }

  .logo-container {
    margin-bottom: var(--space-lg);
  }

  .logo-container img {
    width: 200px;
  }

  .heading-section {
    margin-bottom: var(--space-lg);
  }

  .coming-soon-title {
    letter-spacing: 0.2em;
    font-size: clamp(2rem, 8vw, 3.2rem);
    margin-bottom: var(--space-sm);
  }

  .subtitle {
    font-size: clamp(0.85rem, 2.5vw, 1.1rem);
    letter-spacing: 0.1em;
    padding: 0 var(--space-sm);
  }

  .tagline {
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    padding: 0 var(--space-sm);
  }

  .divider {
    width: 70px;
    margin: var(--space-md) auto;
  }

  .countdown-section {
    margin-bottom: var(--space-lg);
  }

  .countdown {
    gap: var(--space-sm);
  }

  .countdown-unit {
    min-width: 58px;
  }

  .countdown-value {
    font-size: clamp(1.8rem, 6vw, 2.8rem);
  }

  .countdown-separator {
    font-size: 1.3rem;
    margin-top: 0.1rem;
  }

  .countdown-unit-label {
    font-size: 0.5rem;
    letter-spacing: 0.25em;
    margin-top: 0.6rem;
  }

  .subscription-section {
    margin-bottom: var(--space-lg);
    max-width: 90vw;
  }

  .subscription-form {
    flex-direction: column;
    border-radius: 6px;
  }

  .subscription-form input[type="email"] {
    text-align: center;
    padding: 16px 20px;
    border-bottom: 1px solid var(--glass-border);
    font-size: 16px;
  }

  .subscription-form button {
    padding: 16px 24px;
    font-size: 0.65rem;
    letter-spacing: 0.3em;
  }

  .subscription-success {
    font-size: 0.7rem;
    padding: var(--space-sm);
    letter-spacing: 0.1em;
  }

  .social-icons {
    gap: var(--space-md);
  }

  .footer-text {
    margin-top: var(--space-md);
    font-size: 0.55rem;
  }

  /* Jewellery — smaller & repositioned */
  .jewel-piece.ring {
    width: 100px;
    height: 100px;
    top: 3%;
    right: 1%;
  }

  .jewel-piece.necklace {
    width: 120px;
    height: 120px;
    bottom: 5%;
    left: 1%;
  }

  .jewel-piece.earring {
    width: 90px;
    height: 90px;
    bottom: 12%;
    right: 1%;
  }

  .jewel-piece.hero-piece {
    width: 200px;
    height: 200px;
    top: 30%;
  }

  /* Reduce ambient effects for performance */
  .light-rays {
    display: none;
  }
}

/* ── Small mobile (480px) ── */
@media (max-width: 480px) {
  .main-content {
    padding: var(--space-sm) var(--space-xs);
    padding-top: 6vh;
  }

  .top-accent {
    width: 40px;
    margin-bottom: var(--space-sm);
  }

  .logo-container {
    margin-bottom: var(--space-md);
  }

  .logo-container img {
    width: 160px;
  }

  .heading-section {
    margin-bottom: var(--space-md);
  }

  .coming-soon-title {
    letter-spacing: 0.12em;
    font-size: clamp(1.6rem, 9vw, 2.4rem);
    line-height: 1.2;
  }

  .subtitle {
    font-size: 0.82rem;
    letter-spacing: 0.08em;
  }

  .tagline {
    font-size: 0.58rem;
    letter-spacing: 0.15em;
  }

  .divider {
    width: 50px;
    margin: var(--space-sm) auto;
  }

  .countdown-section {
    margin-bottom: var(--space-md);
  }

  .countdown-label {
    font-size: 0.55rem;
    letter-spacing: 0.3em;
    margin-bottom: var(--space-sm);
  }

  .countdown {
    gap: 0.25rem;
  }

  .countdown-separator {
    display: none;
  }

  .countdown-unit {
    min-width: 65px;
    padding: var(--space-xs) 0.25rem;
    background: var(--white-ghost);
    border: 1px solid rgba(201, 169, 110, 0.08);
    border-radius: 4px;
  }

  .countdown-value {
    font-size: clamp(1.6rem, 7vw, 2.2rem);
  }

  .countdown-unit-label {
    font-size: 0.45rem;
    margin-top: 0.5rem;
  }

  .subscription-section {
    margin-bottom: var(--space-md);
    max-width: 95vw;
  }

  .subscription-text {
    font-size: 0.6rem;
    letter-spacing: 0.18em;
    margin-bottom: var(--space-sm);
  }

  .subscription-form input[type="email"] {
    padding: 14px 16px;
  }

  .subscription-form button {
    padding: 14px 20px;
  }

  .social-section {
    margin-bottom: var(--space-sm);
  }

  .social-icons {
    gap: var(--space-md);
  }

  .footer-text {
    font-size: 0.5rem;
    letter-spacing: 0.15em;
    margin-top: var(--space-sm);
    padding-bottom: var(--space-sm);
  }

  /* Hide side jewellery, keep only centered hero */
  .jewel-piece.ring,
  .jewel-piece.necklace,
  .jewel-piece.earring {
    display: none;
  }

  .jewel-piece.hero-piece {
    display: block;
    width: 180px;
    height: 180px;
    top: 25%;
  }
}

/* ── Extra small (360px and below) ── */
@media (max-width: 360px) {
  .main-content {
    padding-top: 4vh;
  }

  .logo-container img {
    width: 140px;
  }

  .coming-soon-title {
    font-size: 1.5rem;
    letter-spacing: 0.1em;
  }

  .subtitle {
    font-size: 0.75rem;
  }

  .countdown-unit {
    min-width: 58px;
  }

  .countdown-value {
    font-size: 1.5rem;
  }

  .subscription-form input[type="email"] {
    padding: 12px 14px;
    font-size: 14px;
  }

  .subscription-form button {
    padding: 12px 16px;
    font-size: 0.6rem;
  }
}

/* ── Landscape mobile ── */
@media (max-height: 500px) and (orientation: landscape) {
  .main-content {
    padding-top: 2vh;
    justify-content: center;
    gap: 0;
  }

  .top-accent {
    display: none;
  }

  .logo-container {
    margin-bottom: var(--space-sm);
  }

  .logo-container img {
    width: 140px;
  }

  .heading-section {
    margin-bottom: var(--space-sm);
  }

  .coming-soon-title {
    font-size: 1.6rem;
    margin-bottom: 0.3rem;
  }

  .subtitle {
    font-size: 0.8rem;
    margin-bottom: 0;
  }

  .tagline {
    display: none;
  }

  .divider {
    margin: 0.5rem auto;
  }

  .countdown-section {
    margin-bottom: var(--space-sm);
  }

  .countdown-label {
    margin-bottom: 0.4rem;
  }

  .subscription-section {
    margin-bottom: var(--space-sm);
  }

  .subscription-form {
    flex-direction: row;
  }

  .subscription-form input[type="email"] {
    text-align: left;
  }

  .social-section {
    margin-bottom: 0.3rem;
  }

  .footer-text {
    margin-top: 0.3rem;
  }

  .floating-jewellery {
    display: none;
  }
}

/* ── Safe area for notched phones (iPhone X+) ── */
@supports (padding: env(safe-area-inset-bottom)) {
  .main-content {
    padding-bottom: calc(var(--space-md) + env(safe-area-inset-bottom));
    padding-left: calc(var(--space-sm) + env(safe-area-inset-left));
    padding-right: calc(var(--space-sm) + env(safe-area-inset-right));
  }
}

/* ── Reduced motion preference ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .light-rays,
  #particles-canvas {
    display: none;
  }

  .jewel-piece {
    opacity: 0.25;
  }
}

/* ── Print ── */
@media print {
  .floating-jewellery,
  .bg-texture,
  .spotlight,
  .light-rays,
  .vignette,
  #particles-canvas,
  .cursor-glow {
    display: none !important;
  }
}

