/* ============================================================
   style_v2.css — Tyler Brown Photography V2
   ============================================================ */

/* ── 1. RESET + CUSTOM PROPERTIES ── */

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

:root {
  --forest: #1c2620;
  --deeper: #141c17;
  --cream:  #ecdfc8;
  --ochre:  #c89b4a;
  --mist:   #c8d0c4;
  --muted:  #8a9388;
  --rule:   rgba(236, 223, 200, 0.14);

  --font-display: 'Caveat', cursive;
  --font-brand:   'Lobster', cursive;
  --font-body:    'Lexend', sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--forest);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: var(--font-body);
}

/* ── 2. SHARED: BODY, NAV, PAGE-HEADER, MARQUEE, FOOTER ── */

/* NAV */
.v2-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 48px;
  color: var(--cream);
  position: relative;
  z-index: 10;
}

.v2-nav--solid {
  background: var(--forest);
  border-bottom: 1px solid var(--rule);
  position: sticky;
  top: 0;
  z-index: 100;
}

/* Hero nav pinned after scrolling past hero */
.v2-nav--over.v2-nav--stuck {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: var(--forest);
  border-bottom: 1px solid var(--rule);
  z-index: 100;
}

[data-theme="light"] .v2-nav--over.v2-nav--stuck,
[data-theme="light"] .v2-nav--over.v2-nav--stuck .v2-nav-links a { color: var(--cream); }
[data-theme="light"] .v2-nav--over.v2-nav--stuck .v2-nav-links a.active { color: var(--ochre); }
[data-theme="light"] .v2-nav--over.v2-nav--stuck .v2-nav-hamburger span { background: var(--cream); }

.v2-nav--over {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 5;
}

.v2-nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--cream);
}

.v2-nav-logo {
  height: 66px;
  width: auto;
  display: block;
  flex-shrink: 0;
}

.v2-logo-light { display: none; }
[data-theme="light"] .v2-logo-dark  { display: none; }
[data-theme="light"] .v2-logo-light { display: block; }

.v2-nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.v2-nav-links a {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  opacity: 0.85;
  color: var(--cream);
  transition: opacity 0.2s, color 0.2s;
}

.v2-nav-links a:hover {
  opacity: 1;
}

.v2-nav-links a.active {
  color: var(--ochre);
  opacity: 1;
}

.v2-nav-cta {
  background: var(--ochre);
  color: var(--forest);
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  padding: 9px 18px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: opacity 0.2s;
  flex-shrink: 0;
}

.v2-nav-cta:hover {
  opacity: 0.88;
}

/* HAMBURGER */
.v2-nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 28px;
  height: 28px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}

.v2-nav-hamburger span {
  display: block;
  width: 100%;
  height: 1px;
  background: var(--cream);
  transition: transform 0.25s, opacity 0.25s;
}

.v2-nav-hamburger.active span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.v2-nav-hamburger.active span:nth-child(2) {
  opacity: 0;
}

.v2-nav-hamburger.active span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* PAGE HEADER */
.v2-pagehead {
  padding: 72px 48px 64px;
  background: var(--deeper);
  border-bottom: 1px solid var(--rule);
  position: relative;
  overflow: hidden;
}

.v2-pagehead::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 600px;
  height: 600px;
  background: radial-gradient(ellipse at top right, rgba(200, 155, 74, 0.12) 0%, transparent 65%);
  pointer-events: none;
}

.v2-pagehead-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: end;
  position: relative;
  z-index: 1;
}

.v2-pagehead-crumbs {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.v2-pagehead-crumbs::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--ochre);
}

.v2-pagehead-crumbs span {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--ochre);
}

.v2-pagehead-crumbs .crumb-sep {
  color: var(--muted);
}

.v2-pagehead h1 {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 68px);
  font-weight: 700;
  color: var(--cream);
  line-height: 1.05;
}

.v2-pagehead h1 em {
  color: var(--ochre);
  font-style: italic;
}

.v2-pagehead-meta {
  flex-shrink: 0;
  min-width: 240px;
}

.v2-meta-table {
  border-top: 1px solid var(--rule);
}

.v2-meta-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 24px;
  padding: 9px 0;
  border-bottom: 1px solid var(--rule);
}

.v2-meta-label {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--muted);
  flex-shrink: 0;
}

.v2-meta-value {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 300;
  color: var(--cream);
  text-align: right;
}

/* MARQUEE */
.v2-marquee {
  background: var(--deeper);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: 22px 56px;
  overflow: hidden;
}

.v2-marquee-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
}

.v2-marquee-item {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 28px;
  font-weight: 700;
  color: var(--cream);
  white-space: nowrap;
}

.v2-marquee-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--ochre);
  flex-shrink: 0;
}

/* FOOTER */
.v2-footer {
  background: var(--deeper);
  border-top: 1px solid var(--rule);
  padding: 80px 56px 0;
}

.v2-footer-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 48px;
  padding-bottom: 64px;
  border-bottom: 1px solid var(--rule);
  text-align: center;
}

.v2-footer-brand-name {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 16px;
  line-height: 1;
}

.v2-footer-brand-name em {
  color: var(--ochre);
  font-style: italic;
}

.v2-footer-blurb {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 300;
  color: var(--mist);
  line-height: 1.7;
}

.v2-footer-col h5 {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--ochre);
  margin-bottom: 20px;
}

.v2-footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.v2-footer-col ul li a {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 300;
  color: var(--mist);
  opacity: 0.9;
  transition: color 0.2s, opacity 0.2s;
}

.v2-footer-col ul li a:hover {
  color: var(--cream);
  opacity: 1;
}

.v2-footer-studio p {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 300;
  color: var(--mist);
  line-height: 1.8;
}

.v2-footer-studio a {
  color: var(--mist);
  transition: color 0.2s;
}

.v2-footer-studio a:hover {
  color: var(--cream);
}

.v2-footer-bottom {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  padding: 24px 0;
  text-align: center;
}

.v2-footer-copyright {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 300;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.10em;
}

.v2-footer-colophon {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 18px;
  color: var(--muted);
}

.v2-footer-credit {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 300;
  color: var(--muted);
  opacity: 0.4;
  text-align: center;
  padding: 8px 0 16px;
  letter-spacing: 0.08em;
}

/* ── PHOTO SLOT ── */
.photo-slot {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  overflow: hidden;
}

.photo-slot img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.v2-frame:hover .photo-slot img,
.v2-tile:hover .photo-slot img {
  transform: scale(1.04);
}

.v2-frame.hidden,
.v2-year-block.hidden {
  display: none;
}

.photo-slot--forest {
  background: repeating-linear-gradient(
    45deg,
    #1c2620 0px,
    #1c2620 12px,
    #1e2a23 12px,
    #1e2a23 24px
  );
}

.photo-slot--warm {
  background: repeating-linear-gradient(
    45deg,
    #24201a 0px,
    #24201a 12px,
    #27231c 12px,
    #27231c 24px
  );
}

.photo-slot--moss {
  background: repeating-linear-gradient(
    45deg,
    #1a2119 0px,
    #1a2119 12px,
    #1c2420 12px,
    #1c2420 24px
  );
}

.photo-slot--bone {
  background: repeating-linear-gradient(
    45deg,
    #22211e 0px,
    #22211e 12px,
    #252420 12px,
    #252420 24px
  );
}

.photo-slot-label {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--muted);
  white-space: nowrap;
  pointer-events: none;
}

/* ── SHARED UTILITY CLASSES ── */
.v2-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--ochre);
  margin-bottom: 20px;
}

.v2-eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--ochre);
}

.v2-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--ochre);
  color: var(--forest);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  padding: 14px 28px;
  transition: opacity 0.2s;
  text-decoration: none;
}

.v2-btn-primary:hover {
  opacity: 0.88;
}

.v2-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  padding: 13px 26px;
  border: 1px solid rgba(236, 223, 200, 0.35);
  transition: border-color 0.2s, color 0.2s;
  text-decoration: none;
}

.v2-btn-ghost:hover {
  border-color: var(--cream);
}

.v2-underline-link {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--cream);
  text-decoration: underline;
  text-underline-offset: 4px;
  opacity: 0.7;
  transition: opacity 0.2s;
}

.v2-underline-link:hover {
  opacity: 1;
}

/* ── 3. HOME HERO ── */
.v2-hero {
  position: relative;
  height: 880px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.v2-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.v2-hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
  filter: brightness(0.55) saturate(0.85) contrast(1.05);
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}

.v2-hero-slide.active {
  opacity: 1;
}

.v2-hero-vignette {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, transparent 30%, rgba(20, 28, 23, 0.65) 100%),
    linear-gradient(180deg, rgba(20, 28, 23, 0.75) 0%, rgba(20, 28, 23, 0.3) 20%, transparent 40%, rgba(20, 28, 23, 0.7) 100%);
  z-index: 1;
}

.v2-hero-content {
  position: relative;
  z-index: 2;
  padding: 0 56px 80px;
  max-width: 860px;
}

.v2-hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}

.v2-hero-eyebrow::before {
  content: '';
  display: block;
  width: 36px;
  height: 1px;
  background: var(--ochre);
}

.v2-hero-eyebrow span {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--ochre);
}

.v2-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(52px, 6vw, 80px);
  font-weight: 700;
  color: var(--cream);
  line-height: 1.02;
  margin-bottom: 28px;
}

.v2-hero h1 em {
  color: var(--ochre);
  font-style: italic;
}

.v2-hero-sub {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 300;
  color: var(--mist);
  margin-bottom: 40px;
  max-width: 480px;
}

.v2-hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ── 4. HOME MOSAIC (SELECTED WORK) ── */
.v2-section-work {
  padding: 72px 48px;
}

.v2-section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
  gap: 24px;
}

.v2-section-head-left {}

.v2-section-head-left h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 700;
  color: var(--cream);
  line-height: 1.05;
}

.v2-section-head-left h2 em {
  color: var(--ochre);
  font-style: italic;
}

.v2-mosaic {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 6px;
}

/* Tile base */
.v2-tile {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: var(--deeper);
  text-decoration: none;
  display: block;
}

.v2-tile:hover .v2-tile-overlay {
  opacity: 0.7;
}

.v2-tile-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(20, 28, 23, 0.85) 100%);
  z-index: 2;
  transition: opacity 0.3s;
}

.v2-tile-no {
  position: absolute;
  top: 14px;
  left: 16px;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ochre);
  z-index: 3;
}

.v2-tile-info {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  z-index: 3;
}

.v2-tile-title {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 20px;
  font-weight: 700;
  color: var(--cream);
  line-height: 1.2;
  display: block;
  margin-bottom: 4px;
}

.v2-tile-meta {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--mist);
  opacity: 0.75;
}

/* Home mosaic specific spans */
.v2-mosaic .tile-1 {
  grid-column: span 4;
  aspect-ratio: 16 / 9;
}

.v2-mosaic .tile-2 {
  grid-column: span 2;
  grid-row: span 2;
}

.v2-mosaic .tile-3 {
  grid-column: span 4;
  aspect-ratio: 16 / 7;
}

/* ── 5. HOME ABOUT TEASER ── */
.v2-section-about-teaser {
  padding: 72px 48px;
  background: var(--deeper);
  border-top: 1px solid var(--rule);
}

.v2-about-teaser-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
}

.v2-about-teaser-left {}

.v2-about-teaser-left h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 3.8vw, 50px);
  font-weight: 700;
  color: var(--cream);
  line-height: 1.12;
  margin-bottom: 28px;
}

.v2-about-teaser-left h2 em {
  color: var(--ochre);
  font-style: italic;
}

.v2-about-teaser-left p {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 300;
  color: var(--mist);
  line-height: 1.8;
  margin-bottom: 20px;
}

.v2-about-teaser-left p:last-of-type {
  margin-bottom: 32px;
}

.v2-about-photo {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--deeper);
}

/* ── 6. HOME CATEGORIES ── */
.v2-section-categories {
  padding: 72px 48px;
}

.v2-section-categories-head {
  text-align: center;
  margin-bottom: 64px;
}

.v2-section-categories-head .v2-eyebrow {
  justify-content: center;
}

.v2-section-categories-head .v2-eyebrow::before {
  display: none;
}

.v2-section-categories-head h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 54px);
  font-weight: 700;
  color: var(--cream);
}

.v2-section-categories-head h2 em {
  color: var(--ochre);
  font-style: italic;
}

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

.v2-cat-card {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  display: block;
  text-decoration: none;
  cursor: pointer;
}

.v2-cat-card:hover .v2-cat-overlay {
  opacity: 0.75;
}

.v2-cat-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20, 28, 23, 0.3) 0%, transparent 40%, rgba(20, 28, 23, 0.92) 100%);
  z-index: 2;
  transition: opacity 0.3s;
}

.v2-cat-no {
  position: absolute;
  top: 18px;
  left: 20px;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--ochre);
  z-index: 3;
}

.v2-cat-content {
  position: absolute;
  bottom: 24px;
  left: 20px;
  right: 20px;
  z-index: 3;
}

.v2-cat-name {
  display: block;
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(36px, 3.5vw, 48px);
  font-weight: 700;
  color: var(--cream);
  line-height: 1.1;
  margin-bottom: 14px;
}

.v2-cat-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--rule);
  padding-top: 12px;
}

.v2-cat-count {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--mist);
}

.v2-cat-arrow {
  color: var(--ochre);
  font-size: 16px;
}

/* ── 7. HOME CTA BANNER ── */
.v2-section-cta {
  padding: 140px 56px;
  background: var(--deeper);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.v2-section-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(200, 155, 74, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.v2-section-cta-inner {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

.v2-section-cta .v2-eyebrow {
  justify-content: center;
}

.v2-section-cta .v2-eyebrow::before {
  display: none;
}

.v2-section-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(60px, 7vw, 90px);
  font-weight: 700;
  color: var(--cream);
  line-height: 1.05;
  margin-bottom: 28px;
}

.v2-section-cta h2 em {
  color: var(--ochre);
  font-style: italic;
}

.v2-section-cta p {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 300;
  color: var(--mist);
  line-height: 1.8;
  margin-bottom: 44px;
}

/* ── 8. GALLERY: FILTER BAR, YEAR BLOCKS, MOSAIC GRID, FRAME TILES, PAGER ── */

.v2-filterbar {
  position: sticky;
  top: 0;
  z-index: 4;
  background: var(--deeper);
  border-bottom: 1px solid var(--rule);
  padding: 22px 48px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.v2-filter-chips {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}

.v2-chip {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--mist);
  background: transparent;
  border: 1px solid var(--rule);
  padding: 7px 16px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.v2-chip:hover {
  border-color: var(--muted);
  color: var(--cream);
}

.v2-chip.active {
  background: var(--ochre);
  border-color: var(--ochre);
  color: var(--forest);
  font-weight: 700;
}

.v2-sort-toggle {
  display: flex;
  border: 1px solid var(--rule);
  overflow: hidden;
}

.v2-sort-seg {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  background: transparent;
  padding: 7px 14px;
  cursor: pointer;
  border: none;
  border-right: 1px solid var(--rule);
  transition: background 0.2s, color 0.2s;
}

.v2-sort-seg:last-child {
  border-right: none;
}

.v2-sort-seg:hover {
  color: var(--cream);
}

.v2-sort-seg.active {
  background: var(--ochre);
  color: var(--forest);
  font-weight: 700;
}

/* Year Blocks */
.v2-gallery-body {
  padding: 80px 56px;
}

.v2-year-block {
  margin-bottom: 96px;
}

.v2-year-header {
  display: flex;
  align-items: baseline;
  gap: 32px;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--rule);
}

.v2-year-num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(48px, 5vw, 68px);
  font-weight: 700;
  color: var(--ochre);
  line-height: 1;
}

.v2-year-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.v2-year-meta span {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
}

.v2-year-meta .year-meta-sep {
  color: var(--rule);
}

/* Gallery mosaic grid */
.v2-frame-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 160px;
  gap: 6px;
}

.v2-frame {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: var(--deeper);
}

.v2-frame:hover .v2-tile-overlay {
  opacity: 0.7;
}

/* Gallery tile span patterns */
.v2-frame.span-6-3 { grid-column: span 6; grid-row: span 3; }
.v2-frame.span-3-2 { grid-column: span 3; grid-row: span 2; }
.v2-frame.span-3-3 { grid-column: span 3; grid-row: span 3; }
.v2-frame.span-4-2 { grid-column: span 4; grid-row: span 2; }
.v2-frame.span-2-2 { grid-column: span 2; grid-row: span 2; }

.v2-frame-no {
  position: absolute;
  top: 12px;
  left: 14px;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ochre);
  z-index: 3;
}

.v2-frame-info {
  position: absolute;
  bottom: 14px;
  left: 14px;
  right: 14px;
  z-index: 3;
}

.v2-frame-title {
  display: block;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 20px;
  font-weight: 700;
  color: var(--cream);
  line-height: 1.15;
  margin-bottom: 4px;
}

.v2-frame-meta-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.v2-frame-meta {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  color: var(--mist);
  opacity: 0.75;
}

.v2-frame-cat {
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ochre);
  opacity: 0.85;
}

/* Gallery Pager */
.v2-pager {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 40px 56px 80px;
  border-top: 1px solid var(--rule);
}

.v2-pager-count {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
}

.v2-btn-load {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ochre);
  background: transparent;
  border: 1px solid var(--ochre);
  padding: 12px 28px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.v2-btn-load:hover {
  background: var(--ochre);
  color: var(--forest);
}

/* ── 9. ABOUT: BIO LAYOUT, KIT GRID, ABOUT CTA ── */

.v2-bio-section {
  padding: 100px 56px;
}

.v2-bio-grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 80px;
  align-items: start;
}

.v2-bio-portrait-wrap {
  position: sticky;
  top: 32px;
}

.v2-bio-portrait {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border: 1px solid var(--rule);
}

.v2-bio-portrait-caption {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 12px;
}

.v2-bio-portrait-caption span {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
}

.v2-bio-body {}

.v2-bio-body .v2-eyebrow {
  margin-bottom: 24px;
}

.v2-bio-lede {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 700;
  color: var(--cream);
  line-height: 1.2;
  margin-bottom: 36px;
}

.v2-bio-lede em {
  color: var(--ochre);
  font-style: italic;
}

.v2-bio-text {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 300;
  color: var(--mist);
  line-height: 1.8;
  margin-bottom: 24px;
}

.v2-bio-text:first-of-type::first-letter {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 60px;
  color: var(--ochre);
  float: left;
  line-height: 0.85;
  margin-right: 8px;
  margin-top: 8px;
}

.v2-bio-sig {
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--rule);
}

.v2-bio-sig-name {
  display: block;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 28px;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 8px;
}

.v2-bio-sig-loc {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
}

/* Kit Section */
.v2-kit-section {
  background: var(--deeper);
  padding: 72px 48px;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}

.v2-kit-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 56px;
  gap: 48px;
}

.v2-kit-header-left h2 {
  font-family: var(--font-display);
  font-size: clamp(40px, 4.5vw, 56px);
  font-weight: 700;
  color: var(--cream);
}

.v2-kit-header-left h2 em {
  color: var(--ochre);
  font-style: italic;
}

.v2-kit-header-right {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 20px;
  color: var(--mist);
  max-width: 320px;
  text-align: right;
  line-height: 1.4;
}

.v2-kit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
}

.v2-kit-card {
  background: var(--forest);
  border: 1px solid var(--rule);
  padding: 28px 24px;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.v2-kit-card-role {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--ochre);
}

.v2-kit-card-no {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  margin-bottom: 2px;
}

.v2-kit-card-name {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 24px;
  font-weight: 700;
  color: var(--cream);
  line-height: 1.15;
}

.v2-kit-card-desc {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 300;
  color: var(--mist);
  line-height: 1.7;
  margin-top: auto;
}

.v2-kit-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--rule);
}

.v2-kit-row {
  display: flex;
  align-items: baseline;
  gap: 24px;
  padding: 18px 0;
  border-bottom: 1px solid var(--rule);
}

.v2-kit-row-role {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--ochre);
  min-width: 48px;
}

.v2-kit-row-name {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 400;
  color: var(--cream);
}

/* About CTA */
.v2-about-cta {
  padding: 140px 56px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.v2-about-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(200, 155, 74, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.v2-about-cta-inner {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
}

.v2-about-cta .v2-eyebrow {
  justify-content: center;
}

.v2-about-cta .v2-eyebrow::before {
  display: none;
}

.v2-about-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(54px, 6vw, 80px);
  font-weight: 700;
  color: var(--cream);
  line-height: 1.05;
  margin-bottom: 24px;
}

.v2-about-cta h2 em {
  color: var(--ochre);
  font-style: italic;
}

.v2-about-cta p {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 300;
  color: var(--mist);
  line-height: 1.8;
  margin-bottom: 40px;
}

/* ── 10. BOOK/CONTACT: CONTACT LAYOUT, SIDEBAR, WHAT-TO-EXPECT ── */

.v2-contact-section {
  padding: 100px 48px;
}

.v2-contact-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.v2-contact-left .v2-eyebrow {
  margin-bottom: 20px;
}

.v2-contact-lede {
  font-family: var(--font-display);
  font-size: clamp(32px, 3.5vw, 44px);
  font-weight: 700;
  color: var(--cream);
  line-height: 1.15;
  margin-bottom: 20px;
}

.v2-contact-lede em {
  color: var(--ochre);
  font-style: italic;
}

.v2-contact-sub {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 300;
  color: var(--mist);
  line-height: 1.8;
  margin-bottom: 40px;
}

.v2-channel-list {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.v2-channel-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  border-bottom: 1px solid var(--rule);
  padding: 20px 0;
}

.v2-channel-row:first-child {
  border-top: 1px solid var(--rule);
}

.v2-channel-label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--muted);
  width: 100px;
  flex-shrink: 0;
}

.v2-channel-value {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 300;
  color: var(--cream);
  flex: 1;
  text-decoration: none;
  transition: color 0.2s;
}

.v2-channel-value:hover {
  color: var(--ochre);
}

.v2-channel-actions {
  display: flex;
  gap: 14px;
  flex-shrink: 0;
}

.v2-channel-action {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ochre);
  text-decoration: none;
  transition: opacity 0.2s;
}

.v2-channel-action:hover {
  opacity: 0.75;
}

/* Sidebar */
.v2-contact-sidebar {
  position: sticky;
  top: 32px;
  padding-top: 36px;
  border-top: 1px solid var(--rule);
}

.v2-contact-sidebar h4 {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--ochre);
  margin-bottom: 20px;
}

.v2-sidebar-rows {
  margin-bottom: 32px;
}

.v2-sidebar-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--rule);
  gap: 16px;
}

.v2-sidebar-label {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
}

.v2-sidebar-val {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 300;
  color: var(--cream);
  text-align: right;
  text-decoration: none;
  transition: color 0.2s;
}

.v2-sidebar-val:hover {
  color: var(--ochre);
}

.v2-sidebar-aside {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 20px;
  color: var(--mist);
  line-height: 1.4;
  padding-top: 24px;
  text-align: center;
}

.v2-sidebar-aside em {
  color: var(--ochre);
  font-style: italic;
}

/* What to expect */
.v2-expect-section {
  background: var(--deeper);
  border-top: 1px solid var(--rule);
  padding: 72px 48px;
}

.v2-expect-inner {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 56px;
}

.v2-expect-item {}

.v2-expect-item h2 {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(36px, 4vw, 48px);
  font-weight: 700;
  color: var(--cream);
  line-height: 1.1;
  margin-bottom: 16px;
}

.v2-expect-item h3 {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 32px;
  font-weight: 700;
  color: var(--cream);
  line-height: 1.1;
  margin-bottom: 14px;
}

.v2-expect-item p {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 300;
  color: var(--mist);
  line-height: 1.8;
}

/* ── 11. STORIES: FEATURE CARD, STORY ROWS, NEWSLETTER STRIP ── */

.v2-stories-featured {
  padding: 80px 56px;
  background: var(--forest);
}

.v2-feature-card {
  border: 1px solid var(--rule);
  background: var(--deeper);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
}

.v2-feature-photo {
  position: relative;
  min-height: 600px;
}

.v2-feature-body {
  padding: 64px 56px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.v2-feature-top {}

.v2-feature-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.v2-feature-eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--ochre);
}

.v2-feature-eyebrow span {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--ochre);
}

.v2-feature-body h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 700;
  color: var(--cream);
  line-height: 1.1;
  margin-bottom: 20px;
}

.v2-feature-body h2 em {
  color: var(--ochre);
  font-style: italic;
}

.v2-feature-dek {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 300;
  color: var(--mist);
  line-height: 1.75;
}

.v2-feature-bottom {}

.v2-feature-read {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ochre);
  text-decoration: underline;
  text-underline-offset: 4px;
  margin-bottom: 20px;
  transition: opacity 0.2s;
}

.v2-feature-read:hover {
  opacity: 0.75;
}

.v2-feature-strip {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  padding-top: 16px;
  border-top: 1px solid var(--rule);
}

.v2-feature-strip span {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
}

/* Story Index */
.v2-story-index {
  padding: 80px 56px;
  border-top: 1px solid var(--rule);
}

.v2-story-index-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
  gap: 24px;
  flex-wrap: wrap;
}

.v2-story-index-head h2 {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 56px);
  font-weight: 700;
  color: var(--cream);
}

.v2-story-index-head h2 em {
  color: var(--ochre);
  font-style: italic;
}

.v2-story-filters {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  align-items: center;
}

.v2-story-filter {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px 0;
  transition: color 0.2s;
}

.v2-story-filter:hover {
  color: var(--cream);
}

.v2-story-filter.active {
  color: var(--ochre);
}

/* Story rows */
.v2-story-list {
  display: flex;
  flex-direction: column;
}

.v2-story-row {
  display: grid;
  grid-template-columns: 80px 1.2fr 2fr 280px;
  gap: 48px;
  align-items: start;
  border-top: 1px solid var(--rule);
  padding: 36px 0;
  text-decoration: none;
  color: inherit;
  transition: padding-left 0.25s;
}

.v2-story-row:hover {
  padding-left: 12px;
}

.v2-story-no {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ochre);
  padding-top: 4px;
}

.v2-story-meta {
  padding-top: 2px;
}

.v2-story-chapter {
  display: block;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ochre);
  margin-bottom: 6px;
}

.v2-story-date {
  display: block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 300;
  color: var(--muted);
  margin-bottom: 10px;
}

.v2-story-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.v2-story-tag {
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  border: 1px solid var(--rule);
  padding: 3px 8px;
}

.v2-story-body {}

.v2-story-title {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 700;
  color: var(--cream);
  line-height: 1.1;
  margin-bottom: 12px;
  display: block;
}

.v2-story-excerpt {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 300;
  color: var(--mist);
  line-height: 1.7;
  margin-bottom: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.v2-story-read {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ochre);
  opacity: 0.8;
  transition: opacity 0.2s;
}

.v2-story-row:hover .v2-story-read {
  opacity: 1;
}

.v2-story-thumb {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--deeper);
}

/* Newsletter strip */
.v2-newsletter {
  background: var(--deeper);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: 80px 56px;
}

.v2-newsletter-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.v2-newsletter-left h3 {
  font-family: var(--font-display);
  font-size: clamp(32px, 3.5vw, 44px);
  font-weight: 700;
  color: var(--cream);
  line-height: 1.1;
  margin-bottom: 14px;
}

.v2-newsletter-left h3 em {
  color: var(--ochre);
  font-style: italic;
}

.v2-newsletter-left p {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 300;
  color: var(--mist);
  line-height: 1.75;
}

.v2-newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.v2-newsletter-input-row {
  display: flex;
  gap: 0;
}

.v2-newsletter-input {
  flex: 1;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--rule);
  padding: 12px 0;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 300;
  color: var(--cream);
  outline: none;
  transition: border-color 0.2s;
}

.v2-newsletter-input::placeholder {
  color: var(--muted);
}

.v2-newsletter-input:focus {
  border-bottom-color: var(--ochre);
}

.v2-newsletter-submit {
  background: var(--ochre);
  color: var(--forest);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  padding: 12px 24px;
  border: none;
  cursor: pointer;
  flex-shrink: 0;
  transition: opacity 0.2s;
}

.v2-newsletter-submit:hover {
  opacity: 0.88;
}

.v2-newsletter-note {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
}

/* ── 12. RESPONSIVE ── */

/* ≥ 1200px — already the base */

/* 768px – 1199px */
@media (max-width: 1199px) {
  .v2-nav {
    padding: 22px 36px;
  }

  .v2-hero-content {
    padding: 0 36px 64px;
  }

  .v2-hero h1 {
    font-size: clamp(40px, 5vw, 68px);
  }

  .v2-section-work,
  .v2-section-about-teaser,
  .v2-section-categories,
  .v2-section-cta,
  .v2-bio-section,
  .v2-kit-section,
  .v2-about-cta,
  .v2-contact-section,
  .v2-expect-section,
  .v2-stories-featured,
  .v2-story-index,
  .v2-newsletter,
  .v2-gallery-body {
    padding-left: 36px;
    padding-right: 36px;
  }

  .v2-pagehead {
    padding: 80px 36px 72px;
  }

  .v2-filterbar {
    padding: 18px 36px;
  }

  .v2-pager {
    padding: 32px 36px 64px;
  }

  .v2-footer {
    padding: 64px 36px 0;
  }

  .v2-marquee {
    padding: 18px 36px;
  }

  .v2-bio-grid {
    grid-template-columns: 1fr 1.1fr;
    gap: 56px;
  }

  .v2-kit-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .v2-contact-grid {
    grid-template-columns: 1fr;
    gap: 64px;
  }

  .v2-contact-sidebar {
    position: static;
  }

  .v2-story-row {
    grid-template-columns: 60px 1fr 1.5fr 200px;
    gap: 32px;
  }

  .v2-footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .v2-pagehead-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .v2-pagehead-meta {
    min-width: auto;
  }
}

/* < 768px */
@media (max-width: 767px) {
  .v2-nav {
    padding: 18px 24px;
  }

  .v2-nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--deeper);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 32px;
    z-index: 100;
  }

  .v2-nav-links.open {
    display: flex;
  }

  .v2-nav-links a {
    font-size: 16px;
  }

  .v2-nav-hamburger {
    display: flex;
    z-index: 101;
    position: relative;
  }

  .v2-nav-cta {
    display: none;
  }

  .v2-hero {
    height: 100svh;
    min-height: 640px;
  }

  .v2-hero-content {
    padding: 0 24px 48px;
  }

  .v2-hero h1 {
    font-size: clamp(48px, 12vw, 72px);
  }

  .v2-hero-ctas {
    flex-direction: column;
    gap: 12px;
  }

  .v2-section-work,
  .v2-section-about-teaser,
  .v2-section-categories,
  .v2-section-cta,
  .v2-bio-section,
  .v2-kit-section,
  .v2-about-cta,
  .v2-contact-section,
  .v2-expect-section,
  .v2-stories-featured,
  .v2-story-index,
  .v2-newsletter,
  .v2-gallery-body {
    padding-left: 24px;
    padding-right: 24px;
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .v2-pagehead {
    padding: 72px 24px 56px;
  }

  .v2-pagehead-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .v2-filterbar {
    padding: 16px 24px;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .v2-pager {
    padding: 28px 24px 56px;
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }

  .v2-footer {
    padding: 48px 24px 0;
  }

  .v2-footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .v2-marquee {
    padding: 18px 24px;
  }

  .v2-marquee-item {
    font-size: 22px;
  }

  .v2-mosaic {
    grid-template-columns: 1fr 1fr;
    gap: 4px;
  }

  .v2-mosaic .tile-1 {
    grid-column: 1 / -1;
    aspect-ratio: 3 / 2;
  }

  .v2-mosaic .tile-2 {
    grid-column: span 1;
    grid-row: span 1;
  }

  .v2-mosaic .tile-3,
  .v2-mosaic .tile-4 {
    grid-column: span 1;
  }

  .v2-about-teaser-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .v2-categories-grid {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .v2-cat-card {
    aspect-ratio: 4 / 3;
  }

  .v2-bio-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .v2-bio-portrait-wrap {
    position: static;
  }

  .v2-kit-grid {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .v2-kit-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .v2-kit-header-right {
    text-align: left;
  }

  .v2-contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .v2-contact-sidebar {
    position: static;
  }

  .v2-feature-card {
    grid-template-columns: 1fr;
  }

  .v2-feature-photo {
    min-height: 360px;
  }

  .v2-feature-body {
    padding: 40px 28px;
    min-height: 420px;
  }

  .v2-story-row {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 28px 0;
  }

  .v2-story-thumb {
    display: none;
  }

  .v2-newsletter-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .v2-frame-grid {
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 120px;
  }

  .v2-frame.span-6-3 { grid-column: span 4; grid-row: span 2; }
  .v2-frame.span-3-2 { grid-column: span 2; grid-row: span 2; }
  .v2-frame.span-3-3 { grid-column: span 2; grid-row: span 2; }
  .v2-frame.span-4-2 { grid-column: span 4; grid-row: span 2; }
  .v2-frame.span-2-2 { grid-column: span 2; grid-row: span 2; }

  .v2-section-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .v2-story-index-head {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ≤ 960px — mobile nav trigger */
@media (max-width: 960px) {
  .v2-nav-hamburger {
    display: flex;
  }

  .v2-nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--deeper);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 32px;
    z-index: 100;
  }

  .v2-nav-links.open {
    display: flex;
  }

  .v2-nav-links a {
    font-size: 15px;
  }

  .v2-nav-cta {
    display: none;
  }
}

/* ── 13. FADE-IN ANIMATION ── */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger delays */
.fade-in:nth-child(2) { transition-delay: 0.1s; }
.fade-in:nth-child(3) { transition-delay: 0.2s; }
.fade-in:nth-child(4) { transition-delay: 0.3s; }
/* ── 14. THEME TOGGLE BUTTON ── */
.v2-nav-theme {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 36px;
  width: auto;
  background: var(--deeper);
  border: 1px solid var(--rule);
  border-radius: 18px;
  color: var(--cream);
  padding: 0 12px;
  cursor: pointer;
  flex-shrink: 0;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  transition: opacity 120ms ease, background 200ms ease;
}

.v2-nav-theme:hover {
  opacity: 0.7;
}

/* Default = dark mode: show sun (click → go light) */
.v2-theme-sun  { display: inline-flex; align-items: center; gap: 5px; }
.v2-theme-moon { display: none; }

/* Light mode: show moon (click → go dark) */
[data-theme="light"] .v2-theme-sun  { display: none; }
[data-theme="light"] .v2-theme-moon { display: inline-flex; align-items: center; gap: 5px; }

/* ── 15. LIGHT MODE ── */
[data-theme="light"] {
  --forest: #f4ede0;
  --deeper: #ece4d3;
  --cream:  #2a2620;
  --ochre:  #a8742a;
  --mist:   #3e3028;
  --muted:  #5e5248;
  --rule:   rgba(42, 38, 32, 0.14);
}

/* Hero stays light-on-dark — it's still a dark photo */
[data-theme="light"] .v2-nav--over,
[data-theme="light"] .v2-nav--over .v2-nav-links a { color: #f4ede0; }
[data-theme="light"] .v2-nav--over .v2-nav-links a.active { color: #e3b66e; }
[data-theme="light"] .v2-nav--over .v2-nav-hamburger span { background: #f4ede0; }

[data-theme="light"] .v2-hero-slide {
  filter: brightness(0.62) saturate(0.88) contrast(1.05);
}

[data-theme="light"] .v2-hero-vignette {
  background:
    linear-gradient(180deg, rgba(42,38,32,0.35) 0%, rgba(42,38,32,0.08) 30%, rgba(42,38,32,0.15) 60%, rgba(42,38,32,0.7) 100%),
    radial-gradient(ellipse at 30% 60%, transparent 0%, rgba(42,38,32,0.35) 100%);
}

[data-theme="light"] .v2-hero h1 { color: #f4ede0; }
[data-theme="light"] .v2-hero h1 em { color: #e3b66e; }
[data-theme="light"] .v2-hero-eyebrow span { color: #e3b66e; }
[data-theme="light"] .v2-hero-eyebrow::before { background: #e3b66e; }
[data-theme="light"] .v2-hero-sub { color: rgba(244, 237, 224, 0.85); }
[data-theme="light"] .v2-btn-ghost { color: #f4ede0; border-color: rgba(244, 237, 224, 0.55); }

/* Tile & cat overlays use cocoa stops */
[data-theme="light"] .v2-tile-overlay {
  background: linear-gradient(180deg, transparent 50%, rgba(42, 38, 32, 0.78) 100%);
}
[data-theme="light"] .v2-cat-overlay {
  background: linear-gradient(180deg, rgba(42,38,32,0.3) 0%, transparent 40%, rgba(42,38,32,0.88) 100%);
}

/* Tile & cat text stays light — sits over dark gradient overlays */
[data-theme="light"] .v2-tile-title { color: #f4ede0; }
[data-theme="light"] .v2-tile-meta { color: rgba(244, 237, 224, 0.75); }
[data-theme="light"] .v2-tile-no { color: #e3b66e; }
[data-theme="light"] .v2-cat-name { color: #f4ede0; }
[data-theme="light"] .v2-cat-count { color: rgba(244, 237, 224, 0.75); }
[data-theme="light"] .v2-cat-no { color: #e3b66e; }
[data-theme="light"] .v2-cat-foot { border-top-color: rgba(244, 237, 224, 0.4); }

/* Gallery frame text stays light — sits over photos with gradient overlay */
[data-theme="light"] .v2-frame-title { color: #f4ede0; }
[data-theme="light"] .v2-frame-meta { color: rgba(244, 237, 224, 0.75); }
[data-theme="light"] .v2-frame-no { color: #e3b66e; }
[data-theme="light"] .v2-frame-cat { color: #e3b66e; }

/* Photo-slot placeholder hatches — light linen tones */
[data-theme="light"] .photo-slot--forest {
  background: repeating-linear-gradient(45deg, #d8cdb6 0px, #d8cdb6 12px, #cec2a8 12px, #cec2a8 24px);
}
[data-theme="light"] .photo-slot--warm {
  background: repeating-linear-gradient(45deg, #e0d2b8 0px, #e0d2b8 12px, #d4c4a4 12px, #d4c4a4 24px);
}
[data-theme="light"] .photo-slot--moss {
  background: repeating-linear-gradient(45deg, #d4cfba 0px, #d4cfba 12px, #c8c3ac 12px, #c8c3ac 24px);
}
[data-theme="light"] .photo-slot--bone {
  background: repeating-linear-gradient(45deg, #e6e0cf 0px, #e6e0cf 12px, #dcd4c0 12px, #dcd4c0 24px);
}
