/* ─── Fonts ──────────────────────────────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Cormorant:ital,wght@0,300;0,400;0,600;1,300;1,400&family=DM+Sans:wght@400;600;700&display=swap');

/* ─── Variables ──────────────────────────────────────────────────────────────── */
:root {
  --color-bg:          #070605;
  --color-surface:     #0f0d0b;
  --color-card:        #131109;
  --color-card-hover:  #1b1813;
  --color-primary:     #c9a84c;
  --color-text:        #ede5d3;
  --color-text-muted:  #68605a;
  --color-border:      #222018;
  --font-display:      'Bebas Neue', sans-serif;
  --font-serif:        'Cormorant', Georgia, serif;
  --font-ui:           'DM Sans', system-ui, sans-serif;
  --ease:              cubic-bezier(0.16, 1, 0.3, 1);
}

/* ─── Reset ──────────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-serif);
  font-size: 18px;
  line-height: 1.6;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; color: inherit; }

/* ─── Intro Flash (film projector start) ─────────────────────────────────────── */
.intro-screen {
  position: fixed;
  inset: 0;
  z-index: 9998;
  pointer-events: none;
  animation: introFlash 1.4s ease forwards;
}

@keyframes introFlash {
  0%   { background: #fff; opacity: 1; }
  8%   { background: #000; opacity: 1; }
  18%  { background: #000; opacity: 0.85; }
  50%  { background: #070605; opacity: 0.3; }
  100% { background: #070605; opacity: 0; }
}

/* ─── Film Grain ─────────────────────────────────────────────────────────────── */
.film-grain {
  position: fixed;
  inset: 0;
  z-index: 9997;
  pointer-events: none;
  opacity: 0.055;
  mix-blend-mode: overlay;
  animation: grain 0.35s steps(1) infinite;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='256' height='256'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.88' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='256' height='256' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 256px 256px;
}

@keyframes grain {
  0%   { transform: translate(0,0) }
  10%  { transform: translate(-3%,-2%) }
  20%  { transform: translate(2%,3%) }
  30%  { transform: translate(-2%,4%) }
  40%  { transform: translate(4%,-1%) }
  50%  { transform: translate(-3%,2%) }
  60%  { transform: translate(1%,-4%) }
  70%  { transform: translate(-4%,1%) }
  80%  { transform: translate(2%,-3%) }
  90%  { transform: translate(-1%,4%) }
  100% { transform: translate(3%,-2%) }
}

/* ─── Navbar ─────────────────────────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.75rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: padding 0.4s var(--ease), background 0.4s var(--ease), border-color 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}

.navbar.scrolled {
  background: rgba(7, 6, 5, 0.93);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 1rem 3rem;
  border-bottom-color: var(--color-border);
}

.navbar__logo {
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: 0.22em;
  color: var(--color-primary);
  transition: opacity 0.2s;
}
.navbar__logo:hover { opacity: 0.7; }

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

.navbar__links a {
  font-family: var(--font-ui);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #ffffff;
  transition: color 0.2s;
}
.navbar__links a:hover { color: var(--color-primary); }

.navbar__admin-btn {
  font-size: 0.82rem;
  color: var(--color-text-muted);
  transition: color 0.2s;
}
.navbar__admin-btn:hover { color: var(--color-primary); }

/* ─── Hero ───────────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg video,
.hero__bg iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.hero__bg iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 177.78vh;
  height: 56.25vw;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
}

.hero__fallback {
  width: 100%;
  height: 100%;
  position: relative;
  background:
    radial-gradient(ellipse at 20% 55%, rgba(52, 38, 14, 0.75) 0%, transparent 60%),
    radial-gradient(ellipse at 78% 25%, rgba(18, 13, 5, 0.9) 0%, transparent 55%),
    #070605;
}

.hero__fallback::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.013) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.013) 1px, transparent 1px);
  background-size: 72px 72px;
  background-position: center;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to bottom,
    rgba(7,6,5,0.15) 0%,
    rgba(7,6,5,0.08) 25%,
    rgba(7,6,5,0.55) 65%,
    rgba(7,6,5,0.97) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: 0 5vw 6.5rem;
  width: 100%;
}

.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 1rem;
  opacity: 0;
  animation: slideUp 0.9s var(--ease) 0.4s forwards;
}

.hero__eyebrow-line {
  width: 36px;
  height: 1px;
  background: var(--color-primary);
  flex-shrink: 0;
}

.hero__subtitle {
  font-family: var(--font-serif);
  font-size: 0.72rem;
  font-weight: 300;
  font-style: italic;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--color-primary);
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(5rem, 15vw, 158px);
  line-height: 0.87;
  letter-spacing: 0.025em;
  color: var(--color-text);
  max-width: 80vw;
  opacity: 0;
  animation: slideUp 1s var(--ease) 0.55s forwards;
}

.hero__bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-top: 2.5rem;
  opacity: 0;
  animation: slideUp 0.9s var(--ease) 0.75s forwards;
}

.hero__description {
  font-family: var(--font-serif);
  font-size: 0.98rem;
  font-weight: 300;
  font-style: italic;
  color: rgba(237, 229, 211, 0.55);
  max-width: 340px;
  line-height: 1.75;
}

.hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  font-family: var(--font-ui);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-text);
  padding-bottom: 0.35rem;
  border-bottom: 1px solid rgba(201,168,76,0.5);
  transition: color 0.25s, gap 0.35s var(--ease), border-color 0.25s;
  white-space: nowrap;
}
.hero__cta:hover {
  color: var(--color-primary);
  gap: 1.4rem;
  border-color: var(--color-primary);
}

.hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 0;
  animation: fadeIn 1s ease 1.3s forwards;
}

.hero__scroll-line {
  width: 1px;
  height: 56px;
  background: linear-gradient(to bottom, var(--color-primary), transparent);
  animation: scrollPulse 2.6s ease-in-out infinite;
  transform-origin: top;
}

@keyframes scrollPulse {
  0%, 100% { transform: scaleY(1); opacity: 0.6; }
  50%       { transform: scaleY(0.35); opacity: 0.2; }
}

.hero__frame-id {
  position: absolute;
  top: 50%;
  right: 2.5rem;
  transform: translateY(-50%) rotate(90deg);
  font-family: var(--font-display);
  font-size: 0.58rem;
  letter-spacing: 0.55em;
  color: var(--color-text-muted);
  opacity: 0.28;
  z-index: 2;
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
}

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

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

/* ─── Gallery Section ────────────────────────────────────────────────────────── */
.gallery-section {
  padding: 7rem 3rem 6rem;
}

.section-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 2.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--color-border);
}

.section-header-left {
  display: flex;
  align-items: baseline;
  gap: 1.25rem;
}

.section-label {
  font-family: var(--font-serif);
  font-size: 0.7rem;
  font-weight: 300;
  font-style: italic;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-primary);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  letter-spacing: 0.08em;
  color: var(--color-text);
  line-height: 1;
}

.section-count {
  font-family: var(--font-display);
  font-size: 0.82rem;
  letter-spacing: 0.2em;
  color: var(--color-text-muted);
}

/* ─── Filters ────────────────────────────────────────────────────────────────── */
.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin-bottom: 2.5rem;
  border-bottom: 1px solid var(--color-border);
}

.filter-btn {
  padding: 0.55rem 1.4rem 0.55rem 0;
  margin-right: 1.4rem;
  font-family: var(--font-ui);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  transition: color 0.2s;
  position: relative;
  background: transparent;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 0.45em;
}

.filter-btn::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: calc(100% - 1.4rem);
  height: 1px;
  background: var(--color-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}

.filter-btn:hover { color: var(--color-text); }
.filter-btn.active { color: var(--color-text); }
.filter-btn.active::after { transform: scaleX(1); }

/* ─── Gallery Grid ───────────────────────────────────────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 350px;
  gap: 3px;
  grid-auto-flow: dense;
}

.gallery-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: var(--color-card);
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.75s var(--ease),
    transform 0.75s var(--ease);
}

.gallery-card.revealed {
  opacity: 1;
  transform: translateY(0);
}

.gallery-card:nth-child(3n+2) { transition-delay: 0.09s; }
.gallery-card:nth-child(3n)   { transition-delay: 0.18s; }

.gallery-card[data-featured="true"] {
  grid-column: span 2;
}

/* Scan-line sweep on hover */
.gallery-card::before {
  content: '';
  position: absolute;
  top: -4px;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(to right, transparent 0%, rgba(201,168,76,0.7) 50%, transparent 100%);
  z-index: 3;
  transition: top 0.65s var(--ease);
  pointer-events: none;
}
.gallery-card:hover::before { top: 106%; }

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.85s var(--ease), filter 0.5s ease;
  filter: brightness(0.8) saturate(0.85);
}

.gallery-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(7,6,5,0.96) 0%,
    rgba(7,6,5,0.35) 38%,
    transparent 65%
  );
  opacity: 0;
  transition: opacity 0.38s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.75rem;
}

.gallery-card:hover img {
  transform: scale(1.07);
  filter: brightness(0.65) saturate(0.75);
}
.gallery-card:hover .gallery-card__overlay { opacity: 1; }

.gallery-card__category {
  font-family: var(--font-serif);
  font-size: 0.62rem;
  font-weight: 300;
  font-style: italic;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 0.45rem;
}

.gallery-card__title {
  font-family: var(--font-display);
  font-size: 1.75rem;
  letter-spacing: 0.05em;
  color: var(--color-text);
  line-height: 1;
}

.gallery-card__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.82);
  width: 56px;
  height: 56px;
  border: 1px solid rgba(201,168,76,0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  font-size: 0.85rem;
  padding-left: 3px;
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.45s var(--ease), background 0.3s ease;
}
.gallery-card:hover .gallery-card__play {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
  background: rgba(201,168,76,0.12);
}

.gallery-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 5rem 2rem;
  color: var(--color-text-muted);
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.05rem;
}

/* ─── Gallery Card Badges ────────────────────────────────────────────────────── */
.gallery-card__star {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  z-index: 4;
  width: 26px;
  height: 26px;
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.55);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  font-size: 0.55rem;
  backdrop-filter: blur(4px);
}

.gallery-card__stack {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  z-index: 4;
  width: 26px;
  height: 26px;
  background: rgba(7,6,5,0.65);
  border: 1px solid rgba(237,229,211,0.18);
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(237,229,211,0.75);
  font-size: 0.58rem;
  backdrop-filter: blur(4px);
}

.gallery-card__category i {
  margin-right: 0.35em;
  opacity: 0.75;
}

/* ─── About Section ─────────────────────────────────────────────────────────── */
.about-section {
  padding: 7rem 3rem;
  border-top: 1px solid var(--color-border);
}

.about-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 5rem;
  align-items: center;
}

.about-photo-wrap {
  display: flex;
  justify-content: center;
}

.about-photo {
  width: 240px;
  height: 240px;
  border-radius: 50%;
  border: 1px solid var(--color-primary);
  overflow: hidden;
  background: var(--color-card);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 0 0 6px var(--color-bg), 0 0 0 7px var(--color-border);
  transition: box-shadow 0.4s var(--ease);
}
.about-photo:hover {
  box-shadow: 0 0 0 6px var(--color-bg), 0 0 0 7px var(--color-primary);
}

.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.about-photo__placeholder {
  font-size: 5rem;
  color: var(--color-border);
}

.about-eyebrow {
  margin-bottom: 0.75rem;
}

.about-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  letter-spacing: 0.05em;
  color: var(--color-text);
  line-height: 0.95;
  margin-bottom: 0.6rem;
}

.about-subtitle {
  font-family: var(--font-serif);
  font-size: 0.85rem;
  font-weight: 300;
  font-style: italic;
  letter-spacing: 0.2em;
  color: var(--color-primary);
  text-transform: uppercase;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--color-border);
}

.about-body {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 300;
  color: rgba(237, 229, 211, 0.75);
  line-height: 1.9;
}

.about-body p + p {
  margin-top: 1.1em;
}

/* ─── Contact Section ────────────────────────────────────────────────────────── */
.contact-section {
  padding: 7rem 3rem;
  border-top: 1px solid var(--color-border);
  position: relative;
  overflow: hidden;
}

.contact-deco {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-size: clamp(5rem, 16vw, 14rem);
  letter-spacing: 0.12em;
  color: var(--color-border);
  opacity: 0.3;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
  z-index: 0;
}

.contact-inner {
  position: relative;
  z-index: 1;
  max-width: 860px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 5rem;
  align-items: start;
}

.contact-header { padding-top: 0.5rem; }

.contact-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 5rem);
  letter-spacing: 0.05em;
  color: var(--color-text);
  line-height: 0.9;
  margin-bottom: 1.5rem;
}

.contact-intro {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  font-weight: 300;
  font-style: italic;
  color: rgba(237, 229, 211, 0.6);
  line-height: 1.8;
}

/* ─── Contact Form ───────────────────────────────────────────────────────────── */
.contact-form { display: flex; flex-direction: column; gap: 1rem; }

.cf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.cf-group { display: flex; flex-direction: column; gap: 0.35rem; }

.cf-group label {
  font-family: var(--font-serif);
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.cf-group input,
.cf-group textarea {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  color: var(--color-text);
  font-family: var(--font-serif);
  font-size: 0.95rem;
  font-weight: 300;
  padding: 0.65rem 0.9rem;
  outline: none;
  transition: border-color 0.2s;
  border-radius: 2px;
  resize: vertical;
}
.cf-group input::placeholder,
.cf-group textarea::placeholder { color: #3a3530; }
.cf-group input:focus,
.cf-group textarea:focus { border-color: var(--color-primary); }

.cf-error {
  font-family: var(--font-serif);
  font-size: 0.82rem;
  font-style: italic;
  color: #e05050;
  min-height: 1.2em;
}

.cf-submit {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  align-self: flex-start;
  font-family: var(--font-serif);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--color-text);
  padding-bottom: 0.35rem;
  border-bottom: 1px solid rgba(201,168,76,0.5);
  background: none;
  border-top: none;
  border-left: none;
  border-right: none;
  cursor: pointer;
  transition: color 0.25s, gap 0.35s var(--ease), border-color 0.25s;
}
.cf-submit:hover { color: var(--color-primary); gap: 1.4rem; border-color: var(--color-primary); }

.cf-hint {
  font-family: var(--font-serif);
  font-size: 0.72rem;
  font-style: italic;
  color: var(--color-text-muted);
  opacity: 0.6;
}

/* ─── Lightbox ───────────────────────────────────────────────────────────────── */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(4, 3, 2, 0.97);
  align-items: center;
  justify-content: center;
}
.lightbox.active {
  display: flex;
  animation: fadeIn 0.3s ease;
}

.lightbox__inner {
  position: relative;
  width: 92vw;
  max-width: 1180px;
  max-height: 92vh;
  display: grid;
  grid-template-columns: 1fr 270px;
  grid-template-rows: 1fr auto auto;
  gap: 0 3rem;
  align-items: start;
}

.lightbox__close {
  position: fixed;
  top: 1.75rem;
  right: 2.5rem;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
  font-size: 0.9rem;
  border: 1px solid var(--color-border);
  transition: color 0.2s, border-color 0.2s;
  z-index: 10;
}
.lightbox__close:hover {
  color: var(--color-primary);
  border-color: var(--color-primary);
}

.lightbox__media-wrap {
  grid-column: 1;
  grid-row: 1;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  max-height: 85vh;
}

.lightbox__media {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox__media-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(7,6,5,0.65);
  border: 1px solid rgba(237,229,211,0.18);
  color: rgba(237,229,211,0.75);
  font-size: 0.85rem;
  cursor: pointer;
  backdrop-filter: blur(8px);
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.lightbox__media-nav:hover {
  background: rgba(201,168,76,0.18);
  border-color: rgba(201,168,76,0.55);
  color: var(--color-primary);
}
#lb-media-prev { left: 0.75rem; }
#lb-media-next { right: 0.75rem; }

.lightbox__media img {
  max-width: 100%;
  max-height: 85vh;
  object-fit: contain;
}

.lightbox__media video {
  max-width: 100%;
  max-height: 85vh;
}

.lightbox__media iframe {
  width: 100%;
  aspect-ratio: 16/9;
  border: none;
}

.lightbox__info {
  grid-column: 2;
  grid-row: 1 / 3;
  padding-top: 0.25rem;
  overflow-y: auto;
  max-height: 65vh;
}

.lightbox__category {
  display: block;
  font-family: var(--font-serif);
  font-size: 0.62rem;
  font-weight: 300;
  font-style: italic;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 0.75rem;
}

.lightbox__title {
  font-family: var(--font-display);
  font-size: 2.4rem;
  letter-spacing: 0.04em;
  color: var(--color-text);
  line-height: 0.95;
  margin-bottom: 1.5rem;
}

.lightbox__description {
  font-family: var(--font-serif);
  font-size: 0.88rem;
  font-weight: 300;
  font-style: italic;
  color: var(--color-text-muted);
  line-height: 1.85;
  margin-bottom: 2rem;
}

.lightbox__year {
  display: block;
  font-family: var(--font-display);
  font-size: 4.5rem;
  color: var(--color-border);
  letter-spacing: 0.04em;
  line-height: 1;
}

.lightbox__nav-row {
  grid-column: 2;
  grid-row: 3;
  display: flex;
  gap: 0.5rem;
  align-self: end;
  padding-bottom: 0.25rem;
  padding-top: 1.5rem;
}

.lightbox__nav {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-border);
  color: var(--color-text-muted);
  font-size: 0.75rem;
  transition: border-color 0.2s, color 0.2s;
  background: transparent;
}
.lightbox__nav:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

/* ─── Lightbox Media Strip ───────────────────────────────────────────────────── */
.lightbox__media-strip {
  grid-column: 1;
  grid-row: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.85rem 0 0.25rem;
}

.lightbox__strip-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(237,229,211,0.2);
  flex-shrink: 0;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.lightbox__strip-dot.active {
  background: var(--color-primary);
  transform: scale(1.4);
}
.lightbox__strip-dot:hover:not(.active) { background: rgba(237,229,211,0.45); }

/* ─── Footer ─────────────────────────────────────────────────────────────────── */
.footer {
  padding: 2.5rem 3rem;
  border-top: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer__visits {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  color: var(--color-text-muted);
  opacity: 0.5;
}
.footer__visits-icon { font-size: 0.7rem; }

.footer__text {
  font-family: var(--font-serif);
  font-size: 0.73rem;
  font-weight: 300;
  font-style: italic;
  letter-spacing: 0.1em;
  color: var(--color-text-muted);
}

.footer__logo {
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: 0.25em;
  color: var(--color-border);
  user-select: none;
}

/* ─── Responsive ─────────────────────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .lightbox__inner {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto auto;
    gap: 1.5rem 0;
    width: 94vw;
  }
  .lightbox__media-wrap {
    grid-column: 1; grid-row: 1;
    max-height: 50vh;
  }
  .lightbox__media-strip { grid-column: 1; grid-row: 2; }
  .lightbox__info {
    grid-column: 1; grid-row: 3;
    display: flex; gap: 1.5rem; align-items: flex-start;
    max-height: none;
  }
  .lightbox__year { font-size: 3rem; }
  .lightbox__nav-row { grid-column: 1; grid-row: 4; }
}

@media (max-width: 1024px) {
  .navbar { padding: 1.25rem 2rem; }
  .navbar.scrolled { padding: 0.9rem 2rem; }
  .gallery-section { padding: 5rem 2rem 4.5rem; }
  .about-section { padding: 5rem 2rem; }
  .about-inner { grid-template-columns: 200px 1fr; gap: 3rem; }
  .about-photo { width: 180px; height: 180px; }
  .contact-section { padding: 5rem 2rem; }
  .contact-inner { grid-template-columns: 200px 1fr; gap: 3rem; }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 290px;
  }
}

@media (max-width: 768px) {
  .navbar { padding: 1rem 1.25rem; }
  .navbar.scrolled { padding: 0.7rem 1.25rem; }
  .navbar__links { display: none; }

  .hero__content { padding: 0 1.25rem 5rem; }
  .hero__title { font-size: clamp(3.75rem, 18vw, 80px); max-width: 95vw; }
  .hero__bottom { flex-direction: column; align-items: flex-start; gap: 1.5rem; }
  .hero__description { max-width: 100%; }
  .hero__frame-id { display: none; }

  .gallery-section { padding: 4rem 1.25rem 3.5rem; }
  .section-header { flex-direction: column; align-items: flex-start; gap: 0.4rem; }
  .about-section { padding: 4rem 1.25rem; }
  .about-inner { grid-template-columns: 1fr; gap: 2.5rem; text-align: center; }
  .about-photo-wrap { justify-content: center; }
  .about-subtitle { border-bottom: none; padding-bottom: 0; }
  .contact-section { padding: 4rem 1.25rem; }
  .contact-inner { grid-template-columns: 1fr; gap: 2rem; }
  .cf-row { grid-template-columns: 1fr; }
  .footer { flex-wrap: wrap; gap: 0.5rem; justify-content: center; }
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 270px;
    gap: 2px;
  }
  .gallery-card[data-featured="true"] { grid-column: span 1; }
  .gallery-card::before { display: none; }

  .lightbox__close { top: 0.875rem; right: 1rem; }
  .lightbox__title { font-size: 1.85rem; }

  .footer { flex-direction: column; gap: 0.75rem; text-align: center; padding: 2rem 1.25rem; }
}
