/* ─── Cirka (self-hosted) ─────────────────────────────────── */
@font-face {
  font-family: 'Cirka';
  src: url('../fonts/Cirka-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Cirka';
  src: url('../fonts/Cirka-Light.woff2') format('woff2');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

/* ============================================================
   KIERAN BISHOP PHOTOGRAPHY — style.css
   Clean single-source-of-truth rewrite. No patches, no !important.
   ============================================================ */

/* ─── Design Tokens ──────────────────────────────────────────── */
:root {
  /* Colors */
  --color-bg:           #0c0c0c;
  --color-surface:      #141414;
  --color-surface-2:    #1c1c1c;
  --color-border:       #2a2a2a;
  --color-text:         #f0ede8;
  --color-text-muted:   #888680;
  --color-text-faint:   #444240;
  --color-accent:       #c9a84c;
  --color-accent-hover: #e2bc60;

  /* Typography */
  --font-display: 'Plus Jakarta Sans', 'Arial Black', sans-serif;
  --font-brand:   'Cirka', 'Arial Black', sans-serif;
  --font-body:    'Switzer', 'Helvetica Neue', sans-serif;
  --font-italic:   'Crimson Text', Georgia, serif;

  /* Type Scale */
  --text-xs:   clamp(0.75rem,  0.7rem  + 0.25vw, 0.875rem);
  --text-sm:   clamp(0.875rem, 0.8rem  + 0.35vw, 1rem);
  --text-base: clamp(1rem,     0.95rem + 0.25vw, 1.125rem);
  --text-lg:   clamp(1.125rem, 1rem    + 0.75vw, 1.5rem);
  --text-xl:   clamp(1.5rem,   1.2rem  + 1.25vw, 2.25rem);
  --text-2xl:  clamp(2rem,     1.2rem  + 2.5vw,  3.5rem);
  --text-3xl:  clamp(2.5rem,   1rem    + 4vw,    5rem);
  --text-hero: clamp(4rem,     2rem    + 7vw,    9rem);

  /* Spacing */
  --space-1:  0.25rem;
  --space-2:  0.5rem;
  --space-3:  0.75rem;
  --space-4:  1rem;
  --space-5:  1.25rem;
  --space-6:  1.5rem;
  --space-8:  2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  /* Layout */
  --content-max: 1200px;
  --nav-height:  72px;

  /* Easing */
  --ease-nav:  cubic-bezier(0.5, 0, 0, 1);
  --ease-page: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ─── Reset ──────────────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-padding-top: var(--nav-height);
}
body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--color-text);
  background: var(--color-bg);
  min-height: 100dvh;
  line-height: 1.6;
  /* GSAP reveals this on DOMContentLoaded */
  opacity: 0;
}
img, video {
  display: block;
  max-width: 100%;
  height: auto;
}
ul[role="list"] { list-style: none; }
h1, h2, h3, h4 { text-wrap: balance; line-height: 1.1; }
p, li { text-wrap: pretty; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; background: none; border: none; font: inherit; color: inherit; }
::selection {
  background: color-mix(in oklab, var(--color-accent) 30%, transparent);
  color: var(--color-text);
}
:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
}

/* ─── Mask (text reveal) ─────────────────────────────────────── */
/* Clip wrapper — GSAP translates the inner span upward into view */
.mask {
  display: block;
  overflow: hidden;
}
.hero__name-line,
.page-hero__title-line {
  display: block;
  transform: translateY(105%);
  will-change: transform;
}

/* ─── Navigation ─────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  padding: 0 var(--space-8);
  background: color-mix(in oklab, var(--color-bg) 88%, transparent);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--color-border);
  transition: box-shadow 200ms var(--ease-page);
}
.nav--scrolled {
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.5);
}

/* Logo */
.nav__logo {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text);
  flex: 1;
  transition: color 200ms var(--ease-page);
}
.nav__logo:hover { color: var(--color-accent); }

/* Nav link list */
.nav__links {
  display: flex;
  align-items: center;
  gap: var(--space-8);
  list-style: none;
}

/* ── Desktop nav hover: label / label-alt swap ───────────────
   Each link (and the dropdown toggle) contains:
     <span class="nav-label">TEXT</span>
     <span class="nav-label-alt">TEXT</span>
   The container is overflow:hidden, fixed height = one line.
   On hover: nav-label slides up and fades out;
             nav-label-alt slides up into view from below.
─────────────────────────────────────────────────────────────── */
.nav__links > li > a,
.nav__dropdown-toggle {
  position: relative;
  display: inline-block;
  overflow: hidden;
  cursor: pointer;
  /* Fixed height = one line of the label text */
  height: 1em;
  line-height: 1;
  vertical-align: middle;
}

.nav-label {
  display: block;
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  white-space: nowrap;
  transition: transform 0.4s cubic-bezier(0.5,0,0,1), opacity 0.3s ease;
  transform: translateY(0%);
  opacity: 1;
}

.nav-label-alt {
  display: block;
  position: absolute;
  top: 0; left: 0;
  font-family: 'Crimson Text', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  font-size: 1.2em;
  text-transform: none;
  letter-spacing: 0.01em;
  color: var(--color-accent);
  white-space: nowrap;
  transform: translateY(100%);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.5,0,0,1), opacity 0.3s ease;
}

/* Hover: slide primary label up out, italic slides up in from below */
.nav__links > li > a:hover .nav-label,
.nav__links li:hover > .nav__dropdown-toggle .nav-label {
  transform: translateY(-100%);
  opacity: 0;
}
.nav__links > li > a:hover .nav-label-alt,
.nav__links li:hover > .nav__dropdown-toggle .nav-label-alt {
  transform: translateY(0%);
  opacity: 1;
}

/* Active link: gold label */
.nav__links > li > a.active .nav-label {
  color: var(--color-accent);
}

/* Dropdown toggle also aligns with link row */
.nav__dropdown-toggle {
  gap: 0;
  align-items: flex-start;
}
.nav__dropdown-toggle svg {
  position: absolute;
  right: -14px;
  top: 50%;
  transform: translateY(-50%);
  transition: transform 0.2s ease;
  color: var(--color-text-muted);
  pointer-events: none;
}
.nav__dropdown:hover .nav__dropdown-toggle svg {
  transform: translateY(-50%) rotate(180deg);
}
/* Give the toggle li enough right padding for the chevron */
.nav__links > .nav__dropdown {
  padding-right: var(--space-4);
}

/* ── Dropdown menu ────────────────────────────────────────────── */
.nav__dropdown {
  position: relative;
}

/* The menu itself is invisible by default — opacity:0, no pointer events.
   A padding-top "bridge" fills the gap between toggle and inner box
   so the mouse can travel across without the menu vanishing. */
.nav__dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  padding-top: var(--space-3); /* bridge gap */
  min-width: 210px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 200;
}

/* Only show on parent li hover */
.nav__dropdown:hover .nav__dropdown-menu {
  opacity: 1;
  pointer-events: auto;
}

.nav__dropdown-menu-inner {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
}

/* Dropdown sub-links — plain style, no nav-label hover animation needed here */
.nav__dropdown-menu-inner a {
  display: block;
  padding: var(--space-3) var(--space-5);
  font-family: var(--font-body);
  font-size: var(--text-xs);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  border-bottom: 1px solid var(--color-border);
  white-space: nowrap;
  transition: color 0.2s ease, background 0.2s ease;
  /* Reset any inherited nav-label flex behaviour */
  display: block;
  overflow: visible;
  height: auto;
}
.nav__dropdown-menu-inner a:last-child {
  border-bottom: none;
}
.nav__dropdown-menu-inner a:hover,
.nav__dropdown-menu-inner a.active {
  color: var(--color-accent);
  background: var(--color-surface-2);
}
/* Dropdown links contain nav-label / nav-label-alt spans — suppress the
   hover animation inside the dropdown (they just show gold on hover instead) */
.nav__dropdown-menu-inner a .nav-label {
  display: inline;
  font-size: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
  color: inherit;
  white-space: inherit;
  transition: none;
}
.nav__dropdown-menu-inner a .nav-label-alt {
  display: none;
}

/* ── Hamburger button ─────────────────────────────────────────── */
.nav__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: var(--space-2);
  flex-shrink: 0;
}
.nav__hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--color-text);
  transform-origin: center;
  transition:
    transform 0.35s cubic-bezier(0.85, 0.01, 0.4, 1),
    opacity   0.2s ease;
}
.nav__hamburger.open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.nav__hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav__hamburger.open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* ─── Mobile nav overlay ─────────────────────────────────────── */
/* Desktop: hamburger hidden, links visible */
/* Mobile (≤768px): hamburger visible, links hidden until open */

/* ─── Page / layout ──────────────────────────────────────────── */
/* Gallery and inner pages: padding-top:0 — the page-hero handles
   its own top spacing accounting for the fixed nav */
.page {
  padding-top: 0;
  min-height: 100dvh;
}

/* Content-width wrapper */
.section {
  padding: clamp(var(--space-16), 8vw, var(--space-32)) var(--space-8);
  max-width: var(--content-max);
  margin: 0 auto;
}
.section--full {
  max-width: none;
}
.section__label {
  font-size: var(--text-xs);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--space-4);
}
.section__title {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: var(--color-text);
  margin-bottom: var(--space-3);
}
.section__sub {
  font-size: var(--text-sm);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: var(--space-12);
}
.section__divider {
  width: 48px;
  height: 1px;
  background: var(--color-accent);
  margin-bottom: var(--space-12);
}

/* ─── Hero (index.html) ──────────────────────────────────────── */
.hero {
  position: relative;
  height: 100dvh;
  min-height: 600px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.45);
  transition: transform 8s ease;
}
.hero:hover .hero__bg {
  transform: scale(1.02);
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(12, 12, 12, 0.95) 0%,
    rgba(12, 12, 12, 0.30) 50%,
    rgba(12, 12, 12, 0.08) 100%
  );
  pointer-events: none;
}
.hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--content-max);
  margin: 0 auto;
  padding: var(--space-16) var(--space-8);
}
.hero__name {
  font-family: var(--font-display);
  font-size: var(--text-hero);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 0.9;
  color: var(--color-text);
  margin-bottom: var(--space-5);
}
.hero__tagline {
  font-size: var(--text-sm);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--space-10);
  opacity: 0; /* GSAP reveals */
}
.hero__scroll {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--text-xs);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-text-faint);
  animation: float 2.5s ease-in-out infinite;
  opacity: 0; /* GSAP reveals */
}
.hero__scroll svg { flex-shrink: 0; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(6px); }
}

/* ─── Page Hero (gallery/inner pages) ───────────────────────── */
/* Used on all inner pages — photo hero variant is styled inline via page-hero--photo */
.page-hero {
  padding: clamp(var(--space-16), 8vw, var(--space-24)) var(--space-8) var(--space-12);
  padding-top: calc(var(--nav-height) + clamp(var(--space-10), 6vw, var(--space-16)));
  border-bottom: 1px solid var(--color-border);
  margin-bottom: clamp(var(--space-12), 5vw, var(--space-20));
}
.page-hero__title {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-text);
  margin-bottom: var(--space-2);
  line-height: 1;
}
.page-hero__sub {
  font-size: var(--text-xs);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-accent);
  opacity: 0; /* GSAP reveals */
}

/* Photo hero (gallery pages — full-bleed image) */
/* These pages set position/overflow/padding inline; we provide the
   absolute-overlay and typography rules here */
.page-hero--photo {
  padding: 0;
  border-bottom: none;
}
.page-hero--photo .page-hero__title {
  color: var(--color-text);
}

/* ─── Gallery (masonry) ──────────────────────────────────────── */
.gallery {
  columns: 3;
  column-gap: var(--space-3);
  padding: 0 var(--space-8);
  max-width: 1440px;
  margin: 0 auto;
  padding-bottom: var(--space-16);
}
.gallery__item {
  break-inside: avoid;
  margin-bottom: var(--space-3);
  overflow: hidden;
  display: block;
  cursor: zoom-in;
}
.gallery__item img {
  width: 100%;
  display: block;
  filter: brightness(0.92);
  transition:
    transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    filter    0.4s ease;
}
.gallery__item:hover img {
  transform: scale(1.03);
  filter: brightness(1);
}

/* ─── Lightbox ───────────────────────────────────────────────── */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0, 0, 0, 0.96);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.lightbox.open {
  opacity: 1;
  pointer-events: auto;
}
.lightbox__img {
  max-width: 90vw;
  max-height: 90dvh;
  object-fit: contain;
  user-select: none;
  -webkit-user-drag: none;
}
.lightbox__close {
  position: absolute;
  top: var(--space-6);
  right: var(--space-6);
  font-size: var(--text-xl);
  color: var(--color-text-muted);
  line-height: 1;
  transition: color 200ms ease;
  z-index: 10;
}
.lightbox__close:hover { color: var(--color-text); }

.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: 1px solid var(--color-border);
  color: var(--color-text-muted);
  padding: var(--space-4) var(--space-5);
  font-size: var(--text-lg);
  line-height: 1;
  transition: color 200ms ease, border-color 200ms ease;
  z-index: 10;
}
.lightbox__nav:hover {
  color: var(--color-accent);
  border-color: var(--color-accent);
}
.lightbox__prev { left: var(--space-6); }
.lightbox__next { right: var(--space-6); }

/* ─── Genre Cards (home page) ────────────────────────────────── */
.genre-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
  margin-top: var(--space-16);
}
.genre-card {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  display: block;
  cursor: pointer;
}
.genre-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5);
  transition:
    transform 0.6s cubic-bezier(0.16, 1, 0.3, 1),
    filter    0.4s ease;
}
.genre-card:hover .genre-card__img {
  transform: scale(1.06);
  filter: brightness(0.4);
}
.genre-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(12, 12, 12, 0.8) 0%, transparent 60%);
  pointer-events: none;
}
.genre-card__content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: var(--space-8) var(--space-6);
}
.genre-card__label {
  font-size: var(--text-xs);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--space-2);
}
.genre-card__title {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-text);
  line-height: 1;
  margin-bottom: var(--space-4);
  /* Fit any title length without overflow */
  font-size: clamp(1.3rem, 3vw, 2.6rem);
  word-break: break-word;
  overflow-wrap: break-word;
}
.genre-card__arrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-xs);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  white-space: nowrap;
  transition: color 200ms ease, gap 200ms ease;
}
.genre-card:hover .genre-card__arrow {
  color: var(--color-accent);
  gap: var(--space-3);
}

/* ─── About page ─────────────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: start;
}
.about-img {
  aspect-ratio: 3/4;
  object-fit: cover;
  width: 100%;
  filter: grayscale(20%);
  position: sticky;
  top: calc(var(--nav-height) + var(--space-8));
}
.about-text__name {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-text);
  margin-bottom: var(--space-6);
  line-height: 1;
}
.about-text__bio {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  line-height: 1.8;
  max-width: 52ch;
  margin-bottom: var(--space-8);
}
.about-text__detail {
  font-size: var(--text-xs);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-text-faint);
}
.about-text__detail span {
  color: var(--color-accent);
  margin-right: var(--space-2);
}

/* About quote strip */
.about-quote-strip {
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding: var(--space-10) var(--space-8);
}
.about-quote-strip p {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2.4rem);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-text);
  max-width: 860px;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

/* ─── Contact page ───────────────────────────────────────────── */
.contact-page-hero {
  position: relative;
  height: 420px;
  overflow: hidden;
  margin-bottom: clamp(var(--space-12), 5vw, var(--space-20));
}
.contact-page-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  filter: brightness(0.35);
}
.contact-page-hero__content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--space-8);
  background: linear-gradient(
    to top,
    rgba(12, 12, 12, 0.85) 0%,
    rgba(12, 12, 12, 0.15) 60%
  );
}
.contact-page-hero__content h1 {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-text);
  margin-bottom: var(--space-2);
  line-height: 1;
}
.contact-page-hero__content p {
  font-size: var(--text-xs);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-accent);
}

.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: start;
}
.contact-info__title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-text);
  margin-bottom: var(--space-6);
  line-height: 1;
}
.contact-info__text {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  line-height: 1.7;
  max-width: 40ch;
  margin-bottom: var(--space-8);
}
.contact-info__services {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}
.contact-info__services li {
  font-size: var(--text-xs);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-text-faint);
  display: flex;
  align-items: center;
  gap: var(--space-3);
}
.contact-info__services li::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 1px;
  background: var(--color-accent);
  flex-shrink: 0;
}

/* Form */
.form {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}
.form__group {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}
.form__label {
  font-size: var(--text-xs);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}
.form__input,
.form__textarea {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  color: var(--color-text);
  padding: var(--space-4);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  width: 100%;
  transition: border-color 200ms ease;
}
.form__input:focus,
.form__textarea:focus {
  outline: none;
  border-color: var(--color-accent);
}
.form__textarea {
  min-height: 140px;
  resize: vertical;
}
.form__btn {
  align-self: flex-start;
  padding: var(--space-4) var(--space-8);
  background: var(--color-accent);
  color: #0c0c0c;
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background 200ms ease, transform 200ms ease;
}
.form__btn:hover {
  background: var(--color-accent-hover);
  transform: translateY(-1px);
}
.form__btn:disabled {
  background: var(--color-surface-2);
  color: var(--color-text-muted);
  cursor: not-allowed;
  transform: none;
}

/* ─── Footer ─────────────────────────────────────────────────── */
.footer {
  border-top: 1px solid var(--color-border);
  padding: var(--space-8);
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: clamp(var(--space-16), 8vw, var(--space-32));
}
.footer__copy,
.footer__loc {
  font-size: var(--text-xs);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-faint);
}

/* ─── Coming soon (fallback) ─────────────────────────────────── */
.coming-soon {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 60vh;
  text-align: center;
  padding: var(--space-16) var(--space-8);
}
.coming-soon__title {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-text);
  margin-bottom: var(--space-4);
}
.coming-soon__sub {
  font-size: var(--text-sm);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: var(--space-8);
}
.coming-soon__line {
  width: 1px;
  height: 80px;
  background: linear-gradient(to bottom, var(--color-accent), transparent);
  margin: 0 auto;
}

/* ─── Responsive: Tablet (≤768px) ───────────────────────────── */
@media (max-width: 768px) {
  .gallery          { columns: 2; }
  .genre-grid       { grid-template-columns: 1fr 1fr; }
  .about-grid       { grid-template-columns: 1fr; gap: var(--space-10); }
  .about-img        { aspect-ratio: 16/9; position: static; }
  .contact-wrap     { grid-template-columns: 1fr; gap: var(--space-10); }
}

/* ─── Responsive: Mobile (≤640px) ───────────────────────────── */
@media (max-width: 640px) {
  /* ── Show hamburger, hide desktop links ───────────────────── */
  .nav__hamburger { display: flex; }
  .nav__links     { display: none; }

  /* ── Mobile nav overlay ───────────────────────────────────── */
  .nav__links.open {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    height: 100dvh;
    min-height: 100%;
    background: var(--color-bg);
    padding: calc(var(--nav-height) + var(--space-6)) var(--space-6) var(--space-8);
    gap: 0;
    z-index: 9999;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  /* Top-level links: Clash Display, large */
  .nav__links.open > li > a {
    display: block;
    padding: var(--space-4) 0;
    text-align: center;
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 6vw, 2.2rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--color-text);
    border-bottom: 1px solid var(--color-border);
    /* Reset desktop hover animation spans */
    overflow: visible;
    height: auto;
    flex-direction: row;
    align-items: center;
  }
  .nav__links.open > li > a:hover,
  .nav__links.open > li > a.active {
    color: var(--color-accent);
  }

  /* Inside mobile links: show only nav-label inline, hide nav-label-alt */
  .nav__links.open > li > a .nav-label {
    display: inline;
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
    letter-spacing: inherit;
    text-transform: inherit;
    color: inherit;
    white-space: normal;
    transform: none;
    opacity: 1;
    transition: none;
  }
  .nav__links.open > li > a .nav-label-alt {
    display: none;
  }

  /* Work dropdown: show "Work" as a faint section label, hide toggle */
  .nav__dropdown {
    display: block;
  }
  .nav__dropdown::before {
    content: 'Work';
    text-align: center;
    width: 100%;
    display: block;
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 6vw, 2.2rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--color-text-faint);
    padding: var(--space-4) 0 var(--space-2);
    border-bottom: 1px solid var(--color-border);
  }
  .nav__dropdown-toggle {
    display: none;
  }

  /* Dropdown menu: always visible in mobile overlay, flat style */
  .nav__dropdown-menu {
    position: static;
    transform: none;
    opacity: 1;
    pointer-events: auto;
    padding: 0;
    min-width: auto;
    transition: none;
    /* The :hover rule for desktop won't fire, so these stay visible */
  }
  .nav__dropdown-menu-inner {
    background: transparent;
    border: none;
    display: flex;
    flex-direction: column;
  }
  /* Sub-links: Switzer, small, muted — NO box, NO background */
  .nav__dropdown-menu-inner a {
    padding: var(--space-3) var(--space-4);
    font-family: var(--font-body);
    font-size: var(--text-sm);
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    border-bottom: none;
    background: transparent;
    overflow: visible;
    height: auto;
    display: block;
    transition: color 0.2s ease;
  }
  .nav__dropdown-menu-inner a:hover,
  .nav__dropdown-menu-inner a.active {
    color: var(--color-accent);
    background: transparent;
  }
  /* Hide nav-label-alt in dropdown sub-links (already hidden globally) */

  /* ── Layout adjustments ───────────────────────────────────── */
  .gallery       { columns: 1; padding: 0 var(--space-4); }
  .genre-grid    { grid-template-columns: 1fr; gap: var(--space-3); margin-top: var(--space-8); }
  .genre-card    { aspect-ratio: 16/9; }
  .genre-card__title {
    font-size: clamp(1.4rem, 5.5vw, 2rem);
    line-height: 1.05;
  }
  .genre-card__content { padding: var(--space-5) var(--space-4); }

  .hero__name    { font-size: clamp(3.5rem, 16vw, 6rem); }

  .about-grid    { grid-template-columns: 1fr; gap: var(--space-8); }
  .about-img     { aspect-ratio: 4/3; position: static; }

  .contact-wrap  { grid-template-columns: 1fr; gap: var(--space-10); }

  .section {
    padding-left: var(--space-4);
    padding-right: var(--space-4);
  }
  .footer {
    flex-direction: column;
    gap: var(--space-2);
    text-align: center;
    padding: var(--space-6) var(--space-4);
  }

  .page-hero {
    padding: var(--space-10) var(--space-4) var(--space-8);
    padding-top: calc(var(--nav-height) + var(--space-8));
  }
  .page-hero__title { font-size: clamp(2.5rem, 10vw, 4rem); }

  .lightbox__nav { display: none; }
  .lightbox__img { max-width: 100vw; max-height: 85dvh; }

  .contact-page-hero { height: 280px; }
}

/* ─── Reduced motion ─────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .hero__bg { transition: none; }
  .hero__scroll { animation: none; }
}

.about-quote-strip p {
  font-size: clamp(1.3rem, 2.5vw, 2rem);
  font-style: italic;
  color: var(--color-text-muted);
}
blockquote {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
}
/* Hero tagline stays Switzer, not serif */
.hero__tagline {
  font-family: var(--font-body);
  font-style: normal;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

/* ── Cirka: hero name only ───────────────────────────────── */
.hero__name {
  font-family: var(--font-brand);
}

/* ── Philosophy/quotes: Switzer, not serif ───────────────── */
blockquote,
.about-quote-strip p {
  font-family: var(--font-body);
  font-style: normal;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.2;
  color: var(--color-text);
}
.about-quote-strip p {
  font-size: clamp(1.2rem, 2.2vw, 1.8rem);
  color: var(--color-text-muted);
  text-transform: none;
  font-weight: 400;
  letter-spacing: 0;
}
blockquote {
  font-size: clamp(1.3rem, 2.5vw, 2.2rem);
}
