/* ============================================================
   Christina Paschyn Portfolio — Main Stylesheet
   Version 1.0.0
   ============================================================ */

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { background: #0c0c0c; scroll-behavior: smooth; }
body { background: #0c0c0c; color: #f0f0ee; font-family: 'DM Sans', sans-serif; overflow-x: hidden; }

/* ============================================================
   HERO STAGE
   ============================================================ */
#hero { position: relative; height: 220vh; min-height: 220dvh; }

#stage {
  position: sticky; top: 0;
  width: 100vw;
  height: 100vh; height: 100dvh;
  overflow: hidden;
  background: #0c0c0c;
  perspective: 900px; perspective-origin: 50% 50%;
}

.sticky-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 5000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.5rem 4vw;
  background: rgba(12, 12, 12, 0);
  backdrop-filter: blur(0px);
  transition: background 0.4s ease, backdrop-filter 0.4s ease;
  pointer-events: none;
}
.sticky-nav.scrolled {
  background: rgba(12, 12, 12, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.nav-logo {
  font-weight: 500; font-size: 1rem; letter-spacing: 0.2em;
  color: rgba(240,240,238,0.9); opacity: 0; cursor: pointer;
  transition: color 0.3s ease;
}
.nav-logo:hover { color: #fff; }
.nav-menu { display: flex; gap: 2.5rem; opacity: 0; }
.nav-menu a {
  color: rgba(240,240,238,0.6); text-decoration: none;
  font-size: 0.75rem; letter-spacing: 0.25em; text-transform: uppercase;
  transition: color 0.3s ease; cursor: pointer; font-weight: 500;
}
.nav-menu a:hover { color: #fff; }

.card {
  position: absolute; left: 0; top: 0;
  overflow: hidden; background: #111;
  will-change: transform, opacity;
  backface-visibility: hidden;
  transform: translateZ(0);
}
.card img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  pointer-events: none;
  filter: saturate(0.7) brightness(0.85);
}
#c0 img { filter: saturate(1) brightness(1.02); object-position: top center; }
#c1 img { object-position: top center; }
#c2 img { object-position: top center; }
#c3 img { object-position: top center; }
#c4 img { object-position: top center; }
#c5 img { object-position: top center; }
#c6 img { object-position: top center; }
#c7 img { object-position: top center; }

#c0{z-index:20} #c1{z-index:14} #c2{z-index:13} #c3{z-index:12}
#c4{z-index:13} #c5{z-index:12} #c6{z-index:11} #c7{z-index:11}

#name-block {
  position: absolute; bottom: 26vh; left: 0; right: 0;
  z-index: 25;
  text-align: center; pointer-events: none; line-height: 0.85;
}
.name-line {
  display: block; font-family: 'Tenor Sans', sans-serif; font-weight: 400;
  white-space: nowrap; letter-spacing: 0.02em;
  color: #fff;
  text-shadow: 0 6px 20px rgba(0,0,0,0.3);
}
.nl1 { font-size: clamp(11vw, 13.5vw, 15.5vw); }
.name-letter { display: inline-block; will-change: transform; }

#meta-block {
  position: absolute; left: 0; right: 0; z-index: 30;
  text-align: center; pointer-events: none;
  bottom: clamp(12vh, 15vh, 18vh);
}
.mb-row {
  display: flex; align-items: center; justify-content: center;
  gap: clamp(1rem, 2.5vw, 2.5rem);
  margin-bottom: 0;
}
.mb-firstname {
  font-weight: 500;
  font-size: clamp(0.9rem, 1.7vw, 1.25rem);
  letter-spacing: 0.6em;
  text-transform: uppercase;
  color: rgba(240,240,238,0.85);
  margin-right: -0.6em;
  opacity: 0;
}
.mb-sep { width: 1px; height: 1.6rem; background: rgba(240,240,238,0.3); flex-shrink: 0; opacity: 0; }
.mb-role {
  font-weight: 400;
  font-size: clamp(0.65rem, 1.1vw, 0.95rem);
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: rgba(180,175,165,0.75);
  margin-right: -0.45em;
  opacity: 0;
}
.mb-rule {
  height: 1px;
  background: rgba(240,240,238,0.25);
  margin: 1.2rem auto;
  width: 0;
  opacity: 0;
}
.mb-credits {
  font-weight: 500;
  font-size: clamp(0.65rem, 1.2vw, 0.85rem);
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: rgba(180,175,165,0.6);
  margin-right: -0.4em;
  opacity: 0;
}

.scroll-indicator {
  position: absolute; bottom: 3vh; left: 50%; transform: translateX(-50%);
  z-index: 40; display: flex; flex-direction: column; align-items: center; gap: 0.8rem;
  pointer-events: none;
}
.scroll-indicator span {
  font-size: 0.55rem; letter-spacing: 0.4em; text-transform: uppercase;
  color: rgba(240,240,238,0.5); font-weight: 500;
}
.scroll-line {
  width: 1px; height: 50px; background: rgba(240,240,238,0.15);
  position: relative; overflow: hidden;
}
.scroll-line::after {
  content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 50%;
  background: rgba(240,240,238,0.8);
  animation: scrollDrop 1.8s cubic-bezier(0.77, 0, 0.175, 1) infinite;
}
@keyframes scrollDrop {
  0% { transform: translateY(-100%); }
  100% { transform: translateY(200%); }
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
#about {
  background: #0c0c0c;
  padding: 25vh 10vw 15vh;
  border-top: 1px solid rgba(255,255,255,0.06);
  position: relative;
}
.section-label {
  font-size: clamp(0.85rem, 1.5vw, 1.1rem);
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(180,175,165,0.6);
  margin-bottom: 3rem;
  font-weight: 500;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: start;
}
.about-name {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-style: italic;
  font-size: clamp(3.2rem, 6.5vw, 5.5rem);
  line-height: 0.95;
  margin-bottom: 2.5rem;
  color: #f0f0ee;
}
.about-raw-text { max-width: 55ch; }
.about-raw-text p {
  font-weight: 300;
  font-size: clamp(1.15rem, 1.3vw, 1.35rem);
  line-height: 1.7;
  color: rgba(240,240,238,0.65);
  margin-bottom: 1.6rem;
}
.about-raw-text p:first-of-type {
  color: rgba(240,240,238,0.9);
  font-size: clamp(1.3rem, 1.5vw, 1.55rem);
}
.about-left, .about-right { opacity: 0; will-change: transform, opacity; }
.about-right { position: sticky; top: 15vh; }
.about-image-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: #111;
  border: 1px solid rgba(255,255,255,0.08);
}
.about-image {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(20%) brightness(0.9);
  transition: transform 0.8s ease;
}
.about-image-wrap:hover .about-image { transform: scale(1.04); }

/* ============================================================
   FILMS SECTION
   ============================================================ */
@media (min-width: 901px) {
  #films {
    position: relative;
    height: 200vh;
    background: #0c0c0c;
  }
  .film-sticky-wrap {
    position: sticky; top: 0;
    width: 100vw; height: 100vh;
    overflow: hidden;
    display: flex; flex-direction: column; justify-content: center;
    border-top: 1px solid rgba(255,255,255,0.06);
    background: #0c0c0c;
  }
  .sticky-label {
    position: absolute; top: 15vh; left: 10vw;
    z-index: 10; margin-bottom: 0;
  }
  .film-horizontal-track {
    display: flex; width: 200vw; height: 100%;
    will-change: transform; align-items: center;
  }
  .film-slide {
    width: 100vw; padding: 0 10vw; flex-shrink: 0;
  }
  .film-feature { padding-top: 5vh; }
}
@media (max-width: 900px) {
  #films { height: auto; position: relative; }
  .film-sticky-wrap {
    position: relative; height: auto; padding: 15vh 8vw;
    border-top: 1px solid rgba(255,255,255,0.06); background: #0c0c0c;
  }
  .sticky-label { position: relative; top: 0; left: 0; margin-bottom: 3rem; }
  .film-horizontal-track { display: flex; flex-direction: column; width: 100%; gap: 15vh; }
  .film-slide { width: 100%; padding: 0; }
}

.film-feature {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}
@media (max-width: 900px) {
  .film-feature { grid-template-columns: 1fr; gap: 3rem; }
}
.film-visual {
  position: relative; aspect-ratio: 16/9; background: #111;
  overflow: hidden; border: 1px solid rgba(255,255,255,0.04);
  cursor: pointer;
}
.film-visual img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(40%) brightness(0.8);
  transition: transform 1.2s cubic-bezier(0.2, 1, 0.2, 1), filter 0.8s ease;
}
.film-visual:hover img {
  filter: grayscale(0%) brightness(1) saturate(1.1); transform: scale(1.03);
}
.film-visual iframe {
  position: absolute; top: 0; left: 0;
  width: 100%; height: 100%; border: none;
}
.film-title {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: clamp(2.2rem, 4vw, 3.5rem); line-height: 1.05;
  color: #f0f0ee;
  margin-bottom: 1.2rem;
}
.film-meta {
  font-size: 0.75rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(180,175,165,0.8); margin-bottom: 2rem; font-weight: 500;
  display: flex; align-items: center; gap: 1rem;
}
.film-meta span { color: rgba(255,255,255,0.15); }
.film-desc {
  font-weight: 300; font-size: clamp(1.05rem, 1.2vw, 1.25rem);
  line-height: 1.7; color: rgba(240,240,238,0.65);
  margin-bottom: 1.5rem; max-width: 50ch;
}
.film-actions { display: flex; gap: 1.5rem; align-items: center; }
.read-more-btn {
  display: inline-block;
  font-weight: 500; font-size: 0.8rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: rgba(240,240,238,0.9);
  cursor: pointer; border-bottom: 1px solid rgba(240,240,238,0.3);
  padding-bottom: 2px; transition: border-color 0.3s ease, color 0.3s ease;
  text-decoration: none;
}
.read-more-btn:hover { color: #fff; border-color: #fff; }
.film-accolades {
  display: flex; flex-direction: column; gap: 0.8rem;
  border-left: 1px solid rgba(255,255,255,0.15); padding-left: 1.2rem;
  margin-top: 2rem;
}
.film-accolades span {
  font-size: 0.65rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: rgba(240,240,238,0.5); font-weight: 500;
}

/* ============================================================
   MODAL SYSTEM
   ============================================================ */
.media-modal {
  position: fixed; top: 0; left: 0; width: 100vw; height: 100vh;
  z-index: 9999; display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity 0.4s ease;
}
.media-modal.active { opacity: 1; pointer-events: auto; }
.media-modal-bg {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0,0,0,0.92); backdrop-filter: blur(10px); cursor: pointer;
}
.media-modal-content {
  position: relative; z-index: 10000; width: 90%; max-width: 900px;
  background: #0c0c0c; border: 1px solid rgba(255,255,255,0.1);
  padding: 4rem 3rem; box-shadow: 0 40px 100px rgba(0,0,0,0.8);
  max-height: 90vh; overflow-y: auto;
}
.media-modal-content.video-mode {
  padding: 0; background: transparent; border: none; box-shadow: none;
  aspect-ratio: 16/9; max-height: none; overflow: visible;
}
.modal-close-btn {
  position: absolute; top: 1.5rem; right: 1.5rem;
  background: none; border: none; color: rgba(255,255,255,0.5);
  font-size: 2.5rem; cursor: pointer; z-index: 10001;
  line-height: 1; transition: color 0.3s ease, transform 0.3s ease;
}
.modal-close-btn:hover { color: #fff; transform: scale(1.1); }
.video-mode .modal-close-btn { top: -3.5rem; right: 0; }

/* Archive Modal */
.archive-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 3rem 2rem; margin-top: 2rem;
}
.archive-category h4 {
  font-family: 'Playfair Display', serif; font-weight: 700;
  color: rgba(240,240,238,0.9); font-size: 1.2rem; letter-spacing: 0;
  text-transform: none; margin-bottom: 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 0.5rem;
}
.archive-category ul { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 1rem; }
.archive-category li a {
  color: rgba(240,240,238,0.7); text-decoration: none; font-size: 1rem; font-weight: 300;
  line-height: 1.5; transition: color 0.3s ease; display: inline-block;
}
.archive-category li a:hover { color: #fff; text-decoration: underline; }
.archive-category li span.no-link {
  color: rgba(240,240,238,0.4); font-size: 1rem; line-height: 1.5; display: inline-block; font-weight: 300;
}
.video-grid { grid-template-columns: 1fr; gap: 3rem; }
@media (min-width: 800px) { .video-grid { grid-template-columns: 1fr 1fr; } }
.yt-wrap { position: relative; padding-bottom: 56.25%; height: 0; margin-top: 0.8rem; overflow: hidden; border: 1px solid rgba(255,255,255,0.1); background: #000; border-radius: 2px; }
.yt-wrap iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: 0; }
.yt-multi { display: flex; gap: 1rem; margin-top: 0.8rem; }
.yt-multi .yt-wrap { flex: 1; margin-top: 0; }

/* ============================================================
   HORIZONTAL SCROLLERS (Journalism, Academia, Creative, Press)
   ============================================================ */
#journalism {
  background: #0c0c0c;
  padding: 15vh 0 15vh 8vw;
  border-top: 1px solid rgba(255,255,255,0.06);
  overflow: hidden;
}
#academia {
  background: #0c0c0c;
  padding: 15vh 0 15vh 8vw;
  border-top: 1px solid rgba(255,255,255,0.06);
}
#creative-writing {
  background: #0c0c0c;
  padding: 15vh 0 15vh 8vw;
  border-top: 1px solid rgba(255,255,255,0.06);
  overflow: hidden;
}
#press {
  background: #0c0c0c;
  padding: 15vh 0 15vh 8vw;
  border-top: 1px solid rgba(255,255,255,0.06);
  overflow: hidden;
}

.scroller-header {
  display: flex; justify-content: space-between; align-items: center;
  padding-right: 8vw; margin-bottom: 3rem;
}
.scroller-header .section-label { margin-bottom: 0; }
.swipe-hint {
  font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(240,240,238,0.5); display: flex; align-items: center; gap: 0.5rem;
  transition: opacity 0.5s ease; font-weight: 500;
}
.swipe-hint span { display: inline-block; animation: swipeBounce 1.5s infinite; }
@keyframes swipeBounce {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(5px); }
}

.horizontal-scroller {
  display: flex; gap: 2.5rem; overflow-x: auto;
  padding-bottom: 3rem; padding-right: 8vw;
  scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.horizontal-scroller::-webkit-scrollbar { display: none; }

/* Article Cards */
.article-card {
  flex: 0 0 auto; width: clamp(280px, 35vw, 420px); aspect-ratio: 3/4;
  position: relative; background: #111; scroll-snap-align: start;
  overflow: hidden; border: 1px solid rgba(255,255,255,0.05);
  text-decoration: none; display: block; opacity: 0; will-change: transform, opacity;
}
.article-img {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: top center;
  filter: grayscale(20%) brightness(0.8);
  transition: transform 0.8s cubic-bezier(0.2, 1, 0.2, 1), filter 0.8s ease;
}
.article-content {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 2.5rem 2rem 2rem;
  background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.8) 40%, transparent 100%);
  display: flex; flex-direction: column; justify-content: flex-end;
  height: 100%; transform: translateY(0);
}
.article-pub {
  font-size: 0.65rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: rgba(180,175,165,0.8); margin-bottom: 1rem; font-weight: 500;
  display: flex; align-items: center; gap: 0.8rem;
}
.article-pub span { color: rgba(255,255,255,0.2); }
.article-title {
  font-family: 'Playfair Display', serif; font-weight: 700;
  font-size: clamp(1.4rem, 2vw, 1.8rem); line-height: 1.15;
  color: #f0f0ee; margin-bottom: 1rem; transition: color 0.3s ease;
}
.article-excerpt {
  font-weight: 300; font-size: 0.95rem; line-height: 1.6;
  color: rgba(240,240,238,0.65); margin-bottom: 1.5rem;
  height: 0; opacity: 0; overflow: hidden;
  transition: height 0.5s ease, opacity 0.5s ease, margin 0.5s ease;
}
.article-read {
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.2em;
  text-transform: uppercase; color: #fff;
  display: flex; align-items: center; gap: 0.5rem;
  opacity: 0; transform: translateX(-10px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.article-card:hover .article-img { filter: grayscale(0%) brightness(0.3); transform: scale(1.05); }
.article-card:hover .article-excerpt { height: 80px; opacity: 1; }
.article-card:hover .article-read { opacity: 1; transform: translateX(0); }

/* Archive Link Card */
.archive-link-card {
  display: flex !important; flex-direction: column; align-items: center; justify-content: center;
  background: #1a1a1a !important; border: 1px solid rgba(255,255,255,0.05);
  text-decoration: none; transition: background 0.3s ease, transform 0.4s ease;
}
.archive-link-card:hover { background: #222 !important; transform: translateY(-8px); }
.archive-link-card h4 {
  margin: 0; text-align: center; color: rgba(240,240,238,0.6);
  font-family: 'Playfair Display', serif; font-weight: 700; font-size: 1.5rem;
  line-height: 1.2;
}

/* Academic Cards */
.academic-card {
  flex: 0 0 auto; width: clamp(280px, 35vw, 420px); min-height: 380px; scroll-snap-align: start;
  display: flex; flex-direction: column; padding: 3rem 2.5rem;
  background: #111; border: 1px solid rgba(255,255,255,0.05);
  text-decoration: none; transition: transform 0.4s ease, border-color 0.4s ease, background 0.4s ease;
  opacity: 0; will-change: transform, opacity;
}
.academic-card:hover { transform: translateY(-8px); background: #151515; border-color: rgba(255,255,255,0.15); }
.academic-card:hover .academic-read { color: #fff; }
.academic-pub {
  font-size: 0.65rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: rgba(180,175,165,0.8); margin-bottom: 1.5rem; font-weight: 500;
}
.academic-title {
  font-family: 'Playfair Display', serif; font-weight: 700;
  font-size: clamp(1.2rem, 1.5vw, 1.45rem); line-height: 1.35;
  color: #f0f0ee; margin-bottom: 2rem; flex-grow: 1; transition: color 0.3s ease;
}
.academic-read {
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.2em;
  text-transform: uppercase; color: rgba(240,240,238,0.4);
  display: flex; align-items: center; gap: 0.5rem; transition: color 0.3s ease;
}

/* Agent / Creative Writing Block */
.agent-block p {
  color: rgba(240,240,238,0.65); font-weight: 300; font-size: clamp(1.1rem, 1.3vw, 1.3rem); line-height: 1.7;
  margin-bottom: 1.2rem;
}
.agent-block p:last-child { margin-bottom: 0; }
.agent-block strong { color: #f0f0ee; font-weight: 500; }
.agent-link {
  color: #fff; text-decoration: none; border-bottom: 1px solid rgba(255,255,255,0.3);
  padding-bottom: 2px; transition: border-color 0.3s ease; display: inline-block; margin-top: 0.2rem;
}
.agent-link:hover { border-color: #fff; }

/* ============================================================
   PRESS SECTION — ACCORDION TIMELINE
   ============================================================ */
.press-video-card {
  flex: 0 0 auto; width: clamp(320px, 45vw, 550px); scroll-snap-align: start;
  opacity: 0; will-change: transform, opacity;
}
.press-accordion { border-top: 1px solid rgba(255,255,255,0.1); margin-top: 1rem; }
.press-acc-item { border-bottom: 1px solid rgba(255,255,255,0.1); }
.press-acc-header {
  width: 100%; background: transparent; border: none;
  padding: 2.5rem 8vw 2.5rem 0;
  display: flex; justify-content: space-between; align-items: center;
  cursor: pointer; color: #f0f0ee; text-align: left; outline: none;
}
.press-acc-title {
  font-family: 'Playfair Display', serif; font-weight: 700;
  font-size: clamp(1.4rem, 2.5vw, 2.2rem);
  display: flex; align-items: center; gap: clamp(1rem, 3vw, 2rem);
  transition: opacity 0.3s ease;
}
.press-acc-year {
  font-family: 'DM Sans', sans-serif; font-weight: 500;
  font-size: clamp(0.85rem, 1vw, 1rem); letter-spacing: 0.2em;
  color: rgba(240,240,238,0.5);
}
.press-acc-icon {
  font-size: 2rem; font-weight: 300; color: rgba(240,240,238,0.5);
  transition: transform 0.4s ease, color 0.3s ease; line-height: 1;
}
.press-acc-header:hover .press-acc-title { opacity: 0.8; }
.press-acc-header:hover .press-acc-icon { color: #fff; }
.press-acc-item.active .press-acc-icon { transform: rotate(45deg); color: #fff; }
.press-acc-content {
  display: grid; grid-template-rows: 0fr;
  transition: grid-template-rows 0.5s cubic-bezier(0.2, 1, 0.2, 1);
}
.press-acc-item.active .press-acc-content { grid-template-rows: 1fr; }
.press-acc-inner { overflow: hidden; }
.press-acc-desc {
  color: rgba(240,240,238,0.65); font-weight: 300;
  font-size: clamp(1rem, 1.2vw, 1.15rem); line-height: 1.7;
  max-width: 80ch; margin-bottom: 2.5rem; padding-right: 8vw;
}
.press-yt-wrap {
  position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden;
  border: 1px solid rgba(255,255,255,0.05); background: #000; margin-bottom: 1.2rem;
}
.press-yt-wrap iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: 0; }

/* ============================================================
   CONTACT SECTION
   ============================================================ */
#contact {
  background: #0c0c0c;
  padding: 15vh 8vw 10vh;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(3rem, 6vw, 6rem);
}
.contact-text h2 {
  font-family: 'Playfair Display', serif; font-weight: 700; font-style: italic;
  font-size: clamp(2.5rem, 4vw, 3.5rem); margin-bottom: 1.5rem; color: #f0f0ee;
}
.contact-text p {
  color: rgba(240,240,238,0.65); font-weight: 300; font-size: clamp(1.1rem, 1.3vw, 1.3rem); line-height: 1.7;
}
.contact-text a {
  color: #fff; font-weight: 500; text-decoration: none; border-bottom: 1px solid rgba(255,255,255,0.3); transition: border-color 0.3s;
}
.contact-text a:hover { border-color: #fff; }
.contact-form { display: flex; flex-direction: column; gap: 2rem; }
.form-group { position: relative; }
.form-input {
  width: 100%; background: transparent; border: none; border-bottom: 1px solid rgba(255,255,255,0.2);
  padding: 1rem 0; color: #f0f0ee; font-family: 'DM Sans', sans-serif; font-size: 1.1rem; font-weight: 300;
  transition: border-color 0.3s ease; outline: none; border-radius: 0;
}
.form-input:focus { border-color: #fff; }
.form-input::placeholder { color: rgba(255,255,255,0.4); font-weight: 300; }
textarea.form-input { min-height: 120px; resize: none; }
.submit-btn {
  background: #f0f0ee; color: #0c0c0c; border: none; padding: 1rem 2.5rem; margin-top: 1rem;
  font-family: 'DM Sans', sans-serif; font-weight: 700; font-size: 0.85rem; letter-spacing: 0.2em;
  text-transform: uppercase; cursor: pointer; transition: transform 0.3s ease, background 0.3s ease;
  align-self: flex-start;
}
.submit-btn:hover { background: #fff; transform: translateY(-3px); }
.contact-reveal { opacity: 0; will-change: transform, opacity; }

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2rem;
  padding: 4rem 8vw; border-top: 1px solid rgba(255,255,255,0.06);
}
.social-links { display: flex; gap: 1.5rem; align-items: center; }
.social-links a {
  color: rgba(240,240,238,0.5);
  transition: color 0.3s ease, transform 0.3s ease;
  display: inline-block;
}
.social-links a:hover { color: #fff; transform: translateY(-3px); }
.social-links svg { width: 22px; height: 22px; }
.footer-copy {
  font-family: 'DM Sans', sans-serif; font-weight: 500;
  font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(240,240,238,0.4);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px){
  .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .about-right { position: relative; top: 0; margin-top: 3rem; }
  #about { padding: 15vh 8vw 10vh; }
  .media-modal-content { padding: 3rem 1.5rem; }
  .video-mode .modal-close-btn { top: -2.5rem; right: 0; font-size: 2rem; }
  .nav-menu { gap: 1.2rem; flex-wrap: wrap; justify-content: flex-end; max-width: 75vw; }
  .nav-menu a { font-size: 0.65rem; letter-spacing: 0.15em; }
}

/* ============================================================
   WP ADMIN BAR OFFSET
   ============================================================ */
.admin-bar .sticky-nav { top: 32px; }
@media screen and (max-width: 782px) {
  .admin-bar .sticky-nav { top: 46px; }
}
