/* ============================================
   JONAHAUS COMING SOON — LANDING PAGE
   ============================================ */

:root {
  --clr-navy: #1b2a4a;
  --clr-gold: #c9a84c;
  --clr-gold-light: #d4b96a;
  --cl-wa-green: #25D366;
  --cl-wa-hover: #20bd5a;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif; min-height: 100vh; overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { text-decoration: none; transition: opacity 0.3s ease; }
a:hover { opacity: 0.85; }

.headline { font-family: 'Playfair Display', Georgia, serif; font-weight: 700; line-height: 1.05; letter-spacing: -0.03em; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  padding: 0.875rem 2rem; font-size: 0.875rem; font-weight: 600;
  letter-spacing: 0.05em; text-transform: uppercase;
  border: 2px solid transparent; border-radius: 4px; cursor: pointer;
  transition: all 0.3s ease; min-height: 48px; white-space: nowrap;
}
.btn:focus-visible { outline: 2px solid var(--clr-gold); outline-offset: 2px; }
.btn--wa { background: var(--cl-wa-green); color: white; border-color: var(--cl-wa-green); }
.btn--wa:hover { background: var(--cl-wa-hover); border-color: var(--cl-wa-hover); transform: translateY(-1px); box-shadow: 0 4px 12px rgba(37,211,102,0.3); }
.btn--outline-w { background: transparent; color: white; border-color: rgba(255,255,255,0.6); }
.btn--outline-w:hover { background: rgba(255,255,255,0.12); border-color: white; }

.hero-fullscreen {
  position: relative; min-height: 100vh; display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.ov-navy { position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(27,42,74,0.30) 0%, rgba(18,34,74,0.45) 50%, rgba(18,34,74,0.55) 100%); }
.ov-terra { position: absolute; inset: 0; z-index: 2; background: radial-gradient(ellipse at center bottom, rgba(232,168,124,0.18) 0%, transparent 70%); }
.ov-dots { position: absolute; inset: 0; z-index: 3; pointer-events: none; }
.gold-dot { position: absolute; border-radius: 50%; background: var(--clr-gold); }

.hero-content { position: relative; z-index: 10; display: flex; flex-direction: column; align-items: center; max-width: 680px; width: 100%; padding: 24px 20px; text-align: center; }
.gold-line { width: 60px; height: 2px; background: var(--clr-gold); margin-bottom: 28px; }
.cta-group { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; align-items: center; margin-bottom: 32px; }
.cta-divider { width: 1px; height: 32px; background: rgba(255,255,255,0.3); }
.trust-row { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; font-size: 0.8rem; color: rgba(255,255,255,0.8); font-weight: 500; }

.contact-bar {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 10;
  background: rgba(27,42,74,0.88); backdrop-filter: blur(8px);
  border-top: 1px solid rgba(255,255,255,0.1);
}
.contact-inner { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; max-width: 900px; margin: 0 auto; padding: 16px 20px; gap: 16px; }
.ci { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,0.75); font-size: 0.85rem; }
.ci svg { width: 16px; height: 16px; color: var(--clr-gold); flex-shrink: 0; }
.ci a { color: rgba(255,255,255,0.85); }
.brand { font-family: 'Playfair Display', Georgia, serif; font-size: 0.85rem; font-weight: 700; color: var(--clr-gold); letter-spacing: 0.1em; text-transform: uppercase; }

@media (max-width: 768px) {
  .cta-divider { display: none; }
  .cta-group { flex-direction: column; width: 100%; }
  .btn { width: 100%; }
  .contact-inner { flex-direction: column; text-align: center; }
}
