@font-face { font-family: 'Armin Grotesk'; src: url('fonts/ArminGrotesk-Thin.woff2') format('woff2'); font-weight: 100; font-style: normal; }
@font-face { font-family: 'Armin Grotesk'; src: url('fonts/ArminGrotesk-ThinItalic.woff2') format('woff2'); font-weight: 100; font-style: italic; }
@font-face { font-family: 'Armin Grotesk'; src: url('fonts/ArminGrotesk-UltraLight.woff2') format('woff2'); font-weight: 200; font-style: normal; }
@font-face { font-family: 'Armin Grotesk'; src: url('fonts/ArminGrotesk-UltraLightItalic.woff2') format('woff2'); font-weight: 200; font-style: italic; }
@font-face { font-family: 'Armin Grotesk'; src: url('fonts/ArminGrotesk-Regular.woff2') format('woff2'); font-weight: 400; font-style: normal; }
@font-face { font-family: 'Armin Grotesk'; src: url('fonts/ArminGrotesk-Italic.woff2') format('woff2'); font-weight: 400; font-style: italic; }
@font-face { font-family: 'Armin Grotesk'; src: url('fonts/ArminGrotesk-SemiBold.woff2') format('woff2'); font-weight: 600; font-style: normal; }
@font-face { font-family: 'Armin Grotesk'; src: url('fonts/ArminGrotesk-SemiBoldItalic.woff2') format('woff2'); font-weight: 600; font-style: italic; }
@font-face { font-family: 'Armin Grotesk'; src: url('fonts/ArminGrotesk-Black.woff2') format('woff2'); font-weight: 900; font-style: normal; }
@font-face { font-family: 'Armin Grotesk'; src: url('fonts/ArminGrotesk-BlackItalic.woff2') format('woff2'); font-weight: 900; font-style: italic; }

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

:root {
  --bg: #160E3F;
  --bg2: #1E1350;
  --bg3: #231860;
  --text: #EDE8FF;
  --text-dim: rgba(237,232,255,0.55);
  --text-faint: rgba(237,232,255,0.15);
  --accent: #E8966A;
  --border: rgba(237,232,255,0.15);
  --font: 'Armin Grotesk', sans-serif;
  --nav-height: 80px;
  --max-w: 1200px;
}

html { scroll-behavior: smooth; }

.site-wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}


::-webkit-scrollbar { width: 2px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--accent); }

/* ── Nav ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 28px 48px;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--font);
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: #fff;
  text-decoration: none;
  transition: color 0.2s;
}
.nav-logo:hover { color: var(--accent); }
.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
}
.nav-links a {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--accent); }

/* ── Hero ── */
#hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #2608DF 0%, #6B35C8 40%, #C4607A 75%, #E8966A 100%);
  background-size: 300% 300%;
  animation: gradientShift 12s ease infinite;
  max-width: none;
  margin: 0;
}
#hero .hero-inner {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 48px 80px;
}

@keyframes gradientShift {
  0%   { background-position: 0% 50%; }
  25%  { background-position: 50% 100%; }
  50%  { background-position: 100% 50%; }
  75%  { background-position: 50% 0%; }
  100% { background-position: 0% 50%; }
}

.hero-eyebrow {
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.8s 0.2s, transform 0.8s 0.2s;
}
.hero-eyebrow.visible { opacity: 1; transform: none; }

.hero-name {
  font-family: var(--font);
  font-weight: 500;
  line-height: 0.9;
  letter-spacing: -0.02em;
  color: var(--text);
  font-size: clamp(72px, 11vw, 172px);
  user-select: none;
  margin-left: -0.05em;
}
.hero-name .line { display: block; overflow: hidden; }
.hero-name .line-inner {
  display: block;
  transform: translateY(100%);
  transition: transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.hero-name .line:nth-child(2) .line-inner { transition-delay: 0.1s; }
.hero-name .line-inner.visible { transform: translateY(0); }

.hero-tagline {
  margin-top: 36px;
  font-size: 18px;
  font-weight: 300;
  letter-spacing: 0.02em;
  color: rgba(237,232,255,0.9);
  max-width: 850px;
  line-height: 1.7;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.8s 0.6s, transform 0.8s 0.6s;
}
.hero-tagline.visible { opacity: 1; transform: none; }

.hero-scroll {
  position: absolute;
  right: 48px;
  bottom: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  transition: opacity 0.8s 1s;
}
.hero-scroll.visible { opacity: 1; }
.hero-scroll span {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(237,232,255,0.45);
  writing-mode: vertical-rl;
}
.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  animation: scrollLine 2s infinite;
}
@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ── Section shared ── */
section { padding: 120px 48px; max-width: var(--max-w); margin-left: auto; margin-right: auto; }

.section-label {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 80px;
}
.section-label::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--accent);
}
.section-label span {
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
}
.section-title {
  font-family: var(--font);
  font-size: clamp(48px, 6vw, 88px);
  font-weight: 100;
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

/* ── Professional Highlights ── */
#work { background: var(--bg); }

#work {
  max-width: none;
  margin-left: 0;
  margin-right: 0;
  padding: 0;
}
.work-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 40px;
  max-width: var(--max-w);
  margin-left: auto;
  margin-right: auto;
  padding: 80px 48px 0;
}
.work-header .section-label { margin-bottom: 20px; }

.highlights-list {
  position: relative;
}

.highlight-row {
  position: sticky;
  top: 0;
  height: 100vh;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: center;
  padding: 0 max(48px, calc((100% - var(--max-w)) / 2 + 48px));
  background: var(--card-bg, var(--bg));
  z-index: var(--card-z, 1);
  border-bottom: 1px solid var(--border);
}

.highlight-phone {
  display: flex;
  justify-content: center;
  align-items: center;
}
.highlight-thumb {
  max-height: 600px;
  max-width: 275px;
  width: auto;
  border-radius: 30px;
  border: 10px solid var(--text-faint);
  display: block;
}

.highlight-years {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 400;
  margin-bottom: 12px;
}
.highlight-company {
  font-family: var(--font);
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 300;
  line-height: 1.05;
  color: var(--text);
  margin-bottom: 8px;
}
.highlight-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.highlight-title {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-dim);
  font-weight: 400;
  margin-bottom: 24px;
}
.highlight-desc {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-dim);
  font-weight: 300;
  max-width: 520px;
}
.highlight-desc + .highlight-desc { margin-top: 20px; }
.highlight-desc a {
  color: inherit;
  text-decoration: underline;
  transition: color 0.2s;
}
.highlight-desc a:hover { color: var(--accent); }
.highlights-footer {
  display: flex;
  justify-content: flex-start;
  padding: 24px 40px 0;
}
.highlights-linkedin-link {
  font-size: 14px;
  font-weight: 300;
  color: var(--text);
  text-decoration: none;
  opacity: 0.9;
  transition: opacity 0.2s;
}
.highlights-linkedin-link:hover {
  opacity: 1;
}

/* ── Photography ── */
#photography {
  background: var(--bg);
  padding-bottom: 80px;
}
#photography .section-label { margin-bottom: 24px; }

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

.photo-proj-tile {
  display: block;
  text-decoration: none;
  background: transparent;
}
.photo-proj-tile:hover .photo-proj-arrow { opacity: 1; transform: none; color: var(--accent); }
.photo-proj-tile:hover .photo-proj-bg { transform: scale(1.04); }

.photo-proj-img-wrap {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: transparent;
  position: relative;
}
.photo-proj-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16,1,0.3,1);
}
.photo-proj-overlay { display: none; }
.photo-proj-text {
  padding: 16px;
  background: var(--bg2);
}
.photo-proj-cat {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 6px;
}
.photo-proj-title {
  font-family: var(--font);
  font-size: 20px;
  font-weight: 300;
  line-height: 1.2;
  color: var(--text);
}
.photo-proj-subtitle { display: none; }
.photo-proj-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 6px;
}
.photo-proj-count {
  font-size: 11px;
  color: var(--text-dim);
}
.photo-proj-arrow {
  font-size: 16px;
  color: var(--text-dim);
  opacity: 0;
  transform: translate(-4px, 4px);
  transition: opacity 0.3s, transform 0.3s, color 0.3s;
}

/* ── About ── */
#about { background: var(--bg); }
#about .section-label { margin-bottom: 20px; }

.about-photo-label {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 12px !important;
}

.about-photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 28px 0;
}
.about-photo-grid .photo-proj-title {
  font-size: 14px;
}
.about-photo-grid .photo-proj-text {
  padding: 10px 12px;
}

.about-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 80px;
  align-items: start;
}

.about-heading {
  font-size: clamp(52px, 7vw, 88px);
  font-weight: 300;
  line-height: 1.0;
  margin-bottom: 40px;
  letter-spacing: -0.02em;
}
.about-heading-light { color: var(--text); }
.about-heading-dim { color: var(--text-dim); }

.about-inline-link {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s;
}
.about-inline-link:hover { color: var(--accent); }
.about-left {
  position: sticky;
  top: 120px;
}
.about-headshot {
  width: 350px;
  height: 350px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.about-body p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-dim);
  font-weight: 300;
  margin-bottom: 20px;
}
.about-body p strong {
  font-weight: 400;
  color: var(--text);
}
.about-values {
  list-style: none;
  margin: 28px 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.about-values li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-dim);
  font-weight: 300;
}
.about-values li .dash {
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}
.about-contact {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  display: flex;
  gap: 24px;
  align-items: center;
}
.contact-link {
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-dim);
  text-decoration: none;
  transition: color 0.2s;
}
.contact-link:hover { color: var(--accent); }

/* ── Footer ── */
footer {
  padding: 48px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-w);
  margin-left: auto;
  margin-right: auto;
}
footer span {
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--text-faint);
}

/* ── Lightbox ── */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(8,8,8,0.97);
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.lightbox.open { opacity: 1; pointer-events: all; }
.lightbox-img {
  max-width: 80vw;
  max-height: 80vh;
  display: block;
}
.lightbox-img svg { max-width: 80vw; max-height: 80vh; display: block; }
.lightbox-close {
  position: fixed;
  top: 40px; right: 48px;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-dim);
  background: none;
  border: none;
  padding: 8px;
  font-family: var(--font);
  transition: color 0.2s;
}
.lightbox-close:hover { color: var(--accent); }
.lightbox-nav {
  position: fixed;
  bottom: 48px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 32px;
}
.lightbox-nav button {
  background: none;
  border: 1px solid var(--border);
  color: var(--text);
  width: 48px;
  height: 48px;
  font-size: 18px;
  font-family: var(--font);
  transition: border-color 0.2s, color 0.2s;
}
.lightbox-nav button:hover { border-color: var(--accent); color: var(--accent); }
.lightbox-counter {
  font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--text-dim);
}

/* ── Photo project page ── */
.pp-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 28px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(to bottom, rgba(22,14,63,0.95), transparent);
}
.pp-back {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text-dim);
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.pp-back:hover { color: var(--accent); }
.pp-back-line {
  width: 24px;
  height: 1px;
  background: currentColor;
  transition: width 0.3s;
}
.pp-back:hover .pp-back-line { width: 36px; }

.pp-hero {
  min-height: 60vh;
  display: flex;
  align-items: flex-end;
  position: relative;
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  background: linear-gradient(135deg, #160E3F 0%, #1E1350 30%, #2D1B69 60%, #3D1A6E 100%);
  background-size: 300% 300%;
  animation: gradientShift 24s ease infinite;
}
.pp-hero-bg { display: none; }
.pp-hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 140px 48px 60px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

@keyframes pp-fade-up {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: none; }
}
@keyframes pp-slide-up {
  from { transform: translateY(100%); }
  to   { transform: none; }
}
.pp-series-num {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
  animation: pp-fade-up 0.6s cubic-bezier(0.16,1,0.3,1) 0.1s both;
}
.pp-title-wrap { overflow: hidden; }
.pp-title {
  font-family: var(--font);
  font-size: clamp(72px, 11vw, 160px);
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: -0.02em;
  display: block;
  animation: pp-slide-up 0.9s cubic-bezier(0.16,1,0.3,1) 0.2s both;
}
.pp-subtitle-wrap { overflow: hidden; }
.pp-subtitle {
  font-family: var(--font);
  font-size: clamp(72px, 11vw, 160px);
  font-weight: 100;
  line-height: 0.9;
  letter-spacing: -0.02em;
  font-style: italic;
  color: var(--text-dim);
  display: block;
  animation: pp-slide-up 0.9s cubic-bezier(0.16,1,0.3,1) 0.35s both;
}

.pp-hero-desc {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-dim);
  font-weight: 300;
  max-width: 800px;
  margin-top: 32px;
  animation: pp-fade-up 0.6s ease 0.5s both;
}

.pp-gallery-header {
  padding: 64px 48px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-w);
  margin-left: auto;
  margin-right: auto;
}
.pp-gallery-label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
}
.pp-gallery-count {
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--text-faint);
}

.pp-thumb-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
  padding: 0 48px 48px;
  max-width: var(--max-w);
  margin-left: auto;
  margin-right: auto;
}
.pp-thumb {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  position: relative;
  background: var(--bg2);
}
.pp-thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--accent);
  opacity: 0;
  transition: opacity 0.25s;
  mix-blend-mode: overlay;
}
.pp-thumb:hover::after { opacity: 0.3; }
.pp-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1);
}
.pp-thumb:hover img { transform: scale(1.04); }
.pp-thumb svg {
  width: 100%;
  height: 100%;
  display: block;
}
.pp-thumb-more {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 16px;
  font-family: var(--font);
  font-weight: 300;
  color: var(--text-dim);
  transition: color 0.2s;
}
.pp-thumb-more:hover { color: var(--accent); }

/* Lightbox */
.pp-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(8,8,8,0.97);
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.pp-lightbox.open { opacity: 1; pointer-events: all; }
.pp-lightbox-img-wrap {
  max-width: 85vw;
  max-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pp-lightbox-img-wrap img {
  max-width: 85vw;
  max-height: 85vh;
  object-fit: contain;
  display: block;
}
.pp-lightbox-close {
  position: fixed;
  top: 32px; right: 40px;
  font-family: var(--font);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-dim);
  background: none;
  border: none;
  padding: 8px;
  transition: color 0.2s;
}
.pp-lightbox-close:hover { color: var(--accent); }
.pp-lightbox-prev,
.pp-lightbox-next {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: 1px solid var(--border);
  color: var(--text);
  width: 48px; height: 48px;
  font-size: 18px;
  font-family: var(--font);
  transition: border-color 0.2s, color 0.2s;
}
.pp-lightbox-prev { left: 32px; }
.pp-lightbox-next { right: 32px; }
.pp-lightbox-prev:hover,
.pp-lightbox-next:hover { border-color: var(--accent); color: var(--accent); }
.pp-lightbox-counter {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--text-dim);
}

@media (max-width: 768px) {
  .pp-thumb-grid {
    grid-template-columns: repeat(3, 1fr);
    padding: 0 24px 48px;
  }
  .pp-lightbox-prev { left: 8px; }
  .pp-lightbox-next { right: 8px; }
}

.pp-footer {
  padding: 48px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-w);
  margin-left: auto;
  margin-right: auto;
}
.pp-footer span { font-size: 11px; letter-spacing: 0.1em; color: var(--text-faint); }
.pp-nav-projects {
  display: flex;
  gap: 32px;
}
.pp-nav-link {
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-dim);
  text-decoration: none;
  transition: color 0.2s;
}
.pp-nav-link:hover { color: var(--accent); }

/* ── Photography Hub ── */
.ph-page-wrap {
  padding-top: calc(var(--nav-height) + 48px);
  padding-bottom: 120px;
  padding-left: 48px;
  padding-right: 48px;
}
.ph-page-label {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 80px;
}
.ph-page-label::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--accent);
}
.ph-page-label span {
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
}

/* ── Photography hub projects ── */
.ph-project {
  margin-bottom: 100px;
}
.ph-project-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 32px;
}
.ph-project-title-group {
  flex: 1;
}
.ph-project-title {
  font-size: clamp(36px, 4vw, 60px);
  font-weight: 200;
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--text);
  margin-bottom: 14px;
}
.ph-project-desc {
  font-size: 14px;
  font-weight: 300;
  color: var(--text-dim);
  max-width: 775px;
  line-height: 1.7;
}
.ph-project-count {
  font-size: 12px;
  font-weight: 300;
  color: var(--accent);
  letter-spacing: 0.08em;
  white-space: nowrap;
  padding-top: 6px;
}
.ph-preview-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3px;
}
.ph-preview-thumb {
  aspect-ratio: 1/1;
  overflow: hidden;
  cursor: pointer;
  background: var(--bg2);
  position: relative;
}
.ph-preview-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease, opacity 0.2s;
}
.ph-preview-thumb:hover img { transform: scale(1.05); }
.ph-preview-more {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 300;
  color: var(--text-dim);
  letter-spacing: 0.05em;
  text-decoration: none;
  transition: color 0.2s;
}
.ph-preview-more:hover { color: var(--text); }

/* ── Responsive ── */
@media (max-width: 768px) {
  /* Photography hub */
  .ph-page-wrap { padding-left: 24px; padding-right: 24px; }
  .ph-preview-grid { grid-template-columns: repeat(2, 1fr); }
  .ph-project-header { flex-direction: column; gap: 8px; }
  .ph-project-desc { max-width: 100%; }
  .ph-page-label { margin-bottom: 40px; }

  /* Nav */
  nav { padding: 20px 24px; }
  .nav-links { display: flex; gap: 20px; }

  /* Hero */
  #hero .hero-inner { padding: 0 24px 60px; }
  .hero-name { font-size: clamp(52px, 20vw, 72px); }
  .hero-tagline { font-size: 17px; margin-top: 20px; }
  .hero-scroll { right: 24px; bottom: 60px; }

  /* Sections */
  section { padding: 60px 24px; }
  footer { padding: 32px 24px; flex-direction: column; gap: 12px; align-items: flex-start; }

  /* Work */
  .work-header { padding: 60px 24px 0; margin-bottom: 0; }
  .work-header .section-label { margin-bottom: 16px; }

  /* Highlight rows — disable sticky stack on mobile */
  .highlight-row {
    position: static;
    height: auto;
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 48px 24px;
    border-bottom: 1px solid var(--border);
  }
  .highlight-phone { justify-content: flex-start; }
  .highlight-thumb { max-height: 340px; max-width: 100%; width: auto; }
  .highlight-company { font-size: 28px; }

  /* Photography */
  #photography { padding: 60px 24px; }
  #photography .section-label { margin-bottom: 16px; }
  .photo-proj-grid { grid-template-columns: 1fr; gap: 24px; }

  /* About */
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-left { position: static; }
  .about-headshot { width: 220px; height: 220px; }

  /* Photo project page */
  .pp-nav, .pp-gallery-header, .pp-footer { padding-left: 24px; padding-right: 24px; }
  .pp-hero-content { padding: 100px 24px 40px; }
  .pp-thumb-grid { grid-template-columns: repeat(2, 1fr); padding: 0 24px 48px; }
}
