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

:root {
  --bg: #0a0a0a;
  --bg-2: #141414;
  --bg-3: #1e1e1e;
  --border: #2a2a2a;
  --text: #e8e8e8;
  --text-muted: #888;
  --text-dim: #555;
  --accent: #ffffff;
  --nav-underline: #ffffff;
}

[data-theme="light"] {
  --bg: #f5f5f5;
  --bg-2: #ebebeb;
  --bg-3: #ddd;
  --border: #ccc;
  --text: #111;
  --text-muted: #555;
  --text-dim: #999;
  --accent: #000000;
  --nav-underline: #000000;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.7;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  transition: background 0.3s, color 0.3s;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, textarea, select { font-family: inherit; }

/* ── Header ─────────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 4vw;
  height: 68px;
  transition: background 0.3s;
}

.site-logo {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text);
  text-decoration: none;
  flex-shrink: 0;
  margin-right: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}

.site-nav a {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  position: relative;
  padding-bottom: 2px;
  transition: color 0.2s;
}

.site-nav a::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--nav-underline);
  transition: width 0.25s ease;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--text);
}

.site-nav a:hover::after,
.site-nav a.active::after {
  width: 100%;
}

/* Dashboard header link */
.header-dash-link {
  display: inline-flex;
  align-items: center;
  margin-left: 1.5rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: color .2s;
  flex-shrink: 0;
}
.header-dash-link:hover { color: var(--text); }

/* Theme toggle */
.theme-toggle {
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  font-size: 16px;
  padding: 0;
  margin-left: 2rem;
  transition: color 0.2s;
}
.theme-toggle:hover { color: var(--text); }

/* ── Toast notifications ─────────────────────────────────── */
#toast-container {
  position: fixed;
  top: 1.25rem;
  right: 1.25rem;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: .5rem;
  pointer-events: none;
}

.toast {
  pointer-events: auto;
  min-width: 260px;
  max-width: 360px;
  padding: .85rem 1.1rem .85rem 1rem;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: .75rem;
  font-size: 12px;
  letter-spacing: .03em;
  line-height: 1.55;
  position: relative;
  overflow: hidden;
  animation: toast-in .25s ease forwards;
}

.toast-success {
  background: #fff;
  color: #0a0a0a;
}

.toast-error {
  background: #0a0a0a;
  color: #e8e8e8;
  border: 1px solid #2a2a2a;
}

.toast-warning {
  background: #0a0a0a;
  color: #e8e8e8;
  border: 1px solid #2a2a2a;
}

.toast-text { flex: 1; }

.toast-close {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 16px;
  line-height: 1;
  flex-shrink: 0;
  padding: 0;
  color: inherit;
  opacity: .4;
  transition: opacity .15s;
}
.toast-close:hover { opacity: 1; }

.toast-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  background: currentColor;
  opacity: .25;
  animation: toast-progress 3.5s linear forwards;
}

@keyframes toast-in {
  from { opacity: 0; transform: translateX(16px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes toast-out {
  from { opacity: 1; transform: translateX(0); }
  to   { opacity: 0; transform: translateX(16px); }
}
@keyframes toast-progress {
  from { width: 100%; }
  to   { width: 0%; }
}

/* ── Account menu ────────────────────────────────────────── */
.account-menu {
  position: relative;
  margin-left: calc(.75rem + 10px);
  flex-shrink: 0;
}

.account-btn {
  height: 32px;
  padding: 0 .6rem 0 .45rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: none;
  color: var(--text-muted);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: .35rem;
  transition: border-color .2s, color .2s, background .2s;
}
.account-btn:hover { border-color: var(--text-muted); color: var(--text); background: var(--bg-2); }
.account-btn.open  { border-color: var(--text-muted); color: var(--text); background: var(--bg-2); }

.account-btn-initial {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--text);
  color: var(--bg);
  font-size: 11px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.account-btn-chevron {
  transition: transform .2s;
}
.account-btn.open .account-btn-chevron { transform: rotate(180deg); }

/* Dropdown card */
.account-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: 260px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 14px;
  z-index: 300;
  flex-direction: column;
  box-shadow: 0 16px 48px rgba(0,0,0,.35);
  overflow: hidden;
}
.account-dropdown.open { display: flex; }

/* Profile header */
.acd-header {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: 1rem 1.1rem;
  background: var(--bg-3);
  border-bottom: 1px solid var(--border);
}

.acd-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--text);
  color: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  font-weight: 600;
  flex-shrink: 0;
}

.acd-user-info { display: flex; flex-direction: column; gap: 2px; overflow: hidden; }
.acd-name { font-size: 13px; font-weight: 600; color: var(--text); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.acd-email { font-size: 11px; color: var(--text-muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

/* Menu items */
.acd-menu {
  padding: .35rem 0;
  border-bottom: 1px solid var(--border);
}

.acd-item {
  display: flex;
  align-items: center;
  gap: .65rem;
  padding: .55rem 1.1rem;
  font-size: 13px;
  color: var(--text-muted);
  text-decoration: none;
  transition: background .15s, color .15s;
}
.acd-item:hover { background: var(--bg-3); color: var(--text); }
.acd-item svg { flex-shrink: 0; opacity: .55; }
.acd-item:hover svg { opacity: 1; }

/* Controls (theme) */
.acd-controls {
  padding: .35rem 0;
  border-bottom: 1px solid var(--border);
}

.acd-control {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .5rem 1.1rem;
  font-size: 13px;
  color: var(--text-muted);
}

.acd-control-label {
  display: flex;
  align-items: center;
  gap: .6rem;
}
.acd-control-label svg { opacity: .55; }

.acd-theme-btn {
  background: var(--bg-3);
  border: 1px solid var(--border);
  color: var(--text);
  font-size: 12px;
  font-family: inherit;
  padding: .25rem .7rem;
  border-radius: 6px;
  cursor: pointer;
  outline: none;
  transition: border-color .15s, background .15s;
  min-width: 48px;
  text-align: center;
}
.acd-theme-btn:hover { border-color: var(--text-muted); background: var(--bg); }

/* Logout */
.acd-footer { padding: .35rem 0; }

.acd-signout {
  display: flex;
  align-items: center;
  gap: .65rem;
  padding: .55rem 1.1rem;
  font-size: 13px;
  color: #e05252;
  text-decoration: none;
  transition: background .15s;
}
.acd-signout:hover { background: rgba(224,82,82,.08); }
.acd-signout svg { flex-shrink: 0; }

/* Mobile menu toggle (circle + button) */
.menu-toggle {
  display: none;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: none;
  color: var(--text);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  margin-left: .75rem;
  flex-shrink: 0;
  transition: border-color .2s;
}
.menu-toggle:hover { border-color: var(--text-muted); }

/* ── Full-screen mobile overlay ──────────────────────────── */
.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 500;
  background: var(--bg);
  flex-direction: column;
  overflow-y: auto;
}
.mobile-overlay.open { display: flex; }

.mobile-overlay-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 4vw;
  height: 68px;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}

.mobile-overlay-controls {
  display: flex;
  align-items: center;
  gap: .65rem;
}

.overlay-circle-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: none;
  color: var(--text);
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color .2s, background .2s;
}
.overlay-circle-btn:hover { border-color: var(--text-muted); background: var(--bg-2); }

.mobile-overlay-nav {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem 8vw;
}

.mobile-overlay-nav a {
  display: block;
  font-size: clamp(1.75rem, 8vw, 2.75rem);
  font-weight: 300;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text);
  padding: .55rem 0;
  text-decoration: none;
  transition: color .2s, padding-left .25s;
}
.mobile-overlay-nav a:hover { color: var(--text-muted); padding-left: .75rem; }

.mobile-overlay-footer {
  padding: 0 8vw 2.5rem;
  flex-shrink: 0;
}
.mobile-overlay-location {
  margin-bottom: 1rem;
}
.mobile-overlay-location p {
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-dim);
  line-height: 2;
}
.mobile-overlay-copyright {
  border-top: 1px solid var(--border);
  padding-top: 1rem;
}
.mobile-overlay-copyright p {
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-dim);
}

/* ── Footer ─────────────────────────────────────────────────── */
.site-footer {
  margin-top: auto;
  padding: 2rem 4vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--text-dim);
}

.site-footer a { color: var(--text-muted); transition: color 0.2s; }
.site-footer a:hover { color: var(--text); }

/* ── Main content ───────────────────────────────────────────── */
.site-main { flex: 1; }

/* ── Home photo showcase ────────────────────────────────────── */
.home-photo-section {
  margin: 10px;
  padding: 2.5rem 2.5rem 3rem;
}

.home-photo-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 2rem;
  padding-bottom: 0;
}

.home-photo-heading {
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 300;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.home-photo-viewall {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
  transition: color 0.2s;
}
.home-photo-viewall:hover { color: var(--text); }

/* Masonry columns — portrait / square / landscape all show at natural size */
.home-photo-grid {
  columns: 5;
  column-gap: 12px;
}

.home-photo-item {
  break-inside: avoid;
  margin-bottom: 12px;
  display: block;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

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

.home-photo-figure {
  margin: 0;
  line-height: 0;
  overflow: hidden;
  background: var(--bg-2);
  border-radius: 8px;
}

/* No fixed height — image renders at its true aspect ratio (portrait / square / landscape) */
.home-photo-figure img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.45s ease;
}

.home-photo-item:hover .home-photo-figure img {
  transform: scale(1.025);
}

.home-photo-meta {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: 0.55rem;
  padding: 0 0.25rem;
}

.home-photo-title {
  font-size: 12px;
  font-weight: 400;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  flex: 1 1 0;
  min-width: 0;
}

.home-photo-cat {
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
  white-space: nowrap;
  flex-shrink: 0;
}



/* ── Filter chips ───────────────────────────────────────────── */
.page-hero-filters {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  align-items: center;
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255,255,255,.07);
}

/* ── Hero row layout (title · count + chips in one line) ─── */
.page-hero--row {
  display: flex;
  align-items: center;
  gap: 0;
  padding-top: 1.45rem;
  padding-bottom: 1.45rem;
  overflow: hidden;
  margin-top: 0;
  margin-left: 0;
  margin-right: 0;
  border-radius: 0;
}

.page-hero.page-hero--row {
  background: transparent;
  border: none;
  margin: 0;
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}

.page-hero--row .page-title {
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  flex-shrink: 0;
  line-height: 1;
}

.page-hero-dot {
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-weight: 300;
  color: var(--text-muted);
  flex-shrink: 0;
  line-height: 1;
  padding: 0 0.45rem;
}

.page-hero--row .page-hero-count {
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-weight: 300;
  letter-spacing: -0.02em;
  color: var(--text-muted);
  flex-shrink: 0;
  white-space: nowrap;
  line-height: 1;
}

.page-hero--row .page-hero-chips-wrap {
  margin-left: 1.25rem;
}

.page-hero-chips-wrap {
  position: relative;
  flex: 1;
  min-width: 0;
  overflow: hidden;
}

.page-hero-chips-scroll {
  display: flex;
  align-items: center;
  gap: .4rem;
  overflow-x: auto;
  scrollbar-width: none;
  padding-right: 2.5rem;
}
.page-hero-chips-scroll::-webkit-scrollbar { display: none; }

.page-hero-chips-fade {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 2.5rem;
  background: linear-gradient(to right, transparent, var(--bg-2));
  pointer-events: none;
}

@media (max-width: 640px) {
  .page-hero--row { gap: .75rem; }
  .page-hero--row .page-title { font-size: 1rem; }
}

.filter-chip {
  display: inline-block;
  padding: .35rem .9rem;
  font-size: 11px;
  letter-spacing: .05em;
  border-radius: 999px;
  border: 1px solid var(--border);
  color: var(--text-muted);
  text-decoration: none;
  transition: background .18s, color .18s, border-color .18s;
  white-space: nowrap;
}
.filter-chip:hover  { border-color: var(--text-muted); color: var(--text); background: var(--bg-3); }
.filter-chip.active { background: var(--text); color: var(--bg); border-color: var(--text); }

/* ── Page hero ──────────────────────────────────────────────── */
.page-hero {
  margin: 10px 10px 0;
  padding: 2rem 2.5rem 2rem;
  background: var(--bg-2);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: 12px;
}

.page-card {
  margin: 10px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 12px;
}

/* ── Gallery top-bar layout (Photo / Art / Film) ─────────── */
.gal-page {
  min-height: calc(100vh - 68px);
}

.gal-topbar {
  position: sticky;
  top: 68px;
  z-index: 50;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 0 2.5rem;
  height: 52px;
}

.gal-heading {
  display: flex;
  align-items: baseline;
  gap: .45rem;
  flex-shrink: 0;
}

.gal-title {
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  letter-spacing: .02em;
}

.gal-count {
  font-size: 13px;
  color: var(--text-muted);
}

.gal-chips-wrap {
  position: relative;
  flex: 1;
  overflow: hidden;
  min-width: 0;
}

.gal-chips {
  display: flex;
  align-items: center;
  gap: .4rem;
  overflow-x: auto;
  scrollbar-width: none;
  padding-right: 2.5rem;
}
.gal-chips::-webkit-scrollbar { display: none; }

.gal-chips-fade {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 2.5rem;
  background: linear-gradient(to right, transparent, var(--bg));
  pointer-events: none;
}

.gal-grid-wrap {
  padding: 35px 2.5rem 35px;
}

.gal-empty {
  padding: 2rem 0;
  color: var(--text-dim);
  font-size: 13px;
}

@media (max-width: 768px) {
  .gal-topbar { padding: 0 1.25rem; gap: 1rem; }
  .gal-grid-wrap { padding: 1.25rem 1.25rem 3rem; }
}

@media (max-width: 480px) {
  .gal-topbar { height: 48px; padding: 0 1rem; }
  .gal-grid-wrap { padding: 1rem 1rem 2rem; }
}

/* ── Gallery page two-column layout (legacy, kept for reference) */
.gallery-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  min-height: calc(100vh - 76px);
}

.gallery-sidebar {
  position: sticky;
  top: 68px;
  height: calc(100vh - 68px);
  overflow-y: auto;
  padding: 2.5rem 2rem;
  border-right: 1px solid var(--border);
  border-radius: 11px 0 0 11px;
  background: var(--bg-3);
}

.gallery-sidebar .page-title {
  font-size: clamp(1.4rem, 2vw, 2rem);
}

.gallery-sidebar-filters {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
  margin-top: 1.5rem;
}

.gallery-content {
  padding: 2rem 2rem 3rem;
}

@media (max-width: 900px) {
  .gallery-layout { grid-template-columns: 220px 1fr; }
}

@media (max-width: 768px) {
  .gallery-layout { grid-template-columns: 1fr; }
  .gallery-sidebar {
    position: static;
    height: auto;
    border-right: none;
    border-bottom: 1px solid var(--border);
    border-radius: 11px 11px 0 0;
    padding: 1.5rem 1.5rem 1.25rem;
  }
}

.page-title {
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 300;
  letter-spacing: -0.02em;
  color: var(--text);
  line-height: 1.1;
}

.page-subtitle {
  margin-top: 0.75rem;
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

/* ── Photo gallery grid ─────────────────────────────────────── */
.gallery {
  padding: 2vw 4vw 6vw;
  columns: 5;
  column-gap: 14px;
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: 14px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

/* width:100% + height:auto = full image always shown, portrait/square/landscape all respected */
.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease, filter 0.4s ease;
  filter: grayscale(15%);
}

.gallery-item:hover img {
  transform: scale(1.03);
  filter: grayscale(0%);
}

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.25rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.gallery-item-title {
  font-size: 13px;
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.04em;
}

.gallery-item-desc {
  font-size: 11px;
  color: rgba(255,255,255,0.6);
  margin-top: 4px;
}

/* ── Video grid ─────────────────────────────────────────────── */
.video-grid {
  padding: 2vw 4vw 6vw;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 380px), 1fr));
  gap: 2rem;
}

.video-card { display: flex; flex-direction: column; gap: 0.75rem; }

.video-embed {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  background: var(--bg-3);
}

.video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.video-title {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
}

.video-desc { font-size: 12px; color: var(--text-muted); }

/* ── Home page ──────────────────────────────────────────────── */
/* ── Hero ────────────────────────────────────────────────── */
.home-hero {
  height: calc(100vh - 68px);
  position: relative;
  overflow: hidden;
  background: var(--bg);
  padding: 10px;
}

/* fallback if no photos */
.home-hero-bg   { position:absolute; inset:0; background:var(--bg-2); }
.home-hero-content { position:relative; z-index:1; padding: 0 4vw; display:flex; align-items:center; height:100%; }
.home-hero-name { font-family:'Cinzel',Georgia,serif; font-size:clamp(3rem,8vw,7rem); font-weight:400; letter-spacing:.12em; line-height:1; color:var(--text); text-transform:uppercase; }
.home-hero-tagline { margin-top:1.5rem; font-size:13px; letter-spacing:.15em; text-transform:uppercase; color:var(--text-muted); }

/* panel accordion */
.hero-panels {
  display: flex;
  height: 100%;
  gap: 0;
  border-radius: 16px;
  overflow: hidden;
}

.hero-panel {
  position: relative;
  flex: 1;
  min-width: 56px;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  cursor: pointer;
  transition: flex .65s cubic-bezier(.4,0,.2,1);
}

.hero-panel--active {
  flex: 10;
  cursor: default;
}

.hero-panel-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.45);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  transition: background .4s, backdrop-filter .4s;
}
.hero-panel--active .hero-panel-overlay {
  background: rgba(0,0,0,.15);
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
}

/* glass number chip */
.hero-panel-num {
  position: absolute;
  top: 1rem;
  left: 1rem;
  font-size: 11px;
  font-weight: 500;
  color: rgba(255,255,255,.9);
  z-index: 2;
  letter-spacing: .06em;
  line-height: 1;
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 20px;
  padding: .25rem .55rem;
}

/* glass title chip on active panel */
.hero-panel-title {
  position: absolute;
  bottom: 1.75rem;
  left: 1rem;
  z-index: 2;
  color: rgba(255,255,255,.7);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: .1em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  max-height: 200px;
  text-decoration: none;
  text-shadow: 0 1px 6px rgba(0,0,0,.8);
  background: transparent;
  border: 1px solid transparent;
  border-radius: 6px;
  padding: .3rem .4rem;
  transition: font-size .3s, color .3s, writing-mode 0s .1s, transform 0s .1s, bottom .3s,
              background .3s, border-color .3s, text-shadow .3s, padding .3s;
}

/* hover on inactive panels */
.hero-panel:not(.hero-panel--active) { cursor: pointer; }

.hero-panel:not(.hero-panel--active):hover .hero-panel-overlay {
  background: rgba(0,0,0,.22);
  backdrop-filter: blur(1px);
  -webkit-backdrop-filter: blur(1px);
}

.hero-panel:not(.hero-panel--active):hover .hero-panel-title {
  color: rgba(255,255,255,1);
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.18);
  text-shadow: 0 0 14px rgba(255,255,255,.35), 0 1px 6px rgba(0,0,0,.6);
}

.hero-panel--active .hero-panel-title {
  writing-mode: horizontal-tb;
  transform: none;
  font-size: 1.1rem;
  font-weight: 300;
  letter-spacing: -.01em;
  color: rgba(255,255,255,.95);
  max-height: none;
  bottom: 1.5rem;
  left: 1.5rem;
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 8px;
  padding: .6rem 1rem;
  transition: font-size .3s .2s, color .3s .2s, bottom .3s .2s,
              background .25s, border-color .25s, box-shadow .25s, transform .25s;
}

.hero-panel--active .hero-panel-title:hover {
  background: rgba(255,255,255,.18);
  border-color: rgba(255,255,255,.3);
  box-shadow: 0 0 18px rgba(255,255,255,.12);
  transform: translateY(-2px);
  color: #fff;
}

/* scroll hint */
.hero-scroll-hint {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  pointer-events: none;
}

.hero-scroll-mouse {
  width: 22px;
  height: 34px;
  border: 1.5px solid rgba(255,255,255,.35);
  border-radius: 11px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}

.hero-scroll-wheel {
  width: 2px;
  height: 7px;
  background: rgba(255,255,255,.6);
  border-radius: 1px;
  animation: scroll-wheel 1.8s ease-in-out infinite;
}

@keyframes scroll-wheel {
  0%   { opacity:1; transform:translateY(0); }
  80%  { opacity:0; transform:translateY(8px); }
  100% { opacity:0; transform:translateY(0); }
}

@media (max-width: 640px) {
  .hero-panels {
    flex-direction: column;
    padding: 5px;
    border-radius: 10px;
  }
  .hero-panel {
    min-width: unset;
    min-height: 48px;
    width: 100%;
  }
  .hero-panel--active { flex: 7; }

  /* title is always horizontal on mobile */
  .hero-panel-title {
    writing-mode: horizontal-tb;
    transform: none;
    bottom: .75rem;
    left: 3rem;
    font-size: 11px;
    max-height: none;
  }
  .hero-panel--active .hero-panel-title {
    font-size: 1rem;
    bottom: 1.25rem;
    left: 1.25rem;
    padding: .4rem .75rem;
  }
  .hero-panel-num {
    top: .75rem;
    left: .75rem;
  }
}

.home-sections {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
}

.home-section-link {
  display: block;
  aspect-ratio: 4/3;
  background: var(--bg-2);
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: border-color 0.3s;
}

.home-section-link:hover { border-color: var(--text-muted); }

.home-section-label {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.2s;
}

.home-section-link:hover .home-section-label { color: var(--text); }

/* ── About ──────────────────────────────────────────────────── */
.about-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - 120px);
}

.about-image-wrap {
  position: sticky;
  top: 68px;
  height: calc(100vh - 68px);
  overflow: hidden;
  border-radius: 11px 0 0 11px;
  background: var(--bg-2);
}

.about-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  filter: grayscale(20%);
  transition: filter 0.4s;
}

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

.about-text-wrap {
  padding: 2vw 4vw 4vw 3vw;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.about-bio {
  color: var(--text-muted);
  margin-top: 1.25rem;
  line-height: 1.9;
  font-size: 14px;
}

.about-links {
  display: flex;
  gap: 1.5rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}

.about-link {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
  position: relative;
  padding-bottom: 2px;
  transition: color 0.2s;
}

.about-link::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--text);
  transition: width 0.25s ease;
}

.about-link:hover { color: var(--text); }
.about-link:hover::after { width: 100%; }

/* ── About CTA ───────────────────────────────────────────────── */
.about-cta {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.about-cta-text {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 1.25rem;
}

.about-cta-inline {
  color: var(--text);
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid var(--border);
  transition: border-color .2s;
}
.about-cta-inline:hover { border-color: var(--text); }

.about-cta-card {
  display: flex;
  flex-direction: column;
  gap: .4rem;
  padding: 1.25rem 1.5rem;
  border-radius: 8px;
  border: 1px solid var(--border);
  text-decoration: none;
  transition: border-color .2s, background .2s;
  background: var(--bg-2);
}
.about-cta-card:hover { border-color: var(--text-muted); background: var(--bg-3); }

.about-cta-card-label {
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.about-cta-card-title {
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  line-height: 1.4;
}

.about-cta-card-desc {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-top: .2rem;
}

.about-cta-card-url {
  font-size: 11px;
  color: var(--text-dim);
  margin-top: .25rem;
  letter-spacing: .04em;
}

.about-cta-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.about-cta-col {
  display: flex;
  flex-direction: column;
}

.about-cta-header {
  display: flex;
  flex-direction: column;
  gap: .2rem;
  padding-bottom: .75rem;
  margin-bottom: .75rem;
  border-bottom: 1px solid var(--border);
}

.about-cta-co-name {
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
}

.about-cta-estd {
  font-size: 11px;
  color: var(--text-dim);
  letter-spacing: .03em;
  margin-bottom: 1.25rem;
}

.about-cta-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.8;
  margin: .75rem 0 1.25rem;
  flex: 1;
}

@media (max-width: 768px) {
  .page-card { margin: 8px; border-radius: 10px; }
  .about-section { grid-template-columns: 1fr; }
  .about-image-wrap { position: relative; top: 0; height: 60vw; border-radius: 11px 11px 0 0; }
  .about-text-wrap { padding: 5vw 5vw 6vw; }
}

/* ── Contact ─────────────────────────────────────────────────── */
.text-page {
  padding: 6vw 4vw;
  max-width: 680px;
}

.text-page p {
  color: var(--text-muted);
  margin-top: 1rem;
  line-height: 1.85;
}

.contact-form { margin-top: 2.5rem; display: flex; flex-direction: column; gap: 1.25rem; }

.form-group { display: flex; flex-direction: column; gap: 0.4rem; }

.form-group label {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.form-group input,
.form-group textarea,
.form-group select {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text);
  padding: 0.65rem 0.85rem;
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--text-muted); }

.form-group textarea { resize: vertical; min-height: 130px; }

.dash-content input[type="text"],
.dash-content input[type="number"],
.dash-content input[type="date"],
.dash-content input[type="email"],
.dash-content input[type="password"],
.dash-content input[type="file"],
.dash-content textarea,
.dash-content select { border-radius: 8px; }

.btn {
  display: inline-block;
  padding: 0.65rem 1.5rem;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: transparent;
  color: var(--text);
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.btn:hover { background: var(--text); color: var(--bg); border-color: var(--text); }
.btn-primary { background: var(--text); color: var(--bg); }
.btn-primary:hover { background: transparent; color: var(--text); }
.btn-danger { border-color: #555; color: #888; }
.btn-danger:hover { background: #333; color: #fff; border-color: #666; }

/* ── Lightbox ───────────────────────────────────────────────── */
#lb {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  flex-direction: column;
}
#lb.lb-open { display: flex; }

.lb-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.96);
}

/* Close */
.lb-close {
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
  z-index: 10;
  background: none;
  border: none;
  color: #888;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  transition: color 0.2s;
}
.lb-close:hover { color: #fff; }

/* Stage: arrows + image */
.lb-stage {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  min-height: 0;
  padding: 3rem 5rem;
}

.lb-img-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.lb-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
  opacity: 0;
  transition: opacity 0.3s ease;
}

/* Spinner */
.lb-spinner {
  position: absolute;
  width: 28px;
  height: 28px;
  border: 2px solid #333;
  border-top-color: #888;
  border-radius: 50%;
  animation: lb-spin 0.7s linear infinite;
  display: none;
}
@keyframes lb-spin { to { transform: rotate(360deg); } }

/* Arrows */
.lb-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: none;
  border: 1px solid #333;
  color: #888;
  font-size: 2rem;
  line-height: 1;
  width: 48px;
  height: 48px;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lb-arrow:hover { border-color: #fff; color: #fff; background: rgba(255,255,255,0.06); }
.lb-prev { left: 1rem; }
.lb-next { right: 1rem; }

/* Footer: title + counter + thumbnails */
.lb-footer {
  position: relative;
  z-index: 10;
  border-top: 1px solid #1e1e1e;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(8px);
  padding: 0.75rem 1.5rem 0;
}

.lb-info {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 0.6rem;
}

.lb-title {
  font-size: 12px;
  letter-spacing: 0.06em;
  color: #ccc;
}

.lb-counter {
  font-size: 11px;
  letter-spacing: 0.1em;
  color: #555;
}

/* Thumbnail strip */
.lb-thumbs-wrap {
  overflow-x: auto;
  scrollbar-width: none;
}
.lb-thumbs-wrap::-webkit-scrollbar { display: none; }

.lb-thumbs {
  display: flex;
  gap: 6px;
  padding-bottom: 0.75rem;
  width: max-content;
}

.lb-thumb {
  flex-shrink: 0;
  width: 64px;
  height: 48px;
  padding: 0;
  border: 2px solid transparent;
  background: #111;
  cursor: pointer;
  overflow: hidden;
  opacity: 0.45;
  transition: opacity 0.2s, border-color 0.2s;
}
.lb-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.lb-thumb:hover { opacity: 0.8; }
.lb-thumb.lb-thumb-active { border-color: #fff; opacity: 1; }

@media (max-width: 640px) {
  .lb-stage { padding: 3rem 3.5rem 1rem; }
  .lb-thumb { width: 48px; height: 36px; }
}

/* ── Dashboard ──────────────────────────────────────────────── */
.dash-layout {
  display: flex;
  min-height: calc(100vh - 68px);
  gap: 0;
  padding: 1.25rem 1.5rem;
  align-items: flex-start;
}

.dash-sidebar {
  width: 220px;
  flex-shrink: 0;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  position: sticky;
  top: calc(68px + 1.25rem);
  height: calc(100vh - 68px - 2.5rem);
  overflow-y: auto;
}

/* Profile block */
.dash-profile {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: 1.5rem 1.25rem 1.25rem;
  border-bottom: 1px solid var(--border);
}

.dash-profile-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--text);
  color: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 500;
  flex-shrink: 0;
}

.dash-profile-info { min-width: 0; }
.dash-profile-name {
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.dash-profile-role {
  font-size: 10px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-dim);
}

/* Nav */
.dash-nav { list-style: none; padding: .75rem 0; flex: 1; }

.dash-nav-section {
  font-size: 9px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-dim);
  padding: 1rem 1.25rem .35rem;
}

.dash-nav a {
  display: flex;
  align-items: center;
  gap: .6rem;
  padding: .55rem 1.25rem;
  font-size: 13px;
  color: var(--text-muted);
  text-decoration: none;
  border-left: 2px solid transparent;
  transition: background .15s, color .15s, border-color .15s;
}

.dash-nav a svg { opacity: .5; flex-shrink: 0; transition: opacity .15s; }

.dash-nav a:hover {
  background: var(--bg-3);
  color: var(--text);
  border-left-color: var(--border);
}
.dash-nav a:hover svg { opacity: .8; }

.dash-nav a.active {
  background: var(--bg-3);
  color: var(--text);
  border-left-color: var(--text);
}
.dash-nav a.active svg { opacity: 1; }

/* Sub items */
.dash-nav .sub a {
  padding-left: 2.9rem;
  font-size: 12px;
  color: var(--text-dim);
}
.dash-nav .sub a:hover,
.dash-nav .sub a.active { color: var(--text); }

.dash-nav-divider {
  height: 1px;
  background: var(--border);
  margin: .5rem 1.25rem;
}

/* Bottom back-to-site link */
.dash-back-link {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: 1rem 1.25rem;
  font-size: 12px;
  color: var(--text-dim);
  text-decoration: none;
  border-top: 1px solid var(--border);
  transition: color .15s;
  margin-top: auto;
}
.dash-back-link:hover { color: var(--text); }

.dash-content {
  flex: 1;
  overflow-x: auto;
  padding: 0 0 2rem 1.5rem;
  min-width: 0;
}

.dash-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
}

.dash-title {
  font-size: 1.5rem;
  font-weight: 300;
  letter-spacing: -0.01em;
}

.dash-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}

.dash-table th,
.dash-table td {
  padding: 0.75rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.dash-table th {
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
  font-weight: 500;
}

.dash-table td { color: var(--text-muted); }
.dash-table tr:hover td { color: var(--text); background: var(--bg-2); }

.dash-thumb {
  width: 60px;
  height: 40px;
  object-fit: cover;
  background: var(--bg-3);
}

.dash-actions { display: flex; gap: 0.5rem; }

.dash-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.dash-stat-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.5rem;
}

.dash-stat-num {
  font-size: 2rem;
  font-weight: 200;
  letter-spacing: -0.02em;
  color: var(--text);
}

.dash-stat-label {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-top: 0.25rem;
}

/* Login page */
.login-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg);
}

.login-box {
  width: 100%;
  max-width: 360px;
  padding: 2.5rem;
  background: var(--bg-2);
  border: 1px solid var(--border);
}

.login-title {
  font-size: 1.25rem;
  font-weight: 300;
  margin-bottom: 2rem;
  letter-spacing: -0.01em;
}

/* Messages */
.messages { list-style: none; margin-bottom: 1.5rem; }
.messages li {
  padding: 0.65rem 1rem;
  font-size: 12px;
  border: 1px solid var(--border);
  margin-bottom: 0.5rem;
  background: var(--bg-2);
}
.messages .error { border-color: #555; color: #aaa; }
.messages .success { border-color: #444; color: #ccc; }

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 1280px) {
  .home-photo-grid { columns: 4; column-gap: 12px; }
}

@media (max-width: 1024px) {
  .home-photo-grid { columns: 3; column-gap: 10px; }
}

@media (min-width: 2560px) { .gallery { columns: 9; } }
@media (min-width: 1920px) and (max-width: 2559px) { .gallery { columns: 8; } }
@media (min-width: 1600px) and (max-width: 1919px) { .gallery { columns: 7; } }
@media (min-width: 1440px) and (max-width: 1599px) { .gallery { columns: 6; } }

@media (max-width: 900px) {
  .gallery { columns: 3; }
  .home-photo-grid { columns: 2; column-gap: 10px; }
}

@media (max-width: 640px) {
  .site-nav { display: none; }
  .theme-toggle { display: none; }
  .header-dash-link { display: none; }
  .menu-toggle { display: flex; }
  .gallery { columns: 2; }
  .home-photo-grid { columns: 2; column-gap: 8px; }
  .dash-sidebar { display: none; }
  .dash-layout { flex-direction: column; padding: .75rem; }
  .dash-content { padding: 0; }
}

@media (max-width: 480px) {
  .dash-content { padding: 1rem 4vw; }
  .pf-dates { grid-template-columns: 1fr; }
  .pf-location { grid-template-columns: 1fr; }
  .form-group input,
  .form-group select,
  .form-group textarea { font-size: 16px; }
}

@media (max-width: 400px) {
  .home-photo-grid { columns: 1; }
}

/* ── Mobile responsive additions ───────────────────────────── */
@media (max-width: 768px) {
  /* About CTA */
  .about-cta-cards { grid-template-columns: 1fr; }

  /* Page hero */
  .page-hero { margin: 8px; padding: 1.5rem 1.5rem 1.5rem; border-radius: 10px; }
  .page-hero--row { padding-left: 1.25rem; padding-right: 1.25rem; }

  /* Home sections grid */
  .home-sections { grid-template-columns: 1fr; }
  .home-section-link { aspect-ratio: 4/3; }
}

@media (max-width: 480px) {
  /* Header */
  .site-logo { font-size: 12px; letter-spacing: .14em; }

  /* Page hero */
  .page-hero { margin: 6px; padding: 1.25rem 1rem 1.25rem; border-radius: 8px; }
  .page-hero--row { padding-left: 1rem; padding-right: 1rem; }
  .page-title { font-size: clamp(1.5rem, 8vw, 2.5rem); }

  /* Filter chips */
  .page-hero-filters { gap: .4rem; margin-top: 1rem; padding-top: 1rem; }
  .filter-chip { font-size: 10px; padding: .25rem .65rem; }

  /* Photo grid */
  .home-photo-section { margin: 6px; padding: 1.25rem 1rem 1.75rem; border-radius: 8px; }
  .home-photo-grid { column-gap: 5px; }
  .home-photo-item { margin-bottom: 5px; }

  /* Lightbox */
  .lb-stage { padding: 2rem 1.25rem 1rem; }
  .lb-close { top: .75rem; right: .75rem; font-size: 1.5rem; }

  /* Toast */
  #toast-container { right: .75rem; left: .75rem; bottom: 1rem; }
  .toast { max-width: 100%; }

  /* Footer */
  .site-footer { flex-direction: column; align-items: flex-start; gap: .5rem; padding: 1.25rem 4vw; }

  /* Dashboard */
  .dash-header { flex-wrap: wrap; gap: .75rem; }
  .dash-title { font-size: 1.1rem; }
  .dash-table { font-size: 11px; }
  .dash-table th, .dash-table td { padding: .5rem .6rem; }
  .dash-stats { grid-template-columns: repeat(2, 1fr); }
  .dash-content { padding: 1rem 4vw; }
  .pf-grid { grid-template-columns: 1fr; }
  .pf-sidebar { position: static !important; top: auto !important; margin-top: 1.5rem; }
  .pf-dates { grid-template-columns: 1fr 1fr; }
  .pf-location { grid-template-columns: 1fr 1fr; }
  .vf-form { max-width: 100% !important; }

  /* Mobile overlay nav */
  .mobile-overlay-nav a { font-size: clamp(1.5rem, 7vw, 2.25rem); }
}
