/* Reusable components (buttons, cards, nav) */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.6rem;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.btn--primary {
  background-color: var(--color-primary);
  color: #fff;
  box-shadow: 0 12px 30px var(--color-shadow);
}

.btn--primary:hover {
  background-color: var(--color-primary-dark);
  transform: translateY(-1px);
}

.btn--outline {
  background-color: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}

.btn--outline:hover {
  background-color: var(--color-primary);
  color: white;
}

.site-header {
  position: sticky;
  top: 0;
  background-color: rgba(247, 241, 240, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(195, 166, 160, 0.6);
  z-index: 20;
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
  gap: 1.5rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.brand__mark {
  width: 52px;
  height: 52px;
  border-radius: 18px;
  background-color: var(--color-primary);
  color: white;
  display: grid;
  place-items: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 800;
}

.brand__name {
  font-size: 1.9rem;
  font-weight: 700;
}

.nav__list {
  display: flex;
  gap: 1.8rem;
  list-style: none;
}

.nav__item a {
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: color 0.25s ease;
}

.nav__item a:hover {
  color: var(--color-primary);
}

.menu-toggle {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: none;
  background: transparent;
  display: none;
  position: relative;
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--color-text);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  transition: transform 0.2s ease;
}

.menu-toggle span {
  top: 50%;
}

.menu-toggle::before {
  top: 14px;
}

.menu-toggle::after {
  bottom: 14px;
}

.mobile-menu,
.mobile-actions {
  display: none;
}
