.site-header {
    position: sticky;
    top: 0;
    z-index: 30;
    background: rgba(250, 247, 242, 0.98);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(224, 211, 196, 0.9);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding-block: 12px;
}
.header-branding {
    display: flex;
    align-items: center;
    min-width: 0;
}
.header-logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}
.header-logo-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 999px;
    background: radial-gradient(circle at 30% 20%, #fdf4e2, #c89a46);
    color: #3b2f25;
    font-family: var(--font-serif);
    font-weight: 500;
    font-size: 18px;
    box-shadow: 0 8px 20px rgba(88, 58, 19, 0.25);
}
.header-logo-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    white-space: nowrap;
}
.header-logo-title {
    font-family: var(--font-serif);
    font-size: 18px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--color-text);
}
.header-logo-subtitle {
    font-size: 11px;
    color: var(--color-text-muted);
    letter-spacing: 0.12em;
    text-transform: uppercase;
}
.header-nav {
    margin-left: auto;
}
.header-menu {
    display: flex;
    align-items: center;
    gap: 6px;
}
.header-menu-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 12px;
    border-radius: 999px;
    font-size: 13px;
    color: var(--color-text-muted);
    text-transform: uppercase;

    transition: background-color var(--transition-base), color var(--transition-base), transform var(--transition-fast);
}
.header-menu-link:hover, .header-menu-link:focus-visible {
    background-color: rgba(243, 231, 218, 0.95);
    color: var(--color-text);
    transform: translateY(-1px);
}
.header-menu-cta .header-cta-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 18px;
    border-radius: 999px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.13em;
    background: linear-gradient(135deg, #c89a46, #b07c32);
    color: #ffffff;
    box-shadow: var(--shadow-md);
    transition: background var(--transition-base), transform var(--transition-fast), box-shadow var(--transition-base);
}
.header-menu-cta .header-cta-link:hover, .header-menu-cta .header-cta-link:focus-visible {
    background: linear-gradient(135deg, #b5853c, #976629);
    transform: translateY(-1px);
    box-shadow: var(--shadow-lg);
}
.header-toggle {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 999px;
    border: 1px solid rgba(212, 190, 161, 0.9);
    background: rgba(255, 255, 255, 0.85);
    gap: 5px;
    padding: 0;
    transition: background-color var(--transition-base), border-color var(--transition-base), transform var(--transition-fast);
}
.header-toggle-bar {
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background-color: #4b3b2c;
    transition: transform var(--transition-base), opacity var(--transition-base), width var(--transition-base);
}
.header-toggle:focus-visible {
    outline: none;
    box-shadow: var(--focus-ring);
}
.header-toggle[aria-expanded="true"] {
    background: rgba(248, 238, 227, 0.98);
    border-color: rgba(184, 138, 59, 0.9);
    transform: translateY(1px);
}
.header-toggle[aria-expanded="true"] .header-toggle-bar:nth-child(1) {
    transform: translateY(3.5px) rotate(45deg);
    width: 20px;
}
.header-toggle[aria-expanded="true"] .header-toggle-bar:nth-child(2) {
    opacity: 0;
}
.header-toggle[aria-expanded="true"] .header-toggle-bar:nth-child(3) {
    transform: translateY(-3.5px) rotate(-45deg);
    width: 20px;
}
@media (max-width:767.98px) {
    .header-nav {
    position: fixed;
    inset-inline: 0;
    top: 56px;
    max-height: 0;
    overflow: hidden;
    background: rgba(250, 247, 242, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(224, 211, 196, 0.9);
    transition: max-height var(--transition-slow);
}
.header-nav.is-open {
    max-height: 360px;
}
.header-menu {
    flex-direction: column;
    align-items: flex-start;
    padding: 12px 16px 18px 16px;
    gap: 2px;
}
.header-menu-link, .header-menu-cta .header-cta-link {
    width: 100%;
    justify-content: flex-start;
    border-radius: 14px;
}
.header-menu-cta .header-cta-link {
    text-align: center;
    justify-content: center;
    margin-top: 4px;
}
.header-logo-subtitle {
    display: none;
}
.site-header {
    top: 0;
}
}@media (min-width:768px) {
    .header-toggle {
    display: none;
}
.header-nav {
    position: static;
    max-height: none;
    overflow: visible;
    background: transparent;
    border-bottom: none;
}
.header-menu {
    gap: 4px;
}
.header-logo-title {
    font-size: 19px;
}
.header-logo-subtitle {
    font-size: 11px;
}
}@media (min-width:1024px) {
    .header-menu {
    gap: 8px;
}
.header-menu-link {
    padding-inline: 14px;
    font-size: 12px;
}
.header-logo-title {
    font-size: 20px;
}
}