/* ==========================================================================
   SALAMI SLEEPS — style.css
   Design tokens → Reset → Layout components → Animations → Responsive
   ========================================================================== */

/* ── Design tokens ────────────────────────────────────────────────────────── */
:root {
  --bg:           #0b0907;
  --bg2:          #100d0b;
  --surface:      #1c1714;
  --border:       rgba(255,255,255,.07);
  --border-warm:  rgba(201,125,78,.2);
  --ink:          #ede8df;
  --ink-muted:    rgba(237,232,223,.65);
  --ink-faint:    rgba(237,232,223,.35);
  --accent:       #c97d4e;
  --accent-dim:   rgba(201,125,78,.12);
  --accent-glow:  rgba(201,125,78,.06);
  --font-serif:   'Cormorant Garamond', Georgia, serif;
  --font-mono:    'DM Mono', 'Courier New', monospace;
  --ease-out:     cubic-bezier(.22,.68,0,1.2);
  --ease-std:     cubic-bezier(.4,0,.2,1);
  --radius:       1px;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-mono);
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img   { display: block; max-width: 100%; }
button { cursor: pointer; border: none; background: none; font: inherit; color: inherit; }
a     { color: inherit; }

/* ── Film grain overlay ───────────────────────────────────────────────────── */
/* Fixed SVG turbulence noise at low opacity gives a "developed photo" feel    */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9998;
  opacity: 0.028;
  background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='250' height='250'><filter id='g'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/><feColorMatrix type='saturate' values='0'/></filter><rect width='250' height='250' filter='url(%23g)'/></svg>");
  background-repeat: repeat;
  background-size: 250px 250px;
}


/* ==========================================================================
   HERO
   ========================================================================== */
#hero {
  position: relative;
  width: 100vw;
  height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Blurred ambient background — fills letterbox gaps for portrait images */
#hero-bg {
  position: absolute;
  inset: -40px;
  background-size: cover;
  background-position: center;
  filter: blur(36px) brightness(.22) saturate(.4);
  transform: scale(1.08);
  z-index: 0;
  transition: background-image .6s ease;
}

/* Deep vignette — photo projection feel */
#hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, transparent 28%, rgba(11,9,7,.85) 100%),
    linear-gradient(to bottom, rgba(11,9,7,.3) 0%, transparent 20%, transparent 75%, rgba(11,9,7,.6) 100%);
  z-index: 1;
  pointer-events: none;
}

#hero-img-wrap {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 88px 24px 96px;
}

#hero-img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow:
    0 0 0 1px rgba(201,125,78,.08),
    0 24px 60px rgba(0,0,0,.7),
    0 4px 16px rgba(0,0,0,.4);
  opacity: 0;
  transition: opacity .7s ease;
  cursor: zoom-in;
}

#hero-img.loaded { opacity: 1; }

/* Fallback state — shown when NAS is unreachable */
#hero-fallback {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
  animation: fadeIn .6s ease forwards;
}

#hero-fallback[hidden] { display: none; }

#fallback-img {
  max-height: 55vh;
  width: auto;
  border-radius: var(--radius);
  box-shadow: 0 24px 60px rgba(0,0,0,.7);
  opacity: .85;
}

.fallback-msg {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-style: italic;
  color: var(--ink-muted);
}

.fallback-sub {
  font-size: .72rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--ink-faint);
}


/* ── Site header ──────────────────────────────────────────────────────────── */
#site-header {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 10;
  padding: 28px 36px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  background: linear-gradient(to bottom, rgba(11,9,7,.8) 0%, transparent 100%);
  animation: fadeDown .7s .1s var(--ease-out) both;
}

.site-wordmark {
  display: flex;
  flex-direction: column;
  line-height: 1;
  gap: 1px;
}

.wordmark-top {
  font-family: var(--font-mono);
  font-size: .78rem;
  font-weight: 400;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--accent);
}

.wordmark-bottom {
  font-family: var(--font-serif);
  font-size: 1.7rem;
  font-weight: 300;
  font-style: italic;
  letter-spacing: .02em;
  color: var(--ink);
  line-height: 1.1;
}

.header-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 3px;
}

.header-count {
  font-family: var(--font-mono);
  font-size: .72rem;
  letter-spacing: .1em;
  color: var(--ink-muted);
  min-height: 1em; /* prevent layout shift while loading */
}

.header-tagline {
  font-family: var(--font-serif);
  font-size: .88rem;
  font-style: italic;
  color: var(--ink-faint);
}


/* ── POTD badge ───────────────────────────────────────────────────────────── */
#potd-badge {
  position: absolute;
  bottom: 72px;
  left: 36px;
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 6px;
  animation: fadeUp .7s .5s var(--ease-out) both;
}

.badge-eyebrow {
  font-family: var(--font-mono);
  font-size: .68rem;
  font-weight: 400;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 7px;
}

.badge-eyebrow::before {
  content: '';
  display: inline-block;
  width: 18px;
  height: 1px;
  background: var(--accent);
  opacity: .6;
}

.badge-date {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-style: italic;
  font-weight: 300;
  color: var(--ink-muted);
  letter-spacing: .01em;
  min-height: 1.4em;
}


/* ── Scroll arrow ─────────────────────────────────────────────────────────── */
#scroll-arrow {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: var(--ink-faint);
  font-family: var(--font-mono);
  font-size: .68rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  transition: color .2s ease;
  animation: fadeUp .7s .75s var(--ease-out) both;
}

#scroll-arrow:hover { color: var(--ink-muted); }

.arrow-icon {
  width: 32px;
  height: 32px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: arrowBob 2.8s ease-in-out infinite;
  transition: border-color .2s ease, background .2s ease;
}

#scroll-arrow:hover .arrow-icon {
  border-color: var(--accent);
  background: var(--accent-glow);
}

.arrow-icon svg { width: 12px; height: 12px; }


/* ==========================================================================
   STATS STRIP
   ========================================================================== */
#stats-strip {
  background: var(--bg2);
  border-top: 2px solid var(--accent);
  border-bottom: 1px solid var(--border-warm);
  padding: 0 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 56px;
  position: sticky;
  top: 0;
  z-index: 100;
}

.stats-group {
  display: flex;
  align-items: center;
}

.stat-item {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding: 0 24px;
  border-right: 1px solid var(--border);
}

.stat-item:first-child { padding-left: 0; }
.stat-item:last-child  { border-right: none; }

.stat-value {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 300;
  font-style: italic;
  color: var(--ink);
  line-height: 1;
  min-width: 1.5ch;
  transition: opacity .3s ease;
}

.stat-label {
  font-family: var(--font-mono);
  font-size: .68rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

/* Tab switcher */
.tab-group {
  display: flex;
  gap: 0;
  border: 1px solid var(--border-warm);
  border-radius: 4px;
  overflow: hidden;
}

.tab-btn {
  font-family: var(--font-mono);
  font-size: .68rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--ink-muted);
  padding: 8px 18px;
  transition: background .2s, color .2s;
  border-right: 1px solid var(--border-warm);
}

.tab-btn:last-child { border-right: none; }

.tab-btn.active {
  background: var(--accent-dim);
  color: var(--accent);
}

.tab-btn:hover:not(.active) {
  background: rgba(255,255,255,.04);
  color: var(--ink);
}


/* ==========================================================================
   GALLERY SECTION — shared
   ========================================================================== */
#gallery-section {
  padding: 52px 36px 80px;
  max-width: 1440px;
  margin: 0 auto;
}

.tab-panel { display: block; }
.tab-panel[hidden] { display: none; }

.gallery-heading {
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.gallery-heading h2 {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: 2.2rem;
  letter-spacing: -.01em;
}

.gallery-heading h2 em {
  font-style: italic;
  color: var(--accent);
}

.gallery-heading-sub {
  font-family: var(--font-mono);
  font-size: .68rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-top: 6px;
}


/* ── Skeleton loading ─────────────────────────────────────────────────────── */
.skeleton-grid {
  columns: 3 260px;
  column-gap: 8px;
}

.skeleton-item {
  break-inside: avoid;
  margin-bottom: 8px;
  border-radius: var(--radius);
  background: linear-gradient(110deg, var(--surface) 30%, #252018 50%, var(--surface) 70%);
  background-size: 200% 100%;
  animation: shimmer 1.6s infinite;
}


/* ── Photo grid ───────────────────────────────────────────────────────────── */
#gallery-grid {
  columns: 3 260px;
  column-gap: 8px;
}

#gallery-grid[hidden] { display: none; }

.gallery-item {
  break-inside: avoid;
  margin-bottom: 8px;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
  background: var(--surface);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .5s ease, transform .5s ease, box-shadow .3s ease;
}

/* Shimmer while the image is loading or queued (not yet resolved either way) */
.gallery-item:not(.img-loaded):not(.img-error) {
  min-height: 200px;
  background: linear-gradient(110deg, var(--surface) 30%, #252018 50%, var(--surface) 70%);
  background-size: 200% 100%;
  animation: shimmer 1.6s infinite;
}

/* Loaded — stop shimmer, let the image fill naturally */
.gallery-item.img-loaded {
  background: none;
  animation: none;
  min-height: unset;
}

/* Failed — stop shimmer, show a muted broken-image icon */
.gallery-item.img-error {
  background: var(--surface);
  animation: none;
  min-height: 200px;
}

.gallery-item.img-error::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='36' height='36' viewBox='0 0 24 24' fill='none' stroke='rgba(237%2C232%2C223%2C0.2)' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='3' width='18' height='18' rx='2'/%3E%3Ccircle cx='8.5' cy='8.5' r='1.5'/%3E%3Cpolyline points='21 15 16 10 5 21'/%3E%3Cline x1='3' y1='21' x2='21' y2='3'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 36px;
  pointer-events: none;
}

/* Hide alt text visually on all gallery images — kept in DOM for screen readers */
.gallery-item img { color: transparent; }

.gallery-item.visible {
  opacity: 1;
  transform: translateY(0);
}

.gallery-item:hover {
  box-shadow: 0 16px 48px rgba(0,0,0,.6);
  z-index: 1;
}

.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform .6s var(--ease-std), filter .3s ease;
  filter: brightness(.88) saturate(.9);
}

.gallery-item:hover img {
  transform: scale(1.04);
  filter: brightness(1) saturate(1.05);
}

/* On-hover date overlay */
.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11,9,7,.88) 0%, rgba(11,9,7,.1) 45%, transparent 60%);
  opacity: 0;
  transition: opacity .3s ease;
  display: flex;
  align-items: flex-end;
  padding: 12px 11px;
  pointer-events: none;
}

.gallery-item:hover .gallery-item-overlay { opacity: 1; }

.overlay-date {
  font-family: var(--font-mono);
  font-size: .72rem;
  letter-spacing: .1em;
  color: var(--ink-muted);
}

/* POTD gold pip */
.potd-pip {
  position: absolute;
  top: 9px;
  left: 9px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 2px rgba(201,125,78,.3), 0 0 8px rgba(201,125,78,.4);
  pointer-events: none;
}


/* ── Video grid ───────────────────────────────────────────────────────────── */
#video-grid {
  columns: 3 260px;
  column-gap: 8px;
}

#video-grid[hidden] { display: none; }

.video-item {
  break-inside: avoid;
  margin-bottom: 8px;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
  background: var(--surface);
}

.video-item img {
  width: 100%;
  height: auto;
  display: block;
  filter: brightness(.8);
  transition: filter .3s ease;
}

.video-item:hover img { filter: brightness(.95); }

.video-play-icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.video-play-icon svg {
  width: 48px;
  height: 48px;
  fill: rgba(237,232,223,.85);
  filter: drop-shadow(0 2px 8px rgba(0,0,0,.6));
  transition: transform .2s var(--ease-out), opacity .2s ease;
}

.video-item:hover .video-play-icon svg {
  transform: scale(1.1);
  opacity: 1;
}

.video-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11,9,7,.88) 0%, transparent 50%);
  opacity: 0;
  transition: opacity .3s ease;
  display: flex;
  align-items: flex-end;
  padding: 12px 11px;
  pointer-events: none;
}

.video-item:hover .video-item-overlay { opacity: 1; }


/* ── Empty state ──────────────────────────────────────────────────────────── */
.empty-state {
  text-align: center;
  padding: 100px 24px;
}

.empty-state[hidden] { display: none; }

.empty-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
  opacity: .2;
}

.empty-state p {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--ink-muted);
  margin-bottom: 8px;
}

.empty-state small {
  font-family: var(--font-mono);
  font-size: .68rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-faint);
}


/* ==========================================================================
   MAP
   ========================================================================== */
#map-container {
  width: 100%;
  height: 560px;
  border-radius: 2px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: #0f1318;
  position: relative;
}

#map-loading {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: .72rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

/* Leaflet overrides — match our dark aesthetic */
.leaflet-container {
  background: #0f1318 !important;
  font-family: var(--font-mono) !important;
}

.leaflet-control-zoom a {
  background: var(--bg2) !important;
  color: var(--ink-muted) !important;
  border-color: var(--border) !important;
}

.leaflet-control-zoom a:hover {
  background: var(--surface) !important;
  color: var(--ink) !important;
}

.leaflet-control-attribution {
  background: rgba(11,9,7,.8) !important;
  color: var(--ink-faint) !important;
  font-size: .48rem !important;
  letter-spacing: .06em !important;
}

.leaflet-control-attribution a {
  color: var(--ink-muted) !important;
}

/* Custom Leaflet tooltip for nap circles */
.nap-tooltip {
  background: var(--bg2) !important;
  border: 1px solid var(--border-warm) !important;
  border-radius: 3px !important;
  box-shadow: 0 4px 16px rgba(0,0,0,.5) !important;
  padding: 8px 12px !important;
  font-family: var(--font-mono) !important;
  color: var(--ink) !important;
  white-space: nowrap;
}

.nap-tooltip::before { display: none !important; }

.nap-tooltip strong {
  font-family: var(--font-serif);
  font-size: .95rem;
  font-style: italic;
  font-weight: 300;
  display: block;
  margin-bottom: 3px;
  color: var(--ink);
}

.nap-tooltip span {
  font-size: .56rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-muted);
}


/* ==========================================================================
   VIDEO PLAYER
   ========================================================================== */
#video-player {
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(7,6,5,.97);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity .25s ease;
}

#video-player[hidden] {
  display: none;
  opacity: 0;
}

#video-player.open { opacity: 1; }

#vp-wrap {
  width: 100%;
  max-width: 1100px;
  padding: 56px 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#vp-video {
  width: 100%;
  max-height: 80vh;
  border-radius: var(--radius);
  box-shadow: 0 24px 80px rgba(0,0,0,.7);
  background: #000;
}

#vp-close {
  position: fixed;
  top: 18px;
  right: 22px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,.07);
  color: var(--ink-muted);
  font-size: 17px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s, color .2s;
  z-index: 10;
}

#vp-close:hover { background: rgba(255,255,255,.14); color: var(--ink); }

@media (max-width: 700px) {
  #vp-wrap { padding: 52px 12px; }
}


/* ==========================================================================
   LIGHTBOX
   ========================================================================== */
#lightbox {
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(7,6,5,.96);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity .25s ease;
}

#lightbox[hidden] {
  display: none;
  opacity: 0;
}

#lightbox.open {
  opacity: 1;
}

#lb-img-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100vw;
  height: 100vh;
  padding: 56px 96px;
}

#lb-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: var(--radius);
  transform: scale(.97);
  opacity: 0;
  transition: transform .3s var(--ease-out), opacity .25s ease;
}

#lightbox.open #lb-img {
  transform: scale(1);
  opacity: 1;
}

#lb-img.switching {
  opacity: 0;
  transform: scale(.97);
}

#lb-close {
  position: fixed;
  top: 18px;
  right: 22px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,.07);
  color: var(--ink-muted);
  font-size: 17px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s, color .2s;
  z-index: 10;
}

#lb-close:hover { background: rgba(255,255,255,.14); color: var(--ink); }

#lb-prev,
#lb-next {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
  color: var(--ink-muted);
  font-size: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s, color .2s;
  z-index: 10;
}

#lb-prev { left: 16px; }
#lb-next { right: 16px; }
#lb-prev:hover, #lb-next:hover { background: rgba(255,255,255,.13); color: var(--ink); }

#lb-counter {
  position: fixed;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-mono);
  font-size: .72rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--ink-muted);
  z-index: 10;
  white-space: nowrap;
}


/* ==========================================================================
   FOOTER
   ========================================================================== */
#site-footer {
  border-top: 1px solid var(--border);
  padding: 20px 36px;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.footer-left {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.footer-wordmark {
  font-family: var(--font-serif);
  font-size: .95rem;
  font-style: italic;
  color: var(--ink-muted);
}

.footer-sub {
  font-family: var(--font-mono);
  font-size: .68rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

.footer-count {
  font-family: var(--font-mono);
  font-size: .68rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink-faint);
}


/* ==========================================================================
   ANIMATIONS
   ========================================================================== */
@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-10px); }
  to   { opacity: 1; transform: translateY(0); }
}

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

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

@keyframes arrowBob {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(6px); }
}

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


/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 900px) {
  .stat-item { padding: 0 16px; }
}

@media (max-width: 700px) {
  #site-header { padding: 20px; }
  #potd-badge  { left: 20px; bottom: 60px; }

  #stats-strip {
    padding: 12px 20px;
    height: auto;
    flex-wrap: wrap;
    gap: 12px;
  }

  .stat-item { padding: 0 12px; }
  .stat-item:first-child { padding-left: 0; }

  #gallery-section { padding: 36px 16px 60px; }
  #site-footer { padding: 18px 20px; }

  #gallery-grid,
  #video-grid,
  .skeleton-grid { columns: 2 130px; column-gap: 6px; }

  .gallery-heading h2 { font-size: 1.6rem; }

  #lb-img-wrap { padding: 52px 16px; }
  #lb-prev, #lb-next { display: none; }

  #map-container { height: 380px; }
}
