/* FOUC PREVENTION */
body { visibility: hidden; }
body.nav-ready { visibility: visible; }

/* RESET */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

/* BODY */
body { font-family: 'Jost', sans-serif; background: #fff; color: #1a1208; -webkit-font-smoothing: antialiased; }

/* TOP BAR - REMOVED */

/* HEADER */
.site-header { position: sticky; top: 0; z-index: 1000; background: #fff; border-bottom: 1px solid #ede4d0; box-shadow: 0 1px 16px rgba(180,140,60,.06); }

.navbar { max-width: 1260px; margin: auto; padding: 0 32px; height: 90px; display: flex; align-items: center; justify-content: space-between; }

/* LOGO */
.nav-logo { display: flex; align-items: center; text-decoration: none; }

.logo-img-wrap { width: 190px; height: 65px; display: flex; align-items: center; justify-content: center; }

.logo-img { width: 100%; height: 100%; object-fit: contain; }

.logo-text { display: none; }

/* DESKTOP NAV */
.nav-links { display: flex; align-items: center; gap: 5px; list-style: none; margin-left: auto; }
.nav-link { position: relative; padding: 8px 14px; text-decoration: none; color: #3a2e1e; font-size: 14px; font-weight: 500; letter-spacing: 1.5px; text-transform: uppercase; transition: .25s; }
.nav-link::after { content: ''; position: absolute; left: 50%; bottom: 0; transform: translateX(-50%) scaleX(0); width: 70%; height: 1.5px; background: #C9A84C; transition: .3s; }
.nav-link:hover, .nav-link.active { color: #C9A84C; }
.nav-link:hover::after, .nav-link.active::after { transform: translateX(-50%) scaleX(1); }

/* HAMBURGER */
.hamburger { display: none; flex-direction: column; justify-content: space-between; gap: 6px; width: 26px; height: 18px; background: none; border: none; cursor: pointer; padding: 0; }
.bar { display: block; width: 100%; height: 2px; background: #1a1208; border-radius: 2px; transition: .3s; }
.hamburger.open .b1 { transform: translateY(8px) rotate(45deg); }
.hamburger.open .b2 { opacity: 0; }
.hamburger.open .b3 { transform: translateY(-8px) rotate(-45deg); }

/* OVERLAY */
.mobile-overlay { position: fixed; inset: 0; background: rgba(0,0,0,.45); z-index: 1100; opacity: 0; visibility: hidden; transition: .3s; }
.mobile-overlay.active { opacity: 1; visibility: visible; }

/* DRAWER */
.mobile-drawer { position: fixed; top: 0; left: 0; bottom: 0; width: 300px; max-width: 84vw; background: #fff; z-index: 1200; transform: translateX(-100%); transition: .35s; border-right: 1px solid #ede4d0; display: flex; flex-direction: column; }
.mobile-drawer.open { transform: translateX(0); }
.drawer-head { display: flex; align-items: center; justify-content: space-between; padding: 20px; border-bottom: 1px solid #ede4d0; }
.drawer-brand { font-family: 'Cormorant Garamond', serif; font-size: 18px; font-weight: 700; }
.drawer-close { background: none; border: none; cursor: pointer; font-size: 20px; }
.drawer-links { list-style: none; }
.drawer-link { display: block; padding: 18px 24px; text-decoration: none; color: #3a2e1e; font-size: 14px; text-transform: uppercase; letter-spacing: 1px; border-bottom: 1px solid #f5f5f5; transition: .2s; }
.drawer-link:hover { background: #fdf9f0; color: #C9A84C; }

/* RESPONSIVE */
@media (max-width: 1024px) {
.nav-links { display: none; }
.hamburger { display: flex; }
}

@media (max-width: 600px) {
.navbar { height: 64px; padding: 0 16px; }
.logo-img-wrap { width: 110px; height: 48px; }
.hamburger { width: 22px; height: 16px; gap: 4px; }
.hamburger.open .b1 { transform: translateY(7px) rotate(45deg); }
.hamburger.open .b3 { transform: translateY(-7px) rotate(-45deg); }
}