/* ============================================================
   NAVIGATION — Sticky, Mobile-responsive
   ============================================================ */

.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(253, 248, 242, 0.0);
  backdrop-filter: blur(0px);
  transition: background 0.35s ease, box-shadow 0.35s ease, backdrop-filter 0.35s ease;
}
.site-nav.scrolled {
  background: rgba(253, 248, 242, 0.96);
  box-shadow: 0 2px 20px rgba(44, 36, 24, 0.10);
  backdrop-filter: blur(12px);
}
.site-nav.nav-dark {
  /* Transparent over hero dark overlays */
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem var(--section-px);
  max-width: var(--container);
  margin: 0 auto;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  line-height: 1;
}
.nav-logo-img {
  height: 52px;
  width: 52px;
  object-fit: contain;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  padding: 3px;
  transition: all var(--transition);
  flex-shrink: 0;
}
.site-nav.scrolled .nav-logo-img {
  background: rgba(0,0,0,0.06);
}
.nav-logo-text {
  display: flex;
  flex-direction: column;
  gap: 0.05rem;
}
.nav-logo .logo-name {
  font-family: var(--font-brand);
  font-size: 1.4rem;
  color: var(--white);
  transition: color var(--transition);
  line-height: 1;
}
.site-nav.scrolled .nav-logo .logo-name { color: var(--red); }
.nav-logo .logo-tag {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  transition: color var(--transition);
}
.site-nav.scrolled .nav-logo .logo-tag { color: var(--text-muted); }

/* Nav Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.15rem;
}
.nav-links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255,255,255,0.88);
  padding: 0.5rem 0.9rem;
  border-radius: 8px;
  transition: all var(--transition);
  position: relative;
}
.site-nav.scrolled .nav-links a { color: var(--text); }
.nav-links a:hover {
  color: var(--red);
  background: var(--red-soft);
}
.nav-links a.active {
  color: var(--red);
  font-weight: 600;
}
.site-nav.scrolled .nav-links a:hover { background: var(--red-soft); }

/* Nav CTA */
.nav-cta {
  padding: 0.55rem 1.3rem !important;
  background: var(--red) !important;
  color: var(--white) !important;
  border-radius: 100px !important;
  font-weight: 600 !important;
}
.nav-cta:hover {
  background: var(--red-hover) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(184, 50, 50, 0.3);
}
.site-nav.scrolled .nav-cta { background: var(--red) !important; color: var(--white) !important; }

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  cursor: pointer;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}
.site-nav.scrolled .nav-hamburger span { background: var(--text); }
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav Drawer */
.nav-mobile {
  display: none;
  background: var(--white);
  border-top: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.4,0,0.2,1);
}
.nav-mobile.open {
  max-height: 600px;
}
.nav-mobile-inner {
  padding: 1.5rem var(--section-px) 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.nav-mobile-inner a {
  display: block;
  padding: 0.85rem 1rem;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text);
  border-radius: 10px;
  transition: all var(--transition);
}
.nav-mobile-inner a:hover {
  background: var(--red-soft);
  color: var(--red);
  padding-left: 1.4rem;
}
.nav-mobile-inner a.active { color: var(--red); font-weight: 600; }
.nav-mobile-cta {
  margin-top: 1rem;
  background: var(--red) !important;
  color: var(--white) !important;
  text-align: center;
  border-radius: 100px !important;
  font-weight: 600 !important;
}

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .nav-mobile { display: block; }
}

/* ─── Footer ─── */
.site-footer {
  background: var(--black);
  color: rgba(255,255,255,0.7);
  padding: 4rem 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .logo-name {
  font-family: var(--font-brand);
  font-size: 1.8rem;
  color: var(--white);
  display: block;
  margin-bottom: 0.25rem;
}
.footer-brand .logo-tag {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 1rem;
}
.footer-brand p {
  color: rgba(255,255,255,0.55);
  font-size: 0.93rem;
  line-height: 1.7;
  max-width: 280px;
  margin-bottom: 1.5rem;
}
.footer-social a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.7);
  font-size: 0.88rem;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 100px;
  transition: all var(--transition);
}
.footer-social a:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 1.25rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col ul a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}
.footer-col ul a:hover { color: var(--gold); }
.footer-hours { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-hours .hour-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
  gap: 1rem;
}
.footer-hours .day { color: rgba(255,255,255,0.55); }
.footer-hours .time { color: rgba(255,255,255,0.75); font-weight: 500; text-align: right; }
.footer-hours .closed { color: var(--red); }
.footer-contact { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-contact a {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}
.footer-contact a:hover { color: var(--gold); }
.footer-contact .icon { font-size: 1rem; }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
}
.footer-bottom a { color: rgba(255,255,255,0.4); transition: color var(--transition); }
.footer-bottom a:hover { color: var(--gold); }

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
}
