/* ═════════════════════════════════════════════════════════════════════
   MARC VAN BROEKHOVEN — PRISTINE APPLE LIQUID GLASS (ZERO PHOTO TINT)
   - 95% Pristine White Glass (geen doorschijnende groene foto's)
   - Boterzachte 60 FPS Dynamic Island Hover (740px -> 860px)
   - Lincoln Morrey 4-Koloms Natural Masonry Grid
   ═════════════════════════════════════════════════════════════════════ */

:root {
  --bg-page: #ffffff;
  --bg-gray-soft: #f4f4f7;
  --bg-gray-subtle: #eaebee;

  --text-black: #000000;
  --text-charcoal: #1d1d1f;
  --text-muted: #5e5e62;
  --text-dim: #86868b;

  /* Pristine Pure White Apple Glass Formula */
  --liquid-glass-bg: rgba(255, 255, 255, 0.95);
  --liquid-glass-blur: blur(28px);
  --liquid-glass-border: rgba(255, 255, 255, 0.95);
  --liquid-glass-rim: inset 0 1px 1.5px 0 #ffffff, inset 0 -1px 1px 0 rgba(0, 0, 0, 0.02);
  --liquid-glass-shadow: var(--liquid-glass-rim), 0 12px 36px -4px rgba(0, 0, 0, 0.12), 0 2px 8px rgba(0, 0, 0, 0.04);

  --font-primary: "Inter", -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", Roboto, sans-serif;
  --font-display: "Archivo", -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", sans-serif;
  --font-mono: "SF Mono", "Space Mono", monospace;

  --page-max: 1800px;
  --page-pad: clamp(1rem, 2vw, 2rem);
  --gap: 14px;
  --apple-expand-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --spring-ease: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  background-color: var(--bg-page);
  color: var(--text-black);
}

body {
  min-width: 320px;
  font-family: var(--font-primary);
  background-color: var(--bg-page);
  color: var(--text-black);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  padding-bottom: env(safe-area-inset-bottom);
}

body.is-locked {
  overflow: hidden;
}

img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.15s ease, background 0.15s ease, border-color 0.15s ease;
}
a:active {
  transform: scale(0.98);
}

button {
  font: inherit;
  background: none;
  border: none;
  color: inherit;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition: all 0.15s ease;
}
button:active {
  transform: scale(0.97);
}

::selection {
  background: #e2e2e7;
  color: #000000;
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 9999;
  padding: 0.5rem 1rem;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  color: var(--text-black);
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 999px;
  transform: translateY(-200%);
  transition: transform 0.2s ease;
}
.skip-link:focus {
  transform: translateY(0);
}

/* ═════════════════════════════════════════════════════════════════════
   01. PRISTINE DYNAMIC ISLAND (740PX -> 860PX BOTERZACHT & ZUIVER WIT)
   ═════════════════════════════════════════════ */

.floating-header {
  position: fixed;
  top: clamp(0.6rem, 1.5vw, 1.25rem);
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  justify-content: center;
  padding: 0 var(--page-pad);
  pointer-events: none;
}

.liquid-island {
  position: relative;
  pointer-events: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  width: 740px;
  max-width: 100%;
  padding: 0.4rem 0.65rem;
  background: rgba(255, 255, 255, 0.52);
  backdrop-filter: blur(28px) saturate(190%);
  -webkit-backdrop-filter: blur(28px) saturate(190%);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: inset 0 1.5px 2px rgba(255, 255, 255, 0.85), 0 12px 36px -4px rgba(0, 0, 0, 0.08), 0 2px 8px rgba(0, 0, 0, 0.03);
  border-radius: 999px;
  transition: width 0.62s var(--apple-expand-ease),
              padding 0.62s var(--apple-expand-ease),
              box-shadow 0.62s ease,
              background 0.3s ease;
}

.liquid-island:hover {
  width: 860px;
  padding: 0.45rem 1rem;
  background: rgba(255, 255, 255, 0.66);
  box-shadow: inset 0 1.5px 2px rgba(255, 255, 255, 0.9), 0 16px 44px -4px rgba(0, 0, 0, 0.12), 0 4px 12px rgba(0, 0, 0, 0.04);
}

.island-brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.2rem 0.5rem 0.2rem 0.2rem;
  border-radius: 999px;
  flex-shrink: 0;
}

.monogram {
  display: grid;
  place-items: center;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
  color: var(--text-black);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  flex-shrink: 0;
}

.brand-text {
  display: flex;
  align-items: baseline;
  gap: 0.45rem;
}
.brand-text strong {
  font-size: 0.92rem;
  font-weight: 750;
  color: var(--text-black);
  letter-spacing: -0.01em;
}
.brand-tag {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 500;
}

.island-nav {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.island-link {
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--text-charcoal);
  transition: all 0.15s ease;
}
.island-link:hover {
  color: var(--text-black);
  background: rgba(0, 0, 0, 0.04);
}

.island-btn {
  padding: 0.45rem 1.05rem;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
  color: var(--text-black);
  font-size: 0.86rem;
  font-weight: 700;
  white-space: nowrap;
}
.island-btn:hover {
  background: var(--bg-gray-soft);
  transform: translateY(-1px);
}

/* ═════════════════════════════════════════════════════════════════════
   02. INTRO & TRANSLUCENT SEGMENTED FILTER
   ═════════════════════════════════════════════ */

.intro-section {
  max-width: var(--page-max);
  margin: 0 auto;
  padding: clamp(5.5rem, 11vh, 8rem) var(--page-pad) 1.5rem;
}

.intro-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.sub-kicker {
  display: inline-block;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
}

.page-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text-black);
  margin-bottom: 1.6rem;
}

/* Filter Pill */
.segmented-control-wrap {
  display: flex;
  justify-content: center;
  width: 100%;
}

.glass-segmented-control {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 4px;
  background: rgba(240, 240, 243, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.03), 0 6px 18px rgba(0, 0, 0, 0.04);
  user-select: none;
  touch-action: pan-y;
  cursor: grab;
  max-width: 100%;
}

.glass-segmented-control.is-dragging {
  cursor: grabbing;
}

.glass-slider-thumb {
  position: absolute;
  top: 4px;
  bottom: 4px;
  left: 0;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  z-index: 1;
  pointer-events: none;
  transition: transform 0.28s var(--spring-ease), width 0.28s var(--spring-ease);
}

.glass-segmented-control.is-dragging .glass-slider-thumb {
  transition: none !important;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.14);
}

.seg-btn {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.5rem 1.25rem;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.15s ease;
  background: transparent !important;
  box-shadow: none !important;
  white-space: nowrap;
}

.seg-btn:hover {
  color: var(--text-black);
}

.seg-btn.is-active {
  color: var(--text-black);
  font-weight: 750;
}

.seg-btn .count {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  opacity: 0.75;
}

/* ═════════════════════════════════════════════════════════════════════
   03. 4-COLUMN MASONRY WITH PURE WHITE LIQUID GLASS CAPSULES
   ═════════════════════════════════════════════ */

.gallery-section {
  max-width: var(--page-max);
  width: 100%;
  margin: 0 auto;
  padding: 0.5rem var(--page-pad) clamp(2.5rem, 5vw, 4.5rem);
}

/* 🖼️ Strakke Rechte Lijnen Grid (3 kolommen: 3x3 = 9 foto's, laatste 3 onder More) */
.masonry-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
  width: 100%;
}

.masonry-item {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  background: var(--bg-gray-soft);
  cursor: pointer;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
  aspect-ratio: 16 / 11;
  width: 100%;
  transition: transform 0.35s var(--spring-ease), box-shadow 0.35s var(--spring-ease);
}

.masonry-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px -6px rgba(0, 0, 0, 0.12);
}

.media-inner {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.media-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--spring-ease);
}

.masonry-item:hover .media-inner img {
  transform: scale(1.03);
}

.masonry-item[hidden] {
  display: none !important;
}

.masonry-item.is-more-hidden {
  display: none !important;
}

/* 🔘 Apple Liquid Glass "More Photos" Expand Button */
.more-photos-wrap {
  display: flex;
  justify-content: center;
  margin-top: clamp(1.5rem, 3vw, 2.5rem);
  width: 100%;
}

.glass-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.75rem 1.6rem;
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.85);
  box-shadow: inset 0 1.5px 2px rgba(255, 255, 255, 0.9), 0 8px 24px rgba(0, 0, 0, 0.06), 0 2px 6px rgba(0, 0, 0, 0.03);
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text-black);
  cursor: pointer;
  transition: all 0.28s var(--spring-ease);
}

.glass-more-btn:hover {
  transform: translateY(-2px);
  box-shadow: inset 0 1.5px 2px rgba(255, 255, 255, 0.95), 0 14px 32px rgba(0, 0, 0, 0.1), 0 4px 10px rgba(0, 0, 0, 0.04);
  background: rgba(255, 255, 255, 0.85);
}

.more-count-badge {
  font-family: var(--font-mono);
  font-size: 0.76rem;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(0, 0, 0, 0.06);
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  color: var(--text-charcoal);
}

.glass-more-btn .arrow-down {
  font-size: 0.95rem;
  transition: transform 0.28s var(--spring-ease);
}

.glass-more-btn.is-expanded .arrow-down {
  transform: rotate(180deg);
}

/* 🔮 Frosted Apple Liquid Glass Floating Capsule */
.liquid-glass-capsule {
  position: absolute;
  bottom: 12px;
  left: 12px;
  right: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.65rem 1.15rem;
  background: rgba(255, 255, 255, 0.60);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.80);
  box-shadow: inset 0 1.5px 2px rgba(255, 255, 255, 0.9), 0 10px 28px rgba(0, 0, 0, 0.12);
  border-radius: 999px;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.32s var(--spring-ease);
  pointer-events: none;
}

.masonry-item:hover .liquid-glass-capsule {
  opacity: 1;
  transform: translateY(0);
}

.capsule-left {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  min-width: 0;
}

.cap-title {
  font-family: var(--font-display);
  font-size: 0.86rem;
  font-weight: 750;
  color: #000000;
  letter-spacing: -0.01em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cap-sub {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-muted);
}

.capsule-badge {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text-black);
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
}

/* ═════════════════════════════════════════════════════════════════════
   04. BOTTOM INFO CARD & CONTACT
   ═════════════════════════════════════════════ */

.bottom-section {
  max-width: var(--page-max);
  margin: 0 auto;
  padding: clamp(2rem, 4vw, 4rem) var(--page-pad);
}

.glass-bottom-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.95);
  box-shadow: inset 0 1px 1.5px #ffffff, 0 16px 36px rgba(0, 0, 0, 0.06);
  border-radius: 28px;
  padding: clamp(2rem, 4vw, 3.2rem);
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(1.8rem, 4vw, 4rem);
  align-items: center;
}

.col-heading {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-black);
  margin-bottom: 0.6rem;
}

.about-desc {
  font-size: 1rem;
  color: var(--text-charcoal);
  line-height: 1.6;
}

.contact-buttons-row {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.glass-contact-pill {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 1.25rem;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
  border-radius: 16px;
  font-size: 0.9rem;
  font-weight: 650;
  color: var(--text-black);
  transition: all 0.15s ease;
}
.glass-contact-pill:hover {
  border-color: #c7c7cc;
  transform: translateX(4px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

.glass-contact-pill .arrow {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* ═════════════════════════════════════════════════════════════════════
   05. FOOTER & CLEAN STUDIOLOKAAL BRANDING
   ═════════════════════════════════════════════ */

.site-footer {
  border-top: 1px solid #e5e5ea;
  padding: 1.8rem var(--page-pad);
  font-size: 0.85rem;
  color: var(--text-muted);
  background: var(--bg-page);
}

.footer-wrap {
  max-width: var(--page-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
}

@media (max-width: 640px) {
  .footer-wrap {
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: 0.8rem;
  }
  .footer-right {
    justify-content: center !important;
  }
}

.footer-left {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--text-charcoal);
  font-weight: 500;
}

.footer-cms-link {
  opacity: 0.3;
  font-size: 11px;
  text-decoration: none;
  color: var(--text-muted);
  transition: opacity 0.2s ease;
}

.footer-cms-link:hover {
  opacity: 1;
  color: var(--text-black);
}

.footer-center {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.84rem;
  color: var(--text-muted);
}

.studiolokaal-center-link {
  font-weight: 700;
  color: var(--text-black);
  text-decoration: none;
  margin-left: 3px;
  transition: color 0.15s ease;
}

.studiolokaal-center-link:hover {
  text-decoration: underline;
}

.footer-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.back-top {
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  padding: 6px 10px;
  border-radius: 8px;
  transition: color 0.15s ease;
}

.back-top:hover {
  color: var(--text-black);
}

/* ═════════════════════════════════════════════════════════════════════
   06. QUICK LOOK LIGHTBOX (ZOOM & EXIF BAR)
   ═════════════════════════════════════════════ */

.quicklook-dialog {
  position: fixed;
  inset: 0;
  z-index: 1000;
  width: 100vw;
  height: 100vh;
  max-width: 100vw;
  max-height: 100vh;
  border: none;
  background: transparent;
  padding: 0;
  margin: 0;
  display: none;
}

.quicklook-dialog[open] {
  display: flex;
  align-items: center;
  justify-content: center;
}

.dialog-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  z-index: 1;
}

.dialog-container {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(0.6rem, 1.8vw, 1.2rem);
}

.glass-pill-bar {
  max-width: 860px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 1.2rem;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.95);
  box-shadow: inset 0 1px 1.5px #ffffff, 0 10px 30px rgba(0, 0, 0, 0.08);
  border-radius: 999px;
}

.bar-title-meta {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
}
.bar-title-meta strong {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text-black);
}
.bar-title-meta span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.bar-right {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.lb-zoom-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
  font-size: 0.76rem;
  font-weight: 650;
  color: var(--text-black);
}
.lb-zoom-btn:hover {
  background: var(--bg-gray-soft);
}

.lb-counter-badge {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--text-muted);
}

.lb-close-btn {
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
  display: grid;
  place-items: center;
  font-size: 0.85rem;
  color: var(--text-black);
}
.lb-close-btn:hover {
  background: var(--bg-gray-soft);
}

.dialog-stage {
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 0;
  overflow: hidden;
}

.dialog-img-wrapper {
  max-width: 92vw;
  max-height: 74vh;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.12);
  cursor: zoom-in;
  transition: transform 0.3s var(--spring-ease);
  user-select: none;
  touch-action: none;
}

.dialog-img-wrapper.is-zoomed {
  cursor: grab;
  max-width: none;
  max-height: none;
  width: 92vw;
  height: 74vh;
}

.dialog-img-wrapper.is-panning {
  cursor: grabbing;
}

.dialog-img {
  max-width: 100%;
  max-height: 74vh;
  object-fit: contain;
  border-radius: 18px;
  transition: transform 0.3s var(--spring-ease);
  transform-origin: center center;
}

.dialog-img-wrapper.is-zoomed .dialog-img {
  max-width: none;
  max-height: none;
  width: auto;
  height: auto;
  transform: scale(2);
}

.dialog-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 3.2rem;
  height: 3.2rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  color: var(--text-black);
  font-size: 1.7rem;
  line-height: 1;
  display: grid;
  place-items: center;
  transition: all 0.15s ease;
}
.dialog-arrow:hover {
  background: #ffffff;
  transform: translateY(-50%) scale(1.06);
}
.arrow-prev { left: 1rem; }
.arrow-next { right: 1rem; }

.dialog-bottom-bar {
  max-width: 640px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  padding: 0.5rem 1.5rem;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.95);
  box-shadow: inset 0 1px 1.5px #ffffff, 0 10px 24px rgba(0, 0, 0, 0.08);
  border-radius: 999px;
}

.exif-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.exif-label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--text-muted);
}

.exif-item strong {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-black);
}

.exif-item span:not(.exif-label) {
  font-size: 0.82rem;
  color: var(--text-charcoal);
}

.exif-divider {
  color: #c7c7cc;
  font-size: 0.8rem;
}

/* ═════════════════════════════════════════════════════════════════════
   07. RESPONSIVE BREAKPOINTS
   ═════════════════════════════════════════════ */

@media (max-width: 1200px) {
  .masonry-gallery {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 900px) {
  .liquid-island {
    width: 100%;
  }
  .liquid-island:hover {
    width: 100%;
  }
  .masonry-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
  .glass-bottom-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 580px) {
  .masonry-gallery {
    grid-template-columns: 1fr;
    aspect-ratio: 16 / 10;
  }

  .liquid-glass-capsule {
    opacity: 1;
    transform: translateY(0);
    padding: 0.5rem 0.95rem;
    bottom: 8px;
    left: 8px;
    right: 8px;
  }

  .brand-text {
    display: none;
  }

  .monogram {
    width: 2rem;
    height: 2rem;
    font-size: 0.72rem;
  }

  .island-link {
    padding: 0.35rem 0.6rem;
    font-size: 0.8rem;
  }

  .island-btn {
    padding: 0.35rem 0.75rem;
    font-size: 0.8rem;
  }

  .seg-btn {
    padding: 0.4rem 0.75rem;
    font-size: 0.78rem;
    gap: 0.3rem;
  }

  .page-title {
    font-size: 1.9rem;
    margin-bottom: 1rem;
  }

  .sub-kicker {
    font-size: 0.82rem;
  }

  .dialog-bottom-bar {
    flex-direction: column;
    gap: 0.2rem;
    border-radius: 20px;
  }
  .exif-divider { display: none; }
}

@media (max-width: 380px) {
  .island-link-desktop {
    display: none;
  }

  .seg-btn {
    padding: 0.35rem 0.55rem;
    font-size: 0.74rem;
  }
}
