/* === Boomé — Hot Mat Pilates — Coming Soon === */
:root {
  --burgundy: #6e1a2c;
  --burgundy-light: #8a2336;
  --cream: #ecdcb8;
  --cream-soft: rgba(236, 220, 184, 0.85);
  --cream-muted: rgba(236, 220, 184, 0.6);
  --cream-line: rgba(236, 220, 184, 0.25);
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
}

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

html, body { height: 100%; }

body {
  position: relative;
  min-height: 100vh;
  background: var(--burgundy);
  color: var(--cream);
  font-family: var(--font-body);
  font-weight: 300;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
}

/* Background effects */
.bg-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 30%, var(--burgundy-light) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.bg-grain {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.06;
  mix-blend-mode: overlay;
  z-index: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

/* Topbar */
.topbar {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 1.5rem;
}
.meta {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--cream-soft);
}

/* Hero */
.hero {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem 1.5rem 4rem;
  max-width: 56rem;
  margin: 0 auto;
  width: 100%;
}

.eyebrow {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.45em;
  color: var(--cream-muted);
  margin-bottom: 2rem;
}

.logo-wrap {
  width: 100%;
  max-width: 32rem;
}
.logo-wrap img {
  width: 100%;
  height: auto;
  display: block;
  user-select: none;
}

.tagline {
  margin-top: 2.5rem;
  max-width: 32rem;
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.4rem, 3.5vw, 2rem);
  line-height: 1.5;
  color: var(--cream-soft);
}

.cta-block {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.75rem;
}

.divider {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.4em;
  color: var(--cream-muted);
}
.divider .line {
  display: block;
  width: 2.5rem;
  height: 1px;
  background: var(--cream-muted);
}
.pulse { animation: pulseSoft 2.5s ease-in-out infinite; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.9rem 2rem;
  border: 1px solid rgba(236, 220, 184, 0.3);
  border-radius: 999px;
  color: var(--cream);
  text-decoration: none;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  transition: all 0.3s ease;
}
.btn:hover {
  background: var(--cream);
  color: var(--burgundy);
  border-color: var(--cream);
}
.btn .arrow { transition: transform 0.3s ease; }
.btn:hover .arrow { transform: translateX(4px); }

/* Footer */
.footer {
  position: relative;
  z-index: 2;
  padding: 1rem 1.5rem 2rem;
}
.footer-inner {
  max-width: 72rem;
  margin: 0 auto;
  padding-top: 1.5rem;
  border-top: 1px solid var(--cream-line);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: rgba(236, 220, 184, 0.55);
}
.socials { display: flex; gap: 1.5rem; }
.socials a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}
.socials a:hover { color: var(--cream); }

/* Animations */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes pulseSoft {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}
.fade-up { opacity: 0; animation: fadeUp 1s ease-out forwards; }
.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }
.delay-4 { animation-delay: 0.8s; }

/* Responsive */
@media (min-width: 640px) {
  .topbar { padding: 1.5rem 3rem; }
  .footer { padding: 1rem 3rem 2rem; }
  .footer-inner { flex-direction: row; justify-content: space-between; }
}
@media (max-width: 639px) {
  .hide-mobile { display: none; }
}
