nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 4rem; background: #f5f2ed; border-bottom: 1px solid #e8e4dd;
  height: 70px;
}
.nav-logo { font-family: 'Bebas Neue', sans-serif; font-size: 1.8rem; letter-spacing: 0.05em; color: #0d0d0d; text-decoration: none; line-height: 1; flex-shrink: 0; }
.nav-logo span { color: #BB000A; }
.nav-logo small { display: block; font-family: 'DM Sans', sans-serif; font-size: 0.6rem; font-weight: 400; letter-spacing: 0.08em; color: #6b6560; margin-top: 0.1rem; }
.nav-menu { display: flex; align-items: center; gap: 2rem; }
.nav-link { font-size: 0.85rem; font-weight: 500; color: #6b6560; text-decoration: none; letter-spacing: 0.04em; transition: color 0.2s; white-space: nowrap; }
.nav-link:hover, .nav-link.active { color: #BB000A; }
.nav-dropdown { position: relative; }
.nav-dropdown-toggle { font-size: 0.85rem; font-weight: 500; color: #6b6560; letter-spacing: 0.04em; cursor: pointer; transition: color 0.2s; display: flex; align-items: center; gap: 0.3rem; background: none; border: none; font-family: 'DM Sans', sans-serif; padding: 0; }
.nav-dropdown-toggle:hover { color: #BB000A; }
.nav-dropdown-toggle::after { content: '▾'; font-size: 0.7rem; }
.nav-dropdown-menu { display: none; position: absolute; top: 100%; left: 50%; transform: translateX(-50%); background: #f5f2ed; border: 1px solid #e8e4dd; min-width: 200px; z-index: 200; }
.nav-dropdown:hover .nav-dropdown-menu { display: block; }
.nav-dropdown-toggle::before { content: ''; position: absolute; bottom: -10px; left: 0; right: 0; height: 10px; }
.nav-dropdown { position: relative; }
.nav-dropdown-item { display: block; padding: 0.9rem 1.5rem; font-size: 0.85rem; color: #6b6560; text-decoration: none; border-bottom: 1px solid #e8e4dd; transition: all 0.2s; }
.nav-dropdown-item:last-child { border-bottom: none; }
.nav-dropdown-item:hover { background: #f0ebe4; color: #BB000A; }
.nav-dropdown-nom { font-family: 'Bebas Neue', sans-serif; font-size: 1.1rem; letter-spacing: 0.06em; color: #0d0d0d; display: block; }
.nav-dropdown-desc { font-size: 0.72rem; color: #6b6560; margin-top: 0.1rem; }
.nav-right { display: flex; align-items: center; gap: 1.5rem; flex-shrink: 0; }
.nav-tel { font-size: 0.85rem; color: #6b6560; text-decoration: none; letter-spacing: 0.03em; transition: color 0.2s; }
.nav-tel:hover { color: #BB000A; }
.nav-back { font-size: 0.85rem; color: #6b6560; text-decoration: none; transition: color 0.2s; }
.nav-back:hover { color: #BB000A; }
.nav-cta { display: inline-flex; align-items: center; gap: 0.5rem; background: #BB000A; color: #fff; text-decoration: none; padding: 0.7rem 1.4rem; font-size: 0.8rem; font-weight: 500; letter-spacing: 0.04em; transition: background 0.2s; white-space: nowrap; }
.nav-cta:hover { background: #900008; }
.nav-burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 0.5rem; }
.nav-burger span { display: block; width: 24px; height: 2px; background: #0d0d0d; transition: all 0.3s; }
.nav-mobile { display: none; position: fixed; top: 70px; left: 0; right: 0; background: #f5f2ed; border-bottom: 1px solid #e8e4dd; z-index: 99; padding: 1.5rem 2rem; flex-direction: column; gap: 1rem; }
.nav-mobile.open { display: flex; }
.nav-mobile a { font-size: 0.95rem; color: #6b6560; text-decoration: none; font-weight: 500; padding: 0.5rem 0; border-bottom: 1px solid #e8e4dd; }
.nav-mobile a:hover { color: #BB000A; }
@media (max-width: 900px) {
  nav { padding: 0 1.5rem; }
  .nav-menu { display: none; }
  .nav-tel { display: none; }
  .nav-burger { display: flex; }
}
