/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif:ital,wght@0,400;0,700;1,400;1,700&family=Inter:wght@300;400;600&family=Space+Grotesk:wght@300;500;700&family=DM+Mono:wght@300;400&display=swap');

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
:root {
  --fc-nav-height: 96px;
  --fc-shell-pad: 2.5rem;
  --fc-surface: rgba(10, 10, 10, 0.78);
  --fc-surface-strong: rgba(18, 18, 18, 0.92);
  --fc-border: rgba(255,255,255,0.08);
}

body {
  background: #000;
  color: #e2e2e2;
  font-family: 'Inter', sans-serif;
  -webkit-font-smoothing: antialiased;
  cursor: none;
  overflow-x: hidden;
}

@media (max-width: 768px) {
  body { cursor: auto; }
  #fc-cursor { display: none; }
}

::selection { background: #fff; color: #000; }

/* ── Grain ── */
body::after {
  content: '';
  position: fixed; inset: 0; z-index: 9998;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  background-size: 220px 220px;
  opacity: 0.025;
}

/* ── Custom Cursor ── */
#fc-cursor {
  position: fixed; top: 0; left: 0; z-index: 9999;
  pointer-events: none; mix-blend-mode: difference;
}
#fc-cursor-dot {
  width: 8px; height: 8px; background: #fff;
  border-radius: 50%; position: absolute;
  transform: translate(-50%, -50%);
  transition: width 0.3s ease, height 0.3s ease;
}
#fc-cursor-ring {
  width: 36px; height: 36px; border: 1px solid rgba(255,255,255,0.5);
  border-radius: 50%; position: absolute;
  transform: translate(-50%, -50%);
  transition: width 0.3s ease, height 0.3s ease, border-color 0.3s ease;
}
body.fc-cursor-hover #fc-cursor-dot { width: 4px; height: 4px; }
body.fc-cursor-hover #fc-cursor-ring { width: 56px; height: 56px; border-color: rgba(255,255,255,0.9); }

/* ══════════════════════════════════════════
   NAVIGATION
══════════════════════════════════════════ */
.fc-nav {
  position: fixed; top: 0; width: 100%; z-index: 500;
  backdrop-filter: blur(20px) saturate(120%);
  -webkit-backdrop-filter: blur(20px) saturate(120%);
  background: var(--fc-surface);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
              background 0.25s ease,
              border-color 0.25s ease,
              backdrop-filter 0.25s ease;
}
.home .fc-nav.is-at-top {
  background: rgba(0,0,0,0.14);
  border-bottom-color: transparent;
  backdrop-filter: blur(8px) saturate(105%);
  -webkit-backdrop-filter: blur(8px) saturate(105%);
}
.fc-nav__inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  padding: 1.35rem var(--fc-shell-pad);
}
.fc-nav__brand {
  font-family: 'Noto Serif', serif;
  font-size: 1.15rem;
  line-height: 1;
  letter-spacing: -0.02em;
  color: #fff;
  font-style: italic;
  text-decoration: none;
  cursor: none;
}
.fc-nav__meta {
  display: flex;
  align-items: flex-start;
  gap: 2.25rem;
}
.fc-nav__menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.9rem 1.6rem;
  list-style: none;
}
.fc-nav__menu .menu-item {
  list-style: none;
}
.fc-nav__link,
.fc-nav__menu a {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 9px; letter-spacing: 0.3em;
  text-transform: uppercase; color: #888;
  text-decoration: none;
  transition: color 0.2s ease;
  cursor: none;
  width: fit-content;
}
.fc-nav__link:hover,
.fc-nav__menu a:hover,
.fc-nav__link[aria-current="page"],
.fc-nav__menu .current-menu-item > .fc-nav__link,
.fc-nav__menu .current-menu-item > a { color: #fff; }
.fc-nav__handle {
  text-align: right;
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #555;
  white-space: nowrap;
}

/* Remove WP admin bar overlap */
.admin-bar .fc-nav { top: 32px; }
@media screen and (max-width: 782px) {
  .admin-bar .fc-nav { top: 46px; }
}

/* ══════════════════════════════════════════
   HOME PAGE
══════════════════════════════════════════ */
.home #main {
  padding-top: calc(var(--fc-nav-height, 96px) + 1.25rem);
}
.fc-home-main { padding-top: 8rem; }

/* Hero */
.fc-hero {
  padding: 3.5rem var(--fc-shell-pad) 5rem;
  max-width: 1440px;
}
.fc-hero__eyebrow {
  display: flex; align-items: center; gap: 1rem;
  margin-bottom: 1.75rem;
}
.fc-hero__eyebrow-line { height: 1px; width: 80px; background: #444; flex-shrink: 0; }
.fc-hero__eyebrow-text {
  font-family: 'Space Grotesk', sans-serif; font-size: 9px;
  letter-spacing: 0.35em; text-transform: uppercase; color: #555;
}
.fc-hero__headline {
  font-family: 'Noto Serif', serif;
  font-size: clamp(3rem, 7vw, 7rem);
  line-height: 1; letter-spacing: -0.02em;
  color: #fff; font-weight: 700;
  max-width: 900px;
}
.fc-hero__headline em { font-style: italic; color: #8f8f8f; }
.fc-distort-text {
  position: relative;
  display: inline-block;
  transition: transform 0.24s ease, color 0.24s ease, filter 0.24s ease;
}
.fc-distort-text::before,
.fc-distort-text::after {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  mix-blend-mode: screen;
}
.fc-distort-text:hover {
  color: #fff;
  filter: contrast(1.2);
  transform: skewX(-7deg);
}
.fc-distort-text:hover::before {
  opacity: 0.85;
  color: rgba(255, 70, 70, 0.9);
  transform: translate(-0.04em, -0.02em);
  animation: fc-distort-a 260ms steps(2, end) infinite;
}
.fc-distort-text:hover::after {
  opacity: 0.75;
  color: rgba(70, 180, 255, 0.9);
  transform: translate(0.05em, 0.03em);
  animation: fc-distort-b 210ms steps(2, end) infinite;
}
@keyframes fc-distort-a {
  0% { clip-path: inset(0 0 72% 0); }
  33% { clip-path: inset(34% 0 28% 0); }
  66% { clip-path: inset(68% 0 6% 0); }
  100% { clip-path: inset(10% 0 58% 0); }
}
@keyframes fc-distort-b {
  0% { clip-path: inset(56% 0 12% 0); }
  33% { clip-path: inset(12% 0 66% 0); }
  66% { clip-path: inset(38% 0 26% 0); }
  100% { clip-path: inset(72% 0 4% 0); }
}

/* Ticker */
.fc-ticker {
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 1rem 0; margin: 3rem 0 0;
}
.fc-ticker__track {
  display: flex; white-space: nowrap;
  animation: fc-ticker 22s linear infinite;
}
.fc-ticker__item {
  font-family: 'Noto Serif', serif; font-style: italic;
  font-size: 0.75rem; letter-spacing: 0.05em; color: #333;
  padding: 0 2.5rem; flex-shrink: 0;
}
.fc-ticker__dot { color: #555; }
@keyframes fc-ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Project Grid */
.fc-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  margin-top: 4rem;
}
.fc-card {
  position: relative; overflow: hidden;
  background: #111;
  cursor: none;
  display: block;
  text-decoration: none;
}
.fc-card--wide {
  grid-column: 1 / -1;
  aspect-ratio: 21/7;
}
.fc-card--standard { aspect-ratio: 16/10; }

.fc-card__img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(1) brightness(0.85);
  transition: filter 0.8s cubic-bezier(0.165,0.84,0.44,1),
              transform 0.9s cubic-bezier(0.165,0.84,0.44,1);
  display: block;
}
.fc-card:hover .fc-card__img {
  filter: grayscale(0) brightness(1);
  transform: scale(1.05);
}
.fc-card__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, transparent 55%);
  opacity: 0;
  transition: opacity 0.45s cubic-bezier(0.4,0,0.2,1);
  display: flex; align-items: flex-end;
  padding: 2rem;
}
.fc-card:hover .fc-card__overlay { opacity: 1; }
.fc-card__meta {
  transform: translateY(8px);
  transition: transform 0.45s ease;
}
.fc-card:hover .fc-card__meta { transform: translateY(0); }
.fc-card__tag {
  font-family: 'Space Grotesk', sans-serif; font-size: 8px;
  letter-spacing: 0.4em; text-transform: uppercase;
  color: #aaa; display: block; margin-bottom: 0.4rem;
}
.fc-card__title {
  font-family: 'Noto Serif', serif;
  font-size: 2rem; font-weight: 700;
  color: #fff; letter-spacing: -0.01em;
  line-height: 1;
}
.fc-card__hover-text {
  margin-top: 0.85rem;
  max-width: 32ch;
  font-family: 'Inter', sans-serif;
  font-size: 0.86rem;
  line-height: 1.5;
  color: rgba(255,255,255,0.72);
}
.fc-card__placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  background: #111;
}
.fc-card__placeholder-text {
  font-family: 'Space Grotesk', sans-serif; font-size: 9px;
  letter-spacing: 0.3em; text-transform: uppercase; color: #333;
}

/* CTA */
.fc-cta {
  text-align: center;
  padding: 7rem 2.5rem;
  border-top: 1px solid rgba(255,255,255,0.05);
  margin-top: 6rem;
}
.fc-cta__sub {
  font-family: 'DM Mono', monospace;
  font-size: 9px; letter-spacing: 0.2em;
  text-transform: uppercase; color: #333;
  margin-bottom: 1.5rem; display: block;
}
.fc-cta__headline {
  font-family: 'Noto Serif', serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  color: #fff; font-weight: 700;
  letter-spacing: -0.02em; margin-bottom: 2.5rem;
}
.fc-btn {
  display: inline-block;
  border: 1px solid #fff; color: #fff;
  padding: 1.1rem 3rem;
  font-family: 'Space Grotesk', sans-serif; font-size: 9px;
  letter-spacing: 0.35em; text-transform: uppercase;
  text-decoration: none;
  transition: background 0.3s ease, color 0.3s ease;
  cursor: none;
}
.fc-btn:hover { background: #fff; color: #000; }

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
.fc-footer {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 2.5rem;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1rem;
  background: #000;
}
.fc-footer__copy {
  font-family: 'DM Mono', monospace;
  font-size: 9px; letter-spacing: 0.3em;
  text-transform: uppercase; color: #333;
}
.fc-footer__links { display: flex; }
.fc-footer__menu {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 2.5rem;
  list-style: none;
}
.fc-footer__menu .menu-item {
  list-style: none;
}
.fc-footer__link,
.fc-footer__menu a {
  font-family: 'DM Mono', monospace; font-size: 9px;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: #333; text-decoration: none;
  transition: color 0.2s; cursor: none;
}
.fc-footer__link:hover,
.fc-footer__menu a:hover { color: #fff; }

/* ══════════════════════════════════════════
   PROJECT / ALBUM SINGLE (single-fc_album.php)
══════════════════════════════════════════ */
.fc-single-main { padding-top: 7rem; }

.fc-album-header {
  padding: 5rem 2.5rem 4rem;
  text-align: center;
}
.fc-album-header__year {
  font-family: 'Space Grotesk', sans-serif; font-size: 9px;
  letter-spacing: 0.4em; text-transform: uppercase; color: #444;
  margin-bottom: 1rem; display: block;
}
.fc-album-header__title {
  font-family: 'Noto Serif', serif;
  font-size: clamp(2.5rem, 6vw, 5.5rem);
  font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: #fff;
}
.fc-album-header__intro {
  max-width: 760px;
  margin: 2rem auto 0;
}
.fc-album-header__location {
  margin-bottom: 1.25rem;
}
.fc-album-header__description {
  font-family: 'Noto Serif', serif;
  font-size: 1.08rem;
  line-height: 1.9;
  color: #a9a9a9;
}
.fc-album-header__description p {
  margin-bottom: 1rem;
}

/* Gallery Stack */
.fc-gallery {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin: 0 auto;
}
.fc-gallery--contained {
  max-width: 980px;
  padding: 0 2.5rem;
}
.fc-gallery--wide {
  max-width: 1440px;
  padding: 0 2.5rem;
}
.fc-gallery--full {
  max-width: none;
}

.fc-gallery__full {
  width: 100%; aspect-ratio: 16/9;
  overflow: hidden; background: #111;
}
.fc-gallery__full img {
  width: 100%; height: 100%; object-fit: cover;
  filter: none;
  transition: transform 0.7s ease;
  display: block;
}
.fc-gallery__full:hover img {
  transform: scale(1.03);
}

.fc-gallery__duo {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2px;
}
.fc-gallery__duo-item {
  aspect-ratio: 3/4; overflow: hidden; background: #111;
}
.fc-gallery__duo-item img {
  width: 100%; height: 100%; object-fit: cover;
  filter: none;
  transition: transform 0.7s ease;
  display: block;
}
.fc-gallery__duo-item:hover img {
  transform: scale(1.03);
}

/* remaining photos in a masonry-style row */
.fc-gallery__row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.fc-gallery__row-item {
  aspect-ratio: 4/5; overflow: hidden; background: #111;
}
.fc-gallery__row-item img {
  width: 100%; height: 100%; object-fit: cover;
  filter: none;
  transition: transform 0.7s ease;
  display: block;
}
.fc-gallery__row-item:hover img {
  transform: scale(1.03);
}

/* single orphan photo */
.fc-gallery__single {
  width: 100%; aspect-ratio: 16/9;
  overflow: hidden; background: #111;
}
.fc-gallery__single img {
  width: 100%; height: 100%; object-fit: cover;
  filter: none;
  transition: transform 0.7s ease;
  display: block;
}
.fc-gallery__single:hover img {
  transform: scale(1.03);
}

/* Album Info */
.fc-album-info {
  max-width: 680px; margin: 5rem auto;
  padding: 0 2.5rem; text-align: center;
}
.fc-album-info__desc {
  font-family: 'Noto Serif', serif;
  font-size: 1.15rem; line-height: 1.8;
  color: #777; font-style: italic;
  margin-bottom: 3.5rem;
}
.fc-album-info__stats {
  display: flex; justify-content: center; gap: 4rem;
  flex-wrap: wrap;
}
.fc-stat__label {
  font-family: 'Space Grotesk', sans-serif; font-size: 8px;
  letter-spacing: 0.35em; text-transform: uppercase;
  color: #333; display: block; margin-bottom: 6px;
}
.fc-stat__value {
  font-family: 'Inter', sans-serif; font-size: 11px;
  letter-spacing: 0.2em; text-transform: uppercase; color: #fff;
}

/* Divider */
.fc-divider {
  height: 1px; background: rgba(255,255,255,0.06);
  margin: 0 2.5rem;
}

/* Album Pagination */
.fc-album-nav {
  display: flex; justify-content: space-between; align-items: center;
  padding: 3.5rem 2.5rem 5rem;
  max-width: 1440px; margin: 0 auto;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.fc-album-nav__link { text-decoration: none; cursor: none; }
.fc-album-nav__dir {
  font-family: 'Space Grotesk', sans-serif; font-size: 8px;
  letter-spacing: 0.4em; text-transform: uppercase;
  color: #333; display: block; margin-bottom: 0.5rem;
}
.fc-album-nav__name {
  font-family: 'Noto Serif', serif;
  font-size: 1.6rem; font-weight: 700;
  color: #fff; letter-spacing: -0.01em;
  text-transform: uppercase;
  transition: opacity 0.2s ease;
}
.fc-album-nav__link:hover .fc-album-nav__name { opacity: 0.4; }
.fc-album-nav__link--right { text-align: right; }

/* ══════════════════════════════════════════
   CONTACT PAGE (page-contact.php)
══════════════════════════════════════════ */
.fc-contact-main { padding-top: 8rem; }
.fc-contact-inner {
  padding: 4rem 2.5rem 6rem;
  max-width: 900px;
}
.fc-contact-copy {
  max-width: 720px;
  margin-bottom: 3rem;
}
.fc-contact-copy__content p,
.fc-contact-copy__content li {
  color: #999;
  font-size: 1.02rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}
.fc-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem 6rem;
  margin-bottom: 4rem;
}
.fc-contact-item__label {
  font-family: 'Space Grotesk', sans-serif; font-size: 8px;
  letter-spacing: 0.35em; text-transform: uppercase;
  color: #333; display: block; margin-bottom: 0.75rem;
}
.fc-contact-item__value {
  font-family: 'Noto Serif', serif;
  font-size: 1.1rem; color: #fff;
  font-style: italic;
}
.fc-contact-item__value a {
  color: #fff; text-decoration: none;
  border-bottom: 1px solid #333;
  padding-bottom: 2px;
  transition: border-color 0.2s;
}
.fc-contact-item__value a:hover { border-color: #fff; }
.fc-contact-item__value--muted { color: #888; }

/* ══════════════════════════════════════════
   SCROLL REVEAL
══════════════════════════════════════════ */
.fc-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s cubic-bezier(0.165,0.84,0.44,1),
              transform 0.75s cubic-bezier(0.165,0.84,0.44,1);
}
.fc-reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ══════════════════════════════════════════
   GENERIC PAGE CONTENT (page.php, index.php)
══════════════════════════════════════════ */
.fc-page-content {
  padding: 10rem 2.5rem 6rem;
  max-width: 800px; margin: 0 auto;
}
.fc-page-content h1 {
  font-family: 'Noto Serif', serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  color: #fff; font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 2.5rem;
}
.fc-page-content p,
.fc-page-content li {
  font-family: 'Inter', sans-serif;
  font-size: 1rem; line-height: 1.8; color: #999;
  margin-bottom: 1.5rem;
}
.fc-page-content a { color: #fff; text-decoration: underline; text-underline-offset: 3px; }
.fc-page-content a:hover { color: #aaa; }

/* ══════════════════════════════════════════
   BACK TO TOP
══════════════════════════════════════════ */
.fc-btt {
  position: fixed;
  bottom: 2rem; left: 2rem;
  z-index: 400;
  display: flex; align-items: center; gap: 0.6rem;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 8px; letter-spacing: 0.35em;
  text-transform: uppercase; color: #d8d8d8;
  background: rgba(18, 18, 18, 0.92);
  border: 1px solid var(--fc-border);
  border-radius: 999px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.28);
  cursor: none; padding: 0.9rem 1.2rem;
  opacity: 0; pointer-events: none;
  transition: opacity 0.4s ease, color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}
.fc-btt.is-visible { opacity: 1; pointer-events: auto; }
.fc-btt:hover { color: #fff; background: var(--fc-surface-strong); border-color: rgba(255,255,255,0.16); }
.fc-btt__arrow {
  display: inline-block;
  width: 1px; height: 20px;
  background: currentColor;
  position: relative;
}
.fc-btt__arrow::before {
  content: '';
  position: absolute; top: 0; left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 6px; height: 6px;
  border-top: 1px solid currentColor;
  border-left: 1px solid currentColor;
}

/* ══════════════════════════════════════════
   LIGHTBOX / IMAGE ZOOM
══════════════════════════════════════════ */
.fc-lightbox {
  position: fixed; inset: 0;
  z-index: 9000;
  background: rgba(0,0,0,0.95);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.35s cubic-bezier(0.4,0,0.2,1);
  cursor: none;
}
.fc-lightbox.is-open { opacity: 1; pointer-events: auto; }
.fc-lightbox__img {
  max-width: 92vw; max-height: 90vh;
  object-fit: contain;
  transform: scale(0.92);
  transition: transform 0.4s cubic-bezier(0.165,0.84,0.44,1);
  filter: none;
}
.fc-lightbox.is-open .fc-lightbox__img { transform: scale(1); }
.fc-lightbox__close {
  position: absolute; top: 2rem; right: 2.5rem;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 9px; letter-spacing: 0.3em;
  text-transform: uppercase; color: #555;
  background: none; border: none;
  cursor: none;
  transition: color 0.2s ease;
}
.fc-lightbox__close:hover { color: #fff; }
.fc-lightbox__counter {
  position: absolute; bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  font-family: 'DM Mono', monospace;
  font-size: 9px; letter-spacing: 0.3em;
  color: #333;
}
.fc-lightbox__nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 9px; letter-spacing: 0.3em;
  text-transform: uppercase; color: #444;
  background: none; border: none;
  cursor: none; padding: 1.5rem;
  transition: color 0.2s ease;
}
.fc-lightbox__nav:hover { color: #fff; }
.fc-lightbox__nav--prev { left: 0.5rem; }
.fc-lightbox__nav--next { right: 0.5rem; }

.fc-gallery img,
.fc-lightbox img { cursor: none; }

/* ══════════════════════════════════════════
   WORDPRESS ADMIN BAR / GUTENBERG OVERRIDES
══════════════════════════════════════════ */
.wp-block-image img { max-width: 100%; height: auto; }

/* Hide default WP page title on full-width templates */
.fc-no-title .entry-title,
.fc-no-title .page-title { display: none; }

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .fc-card--wide { aspect-ratio: 16/7; }
}

@media (max-width: 768px) {
  :root { --fc-shell-pad: 1.25rem; }
  .fc-nav__inner {
    padding: 1.25rem;
    align-items: flex-start;
  }
  .fc-nav__meta {
    flex-direction: column;
    align-items: flex-end;
    gap: 0.75rem;
  }
  .fc-nav__menu {
    justify-content: flex-end;
    gap: 0.7rem 1rem;
  }
  .fc-hero { padding: 3rem 1.25rem 3rem; }
  .fc-grid { grid-template-columns: 1fr; gap: 2px; }
  .fc-card--wide { aspect-ratio: 16/9; grid-column: auto; }
  .fc-card--standard { aspect-ratio: 4/3; }
  .fc-gallery__duo { grid-template-columns: 1fr; }
  .fc-gallery__duo-item { aspect-ratio: 16/9; }
  .fc-gallery__row { grid-template-columns: 1fr 1fr; }
  .fc-gallery--contained,
  .fc-gallery--wide { padding: 0 1.25rem; }
  .fc-album-nav { flex-direction: column; gap: 2.5rem; align-items: flex-start; }
  .fc-album-nav__link--right { align-self: flex-end; }
  .fc-contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .fc-footer { flex-direction: column; align-items: flex-start; }
  .fc-footer__menu { gap: 0.8rem 1.2rem; }
  .fc-album-info__stats { gap: 2rem; }
  .fc-cta { padding: 4rem 1.25rem; }
  .fc-btt { bottom: 1.25rem; left: 1.25rem; cursor: auto; }
  .fc-lightbox__nav { padding: 1rem; }
  .fc-lightbox__close { top: 1.25rem; right: 1.25rem; }
  .fc-gallery img { cursor: auto; }
  .fc-lightbox img { cursor: auto; }
  .fc-lightbox__nav, .fc-lightbox__close, .fc-lightbox { cursor: auto; }
}

@media (max-width: 480px) {
  .fc-nav__brand { font-size: 1rem; }
  .fc-nav__menu { flex-direction: column; align-items: flex-end; }
  .fc-gallery__row { grid-template-columns: 1fr; }
  .fc-gallery__row-item { aspect-ratio: 16/9; }
}
