/* ─── BRAND TOKENS ─── */
:root {
  --cream: #F5EDE0;
  --mustard: #D4A036;
  --terracotta: #C66A3D;
  --muted-teal: #3D7A7A;
  --sage-forest: #3F5F4A;
  --coral-logo: #E26B5A;
  --brick: #9C5A3C;
  --fuchsia: #E8488A;
  --deep-brown: #2B1F1A;
  --paper: #FFFAF0;
  --sh-sticker-lg: 0 5px 0 rgba(107,60,28,0.28), 0 18px 40px rgba(107,60,28,0.26);
}

* { margin: 0; padding: 0; box-sizing: border-box; -webkit-tap-highlight-color: rgba(61, 122, 122, 0.25); }

.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* ─── FOCUS STYLES ─── */
:focus { outline: none; }
:focus-visible {
  outline: 3px solid var(--mustard);
  outline-offset: 3px;
  border-radius: 2px;
}
.social-btn:focus-visible,
button:focus-visible,
.btn-primary:focus-visible,
.btn-secondary:focus-visible,
.btn-white:focus-visible,
.btn-fuchsia:focus-visible,
.nav-order-btn:focus-visible {
  outline: 3px solid var(--mustard);
  outline-offset: 4px;
}

body {
  font-family: 'Nunito', sans-serif;
  background: var(--cream);
  color: var(--deep-brown);
  overflow-x: hidden;
}

/* ─── NAV ─── */
nav {
  background: var(--cream);
  padding: 0 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 100;
  height: 72px;
  border-bottom: 3px solid var(--muted-teal);
}
.nav-logo {
  height: 52px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-logo-img {
  height: 52px;
  width: auto;
}
.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}
.nav-links a {
  color: var(--sage-forest);
  text-decoration: none;
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 0.2s;
}
@media (hover: hover) and (pointer: fine) {
  .nav-links a:hover { color: var(--mustard); }
}
.nav-order-btn {
  background: var(--fuchsia);
  color: white !important;
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 900 !important;
  letter-spacing: 0.08em !important;
  transition: background 0.2s, transform 0.15s !important;
  box-shadow: 0 4px 15px rgba(232, 72, 138,0.45);
}
@media (hover: hover) and (pointer: fine) {
  .nav-order-btn:hover {
    background: var(--fuchsia) !important;
    transform: translateY(-2px);
    color: white !important;
  }
}

/* ─── HAMBURGER ─── */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
  z-index: 200;
}
.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--sage-forest);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav drawer */
.mobile-nav {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  height: calc(100vh - 72px);
  height: calc(var(--vh, 100vh) - 72px);
  background: var(--deep-brown);
  z-index: 99;
  flex-direction: column;
  padding: 2rem;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  border-top: 1px solid rgba(255,255,255,0.08);
}
.mobile-nav.open {
  transform: translateX(0);
}
.mobile-nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 2rem;
}
.mobile-nav ul li a {
  display: block;
  color: white;
  text-decoration: none;
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: color 0.2s;
}
@media (hover: hover) and (pointer: fine) {
  .mobile-nav ul li a:hover { color: var(--muted-teal); }
}
.mobile-nav-order {
  display: block;
  background: var(--fuchsia);
  color: white;
  text-decoration: none;
  padding: 18px 36px;
  border-radius: 50px;
  font-weight: 900;
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
  box-shadow: 0 6px 25px rgba(232, 72, 138,0.45);
  margin-top: 1rem;
}
.mobile-nav-hours {
  margin-top: 2rem;
  padding: 1.5rem;
  background: rgba(255,255,255,0.05);
  border-radius: 16px;
}
.mobile-nav-hours .footer-col-title {
  margin-bottom: 0.8rem;
}
.mobile-nav-hours p {
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
  line-height: 1.9;
  font-weight: 600;
}

/* ─── BUTTON UTILITIES ─── */
.btn-primary {
  background: var(--fuchsia);
  color: white;
  text-decoration: none;
  padding: 16px 36px;
  border-radius: 50px;
  font-weight: 900;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 6px 25px rgba(232, 72, 138,0.5);
  transition: transform 0.2s, box-shadow 0.2s;
  display: inline-block;
}
@media (hover: hover) and (pointer: fine) {
  .btn-primary:hover { transform: translateY(-3px); box-shadow: 0 10px 35px rgba(232, 72, 138,0.6); }
}
.btn-secondary {
  background: transparent;
  color: var(--sage-forest);
  text-decoration: none;
  padding: 16px 36px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 2px solid var(--sage-forest);
  transition: border-color 0.2s, background 0.2s, color 0.2s;
  display: inline-block;
}
@media (hover: hover) and (pointer: fine) {
  .btn-secondary:hover { border-color: var(--mustard); color: var(--mustard); background: rgba(212,160,54,0.08); }
}
.btn-white {
  background: white;
  color: var(--muted-teal);
  text-decoration: none;
  padding: 15px 34px;
  border-radius: 50px;
  font-weight: 900;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 0.2s, box-shadow 0.2s;
  display: inline-block;
  box-shadow: 0 6px 25px rgba(0,0,0,0.15);
}
@media (hover: hover) and (pointer: fine) {
  .btn-white:hover { transform: translateY(-3px); box-shadow: 0 10px 35px rgba(0,0,0,0.2); }
}
.btn-fuchsia {
  background: var(--fuchsia);
  color: white;
  text-decoration: none;
  padding: 15px 34px;
  border-radius: 50px;
  font-weight: 900;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 6px 25px rgba(232,0,106,0.35);
  transition: transform 0.2s;
  display: inline-block;
}
@media (hover: hover) and (pointer: fine) {
  .btn-fuchsia:hover { transform: translateY(-3px); }
}

/* ─── SECTION TYPOGRAPHY ─── */
.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 4rem;
}
.section-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--fuchsia);
  margin-bottom: 0.5rem;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 4rem);
  color: var(--deep-brown);
  line-height: 1.1;
}
.section-title em { color: var(--muted-teal); font-style: italic; }
.section-title-xl {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 6vw, 5.5rem);
  color: var(--deep-brown);
  line-height: 1.0;
  letter-spacing: -0.01em;
}
.section-title-xl em { color: var(--muted-teal); font-style: italic; }
.section-label-gold::before {
  content: '';
  display: block;
  width: 36px;
  height: 2px;
  background: var(--mustard);
  margin-bottom: 0.75rem;
}
.bg-sand { background: var(--cream); }
.see-all {
  color: var(--fuchsia);
  font-weight: 800;
  text-decoration: none;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-bottom: 2px solid var(--fuchsia);
  padding-bottom: 2px;
  transition: opacity 0.2s;
  white-space: nowrap;
  margin-bottom: 8px;
}
@media (hover: hover) and (pointer: fine) {
  .see-all:hover { opacity: 0.7; }
}

/* ─── FOOTER ─── */
footer {
  background: var(--deep-brown);
  padding: 5rem 5rem 2rem;
  position: relative;
  overflow: hidden;
}
footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(to right, var(--muted-teal), var(--fuchsia), var(--terracotta), var(--mustard));
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}
.footer-logo-text {
  font-family: 'Great Vibes', cursive;
  font-size: 2rem;
  color: white;
  margin-bottom: 1rem;
}
.footer-tagline-txt {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.footer-social {
  display: flex;
  gap: 0.8rem;
}
.social-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  font-size: 0.9rem;
  transition: background 0.2s;
}
@media (hover: hover) and (pointer: fine) {
  .social-btn:hover { background: var(--fuchsia); }
}
.footer-col-title {
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted-teal);
  margin-bottom: 1.2rem;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  transition: color 0.2s;
}
@media (hover: hover) and (pointer: fine) {
  .footer-links a:hover { color: white; }
}
.footer-address {
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
  line-height: 1.8;
  font-weight: 600;
}
.footer-address a { color: var(--muted-teal); text-decoration: none; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-copy {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
  font-weight: 600;
}
.footer-bottom-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}
.footer-bottom-links a {
  color: rgba(255,255,255,0.3);
  text-decoration: none;
  font-size: 0.75rem;
  font-weight: 600;
  transition: color 0.2s;
}
@media (hover: hover) and (pointer: fine) {
  .footer-bottom-links a:hover { color: white; }
}

/* ─── DIAGONAL SECTION TRANSITIONS ─── */
.clip-bottom-right {
  clip-path: polygon(0 0, 100% 0, 100% 93%, 0 100%);
  padding-bottom: 8rem;
}
.clip-top-left {
  clip-path: polygon(0 4%, 100% 0, 100% 100%, 0 100%);
  padding-top: 8rem;
}

/* ═══════════════════════════════════════
   RESPONSIVE — TABLET (≤ 900px)
═══════════════════════════════════════ */
@media (max-width: 900px) {
  /* Nav */
  nav { padding: 0 1.5rem; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .mobile-nav { display: flex; }

  /* Section header */
  .section-header { flex-direction: column; align-items: flex-start; gap: 1rem; }

  /* Footer */
  footer { padding: 4rem 2rem 2rem; }
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  .footer-brand-col { grid-column: span 2; }
}

/* ═══════════════════════════════════════
   RESPONSIVE — MOBILE (≤ 560px)
═══════════════════════════════════════ */
@media (max-width: 560px) {
  /* Nav */
  nav { height: 64px; }
  .mobile-nav { top: 64px; height: calc(100vh - 64px); height: calc(var(--vh, 100vh) - 64px); }
  .nav-logo-img { height: 44px; }

  /* Buttons */
  .btn-primary, .btn-secondary { padding: 14px 26px; font-size: 0.8rem; }

  /* Section title */
  .section-title { font-size: 1.7rem; }
  .section-title-xl { font-size: 2.2rem; }

  /* Footer */
  footer { padding: 3rem 1.25rem 1.5rem; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-brand-col { grid-column: span 1; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
  .footer-bottom-links { justify-content: center; }
}

/* ─── STICKY MOBILE ORDER CTA ─── */
.sticky-order-cta {
  display: none;
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  padding: 16px 24px;
  padding-bottom: max(16px, env(safe-area-inset-bottom));
  background: var(--fuchsia);
  color: white;
  text-decoration: none;
  font-weight: 900;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
  border-radius: 50px;
  box-shadow: 0 8px 30px rgba(232, 72, 138, 0.5);
  z-index: 90;
  transform: translateY(calc(100% + 2rem));
  opacity: 0;
  transition: transform 0.35s ease, opacity 0.25s ease;
  pointer-events: none;
}
@media (max-width: 900px) {
  .sticky-order-cta { display: block; }
}
.sticky-order-cta.visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

/* ─── TODAY'S HOURS HIGHLIGHT ─── */
.hours-item.today {
  background: rgba(255, 255, 255, 0.18);
  padding: 4px 12px;
  border-radius: 50px;
}
.hours-item.today .hours-dot {
  background: var(--fuchsia);
  box-shadow: 0 0 0 4px rgba(232, 72, 138, 0.25);
}
.hours-item.today .hours-label::before {
  content: 'Today · ';
  color: #EBC157;
  font-weight: 900;
}
.hours-item.today .hours-val {
  opacity: 1;
  color: white;
}

/* ─── REDUCED MOTION ─── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
