/* ═══════════════════════════════════════
   THE FISH HUB — Customer CSS
   Aesthetic: Warm coastal, editorial food
   ═══════════════════════════════════════ */

:root {
  --bg: #faf8f4;
  --surface: #ffffff;
  --card: #ffffff;
  --navy: #0d1b2a;
  --navy2: #1a2f45;
  --ocean: #0077b6;
  --ocean-light: #e8f4fd;
  --gold: #f4a829;
  --gold-dark: #d4891a;
  --coral: #e05a3a;
  --sand: #f5ede0;
  --sand2: #ede0cc;
  --text: #1a1a1a;
  --text-muted: #6b6b6b;
  --border: rgba(0,0,0,0.08);
  --radius: 16px;
  --radius-sm: 8px;
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.14);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Outfit', sans-serif;
  overflow-x: hidden;
  line-height: 1.6;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; }
button { border: none; cursor: pointer; font-family: inherit; }
input, select, textarea { font-family: inherit; }

/* ── BUTTONS ── */
.btn-primary {
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  display: inline-block;
  border: none;
  cursor: pointer;
}
.btn-primary:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(244,168,41,0.4);
}
.btn-outline {
  background: transparent;
  color: white;
  border: 2px solid rgba(255,255,255,0.6);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  transition: all 0.2s;
  display: inline-block;
}
.btn-outline:hover {
  background: rgba(255,255,255,0.15);
  border-color: white;
}
.btn-full { width: 100%; text-align: center; }
.btn-ghost {
  background: transparent;
  border: 2px solid var(--border);
  color: var(--text-muted);
  padding: 0.6rem 1.25rem;
  border-radius: 50px;
  font-weight: 500;
  font-size: 0.85rem;
  transition: all 0.2s;
}
.btn-ghost:hover { border-color: var(--navy); color: var(--navy); }

/* ── NAVBAR ── */
nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 2.5rem;
  transition: all 0.3s;
  background: transparent;
}
nav.scrolled {
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
}
nav.scrolled .nav-brand .brand-main,
nav.scrolled .nav-item { color: var(--navy); }
nav.scrolled .nav-item.active { color: var(--ocean); }

.nav-brand {
  display: flex; align-items: center; gap: 0.75rem;
  color: white;
  font-weight: 700;
}
.brand-icon { font-size: 1.6rem; }
.brand-main {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  color: white;
  line-height: 1.1;
}
.brand-sub {
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  display: block;
}
nav.scrolled .brand-sub { color: var(--text-muted); }

.nav-links {
  display: flex; align-items: center; gap: 2rem;
  list-style: none;
}
.nav-item {
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  transition: color 0.2s;
  letter-spacing: 0.02em;
}
.nav-item:hover, .nav-item.active { color: var(--gold); }
.nav-admin {
  background: rgba(255,255,255,0.15);
  padding: 0.35rem 0.85rem;
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,0.3);
  font-size: 0.78rem;
}
nav.scrolled .nav-admin {
  background: var(--sand);
  border-color: var(--border);
  color: var(--navy);
}

.nav-right { display: flex; align-items: center; gap: 0.75rem; }

.cart-btn {
  position: relative;
  background: var(--gold);
  color: var(--navy);
  border: none;
  border-radius: 50px;
  padding: 0.5rem 1.1rem;
  font-size: 0.9rem;
  font-weight: 700;
  display: flex; align-items: center; gap: 0.4rem;
  transition: transform 0.2s, box-shadow 0.2s;
}
.cart-btn:hover { transform: scale(1.05); box-shadow: 0 4px 16px rgba(244,168,41,0.4); }
.cart-btn.bounce { animation: cartBounce 0.4s ease; }
@keyframes cartBounce {
  0%, 100% { transform: scale(1); }
  40% { transform: scale(1.2); }
}
.cart-count {
  background: var(--coral);
  color: white;
  border-radius: 50%;
  width: 20px; height: 20px;
  font-size: 0.65rem;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}

.burger {
  display: none;
  flex-direction: column; justify-content: center; gap: 5px;
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 8px;
  padding: 8px;
}
.burger span { display: block; width: 100%; height: 1.5px; background: white; border-radius: 2px; transition: all 0.3s; }
.burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ── CART DRAWER ── */
.cart-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 200;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s;
}
.cart-overlay.open { opacity: 1; pointer-events: all; }

.cart-drawer {
  position: fixed; top: 0; right: 0;
  width: 380px; max-width: 95vw;
  height: 100vh;
  background: white;
  z-index: 201;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
  display: flex; flex-direction: column;
  box-shadow: var(--shadow-lg);
}
.cart-drawer.open { transform: translateX(0); }

.cart-header {
  padding: 1.5rem;
  border-bottom: 1px solid var(--border);
  display: flex; justify-content: space-between; align-items: center;
}
.cart-header h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: var(--navy);
}
.cart-close {
  background: var(--sand);
  border: none;
  width: 32px; height: 32px;
  border-radius: 50%;
  font-size: 0.85rem;
  color: var(--text-muted);
  cursor: pointer;
  transition: background 0.2s;
}
.cart-close:hover { background: var(--sand2); }

.cart-items { flex: 1; overflow-y: auto; padding: 1rem; }

.cart-empty {
  text-align: center;
  padding: 3rem 1rem;
  color: var(--text-muted);
}
.cart-empty-icon { font-size: 3rem; margin-bottom: 0.75rem; }
.cart-empty p { font-size: 1rem; font-weight: 600; color: var(--text); }
.cart-empty span { font-size: 0.85rem; }

.cart-item {
  display: flex; justify-content: space-between; align-items: center;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--border);
}
.cart-item-info { display: flex; gap: 0.75rem; align-items: center; }
.cart-item-emoji { font-size: 1.5rem; }
.cart-item-name { font-weight: 600; font-size: 0.9rem; }
.cart-item-price { font-size: 0.8rem; color: var(--ocean); font-weight: 600; margin-top: 0.1rem; }

.qty-control {
  display: flex; align-items: center; gap: 0.5rem;
}
.qty-control button {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--sand);
  color: var(--navy);
  font-size: 1rem;
  font-weight: 700;
  transition: background 0.2s;
}
.qty-control button:hover { background: var(--sand2); }
.qty-control span { font-weight: 700; min-width: 20px; text-align: center; }
.qty-control.small button { width: 24px; height: 24px; font-size: 0.85rem; }

.cart-footer {
  padding: 1.25rem 1.5rem;
  border-top: 1px solid var(--border);
  background: var(--sand);
}
.cart-total {
  display: flex; justify-content: space-between;
  font-weight: 700; font-size: 1.1rem;
  margin-bottom: 1rem;
  color: var(--navy);
}
.btn-order {
  width: 100%;
  background: var(--navy);
  color: white;
  font-weight: 700;
  font-size: 1rem;
  padding: 1rem;
  border-radius: 12px;
  transition: background 0.2s, transform 0.2s;
}
.btn-order:hover { background: var(--navy2); transform: translateY(-1px); }

/* ── MODAL ── */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 300;
  display: flex; align-items: center; justify-content: center;
}
.modal {
  background: white;
  border-radius: var(--radius);
  padding: 2.5rem;
  max-width: 400px;
  width: 90%;
  text-align: center;
  animation: modalIn 0.35s ease;
}
@keyframes modalIn {
  from { opacity: 0; transform: scale(0.9) translateY(20px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}
.modal-icon { font-size: 3.5rem; margin-bottom: 1rem; }
.modal h3 { font-family: 'Playfair Display', serif; font-size: 1.6rem; color: var(--navy); margin-bottom: 0.5rem; }
.modal p { color: var(--text-muted); margin-bottom: 0.5rem; }
.modal-num { font-weight: 700; color: var(--ocean); font-size: 1.1rem; margin-bottom: 1.5rem; }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--navy) 0%, #0a3d62 50%, var(--ocean) 100%);
  display: flex; align-items: center;
  position: relative;
  overflow: hidden;
  padding: 7rem 2.5rem 4rem;
}

.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='20'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.hero-promo {
  position: absolute;
  top: 5rem; right: 2rem;
  max-width: 300px;
  z-index: 3;
  display: none;
}
.promo-img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  border: 3px solid var(--gold);
}

.hero-content {
  position: relative; z-index: 2;
  max-width: 560px;
}
.hero-badge {
  display: inline-block;
  background: rgba(244,168,41,0.2);
  border: 1px solid rgba(244,168,41,0.4);
  color: var(--gold);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 6vw, 5rem);
  color: white;
  line-height: 1.05;
  margin-bottom: 1.25rem;
  font-weight: 900;
}
.hero-title em {
  color: var(--gold);
  font-style: italic;
}
.hero-desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 2rem;
  line-height: 1.7;
}
.hero-ctas {
  display: flex; gap: 1rem; flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.hero-info {
  display: flex; gap: 1.5rem; flex-wrap: wrap;
}
.hero-info-item {
  display: flex; align-items: center; gap: 0.4rem;
  font-size: 0.83rem;
  color: rgba(255,255,255,0.65);
}
.info-icon { font-size: 1rem; }

.hero-visual {
  position: absolute;
  right: 4rem; top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}
.hero-img-wrap {
  width: 380px; height: 440px;
  border-radius: 200px 200px 200px 200px / 200px 200px 160px 160px;
  overflow: hidden;
  border: 4px solid rgba(255,255,255,0.15);
  box-shadow: var(--shadow-lg);
  background: rgba(255,255,255,0.05);
}
.hero-img { width: 100%; height: 100%; object-fit: cover; }
.hero-img-fallback {
  width: 100%; height: 100%;
  display: none; align-items: center; justify-content: center;
  font-size: 5rem;
  background: rgba(255,255,255,0.05);
}
.hero-float-badge {
  position: absolute;
  bottom: 2rem; left: -2rem;
  background: white;
  color: var(--navy);
  padding: 0.65rem 1.25rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.85rem;
  box-shadow: var(--shadow);
  display: flex; align-items: center; gap: 0.4rem;
}

.hero-wave {
  position: absolute;
  bottom: -1px; left: 0; right: 0;
}
.hero-wave svg { display: block; }

/* ── SPECIALS STRIP ── */
.specials-strip {
  background: var(--navy);
  color: white;
  padding: 0.85rem 0;
  overflow: hidden;
  opacity: 0;
  transition: opacity 0.5s;
}
.specials-inner {
  display: flex; align-items: center; gap: 1.5rem;
  max-width: 1200px; margin: 0 auto; padding: 0 2.5rem;
}
.special-tag {
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  padding: 0.3rem 0.85rem;
  border-radius: 50px;
  white-space: nowrap;
  flex-shrink: 0;
}
.special-scroll {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.8);
  overflow: hidden;
  display: flex; gap: 2rem;
  animation: scrollText 20s linear infinite;
  white-space: nowrap;
}
@keyframes scrollText {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ── SECTION HELPERS ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2.5rem; }

.section-header { text-align: center; margin-bottom: 3rem; }
.section-tag {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--ocean);
  background: var(--ocean-light);
  padding: 0.35rem 1rem;
  border-radius: 50px;
  margin-bottom: 0.85rem;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--navy);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 0.75rem;
}
.section-desc { color: var(--text-muted); font-size: 1rem; max-width: 560px; margin: 0 auto; }

/* ── MENU ── */
.menu-section { padding: 5rem 0; background: var(--bg); }

.menu-tabs {
  display: flex; gap: 0.5rem; flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 3rem;
}
.tab-btn {
  padding: 0.55rem 1.25rem;
  border-radius: 50px;
  font-size: 0.83rem;
  font-weight: 600;
  background: white;
  color: var(--text-muted);
  border: 2px solid var(--border);
  transition: all 0.2s;
}
.tab-btn:hover { border-color: var(--ocean); color: var(--ocean); }
.tab-btn.active { background: var(--navy); color: white; border-color: var(--navy); }

.menu-grid { }

.menu-cat-group { margin-bottom: 3rem; }
.menu-cat-label {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--navy);
  font-weight: 700;
  margin-bottom: 1.25rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--sand2);
  display: flex; align-items: center; gap: 0.5rem;
}
.menu-cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.25rem;
}

.menu-card {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.25s, box-shadow 0.25s;
  position: relative;
  display: flex; flex-direction: column;
}
.menu-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.menu-card-emoji {
  background: linear-gradient(135deg, var(--sand), var(--sand2));
  text-align: center;
  font-size: 2.5rem;
  padding: 1.25rem 0;
  display: block;
}
.popular-badge {
  position: absolute;
  top: 0.75rem; right: 0.75rem;
  background: var(--coral);
  color: white;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 0.2rem 0.6rem;
  border-radius: 50px;
  text-transform: uppercase;
}
.menu-card-body {
  padding: 1rem 1.25rem 1.25rem;
  flex: 1; display: flex; flex-direction: column;
}
.menu-item-name { font-weight: 700; font-size: 1rem; color: var(--navy); margin-bottom: 0.35rem; }
.menu-item-desc { font-size: 0.78rem; color: var(--text-muted); flex: 1; margin-bottom: 1rem; line-height: 1.5; }
.menu-card-footer { display: flex; justify-content: space-between; align-items: center; margin-top: auto; }
.menu-item-price { font-weight: 800; font-size: 1.1rem; color: var(--ocean); }
.add-btn {
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
  font-size: 0.8rem;
  padding: 0.45rem 1rem;
  border-radius: 50px;
  transition: background 0.2s, transform 0.15s;
}
.add-btn:hover { background: var(--gold-dark); transform: scale(1.05); }
.menu-empty { text-align: center; color: var(--text-muted); padding: 4rem; grid-column: 1/-1; }

/* ── WHY US ── */
.why-section { padding: 5rem 0; background: var(--navy); }
.why-grid {
  max-width: 1200px; margin: 0 auto; padding: 0 2.5rem;
  display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 2rem;
}
.why-card {
  text-align: center;
  color: white;
  padding: 2rem;
  background: rgba(255,255,255,0.05);
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.08);
  transition: background 0.3s;
}
.why-card:hover { background: rgba(255,255,255,0.09); }
.why-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.why-card h4 { font-family: 'Playfair Display', serif; font-size: 1.1rem; margin-bottom: 0.5rem; color: var(--gold); }
.why-card p { font-size: 0.85rem; color: rgba(255,255,255,0.65); line-height: 1.6; }

/* ── BOOKING ── */
.booking-section { padding: 5rem 0; background: var(--sand); }

.booking-wrap {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: start;
}
.booking-left .section-title { text-align: left; }
.booking-left p { color: var(--text-muted); margin-bottom: 1.5rem; }
.booking-perks { display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 1.5rem; }
.perk { font-size: 0.88rem; color: var(--ocean); font-weight: 600; }

.store-card {
  background: white;
  border-radius: var(--radius);
  padding: 1.25rem;
  box-shadow: var(--shadow);
  display: flex; flex-direction: column; gap: 0.65rem;
}
.store-detail {
  display: flex; gap: 0.65rem; align-items: flex-start;
  font-size: 0.85rem; color: var(--text-muted);
}

.booking-form-card {
  background: white;
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-lg);
}
.booking-form-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem; color: var(--navy);
  margin-bottom: 1.5rem;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1rem; }
.form-group label { font-size: 0.82rem; font-weight: 600; color: var(--text-muted); }
.form-group input,
.form-group select,
.form-group textarea {
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.7rem 0.9rem;
  font-size: 0.9rem;
  color: var(--text);
  transition: border-color 0.2s;
  background: white;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--ocean);
}
.form-group textarea { resize: vertical; min-height: 80px; }

.booking-success {
  text-align: center; padding: 1.5rem;
  background: #f0fdf4;
  border-radius: var(--radius);
  border: 2px solid #22c55e;
  margin-top: 1rem;
}
.success-icon { font-size: 2.5rem; margin-bottom: 0.5rem; }
.booking-success h4 { color: #166534; font-size: 1.1rem; margin-bottom: 0.3rem; }
.booking-success p { font-size: 0.82rem; color: #166534; }

/* ── CONTACT ── */
.contact-section { padding: 5rem 0; background: var(--bg); }
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.5rem;
}
.contact-card {
  background: white;
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow);
  transition: transform 0.25s;
}
.contact-card:hover { transform: translateY(-3px); }
.contact-icon { font-size: 2rem; margin-bottom: 0.75rem; }
.contact-card h4 { font-weight: 700; color: var(--navy); margin-bottom: 0.5rem; font-size: 1rem; }
.contact-card p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.7; }
.contact-card a { color: var(--ocean); }
.contact-card a:hover { text-decoration: underline; }
.contact-link { display: inline-block; margin-top: 0.75rem; color: var(--ocean); font-weight: 600; font-size: 0.85rem; }
.contact-map { padding: 0; overflow: hidden; }

/* ── FOOTER ── */
footer { background: var(--navy); color: white; padding: 4rem 0 0; }
.footer-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 2.5rem 3rem;
  display: grid; grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
}
.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem; font-weight: 900;
  margin-bottom: 0.5rem;
  color: var(--gold);
}
.footer-brand p { font-size: 0.83rem; color: rgba(255,255,255,0.5); line-height: 1.7; }
.footer-links { display: flex; flex-direction: column; gap: 0.65rem; }
.footer-links a { font-size: 0.85rem; color: rgba(255,255,255,0.6); transition: color 0.2s; }
.footer-links a:hover { color: var(--gold); }
.footer-contact p { font-size: 0.83rem; color: rgba(255,255,255,0.6); margin-bottom: 0.4rem; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  text-align: center;
  padding: 1.25rem;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
}
.footer-bottom a { color: var(--gold); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero-visual { right: 2rem; }
  .hero-img-wrap { width: 300px; height: 360px; }
  .booking-wrap { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  nav { padding: 0.85rem 1.25rem; }
  .burger { display: flex; }
  .nav-links {
    position: fixed; top: 0; right: 0;
    width: 75%; max-width: 300px; height: 100vh;
    background: var(--navy);
    flex-direction: column; justify-content: center;
    align-items: flex-start; padding: 2rem;
    transform: translateX(100%);
    transition: transform 0.35s ease;
    z-index: 150;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links li { border-bottom: 1px solid rgba(255,255,255,0.1); width: 100%; }
  .nav-item { display: block; padding: 1rem 0; font-size: 1rem; color: white; }
  nav.scrolled .nav-item { color: white; }

  .hero { padding: 6.5rem 1.25rem 3rem; flex-direction: column; min-height: auto; }
  .hero-visual { position: static; transform: none; margin-top: 2.5rem; }
  .hero-img-wrap { width: 100%; height: 240px; border-radius: var(--radius); }
  .hero-float-badge { display: none; }
  .hero-content { max-width: 100%; }

  .contact-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .form-row { grid-template-columns: 1fr; }
  .container { padding: 0 1.25rem; }
  .menu-section, .why-section, .booking-section, .contact-section { padding: 4rem 0; }
}
@media (max-width: 480px) {
  .menu-cat-grid { grid-template-columns: 1fr; }
  .hero-title { font-size: 2.5rem; }
  .hero-ctas { flex-direction: column; }
  .btn-primary, .btn-outline { text-align: center; }
  .why-grid { grid-template-columns: 1fr; }
}