@import url('https://fonts.googleapis.com/css2?family=Golos+Text:wght@400;500;600;700;900&display=swap');

/* ── VARIABLES ── */
:root {
  --bg:         #F7F4E9;
  --white:      #FFFFFF;
  --text:       #161512;
  --muted:      #9A9690;
  --border:     #E8E8E8;
  --green:      #3B6E47;
  --sidebar-w:  260px;
}

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

html, body { height: 100%; }

body {
  font-family: 'Golos Text', sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  cursor: none; /* custom cursor handles this */
}

/* ── CUSTOM CURSOR ── */
.cursor {
  position: fixed;
  width: 9px;
  height: 9px;
  background: var(--green);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.18s ease, background 0.18s ease;
  mix-blend-mode: multiply;
}

.cursor.is-hovering {
  transform: translate(-50%, -50%) scale(2.8);
}

/* Restore cursor for touch devices */
@media (hover: none) {
  body { cursor: auto; }
  .cursor { display: none; }
}

/* ── LAYOUT ── */
.site-wrapper {
  display: flex;
  min-height: 100vh;
}

/* ── SIDEBAR ──
   Same background as the page. A hairline border is
   the only separation — no contrasting panel. */
.sidebar {
  width: var(--sidebar-w);
  min-height: 100vh;
  background: var(--bg);
  border-right: 1px solid var(--border);
  padding: 52px 36px;
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  overflow-y: auto;
}

.sidebar-brand {
  margin-bottom: 52px;
}

.sidebar-name {
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
  text-decoration: none;
  display: block;
  line-height: 1.2;
}

.sidebar-role {
  font-size: 11px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--muted);
  margin-top: 8px;
  display: block;
  max-width: 190px;
}

/* ── NAVIGATION ── */
.nav-label {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 14px;
}

.nav-list {
  list-style: none;
}

.nav-list a {
  display: block;
  font-size: 14px;
  font-weight: 400;
  color: var(--text);
  text-decoration: none;
  padding: 7px 0;
  position: relative;
  transition: color 0.15s ease;
}

/* Whimsy: a small dash slides in from the left on hover */
.nav-list a::before {
  content: '—';
  position: absolute;
  left: -18px;
  font-size: 10px;
  color: var(--green);
  opacity: 0;
  transition: opacity 0.2s ease, left 0.2s ease;
}

.nav-list a:hover,
.nav-list a.active {
  color: var(--green);
}

.nav-list a:hover::before,
.nav-list a.active::before {
  opacity: 1;
  left: -14px;
}

.nav-list a.active {
  font-weight: 600;
}

.nav-divider {
  height: 1px;
  background: var(--border);
  margin: 28px 0;
}

.nav-secondary a {
  font-size: 13px;
  font-weight: 400;
  color: var(--muted);
}

.nav-secondary a:hover {
  color: var(--green);
}

.resume-link::after {
  content: ' ↗';
  font-size: 10px;
}

/* ── MAIN CONTENT ── */
.main-content {
  margin-left: var(--sidebar-w);
  flex: 1;
  padding: 80px 96px;
  max-width: calc(var(--sidebar-w) + 840px);

  /* Whimsy: content fades in on page load */
  animation: fadeUp 0.45s ease both;
}

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

/* ── HOMEPAGE COLLAGE ── */
.home-collage {
  display: grid;
  grid-template-columns: 2fr 1.4fr 1.4fr;
  grid-template-rows: 240px 200px 210px;
  gap: 8px;
  margin-left: -96px;
  margin-right: -96px;
  margin-bottom: 40px;
}

.collage-item {
  overflow: hidden;
  background: var(--border);
  box-shadow: 0 3px 18px rgba(0,0,0,0.1), 0 1px 4px rgba(0,0,0,0.06);
}

.collage-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s ease;
}

.collage-item:hover img {
  transform: scale(1.05);
}

/* Photos feel pinned to a board — each at its own angle */
.collage-item:nth-child(2) { transform: rotate(-1.5deg); }
.collage-item:nth-child(3) { transform: rotate(0.6deg); }
.collage-item:nth-child(4) { transform: rotate(1.2deg); }
.collage-item:nth-child(5) { transform: rotate(-0.9deg); }
.collage-item:hover { transform: rotate(0deg) !important; z-index: 2; }

/* Specific grid placement for each image */
.collage-item:nth-child(1) { grid-column: 1; grid-row: 1 / 3; }   /* tall left */
.collage-item:nth-child(2) { grid-column: 2 / 4; grid-row: 1; }   /* wide top-right */
.collage-item:nth-child(3) { grid-column: 2; grid-row: 2; }        /* small mid */
.collage-item:nth-child(4) { grid-column: 3; grid-row: 2; }        /* small mid */
.collage-item:nth-child(5) { grid-column: 1 / 3; grid-row: 3; }   /* wide bottom-left */
.collage-item:nth-child(6) { grid-column: 3; grid-row: 3; }        /* small bottom-right */

/* ── EVENT HERO ── */
.event-hero {
  margin-left: -96px;
  margin-right: -96px;
  margin-bottom: 52px;
  height: clamp(420px, 60vh, 620px);
  overflow: hidden;
  position: relative;
}

/* Dark gradient so title text reads clearly over any photo */
.event-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 20%,
    rgba(18, 16, 10, 0.65) 100%
  );
  pointer-events: none;
}

.event-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 8s ease;
}

/* Slow Ken Burns drift — adds life to the image */
.event-hero:hover img {
  transform: scale(1.04);
}

/* Category label + title sit on top of the gradient */
.event-hero-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px 96px;
  z-index: 1;
}

.event-hero-overlay .event-category {
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 10px;
}

.event-hero-overlay .event-title {
  color: #FFFFFF;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

/* ── HOME PAGE ── */
.home-intro {
  padding-top: 0;
  margin-bottom: 56px;
}

.home-eyebrow {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 28px;
}

.home-headline {
  font-size: clamp(52px, 7.5vw, 88px);
  font-weight: 600;
  line-height: 1.06;
  color: var(--text);
  margin-bottom: 0;
  letter-spacing: -0.02em;
}

.home-body {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.85;
  color: var(--text);
  max-width: 480px;
}

.home-body p + p {
  margin-top: 18px;
}

.home-prompt {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--green);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* ── EVENT PAGES ── */
.event-page {
  max-width: 760px;
  padding-top: 8px;
}

.event-category {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}

.event-title {
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 600;
  line-height: 1.08;
  color: var(--text);
  margin-bottom: 28px;
  letter-spacing: -0.02em;
}

.event-description {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.85;
  max-width: 580px;
}

.event-description p {
  margin-bottom: 16px;
}

.event-description p:last-child {
  margin-bottom: 0;
}

/* ── IMAGE GALLERY ── */
.image-gallery {
  margin-top: 64px;
}

/*
  Two-column masonry via CSS columns.
  Images display at their full natural proportions — no cropping, no fixed heights.
  The columns create an organic, staggered layout automatically.
*/
.gallery-grid {
  columns: 2;
  column-gap: 12px;
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: 12px;
}

.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: opacity 0.3s ease;
}

.gallery-item:hover img {
  opacity: 0.92;
}

.gallery-placeholder {
  width: 100%;
  aspect-ratio: 4 / 3;
  background: #EDEBE4;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ── FEATURED PROJECT (single-event pages) ── */
.featured-project {
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
}

.featured-label {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}

.featured-title {
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
  line-height: 1.2;
}

/* ── QUOTES ── */
.event-quote {
  margin-top: 64px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
  max-width: 600px;
}

.event-quote blockquote {
  font-size: 21px;
  font-weight: 500;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 24px;
}

.event-quote blockquote::before {
  content: '\201C';
  font-size: 96px;
  line-height: 0;
  vertical-align: -0.48em;
  color: var(--green);
  font-weight: 900;
  margin-right: 2px;
  display: inline;
}

.event-quote cite {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  font-style: normal;
}

/* ── SUB-EVENT INLINE QUOTE (e.g. Matt Bell in NKH Dinner Series) ── */
.sub-event-quote {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.sub-event-quote blockquote {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.75;
  color: var(--text);
  margin-bottom: 12px;
}

.sub-event-quote blockquote::before {
  content: '\201C';
  font-size: 52px;
  line-height: 0;
  vertical-align: -0.4em;
  color: var(--green);
  font-weight: 900;
  margin-right: 2px;
  display: inline;
}

.sub-event-quote cite {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  font-style: normal;
}

/* ── FEATURED PROJECTS LIST (fundraising, media-press) ── */
.sub-events {
  margin-top: 0;
  margin-bottom: 64px;
  border-top: 1px solid var(--border);
  padding-top: 48px;
}

.sub-events-label {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 36px;
}

.sub-event {
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
}

.sub-event:first-of-type {
  padding-top: 0;
}

.sub-event-title {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 10px;
}

.sub-event-partner {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 10px;
}

.sub-event-desc {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.75;
  margin-bottom: 16px;
  max-width: 520px;
}

.sub-event-link {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green);
  text-decoration: none;
  border-bottom: 1px solid var(--green);
  padding-bottom: 1px;
  transition: opacity 0.15s ease;
}

.sub-event-link:hover {
  opacity: 0.6;
}

/* ── ABOUT PAGE ── */
.about-page {
  /* full-width — sections handle their own padding */
  display: flex;
  flex-direction: column;
}

/* Intro: small fixed headshot left, bio right */
.about-intro {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 0;
  padding: 80px 80px 52px;
  align-items: start;
}

.about-headshot {
  width: 260px;
  height: 320px;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.about-body {
  padding: 0 0 0 72px;
}

.about-body h1 {
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.08;
  color: var(--text);
  margin-bottom: 32px;
}

.about-body p {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.85;
  margin-bottom: 20px;
}

/* About photo carousel */
.about-photo-carousel {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.about-carousel-track {
  display: flex;
  gap: 2px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.about-carousel-track::-webkit-scrollbar { display: none; }

.about-carousel-track img {
  flex: 0 0 calc(50% - 1px);
  scroll-snap-align: start;
  height: 38vh;
  object-fit: contain;
  display: block;
  background: var(--bg);
}

.about-carousel-btns {
  display: flex;
  gap: 12px;
  padding: 16px 80px;
}

.about-carousel-btn {
  background: none;
  border: 1px solid var(--border);
  width: 36px;
  height: 36px;
  cursor: pointer;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  transition: border-color 0.15s ease, color 0.15s ease;
}

.about-carousel-btn:hover {
  border-color: var(--text);
}

/* Bottom section: "Work with me" left, quote right — equal columns */
.about-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  padding: 52px 80px 80px;
  border-top: 1px solid var(--border);
  align-items: center;
}

.about-contact {
  /* layout from .about-bottom grid */
}

/* Quote — same bordered magenta-accent box as event sidebar quotes */
.about-quote {
  border: 1px solid var(--border);
  border-left: 4px solid var(--magenta);
  padding: 36px 32px;
}

.about-quote blockquote {
  font-size: 19px;
  font-weight: 500;
  line-height: 1.65;
  color: var(--text);
  margin-bottom: 16px;
}

.about-quote blockquote::before {
  content: '\201C';
  font-size: 52px;
  line-height: 0;
  vertical-align: -0.32em;
  color: var(--magenta);
  font-weight: 900;
  margin-right: 3px;
  display: inline;
}

.about-quote cite {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  font-style: normal;
}

.about-contact h2 {
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.08;
  color: var(--text);
  margin-bottom: 12px;
}

.about-contact > p {
  font-size: 15px;
  font-weight: 400;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 480px;
}

.about-contact-links {
  display: flex;
  flex-direction: row;
  gap: 24px;
}

.about-contact-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: color 0.15s ease;
}

.about-contact-links a:hover {
  color: var(--green);
}

/* ── CONTACT PAGE ── */
.contact-page {
  max-width: 520px;
  padding-top: 8px;
}

.contact-page h1 {
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.04;
  color: var(--text);
  margin-bottom: 28px;
}

.contact-page p {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.85;
  margin-bottom: 40px;
}

.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
  text-decoration: none;
  border-bottom: 2px solid var(--text);
  padding-bottom: 4px;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.contact-link:hover {
  color: var(--green);
  border-color: var(--green);
}

.contact-social {
  margin-top: 32px;
  font-size: 13px;
  font-weight: 400;
  color: var(--muted);
}

.contact-social a {
  color: var(--text);
  text-decoration: none;
  border-bottom: 1px solid var(--border);
  transition: color 0.15s ease;
}

.contact-social a:hover {
  color: var(--green);
}

/* ── EASTER EGG ── */
.easter-egg-trigger {
  background: none;
  border: none;
  cursor: none;
  opacity: 0.4;
  flex-shrink: 0;
  font-size: 14px;
  color: var(--muted);
  padding: 0;
  line-height: 1;

  animation: pulse 3s ease-in-out infinite;
}

.easter-egg-trigger:hover {
  color: var(--green);
  opacity: 1;
  animation: none;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.4; }
  50%       { transform: scale(1.5); opacity: 0.7; }
}

.easter-egg-modal {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(22, 21, 18, 0.96);
  z-index: 9998;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 28px;
}

.easter-egg-modal.open {
  display: flex;
}

.easter-egg-inner {
  text-align: center;
  color: var(--white);
  max-width: 440px;
  padding: 0 24px;
}

.easter-egg-inner h2 {
  font-size: 44px;
  font-weight: 900;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}

.easter-egg-inner p {
  font-size: 14px;
  font-weight: 400;
  color: rgba(255,255,255,0.5);
  margin-bottom: 32px;
  line-height: 1.7;
}

.easter-egg-close {
  background: none;
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.5);
  font-family: 'Golos Text', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 12px 28px;
  cursor: none;
  transition: all 0.2s ease;
}

.easter-egg-close:hover {
  border-color: rgba(255,255,255,0.6);
  color: var(--white);
}

/* ═══════════════════════════════════════════════════
   DISPATCH PROTOTYPE — parallel layout, no sidebar
   ═══════════════════════════════════════════════════ */

/* ── HERO OVERLAYS ── */

/* Homepage hero */
.dp-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 25%, rgba(16, 14, 10, 0.72) 100%);
  pointer-events: none;
  z-index: 1;
}

.dp-hero-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 56px 80px;
  z-index: 2;
}

.dp-hero-overlay .dp-overlay-title {
  font-size: clamp(44px, 6vw, 76px);
  font-weight: 600;
  line-height: 1.06;
  letter-spacing: -0.02em;
  color: #FFFFFF;
  text-shadow: 0 2px 28px rgba(0, 0, 0, 0.25);
  max-width: 760px;
}

/* Event page heroes */
.dp-event-hero {
  position: relative;
}

.dp-event-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 25%, rgba(16, 14, 10, 0.72) 100%);
  pointer-events: none;
  z-index: 1;
}

.dp-event-hero-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 48px 80px;
  z-index: 2;
}

.dp-overlay-category {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 12px;
}

.dp-event-hero-overlay .dp-overlay-title {
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 600;
  line-height: 1.06;
  letter-spacing: -0.02em;
  color: #FFFFFF;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.25);
}

/* Fixed top navigation */
.dispatch-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 58px;
  padding: 0 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  z-index: 200;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.dispatch-brand {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
  text-decoration: none;
  flex-shrink: 0;
  transition: color 0.15s ease;
}

.dispatch-brand:hover { color: var(--green); }

.dispatch-nav {
  display: flex;
  gap: 20px;
  align-items: center;
  flex: 1;
  justify-content: center;
}

.dispatch-nav a {
  font-size: 12px;
  font-weight: 400;
  color: var(--text);
  text-decoration: none;
  letter-spacing: 0.01em;
  white-space: nowrap;
  transition: color 0.15s ease;
}

.dispatch-nav a:hover,
.dispatch-nav a.dispatch-active { color: var(--green); }

.dispatch-header-right {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}

.dispatch-header-about,
.dispatch-header-contact {
  font-size: 12px;
  font-weight: 400;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.15s ease;
}

.dispatch-header-about:hover,
.dispatch-header-contact:hover { color: var(--green); }

/* Main wrapper — clears fixed header */
.dispatch-main {
  padding-top: 58px;
  animation: fadeUp 0.45s ease both;
}

/* ── DISPATCH: HOMEPAGE ── */

.dp-hero {
  width: 100%;
  height: 88vh;
  overflow: hidden;
  position: relative;
}

.dp-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.dp-hero-label {
  position: absolute;
  bottom: 20px;
  right: 28px;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}

.dp-home-intro {
  padding: 72px 80px 56px;
}

.dp-home-headline {
  font-size: clamp(52px, 7.5vw, 88px);
  font-weight: 600;
  line-height: 1.06;
  letter-spacing: -0.02em;
  color: var(--text);
}

/* 4-column grid of event categories */
.dp-category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}

.dp-category-tile {
  display: block;
  text-decoration: none;
}

.dp-tile-img {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--border);
}

.dp-tile-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.dp-category-tile:hover .dp-tile-img img {
  transform: scale(1.04);
}

.dp-tile-label {
  display: block;
  padding: 16px 0 24px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  transition: color 0.15s ease;
}

.dp-tile-note {
  font-size: 11px;
  font-weight: 400;
  color: var(--muted);
}

.dp-category-tile:hover .dp-tile-label { color: var(--green); }

/* ── DISPATCH: EVENT PAGE ── */

.dp-event-hero {
  width: 100%;
  height: 76vh;
  overflow: hidden;
}

.dp-event-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 8s ease;
}

.dp-event-hero:hover img { transform: scale(1.03); }

.dp-event-header {
  padding: 48px 80px 0;
}

.dp-event-category {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 14px;
}

.dp-event-title {
  font-size: clamp(40px, 5.5vw, 72px);
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: -0.02em;
  color: var(--text);
}

.dp-event-content {
  padding: 52px 80px 48px;
  max-width: 820px;
}

.dp-featured {
  margin-bottom: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border);
}

.dp-featured-label {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}

.dp-featured-name {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
  line-height: 1.2;
}

.dp-event-body p {
  font-size: 17px;
  font-weight: 400;
  line-height: 1.85;
  color: var(--text);
  margin-bottom: 16px;
  max-width: 580px;
}

.dp-event-body a,
.sub-event-desc a {
  color: var(--magenta);
  text-decoration: none;
}

.dp-event-body a:hover,
.sub-event-desc a:hover {
  text-decoration: underline;
}

/* Full-width gallery: 2-column grid, every 3rd item spans full width */
.dp-event-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  margin-bottom: 4px;
}

.dp-gallery-item {
  overflow: hidden;
  background: var(--border);
}

.dp-gallery-item img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  display: block;
  transition: opacity 0.3s ease;
}

.dp-gallery-item:hover img { opacity: 0.92; }

/* Every 3rd item gets a full-width cinematic row */
.dp-gallery-item:nth-child(3n) {
  grid-column: 1 / -1;
}

.dp-gallery-item:nth-child(3n) img {
  height: 580px;
}

/* Override: items marked half stay single-column even if they'd be 3n */
.dp-gallery-item--half {
  grid-column: auto !important;
}

.dp-gallery-item--half img {
  height: 440px !important;
}

/* Quote */
.dp-event-quote {
  padding: 52px 80px 100px;
  border-top: 1px solid var(--border);
  max-width: 820px;
}

/* Footer — easter egg trigger lives here */
.dispatch-footer {
  padding: 40px 80px;
  border-top: 1px solid var(--border);
}

.dp-event-quote blockquote {
  font-size: 22px;
  font-weight: 500;
  line-height: 1.65;
  color: var(--text);
  margin-bottom: 24px;
}

.dp-event-quote blockquote::before {
  content: '\201C';
  font-size: 96px;
  line-height: 0;
  vertical-align: -0.48em;
  color: var(--green);
  font-weight: 900;
  margin-right: 2px;
  display: inline;
}

.dp-event-quote cite {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  font-style: normal;
}

/* ── DISPATCH: ADDITIONS ── */

/* Magenta accent var */
:root {
  --magenta: #D4326B;
}

/* Magenta pop on hover over the brand name */
.dispatch-brand:hover { color: var(--magenta) !important; }

/* Sub-headline in hero overlay */
.dp-overlay-subheadline {
  font-size: 16px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.75);
  margin-top: 10px;
  max-width: 520px;
  line-height: 1.5;
}

/* Gap between homepage hero and category grid + side padding */
.dp-category-grid {
  margin-top: 20px;
  padding: 0 48px 48px;
}

/* ── TWO-COLUMN EVENT LAYOUT ── */
.dp-event-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 80px;
  padding: 52px 80px 48px;
  align-items: center;
}

/* Sidebar quote (right column) — boxed with magenta accent */
.dp-sidebar-quote {
  position: sticky;
  top: 100px;
  border: 1px solid var(--border);
  border-left: 4px solid var(--magenta);
  padding: 36px 32px;
}

.dp-sidebar-quote blockquote {
  font-size: 19px;
  font-weight: 500;
  line-height: 1.65;
  color: var(--text);
  margin-bottom: 20px;
}

.dp-sidebar-quote blockquote::before {
  content: '\201C';
  font-size: 52px;
  line-height: 0;
  vertical-align: -0.32em;
  color: var(--magenta);
  font-weight: 900;
  margin-right: 3px;
  display: inline;
}

.dp-sidebar-quote cite {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  font-style: normal;
}

.dp-sidebar-quote--second {
  margin-top: 20px;
  border-left: 4px solid var(--magenta);
}

/* Sidebar photo (right column, when no quote) */
.dp-sidebar-photo img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* ── SPECIAL TOUCHES CAROUSEL (full-width) ── */
.dp-special-touches {
  padding-top: 52px;
  padding-bottom: 52px;
  border-top: 1px solid var(--border);
}

.dp-special-touches-label {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 28px;
  padding-left: 80px;
}

.dp-carousel-wrapper {
  display: flex;
  align-items: center;
}

.dp-carousel {
  display: flex;
  gap: 4px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  flex: 1;
}

.dp-carousel::-webkit-scrollbar { display: none; }

.dp-carousel-card {
  flex-shrink: 0;
  width: 300px;
  background: #F7F6F3;
  scroll-snap-align: start;
  overflow: hidden;
}

.dp-carousel-card-img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
}

.dp-carousel-card-content {
  padding: 24px 28px 28px;
}

.dp-carousel-card-title {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--text);
  margin-bottom: 10px;
  line-height: 1.3;
}

.dp-carousel-card-desc {
  font-size: 13px;
  font-weight: 400;
  line-height: 1.75;
  color: var(--muted);
}

.dp-carousel-btn {
  background: none;
  border: 1px solid var(--border);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: none;
  font-size: 15px;
  color: var(--text);
  transition: all 0.15s ease;
  flex-shrink: 0;
  font-family: inherit;
}

.dp-carousel-btn:first-child { margin-left: 80px; margin-right: 16px; }
.dp-carousel-btn:last-child  { margin-right: 80px; margin-left: 16px; }

.dp-carousel-btn:hover {
  border-color: var(--text);
  background: var(--text);
  color: var(--white);
}

/* ── PHOTO CREDIT ── */
.dp-photo-credit {
  padding: 16px 80px;
  text-align: right;
}

.dp-photo-credit p {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--muted);
}

/* ── PAGE NAVIGATION (prev / next) ── */
.dp-page-nav {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 48px 80px 80px;
  border-top: 1px solid var(--border);
  gap: 24px;
}

.dp-page-nav-prev,
.dp-page-nav-next {
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-decoration: none;
  max-width: 280px;
}

.dp-page-nav-next {
  text-align: right;
  margin-left: auto;
}

.dp-page-nav-dir {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.15s ease;
}

.dp-page-nav-name {
  font-size: 19px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.01em;
  line-height: 1.2;
  transition: color 0.15s ease;
}

.dp-page-nav-prev:hover .dp-page-nav-name,
.dp-page-nav-next:hover .dp-page-nav-name {
  color: var(--magenta);
}

.dp-page-nav-prev:hover .dp-page-nav-dir,
.dp-page-nav-next:hover .dp-page-nav-dir {
  color: var(--magenta);
}

/* ── FOOTER ICONS ── */
.dispatch-footer {
  display: flex;
  align-items: center;
  gap: 20px;
}

.dispatch-footer-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  text-decoration: none;
  opacity: 0.5;
  transition: opacity 0.2s ease, color 0.2s ease;
}

.dispatch-footer-icon:hover {
  opacity: 1;
  color: var(--text);
}

/* ── RESPONSIVE ── */
@media (max-width: 860px) {
  .sidebar {
    position: relative;
    width: 100%;
    min-height: auto;
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding: 36px 24px;
  }

  .site-wrapper {
    flex-direction: column;
  }

  .main-content {
    margin-left: 0;
    padding: 48px 24px;
  }

  .gallery-grid {
    columns: 1;
  }

  .home-collage {
    margin-left: -24px;
    margin-right: -24px;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 180px 180px 180px;
  }

  .collage-item:nth-child(1) { grid-column: 1; grid-row: 1 / 3; }
  .collage-item:nth-child(2) { grid-column: 2; grid-row: 1; }
  .collage-item:nth-child(3) { grid-column: 2; grid-row: 2; }
  .collage-item:nth-child(4) { grid-column: 1; grid-row: 3; }
  .collage-item:nth-child(5) { grid-column: 2; grid-row: 3; }
  .collage-item:nth-child(6) { display: none; }

  .event-hero {
    margin-left: -24px;
    margin-right: -24px;
    height: clamp(280px, 45vh, 420px);
  }

  .event-hero-overlay {
    padding: 28px 24px;
  }

  /* Dispatch layout — mobile */
  .dispatch-header {
    padding: 0 24px;
    gap: 16px;
  }

  .dispatch-nav {
    display: none; /* hide full nav on mobile */
  }

  .dp-hero { height: 60vh; }

  .dp-home-intro { padding: 40px 24px 36px; }

  .dp-home-headline {
    font-size: clamp(40px, 10vw, 64px);
  }

  .dp-category-grid {
    grid-template-columns: 1fr 1fr;
  }

  .dp-event-hero { height: 52vh; }

  .dp-event-header { padding: 36px 24px 0; }

  .dp-event-content { padding: 40px 24px 36px; }

  .dp-event-gallery {
    grid-template-columns: 1fr;
  }

  .dp-gallery-item img { height: 300px; }

  .dp-gallery-item:nth-child(3n) {
    grid-column: auto;
  }

  .dp-gallery-item:nth-child(3n) img { height: 300px; }

  .dp-event-quote { padding: 40px 24px 64px; }

  .dispatch-footer { padding: 32px 24px; }

  .about-intro {
    grid-template-columns: 1fr;
    padding: 40px 24px 32px;
    order: 1;
  }

  .about-headshot { width: 180px; height: 220px; }

  .about-body { padding: 32px 0 0; }

  .about-bottom {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 40px 24px 60px;
    order: 2;
  }

  .about-photo-carousel { order: 3; }

  .about-carousel-track img { flex: 0 0 100%; height: 44vh; }

  .about-carousel-btns { padding: 12px 24px; }

  .about-quote { margin-top: 40px; }

  .dp-event-grid {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 40px 24px 32px;
  }

  .dp-sidebar-quote { position: static; }

  .dp-special-touches-label { padding-left: 24px; }

  .dp-carousel-btn:first-child { margin-left: 24px; margin-right: 12px; }
  .dp-carousel-btn:last-child  { margin-right: 24px; margin-left: 12px; }

  .dp-carousel-card { width: 220px; }

  .dp-photo-credit { padding: 16px 24px; }

  .dp-page-nav { padding: 36px 24px 60px; }

  .dp-page-nav-name { font-size: 16px; }

  .about-carousel-track img { flex: 0 0 100%; height: 36vh; }
}
