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

:root {
  --bg: #faf9f7;
  --bg-soft: #f3f1ed;
  --text: #1a1a1a;
  --text-muted: #6e6e6e;
  --text-light: #9a9a9a;
  --border: #e4e2de;
  --border-hover: #c8c5bf;
  --font-display: "Cormorant Garamond", "Times New Roman", serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;
}

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  min-height: 100dvh;
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-muted);
  background-color: var(--bg);
}

.bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  background: url("assets/landing_background.png") center / cover no-repeat;
  filter: blur(6px);
  transform: scale(1.03);
}

.bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(250, 249, 247, 0.72);
}

.page {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100dvh;
  padding: 2.5rem 1.5rem;
}

.content {
  width: 100%;
  max-width: 32rem;
  text-align: center;
  animation: fade-in 1.2s ease-out both;
}

@keyframes fade-in {
  from {
    opacity: 0;
    transform: translateY(0.75rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.logo {
  display: block;
  width: clamp(6.5rem, 20vw, 9.5rem);
  height: auto;
  margin-inline: auto;
  margin-bottom: 2.5rem;
  border-radius: 50%;
}

.headline {
  font-family: var(--font-body);
  font-size: clamp(0.6875rem, 2vw, 0.75rem);
  font-weight: 400;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 1.75rem;
}

.subtitle {
  font-size: clamp(1rem, 2.5vw, 1.125rem);
  font-weight: 300;
  line-height: 1.75;
  color: var(--text-muted);
  max-width: 26rem;
  margin-inline: auto;
  margin-bottom: 2rem;
}

.location {
  font-size: 0.8125rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 2.75rem;
}

.location::before,
.location::after {
  content: "";
  display: inline-block;
  width: 1.5rem;
  height: 1px;
  background: var(--border);
  vertical-align: middle;
  margin: 0 0.75rem;
}

.cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.cta-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.125rem;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  text-decoration: none;
  background: rgba(255, 255, 255, 0.35);
  border: 1px solid var(--border);
  border-radius: 999px;
  transition:
    color 0.2s ease,
    border-color 0.2s ease,
    background-color 0.2s ease;
}

.cta-link:hover,
.cta-link:focus-visible {
  color: var(--text);
  border-color: var(--border-hover);
  background-color: rgba(255, 255, 255, 0.65);
  outline: none;
}

.cta-link:focus-visible {
  box-shadow: 0 0 0 2px var(--bg), 0 0 0 4px var(--border-hover);
}

.cta-icon {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
}

@media (max-width: 380px) {
  .location::before,
  .location::after {
    display: none;
  }

  .cta {
    flex-direction: column;
    width: 100%;
  }

  .cta-link {
    justify-content: center;
    width: 100%;
    max-width: 14rem;
  }
}

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

  .cta-link {
    transition: none;
  }
}
