/* ============================================
   El Caribe · Saucesalicious — Public Site
   Caribbean Dark Theme
   ============================================ */

/* ── DESIGN TOKENS ──────────────────────── */
:root {
  /* Base */
  --bg:          #060D12;
  --bg2:         #0A1820;
  --bg3:         #0F2230;
  --surface:     rgba(255,255,255,0.04);
  --border:      rgba(255,255,255,0.08);
  --border-hi:   rgba(255,255,255,0.15);
  --text:        #E4EFED;
  --text-dim:    rgba(228,239,237,0.65);
  --text-muted:  rgba(228,239,237,0.38);
  --green:       #34D399;
  --red:         #F87171;

  /* Branch color — El Caribe default */
  --primary:     #0EB5B9;
  --primary-l:   #2ECFCD;
  --primary-d:   #0A8A8D;
  --primary-dim: rgba(14,181,185,0.12);
  --accent:      #E8704A;

  /* Typography */
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans:  'Inter', 'Segoe UI', sans-serif;

  /* Layout */
  --max-w:      1140px;
  --nav-h:      68px;
  --section-pad:5rem 1.5rem;
  --radius:     12px;
}

/* Saucesalicious override */
[data-theme="saucesalicious"] {
  --primary:     #E8704A;
  --primary-l:   #F4845F;
  --primary-d:   #C05030;
  --primary-dim: rgba(232,112,74,0.12);
  --accent:      #0EB5B9;
}

/* ── RESET ──────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-sans); background: var(--bg); color: var(--text); line-height: 1.65; overflow-x: hidden; }
img { display: block; max-width: 100%; }
a { color: var(--primary-l); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--text); }
button { font-family: var(--font-sans); }

/* ── CONTAINER ──────────────────────────── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 1.5rem; }

/* ── NAVBAR ─────────────────────────────── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  height: var(--nav-h);
  display: flex; align-items: center;
  padding: 0 2rem; gap: 1rem;
  transition: background 0.35s, box-shadow 0.35s;
}
.navbar.scrolled {
  background: rgba(6,13,18,0.96);
  backdrop-filter: blur(14px) saturate(180%);
  box-shadow: 0 1px 0 var(--border);
}
.nav-brand {
  display: flex; align-items: center; gap: 0.55rem;
  font-family: var(--font-serif);
  font-size: 1.1rem; color: var(--text);
  text-decoration: none; flex-shrink: 0;
}
.nav-brand-icon { font-size: 1.1rem; }
.nav-back {
  font-size: 0.72rem; color: var(--text-muted);
  border: 1px solid var(--border); border-radius: 6px;
  padding: 0.2rem 0.55rem;
  transition: color 0.15s, border-color 0.15s;
}
.nav-back:hover { color: var(--primary-l); border-color: var(--primary); }

.nav-links {
  display: flex; align-items: center; gap: 0.15rem;
  margin: 0 auto; list-style: none;
}
.nav-links a {
  padding: 0.45rem 0.8rem; border-radius: 8px;
  font-size: 0.86rem; font-weight: 500;
  color: var(--text-dim);
  transition: color 0.15s, background 0.15s;
}
.nav-links a:hover { color: var(--text); background: var(--surface); }

.nav-actions { display: flex; align-items: center; gap: 0.5rem; flex-shrink: 0; }

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.hamburger span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: transform 0.2s, opacity 0.2s; }
.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); }

/* ── BUTTONS ────────────────────────────── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 0.45rem;
  background: var(--primary); color: #fff;
  border: none; border-radius: 10px;
  padding: 0.75rem 1.6rem;
  font-size: 0.92rem; font-weight: 600; cursor: pointer;
  transition: background 0.15s, transform 0.12s;
  text-decoration: none;
}
.btn-primary:hover { background: var(--primary-l); color: #fff; transform: translateY(-2px); }
.btn-primary:active { transform: translateY(0); }

.btn-primary-sm {
  display: inline-flex; align-items: center; gap: 0.35rem;
  background: var(--primary); color: #fff;
  border: none; border-radius: 8px;
  padding: 0.5rem 1.1rem;
  font-size: 0.84rem; font-weight: 600; cursor: pointer;
  transition: background 0.15s;
  text-decoration: none;
}
.btn-primary-sm:hover { background: var(--primary-l); color: #fff; }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 0.45rem;
  background: transparent; color: var(--text);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 10px; padding: 0.75rem 1.6rem;
  font-size: 0.92rem; font-weight: 500; cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
  text-decoration: none;
}
.btn-ghost:hover { border-color: var(--primary); background: var(--primary-dim); color: var(--text); }

.btn-outline {
  display: inline-flex; align-items: center; gap: 0.4rem;
  border: 1px solid var(--primary); color: var(--primary-l);
  background: transparent; border-radius: 8px;
  padding: 0.6rem 1.2rem; font-size: 0.85rem; font-weight: 600;
  cursor: pointer; transition: background 0.15s;
  text-decoration: none;
}
.btn-outline:hover { background: var(--primary-dim); }

/* ── SECTION BASE ───────────────────────── */
section { padding: var(--section-pad); }
.section-alt { background: var(--bg2); }

.section-header { text-align: center; margin-bottom: 3rem; }
.section-label {
  display: block; font-size: 0.72rem; font-weight: 600;
  color: var(--primary); letter-spacing: 0.15em;
  text-transform: uppercase; margin-bottom: 0.6rem;
}
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--text); line-height: 1.15;
  margin-bottom: 0.75rem;
}
.section-sub {
  font-size: 1rem; color: var(--text-dim);
  max-width: 520px; margin: 0 auto; line-height: 1.7;
}

/* ── HERO ───────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; position: relative; overflow: hidden;
  padding: calc(var(--nav-h) + 2rem) 1.5rem 4rem;
}
.hero-bg {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 70% 60% at 25% 10%, var(--primary-dim) 0%, transparent 70%),
    radial-gradient(ellipse 60% 50% at 75% 90%, rgba(232,112,74,0.07) 0%, transparent 65%),
    linear-gradient(170deg, #060D12 0%, #0A1820 50%, #060D12 100%);
}
/* subtle wave decoration */
.hero-bg::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 120px;
  background: linear-gradient(to top, var(--bg) 0%, transparent 100%);
}
.hero-content { position: relative; z-index: 1; max-width: 720px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--primary-dim);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50px; padding: 0.35rem 1rem;
  font-size: 0.78rem; color: var(--primary-l);
  font-weight: 500; letter-spacing: 0.04em;
  margin-bottom: 1.75rem;
  animation: fadeUp 0.6s ease 0.1s both;
}
.hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 7vw, 5rem);
  line-height: 1.08; color: var(--text);
  margin-bottom: 1.25rem;
  animation: fadeUp 0.6s ease 0.2s both;
}
.hero h1 em { color: var(--primary); font-style: normal; }
.hero p {
  font-size: 1.1rem; color: var(--text-dim);
  max-width: 500px; margin: 0 auto 2.25rem;
  line-height: 1.75;
  animation: fadeUp 0.6s ease 0.3s both;
}
.hero-actions {
  display: flex; gap: 0.85rem; justify-content: center; flex-wrap: wrap;
  animation: fadeUp 0.6s ease 0.4s both;
}

.hero-scroll {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.4rem;
  font-size: 0.7rem; color: var(--text-muted);
  letter-spacing: 0.1em; text-transform: uppercase;
  animation: bounce 2.2s ease-in-out infinite;
  text-decoration: none;
}
.hero-scroll::after { content: '↓'; font-size: 1rem; color: var(--primary); }
@keyframes bounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(7px); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── ABOUT HIGHLIGHTS ───────────────────── */
.highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 1.25rem;
}
.highlight-card {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.75rem 1.25rem;
  text-align: center;
  transition: border-color 0.2s, transform 0.2s;
}
.highlight-card:hover { border-color: var(--border-hi); transform: translateY(-3px); }
.highlight-icon { font-size: 2.2rem; margin-bottom: 0.85rem; }
.highlight-name { font-weight: 700; font-size: 0.95rem; margin-bottom: 0.3rem; }
.highlight-desc { font-size: 0.82rem; color: var(--text-dim); line-height: 1.55; }

/* ── MENU ───────────────────────────────── */
.menu-filters {
  display: flex; flex-wrap: wrap; gap: 0.5rem;
  justify-content: center; margin-bottom: 2.75rem;
}
.menu-filter {
  padding: 0.4rem 1rem; border-radius: 50px;
  border: 1px solid var(--border);
  background: transparent; color: var(--text-dim);
  font-size: 0.84rem; font-weight: 500; cursor: pointer;
  transition: all 0.15s; font-family: var(--font-sans);
}
.menu-filter:hover:not(.active) { border-color: var(--primary); color: var(--primary-l); }
.menu-filter.active { background: var(--primary); border-color: var(--primary); color: #fff; }

.menu-cat-section { margin-bottom: 3rem; }
.menu-cat-section.hidden { display: none; }

.menu-cat-title {
  font-family: var(--font-serif);
  font-size: 1.25rem; color: var(--text);
  margin-bottom: 1.25rem;
  display: flex; align-items: center; gap: 0.8rem;
}
.menu-cat-title::after {
  content: ''; flex: 1; height: 1px; background: var(--border);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 1rem;
}
.menu-card {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.2rem;
  display: flex; flex-direction: column;
  transition: border-color 0.2s, transform 0.15s;
}
.menu-card:hover { border-color: var(--border-hi); transform: translateY(-2px); }
.menu-card.unavailable { opacity: 0.42; pointer-events: none; }
.menu-card-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 0.5rem; margin-bottom: 0.4rem; }
.menu-card-name { font-weight: 600; font-size: 0.93rem; line-height: 1.35; }
.menu-card-badge {
  font-size: 0.62rem; background: var(--primary-dim);
  color: var(--primary-l); border-radius: 4px;
  padding: 0.1rem 0.4rem; white-space: nowrap; flex-shrink: 0;
}
.menu-card-desc {
  font-size: 0.8rem; color: var(--text-dim);
  line-height: 1.55; flex: 1; margin-bottom: 1rem;
}
.menu-card-price { font-size: 1.05rem; font-weight: 700; color: var(--primary-l); }

/* ── GALLERY ────────────────────────────── */
.gallery-grid {
  columns: 4 200px; gap: 0.8rem;
}
.gallery-item {
  break-inside: avoid; margin-bottom: 0.8rem;
  border-radius: 10px; overflow: hidden;
  cursor: zoom-in; position: relative;
  border: 1px solid var(--border);
}
.gallery-item img {
  width: 100%; display: block;
  transition: transform 0.4s ease, filter 0.25s;
}
.gallery-item:hover img { transform: scale(1.05); filter: brightness(0.7); }
.gallery-overlay {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.75rem; opacity: 0;
  transition: opacity 0.25s;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }

/* Lightbox */
.lightbox {
  display: none; position: fixed; inset: 0; z-index: 900;
  background: rgba(0,0,0,0.93);
  align-items: center; justify-content: center;
  padding: 1rem;
}
.lightbox.open { display: flex; animation: fadeIn 0.2s ease; }
.lightbox img { max-width: 92vw; max-height: 90vh; border-radius: 8px; }
.lightbox-close {
  position: absolute; top: 1.25rem; right: 1.25rem;
  background: rgba(255,255,255,0.1); border: none;
  color: #fff; font-size: 1.3rem; width: 40px; height: 40px;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: background 0.15s;
}
.lightbox-close:hover { background: rgba(255,255,255,0.22); }
.lightbox-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.1); border: none;
  color: #fff; font-size: 1.4rem; width: 46px; height: 46px;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: background 0.15s;
}
.lightbox-nav:hover { background: rgba(255,255,255,0.2); }
.lightbox-prev { left: 1.25rem; }
.lightbox-next { right: 1.25rem; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

/* ── FORMS SECTION ──────────────────────── */
.forms-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2rem;
}
.form-card {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: 16px; padding: 2rem;
}
.form-card-icon { font-size: 1.75rem; margin-bottom: 0.75rem; }
.form-card-title {
  font-family: var(--font-serif); font-size: 1.4rem; margin-bottom: 0.3rem;
}
.form-card-sub { font-size: 0.85rem; color: var(--text-dim); margin-bottom: 1.5rem; line-height: 1.5; }

.field { margin-bottom: 0.9rem; }
.field label { display: block; font-size: 0.79rem; font-weight: 500; color: var(--text-dim); margin-bottom: 0.38rem; }
.field input,
.field select,
.field textarea {
  width: 100%; background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 8px; padding: 0.62rem 0.9rem;
  color: var(--text); font-size: 0.875rem;
  font-family: var(--font-sans);
  outline: none; transition: border-color 0.15s, box-shadow 0.15s;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-dim);
}
.field textarea { resize: vertical; min-height: 95px; line-height: 1.5; }
.field select option { background: var(--bg2); }
.field-row { display: flex; gap: 0.65rem; }
.field-row .field { flex: 1; }

.form-result {
  padding: 0.7rem 0.9rem; border-radius: 8px;
  font-size: 0.85rem; margin-top: 0.75rem; display: none;
}
.form-result.success { background: rgba(52,211,153,0.1); border: 1px solid rgba(52,211,153,0.2); color: var(--green); display: block; }
.form-result.error   { background: rgba(248,113,113,0.1); border: 1px solid rgba(248,113,113,0.2); color: var(--red); display: block; }

/* ── LOCATION ───────────────────────────── */
.location-grid {
  display: grid; grid-template-columns: 1fr 1.5fr; gap: 2.5rem; align-items: start;
}
.location-name { font-family: var(--font-serif); font-size: 1.4rem; margin-bottom: 1.25rem; }
.loc-item { display: flex; align-items: flex-start; gap: 0.75rem; margin-bottom: 1.1rem; }
.loc-icon { font-size: 1.1rem; flex-shrink: 0; margin-top: 0.1rem; }
.loc-label { font-size: 0.7rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 0.15rem; }
.loc-val { font-size: 0.9rem; color: var(--text-dim); line-height: 1.5; }
.loc-val a { color: var(--primary-l); }

.hours-table { width: 100%; margin-top: 0.5rem; }
.hours-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 0.38rem 0; border-bottom: 1px solid var(--border);
  font-size: 0.84rem;
}
.hours-row:last-child { border-bottom: none; }
.hours-day { color: var(--text-dim); }
.hours-time { color: var(--primary-l); font-weight: 500; }
.hours-closed { color: var(--text-muted); font-style: italic; }

.loc-actions { display: flex; gap: 0.6rem; flex-wrap: wrap; margin-top: 1.5rem; }

.map-wrap {
  border-radius: 14px; overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg2);
}
.map-wrap iframe { display: block; width: 100%; height: 400px; }
.map-placeholder {
  height: 380px; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 1rem;
  color: var(--text-muted); font-size: 0.85rem; text-align: center; padding: 2rem;
}
.map-placeholder-icon { font-size: 3rem; }

/* ── FOOTER ─────────────────────────────── */
footer {
  background: var(--bg2); border-top: 1px solid var(--border);
  padding: 3.5rem 1.5rem 1.75rem;
}
.footer-inner { max-width: var(--max-w); margin: 0 auto; }
.footer-top {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 2.5rem;
  margin-bottom: 2.5rem;
}
.footer-brand-name {
  font-family: var(--font-serif); font-size: 1.4rem; margin-bottom: 0.5rem;
}
.footer-brand-desc { font-size: 0.83rem; color: var(--text-dim); line-height: 1.65; max-width: 280px; }
.footer-col h4 {
  font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--text-muted); font-weight: 600; margin-bottom: 1rem;
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 0.45rem; }
.footer-links a { font-size: 0.85rem; color: var(--text-dim); }
.footer-links a:hover { color: var(--primary-l); }
.footer-socials { display: flex; gap: 0.55rem; margin-top: 1.25rem; }
.social-btn {
  width: 36px; height: 36px; border-radius: 8px;
  background: var(--surface); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.95rem; text-decoration: none;
  transition: background 0.15s, border-color 0.15s;
}
.social-btn:hover { background: var(--primary-dim); border-color: var(--primary); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.78rem; color: var(--text-muted);
  flex-wrap: wrap; gap: 0.5rem;
}
.footer-bottom a { color: var(--text-muted); }
.footer-bottom a:hover { color: var(--primary-l); }

/* ── WHATSAPP FLOAT ─────────────────────── */
.wa-float {
  position: fixed; bottom: 1.75rem; right: 1.75rem; z-index: 400;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 18px rgba(37,211,102,0.38);
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
  animation: waPop 0.4s ease 1.5s both;
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 6px 26px rgba(37,211,102,0.5); }
.wa-float svg { width: 29px; height: 29px; fill: #fff; }
@keyframes waPop { from { opacity: 0; transform: scale(0.4); } to { opacity: 1; transform: scale(1); } }

/* ── HUB PAGE ───────────────────────────── */
.hub-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  padding: 1rem 2rem;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.3s;
}
.hub-nav.scrolled { background: rgba(6,13,18,0.96); backdrop-filter: blur(12px); }

.hub-hero {
  min-height: 100vh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; padding: 6rem 1.5rem 4rem;
  background:
    radial-gradient(ellipse 60% 55% at 20% 50%, rgba(14,181,185,0.13) 0%, transparent 65%),
    radial-gradient(ellipse 55% 50% at 80% 50%, rgba(232,112,74,0.1) 0%, transparent 60%),
    var(--bg);
  position: relative; overflow: hidden;
}
.hub-hero-content { position: relative; z-index: 1; max-width: 680px; }
.hub-eyebrow {
  font-size: 0.73rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--text-muted); margin-bottom: 1.25rem; display: block;
}
.hub-title {
  font-family: var(--font-serif);
  font-size: clamp(2.6rem, 6.5vw, 5rem);
  line-height: 1.08; color: var(--text); margin-bottom: 1.25rem;
}
.hub-title .teal  { color: #0EB5B9; }
.hub-title .coral { color: #E8704A; }
.hub-sub { font-size: 1.05rem; color: var(--text-dim); max-width: 440px; margin: 0 auto 3rem; line-height: 1.7; }

.hub-cards {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem; max-width: 760px; width: 100%;
}
.hub-card {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: 16px; padding: 2rem 1.75rem;
  text-align: left; text-decoration: none; color: var(--text);
  transition: border-color 0.22s, transform 0.22s, box-shadow 0.22s;
  display: block;
}
.hub-card.teal  { --c: #0EB5B9; }
.hub-card.coral { --c: #E8704A; }
.hub-card:hover { border-color: var(--c); transform: translateY(-5px); box-shadow: 0 16px 48px rgba(0,0,0,0.35); color: var(--text); }
.hub-card-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.hub-card-name { font-family: var(--font-serif); font-size: 1.35rem; margin-bottom: 0.3rem; }
.hub-card-location { font-size: 0.78rem; color: var(--text-muted); margin-bottom: 0.9rem; display: flex; align-items: center; gap: 0.3rem; }
.hub-card-desc { font-size: 0.85rem; color: var(--text-dim); line-height: 1.6; margin-bottom: 1.4rem; }
.hub-card-cta { font-size: 0.85rem; font-weight: 700; color: var(--c); display: flex; align-items: center; gap: 0.3rem; }

/* ── RESPONSIVE ─────────────────────────── */
@media (max-width: 960px) {
  .location-grid { grid-template-columns: 1fr; }
  .forms-grid    { grid-template-columns: 1fr; }
  .gallery-grid  { columns: 3 160px; }
  .footer-top    { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  :root { --section-pad: 3.5rem 1.25rem; --nav-h: 62px; }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column; align-items: flex-start;
    position: absolute; top: var(--nav-h); left: 0; right: 0;
    background: rgba(6,13,18,0.97); backdrop-filter: blur(14px);
    padding: 1rem 1.5rem 1.5rem;
    border-bottom: 1px solid var(--border);
    gap: 0.1rem;
  }
  .nav-links.open a { padding: 0.6rem 0.5rem; font-size: 1rem; }
  .hamburger { display: flex; }
  .hub-cards  { max-width: 400px; grid-template-columns: 1fr; }
  .gallery-grid { columns: 2 140px; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 480px) {
  .hero h1 { font-size: 2.4rem; }
  .hub-title { font-size: 2.3rem; }
  .gallery-grid { columns: 2 110px; }
  .field-row { flex-direction: column; gap: 0; }
}
