/* ================================
   RESET & ROOT
================================ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --black:   #0a0a0a;
  --dark:    #111111;
  --mid:     #1e1e1e;
  --border:  #2a2a2a;
  --muted:   #888888;
  --light:   #e8e2d9;
  --white:   #f5f0e8;
  --gold:    #c9a96e;
  --gold2:   #e8c99a;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'Inter', system-ui, sans-serif;
  --ease:    cubic-bezier(.4,0,.2,1);
  --nav-h:   72px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-sans);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

::selection { background: var(--gold); color: var(--black); }

::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 2px; }

/* ================================
   PROGRESS BAR
================================ */
#progressBar {
  position: fixed;
  top: 0; left: 0;
  width: 0%;
  height: 2px;
  background: var(--gold);
  z-index: 9999;
  transition: width .3s var(--ease), opacity .4s;
  opacity: 0;
  box-shadow: 0 0 8px var(--gold);
}

#progressBar.active { opacity: 1; }

/* ================================
   NAVBAR
================================ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5vw;
  transition: background .4s var(--ease), backdrop-filter .4s var(--ease);
}

#navbar.scrolled {
  background: rgba(10,10,10,.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: .15em;
  color: var(--gold);
  cursor: default;
  user-select: none;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  font-size: .8rem;
  font-weight: 400;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--light);
  text-decoration: none;
  position: relative;
  transition: color .3s;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width .3s var(--ease);
}

.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
  z-index: 1100;
}
.hamburger span {
  width: 24px; height: 1.5px;
  background: var(--white);
  border-radius: 1px;
  transition: transform .35s var(--ease), opacity .25s, background .3s;
  display: block;
}

/* Animate to ✕ when open */
.hamburger.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ── Mobile overlay menu ── */
.mobile-menu {
  display: none; /* JS controls visibility */
  position: fixed;
  inset: 0;
  top: 0; left: 0; right: 0; bottom: 0; /* fallback for older browsers */
  width: 100%; height: 100%;
  background: rgba(10,10,10,.98);
  z-index: 1050; /* below navbar (1100) so hamburger stays clickable */
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  opacity: 0;
  transition: opacity .35s var(--ease);
}

.mobile-menu.is-open {
  opacity: 1;
}

.mobile-menu-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
  padding: 0;
}

.mobile-menu-links a {
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--light);
  text-decoration: none;
  transition: color .25s;
}

.mobile-menu-links a:hover { color: var(--gold); }

/* ================================
   HERO
================================ */
#hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-slides, .hero-slide { position: absolute; inset: 0; }

.hero-slide {
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.06);
  transition: opacity 1.2s var(--ease), transform 8s linear;
}

.hero-slide.active { opacity: 1; transform: scale(1); }

.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,.3) 0%, rgba(0,0,0,.5) 50%, rgba(0,0,0,.85) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 2rem;
  animation: heroFadeIn 1.5s 0.4s both;
}

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

.hero-tagline {
  display: inline-block;
  font-size: .75rem;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
  text-decoration: none;
  transition: opacity .25s;
}

.hero-tagline:hover { opacity: .75; }

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(3.5rem, 10vw, 8rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 2.5rem;
}

.hero-title em { font-style: italic; color: var(--gold); }

.hero-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-cta {
  display: inline-block;
  padding: .85rem 2.4rem;
  border: 1px solid var(--gold);
  background: var(--gold);
  color: var(--black);
  text-decoration: none;
  font-size: .72rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-weight: 500;
  transition: background .3s, color .3s, border-color .3s;
}

.hero-cta:hover { background: var(--gold2); border-color: var(--gold2); }

.hero-cta--ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.5);
}

.hero-cta--ghost:hover {
  background: rgba(255,255,255,.1);
  border-color: var(--white);
  color: var(--white);
}

.hero-scroll-hint {
  position: absolute;
  bottom: 2.5rem; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .6rem;
  opacity: .6;
}

.hero-scroll-hint span { font-size: .65rem; letter-spacing: .25em; text-transform: uppercase; }

.scroll-line {
  width: 1px; height: 50px;
  background: linear-gradient(to bottom, var(--white), transparent);
  animation: scrollPulse 2s infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: .4; transform: scaleY(1); }
  50%       { opacity: 1;  transform: scaleY(1.3); }
}

.hero-slide-dots {
  position: absolute;
  bottom: 2.5rem; right: 5vw;
  z-index: 2;
  display: flex;
  gap: .6rem;
}

.slide-dot {
  width: 20px; height: 2px;
  background: rgba(255,255,255,.3);
  border: none; cursor: pointer;
  transition: background .3s, width .3s;
  padding: 0;
}

.slide-dot.active { background: var(--gold); width: 40px; }

/* ================================
   SHARED
================================ */
.section-header { text-align: center; margin-bottom: 3.5rem; }

.section-sub {
  font-size: .7rem;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .8rem;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--white);
}

.section-title em { font-style: italic; color: var(--gold); }

/* ================================
   GALLERY
================================ */
#gallery {
  padding: 7rem 5vw;
  background: var(--black);
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .6rem;
  margin-bottom: 3.5rem;
}

.filter-btn {
  padding: .45rem 1.4rem;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--muted);
  font-size: .72rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 2px;
  transition: all .25s;
}

.filter-btn:hover,
.filter-btn.active {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201,169,110,.08);
}

.masonry-grid { columns: 3; column-gap: 12px; }

.masonry-item {
  break-inside: avoid;
  margin-bottom: 12px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  border-radius: 2px;
  animation: itemIn .5s var(--ease) both;
}

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

.masonry-item img {
  width: 100%; display: block;
  transition: transform .6s var(--ease), filter .4s;
  filter: brightness(.95) saturate(.9);
}

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

.masonry-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.7) 0%, transparent 60%);
  opacity: 0;
  transition: opacity .4s;
  display: flex;
  align-items: flex-end;
  padding: 1.2rem;
}

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

.masonry-info h3 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--white);
}

.masonry-info span {
  font-size: .65rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
}

.gallery-loading {
  grid-column: 1 / -1;
  text-align: center;
  padding: 4rem;
  color: var(--muted);
  font-family: var(--font-serif);
  font-style: italic;
}

.load-more-wrap { text-align: center; margin-top: 3rem; }

.load-more {
  padding: .85rem 3rem;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--light);
  font-size: .75rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all .3s;
}

.load-more:hover { border-color: var(--gold); color: var(--gold); }
.load-more:disabled { opacity: .3; cursor: default; }

/* ================================
   BLOG / TRAVEL JOURNAL
================================ */
#blog {
  padding: 7rem 5vw;
  background: var(--dark);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.blog-card {
  background: var(--mid);
  border: 1px solid var(--border);
  border-radius: 3px;
  overflow: hidden;
  transition: transform .35s var(--ease), box-shadow .35s;
  cursor: default;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,.5);
}

.blog-card-img {
  position: relative;
  overflow: hidden;
  height: 260px;
}

.blog-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s var(--ease);
  filter: brightness(.9);
}

.blog-card:hover .blog-card-img img { transform: scale(1.05); }

.blog-card-location {
  position: absolute;
  top: 1rem; left: 1rem;
  background: rgba(0,0,0,.65);
  backdrop-filter: blur(4px);
  color: var(--gold);
  font-size: .65rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  padding: .3rem .8rem;
  border-radius: 2px;
}

.blog-card-body { padding: 1.8rem; }

.blog-card-date {
  font-size: .68rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: .6rem;
}

.blog-card-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.25;
  color: var(--white);
  margin-bottom: .9rem;
}

.blog-card-excerpt {
  font-size: .88rem;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 1.4rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-read-btn {
  background: transparent;
  border: none;
  color: var(--gold);
  font-size: .75rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  cursor: pointer;
  padding: 0;
  position: relative;
  transition: color .3s;
}

.blog-read-btn::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width .3s;
}

.blog-read-btn:hover::after { width: 100%; }

/* ================================
   BLOG MODAL
================================ */
.blog-modal {
  position: fixed;
  inset: 0;
  z-index: 1500;
  background: rgba(0,0,0,.85);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 2rem 1rem;
  overflow-y: auto;
  opacity: 0;
  pointer-events: none;
  transition: opacity .4s;
}

.blog-modal.open {
  opacity: 1;
  pointer-events: all;
}

.blog-modal-inner {
  background: var(--dark);
  border: 1px solid var(--border);
  border-radius: 3px;
  width: 100%;
  max-width: 780px;
  position: relative;
  overflow: hidden;
  margin: auto;
}

.bm-close {
  position: absolute;
  top: 1.2rem; right: 1.2rem;
  z-index: 10;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(0,0,0,.6);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,.2);
  color: var(--white);
  font-size: 1rem;
  cursor: pointer;
  transition: all .3s;
}

.bm-close:hover { border-color: var(--gold); color: var(--gold); }

.bm-hero {
  width: 100%;
  height: 320px;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: flex-end;
}

.bm-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.85) 0%, rgba(0,0,0,.2) 60%);
}

.bm-hero-text {
  position: relative;
  z-index: 1;
  padding: 2rem 2.5rem;
}

.bm-hero-text h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1.2;
}

.bm-body {
  padding: 2.5rem;
  color: var(--muted);
  font-size: .95rem;
  line-height: 1.9;
}

.bm-body p { margin-bottom: 1.4rem; }

.bm-body blockquote {
  border-left: 2px solid var(--gold);
  padding-left: 1.5rem;
  margin: 2rem 0;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--light);
  line-height: 1.7;
}

.bm-photos-section {
  padding: 0 2.5rem 2.5rem;
}

.bm-photos-label {
  font-size: .68rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.bm-photo-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.bm-photo {
  overflow: hidden;
  border-radius: 2px;
  cursor: zoom-in;
  position: relative;
}

.bm-photo img {
  width: 100%; height: 140px;
  object-fit: cover;
  display: block;
  transition: transform .5s var(--ease);
  filter: brightness(.9);
}

.bm-photo:hover img { transform: scale(1.06); filter: brightness(1); }

.bm-photo span {
  display: block;
  font-size: .65rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  padding: .4rem 0;
  text-align: center;
}

/* ================================
   ABOUT
================================ */
#about {
  padding: 7rem 5vw;
  background: var(--black);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.about-image-side { position: relative; }

.about-image-side img {
  width: 100%;
  display: block;
  border-radius: 2px;
  filter: grayscale(20%);
  transition: filter .5s;
}

.about-image-side:hover img { filter: grayscale(0%); }

.about-image-accent {
  position: absolute;
  bottom: -20px; right: -20px;
  width: 60%; height: 60%;
  border: 1px solid var(--gold);
  border-radius: 2px;
  pointer-events: none;
  z-index: -1;
}

.about-text-side p {
  color: var(--muted);
  margin-bottom: 1.2rem;
  font-size: .95rem;
}

.about-gear { margin-top: 2rem; }

.gear-title {
  font-size: .68rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold) !important;
  margin-bottom: .8rem !important;
}

.gear-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .5rem;
}

.gear-list li {
  font-size: .88rem;
  color: var(--light);
  padding-left: 1rem;
  position: relative;
}

.gear-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold);
}

/* ================================
   FOOTER
================================ */
#footer {
  background: var(--dark);
  border-top: 1px solid var(--border);
  padding: 3rem 5vw;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-logo {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: .15em;
  color: var(--gold);
}

.footer-social { display: flex; gap: 1.5rem; }

.footer-social a {
  display: flex;
  align-items: center;
  color: var(--muted);
  text-decoration: none;
  transition: color .3s;
}

.footer-social a:hover { color: var(--gold); }

.footer-social svg { display: block; }

.footer-copy { font-size: .72rem; color: var(--muted); letter-spacing: .04em; }

/* ================================
   LIGHTBOX
================================ */
.lightbox {
  position: fixed; inset: 0;
  z-index: 2000;
  background: rgba(0,0,0,.96);
  display: flex;
  flex-direction: column;
  opacity: 0;
  pointer-events: none;
  transition: opacity .4s;
}

.lightbox.open { opacity: 1; pointer-events: all; }

/* top bar: close + counter */
.lb-topbar {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .75rem 1.25rem;
  z-index: 10;
}

.lb-counter {
  font-size: .72rem;
  letter-spacing: .2em;
  color: var(--muted);
}

.lb-close {
  position: static;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid rgba(255,255,255,.15);
  color: var(--white);
  cursor: pointer;
  font-size: 1rem;
  transition: all .3s;
  display: flex; align-items: center; justify-content: center;
}
.lb-close:hover { border-color: var(--gold); color: var(--gold); }

/* middle: prev + photo + next */
.lb-main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 0 .75rem;
  min-height: 0; /* allow flex child to shrink */
  overflow: hidden;
}

.lb-img-wrap {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 0;
  min-width: 0;
  overflow: hidden;
}

#lbImg {
  max-width: 100%;
  max-height: calc(100vh - 120px);
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 2px;
  box-shadow: 0 20px 60px rgba(0,0,0,.8);
  transition: opacity .3s;
  display: block;
}

.lb-prev, .lb-next {
  flex-shrink: 0;
  position: static;
  transform: none;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.15);
  color: var(--white);
  cursor: pointer;
  font-size: 1rem;
  transition: all .3s;
  display: flex; align-items: center; justify-content: center;
}
.lb-prev:hover, .lb-next:hover { border-color: var(--gold); color: var(--gold); background: rgba(201,169,110,.1); }

/* bottom: caption */
.lb-caption {
  flex-shrink: 0;
  padding: .75rem 1.25rem;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: .95rem;
  color: var(--light);
  text-align: center;
  opacity: .7;
  min-height: 2.5rem;
}

/* ================================
   BLOG MODAL LOADING
================================ */
.bm-loading {
  padding: 5rem;
  text-align: center;
  color: var(--muted);
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.1rem;
}

/* ================================
   REVEAL
================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}

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

/* ================================
   RESPONSIVE — tablet (≤1024px)
================================ */
@media (max-width: 1024px) {
  #gallery, #blog { padding: 5rem 5vw; }

  #about {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 5rem 5vw;
  }
  .about-image-side { max-width: 420px; margin: 0 auto; }
  /* keep accent box on screen */
  .about-image-accent { bottom: -12px; right: -12px; }

  .masonry-grid { columns: 2; }
  .blog-grid { grid-template-columns: 1fr; }
  .blog-card-img { height: 220px; }
}

/* ================================
   RESPONSIVE — mobile (≤768px)
================================ */
@media (max-width: 768px) {

  /* ── Nav ── */
  .nav-logo { font-size: 1.1rem; letter-spacing: .08em; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .mobile-menu { display: flex; } /* flex so opacity transition works; hidden via opacity+pointer-events */
  .mobile-menu:not(.is-open) { pointer-events: none; }

  /* ── Hero ── */
  #hero { min-height: 100svh; }
  .hero-title { font-size: clamp(2.4rem, 11vw, 4rem); }
  .hero-btns { flex-direction: column; align-items: center; gap: .8rem; }
  .hero-cta { width: 200px; text-align: center; }
  /* hide scroll hint on mobile — saves space */
  .hero-scroll-hint { display: none; }

  /* ── Sections ── */
  #gallery, #blog { padding: 4rem 4vw; }
  .section-header { margin-bottom: 2.5rem; }

  /* ── Gallery ── */
  .masonry-grid { columns: 1; }
  .filter-bar { gap: .4rem; }
  .filter-btn { padding: .4rem 1rem; font-size: .68rem; }

  /* ── About ── */
  #about { padding: 4rem 6vw; gap: 2.5rem; }
  .about-image-side { max-width: 100%; }
  /* remove accent box — it clips off small screens */
  .about-image-accent { display: none; }

  /* ── Blog modal ── */
  .blog-modal { padding: 0; align-items: flex-end; }
  .blog-modal-inner {
    border-radius: 12px 12px 0 0;
    max-height: 92svh;
    overflow-y: auto;
    margin: 0;
  }
  .bm-hero { height: 220px; }
  .bm-hero-text { padding: 1.2rem 1.4rem; }
  .bm-body { padding: 1.4rem; }
  .bm-photos-section { padding: 0 1.4rem 1.4rem; }
  .bm-photo-strip { grid-template-columns: repeat(2, 1fr); }
  .bm-photo img { height: 110px; }

  /* ── Lightbox ── */
  .lb-prev, .lb-next { width: 36px; height: 36px; font-size: .85rem; }
  .lb-main { gap: .4rem; padding: 0 .4rem; }

  /* ── Footer ── */
  .footer-inner { flex-direction: column; align-items: center; text-align: center; gap: 1rem; }
}

/* ================================
   RESPONSIVE — small mobile (≤480px)
================================ */
@media (max-width: 480px) {
  #navbar { padding: 0 4vw; }
  .nav-logo { font-size: 1rem; }

  .hero-title { font-size: clamp(2rem, 10vw, 3rem); }
  .hero-tagline { font-size: .65rem; letter-spacing: .2em; }

  .section-title { font-size: clamp(1.7rem, 8vw, 2.4rem); }

  /* single column for blog photo strip */
  .bm-photo-strip { grid-template-columns: 1fr; }

  .load-more { padding: .8rem 2rem; font-size: .7rem; }
}
