/* Lena Voss — Photographer Portfolio */
@import url('../shared.css');

:root {
  --black: #111111;
  --grey: #e5e5e5;
  --mid: #888;
  --white: #ffffff;
}

body {
  font-family: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  color: var(--grey);
  background: var(--black);
  line-height: 1.6;
}

/* ============================================
   SECTION HEADING (reusable)
   ============================================ */
.section-heading {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--white);
  text-align: center;
  margin-bottom: 3rem;
}

/* ============================================
   NAV — Fixed, transparent, backdrop-blur
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 3rem;
  background: rgba(17, 17, 17, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.nav-brand {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  position: relative;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mid);
  transition: color 0.3s;
}

/* ::after underline slide-in */
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 1px;
  background: var(--white);
  transition: width 0.35s ease;
}

.nav-links a:hover {
  color: var(--white);
}

.nav-links a:hover::after {
  width: 100%;
}

/* ============================================
   HERO — Full-screen, thin typography, line animation
   ============================================ */
.hero {
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  background: var(--black);
}

.hero-title {
  font-size: clamp(2.5rem, 8vw, 6rem);
  font-weight: 100;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--white);
  text-indent: 0.3em;
}

.hero-subtitle {
  margin-top: 1.2rem;
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--mid);
}

/* CSS-only vertical line drawing animation */
.hero-line {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 0;
  background: var(--white);
  animation: drawLine 2.5s ease-out 1s forwards;
}

@keyframes drawLine {
  from { height: 0; opacity: 0.6; }
  to   { height: 120px; opacity: 0.2; }
}

/* ============================================
   FILTER BAR — Decorative category pills
   ============================================ */
.filter-bar {
  padding: 3rem 3rem 1rem;
}

.filter-bar-inner {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.filter-pill {
  background: none;
  border: none;
  font-family: inherit;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mid);
  padding: 0.6rem 1.2rem;
  cursor: pointer;
  position: relative;
  transition: color 0.3s;
}

.filter-pill::after {
  content: '';
  position: absolute;
  left: 1.2rem;
  right: 1.2rem;
  bottom: 0.3rem;
  height: 1px;
  background: var(--white);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.filter-pill:hover {
  color: var(--white);
}

.filter-pill:hover::after {
  transform: scaleX(1);
}

.filter-pill.active {
  color: var(--white);
}

.filter-pill.active::after {
  transform: scaleX(1);
}

/* ============================================
   MASONRY GRID — 12 items, varied aspect ratios
   ============================================ */
.masonry {
  padding: 2rem 3rem 4rem;
  column-count: 3;
  column-gap: 1rem;
}

.masonry-item {
  break-inside: avoid;
  margin-bottom: 1rem;
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  cursor: pointer;
}

.masonry-item.wide {
  column-span: all;
}

.masonry-img {
  width: 100%;
  display: block;
  transition: transform 0.5s ease;
}

/* Gradient placeholders with varied aspect ratios */
.masonry-item:nth-child(1)  .masonry-img { aspect-ratio: 3/4;  background: linear-gradient(135deg, #2d1b69, #764ba2); }
.masonry-item:nth-child(2)  .masonry-img { aspect-ratio: 21/9; background: linear-gradient(160deg, #1a3a5c, #4a90d9, #1a5c6e); }
.masonry-item:nth-child(3)  .masonry-img { aspect-ratio: 1/1;  background: linear-gradient(135deg, #5c2d1a, #d4a574); }
.masonry-item:nth-child(4)  .masonry-img { aspect-ratio: 4/5;  background: linear-gradient(200deg, #0d2b1a, #1a5c3a, #4ad990); }
.masonry-item:nth-child(5)  .masonry-img { aspect-ratio: 3/2;  background: linear-gradient(135deg, #5c1a3a, #d94a90); }
.masonry-item:nth-child(6)  .masonry-img { aspect-ratio: 16/9; background: linear-gradient(170deg, #1b0033, #3a1a5c, #7b4ad9); }
.masonry-item:nth-child(7)  .masonry-img { aspect-ratio: 2/3;  background: linear-gradient(135deg, #1a4a5c, #4ad9d9); }
.masonry-item:nth-child(8)  .masonry-img { aspect-ratio: 3/4;  background: linear-gradient(180deg, #5c4a1a, #b89a3d, #d9d44a); }
.masonry-item:nth-child(9)  .masonry-img { aspect-ratio: 4/3;  background: linear-gradient(135deg, #5c1a1a, #d94a4a); }
.masonry-item:nth-child(10) .masonry-img { aspect-ratio: 5/7;  background: linear-gradient(150deg, #0a1628, #1a3a6e, #5a8fd4); }
.masonry-item:nth-child(11) .masonry-img { aspect-ratio: 21/9; background: linear-gradient(135deg, #1a3320, #2d7a3e, #8fd9a0); }
.masonry-item:nth-child(12) .masonry-img { aspect-ratio: 1/1;  background: linear-gradient(200deg, #3d1a1a, #8b3a3a, #d98a6a); }

.masonry-item:hover .masonry-img {
  transform: scale(1.02);
}

/* Hover overlay with multi-line content */
.masonry-overlay {
  position: absolute;
  inset: 0;
  background: rgba(17, 17, 17, 0.75);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.masonry-item:hover .masonry-overlay {
  opacity: 1;
}

.masonry-title {
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
}

.masonry-cat {
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mid);
}

.masonry-year {
  font-size: 0.65rem;
  font-weight: 300;
  letter-spacing: 0.08em;
  color: var(--mid);
}

/* ============================================
   FEATURED PROJECT — Full-width cinematic section
   ============================================ */
.featured {
  position: relative;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  overflow: hidden;
}

.featured-img {
  width: 100%;
  aspect-ratio: 21/9;
  background: linear-gradient(160deg, #0a0a1a, #1a2a4a, #3a5a8a, #1a4a6e);
  display: block;
}

.featured-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 4rem 5rem;
  background: linear-gradient(to top, rgba(17, 17, 17, 0.9) 0%, rgba(17, 17, 17, 0.3) 50%, transparent 100%);
}

.featured-label {
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 0.8rem;
}

.featured-title {
  font-size: clamp(1.8rem, 4vw, 3.5rem);
  font-weight: 200;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1rem;
}

.featured-meta {
  display: flex;
  gap: 2rem;
  margin-bottom: 1.2rem;
}

.featured-meta span {
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mid);
}

.featured-desc {
  max-width: 600px;
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--grey);
  font-weight: 300;
}

/* ============================================
   ABOUT — Expanded with credits
   ============================================ */
.about {
  display: flex;
  align-items: flex-start;
  gap: 4rem;
  max-width: 1000px;
  margin: 0 auto;
  padding: 7rem 3rem;
}

.about-photo {
  width: 280px;
  min-height: 400px;
  border-radius: 6px;
  background: linear-gradient(180deg, #222, #333, #2a2a2a);
  flex-shrink: 0;
}

.about-text {
  flex: 1;
}

.about h2 {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 0.6rem;
}

.about-role {
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 2rem;
}

.about-bio {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--mid);
  margin-bottom: 1.5rem;
  font-weight: 300;
}

.about-credits {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid #222;
}

.about-credits-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1rem;
}

.about-credits-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.about-credits-list a {
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--mid);
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  transition: color 0.3s, border-bottom-color 0.3s;
}

.about-credits-list a:hover {
  color: var(--white);
  border-bottom-color: var(--white);
}

/* ============================================
   SERVICES — Minimal cards
   ============================================ */
.services {
  padding: 6rem 3rem;
  max-width: 1100px;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.service-card {
  border: 1px solid #222;
  border-radius: 3px;
  padding: 2.5rem;
  transition: border-color 0.3s;
}

.service-card:hover {
  border-color: #444;
}

.service-card h3 {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.2rem;
}

.service-card p {
  font-size: 0.85rem;
  line-height: 1.7;
  color: var(--mid);
  font-weight: 300;
  margin-bottom: 2rem;
}

.service-link {
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--grey);
  transition: color 0.3s;
}

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

/* ============================================
   SELECTED CLIENTS — CSS marquee
   ============================================ */
.clients {
  padding: 5rem 0 4rem;
  overflow: hidden;
}

.clients-track {
  display: flex;
  gap: 4rem;
  animation: marquee 25s linear infinite;
  white-space: nowrap;
  width: max-content;
}

.clients-track span {
  font-size: 1rem;
  font-weight: 300;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #444;
}

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

/* ============================================
   AWARDS & PRESS — Minimal list
   ============================================ */
.awards {
  padding: 5rem 3rem;
  max-width: 900px;
  margin: 0 auto;
}

.awards-list li {
  display: flex;
  align-items: baseline;
  gap: 2rem;
  padding: 1.2rem 0;
  border-bottom: 1px solid #1c1c1c;
}

.awards-list li:first-child {
  border-top: 1px solid #1c1c1c;
}

.awards-year {
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--mid);
  flex-shrink: 0;
  width: 3rem;
}

.awards-source {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--white);
  flex-shrink: 0;
  width: 14rem;
}

.awards-desc {
  font-size: 0.8rem;
  font-weight: 300;
  color: var(--mid);
}

/* ============================================
   EXHIBITION TIMELINE — Vertical with dot markers
   ============================================ */
.timeline {
  padding: 5rem 3rem;
  max-width: 700px;
  margin: 0 auto;
}

.timeline-list {
  position: relative;
  padding-left: 2.5rem;
}

/* Thin vertical line */
.timeline-list::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 1px;
  background: #222;
}

.timeline-item {
  position: relative;
  display: flex;
  align-items: baseline;
  gap: 1.5rem;
  padding: 1.4rem 0;
}

/* Dot marker */
.timeline-item::before {
  content: '';
  position: absolute;
  left: -2.5rem;
  top: 1.75rem;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--white);
  transform: translateX(-3px);
}

.timeline-year {
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--mid);
  flex-shrink: 0;
  width: 3rem;
}

.timeline-venue {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--white);
}

.timeline-city {
  font-size: 0.8rem;
  font-weight: 300;
  color: var(--mid);
  margin-left: auto;
}

/* ============================================
   CONTACT — Expanded
   ============================================ */
.contact {
  text-align: center;
  padding: 7rem 2rem 5rem;
  border-top: 1px solid #1c1c1c;
}

.contact-heading {
  font-size: clamp(1.5rem, 4vw, 2.8rem);
  font-weight: 200;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1rem;
}

.contact-availability {
  font-size: 0.8rem;
  font-weight: 300;
  letter-spacing: 0.08em;
  color: var(--mid);
  margin-bottom: 2.5rem;
}

.contact-email {
  display: inline-block;
  font-size: 1rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  color: var(--grey);
  border-bottom: 1px solid #333;
  padding-bottom: 4px;
  margin-bottom: 2.5rem;
  transition: color 0.3s, border-bottom-color 0.3s;
}

.contact-email:hover {
  color: var(--white);
  border-bottom-color: var(--white);
}

.contact-links {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
}

.contact-links a {
  position: relative;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mid);
  transition: color 0.3s;
}

.contact-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 1px;
  background: var(--white);
  transition: width 0.3s ease;
}

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

.contact-links a:hover::after {
  width: 100%;
}

/* ============================================
   SITE FOOTER — Minimal
   ============================================ */
.site-footer {
  padding: 2rem 3rem;
  border-top: 1px solid #1c1c1c;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.footer-copy {
  font-size: 0.7rem;
  font-weight: 300;
  letter-spacing: 0.08em;
  color: #444;
}

.footer-top {
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mid);
  transition: color 0.3s;
}

.footer-top:hover {
  color: var(--white);
}

.murikual-footer {
  background: var(--black);
  border-top: 1px solid #1c1c1c;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .featured-content {
    padding: 3rem;
  }
}

@media (max-width: 768px) {
  .nav {
    padding: 1rem 1.5rem;
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  .nav-links {
    gap: 1rem;
    flex-wrap: wrap;
  }

  .masonry {
    column-count: 2;
    padding: 2rem 1.5rem 3rem;
  }

  .masonry-item.wide {
    column-span: none;
  }

  .filter-bar {
    padding: 2rem 1.5rem 0.5rem;
  }

  .hero-title {
    letter-spacing: 0.2em;
    text-indent: 0.2em;
  }

  .featured-content {
    position: relative;
    padding: 2rem 1.5rem;
    background: var(--black);
  }

  .featured-img {
    aspect-ratio: 16/9;
  }

  .about {
    flex-direction: column;
    padding: 4rem 1.5rem;
    gap: 2.5rem;
  }

  .about-photo {
    width: 100%;
    max-width: 300px;
    min-height: 350px;
  }

  .services {
    padding: 4rem 1.5rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .awards {
    padding: 4rem 1.5rem;
  }

  .awards-list li {
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  .awards-source {
    width: auto;
  }

  .awards-desc {
    width: 100%;
    padding-left: 5rem;
  }

  .timeline {
    padding: 4rem 1.5rem;
  }

  .timeline-item {
    flex-wrap: wrap;
    gap: 0.3rem;
  }

  .timeline-city {
    margin-left: 0;
    width: 100%;
  }

  .contact {
    padding: 4rem 1.5rem 3rem;
  }

  .footer-inner {
    flex-direction: column;
    gap: 0.8rem;
    text-align: center;
  }
}

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

  .nav-links {
    gap: 0.7rem;
  }

  .nav-links a {
    font-size: 0.65rem;
  }

  .featured-meta {
    flex-direction: column;
    gap: 0.3rem;
  }

  .about-credits-list {
    gap: 1rem;
  }

  .awards-desc {
    padding-left: 0;
  }

  .awards-source {
    width: 100%;
  }

  .contact-links {
    gap: 1.25rem;
    flex-wrap: wrap;
  }

  .service-card {
    padding: 1.5rem;
  }

  .about-photo {
    min-height: 280px;
  }

  .hero-title {
    letter-spacing: 0.12em;
    text-indent: 0.12em;
  }
}
