:root {
  --black: #0b0c09;
  --charcoal: #11130f;
  --bone: #f1ede9;
  --mist: #d8cfc4;
  --gold: #c7a976;
}

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

body {
  background: var(--black);
  color: var(--bone);
  font-family: "Lato", sans-serif;
  font-weight: 300;
}

a {
  color: inherit;
  text-decoration: none;
}

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

/* NAVBAR */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;

  width: 100%;
  height: 72px;

  display: flex;
  align-items: center;
  justify-content: flex-end;

  padding: 0 7.5%;
  background: #11130f;
  border-bottom: 1px solid rgba(241, 237, 233, 0.08);
}

.logo {
  position: absolute;
  left: 7.5%;
  top: 50%;
  transform: translateY(-55%);
  display: block;
  width: 260px;
}

.logo img {
  width: 100%;
  height: auto;
  display: block;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 2rem;

  font-family: "Montserrat", sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}

.main-nav a {
  color: #f1ede9;
  position: relative;
  padding-bottom: 0.45rem;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;

  width: 0;
  height: 1px;

  background: var(--gold);
  transition: width 0.25s ease;
}

.main-nav a:hover::after {
  width: 100%;
}

/* HERO */

.coming-hero {
  min-height: calc(100vh - 64px);

  display: flex;
  align-items: center;

  padding: 8rem 7.5% 5rem;

  background:
    linear-gradient(
      90deg,
      rgba(8, 9, 7, 0.74) 0%,
      rgba(8, 9, 7, 0.56) 42%,
      rgba(8, 9, 7, 0.3) 72%,
      rgba(8, 9, 7, 0.16) 100%
    ),
    url("assets/stone-texture-dark.png");

  background-size: cover;
  background-position: center;
}

.hero-inner {
  max-width: 760px;
}

.eyebrow {
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.42em;
  font-size: 0.72rem;
  color: var(--gold);
  margin-bottom: 1.4rem;
}

.coming-hero h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(4.5rem, 10vw, 8rem);
  font-weight: 300;
  line-height: 0.9;
  letter-spacing: -0.035em;
  color: #f5f1eb;
  margin-bottom: 1.8rem;
}

.hero-intro {
  max-width: 520px;
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  line-height: 1.65;
  color: #f5f1eb;
  margin-bottom: 2rem;
}

.home-link {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;

  font-family: "Montserrat", sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;

  color: var(--bone);
}

.home-link span {
  color: var(--gold);
  font-size: 1.2rem;
  letter-spacing: 0;
}

/* FOOTER */

.site-footer {
  padding: 1.4rem 7.5%;
  background: #11130f;

  text-align: center;
  color: #f5f1eb;

  font-family: "Cormorant Garamond", serif;
  letter-spacing: 0.08em;
  font-size: 0.95rem;

  border-top: 1px solid rgba(241, 237, 233, 0.08);
}

/* MOBILE */

@media (max-width: 768px) {
  .site-header {
    position: relative;
    height: auto;
    min-height: 96px;
    padding: 1rem 6%;
    flex-direction: column;
    justify-content: center;
    gap: 0.85rem;
  }

  .logo {
    position: relative;
    left: auto;
    top: auto;
    transform: none;
    width: 220px;
    margin: 0 auto;
  }

  .main-nav {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.75rem 1.2rem;
    font-size: 0.62rem;
    letter-spacing: 0.22em;
  }

  .coming-hero {
    min-height: 72vh;
    padding: 4.5rem 6%;
  }
}

@media (max-width: 640px) {
  .logo {
    width: 190px;
  }

  .main-nav {
    gap: 0.65rem 0.95rem;
    font-size: 0.58rem;
    letter-spacing: 0.18em;
  }

  .coming-hero {
    padding: 3.75rem 5%;
  }

  .coming-hero h1 {
    font-size: clamp(3.6rem, 17vw, 5rem);
  }

  .hero-intro {
    font-size: 1rem;
  }
}