:root {
  --jade: #2f6f5e;
  --jade-light: #4a9c85;
  --gold: #cbaa6b;
  --cream: #f5f2ea;
  --dark: #0d1512;
}

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

html, body {
  height: 100%;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--cream);
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.bg-image {
  position: fixed;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: saturate(1) brightness(0.95);
  transform: scale(1.05);
  animation: slowZoom 30s ease-in-out infinite alternate;
  z-index: -2;
}

@keyframes slowZoom {
  from { transform: scale(1.05); }
  to { transform: scale(1.15); }
}

.overlay {
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse at center, rgba(13, 21, 18, 0.05) 0%, rgba(13, 21, 18, 0.65) 78%),
    linear-gradient(180deg, rgba(13, 21, 18, 0.35) 0%, rgba(13, 21, 18, 0.25) 45%, rgba(13, 21, 18, 0.75) 100%);
  z-index: -1;
}

.content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem 1.5rem;
  gap: 1.1rem;
}

.logo-mark {
  width: clamp(100px, 14vw, 150px);
  height: auto;
  margin-bottom: 0.6rem;
  filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.45));
  animation: fadeInDown 1s ease both;
}

.stats-line {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--jade-light);
  animation: fadeInDown 1s ease 0.1s both;
}

.title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: clamp(3.2rem, 9vw, 6.2rem);
  line-height: 1.05;
  color: var(--cream);
  animation: fadeInUp 1.1s ease 0.2s both;
}

.title .accent {
  display: block;
  font-style: italic;
  font-weight: 400;
  color: var(--jade-light);
}

.subtext {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(1.2rem, 2.8vw, 1.6rem);
  color: rgba(245, 242, 234, 0.9);
  animation: fadeInUp 1.1s ease 0.45s both;
}

.coming-soon {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 0.6rem;
  animation: fadeInUp 1.1s ease 0.6s both;
}

.divider {
  width: 56px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 0.4rem 0;
  animation: fadeInUp 1.1s ease 0.35s both;
}

.footer {
  text-align: center;
  padding: 1.2rem;
  font-size: 0.75rem;
  color: rgba(245, 242, 234, 0.5);
  letter-spacing: 0.03em;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

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

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

