/* ============================================================
   TINA KROHN PHOTOGRAPHY
   Bold typographic redesign — Syne + Space Grotesk
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;600;700;800&family=Space+Grotesk:wght@300;400;500;600;700&display=swap');

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

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html.lenis, html.lenis body { height: auto; }
html.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
.lenis.lenis-stopped { overflow: hidden; }

/* === THEME TOKENS === */
:root {
  --font-display: 'Syne', 'Helvetica Neue', Arial Black, sans-serif;
  --font-body:    'Space Grotesk', 'Helvetica Neue', Arial, sans-serif;

  /* Light */
  --bg:        #F4F4F1;
  --bg-alt:    #EAEAE6;
  --text:      #080808;
  --text-muted:#606060;
  --accent:    #C49A3C;
  --border:    rgba(8,8,8,0.1);
  --nav-bg:    rgba(244,244,241,0.94);

  --nav-h:     64px;
  --max-w:     1440px;
  --dur:       0.3s;
  --ease:      cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

[data-theme="dark"] {
  --bg:        #070706;
  --bg-alt:    #0F0F0D;
  --text:      #F0F0EC;
  --text-muted:#888880;
  --border:    rgba(240,240,236,0.1);
  --nav-bg:    rgba(7,7,6,0.94);
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
  transition: background-color 0.45s var(--ease), color 0.45s var(--ease);
}

img   { display: block; max-width: 100%; height: auto; }
a     { color: inherit; text-decoration: none; }
button{ cursor: pointer; border: none; background: none; font: inherit; color: inherit; }
ul    { list-style: none; }
p     { margin-bottom: 1em; }
p:last-child { margin-bottom: 0; }

/* NO SERIF — all headings use display font */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

h1 { font-size: clamp(3.5rem, 8vw, 8rem); }
h2 { font-size: clamp(2.5rem, 5vw, 5.5rem); }
h3 { font-size: clamp(1.6rem, 3vw, 2.5rem); }
h4 { font-size: 1rem; font-weight: 600; letter-spacing: 0.08em; }

/* Mobile: the desktop clamp floors are too large for narrow phones and
   force long headings into extra, sometimes mid-word-broken lines.
   Sized small enough that the existing manual <br> breaks in the copy
   hold as clean two-line wraps, with no word-breaking needed. */
@media (max-width: 640px) {
  h1 { font-size: clamp(1.6rem, 8vw, 2.2rem); }
  h2 { font-size: clamp(1.05rem, 5.5vw, 1.5rem); }
  h3 { font-size: clamp(0.95rem, 4.5vw, 1.2rem); }
}

/* === LAYOUT === */
.container {
  width: min(100%, var(--max-w));
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 4rem);
}

.section { padding-block: clamp(5rem, 9vw, 9rem); }

@media (max-width: 640px) {
  .section { padding-block: clamp(2.5rem, 9vw, 3.5rem); }
}

/* === LABELS === */
.label {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.25rem;
}

.label::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 1px;
  background: var(--accent);
  flex-shrink: 0;
}

/* Where a label is also scroll-revealed, grow its accent dash in from
   zero width rather than just popping in at full size with the text. */
.label.reveal::before {
  width: 0;
  transition: width 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: 0.25s;
}
.label.reveal.is-visible::before { width: 20px; }

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem 2rem;
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: 1px solid var(--text);
  color: var(--text);
  position: relative;
  overflow: hidden;
  transition: color 0.4s var(--ease), transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--text);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: -1;
}
.btn:hover { color: var(--bg); transform: translateY(-2px); box-shadow: 0 10px 24px -12px rgba(0,0,0,0.35); }
.btn:hover::after { transform: scaleX(1); }
.btn:active { transform: translateY(0); }

.btn-accent { border-color: var(--accent); color: var(--accent); }
.btn-accent::after { background: var(--accent); }
.btn-accent:hover { color: var(--bg); }

.btn-white { border-color: rgba(255,255,255,0.5); color: #fff; }
.btn-white::after { background: rgba(255,255,255,0.15); }
.btn-white:hover { color: #fff; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  inset-block-start: 0;
  inset-inline: 0;
  z-index: 100;
  height: var(--nav-h);
  background: var(--nav-bg);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: background var(--dur) var(--ease), border-color var(--dur) var(--ease);
}

.nav.is-hero {
  background: transparent;
  backdrop-filter: none;
  border-color: transparent;
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding-inline: clamp(1.25rem, 4vw, 4rem);
}

.nav__logo {
  display: flex;
  align-items: center;
}

.nav__logo img {
  height: 34px;
  width: auto;
  display: block;
  transition: filter var(--dur) var(--ease);
}

.nav.is-hero .nav__logo img { filter: brightness(0) invert(1); }

.nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav__links a {
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text);
  transition: color var(--dur) var(--ease);
  position: relative;
}

.nav.is-hero .nav__links a { color: rgba(255,255,255,0.75); }

.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width var(--dur) var(--ease);
}

.nav__links a:hover,
.nav__links a.active { color: var(--accent); }
.nav__links a:hover::after,
.nav__links a.active::after { width: 100%; }

.nav__right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav__theme-btn {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--text);
  transition: all var(--dur) var(--ease);
}

.nav.is-hero .nav__theme-btn { color: rgba(255,255,255,0.8); }
.nav__theme-btn:hover { background: var(--border); transform: rotate(-12deg); }

.nav__theme-btn img {
  display: block;
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.3s var(--ease);
}
.nav__theme-btn.is-swapping img { transform: rotate(90deg) scale(0.5); opacity: 0; }

/* Icon PNGs are dark-colored; invert to stay visible wherever the nav
   text itself is light (dark theme, or the transparent hero navbar) */
[data-theme="dark"] .nav__theme-btn img,
.nav.is-hero .nav__theme-btn img {
  filter: invert(1);
}

.nav__book {
  font-family: var(--font-body);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.45rem 1.1rem;
  border: 1px solid var(--accent);
  color: var(--accent);
  transition: all var(--dur) var(--ease);
}

.nav__book:hover { background: var(--accent); color: var(--bg); }
.nav.is-hero .nav__book { border-color: rgba(255,255,255,0.4); color: rgba(255,255,255,0.9); }
.nav.is-hero .nav__book:hover { background: rgba(255,255,255,0.15); color: #fff; border-color: rgba(255,255,255,0.6); }

.nav__menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}

.nav__menu-btn span {
  display: block;
  width: 20px;
  height: 1px;
  background: var(--text);
  transition: all var(--dur) var(--ease);
}

.nav.is-hero .nav__menu-btn span { background: #fff; }

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--bg);
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 0.6rem;
  padding-inline: clamp(1.5rem, 6vw, 3rem);
}

.mobile-nav.is-open { display: flex; }

.mobile-nav__close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 1.25rem;
  color: var(--text);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
}

.mobile-nav a {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 6vw, 2rem);
  font-weight: 800;
  text-transform: uppercase;
  color: var(--text);
  letter-spacing: -0.02em;
  line-height: 1.2;
  transition: color var(--dur) var(--ease);
}

.mobile-nav a:hover { color: var(--accent); }

.mobile-nav__bottom {
  position: absolute;
  bottom: 2.5rem;
  left: clamp(1.5rem, 6vw, 3rem);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}

@media (max-width: 960px) {
  .nav__links { display: none; }
  .nav__book  { display: none; }
  .nav__menu-btn { display: flex; }
}

/* ============================================================
   HERO — SPLIT SCREEN
   ============================================================ */
/* === HERO — FULLSCREEN === */
.hero {
  position: relative;
  height: 100svh;
  min-height: 600px;
  overflow: hidden;
}

.hero__slides {
  position: absolute;
  inset: 0;
}

.hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.9s ease;
}

.hero__slide.is-active { opacity: 1; }

.hero__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 4%;
  transform-origin: center top;
  will-change: transform;
}

/* Ken Burns — JS restarts this by toggling animation-name */
@keyframes hero-zoom {
  from { transform: scale(1); }
  to   { transform: scale(1.08); }
}

.hero__slide.is-active img {
  animation: hero-zoom 8s ease-out forwards;
}

/* Dark gradient overlay for text legibility */
.hero__copy {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(1.5rem, 3.5vw, 4.5rem);
  padding-top: calc(var(--nav-h) + 2rem);
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.80) 0%,
    rgba(0,0,0,0.32) 45%,
    rgba(0,0,0,0.06) 72%,
    transparent 100%
  );
  color: #F0F0EC;
}

.hero__eyebrow {
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.hero__eyebrow::before {
  content: '';
  width: 20px;
  height: 1px;
  background: var(--accent);
}

.hero__name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(5rem, 10vw, 14rem);
  line-height: 0.88;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  color: #F0F0EC;
  margin-bottom: 1.75rem;
}

.hero__tagline {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.4vw, 1.9rem);
  font-weight: 500;
  color: rgba(240,240,236,0.92);
  line-height: 1.4;
  max-width: 38ch;
  margin-bottom: 2.5rem;
}

.hero__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.hero__locations {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
}

.hero__location {
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(240,240,236,0.42);
}

.hero__cta-link {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  transition: gap var(--dur) var(--ease);
}

.hero__cta-link:hover { gap: 1.25rem; }
.hero__cta-link::after { content: '→'; }

/* Slide indicator dots */
.hero__dots {
  position: absolute;
  bottom: 2.25rem;
  right: 2.25rem;
  display: flex;
  gap: 0.4rem;
  align-items: center;
  z-index: 3;
}

.hero__dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  border: none;
  transition: all var(--dur) var(--ease);
  cursor: pointer;
}

.hero__dot.is-active {
  background: #fff;
  width: 20px;
  border-radius: 2.5px;
}

.hero__slide-label {
  position: absolute;
  bottom: 2.5rem;
  left: clamp(1.5rem, 3.5vw, 4.5rem);
  font-size: 0.52rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.38);
  z-index: 3;
}

@media (max-width: 768px) {
  .hero__name { font-size: clamp(3.5rem, 14vw, 6rem); }
  .hero__tagline { display: none; }
  .hero__copy { padding: 1.5rem 1.5rem 6rem; }
  .hero__bottom { flex-direction: column; align-items: flex-start; }
  .hero__dots { bottom: 1.5rem; right: 1.5rem; }
  .hero__slide-label { display: none; }

  /* First slide's source photo is an ultra-wide crop with the subject
     positioned well right-of-center; center-cropping cuts him out
     entirely on a narrow/tall mobile frame. Shift the crop to keep
     his face centered in view. */
  .hero__slides .hero__slide:first-child img { object-position: 60% 15%; }

  /* Dancer slide leaves the subject crowded to the right with a lot of
     empty space on the left at the default center crop. */
  .hero__slides .hero__slide:nth-child(2) img { object-position: 70% 4%; }

  /* This slide's source is an ultra-wide panorama; a center crop lands
     entirely in the empty background, missing the model altogether. */
  .hero__slides .hero__slide:nth-child(3) img { object-position: 65% 15%; }
}

/* ============================================================
   INTRO
   ============================================================ */
.intro { background: var(--bg-alt); }

.intro__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}

.intro__text h2 {
  margin-bottom: 1.75rem;
  line-height: 1.0;
}

.intro__text p {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 50ch;
}

.intro__locations {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 2rem;
  margin-top: 2rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--border);
}

.intro__location {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
}

.intro__image {
  aspect-ratio: 3/4;
  overflow: hidden;
  position: relative;
}

.intro__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.9s var(--ease);
}

.intro__image:hover img { transform: scale(1.04); }

@media (max-width: 768px) {
  .intro__grid { grid-template-columns: 1fr; }
  .intro__image { order: -1; aspect-ratio: 4/3; }
}

.intro--centered { text-align: center; }

.intro__text--centered {
  max-width: 62ch;
  margin-inline: auto;
}

.intro__text--centered p { max-width: none; margin-inline: auto; }

.intro__locations--centered { justify-content: center; }

/* ============================================================
   PORTFOLIO — 7 NUMBERED ITEMS
   ============================================================ */
.portfolio { background: var(--bg); }

.portfolio__header {
  padding-block: clamp(4rem, 7vw, 7rem);
  padding-bottom: 0;
  padding-inline: clamp(1.25rem, 4vw, 4rem);
  max-width: var(--max-w);
  margin-inline: auto;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.portfolio__header h2 { max-width: 16ch; }

.portfolio__header {
  justify-content: center;
  text-align: center;
}

.portfolio__header p {
  font-size: clamp(1.3rem, 2.4vw, 1.85rem);
  color: var(--text);
  max-width: 46ch;
  margin-inline: auto;
  font-weight: 600;
  line-height: 1.45;
  letter-spacing: -0.01em;
}

/* Word-by-word stagger reveal */
.split-reveal__word {
  display: inline-block;
  opacity: 0;
  transform: translateY(0.5em);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.split-reveal.is-visible .split-reveal__word {
  opacity: 1;
  transform: none;
}

/* Masonry grid of 7 — JS-balanced columns (see initPortfolioMasonry),
   since CSS column-balance is unreliable with only a handful of items.
   Natural aspect ratio per image, no cropping, no fixed cell height. */
.portfolio__grid {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding-inline: clamp(1.25rem, 4vw, 4rem);
  padding-bottom: clamp(4rem, 7vw, 7rem);
  max-width: var(--max-w);
  margin-inline: auto;
}

.portfolio__col {
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1 1 0;
  min-width: 0;
}

.portfolio__item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  display: block;
  background: var(--bg-alt);
  border-radius: 12px;
}

.portfolio__item img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 0.9s var(--ease), filter 0.5s var(--ease);
  filter: brightness(0.92);
}

.portfolio__item:hover img {
  transform: scale(1.05);
  filter: brightness(0.75);
}

/* Gradient scrim for text legibility */
.portfolio__item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6,6,6,0.88) 0%, rgba(6,6,6,0.4) 40%, rgba(6,6,6,0) 68%);
  z-index: 1;
  transition: opacity var(--dur) var(--ease);
}

.portfolio__item:hover::before { opacity: 0.9; }

/* Always-visible text + CTA overlay */
.portfolio__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 1.5rem;
}

.portfolio__overlay-num {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: 0.15em;
}

.portfolio__overlay-title {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 1.8vw, 1.6rem);
  font-weight: 800;
  color: #F5F5F0;
  line-height: 1.15;
  max-width: 100%;
  overflow-wrap: break-word;
  word-break: break-word;
}

.portfolio__overlay-cta {
  padding: 0.7rem 1.6rem;
  font-size: 0.62rem;
  gap: 0.6rem;
  transition: color 0.4s var(--ease), transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
}

.portfolio__item:hover .portfolio__overlay-cta {
  border-color: var(--accent);
  transform: translateY(-2px);
}

/* ============================================================
   APPROACH — MANIFESTO
   ============================================================ */
/* .approach carries both `.section` (generic padding) and its own
   `.approach__container` padding — these were stacking to roughly
   double the intended space at every viewport size, not just mobile.
   The container already fully controls spacing, so the section-level
   padding is redundant here. */
.approach.section { padding-block: 0; }
.approach { background: var(--bg-alt); }

.approach__container {
  width: min(100%, var(--max-w));
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 4rem);
  padding-block: clamp(5rem, 9vw, 9rem);
}

.approach__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 4rem;
  flex-wrap: wrap;
  gap: 2rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border);
}

.approach__top p {
  color: var(--text-muted);
  max-width: 42ch;
  font-size: 0.9rem;
  font-weight: 300;
}

.approach__items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
}

.approach__item {
  background: var(--bg);
  padding: 2.5rem 2rem;
}

.approach__num {
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 800;
  color: var(--border);
  line-height: 1;
  margin-bottom: 2rem;
  letter-spacing: -0.04em;
}

.approach__item h3 {
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  margin-bottom: 0.85rem;
}

.approach__item p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.7;
  font-weight: 300;
}

@media (max-width: 768px) {
  .approach__items { grid-template-columns: 1fr; }
  .approach__top { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 640px) {
  .approach__container { padding-block: clamp(2.5rem, 9vw, 3.5rem); }
  .approach__top { margin-bottom: 2rem; padding-bottom: 1.5rem; }
  .approach__items { gap: 1px; }
  .approach__item { padding: 1.5rem 1.25rem; }
  .approach__num { font-size: 2.25rem; margin-bottom: 0.6rem; }
  .approach__item h3 { margin-bottom: 0.5rem; }
}

/* ============================================================
   MARQUEE BAND
   ============================================================ */
.marquee-band {
  background: var(--text);
  color: var(--bg);
  padding: 1rem 0;
  overflow: hidden;
  -webkit-user-select: none;
  user-select: none;
}

[data-theme="dark"] .marquee-band {
  background: var(--bg-alt);
  color: var(--text);
  border-block: 1px solid var(--border);
}

.marquee-band__track {
  display: flex;
  gap: 4rem;
  animation: marquee 22s linear infinite;
  width: max-content;
  will-change: transform;
}

.marquee-band__item {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 4rem;
}

.marquee-band__item::after {
  content: '◆';
  font-size: 0.35rem;
  color: var(--accent);
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================================
   FULL-WIDTH PHOTO BREAK
   ============================================================ */
.photo-break {
  height: clamp(50vh, 65vh, 80vh);
  min-height: 360px;
  overflow: hidden;
  position: relative;
}

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

.photo-break__caption {
  position: absolute;
  bottom: 1.5rem;
  right: 2rem;
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  background: var(--bg);
  text-align: center;
}

.cta-section__inner {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: clamp(2.5rem, 6vw, 5rem);
  text-align: left;
}

.cta-section__media {
  flex: 0 0 clamp(220px, 26vw, 320px);
}

.cta-section__media-frame {
  aspect-ratio: 3/4;
  overflow: hidden;
}

.cta-section__media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}

.cta-section__media-quote {
  margin-top: 1rem;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-style: italic;
  color: var(--text);
  line-height: 1.5;
}

.cta-section__media-quote span {
  display: block;
  margin-top: 0.35rem;
  font-style: normal;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.cta-section__copy {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  /* Matches the photo frame's own height (not the caption below it), so
     the button row's margin-top:auto lines up with the photo's bottom
     edge specifically. */
  min-height: calc(clamp(220px, 26vw, 320px) * 4 / 3);
}

.cta-section .cta-section__copy h2,
.cta-section .cta-section__copy p,
.cta-section .cta-section__copy .cta-section__btns { margin-inline: 0; }

.cta-section__copy .cta-section__btns {
  justify-content: flex-start;
  margin-top: auto;
}

.cta-section h2 {
  max-width: 16ch;
  margin-inline: auto;
  margin-bottom: 1.25rem;
}

@media (max-width: 640px) {
  .cta-section h2 { max-width: 24ch; }

  .cta-section__inner { flex-direction: column; text-align: left; align-items: flex-start; }
  .cta-section__media { width: min(220px, 55vw); flex: none; margin-inline: 0; }
  .cta-section__copy { min-height: 0; }
  .cta-section__copy .cta-section__btns { justify-content: flex-start; margin-top: 0; }
  .cta-section .cta-section__copy h2,
  .cta-section .cta-section__copy p,
  .cta-section .cta-section__copy .cta-section__btns { margin-inline: 0; }
}

.cta-heading--branding {
  max-width: 26ch;
  font-size: clamp(1.7rem, 4vw, 3rem);
}

@media (max-width: 640px) {
  .cta-heading--branding {
    max-width: 30ch;
    font-size: clamp(0.72rem, 3.7vw, 0.98rem);
  }
}

/* Swap in a different manual line-break pattern on mobile vs desktop */
.cta-heading__mobile { display: none; }

@media (max-width: 640px) {
  .cta-heading__desktop { display: none; }
  .cta-heading__mobile { display: inline; }
}

.cta-section p {
  color: var(--text-muted);
  max-width: 46ch;
  margin-inline: auto;
  margin-bottom: 2.5rem;
  font-size: 0.9rem;
  font-weight: 300;
}

.cta-section__btns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  justify-content: center;
  gap: 1rem;
  width: fit-content;
  margin-inline: auto;
}

.cta-section__btns .btn { justify-content: center; }

@media (max-width: 400px) {
  .cta-section__btns { grid-template-columns: 1fr; width: 100%; }
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  padding-block: 4rem 2rem;
}

.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer__brand-name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  line-height: 1.3;
  margin-bottom: 0.75rem;
}

.footer__brand-name-lg { font-size: 1.5rem; }

.footer__brand p,
.footer__tagline {
  font-size: 0.82rem;
  color: var(--text-muted);
  max-width: 28ch;
  line-height: 1.65;
  margin-bottom: 1.5rem;
  font-weight: 300;
  grid-column: 1;
}

.footer__social {
  display: flex;
  gap: 1.25rem;
  grid-column: 1;
}

.footer__social a {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color var(--dur) var(--ease);
}

.footer__social a:hover { color: var(--accent); }

.footer__col h4 {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  color: var(--text);
  font-family: var(--font-body);
}

.footer__col ul {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer__col a {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 300;
  transition: color var(--dur) var(--ease);
}

.footer__col a:hover { color: var(--accent); }

.footer__bottom {
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer__copy { font-size: 0.7rem; color: var(--text-muted); font-weight: 300; margin: 0; }

.footer__legal { display: flex; gap: 1.5rem; }
.footer__legal a { font-size: 0.7rem; color: var(--text-muted); font-weight: 300; transition: color var(--dur) var(--ease); }
.footer__legal a:hover { color: var(--accent); }

@media (max-width: 900px) {
  .footer__top { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .footer__brand { grid-column: span 2; }
}

@media (max-width: 500px) {
  .footer__top {
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "brand   brand"
      "col1    col2"
      "col1    col3"
      "tagline tagline"
      "social  social";
    gap: 1.5rem;
  }
  .footer__brand { grid-area: brand; }
  .footer__tagline { grid-area: tagline; max-width: none; margin: 0 0 0.5rem; }
  .footer__social { grid-area: social; }
  .footer__top > .footer__col:nth-child(2) { grid-area: col1; }
  .footer__top > .footer__col:nth-child(3) { grid-area: col2; }
  .footer__top > .footer__col:nth-child(4) { grid-area: col3; }
  .footer__col ul { gap: 0.4rem; }
}

/* ============================================================
   CATEGORY / GALLERY PAGES
   ============================================================ */
.page-hero {
  position: relative;
  height: clamp(55vh, 72vh, 88vh);
  min-height: 480px;
  overflow: hidden;
  margin-top: var(--nav-h);
}

.page-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 3%;
}

/* Higher specificity than `.page-hero img` (0,1,1) is required here —
   a plain single-class selector loses to it regardless of media query
   or source order. */
.page-hero img.page-hero__img--dancer {
  object-position: center 3%;
}

.page-hero img.page-hero__img--engagement { object-position: center 3%; }
.page-hero img.page-hero__img--family { object-position: center 3%; }
.page-hero img.page-hero__img--commercial { object-position: center 3%; }

@media (max-width: 640px) {
  /* Source is an ultra-wide banner with the dancer positioned well
     right-of-center; a center crop on a narrow phone shows only the
     background fabric with the dancer cropped out entirely. */
  .page-hero img.page-hero__img--dancer { object-position: 80% 20%; }

  /* Wide couple photo — center crop shows only the man, cropping the
     woman out entirely. */
  .page-hero img.page-hero__img--engagement { object-position: 62% 20%; }

  /* Ultra-wide family photo — center crop cuts the dad out of frame. */
  .page-hero img.page-hero__img--family { object-position: 65% top; }

  /* Center crop leaves the model's feet cropped and too much empty sky
     at the top; recenter on the full figure. */
  .page-hero img.page-hero__img--commercial { object-position: 52% 25%; }
}

/* Some source photos need to show the full figure rather than a tight
   crop — letterbox on a dark backdrop instead of cropping in. */
.page-hero--contain { background: #0a0a0a; }
.page-hero--contain img { object-fit: contain; object-position: center center; }

/* This subject's face sits lower in the frame than most page-hero photos;
   the default top-anchored crop clips it on wide/ultra-wide screens. */
.page-hero__img--face-safe { object-position: center 41%; }

/* Nudges the subjects up slightly within the crop, reducing the empty
   headroom above them. */
.page-hero__img--nudge-up { object-position: center 10%; }

.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.12) 0%, rgba(0,0,0,0.72) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(2rem, 5vw, 5rem);
  color: #fff;
}

.page-hero__breadcrumb {
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.page-hero__breadcrumb a { color: var(--accent); }

.page-hero__num {
  font-family: var(--font-display);
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.page-hero h1 {
  color: #fff;
  font-size: clamp(2rem, 4.2vw, 4.2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  max-width: 18ch;
}

@media (max-width: 640px) {
  /* This bold display font renders at ~1.3em average width per
     character, not ~1em — sized so the longest single word in any
     hero title (e.g. "Photography") fits one line at any phone width. */
  .page-hero h1 { font-size: clamp(1.1rem, 5.6vw, 1.6rem); }
}

/* === GALLERY === */
.gallery-section { background: var(--bg); padding-block: clamp(4rem, 7vw, 7rem); }

.gallery__header {
  margin-bottom: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Targets the ID directly since the heading's wrapper markup differs
   across pages (.gallery__header, .gallery__header-inner, .mb-2) */
#gallery-heading {
  font-size: clamp(1.25rem, 2.5vw, 2.75rem);
  max-width: 30ch;
}

@media (max-width: 640px) {
  #gallery-heading { font-size: clamp(0.95rem, 3.25vw, 1.25rem); }
}

.gallery__filter {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
}

.gallery__filter-btn {
  padding: 0.35rem 0.9rem;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1px solid var(--border);
  color: var(--text-muted);
  transition: all var(--dur) var(--ease);
}

.gallery__filter-btn.active,
.gallery__filter-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* True masonry: CSS columns — each image keeps its natural aspect ratio,
   no fixed cell height, no cropping, no empty gaps. */
.gallery__grid {
  column-count: 3;
  column-gap: 14px;
  column-fill: balance;
}

.gallery__item {
  display: block;
  break-inside: avoid;
  -webkit-column-break-inside: avoid;
  overflow: hidden;
  cursor: zoom-in;
  position: relative;
  margin-bottom: 14px;
  border-radius: 12px;
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
}

.gallery__item.is-filtered-out {
  opacity: 0;
  transform: scale(0.92);
  pointer-events: none;
}

.gallery__item img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 0.9s var(--ease), filter 0.4s var(--ease);
}

.gallery__item:hover img { transform: scale(1.04); filter: brightness(0.88); }

@media (max-width: 768px) {
  .gallery__grid { column-count: 2; column-gap: 10px; }
  .gallery__item { margin-bottom: 10px; border-radius: 10px; }
}

@media (max-width: 480px) {
  .gallery__grid { column-count: 1; }
}

/* Actor/Corporate accordion — mobile only. Desktop keeps the filter
   buttons; these checkbox-driven headers are hidden there entirely. */
.gallery__acc-toggle,
.gallery__acc-header { display: none; }

@media (max-width: 640px) {
  .gallery__filter { display: none; }

  .gallery__acc-toggle {
    position: absolute;
    opacity: 0;
    width: 1px;
    height: 1px;
  }

  .gallery__acc-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    column-span: all;
    padding: 1rem 0;
    margin-bottom: 10px;
    border-top: 1px solid var(--border);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    cursor: pointer;
  }

  .gallery__acc-count { color: var(--text-muted); font-weight: 400; }

  .gallery__acc-header::after {
    content: '+';
    margin-left: auto;
    font-size: 1.1rem;
    font-weight: 300;
    color: var(--accent);
    transition: rotate var(--dur) var(--ease);
  }

  .gallery__acc-toggle:checked + .gallery__acc-header::after { rotate: 45deg; }

  #acc-actor:not(:checked) ~ .gallery__item[data-cat="actor"],
  #acc-corporate:not(:checked) ~ .gallery__item[data-cat="corporate"],
  #acc-dance:not(:checked) ~ .gallery__item[data-cat="dance"],
  #acc-athlete:not(:checked) ~ .gallery__item[data-cat="athlete"],
  #acc-personal:not(:checked) ~ .gallery__item[data-cat="personal"],
  #acc-business:not(:checked) ~ .gallery__item[data-cat="business"] {
    display: none;
  }

  /* Single ungrouped accordion — no categories, just a collapse-all
     toggle for the whole grid. */
  #acc-gallery:not(:checked) ~ .gallery__item {
    display: none;
  }
}

/* === CONTENT + ASIDE === */
.content-section { background: var(--bg-alt); }

.content-section__grid {
  display: grid;
  grid-template-columns: 1fr;
  align-items: start;
}

.content-section__grid--media {
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
}

.content-section__media {
  aspect-ratio: 3 / 4;
  overflow: hidden;
}

.content-section__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 900px) {
  .content-section__grid--media { grid-template-columns: 1fr; }
  .content-section__media { order: -1; max-width: 420px; margin-inline: auto; width: 100%; }
}

.content-section__text { max-width: 68ch; }

/* Even the full-width (non-media) column is only ~68ch — the generic
   large `h2` size (up to 5.5rem) still overflows on long single words
   like "Handshake" or "Traditional" once the vw-based size outgrows
   this fixed-width container, since font-size keeps scaling with
   viewport while the ch-based max-width doesn't. Cap it here so no
   word can ever exceed the container regardless of viewport width. */
.content-section__text h2 {
  margin-bottom: 1.5rem;
  font-size: clamp(2.2rem, 4vw, 3.6rem);
}

/* The two-column media layout halves the available width further, so
   it needs its own, more conservative cap on top of the above. */
.content-section__grid--media .content-section__text h2 {
  font-size: clamp(2rem, 3.7vw, 3.7rem);
}

@media (max-width: 640px) {
  .content-section__text h2 { font-size: clamp(0.84rem, 4.4vw, 1.23rem); }
}

.content-section__text p {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 1.2rem;
}


/* ============================================================
   GOOGLE REVIEWS
   ============================================================ */
.reviews { background: var(--bg-alt); }

.reviews__header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.reviews__header h2 { margin-bottom: 1.25rem; }

.reviews__rating {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color var(--dur) var(--ease);
}

.reviews__rating:hover { color: var(--accent); }

.reviews__stars {
  color: var(--accent);
  font-size: 0.95rem;
  letter-spacing: 0.15em;
}

.reviews__grid {
  display: grid;
  grid-template-columns: 1fr;
  max-width: 640px;
  min-width: 0;
  flex: 1 1 640px;
}

.reviews__card {
  position: relative;
  background: var(--bg);
  border-radius: 20px;
  padding: 2rem 2rem 3.75rem;
  min-height: 260px;
  transition: opacity 0.3s var(--ease);
}

/* Speech-bubble tail */
.reviews__card::after {
  content: '';
  position: absolute;
  left: 2rem;
  bottom: -14px;
  width: 28px;
  height: 28px;
  background: var(--bg);
  border-radius: 0 0 0 18px;
  clip-path: polygon(0 0, 100% 0, 0 100%);
}

.reviews__card.is-fading { opacity: 0; }

.reviews__quote-icon {
  display: block;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 3.5rem;
  line-height: 1;
  color: var(--border);
  margin-bottom: 0.5rem;
}

.reviews__quote {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.reviews__person {
  position: absolute;
  left: 2rem;
  bottom: -1.75rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.reviews__avatar {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  border: 3px solid var(--bg);
}

.reviews__name {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text);
}

.reviews__handle {
  font-size: 0.68rem;
  color: var(--text-muted);
}

.reviews__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.reviews__arrow {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border);
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--dur) var(--ease);
}

.reviews__arrow:hover { background: var(--accent); border-color: var(--accent); color: var(--bg); }

/* Hidden sitewide — with ~20 reviews there were far too many dots to
   be usable as navigation; arrows + autorotate are the only controls. */
.reviews__dots { display: none; }

.reviews__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  transition: all var(--dur) var(--ease);
}

.reviews__dot.is-active { width: 22px; border-radius: 4px; background: var(--accent); }

.reviews__cta { display: block; width: fit-content; margin-inline: auto; }

@media (max-width: 900px) {
  .reviews__grid { grid-template-columns: 1fr; max-width: 480px; }
}

@media (max-width: 640px) {
  .reviews__nav { gap: 0.6rem; }
  .reviews__arrow { width: 32px; height: 32px; }
}

@media (max-width: 768px) {
  .reviews__grid { grid-template-columns: 1fr; }
}

/* === RATES TABLE === */
.rates-section { background: var(--bg-alt); }

.rates-section .section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.rates-section .section-header h2 { margin-bottom: 0.75rem; }
.rates-section .section-header p { color: var(--text-muted); max-width: 50ch; margin-inline: auto; font-size: 0.9rem; font-weight: 300; }

.rates-table-wrap {
  max-width: var(--max-w);
  margin-inline: auto;
  overflow-x: auto;
}

.rates-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--bg);
}

.rates-table th {
  text-align: left;
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 1rem 1.25rem;
  border-bottom: 2px solid var(--accent);
  white-space: nowrap;
}

.rates-table td {
  padding: 1.5rem 1.25rem;
  border-bottom: 1px solid var(--border);
  font-size: 0.88rem;
  color: var(--text-muted);
  font-weight: 300;
  vertical-align: top;
}

.rates-table td strong {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--text);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}

.rates-table__sub {
  display: inline-block;
  margin-top: 0.35rem;
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 300;
  text-transform: none;
  letter-spacing: normal;
}

.rates-table tr:last-child td { border-bottom: none; }

.rates-table__price {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--accent);
  white-space: nowrap;
}

.rates-note {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.82rem;
  font-weight: 300;
  max-width: 56ch;
  margin: 2rem auto 1.5rem;
}

.rates-section > .container > div:last-child { text-align: center; }

@media (max-width: 768px) {
  .rates-table thead { display: none; }
  .rates-table, .rates-table tbody, .rates-table tr, .rates-table td { display: block; width: 100%; }
  .rates-table tr {
    padding: 1.5rem 1.25rem;
    border-bottom: 1px solid var(--border);
  }
  .rates-table td {
    padding: 0.35rem 0;
    border-bottom: none;
  }
  .rates-table td::before {
    content: attr(data-label);
    display: block;
    font-family: var(--font-body);
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 0.2rem;
  }
  .rates-table td[data-label="Package"]::before { display: none; }
  .rates-table__price { font-size: 1.15rem; }
}

/* === FAQ === */
.faq-section { background: var(--bg); }

.faq-section .section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.faq-section .section-header h2 { margin-bottom: 0.75rem; }
.faq-section .section-header p { color: var(--text-muted); max-width: 44ch; margin-inline: auto; font-size: 0.88rem; font-weight: 300; }

.faq__list {
  max-width: 820px;
  margin-inline: auto;
}

.faq__item { border-top: 1px solid var(--border); }
.faq__item:last-child { border-bottom: 1px solid var(--border); }

.faq__q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  padding: 1.25rem 0;
  cursor: pointer;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text);
  transition: color var(--dur) var(--ease);
  width: 100%;
  text-align: left;
  font-family: var(--font-body);
}

.faq__q:hover { color: var(--accent); }

.faq__icon {
  flex-shrink: 0;
  font-size: 1rem;
  color: var(--text-muted);
  transition: rotate var(--dur) var(--ease), color var(--dur) var(--ease);
  font-weight: 300;
}

.faq__item.is-open .faq__icon {
  rotate: 45deg;
  color: var(--accent);
}

.faq__a {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.45s var(--ease);
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.75;
  font-weight: 300;
}

.faq__item.is-open .faq__a {
  max-height: 500px;
  padding-bottom: 1.25rem;
}

/* === LIGHTBOX === */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 300;
  background: #1c1c1c;
  align-items: center;
  justify-content: center;
}

.lightbox.is-open { display: flex; }

/* Film-negative frame around the zoomed lightbox image — real 35mm
   sprocket-hole perforations run only along the left/right edges. */
.lightbox__frame {
  position: relative;
  display: inline-flex;
  background: #0c0c0c;
  padding: 5px 17px;
}

.lightbox__frame-holes {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 15px;
  background-color: #1c1c1c;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='15' height='22'%3E%3Crect x='3' y='3' width='9' height='12' rx='2' fill='%23000000'/%3E%3C/svg%3E");
  background-repeat: repeat-y;
  background-position: top center;
  background-size: 15px 22px;
  pointer-events: none;
}

.lightbox__frame-holes--left  { left: 2px; }
.lightbox__frame-holes--right { right: 2px; }

.lightbox__frame-brand {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-body);
  font-size: 0.54rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: #fff;
  text-transform: uppercase;
  white-space: nowrap;
  writing-mode: vertical-rl;
  z-index: 1;
  text-shadow: 0 0 4px rgba(0,0,0,0.8);
}

.lightbox__frame-brand--left  { left: 17px; }
.lightbox__frame-brand--right { right: 17px; transform: translateY(-50%) rotate(180deg); }

.lightbox__frame-mark {
  position: absolute;
  right: 2px;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.lightbox__frame-mark--1 { top: 5%; }
.lightbox__frame-mark--2 { top: 44%; }

.lightbox__frame-arrow {
  width: 0;
  height: 0;
  border-left: 3px solid transparent;
  border-right: 3px solid transparent;
  border-bottom: 5px solid #fff;
}

.lightbox__frame-number {
  font-family: var(--font-body);
  font-size: 0.5rem;
  font-weight: 700;
  color: #fff;
}

.lightbox__img {
  display: block;
  max-width: calc(90vw - 34px);
  max-height: calc(90vh - 10px);
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 5px;
}

.lightbox__close,
.lightbox__prev,
.lightbox__next {
  position: absolute;
  color: rgba(255,255,255,0.6);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.15);
  transition: all var(--dur) var(--ease);
}

.lightbox__close { top: 1.5rem; right: 1.5rem; font-size: 1.1rem; }
.lightbox__prev  { left: 1.5rem;  top: 50%; transform: translateY(-50%); font-size: 1.2rem; }
.lightbox__next  { right: 1.5rem; top: 50%; transform: translateY(-50%); font-size: 1.2rem; }

.lightbox__close:hover,
.lightbox__prev:hover,
.lightbox__next:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.4);
  color: #fff;
}

.lightbox__counter {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.35);
  text-transform: uppercase;
}

@media (max-width: 640px) {
  .lightbox__frame { padding: 4px 13px; }
  .lightbox__img { max-width: calc(90vw - 26px); max-height: calc(90vh - 8px); }
  .lightbox__frame-holes {
    width: 11px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='17'%3E%3Crect x='2' y='2' width='7' height='9' rx='1.5' fill='%23000000'/%3E%3C/svg%3E");
    background-size: 11px 17px;
  }
  .lightbox__frame-holes--left  { left: 2px; }
  .lightbox__frame-holes--right { right: 2px; }
  .lightbox__frame-brand { font-size: 0.42rem; letter-spacing: 0.1em; }
  .lightbox__frame-brand--left  { left: 13px; }
  .lightbox__frame-brand--right { right: 13px; }
  .lightbox__frame-mark { right: 1px; }
  .lightbox__frame-arrow { border-left-width: 3px; border-right-width: 3px; border-bottom-width: 4px; }
  .lightbox__frame-number { font-size: 0.42rem; }
}

/* === SCROLL REVEAL === */
.reveal {
  opacity: 0;
  transform: translateY(28px) scale(0.985);
  transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1), transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.is-visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* Masked line reveal — each manual line of a title slides up from
   behind an overflow-hidden mask, staggered line by line. Reserved
   for titles (see initLineReveal in main.js). Starts at opacity:0,
   same as .reveal, so there's no flash of the un-split heading before
   JS wraps it into per-line spans. */
.line-reveal { opacity: 0; }
.line-reveal.is-visible { opacity: 1; }

.line-reveal__line {
  display: block;
  overflow: hidden;
}

.line-reveal__inner {
  /* block + full width (not inline-block shrink-to-fit) — a "line" here
     is a semantic <br>-delimited chunk that can itself still need to
     wrap into multiple visual rows (e.g. long titles with no manual
     break at this viewport). inline-block's shrink-to-fit sizing was
     unreliable for that case and let text overflow its container. */
  display: block;
  width: 100%;
  transform: translateY(105%);
  transition: transform 0.95s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

.line-reveal.is-visible .line-reveal__inner { transform: translateY(0); }

/* === UTILS === */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

.pull-quote {
  background: var(--bg-alt);
  padding: 1.5rem;
  margin-block: 2rem;
  border-left: 2px solid var(--accent);
}

.pull-quote p {
  font-style: italic;
  font-size: 1.05rem;
  color: var(--text);
  margin: 0;
}

.btn-full {
  width: 100%;
  justify-content: center;
  margin-top: 1rem;
}

.mt-2  { margin-top: 2rem; }
.mt-25 { margin-top: 2.5rem; }
.mb-1  { margin-bottom: 1rem; }
.mb-2  { margin-bottom: 2rem; }

/* Forces a line break only on mobile, leaving desktop's single-line
   heading untouched. */
.br-mobile { display: none; }
@media (max-width: 640px) {
  .br-mobile { display: inline; }
}

/* For section headings whose text is too long to fit a clean two-line
   wrap at the standard mobile heading size. Uses !important since this
   utility must win over more-specific contextual heading selectors
   (e.g. `.content-section__text h2`) regardless of where it's used. */
@media (max-width: 640px) {
  .heading--tight-2line { font-size: clamp(0.85rem, 4.5vw, 1.2rem) !important; }
  /* For headings whose full text is long enough that even a 2-line
     wrap needs a notably smaller size to avoid overflow. */
  .heading--tighter-2line { font-size: clamp(0.68rem, 3.3vw, 0.92rem) !important; }
  .section-divider h3 { font-size: clamp(0.8rem, 3.95vw, 1.05rem); }
}

.section-divider {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.aside-note {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 300;
  margin-bottom: 1rem;
}

.link-accent { color: var(--accent); }
.link-accent:hover { opacity: 0.8; }

.gallery__header-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  gap: 1rem;
}

/* ============================================================
   MOTION POLISH — scrollbar, view transitions, reduced motion
   ============================================================ */

/* Slim, brand-colored scrollbar */
html { scrollbar-color: var(--accent) transparent; scrollbar-width: thin; }
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 6px; border: 2px solid var(--bg); background-clip: padding-box; }
::-webkit-scrollbar-thumb:hover { background: var(--text); background-clip: padding-box; }

/* Native cross-document page transitions (progressive enhancement) */
@media (prefers-reduced-motion: no-preference) {
  ::view-transition-old(root),
  ::view-transition-new(root) {
    animation-duration: 0.55s;
    animation-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
  }
  ::view-transition-old(root) {
    animation-name: tkp-fade-out;
  }
  ::view-transition-new(root) {
    animation-name: tkp-fade-in;
  }
}

@keyframes tkp-fade-out {
  from { opacity: 1; transform: scale(1); }
  to   { opacity: 0; transform: scale(0.985); }
}

@keyframes tkp-fade-in {
  from { opacity: 0; transform: scale(1.015); }
  to   { opacity: 1; transform: scale(1); }
}

/* Respect reduced-motion preference: strip heavy motion everywhere */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1 !important; transform: none !important; }
  .line-reveal { opacity: 1 !important; }
  .line-reveal__inner { transform: none !important; }
  .hero__slide.is-active img { animation: none !important; }
}

/* ============================================================
   LEGAL PAGES — split editorial-image layout (Usage Rights, Imprint)
   ============================================================ */
.legal-page {
  display: flex;
  min-height: 100vh;
  background: var(--bg);
}

.legal-page__media {
  position: sticky;
  top: 0;
  flex: 0 0 42%;
  height: 100vh;
  overflow: hidden;
  background: #000;
}

.legal-page__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
  filter: brightness(0.85);
}

.legal-page__logo {
  position: absolute;
  top: 2rem;
  left: 2rem;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.legal-page__logo img { height: 28px; width: auto; filter: brightness(0) invert(1); opacity: 0.92; }

.legal-page__close {
  position: fixed;
  top: 2rem;
  right: 2rem;
  z-index: 3;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  color: var(--text);
  font-size: 1rem;
  background: var(--bg);
  transition: all var(--dur) var(--ease);
}

.legal-page__close:hover { background: var(--accent); border-color: var(--accent); color: #fff; }

.legal-page__content {
  flex: 1;
  padding: clamp(3rem, 6vw, 6rem) clamp(2rem, 6vw, 6rem);
  max-width: 860px;
}

.legal-page__content h1 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin-bottom: 2rem;
}

.legal-page__content h2 {
  font-size: 1.05rem;
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: none;
  margin-top: 2.25rem;
  margin-bottom: 0.75rem;
  color: var(--accent);
}

.legal-page__content h2:first-of-type { margin-top: 0; }

.legal-page__content p {
  font-size: 0.9rem;
  line-height: 1.75;
  color: var(--text-muted);
  font-weight: 300;
  margin-bottom: 1.1rem;
}

.legal-page__content ul {
  margin: 0 0 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.legal-page__content li {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--text-muted);
  font-weight: 300;
  display: flex;
  gap: 0.6rem;
  padding-left: 0;
}

.legal-page__content li::before {
  content: '—';
  color: var(--accent);
  flex-shrink: 0;
}

.legal-page__content strong { color: var(--text); font-weight: 700; }
.legal-page__content a { color: var(--accent); text-decoration: underline; }

.legal-page__updated {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  font-size: 0.72rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.legal-page__placeholder {
  background: rgba(196,154,60,0.12);
  border: 1px dashed var(--accent);
  padding: 0.15em 0.45em;
  border-radius: 3px;
  font-style: normal;
}

@media (max-width: 900px) {
  .legal-page { flex-direction: column; }
  .legal-page__media { position: relative; flex: none; height: 42vh; min-height: 280px; }
  .legal-page__content { max-width: none; }
}
