:root {
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html, body {
  height: 100%;
  margin: 0;
}

body {
  font-family: 'Jost', 'Helvetica Neue', Arial, sans-serif;
  color: #f5f3ee;
  overflow-x: hidden;
}

.bg {
  position: fixed;
  inset: 0;
  z-index: -2;
}

.bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 45%;
}

.overlay {
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(10, 14, 18, 0.55) 0%, rgba(10, 14, 18, 0.35) 35%, rgba(10, 14, 18, 0.6) 75%, rgba(8, 11, 14, 0.85) 100%);
}

.content {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6vh 6vw;
}

.brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.brand-mark {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 500;
  font-size: clamp(1.9rem, 5vw, 3.2rem);
  letter-spacing: 0.03em;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.35);
}

.brand-sub {
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  font-size: clamp(0.7rem, 1.4vw, 0.85rem);
  letter-spacing: 0.35em;
  color: #d8d2c4;
  text-transform: uppercase;
}

.divider {
  width: 44px;
  height: 1px;
  background: rgba(245, 243, 238, 0.55);
  margin: 2.4rem 0 2rem;
}

h1 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 500;
  font-size: clamp(2.6rem, 7vw, 4.5rem);
  letter-spacing: 0.02em;
  margin: 0 0 0.75rem;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.4);
}

.tagline {
  font-weight: 300;
  font-size: clamp(0.95rem, 1.8vw, 1.15rem);
  color: #e4e0d6;
  margin: 0 0 2.8rem;
  letter-spacing: 0.01em;
}

.cta {
  display: inline-block;
  padding: 0.85rem 2.4rem;
  border: 1px solid rgba(245, 243, 238, 0.75);
  border-radius: 2px;
  color: #f5f3ee;
  text-decoration: none;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: background-color 0.25s ease, color 0.25s ease;
}

.cta:hover,
.cta:focus-visible {
  background-color: #f5f3ee;
  color: #14181c;
}

.footer {
  position: fixed;
  bottom: 2.2rem;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-size: 0.75rem;
  font-weight: 300;
  color: rgba(245, 243, 238, 0.75);
  letter-spacing: 0.02em;
  flex-wrap: wrap;
  padding: 0 4vw;
}

.footer a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid rgba(245, 243, 238, 0.35);
}

.footer a:hover {
  border-bottom-color: rgba(245, 243, 238, 0.85);
}

.dot {
  opacity: 0.6;
}

@media (max-width: 480px) {
  .footer {
    flex-direction: column;
    gap: 0.3rem;
    bottom: 1.4rem;
  }
  .dot {
    display: none;
  }
}
