/* ========= BASIC ========= */
*{box-sizing:border-box}
html,body{margin:0;padding:0;height:100%}

body{
  font-family:Inter, system-ui;
  background:#fbf7f3;
  color:#3a2f2a;
}

/* ========= CONTAINER ========= */
.container{
  max-width:1100px;
  margin:0 auto;
  padding:0 22px;
}

/* ========= HEADER ========= */
.site-header{
  position:fixed;
  top:0;
  width:100%;
  z-index:10;
  background:rgba(251,247,243,.94);
  backdrop-filter:blur(8px);
  border-bottom:1px solid rgba(80,60,50,.1);
}

.nav-bar{
  height:72px;
  display:flex;
  align-items:center;
}

.brand-badge{
  width:40px;
  height:40px;
  border-radius:999px;
  display:grid;
  place-items:center;
  border:1.5px solid rgba(97,102,63,.6);
  color:#61663f;
  font-family:"Reenie Beanie", cursive;
  font-size:26px;
}

/* ========= HERO ========= */
.coming-hero{
  height:85vh;
  background:
    linear-gradient(
      rgba(251,247,243,.85),
      rgba(251,247,243,.85)
    ),
    url("/hero.jpg") center/cover no-repeat;
  display:flex;
  align-items:center;
  justify-content:center;
  padding-top:72px;
}

.coming-content{
  text-align:center;
  max-width:520px;
}

.logo-text{
  font-family:"Reenie Beanie", cursive;
  font-size:52px;
  margin:0;
  color:#61663f;
}

.coming-content h2{
  font-family:"Playfair Display", serif;
  font-size:30px;
  margin:10px 0 0;
}

.byline{
  letter-spacing:.12em;
  font-size:13px;
  text-transform:lowercase;
  margin-top:6px;
  color:#6f5f57;
}

.intro{
  margin:28px 0 18px;
  font-size:15px;
  line-height:1.8;
}

.coming-soon{
  font-size:14px;
  color:#6f5f57;
  margin-bottom:30px;
}

/* ========= CTA ========= */
.cta-button{
  display:inline-block;
  padding:14px 26px;
  background:#6b7440;
  color:white;
  border-radius:999px;
  text-decoration:none;
  font-size:14px;
  box-shadow:0 10px 26px rgba(0,0,0,.15);
}

/* ========= FOOTER ========= */
.site-footer{
  padding:28px 0;
  background:#6b7440;
  color:rgba(255,255,255,.85);
  height:15vh;
}

.footer-inner{
  display:grid;
  grid-template-columns:1.5fr 1fr 1fr;
  gap:24px;
  align-items:center;
}

.footer-brand{
  display:flex;
  gap:14px;
  align-items:center;
}

.footer-logo{
  width:36px;
  height:36px;
  border-radius:999px;
  border:1.5px solid rgba(255,255,255,.6);
  display:grid;
  place-items:center;
  font-family:"Reenie Beanie", cursive;
  font-size:22px;
}

.site-footer a{
  color:white;
  text-decoration:none;
  font-size:13px;
}

.footer-meta{
  text-align:right;
}

/* ========= RESPONSIVE ========= */
@media(max-width:760px){
  .footer-inner{
    grid-template-columns:1fr;
    text-align:center;
  }
  .footer-brand{
    justify-content:center;
  }
  .footer-meta{
    text-align:center;
  }
}