/* ─────────────────────────────────────────
   LAURA A. GARCIA — Portfolio Site
   Design: Cinematic · Clean · Rose-pink
   ───────────────────────────────────────── */

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

:root {
  --rose:        #c47b90;
  --rose-dark:   #a05e74;
  --rose-light:  #f9edf1;
  --cream:       #fdf7f3;
  --white:       #ffffff;
  --dark:        #1a1619;
  --dark-mid:    #2d2730;
  --text:        #1e1820;
  --text-mid:    #5c5460;
  --text-light:  #a09aa5;
  --border:      #ede4e8;
  --font-serif:  'Playfair Display', Georgia, serif;
  --font-sans:   'DM Sans', system-ui, sans-serif;
  --section-pad: 7rem 1.5rem;
  --radius:      6px;
  --transition:  0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a   { text-decoration: none; color: inherit; }
ul  { list-style: none; }

/* ── Typography ── */
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 500;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 1.5rem;
}
.section-title.light { color: #fff; }
.tag-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 0.75rem;
}
.tag-label.light { color: #d4a8b8; }

/* ── Layout ── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 2rem; }
.section    { padding: var(--section-pad); }
.text-center { text-align: center; }

/* ── Backgrounds ── */
.bg-white { background: var(--white); }
.bg-cream { background: var(--cream); }
.bg-pink  { background: var(--rose-light); }
.bg-dark  { background: var(--dark); }

/* ── Buttons ── */
.btn-rose, .btn-outline {
  display: inline-block;
  padding: 0.85rem 2.2rem;
  border-radius: 3px;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--transition);
}
.btn-rose {
  background: var(--rose);
  color: #fff;
  border: 2px solid var(--rose);
}
.btn-rose:hover {
  background: var(--rose-dark);
  border-color: var(--rose-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(196,123,144,0.3);
}
.btn-outline {
  background: transparent;
  color: var(--text);
  border: 2px solid rgba(30,24,32,0.3);
}
.btn-outline:hover {
  border-color: var(--text);
  transform: translateY(-2px);
}
.btn-ghost-sm {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--rose-dark);
  border: 1.5px solid var(--rose);
  padding: 0.45rem 1.1rem;
  border-radius: 3px;
  transition: all var(--transition);
  margin-top: 0.5rem;
}
.btn-ghost-sm:hover {
  background: var(--rose);
  color: #fff;
}

/* ── Animations ── */
.fade-up {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── NAV ── */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background var(--transition), box-shadow var(--transition);
  padding: 0 2rem;
}
#nav.scrolled {
  background: rgba(255,251,248,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--border);
}
.nav-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 72px;
  position: relative;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.2rem;
}
.nav-links a {
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-mid);
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--text); }
.nav-reel-btn {
  padding: 0.5rem 1.4rem !important;
  border: 1.5px solid var(--rose) !important;
  color: var(--rose) !important;
  border-radius: 3px;
}
.nav-reel-btn:hover { background: var(--rose); color: #fff !important; }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  position: absolute;
  right: 0;
}
.nav-toggle span {
  display: block; width: 22px; height: 1.5px;
  background: var(--text); transition: all var(--transition);
}

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 72px; left: 0; right: 0;
  background: rgba(255,251,248,0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  flex-direction: column;
  padding: 1.5rem 2rem 2rem;
  gap: 1.2rem;
  z-index: 99;
  border-bottom: 1px solid var(--border);
  opacity: 0; transform: translateY(-8px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.mobile-nav.open { display: flex; opacity: 1; transform: translateY(0); }
.mobile-link {
  font-size: 1rem; color: var(--text-mid); letter-spacing: 0.04em;
  padding: 0.4rem 0; border-bottom: 1px solid var(--border);
}
.mobile-reel { color: var(--rose) !important; font-weight: 500; border: none !important; }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  position: relative;
  background: linear-gradient(160deg, #fdf4f6 0%, #f9edf1 40%, #fef8f0 100%);
  overflow: hidden;
}
.hero-grain {
  position: absolute; inset: 0; opacity: 0.035; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 200px;
}
.hero::before {
  content: ''; position: absolute; top: -40%; right: -20%;
  width: 70vw; height: 70vw; border-radius: 50%;
  background: radial-gradient(circle, rgba(196,123,144,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero-content {
  position: relative; text-align: center;
  padding: 7rem 2rem 4rem; max-width: 900px;
}
.hero-eyebrow {
  font-size: 0.7rem; font-weight: 400; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--rose); margin-bottom: 1.5rem;
}
.hero-name {
  font-family: var(--font-serif);
  font-size: clamp(4rem, 10vw, 9rem);
  font-weight: 400; line-height: 0.95; color: var(--text);
  letter-spacing: -0.01em; margin-bottom: 1.25rem;
  display: flex; flex-direction: column; gap: 0.1em;
}
.hero-name span:last-child { font-style: italic; color: var(--rose-dark); }

/* Large prominent roles line */
.hero-roles {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  font-weight: 400;
  letter-spacing: 0.12em;
  color: var(--text);
  margin-bottom: 0.75rem;
  font-style: italic;
}

/* Tiny Feats Productions line */
.hero-company {
  font-size: clamp(0.75rem, 1.5vw, 0.9rem);
  font-weight: 300;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-mid);
  margin-bottom: 2.5rem;
}

.hero-actions {
  display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap;
}
.hero-scroll-hint {
  position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-light);
}
.scroll-bar {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, var(--rose), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse { 0%,100%{opacity:0.4;} 50%{opacity:1;} }

/* ── REEL ── */
.reel-video-wrap {
  margin: 2.5rem auto 0;
  max-width: 860px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(196,123,144,0.2);
}
.reel-video {
  width: 100%;
  display: block;
  background: #1a1019;
}

/* ── SLIDER ── */
.slider-wrap {
  position: relative;
  margin-top: 3rem;
  overflow: hidden;
}
.slider-track {
  display: flex;
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}
.slide {
  min-width: 100%;
  padding: 0 3.5rem; /* space for arrows */
}

/* Arrows */
.slider-arrow {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  z-index: 10;
  background: var(--white);
  border: 1.5px solid var(--border);
  color: var(--rose-dark);
  width: 48px; height: 48px; border-radius: 50%;
  font-size: 1.8rem; line-height: 1;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition);
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  padding-bottom: 2px;
}
.slider-arrow:hover {
  background: var(--rose); color: #fff; border-color: var(--rose);
  box-shadow: 0 6px 20px rgba(196,123,144,0.3);
}
.slider-prev { left: 0; }
.slider-next { right: 0; }

/* Dots */
.slider-dots {
  display: flex; justify-content: center; gap: 0.6rem;
  margin-top: 2rem;
}
.dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--border); border: none; cursor: pointer;
  transition: background var(--transition), transform var(--transition);
  padding: 0;
}
.dot.active { background: var(--rose); transform: scale(1.3); }

/* ── FEATURED FILM (Laundryman slide) ── */
.featured-film {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start;
}

/* YouTube thumbnail link */
.yt-thumb-link {
  display: block; position: relative; border-radius: var(--radius); overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
  aspect-ratio: 16/9;
}
.yt-thumb-img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease;
}
.yt-thumb-link:hover .yt-thumb-img { transform: scale(1.03); }
.yt-play-overlay {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0,0,0,0.1);
  transition: background var(--transition);
}
.yt-thumb-link:hover .yt-play-overlay { background: rgba(0,0,0,0.2); }
.yt-play-overlay svg { width: 72px; height: 72px; filter: drop-shadow(0 2px 8px rgba(0,0,0,0.4)); }

.view-badge {
  display: flex; align-items: center; gap: 0.75rem; margin-top: 1.25rem;
  padding: 0.75rem 1.25rem; background: var(--white);
  border-radius: var(--radius); border: 1px solid var(--border); width: fit-content;
}
.view-num { font-family: var(--font-serif); font-size: 1.8rem; font-weight: 500; color: var(--rose-dark); line-height: 1; }
.view-label { font-size: 0.78rem; color: var(--text-mid); letter-spacing: 0.04em; }

.film-title {
  font-family: var(--font-serif); font-size: clamp(2.2rem,4vw,3.5rem);
  font-weight: 500; color: var(--text); margin-bottom: 0.75rem; margin-top: 0.25rem;
}
.film-logline {
  font-style: italic; color: var(--text-mid); font-size: 1rem;
  margin-bottom: 0.75rem; font-family: var(--font-serif);
}
.film-credits {
  font-size: 0.82rem; color: var(--text-light); letter-spacing: 0.03em;
  margin-bottom: 2rem; line-height: 1.7;
}
.laurels-list { display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 2rem; }
.laurel { display: flex; align-items: flex-start; gap: 0.75rem; }
.laurel-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--rose); flex-shrink: 0; margin-top: 0.45rem;
}
.laurel div { display: flex; flex-direction: column; gap: 0.1rem; }
.laurel strong { font-size: 0.82rem; font-weight: 500; color: var(--text); }
.laurel.winner strong { color: var(--rose-dark); }
.laurel span { font-size: 0.75rem; color: var(--text-mid); }

/* ── TWO FILMS (Lockdown + Not Alone) ── */
.two-films {
  display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start;
}
.mini-film { display: flex; flex-direction: column; gap: 1.25rem; }
.yt-thumb-link.mini {
  aspect-ratio: 16/9;
}
.yt-play-overlay svg { width: 60px; height: 60px; }
.mini-film-info {}
.mini-title {
  font-family: var(--font-serif); font-size: 1.6rem; font-weight: 500;
  color: var(--text); margin-bottom: 0.25rem;
}
.mini-dir {
  font-size: 0.78rem; color: var(--text-light); letter-spacing: 0.05em;
  text-transform: uppercase; margin-bottom: 0.75rem;
}
.mini-desc { font-size: 0.92rem; color: var(--text-mid); line-height: 1.7; }

/* ── COMING SOON SLIDE ── */
.coming-soon-slide {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 4rem;
  align-items: start;
}
.cs-poster-wrap {
  position: relative;
  aspect-ratio: 2/3;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}
.cs-poster {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.cs-poster-wrap:hover .cs-poster { transform: scale(1.03); }
.cs-poster-fallback {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, #2a2030, #1a1019);
}
.cs-fallback-title {
  font-family: var(--font-serif);
  font-size: 2.5rem; font-weight: 700;
  letter-spacing: 0.12em; color: var(--rose);
  text-align: center;
}
.cs-info { padding-top: 0.5rem; }
.cs-upcoming { margin-top: 2rem; }
.cs-upcoming-label {
  font-size: 0.7rem; font-weight: 500; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--text-light);
  margin-bottom: 1.25rem;
}
.cs-title-list { display: flex; flex-direction: column; gap: 0; }
.cs-title-item {
  display: flex; flex-direction: column; gap: 0.2rem;
  padding: 1.1rem 0;
}
.cs-title-name {
  font-family: var(--font-serif);
  font-size: 1.5rem; font-weight: 400; color: var(--text);
}
.cs-title-credit {
  font-size: 0.75rem; color: var(--text-light);
  letter-spacing: 0.06em; text-transform: uppercase;
}
.cs-title-divider {
  height: 1px; background: var(--border); width: 100%;
}

@media (max-width: 960px) {
  .coming-soon-slide { grid-template-columns: 1fr; gap: 2.5rem; }
  .cs-poster-wrap { max-width: 360px; }
}

/* ── ABOUT ── */
.about-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 5rem; align-items: start; }
.about-photo-wrap { position: relative; }
.about-photo {
  width: 100%; aspect-ratio: 3/4; object-fit: cover; object-position: center top;
  border-radius: 4px; box-shadow: 0 24px 64px rgba(0,0,0,0.1);
}
.about-photo-wrap::before {
  content: ''; position: absolute; top: 16px; left: 16px; right: -16px; bottom: -16px;
  border: 1.5px solid var(--rose); border-radius: 4px; opacity: 0.35; z-index: -1;
}
.about-text { padding-top: 0.5rem; }
.about-text p { font-size: 0.96rem; line-height: 1.85; color: var(--text-mid); margin-bottom: 1.1rem; }
.about-text em  { color: var(--text); font-style: italic; }
.about-text strong { color: var(--text); font-weight: 500; }

/* ── FESTIVAL CIRCUIT ── */
.films-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; margin-top: 3.5rem; }
.film-card {
  background: var(--white); border-radius: var(--radius); overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  transition: transform var(--transition), box-shadow var(--transition);
}
.film-card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(0,0,0,0.12); }
.film-poster-wrap { position: relative; aspect-ratio: 2/3; overflow: hidden; background: var(--dark-mid); }
.film-poster { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.film-card:hover .film-poster { transform: scale(1.04); }
.poster-fallback {
  width: 100%; height: 100%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 0.75rem; padding: 2rem;
  background: linear-gradient(135deg, #2a2030, #1a1019);
}
.poster-fallback p { font-family: var(--font-serif); font-size: 2rem; font-weight: 700; letter-spacing: 0.1em; color: var(--rose); }
.poster-fallback span { font-size: 0.7rem; color: rgba(255,255,255,0.4); text-align: center; }
.poster-play {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0,0,0,0.2); opacity: 0; transition: opacity var(--transition);
}
.film-card:hover .poster-play { opacity: 1; }
.poster-play svg { width: 60px; height: 60px; }
.film-card-body { padding: 1.5rem; }
.film-card-title {
  font-family: var(--font-serif); font-size: 1.35rem; font-weight: 500;
  color: var(--text); margin-bottom: 0.35rem;
  display: flex; align-items: center; flex-wrap: wrap; gap: 0.6rem;
}
.views-pill {
  font-family: var(--font-sans); font-size: 0.68rem; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase;
  background: var(--rose-light); color: var(--rose-dark);
  padding: 0.2rem 0.6rem; border-radius: 50px;
}
.film-card-sub { font-size: 0.77rem; color: var(--text-light); margin-bottom: 1rem; }
.festival-tags { display: flex; flex-direction: column; gap: 0.4rem; }
.tag { font-size: 0.73rem; color: var(--text-mid); padding: 0.3rem 0; border-bottom: 1px solid var(--border); line-height: 1.5; }
.tag:last-child { border-bottom: none; }
.tag.winner { color: var(--rose-dark); font-weight: 500; }
.tag.nominee { color: #7a6b30; font-weight: 500; }

/* ── TV CREDITS ── */
.tv-block { margin-bottom: 1rem; }
.tv-network-label {
  font-size: 0.75rem; font-weight: 500; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--rose); margin-bottom: 1.75rem;
}
.shows-row {
  display: flex; align-items: center; justify-content: center; flex-wrap: wrap;
  border: 1px solid rgba(255,255,255,0.08); border-radius: var(--radius);
  overflow: hidden;
}
.shows-row.single { max-width: 280px; margin: 0 auto; }
.show-card {
  flex: 1; min-width: 180px; padding: 2rem 1.5rem;
  transition: background var(--transition);
}
.show-card:hover { background: rgba(255,255,255,0.04); }
.show-num {
  font-family: var(--font-serif); font-size: 2rem; font-weight: 400;
  color: var(--rose); opacity: 0.45; line-height: 1; margin-bottom: 0.6rem;
}
.show-card h3 {
  font-family: var(--font-serif); font-size: 1.2rem; font-weight: 400; color: #fff;
}
.show-divider { width: 1px; height: 80px; background: rgba(255,255,255,0.08); flex-shrink: 0; }

/* IMDb button */
.imdb-btn {
  display: inline-block;
  font-size: 0.82rem; font-weight: 500; letter-spacing: 0.08em;
  text-transform: uppercase; color: #d4a8b8;
  border: 1px solid rgba(255,255,255,0.15);
  padding: 0.7rem 1.8rem; border-radius: 3px;
  transition: all var(--transition);
}
.imdb-btn:hover { border-color: var(--rose); color: var(--rose); }

/* ── CONTACT ── */
.contact-sub { font-size: 0.95rem; color: var(--text-mid); margin-bottom: 2rem; line-height: 1.7; }
.contact-email { font-size: 0.85rem; letter-spacing: 0.04em; }

/* ── FOOTER ── */
.footer { background: var(--dark); padding: 3rem 2rem; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
.footer-name { font-family: var(--font-serif); font-size: 1.1rem; color: #fff; font-weight: 400; }
.footer-copy { font-size: 0.75rem; color: #5a4f5e; letter-spacing: 0.04em; }

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .featured-film { grid-template-columns: 1fr; gap: 2.5rem; }
  .two-films     { grid-template-columns: 1fr; gap: 2.5rem; }
  .slide         { padding: 0 3rem; }
}
@media (max-width: 900px) {
  .about-grid    { grid-template-columns: 1fr; gap: 2.5rem; }
  .films-grid    { grid-template-columns: 1fr; }
  .shows-row     { flex-direction: column; }
  .show-divider  { width: 60%; height: 1px; }
  .nav-links     { display: none; }
  .nav-toggle    { display: flex; }
  .about-photo-wrap::before { display: none; }
  .hero-name     { font-size: clamp(3.5rem, 14vw, 6rem); }
  .hero-roles    { font-size: clamp(1.2rem, 4vw, 1.8rem); }
}
@media (max-width: 600px) {
  :root { --section-pad: 5rem 1.25rem; }
  .hero-actions  { flex-direction: column; align-items: center; }
  .footer-inner  { flex-direction: column; text-align: center; }
  .slide         { padding: 0 2.5rem; }
  .slider-arrow  { width: 36px; height: 36px; font-size: 1.4rem; }
}
