/* Shared responsive navigation for Chef Justin Jennings article pages */
.article-nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
  background: rgba(10, 10, 10, 0.97);
  border-bottom: 1px solid rgba(201, 168, 76, 0.22);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.article-nav, .article-nav * { box-sizing: border-box; }
.article-nav-inner {
  position: relative;
  width: 100%;
  max-width: 1200px;
  min-height: 70px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.article-nav .article-nav-logo {
  margin: 0;
  color: #c9a84c;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: .08em;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
}
.article-nav .article-nav-logo:hover { color: #e5d4a0; }
.article-nav-links {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1.6rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.article-nav-links li {
  display: block;
  margin: 0;
  padding: 0;
  list-style: none;
}
.article-nav-links a {
  display: inline-block;
  margin: 0;
  padding: .5rem 0;
  color: rgba(245, 240, 232, .84);
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: .76rem;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: .1em;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
}
.article-nav-links a:hover { color: #c9a84c; }
.article-nav-links .article-nav-cta {
  padding: .7rem 1rem;
  color: #0a0a0a;
  background: #c9a84c;
  border-radius: 3px;
}
.article-nav-links .article-nav-cta:hover {
  color: #0a0a0a;
  background: #e5d4a0;
}
.article-menu-button {
  display: none;
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  margin: 0;
  padding: 0;
  align-items: center;
  justify-content: center;
  color: #f5f0e8;
  background: transparent;
  border: 1px solid rgba(201, 168, 76, .38);
  border-radius: 50%;
  box-shadow: none;
  cursor: pointer;
}
.article-menu-button:hover { background: rgba(201, 168, 76, .1); }
.article-menu-button svg { display: block; width: 22px; height: 22px; }
@media (max-width: 768px) {
  .article-nav-inner {
    min-height: 62px;
    padding: 0 1.1rem;
    flex-direction: row;
    gap: 1rem;
  }
  .article-nav .article-nav-logo {
    max-width: calc(100% - 60px);
    overflow: hidden;
    font-size: .9rem;
    letter-spacing: .055em;
    text-overflow: ellipsis;
  }
  .article-menu-button { display: inline-flex; }
  .article-nav-links {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    z-index: 1001;
    padding: .7rem 1.1rem 1.1rem;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(17, 17, 17, .99);
    border-top: 1px solid rgba(201, 168, 76, .12);
    border-bottom: 1px solid rgba(201, 168, 76, .25);
    box-shadow: 0 18px 35px rgba(0, 0, 0, .38);
  }
  .article-nav-links.open { display: flex; }
  .article-nav-links li { width: 100%; }
  .article-nav-links a {
    display: block;
    width: 100%;
    padding: .78rem 0;
    text-align: left;
  }
  .article-nav-links .article-nav-cta {
    margin-top: .45rem;
    padding: .82rem 1rem;
    text-align: center;
  }
}
