/* =========================================================
   CARIBE RESTAURANT & GASTROBAR — Shared Stylesheet
   Single responsibility: all visual styles and animations
   ========================================================= */

/* ----- Design Tokens ----- */
:root {
  --bg-deep:    #001a2e;
  --bg-teal:    #002233;
  --bg-dark:    #001829;
  --gold:       #f2ca50;
  --gold-glow:  rgba(242, 202, 80, 0.25);
  --coral:      #ff6b6b;
  --turquoise:  #00c9a7;
  --text:       #f0f4ff;
  --text-muted: #a8c4d4;
  --card-bg:    rgba(255, 255, 255, 0.05);
  --card-border:rgba(242, 202, 80, 0.2);
  --radius-sm:  6px;
  --radius-md:  10px;
  --radius-lg:  12px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ----- Base ----- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: linear-gradient(160deg, var(--bg-deep) 0%, #003d4f 100%);
  background-attachment: fixed;
  min-height: 100vh;
  font-family: 'Lato', sans-serif;
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Smooth image rendering */
img {
  image-rendering: auto;
}

/* ----- Typography ----- */
h1, h2, h3, .font-headline {
  font-family: 'Playfair Display', serif;
}

/* ----- Selection ----- */
::selection {
  background: var(--gold);
  color: var(--bg-deep);
}

/* ----- Navigation ----- */
.nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  background: rgba(0, 26, 46, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: background var(--transition), box-shadow var(--transition);
}

.nav--scrolled {
  background: rgba(0, 26, 46, 0.97);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
  border-bottom-color: rgba(242, 202, 80, 0.1);
}

.nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-decoration: none;
  transition: text-shadow var(--transition);
}

.nav__logo:hover {
  text-shadow: 0 0 20px var(--gold-glow);
}

.nav__links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav__link {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
  transition: color var(--transition), text-shadow var(--transition);
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width var(--transition);
}

.nav__link:hover         { color: var(--gold); }
.nav__link:hover::after  { width: 100%; }
.nav__link--active       { color: var(--gold); }
.nav__link--active::after { width: 100%; }

.nav__cta {
  padding: 0.5rem 1.25rem;
  background: var(--gold);
  color: var(--bg-deep);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: var(--radius-sm);
  transition: filter var(--transition), transform var(--transition), box-shadow var(--transition);
}

.nav__cta:hover {
  filter: brightness(1.1);
  transform: translateY(-1px);
  box-shadow: 0 4px 15px var(--gold-glow);
}

.nav__hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--gold);
  padding: 0.25rem;
  transition: transform var(--transition);
}

.nav__hamburger:hover {
  transform: scale(1.1);
}

.nav__mobile {
  display: none;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem 1.5rem 1.5rem;
  background: rgba(0, 26, 46, 0.97);
  border-top: 1px solid rgba(255,255,255,0.05);
}

.nav__mobile.is-open { display: flex; }

.nav__mobile-link {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
  padding: 0.5rem 0;
  transition: color var(--transition), padding-left var(--transition);
}

.nav__mobile-link:hover {
  color: var(--gold);
  padding-left: 0.5rem;
}

.nav__mobile-link--active { color: var(--gold); }

/* ----- Floating WhatsApp Button ----- */
.whatsapp-btn {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 99;
  width: 3.5rem;
  height: 3.5rem;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: transform var(--transition), box-shadow var(--transition);
  text-decoration: none;
}

.whatsapp-btn:hover {
  transform: scale(1.12);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

/* ----- Animations ----- */
@keyframes floatFlower {
  0%, 100% { transform: translateY(0px) rotate(0deg);   }
  33%       { transform: translateY(-14px) rotate(6deg);  }
  66%       { transform: translateY(-7px) rotate(-4deg);  }
}

@keyframes floatLeaf {
  0%, 100% { transform: translateY(0px) rotate(-5deg);  }
  50%       { transform: translateY(-10px) rotate(5deg); }
}

@keyframes waPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
  50%       { box-shadow: 0 4px 30px rgba(37,211,102,0.7); }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center;  }
}

.float-flower { animation: floatFlower 7s ease-in-out infinite; }
.float-leaf   { animation: floatLeaf   5s ease-in-out infinite; }
.float-delay  { animation-delay: -3.5s; }
.float-delay2 { animation-delay: -1.5s; }
.whatsapp-btn { animation: waPulse 2.5s ease-in-out infinite; }

/* ----- Scroll Reveal ----- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }

/* ----- Tropical Decorators (shared) ----- */
.tropical-corner {
  position: absolute;
  pointer-events: none;
}

/* ----- Wave Dividers ----- */
.wave {
  display: block;
  width: 100%;
  height: 60px;
  line-height: 0;
  margin-top: -2px;
}

/* ----- Section Shared ----- */
.section {
  padding: 5rem 1.5rem;
}

.section__label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--turquoise);
  margin-bottom: 0.75rem;
}

.section__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--text);
  line-height: 1.2;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

/* ----- Hero ----- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* Overlays removed — video shows fully vivid.
   Text readability handled via text-shadow on hero text elements. */
.hero__overlay-dark,
.hero__overlay-gradient,
.hero__overlay-vignette {
  display: none;
}

.hero__content {
  position: relative;
  z-index: 10;
  padding: 0 2rem;
  max-width: 700px;
  animation: fadeInUp 1s ease-out 0.3s both;
}

.hero__label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--turquoise);
  margin-bottom: 1rem;
  animation: fadeIn 1s ease-out 0.5s both;
  text-shadow: 0 2px 8px rgba(0,0,0,0.9), 0 0 20px rgba(0,0,0,0.7);
}

.hero__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 8vw, 5.5rem);
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 0.5rem;
  animation: fadeInUp 1s ease-out 0.6s both;
  text-shadow: 0 4px 24px rgba(0,0,0,0.85), 0 2px 8px rgba(0,0,0,0.95);
}

.hero__subtitle {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.25rem, 3vw, 2rem);
  font-style: italic;
  color: var(--gold);
  margin-bottom: 2rem;
  animation: fadeInUp 1s ease-out 0.8s both;
  text-shadow: 0 2px 12px rgba(0,0,0,0.9), 0 0 24px rgba(0,0,0,0.7);
}

.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease-out 1s both;
}

/* ----- Buttons ----- */
.btn-primary {
  padding: 0.85rem 2rem;
  background: var(--gold);
  color: var(--bg-deep);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: var(--radius-sm);
  transition: filter var(--transition), transform var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s;
}

.btn-primary:hover::before { left: 100%; }
.btn-primary:hover { filter: brightness(1.1); transform: translateY(-2px); box-shadow: 0 6px 20px var(--gold-glow); }

.btn-outline {
  padding: 0.85rem 2rem;
  border: 2px solid var(--gold);
  color: var(--gold);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: var(--radius-sm);
  background: rgba(242,202,80,0.08);
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}

.btn-outline:hover {
  background: rgba(242,202,80,0.18);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px var(--gold-glow);
}

/* ----- Dish Cards ----- */
.dishes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.dish-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.dish-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  border-color: rgba(242, 202, 80, 0.4);
}

.dish-card__img-wrap {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.dish-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.dish-card:hover .dish-card__img { transform: scale(1.08); }

.dish-card__price {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  padding: 0.25rem 0.75rem;
  background: var(--gold);
  color: var(--bg-deep);
  font-size: 0.85rem;
  font-weight: 700;
  border-radius: 99px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
  z-index: 2;
}

.dish-card__body { padding: 1.25rem; }

.dish-card__name {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--text);
  margin-bottom: 0.4rem;
}

.dish-card__desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ----- Info Cards ----- */
.info-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-md);
  transition: border-color var(--transition), background var(--transition), transform var(--transition);
}

.info-card:hover {
  border-color: rgba(242, 202, 80, 0.4);
  background: rgba(255, 255, 255, 0.08);
  transform: translateX(4px);
}

.info-card__icon { font-size: 1.5rem; flex-shrink: 0; }
.info-card__label { font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.25rem; }
.info-card__value { font-size: 0.95rem; color: var(--text); }

/* ----- About Grid ----- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

/* ----- Delivery Section ----- */
.delivery-section {
  background: linear-gradient(180deg, #002233 0%, #00192d 50%, #001829 100%);
  position: relative;
  overflow: hidden;
}

.delivery-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 600px;
  height: 600px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(242,202,80,0.04) 0%, transparent 70%);
  pointer-events: none;
}

.delivery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.delivery-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 2.5rem 2rem;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  text-decoration: none;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition), background var(--transition);
  position: relative;
  overflow: hidden;
}

.delivery-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top, rgba(242,202,80,0.08) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition);
}

.delivery-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 30px rgba(242,202,80,0.1);
  border-color: rgba(242, 202, 80, 0.5);
  background: rgba(255, 255, 255, 0.08);
}

.delivery-card:hover::before {
  opacity: 1;
}

.delivery-card__icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform var(--transition), box-shadow var(--transition);
}

.delivery-card:hover .delivery-card__icon {
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

.delivery-card__name {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  color: var(--text);
}

.delivery-card__desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.delivery-card__action {
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-top: auto;
  transition: letter-spacing var(--transition);
}

.delivery-card:hover .delivery-card__action {
  letter-spacing: 0.25em;
}

/* ----- Menu Tabs (index2) ----- */
.tabs {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
  scrollbar-width: thin;
  scrollbar-color: var(--gold) transparent;
  -webkit-overflow-scrolling: touch;
}

/* Webkit scrollbar styling */
.tabs::-webkit-scrollbar {
  height: 4px;
}
.tabs::-webkit-scrollbar-track {
  background: transparent;
}
.tabs::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 4px;
}

.tab-btn {
  flex-shrink: 0;
  padding: 0.5rem 1.25rem;
  background: var(--card-bg);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 99px;
  color: var(--text-muted);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color var(--transition), border-color var(--transition), background var(--transition);
  font-family: 'Lato', sans-serif;
}

.tab-btn:hover      { color: var(--gold); border-color: var(--gold); background: rgba(242,202,80,0.06); }
.tab-btn--active    { background: var(--gold); color: var(--bg-deep); border-color: var(--gold); font-weight: 700; box-shadow: 0 2px 12px var(--gold-glow); }

.menu-panel         { display: none; }
.menu-panel--active { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1rem; animation: fadeIn 0.4s ease-out; }

.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-md);
  transition: border-color var(--transition), background var(--transition), transform var(--transition);
}

.menu-item:hover {
  border-color: rgba(242, 202, 80, 0.35);
  background: rgba(255, 255, 255, 0.07);
  transform: translateY(-2px);
}

.menu-item__info { flex: 1; }
.menu-item__name { font-weight: 700; font-size: 0.95rem; color: var(--text); margin-bottom: 0.2rem; }
.menu-item__desc { font-size: 0.8rem; color: var(--text-muted); line-height: 1.4; }

.menu-item__price {
  flex-shrink: 0;
  padding: 0.25rem 0.65rem;
  background: var(--gold);
  color: var(--bg-deep);
  font-size: 0.8rem;
  font-weight: 700;
  border-radius: 99px;
  white-space: nowrap;
}

/* ----- Menu item variants (section headers / category rows) ----- */
.menu-item--span    { grid-column: 1 / -1; }
.menu-item--gold    { background: rgba(242,202,80,0.06);  border-color: rgba(242,202,80,0.3); }
.menu-item--gold-hi { background: rgba(242,202,80,0.08);  border-color: rgba(242,202,80,0.4); }
.menu-item--teal    { background: rgba(0,201,167,0.06);   border-color: rgba(0,201,167,0.3); }
.menu-item--coral   { background: rgba(255,107,107,0.06); border-color: rgba(255,107,107,0.3); }
.menu-item__name--gold  { color: var(--gold); }
.menu-item__name--teal  { color: var(--turquoise); }
.menu-item__name--coral { color: var(--coral); }
.menu-item__desc--note  { color: var(--text-muted); font-style: italic; }

/* ----- Menu page main wrapper ----- */
.menu-main { background: var(--bg-teal); padding: 2rem 0 5rem; }
.menu-container { padding: 0 1.5rem; }
.tabs--mb { margin-bottom: 2rem; }

/* ----- Contact Page ----- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.contact-map {
  width: 100%;
  height: 420px;
  border-radius: var(--radius-lg);
  border: 0;
  filter: saturate(0.6) brightness(0.85);
  transition: filter var(--transition);
}

.contact-map:hover {
  filter: saturate(0.8) brightness(0.9);
}

/* ----- Contact page structure ----- */
.contact-left {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.contact-visit-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
  color: var(--text);
  margin-bottom: 0.5rem;
}

/* WhatsApp CTA on contact page */
.whatsapp-cta {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 1.1rem 1.5rem;
  background: #25d366;
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: filter var(--transition), transform var(--transition), box-shadow var(--transition);
  margin-top: 0.5rem;
}

.whatsapp-cta:hover {
  filter: brightness(1.1);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
}
.whatsapp-cta__icon { flex-shrink: 0; }
.whatsapp-cta__title {
  color: white;
  font-weight: 700;
  font-size: 0.95rem;
  margin: 0;
}
.whatsapp-cta__sub {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.78rem;
  margin: 0;
}

/* ----- Footer ----- */
.footer {
  background: #000e1c;
  padding: 4rem 1.5rem 2rem;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.footer__grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer__logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.footer__tagline { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; }

.footer__heading {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.footer__list { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; }

.footer__list-item {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.875rem;
  color: var(--text-muted);
  transition: color var(--transition);
}

.footer__list-item a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color var(--transition);
}

.footer__list-item a:hover {
  color: var(--gold);
}

.footer__list-icon { font-size: 1rem; flex-shrink: 0; margin-top: 1px; }

.footer__copy {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.social-links { display: flex; gap: 0.75rem; margin-top: 1.25rem; }

.social-link {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  text-decoration: none;
}

.social-link:hover {
  background: var(--gold);
  color: var(--bg-deep);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px var(--gold-glow);
}

/* ----- Page Header (shared: menu & contact) ----- */
.page-header {
  padding-top: 7rem;
  padding-bottom: 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, #001a2e 0%, #002d40 100%);
}

.page-header__inner {
  position: relative;
  z-index: 2;
}

.page-header__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 6vw, 3.5rem);
  color: var(--text);
  margin-bottom: 0.5rem;
}

.page-header__subtitle {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* ----- Back to Top indicator ----- */
.scroll-top {
  position: fixed;
  bottom: 5.5rem;
  right: 1.5rem;
  z-index: 98;
  width: 2.5rem;
  height: 2.5rem;
  background: rgba(0, 26, 46, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(242, 202, 80, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  text-decoration: none;
  font-size: 1rem;
  line-height: 1;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity var(--transition), visibility var(--transition), transform var(--transition), background var(--transition), color var(--transition);
  cursor: pointer;
}

.scroll-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top:hover {
  background: var(--gold);
  color: var(--bg-deep);
  transform: translateY(-2px);
}

/* ----- Responsive ----- */
@media (max-width: 1024px) {
  .about-grid {
    gap: 2.5rem;
  }
}

@media (max-width: 768px) {
  .nav__links    { display: none; }
  .nav__hamburger{ display: block; }
  .nav__cta      { display: none; }

  .hero__content { padding: 0 1.25rem; }
  .hero__actions { flex-direction: column; }

  .about-grid    { grid-template-columns: 1fr; gap: 2rem; }
  .contact-grid  { grid-template-columns: 1fr; }
  .delivery-grid { grid-template-columns: 1fr; max-width: 400px; }

  .contact-map   { height: 300px; }

  .section       { padding: 3.5rem 1.25rem; }

  .dishes-grid   { grid-template-columns: 1fr; }

  .footer__grid  { grid-template-columns: 1fr; gap: 2rem; }

  .whatsapp-btn {
    bottom: 1rem;
    right: 1rem;
    width: 3rem;
    height: 3rem;
  }

  .whatsapp-btn svg {
    width: 22px;
    height: 22px;
  }

  .scroll-top {
    bottom: 4.5rem;
    right: 1rem;
    width: 2.25rem;
    height: 2.25rem;
  }
}

@media (max-width: 480px) {
  .nav__inner {
    padding: 0.75rem 1rem;
  }

  .section {
    padding: 2.5rem 1rem;
  }

  .hero__content {
    padding: 0 1rem;
  }

  .menu-panel--active {
    grid-template-columns: 1fr;
  }

  .dishes-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

/* ----- Focus States for Accessibility ----- */
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

/* ----- Print Styles ----- */
@media print {
  .nav, .whatsapp-btn, .scroll-top, .tropical-corner, .delivery-section { display: none !important; }
  body { background: white; color: #333; }
  .hero { min-height: auto; }
}

/* ----- Skip Link (Accessibility) ----- */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--gold);
  color: var(--bg-deep);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.85rem;
  z-index: 10000;
  transition: top 0.2s ease;
}
.skip-link:focus {
  top: 1rem;
}

/* ----- Screen Reader Only ----- */
.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;
}

/* ----- Privacy / Legal Pages ----- */
.legal-wrap {
  color: var(--text-muted);
  line-height: 1.9;
  font-size: 0.95rem;
}
.legal-wrap h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--text);
  margin-bottom: 1rem;
}
.legal-wrap p { margin-bottom: 1.5rem; }
.legal-wrap ul {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}
.legal-wrap li { margin-bottom: 0.4rem; }
.legal-wrap a {
  color: var(--gold);
  text-decoration: underline;
}
.legal-wrap__updated {
  color: var(--text);
  font-weight: 700;
  margin-top: 2rem;
}
.legal-section {
  background: var(--bg-teal);
}
.legal-container {
  max-width: 800px;
}

/* ----- Footer link variants ----- */
.footer__list-item a.is-gold { color: var(--gold); }
.footer__copy-link {
  color: var(--text-muted);
  text-decoration: underline;
}
.footer__phone {
  color: var(--text-muted);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ----- Page header subtitle variants ----- */
.page-header__subtitle--bright { color: var(--text); }

/* ----- Info card phone link ----- */
.info-card__link {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ----- Menu page extras ----- */
.menu-meta {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.7;
  max-width: 700px;
  margin: 1.5rem auto 0;
}
.menu-item__name--turquoise { color: var(--turquoise); }

/* ----- Contact page about ----- */
.contact-about {
  margin-top: 3rem;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.contact-about h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 1rem;
}
.contact-about p {
  color: var(--text-muted);
  line-height: 1.8;
  font-size: 0.92rem;
  margin-bottom: 1rem;
}
.contact-about p:last-child { margin-bottom: 0; }
.contact-map-caption {
  margin-top: 1rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  text-align: center;
}

/* ----- Nav CTA in mobile menu ----- */
.nav__cta--inline { width: fit-content; }

/* ----- Tropical decorator positions ----- */
.tropical-corner--tl  { top: 8%; left: 3%; z-index: 1; }
.tropical-corner--tr  { top: 5%; right: 4%; z-index: 1; }
.tropical-corner--tr2 { top: 8%; right: 4%; z-index: 5; }
.tropical-corner--br  { bottom: 10%; right: 8%; z-index: 5; }
.tropical-corner--bl  { bottom: 15%; left: 2%; z-index: 5; }

/* ----- Section layout helpers ----- */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}
.section-header--sm { margin-bottom: 2.5rem; }
.section-cta {
  text-align: center;
  margin-top: 2.5rem;
}
.section--bg-teal  { background: var(--bg-teal); }
.section--bg-dark  { background: var(--bg-dark); }

/* ----- Wave variants ----- */
.wave--flip  { transform: scaleY(-1); margin-bottom: -2px; }
.wave--above { margin-bottom: -2px; }

/* ----- About section ----- */
.about-desc {
  color: var(--text-muted);
  line-height: 1.8;
  font-size: 0.95rem;
}
.about-title { margin-bottom: 1.5rem; }
.info-stack {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.info-card__link--light {
  color: var(--text);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ----- Delivery section ----- */
.delivery-intro {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-top: 1rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}
.delivery-note {
  text-align: center;
  margin-top: 2rem;
  color: var(--text-muted);
  font-size: 0.8rem;
  font-style: italic;
}
.delivery-card__icon--glovo   { background: #ffc244; }
.delivery-card__icon--uber    { background: #06c167; }
.delivery-card__icon--justeat { background: #ff8000; }

/* ----- Footer map (compact) ----- */
.footer-map {
  height: 220px;
  border-radius: var(--radius-md);
}
