/* --- Header --- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  opacity: 0;
  padding: 14px 0;
  background: rgba(243, 237, 230, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(107, 90, 78, 0.12);
}

.header__container {
  padding: 0 40px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
}

.header__logo {
  font-family: var(--font-heading);
  font-size: 18px;
  letter-spacing: 0.08em;
  color: #1F1A17;
  text-decoration: none;
  font-weight: 400;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-left: auto;
}

.header__links {
  list-style: none;
  display: flex;
  gap: 32px;
}

.header__link {
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-decoration: none;
  color: #6B5A4E;
  font-weight: 500;
  transition: color 0.25s ease;
}

.header__link:hover { color: #1F1A17; }

.header__btn {
  background: #8A6B4F;
  color: #fff;
  border: 1.5px solid #8A6B4F;
  padding: 9px 22px;
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  cursor: pointer;
  border-radius: 999px;
  text-decoration: none;
  display: inline-block;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.2s ease;
}

.header__btn:hover {
  background: #7a5a40;
  border-color: #7a5a40;
  transform: translateY(-1px);
}

/* Hamburger — hidden on desktop */
.header__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}

.header__hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: #1F1A17;
  transition: all 0.3s ease;
}

/* Mobile */
@media (max-width: 768px) {
  .header__container {
    padding: 0 24px;
  }

  .header__hamburger {
    display: flex;
  }

  .header__nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 75vw;
    max-width: 320px;
    height: 100vh;
    background: #F3EDE6;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 40px;
    padding: 60px 40px;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -8px 0 32px rgba(0,0,0,0.08);
    z-index: 999;
  }

  .header__nav.open {
    right: 0;
  }

  .header__links {
    flex-direction: column;
    gap: 28px;
  }

  .header__link {
    font-size: 18px;
    color: #1F1A17;
  }

  .header__btn {
    width: 100%;
    text-align: center;
    padding: 14px 22px;
  }
}
