/* -----------------------------------------------------------
   Philippe Boutié — stylesheet
   Minimalist editorial, dark palette, tuned for large imagery.
   ----------------------------------------------------------- */

:root {
  /* Light editorial palette — warm paper-white, charcoal ink, bronze accent. */
  --bg:        #faf8f3;     /* warm off-white */
  --bg-soft:   #f1ede4;     /* soft cream, for panels / hover states */
  --ink:       #141414;     /* near-black body copy */
  --ink-dim:   #5a5a56;
  --ink-faint: #8a8680;
  --line:      #e4dfd3;     /* hairline dividers */
  --accent:    #8a6d3b;     /* muted bronze */
  --serif:     'Cormorant Garamond', 'Times New Roman', Georgia, serif;
  --sans:      'Inter', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;
  --ease:      cubic-bezier(.2, .7, .2, 1);
  --nav-h:     72px;
  --page-pad:  clamp(20px, 5vw, 80px);
}

*,*::before,*::after { box-sizing: border-box; }

html, body { margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: opacity .2s var(--ease); }
a:hover { opacity: .7; }

::selection { background: var(--accent); color: #fff; }

/* -----------------------------------------------------------
   Header / nav
   ----------------------------------------------------------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  height: var(--nav-h);
  display: flex; align-items: center;
  padding: 0 var(--page-pad);
  background: rgba(250,248,243,.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: background .3s var(--ease), border-color .3s var(--ease);
}
.site-header[data-transparent="true"]:not(.is-scrolled) {
  background: transparent;
  backdrop-filter: none;
}
.site-header.is-scrolled { border-bottom-color: var(--line); }

.nav-inner {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
}

.brand { display: flex; align-items: center; gap: 14px; letter-spacing: 0.12em; text-transform: uppercase; font-size: 12px; }
.brand-mark {
  display: inline-grid; place-items: center;
  width: 34px; height: 34px;
  border: 1px solid var(--ink);
  font-family: var(--serif);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: .02em;
}
.brand-name { font-weight: 400; letter-spacing: .22em; }

.nav-links {
  display: flex; gap: 36px;
  font-size: 13px; letter-spacing: .14em; text-transform: uppercase;
}
.nav-links a { position: relative; padding: 6px 0; color: var(--ink); }
.nav-links a::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 0;
  height: 1px; background: currentColor;
  transform: scaleX(0); transform-origin: left;
  transition: transform .4s var(--ease);
}
.nav-links a:hover { opacity: 1; }
.nav-links a:hover::after, .nav-links a.is-active::after { transform: scaleX(1); }

.nav-toggle {
  display: none;
  background: none; border: 0; padding: 10px;
  cursor: pointer; color: var(--ink);
}
.nav-toggle span {
  display: block; width: 22px; height: 1px; background: currentColor;
  margin: 5px 0; transition: transform .3s var(--ease), opacity .3s var(--ease);
}

/* -----------------------------------------------------------
   Hero
   ----------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex; align-items: center; justify-content: center;
  padding: calc(var(--nav-h) + 20px) var(--page-pad) 80px;
  overflow: hidden;
  text-align: center;
}
.hero-media {
  position: absolute; inset: 0;
  animation: kenburns 24s var(--ease) infinite alternate;
}
.hero-media img {
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(.95) brightness(1.02);
}

/* ---------- Slideshow (only when ≥ 2 hero_slide photos) ---------- */
.hero-slideshow { position: absolute; inset: 0; }
.hero-slideshow .hero-slide {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  opacity: 0;
  transition: opacity var(--fade, 1500ms) ease;
  animation: kenburns 24s var(--ease) infinite alternate;
  filter: saturate(.95) brightness(1.02);
  will-change: opacity, transform;
}
.hero-slideshow .hero-slide.is-active { opacity: 1; }
.hero-slideshow .hero-overlay { z-index: 1; pointer-events: none; }

/* The parent .hero-media had the kenburns animation — on slideshow we put it on the
   individual slides instead, so the scaling restarts on each crossfade. */
.hero-slideshow { animation: none !important; }

@media (prefers-reduced-motion: reduce) {
  .hero-slideshow .hero-slide { animation: none; transition: none; }
}
.hero-placeholder {
  position: absolute; inset: 0;
  background:
    radial-gradient(1200px 600px at 30% 20%, #efe8d7, transparent 60%),
    radial-gradient(900px  700px at 80% 80%, #e6ddc8, transparent 60%),
    linear-gradient(180deg, #faf8f3, #ece4d1);
}
/* Localised halo: a wide soft-edged light spot centred on the hero text.
   Preserves the photo's integrity at the edges while keeping the dark title
   readable in the middle. A faint bottom gradient eases into the next section. */
.hero-overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at center,
      rgba(250, 248, 243, 0.65) 0%,
      rgba(250, 248, 243, 0.45) 30%,
      rgba(250, 248, 243, 0.15) 60%,
      transparent 85%),
    linear-gradient(180deg, transparent 75%, rgba(250, 248, 243, 0.3));
}
.hero-content {
  position: relative;
  z-index: 2;          /* keep text above every image/overlay layer */
  max-width: 820px;
  /* Hero text gets maximum contrast — dominant dark ink throughout. */
  color: #000;
}
.hero-content .kicker { color: #000; }
.hero-title {
  font-family: var(--serif);
  font-weight: 500;      /* slightly heavier than the default 400 for presence */
  font-size: clamp(48px, 9vw, 124px);
  letter-spacing: 0.005em;
  line-height: 1;
  margin: 0 0 20px;
  color: #000;
  text-shadow: 0 2px 20px rgba(250, 248, 243, 0.5);
}
.hero-sub {
  font-family: var(--serif);
  font-size: clamp(20px, 3vw, 30px);
  font-weight: 400;
  color: #000;
  margin: 0 0 48px;
  letter-spacing: .04em;
  text-shadow: 0 1px 15px rgba(250, 248, 243, 0.5);
}
.hero-content .btn-ghost {
  border-color: #000;
  color: #000;
}
.hero-content .btn-ghost:hover { background: #000; color: var(--bg); }
.kicker {
  font-size: 11px; letter-spacing: .35em; text-transform: uppercase;
  color: var(--ink-faint);
  margin: 0 0 18px;
}

@keyframes kenburns {
  from { transform: scale(1.04) translate3d(0,0,0); }
  to   { transform: scale(1.12) translate3d(-1%, -1%, 0); }
}

.scroll-cue {
  position: absolute; left: 50%; bottom: 36px;
  transform: translateX(-50%);
  width: 24px; height: 40px;
  border: 1px solid var(--ink-dim);
  border-radius: 20px;
  display: grid; place-items: start center;
  padding-top: 8px;
}
.scroll-cue span {
  display: block; width: 2px; height: 6px; background: var(--ink-dim);
  border-radius: 2px;
  animation: cue 1.6s ease-in-out infinite;
}
@keyframes cue {
  0% { transform: translateY(0); opacity: 1; }
  70% { transform: translateY(14px); opacity: 0; }
  100% { transform: translateY(0); opacity: 0; }
}

/* -----------------------------------------------------------
   Buttons
   ----------------------------------------------------------- */
.btn-ghost, .btn-solid {
  display: inline-block;
  padding: 16px 34px;
  font-size: 12px; letter-spacing: .24em; text-transform: uppercase;
  border: 1px solid var(--ink);
  color: var(--ink);
  background: transparent;
  transition: background .3s var(--ease), color .3s var(--ease);
}
.btn-ghost:hover { background: var(--ink); color: var(--bg); opacity: 1; }
.btn-solid { background: var(--ink); color: var(--bg); }
.btn-solid:hover { background: transparent; color: var(--ink); opacity: 1; }

/* -----------------------------------------------------------
   Generic sections
   ----------------------------------------------------------- */
.intro {
  padding: 140px var(--page-pad);
  display: flex; justify-content: center;
}
.intro-text {
  max-width: 760px;
  font-family: var(--serif);
  font-size: clamp(20px, 2.2vw, 28px);
  line-height: 1.5;
  color: var(--ink-dim);
  text-align: center;
  margin: 0;
}

.page-header {
  padding: calc(var(--nav-h) + 80px) var(--page-pad) 40px;
  max-width: 960px;
  margin: 0 auto;
}
/* Breadcrumb link inside the kicker (used on sub-category pages). */
.crumb {
  font-size: 11px; letter-spacing: .24em; text-transform: uppercase;
  color: var(--ink-faint);
  transition: color .2s var(--ease);
}
.crumb:hover { color: var(--ink); opacity: 1; }
.page-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(42px, 6vw, 80px);
  line-height: 1.05;
  margin: 0 0 20px;
}
.page-lede {
  font-family: var(--serif);
  color: var(--ink-dim);
  font-size: clamp(18px, 2vw, 22px);
  max-width: 640px;
  margin: 0;
}

.section-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(28px, 3.5vw, 42px);
  margin: 0 0 40px;
  letter-spacing: .01em;
}

/* -----------------------------------------------------------
   Home — category teasers
   ----------------------------------------------------------- */
.teasers {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
/* One card, not stretched — used on /commercial. */
.teasers.teasers-solo {
  grid-template-columns: minmax(320px, 680px);
  justify-content: center;
  background: transparent;
  gap: 0;
  margin: 80px 0 40px;
}
.teaser {
  position: relative;
  background: var(--bg);
  padding: 48px var(--page-pad);
  display: grid; gap: 28px;
  transition: background .4s var(--ease);
  min-height: 520px;
}
.teaser:hover { background: var(--bg-soft); opacity: 1; }
.teaser-media {
  aspect-ratio: 4 / 5;
  position: relative;
  overflow: hidden;
}
.teaser-media img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease);
}
.teaser:hover .teaser-media img { transform: scale(1.03); }
.teaser-placeholder {
  position: absolute; inset: 0;
  background:
    linear-gradient(135deg, #eee6d3 0%, #e1d6be 50%, #ebe2cd 100%);
}
.teaser-placeholder[data-seed="people"]  { background: linear-gradient(160deg, #ede2ca, #d7c8a7); }
.teaser-placeholder[data-seed="places"]  { background: linear-gradient(160deg, #e2e4df, #c9ccc4); }
.teaser-placeholder[data-seed="stories"] { background: linear-gradient(160deg, #e8dccc, #cfb999); }
.teaser-placeholder::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,.18), transparent 60%);
}

.teaser-meta { display: grid; gap: 8px; }
.teaser-num { font-size: 11px; letter-spacing: .3em; color: var(--ink-faint); text-transform: uppercase; }
.teaser-title { font-family: var(--serif); font-size: 34px; margin: 0; font-weight: 400; }
.teaser-desc { color: var(--ink-dim); margin: 0; max-width: 42ch; }

/* -----------------------------------------------------------
   Home — carousel sections (one per flagged category)
   Horizontal scroll with snap + arrow buttons. Touch/swipe works natively.
   ----------------------------------------------------------- */
.carousel-section {
  padding: 120px 0 60px;
  border-top: 1px solid var(--line);
}
.carousel-section + .carousel-section { border-top: 0; padding-top: 20px; }
.carousel-section .section-head { margin-bottom: 40px; padding: 0 var(--page-pad); }

.carousel {
  position: relative;
  overflow: hidden;
}
.carousel-track {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding: 8px var(--page-pad) 32px; /* horizontal padding = gutter, vertical = hover room */
  scrollbar-width: none;             /* hide scrollbar (Firefox) */
}
.carousel-track::-webkit-scrollbar { display: none; } /* hide scrollbar (Chromium/Safari) */

.carousel-item {
  margin: 0;
  flex: 0 0 auto;
  width: clamp(260px, 28vw, 420px);
  scroll-snap-align: start;
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 5;
}
.carousel-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease);
}
.carousel-item:hover img { transform: scale(1.03); }
.carousel-item figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 28px 20px 14px;
  font-family: var(--serif);
  font-size: 18px;
  color: #fff;
  background: linear-gradient(180deg, transparent, rgba(20,20,20,.7));
  opacity: 0; transform: translateY(10px);
  transition: opacity .35s var(--ease), transform .35s var(--ease);
}
.carousel-item:hover figcaption { opacity: 1; transform: translateY(0); }

.carousel-btn {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  width: 48px; height: 48px;
  display: grid; place-items: center;
  background: rgba(250, 248, 243, .85);
  color: var(--ink);
  border: 1px solid var(--line);
  cursor: pointer;
  font-size: 22px;
  z-index: 2;
  transition: background .2s var(--ease), opacity .2s var(--ease);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.carousel-btn:hover { background: var(--ink); color: var(--bg); }
.carousel-btn[hidden] { display: none; } /* hidden via JS at the track's ends */
.carousel-prev { left: calc(var(--page-pad) - 16px); }
.carousel-next { right: calc(var(--page-pad) - 16px); }

@media (max-width: 700px) {
  .carousel-btn { display: none; } /* rely on swipe on mobile */
  .carousel-item { width: 78vw; }
}

/* -----------------------------------------------------------
   Home — featured strip (also used on Commercial page)
   ----------------------------------------------------------- */
.featured-strip { padding: 140px var(--page-pad); }
.section-head {
  max-width: 720px;
  margin: 0 auto 56px;
  text-align: center;
}
.section-head .kicker { margin-bottom: 14px; }
.section-head .section-title { margin: 0 0 14px; }
.section-lede {
  font-family: var(--serif);
  color: var(--ink-dim);
  font-size: clamp(17px, 1.8vw, 20px);
  margin: 0;
}
.section-more {
  text-align: center;
  margin: 48px 0 0;
  font-size: 12px; letter-spacing: .22em; text-transform: uppercase;
}
.strip-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 8px;
}
.strip-item { margin: 0; overflow: hidden; aspect-ratio: 3/4; }
.strip-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .8s var(--ease);
}
.strip-item:hover img { transform: scale(1.04); }

/* -----------------------------------------------------------
   Portfolio
   ----------------------------------------------------------- */
.portfolio-filters {
  display: flex; gap: 28px; flex-wrap: wrap;
  padding: 0 var(--page-pad) 60px;
  max-width: 960px; margin: 0 auto;
  font-size: 12px; letter-spacing: .24em; text-transform: uppercase;
  color: var(--ink-dim);
}
.portfolio-filters a { padding-bottom: 4px; border-bottom: 1px solid transparent; }
.portfolio-filters a.is-active { color: var(--ink); border-bottom-color: var(--ink); }

.gallery {
  columns: 3 320px;
  column-gap: 8px;
  padding: 0 var(--page-pad) 120px;
}
.gallery-item {
  break-inside: avoid;
  margin: 0 0 8px;
  overflow: hidden;
  position: relative;
}
.gallery-item img {
  width: 100%; height: auto;
  transition: transform .8s var(--ease), opacity .4s var(--ease);
}
.gallery-item:hover img { transform: scale(1.03); }
.gallery-item figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 24px 20px 14px;
  font-family: var(--serif);
  font-size: 18px;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,.7));
  opacity: 0; transform: translateY(10px);
  transition: opacity .35s var(--ease), transform .35s var(--ease);
}
.gallery-item:hover figcaption { opacity: 1; transform: translateY(0); }

.empty {
  padding: 120px var(--page-pad);
  text-align: center;
  color: var(--ink-dim);
}
.empty-hint { font-size: 13px; color: var(--ink-faint); }

/* -----------------------------------------------------------
   About
   ----------------------------------------------------------- */
.prose {
  max-width: 720px;
  margin: 0 auto;
  padding: calc(var(--nav-h) + 80px) var(--page-pad) 120px;
}
.prose-body p {
  font-family: var(--serif);
  font-size: clamp(19px, 2vw, 23px);
  line-height: 1.65;
  color: var(--ink-dim);
  margin: 0 0 28px;
}
.pull-quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(22px, 2.6vw, 30px);
  color: var(--ink);
  border-left: 1px solid var(--accent);
  padding: 12px 0 12px 28px;
  margin: 56px 0 0;
  max-width: 560px;
}

/* -----------------------------------------------------------
   Commercial
   ----------------------------------------------------------- */
.packages {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1px;
  background: var(--line);
  margin: 60px 0 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.package {
  background: var(--bg);
  padding: 56px clamp(24px, 4vw, 48px);
  min-height: 340px;
  display: grid; align-content: start; gap: 24px;
  transition: background .3s var(--ease);
}
.package:hover { background: var(--bg-soft); }
.package-name { font-family: var(--serif); font-weight: 400; font-size: 32px; margin: 0 0 8px; }
.package-price { font-size: 12px; letter-spacing: .2em; text-transform: uppercase; color: var(--accent); margin: 0; }
.package-desc  { color: var(--ink-dim); margin: 0; }

.cta-band {
  padding: 120px var(--page-pad);
  text-align: center;
  display: grid; gap: 32px; justify-items: center;
}
.cta-band p {
  max-width: 640px; font-family: var(--serif);
  font-size: clamp(20px, 2.2vw, 26px);
  color: var(--ink-dim);
  margin: 0;
}

/* -----------------------------------------------------------
   Contact
   ----------------------------------------------------------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(40px, 6vw, 100px);
  padding: 40px var(--page-pad) 140px;
  max-width: 1100px;
  margin: 0 auto;
}
.contact-info { font-family: var(--serif); font-size: 20px; color: var(--ink-dim); }
.contact-info p { margin: 0 0 20px; }
.contact-info .label {
  display: block;
  font-family: var(--sans);
  font-size: 11px; letter-spacing: .3em; text-transform: uppercase;
  color: var(--ink-faint); margin-bottom: 4px;
}
.socials { display: flex; gap: 24px; font-size: 13px; letter-spacing: .2em; text-transform: uppercase; font-family: var(--sans); }

.contact-form { display: grid; gap: 20px; }
.contact-form label { display: grid; gap: 8px; }
.contact-form label span {
  font-size: 11px; letter-spacing: .3em; text-transform: uppercase; color: var(--ink-faint);
}
.contact-form input, .contact-form textarea {
  background: transparent;
  color: var(--ink);
  border: 0;
  border-bottom: 1px solid var(--line);
  padding: 10px 0;
  font: inherit;
  font-family: var(--serif);
  font-size: 18px;
  transition: border-color .3s var(--ease);
}
.contact-form textarea { resize: vertical; min-height: 140px; }
.contact-form input:focus, .contact-form textarea:focus { outline: none; border-bottom-color: var(--ink); }
.contact-form button { justify-self: start; margin-top: 12px; background: transparent; cursor: pointer; font-family: var(--sans); }

.form-success, .form-error {
  padding: 16px 20px; font-size: 14px;
  border: 1px solid var(--line);
  background: #fff;
}
.form-success { border-color: var(--accent); color: var(--accent); }
.form-error   { border-color: #a33; color: #802020; }

/* Honeypot — hidden from humans and screen readers. */
.hp { position: absolute !important; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* -----------------------------------------------------------
   Footer
   ----------------------------------------------------------- */
.site-footer {
  border-top: 1px solid var(--line);
  padding: 48px var(--page-pad);
  font-size: 12px; letter-spacing: .16em; text-transform: uppercase;
  color: var(--ink-faint);
}
.footer-inner {
  display: flex; justify-content: space-between; align-items: center; gap: 24px; flex-wrap: wrap;
  max-width: 1400px; margin: 0 auto;
}
.footer-brand { display: flex; align-items: center; gap: 14px; }
.footer-links, .footer-social { display: flex; gap: 28px; }

/* -----------------------------------------------------------
   Reveal animation (IntersectionObserver hook in main.js)
   ----------------------------------------------------------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 1s var(--ease), transform 1s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }
.reveal.is-in:nth-child(2) { transition-delay: 80ms; }
.reveal.is-in:nth-child(3) { transition-delay: 160ms; }
.reveal.is-in:nth-child(4) { transition-delay: 240ms; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-media { animation: none; }
}

/* -----------------------------------------------------------
   Lightbox
   ----------------------------------------------------------- */
.lb-overlay {
  position: fixed; inset: 0; z-index: 100;
  background: rgba(0,0,0,.96);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity .3s var(--ease);
}
.lb-overlay.is-open { opacity: 1; pointer-events: auto; }
.lb-stage {
  position: relative;
  width: 90vw; height: 88vh;
  display: grid; place-items: center;
}
.lb-stage img {
  max-width: 100%; max-height: 100%;
  object-fit: contain;
  user-select: none; -webkit-user-drag: none;
}
.lb-caption {
  position: absolute; left: 0; right: 0; bottom: -32px;
  text-align: center;
  font-family: var(--serif);
  color: var(--ink-dim);
  font-size: 14px;
}
/* Lightbox: always dark-themed regardless of page palette — standard UX for photo galleries. */
.lb-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 48px; height: 48px;
  background: transparent; border: 1px solid #2a2a2a;
  color: #ededed; cursor: pointer;
  display: grid; place-items: center;
  font-size: 18px; transition: background .2s var(--ease);
}
.lb-btn:hover { background: #141414; }
.lb-prev { left: 16px; }
.lb-next { right: 16px; }
.lb-close {
  position: absolute; top: 16px; right: 16px;
  width: 48px; height: 48px;
  background: transparent; border: 1px solid #2a2a2a;
  color: #ededed; cursor: pointer;
  display: grid; place-items: center;
}
.lb-caption {
  /* Override the parent declaration so caption stays visible on black overlay. */
  color: #a9a9a9;
}
.lb-counter {
  position: absolute; top: 20px; left: 20px;
  font-size: 11px; letter-spacing: .3em; text-transform: uppercase; color: #8a8680;
}

/* -----------------------------------------------------------
   Responsive
   ----------------------------------------------------------- */
@media (max-width: 860px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: fixed; inset: var(--nav-h) 0 0 0;
    background: var(--bg);
    flex-direction: column;
    justify-content: center; align-items: center;
    gap: 32px; font-size: 18px; letter-spacing: .2em;
    transform: translateX(100%); transition: transform .4s var(--ease);
  }
  .nav-links.is-open { transform: translateX(0); }
  .contact-grid { grid-template-columns: 1fr; }
  .teasers { grid-template-columns: 1fr; }
  .gallery { columns: 2 200px; }
}

@media (max-width: 500px) {
  .brand-name { display: none; }
  .gallery { columns: 1; }
}
