:root {
  --bg-main: #121e2c;
  --stone: #7c6c5c;
  --gold: #c4af76;
  --cream: #ece5d7;
  --white: #f7f7f4;
}

* {
  box-sizing: border-box;
}

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

body {
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
  color: var(--white);
  font-family: "Manrope", sans-serif;
  background: #121e2c;
  display: flex;
  flex-direction: column;
}

.topbar {
  width: 100%;
  z-index: 3;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.15rem clamp(1.6rem, 4vw, 3.2rem);
  border-bottom: 1px solid color-mix(in srgb, var(--stone) 65%, var(--cream) 35%);
  background: #121e2c;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand-mark img {
  width: clamp(108px, 16vw, 150px);
  height: auto;
  display: block;
}

.mail-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: var(--cream);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.68rem;
  border: 1px solid color-mix(in srgb, var(--stone) 70%, var(--cream) 30%);
  padding: 0.42rem 0.72rem;
  border-radius: 999px;
  transition: border-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.mail-link svg {
  width: 17px;
  height: 17px;
  fill: var(--gold);
}

.mail-link:hover {
  color: var(--gold);
  border-color: var(--gold);
  transform: translateY(-1px);
}

.hero {
  min-height: calc(100vh - 86px);
  display: grid;
  place-items: center;
  padding: 2.2rem 1.25rem;
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: -2.5%;
  background: url("assets/featured.jpg") center / cover no-repeat;
  transform: scale(1.02);
  animation: hero-pan 24s ease-in-out infinite alternate;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(18, 30, 44, 0.38) 0%, rgba(18, 30, 44, 0.72) 100%);
}

.hero-card {
  width: min(850px, 100%);
  text-align: center;
  padding: clamp(1.6rem, 3vw, 2.7rem);
  border: none;
  border-radius: 0;
  background: transparent;
  position: relative;
  z-index: 1;
}

.kicker {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 0.72rem;
  color: rgba(236, 229, 215, 0.75);
  text-shadow: 0 2px 12px rgba(9, 15, 22, 0.75);
}

h1 {
  margin: 0.5rem 0 0;
  font-family: "Playfair Display", serif;
  font-size: clamp(2.1rem, 7vw, 4.9rem);
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--cream);
  line-height: 1.03;
  text-shadow: 0 6px 22px rgba(7, 12, 19, 0.78);
}

.subtitle {
  margin: 1rem auto 0;
  max-width: 600px;
  font-size: clamp(1rem, 2.6vw, 1.2rem);
  color: rgba(247, 247, 244, 0.88);
  text-shadow: 0 3px 16px rgba(8, 14, 21, 0.72);
}

.coming-soon {
  margin: 1.6rem auto 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(236, 229, 215, 0.36);
  border-radius: 999px;
  padding: 0.68rem 1.42rem;
  position: relative;
  overflow: hidden;
}

.coming-soon span {
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.27em;
  color: var(--cream);
  text-shadow: 0 2px 10px rgba(9, 15, 22, 0.72);
}

.coming-soon::after {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-180%);
  background: linear-gradient(100deg, transparent 35%, rgba(255, 255, 255, 0.45) 50%, transparent 65%);
  animation: shine 5s ease-in-out infinite;
}

.coords {
  margin: 1rem 0 0;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.69rem;
  color: rgba(236, 229, 215, 0.68);
  text-shadow: 0 2px 10px rgba(8, 14, 21, 0.72);
}

.site-footer {
  width: 100%;
  padding: 1.25rem 1rem 1.5rem;
  border-top: 1px solid color-mix(in srgb, var(--stone) 65%, var(--cream) 35%);
  text-align: center;
}

.site-footer p {
  margin: 0.25rem 0;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: rgba(236, 229, 215, 0.72);
}

.fade-in {
  opacity: 0;
  animation: fade 1.2s ease forwards;
}

.rise-in {
  opacity: 0;
  transform: translateY(18px);
  animation: rise 1.1s ease 0.15s forwards;
}

@keyframes fade {
  to {
    opacity: 1;
  }
}

@keyframes rise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes shine {
  0% {
    transform: translateX(-180%);
  }
  45%,
  100% {
    transform: translateX(180%);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

@keyframes hero-pan {
  0% {
    transform: scale(1.02) translate3d(-0.6%, -0.4%, 0);
  }
  100% {
    transform: scale(1.08) translate3d(0.8%, 0.6%, 0);
  }
}

@media (max-width: 640px) {
  .topbar {
    padding: 0.9rem 1rem;
  }

  .hero {
    min-height: calc(100vh - 74px);
    padding: 1.6rem 0.9rem;
  }

  .kicker {
    letter-spacing: 0.22em;
    font-size: 0.65rem;
  }

  .coords {
    letter-spacing: 0.13em;
    font-size: 0.64rem;
  }

  .mail-link span {
    display: none;
  }

  .site-footer p {
    font-size: 0.66rem;
    letter-spacing: 0.05em;
  }
}
