/* ==========================================================================
   Nest Spaces — "Coming soon" landing page
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,400;9..144,500;9..144,600&family=Inter:wght@400;500;600&display=swap');

:root {
  --color-cream: #FAF6EF;
  --color-cream-dark: #F0E9DB;
  --color-sage: #4F6F5E;
  --color-sage-dark: #3A5346;
  --color-terracotta: #C97B4A;
  --color-charcoal: #2B2724;
  --color-charcoal-muted: #6B6259;
  --color-border: #E3DCCC;

  --font-heading: 'Fraunces', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-family: var(--font-body);
  color: var(--color-charcoal);
  background:
    radial-gradient(1200px 600px at 50% -10%, var(--color-cream-dark), transparent 70%),
    var(--color-cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

/* Language toggle (top-right) */
.lang-toggle {
  position: absolute;
  top: 24px;
  right: 24px;
  display: flex;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(6px);
}

.lang-btn {
  background: none;
  border: none;
  padding: 8px 14px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  cursor: pointer;
  color: var(--color-charcoal-muted);
  font-family: var(--font-body);
  transition: background 0.2s ease, color 0.2s ease;
}

.lang-btn.active { background: var(--color-sage); color: #fff; }

/* Main stage */
.stage {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 96px 24px 48px;
  text-align: center;
}

.stage-inner {
  max-width: 620px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.logo {
  width: 220px;
  height: auto;
  margin-bottom: 40px;
}

.eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-terracotta);
  margin-bottom: 18px;
}

h1 {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: clamp(2rem, 5.5vw, 3.2rem);
  line-height: 1.15;
  margin: 0 0 22px;
  color: var(--color-charcoal);
}

.lead {
  font-size: clamp(1.02rem, 2.2vw, 1.18rem);
  color: var(--color-charcoal-muted);
  margin: 0 0 36px;
  max-width: 52ch;
}

/* Status pill */
.status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 18px;
  border-radius: 999px;
  background: rgba(79, 111, 94, 0.10);
  color: var(--color-sage-dark);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 40px;
}

.dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--color-terracotta);
  box-shadow: 0 0 0 0 rgba(201, 123, 74, 0.5);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(201, 123, 74, 0.5); }
  70%  { box-shadow: 0 0 0 10px rgba(201, 123, 74, 0); }
  100% { box-shadow: 0 0 0 0 rgba(201, 123, 74, 0); }
}

@media (prefers-reduced-motion: reduce) {
  .dot { animation: none; }
}

/* Contact line */
.contact {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.95rem;
  color: var(--color-charcoal-muted);
}

.contact a {
  font-weight: 600;
  color: var(--color-sage-dark);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}

.contact a:hover { border-bottom-color: var(--color-sage); }

/* Footer */
.foot {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  padding: 22px 28px;
  font-size: 0.82rem;
  color: var(--color-charcoal-muted);
  border-top: 1px solid var(--color-border);
}
