/* =========================
   HEADER
========================= */

.site-header{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(236,228,218,0.9);
  backdrop-filter:blur(10px);
  border-bottom:1px solid rgba(0,0,0,0.06);
}

.header-inner {
  max-width: 1400px;
  margin: 0 auto;
padding:24px 30px;
display: flex;
  align-items: center; /* Centers logo vertically against the stack */
  gap: 30px;
}
.header-right{

    flex:1;

    display:flex;

    flex-direction:column;

    justify-content:center;

    gap:10px;

}
/* =========================
   BRAND
========================= */

.brand{
  display:flex;
  align-items:center;
  gap:18px;
}
.brand-link{
    flex:0 0 auto;
    display:flex;
    align-items:center;
    margin-right:20px;
}

.brand-logo{
    width:150px;
    height:150px;
    object-fit:contain;
    display:block;
}

.brand-text {
  text-align: left;
}

.brand-title{

    font-size:54px;

    line-height:1;

    margin:0;

    font-family:"IM Fell English SC", serif;

    color:#401b1b;

}

.brand-tagline{

    margin-top:10px;

    font-size:18px;

    color:#666;

}

/* =========================
   NAVIGATION
========================= */

.site-nav{
    display:flex;
    align-items:center;
    flex-wrap:wrap;
    gap:6px;
    margin-top:6px;
}

.nav-link{
    display:flex;
    align-items:center;
    justify-content:center;

    padding:12px 20px;

    border-radius:999px;

    font-size:15px;
    font-weight:500;

    color:#43363A;
    text-decoration:none;
    transition:.25s ease;
    white-space:nowrap;
}

.nav-link:hover{
    background:#f5d8e4;
}

.nav-link.is-active{
    background:#e8b7c8;
}

/* =========================
   MOBILE NAV BUTTON
========================= */

.nav-toggle{
  display:none;
  background:none;
  border:none;
  font-size:22px;
  cursor:pointer;
}

/* =========================
   FOOTER
========================= */

.site-footer{
  margin-top:40px;
  background:rgba(230,183,195,0.22);
  border-top:1px solid rgba(0,0,0,0.06);
}

.footer-inner{
  max-width:1400px;
  margin:0 auto;
  padding:24px 24px;
  display:flex;
  flex-wrap:wrap;
  gap:18px;
  justify-content:space-between;
  align-items:center;
}

.footer-title{
  font-size:16px;
}

.footer-tag{
  font-size:12px;
  color:var(--muted);
}

.footer-links{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
}

.footer-links a{
  font-size:14px;
  color:var(--muted);
  text-decoration:underline;
}

.footer-links a:hover{
  color:var(--ink);
}

.footer-copy{
  font-size:12px;
  color:var(--muted);
}

/* =========================
   MOBILE
========================= */

@media (max-width:900px){

  .header-inner{
    flex-wrap:nowrap; /* 🔥 prevents breaking */
    align-items:center;
  }

  .brand{
    flex:1; /* takes available space */
    min-width:0;
  }

  .brand-logo{
    height:90px; /* slightly smaller for mobile */
  }

  .brand-title{
    font-size:22px;
    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis;
  }

  .site-nav{
    display:none; /* hide menu */
  }

  .nav-toggle{
    display:block;
    margin-left:auto; /* pushes it to the right */
  }

}