@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=DM+Sans:wght@300;400;500&display=swap');

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

:root {
  --black:      #0a0a0a;
  --charcoal:   #1a1a1a;
  --dark-grey:  #2c2c2c;
  --mid-grey:   #555;
  --light-grey: #888;
  --off-white:  #e8e6e1;
  --white:      #f5f4f0;
  --accent:     #c8c8c8;
  --border:     rgba(255,255,255,0.08);

  --font-main: 'Inter', 'DM Sans', sans-serif;
  --transition: 220ms ease;
}

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  background: var(--black);
  color: var(--off-white);
  font-family: var(--font-main);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* ── Nav ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: var(--black);
  border-bottom: 1px solid var(--border);
  height: 64px;
  display: flex;
  align-items: center;
  padding: 0 40px;
}

.nav__inner {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__wordmark {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  white-space: nowrap;
}

/* Logo image in nav */
.nav__logo {
  height: 28px;
  width: auto;
  display: block;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav__links a {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--light-grey);
  transition: color var(--transition);
  white-space: nowrap;
}

.nav__links a:hover,
.nav__links a.active {
  color: var(--white);
}

.nav__links a.active {
  font-weight: 500;
}

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.nav__hamburger span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--off-white);
  transition: transform var(--transition), opacity var(--transition);
}

.nav__hamburger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; }
.nav__hamburger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.nav__mobile {
  display: none;
  position: fixed;
  top: 64px; left: 0; right: 0;
  background: var(--black);
  border-bottom: 1px solid var(--border);
  z-index: 99;
  padding: 24px 40px 32px;
}

.nav__mobile.open { display: block; }

.nav__mobile ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.nav__mobile ul a {
  font-size: 16px;
  font-weight: 400;
  color: var(--light-grey);
  transition: color var(--transition);
}

.nav__mobile ul a:hover,
.nav__mobile ul a.active {
  color: var(--white);
}

/* ── Page wrapper ── */
.page-body { padding-top: 64px; }

/* ── Hero ── */
.hero {
  position: relative;
  width: 100%;
  height: 56.25vw;
  min-height: 480px;
  max-height: 90vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__bg-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.45;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10,10,10,0.3) 0%, rgba(10,10,10,0.6) 100%);
}

.hero__content {
  position: relative;
  text-align: center;
  z-index: 1;
  padding: 0 24px;
}

.hero__wordmark {
  font-size: clamp(36px, 6vw, 80px);
  font-weight: 300;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1;
  margin-bottom: 20px;
}

.hero__tagline {
  font-size: clamp(13px, 1.8vw, 18px);
  font-weight: 300;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent);
}

/* ── BEW Section ── */
.bew-section {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 64px;
  align-items: center;
  padding: 96px 40px;
  max-width: 1400px;
  margin: 0 auto;
}

.bew-left {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.bew-logo {
  width: 100%;
  max-width: 380px;
  display: block;
}

.bew-copy {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.85;
  color: var(--light-grey);
}

.bew-videos {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.bew-video__frame {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  background: var(--dark-grey);
  overflow: hidden;
}

.bew-video__frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.bew-video__label {
  display: block;
  margin-top: 8px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mid-grey);
}

/* ── Featured photo grid (home page) ── */
.feat-photo-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 6px;
}

.feat-photo-item {
  overflow: hidden;
  aspect-ratio: 2 / 3;
  cursor: pointer;
}

.feat-photo-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.feat-photo-item:hover img {
  transform: scale(1.04);
}

.feat-heading {
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 300;
  letter-spacing: 0.04em;
  color: var(--white);
  margin-bottom: 6px;
}

/* ── Play button overlay ── */
.bew-video--thumb {
  cursor: pointer;
  position: relative;
}

.bew-video--thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(0,0,0,0.65);
  border: 2px solid rgba(255,255,255,0.7);
  color: var(--white);
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 4px;
  transition: background 0.2s ease, border-color 0.2s ease;
  z-index: 2;
}

.bew-video--thumb:hover .play-btn {
  background: rgba(0,0,0,0.85);
  border-color: var(--white);
}

.feat-photo-grid--hdg {
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}

.hdg-media {
  display: flex;
  flex-direction: column;
  gap: 0;
}

@media (max-width: 900px) {
  .feat-photo-grid { grid-template-columns: repeat(3, 1fr); }
  .feat-photo-grid--hdg { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 600px) {
  .feat-photo-grid { grid-template-columns: repeat(2, 1fr); }
  .feat-photo-grid--hdg { grid-template-columns: repeat(3, 1fr); }
}

/* ── Scroll fade-in (homepage sections) ── */
.scroll-fade {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.scroll-fade.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* Micron logo override — it's a wide OG image, constrain height */
.micron-logo {
  max-width: 260px;
  border-radius: 8px;
}

/* Librarium — single video takes full grid width */
.bew-videos--single {
  grid-template-columns: 1fr;
}

/* Librarium key art */
.librarium-img {
  width: 100%;
  max-width: 100%;
  border-radius: 6px;
  margin-bottom: 4px;
}

/* ── BoiseDev / Peak 43 Section ── */
.bdev-section {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 96px 40px;
  max-width: 1400px;
  margin: 0 auto;
}

.bdev-right {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.bdev-logo {
  width: 100%;
  max-width: 200px;
  display: block;
}

/* hidden by default; shown on mobile when logos are hidden */
.logo-fallback-header { display: none; }

@media (max-width: 900px) {
  .logo-fallback-header { display: block; }

  .bew-section,
  .bdev-section {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 64px 24px;
  }
  .bew-logo { max-width: 200px; }
  /* text always stacks above media on mobile */
  .bdev-section .bew-videos    { order: 2; }
  .bdev-section .feat-photo-grid { order: 2; }
  .bdev-section .hdg-media     { order: 2; }
  .bdev-section .bdev-right    { order: 1; }
  /* hide decorative logos/key-art on mobile — applies to all future sections too */
  .bew-left img,
  .bdev-right img { display: none; }
}

@media (max-width: 600px) {
  .bew-videos { grid-template-columns: 1fr; }
}

/* ── Sections ── */
.section {
  padding: 96px 40px;
  max-width: 1400px;
  margin: 0 auto;
}

.section--full {
  max-width: none;
  padding-left: 0;
  padding-right: 0;
}

.section__label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mid-grey);
  margin-bottom: 48px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

/* ── Bio ── */
.bio {
  max-width: 720px;
}

.bio p {
  font-size: clamp(17px, 2vw, 20px);
  font-weight: 300;
  line-height: 1.75;
  color: var(--off-white);
}

/* ── Teaser grid ── */
.teaser-group {
  margin-bottom: 72px;
}

.teaser-group__label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mid-grey);
  margin-bottom: 24px;
}

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

.teaser-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/9;
  background: var(--charcoal);
  display: flex;
  align-items: flex-end;
  text-decoration: none;
}

.teaser-card__placeholder {
  position: absolute;
  inset: 0;
  background: var(--dark-grey);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--mid-grey);
  text-transform: uppercase;
}

.teaser-card__label {
  position: relative;
  z-index: 1;
  padding: 16px 20px;
  font-size: 13px;
  font-weight: 400;
  color: var(--white);
  background: linear-gradient(transparent, rgba(10,10,10,0.85));
  width: 100%;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity var(--transition), transform var(--transition);
}

.teaser-card:hover .teaser-card__label {
  opacity: 1;
  transform: translateY(0);
}

/* ── Work grid (project cards) ── */
.work-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.project-card {
  background: var(--charcoal);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: transform var(--transition), border-color var(--transition);
}

.project-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255,255,255,0.16);
}

.project-card__embed {
  position: relative;
  padding-top: 56.25%;
  background: var(--dark-grey);
  overflow: hidden;
}

.project-card__embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.project-card__embed-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--mid-grey);
  text-transform: uppercase;
}

.project-card__embed-placeholder svg {
  opacity: 0.3;
}

.project-card__info {
  padding: 20px 24px 24px;
}

.project-card__title {
  font-size: 15px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 6px;
}

.project-card__desc {
  font-size: 13px;
  font-weight: 300;
  color: var(--light-grey);
  line-height: 1.5;
}

/* ── Page header ── */
.page-header {
  padding: 80px 40px 64px;
  max-width: 1400px;
  margin: 0 auto;
  border-bottom: 1px solid var(--border);
}

.page-header h1 {
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 300;
  letter-spacing: 0.02em;
  color: var(--white);
}

/* ── Section divider ── */
.section-divider {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mid-grey);
  padding: 0 0 24px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 40px;
  margin-top: 72px;
}

.section-divider:first-child { margin-top: 0; }

.featured-work-divider {
  font-size: 36px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--white);
  padding: 72px 80px 48px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 0;
}

@media (max-width: 900px) {
  .featured-work-divider {
    font-size: 28px;
    padding: 56px 24px 36px;
  }
}

/* ── Photography ── */
.photo-stack {
  display: flex;
  flex-direction: column;
  gap: 3px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px 96px;
}

.photo-item {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.photo-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: opacity var(--transition);
}

.photo-placeholder {
  width: 100%;
  aspect-ratio: 3/2;
  background: var(--charcoal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--mid-grey);
  text-transform: uppercase;
}

/* ── Tabs (audio page) ── */
.tab-nav {
  display: flex;
  gap: 0;
  border-bottom: 1px solid var(--border);
  margin-bottom: 56px;
}

.tab-btn {
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  padding: 14px 28px;
  font-family: var(--font-main);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--mid-grey);
  cursor: pointer;
  transition: color var(--transition), border-color var(--transition);
}

.tab-btn:hover { color: var(--off-white); }

.tab-btn.active {
  color: var(--white);
  border-bottom-color: var(--white);
  font-weight: 500;
}

.tab-panel { display: none; }
.tab-panel.active { display: block; }

/* ── Service text block ── */
.service-block {
  max-width: 680px;
  margin-bottom: 56px;
}

.service-block p {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--light-grey);
}

/* ── Audio cards ── */
.audio-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.audio-card {
  background: var(--charcoal);
  border: 1px solid var(--border);
  padding: 28px;
  transition: border-color var(--transition);
}

.audio-card:hover { border-color: rgba(255,255,255,0.16); }

.audio-card__title {
  font-size: 15px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 8px;
}

.audio-card__desc {
  font-size: 13px;
  font-weight: 300;
  color: var(--light-grey);
  line-height: 1.6;
}

.audio-embed {
  margin-bottom: 32px;
}

.audio-embed iframe {
  width: 100%;
  border: 0;
  display: block;
}

.bandcamp-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--off-white);
  border: 1px solid var(--border);
  padding: 12px 24px;
  transition: border-color var(--transition), color var(--transition);
}

.bandcamp-link:hover {
  border-color: rgba(255,255,255,0.3);
  color: var(--white);
}

/* ── Album embeds (Bandcamp + Spotify) ── */
.album-embeds {
  display: flex;
  flex-direction: column;
  gap: 64px;
  margin-top: 8px;
}

.bandcamp-album {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  margin-top: 8px;
}

.bandcamp-album__info {
  padding-top: 12px;
}

.bandcamp-album__info .project-card__title {
  font-size: 22px;
  margin-bottom: 12px;
}

@media (max-width: 768px) {
  .bandcamp-album {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

/* ── Contact form ── */
.contact-section {
  background: var(--charcoal);
  padding: 80px 40px;
  margin-top: auto;
}

.contact-inner {
  max-width: 640px;
  margin: 0 auto;
}

.contact-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mid-grey);
  margin-bottom: 40px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mid-grey);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--dark-grey);
  border: 1px solid var(--border);
  color: var(--off-white);
  font-family: var(--font-main);
  font-size: 14px;
  font-weight: 300;
  padding: 12px 16px;
  outline: none;
  transition: border-color var(--transition);
  appearance: none;
  -webkit-appearance: none;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23888' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}

.form-group select option {
  background: var(--dark-grey);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(255,255,255,0.3);
}

.form-group textarea {
  resize: vertical;
  min-height: 140px;
}

.btn-submit {
  background: none;
  border: 1px solid var(--off-white);
  color: var(--off-white);
  font-family: var(--font-main);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 14px 40px;
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
  margin-top: 8px;
}

.btn-submit:hover {
  background: var(--off-white);
  color: var(--black);
}

/* ── Footer ── */
.footer {
  background: var(--black);
  border-top: 1px solid var(--border);
  padding: 32px 40px;
}

.footer__inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer__copy {
  font-size: 12px;
  color: var(--mid-grey);
  letter-spacing: 0.04em;
}

.footer__contact-link {
  font-size: 12px;
  color: var(--light-grey);
  letter-spacing: 0.06em;
  transition: color var(--transition);
}

.footer__contact-link:hover { color: var(--white); }

/* ── Responsive ── */
@media (max-width: 768px) {
  .nav { padding: 0 20px; }
  .nav__links { display: none; }
  .nav__hamburger { display: flex; }

  .section { padding: 64px 20px; }

  .page-header { padding: 56px 20px 48px; }

  .work-grid { grid-template-columns: 1fr; }
  .teaser-grid { grid-template-columns: 1fr; }
  .audio-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }

  .photo-stack { padding: 0 20px 64px; }

  .contact-section { padding: 56px 20px; }
  .footer { padding: 28px 20px; }
  .footer__inner { flex-direction: column; align-items: flex-start; }

  .tab-btn { padding: 12px 20px; font-size: 12px; }

  .nav__mobile { padding: 24px 20px 32px; }

  /* Photography tab nav — sticky stacked on mobile */
  .photo-tabnav-wrap {
    position: sticky;
    top: 64px;
    z-index: 89;
    background: var(--black);
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    border-bottom: 1px solid var(--border);
  }

  .photo-tab-nav {
    flex-direction: column;
    border-bottom: none;
    margin-bottom: 0;
    padding: 8px 0;
  }

  .photo-tab-nav .tab-btn {
    font-size: 11px;
    padding: 8px 20px;
    letter-spacing: 0.06em;
    text-align: left;
    border-bottom: none;
    border-left: 2px solid transparent;
    margin-bottom: 0;
  }

  .photo-tab-nav .tab-btn.active {
    border-bottom-color: transparent;
    border-left-color: var(--white);
  }

  .headshot-grid { margin-top: 16px; }
}

@media (min-width: 769px) and (max-width: 1200px) {
  .nav { padding: 0 24px; }
  .nav__links { gap: 24px; }
  .section { padding: 80px 24px; }
}

/* ── Headshot grid ── */
.headshot-grid {
  position: relative;
  padding: 0 40px 96px;
  max-width: 1400px;
  margin: 0 auto;
  min-height: 200px;
}

.headshot-item {
  cursor: pointer;
  overflow: hidden;
  background: var(--charcoal);
  transition: transform var(--transition), box-shadow var(--transition);
}

.headshot-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.5);
}

.headshot-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: opacity var(--transition);
}

.headshot-item:hover img {
  opacity: 0.88;
}

/* ── Lightbox ── */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0,0,0,0.94);
  align-items: center;
  justify-content: center;
}

.lightbox.open {
  display: flex;
}

.lightbox__img-wrap {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox__img {
  max-width: 90vw;
  max-height: 88vh;
  width: auto;
  height: auto;
  display: block;
  object-fit: contain;
}

.lightbox__close {
  position: fixed;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  color: var(--off-white);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  padding: 8px;
  opacity: 0.7;
  transition: opacity var(--transition);
  z-index: 1001;
}

.lightbox__close:hover { opacity: 1; }

.lightbox__prev,
.lightbox__next {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--off-white);
  font-size: 32px;
  cursor: pointer;
  padding: 16px;
  opacity: 0.5;
  transition: opacity var(--transition);
  z-index: 1001;
  line-height: 1;
}

.lightbox__prev { left: 16px; }
.lightbox__next { right: 16px; }

.lightbox__prev:hover,
.lightbox__next:hover { opacity: 1; }

.lightbox__counter {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--mid-grey);
}

@media (max-width: 768px) {
  .headshot-grid {
    padding: 0 20px 64px;
  }
  .lightbox__prev { left: 4px; }
  .lightbox__next { right: 4px; }
}

/* ── Photo wall (flat, no section labels) ── */
.photo-wall {
  padding: 40px 40px 80px;
  max-width: 1400px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .photo-wall { padding: 24px 20px 56px; }
}

/* ── About section (old, kept for compat) ── */
.about-section {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 80px;
  padding: 56px 40px 96px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: start;
}

.about-photo img {
  width: 100%;
  height: auto;
  display: block;
}

.about-text h2 {
  font-size: 28px;
  font-weight: 300;
  letter-spacing: 0.04em;
  color: var(--white);
  margin-bottom: 28px;
}

.about-text p {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--light-grey);
  margin-bottom: 20px;
}

.about-cta {
  display: inline-block;
  margin-top: 12px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--off-white);
  transition: color var(--transition);
}

.about-cta:hover {
  color: var(--white);
}

.about-cta--home {
  display: block;
  text-align: left;
  font-size: 16px;
  letter-spacing: 0.12em;
  margin-top: 36px;
}

@media (max-width: 768px) {
  .about-section {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 40px 20px 64px;
  }
  .about-photo { max-width: 320px; }
}

@media (min-width: 1200px) {
  .teaser-grid { grid-template-columns: repeat(4, 1fr); }
}

/* ── Larger horizontal nav logo ── */
.nav__logo {
  height: 40px;
}

/* ── Photo grouped sections ── */
.photo-section {
  padding: 40px 40px 0;
  max-width: 1400px;
  margin: 0 auto;
}

.photo-section:last-child {
  padding-bottom: 80px;
}

.photo-section__label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mid-grey);
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}

@media (max-width: 768px) {
  .photo-section { padding: 32px 20px 0; }
}

/* ── About page ── */
.about-page {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - 64px);
}

.about-photo {
  position: sticky;
  top: 64px;
  height: calc(100vh - 64px);
  overflow: hidden;
}

.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.about-content {
  padding: 80px 64px;
  display: flex;
  align-items: flex-start;
}

.about-content__inner {
  max-width: 560px;
}

.about-eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mid-grey);
  margin-bottom: 9px;
}

.about-content__inner h1 {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 300;
  letter-spacing: 0.04em;
  color: var(--white);
  margin-bottom: 36px;
}

.about-content__inner p {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.85;
  color: var(--light-grey);
  margin-bottom: 22px;
}

.about-services {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 36px 0 40px;
}

.about-services span {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mid-grey);
  border: 1px solid var(--border);
  padding: 6px 14px;
}

/* ── About section on home page (3-column: photo | text | photo) ── */
.about-home {
  display: grid;
  grid-template-columns: 300px 1fr 300px;
  gap: 0;
  align-items: start;
  max-width: 1400px;
  margin: 0 auto;
  padding: 80px 40px;
}

.about-home__photo {
  overflow: hidden;
}

.about-home__photo img {
  width: 100%;
  height: auto;
  display: block;
}

.about-home__content {
  padding: 0 64px;
  display: flex;
  align-items: flex-start;
}

@media (max-width: 1024px) {
  .about-home {
    grid-template-columns: 220px 1fr 220px;
    padding: 60px 24px;
  }
  .about-home__content {
    padding: 0 32px;
  }
}

@media (max-width: 768px) {
  .about-home {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 48px 24px;
  }
  .about-home__photo--right {
    display: none;
  }
  .about-home__photo--left {
    height: 320px;
  }
  .about-home__photo--left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
  }
  .about-home__content {
    padding: 0;
  }
}

@media (max-width: 900px) {
  .about-page {
    grid-template-columns: 1fr;
  }
  .about-photo {
    position: relative;
    top: 0;
    height: 70vw;
    max-height: 520px;
  }
  .about-content {
    padding: 48px 24px 64px;
  }
}

/* ── Image fade-in on load ── */
img {
  opacity: 0;
  transition: opacity 0.5s ease;
}

img.img-loaded {
  opacity: 1;
}

/* Logos and nav images skip fade (they're tiny/fast) */
.nav__logo,
.lightbox__img {
  opacity: 1 !important;
  transition: none !important;
}

/* ── Image loading dots ── */
.headshot-item {
  position: relative;
  min-height: 80px;
}

.img-loading-dots {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  background: var(--charcoal);
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.headshot-item.img-item-loaded .img-loading-dots {
  opacity: 0;
}

.img-loading-dots span {
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--mid-grey);
  animation: dot-pulse 1.4s ease-in-out infinite;
}

.img-loading-dots span:nth-child(2) { animation-delay: 0.22s; }
.img-loading-dots span:nth-child(3) { animation-delay: 0.44s; }

@keyframes dot-pulse {
  0%, 80%, 100% { opacity: 0.2; transform: scale(0.75); }
  40%            { opacity: 1;   transform: scale(1); }
}

/* ── Photography tab nav — larger ── */
.photo-tab-nav .tab-btn {
  font-size: 15px;
  padding: 16px 32px;
  letter-spacing: 0.03em;
}

/* ── Photography sticky side nav ── */
.photo-sidenav {
  display: none;
  position: fixed;
  left: 28px;
  top: 50%;
  transform: translateY(-50%) translateX(calc(-100% - 28px));
  z-index: 90;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
              opacity  0.35s ease;
  opacity: 0;
}

.photo-sidenav.visible {
  transform: translateY(-50%) translateX(0);
  opacity: 1;
}

.photo-sidenav__btn {
  background: none;
  border: none;
  font-family: var(--font-main);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--mid-grey);
  cursor: pointer;
  padding: 6px 0;
  text-align: left;
  transition: color var(--transition);
  white-space: nowrap;
  position: relative;
}

.photo-sidenav__btn::before {
  content: '';
  display: block;
  width: 0;
  height: 1px;
  background: var(--white);
  margin-bottom: 3px;
  transition: width var(--transition);
}

.photo-sidenav__btn:hover,
.photo-sidenav__btn.active {
  color: var(--white);
}

.photo-sidenav__btn.active::before {
  width: 20px;
}

@media (min-width: 1100px) {
  .photo-sidenav { display: flex; }
}
