/* Yazuri Guido — actress portfolio
   Palette inspired by anchorsayantibanerjee.live: black + gold luxury */

:root {
  --bg: #000000;
  --bg-elevated: #0a0a0a;
  --bg-soft: #141414;
  --ink: #ffffff;
  --ink-muted: #c8c8c8;
  --ink-dim: #8a8a8a;
  --gold: #c0a658;
  --gold-bright: #d4b96a;
  --gold-deep: #a68a00;
  --gold-soft: rgba(192, 166, 88, 0.28);
  --line: rgba(255, 255, 255, 0.12);
  --line-gold: rgba(192, 166, 88, 0.45);

  --font-display: "Cormorant Garamond", "Times New Roman", serif;
  --font-body: "Outfit", "Helvetica Neue", sans-serif;

  --space-xs: 0.5rem;
  --space-sm: 0.875rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4.5rem;
  --space-2xl: 7rem;

  --header-h: 4.25rem;
  --max: 72rem;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(ellipse 80% 50% at 50% -10%, rgba(192, 166, 88, 0.08), transparent 55%),
    var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 1.05rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

a:hover {
  color: var(--gold-bright);
}

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -100%;
  z-index: 1000;
  padding: 0.75rem 1rem;
  background: var(--gold);
  color: #000;
  font-weight: 500;
}

.skip-link:focus {
  top: 1rem;
}

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-h);
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0));
  transition: background 0.35s var(--ease), backdrop-filter 0.35s var(--ease);
}

.site-header.is-scrolled {
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  max-width: var(--max);
  height: 100%;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.brand {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-weight: 500;
  letter-spacing: 0.04em;
  text-decoration: none;
  color: var(--ink);
}

.brand:hover {
  color: var(--gold);
}

.nav__list {
  display: flex;
  align-items: center;
  gap: clamp(0.75rem, 2vw, 1.75rem);
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav__list a {
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ink-muted);
  transition: color 0.25s var(--ease);
}

.nav__list a:hover,
.nav__list a[aria-current="true"] {
  color: var(--gold);
}

.nav__cta {
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 1rem;
  border: 1px solid var(--gold);
  background: var(--gold);
  color: #000 !important;
  font-weight: 500 !important;
  transition: background 0.25s var(--ease), color 0.25s var(--ease);
}

.nav__cta:hover {
  background: transparent;
  color: var(--gold) !important;
}

.nav__toggle {
  display: none;
  align-items: center;
  gap: 0.6rem;
  padding: 0.4rem 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  font: inherit;
  cursor: pointer;
}

.nav__toggle-label {
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.nav__toggle-bars,
.nav__toggle-bars::before,
.nav__toggle-bars::after {
  display: block;
  width: 1.35rem;
  height: 1px;
  background: currentColor;
}

.nav__toggle-bars {
  position: relative;
}

.nav__toggle-bars::before,
.nav__toggle-bars::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav__toggle-bars::before {
  top: -6px;
}

.nav__toggle-bars::after {
  top: 6px;
}

@media (max-width: 860px) {
  .nav__toggle {
    display: inline-flex;
  }

  .nav__list {
    position: fixed;
    inset: var(--header-h) 0 auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 1rem 1.25rem 1.5rem;
    background: rgba(0, 0, 0, 0.96);
    border-bottom: 1px solid var(--line-gold);
  }

  .nav.is-open .nav__list {
    display: flex;
  }

  .nav__list li {
    border-top: 1px solid var(--line);
  }

  .nav__list a {
    display: block;
    padding: 1rem 0;
  }

  .nav__cta {
    justify-content: center;
    margin-top: 0.5rem;
  }
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: grid;
  align-items: end;
  overflow: hidden;
}

.hero__media {
  position: absolute;
  inset: 0;
}

.hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
  transform: scale(1.04);
  animation: hero-drift 18s var(--ease) infinite alternate;
}

@keyframes hero-drift {
  from {
    transform: scale(1.04) translate3d(0, 0, 0);
  }

  to {
    transform: scale(1.08) translate3d(-1.5%, -1%, 0);
  }
}

.hero__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.35) 48%, rgba(0, 0, 0, 0.55) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.35) 0%, transparent 30%, rgba(0, 0, 0, 0.85) 100%);
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: var(--max);
  width: 100%;
  margin: 0 auto;
  padding: calc(var(--header-h) + 2rem) 1.25rem 5.5rem;
}

.hero__eyebrow {
  margin: 0 0 0.75rem;
  max-width: 36rem;
  font-size: clamp(0.68rem, 1.5vw, 0.78rem);
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

.hero__name {
  margin: 0;
  max-width: 12ch;
  font-family: var(--font-display);
  font-size: clamp(3.6rem, 11vw, 7.5rem);
  font-weight: 500;
  line-height: 0.92;
  letter-spacing: 0.02em;
}

.hero__tagline,
.hero__location {
  margin: 0.85rem 0 0;
  color: var(--ink-muted);
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  letter-spacing: 0.08em;
}

.hero__location {
  color: var(--ink-dim);
  font-size: 0.95rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

.hero__scroll {
  position: absolute;
  right: 1.25rem;
  bottom: 1.5rem;
  z-index: 2;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--ink-dim);
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-decoration: none;
}

.hero__scroll::after {
  content: "";
  width: 1px;
  height: 2.5rem;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scroll-pulse 1.8s var(--ease) infinite;
}

@keyframes scroll-pulse {
  0%,
  100% {
    opacity: 0.35;
    transform: scaleY(0.85);
  }

  50% {
    opacity: 1;
    transform: scaleY(1);
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.85rem;
  padding: 0.7rem 1.35rem;
  border: 1px solid transparent;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  transition:
    background 0.25s var(--ease),
    color 0.25s var(--ease),
    border-color 0.25s var(--ease),
    transform 0.25s var(--ease);
}

.btn:hover {
  transform: translateY(-1px);
}

.btn--gold {
  background: var(--gold);
  border-color: var(--gold);
  color: #000;
}

.btn--gold:hover {
  background: transparent;
  color: var(--gold);
}

.btn--ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.45);
  color: var(--ink);
}

.btn--ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn--disabled {
  opacity: 0.45;
  cursor: not-allowed;
  pointer-events: none;
}

/* Snapshot strip */
.snapshot {
  border-top: 1px solid var(--line-gold);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(192, 166, 88, 0.06), transparent 70%),
    var(--bg-elevated);
}

.snapshot__list {
  list-style: none;
  margin: 0 auto;
  padding: 1.75rem 1.25rem;
  max-width: var(--max);
  display: grid;
  gap: 1.25rem 1.5rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (min-width: 720px) {
  .snapshot__list {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 1rem;
    padding: 2rem 1.25rem;
  }
}

.snapshot__item {
  display: grid;
  gap: 0.35rem;
}

.snapshot__label {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.snapshot__value {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.2vw, 1.45rem);
  font-weight: 500;
  line-height: 1.15;
  color: var(--ink);
}

/* Sections */
.section {
  padding: var(--space-2xl) 0;
  border-top: 1px solid var(--line);
}

.section__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.section__inner--narrow {
  max-width: 44rem;
}

.section__inner--split {
  display: grid;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

@media (min-width: 900px) {
  .section__inner--split {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  }
}

.section__header {
  max-width: 38rem;
  margin-bottom: var(--space-lg);
}

.section__eyebrow {
  margin: 0 0 0.65rem;
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
}

.section__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.75rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.02em;
}

.section__lede {
  margin: 1rem 0 0;
  color: var(--ink-muted);
  max-width: 34rem;
}

/* Reel */
.reel__frame {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--bg-soft);
  border: 1px solid var(--line-gold);
}

.reel__poster {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  filter: brightness(0.55);
}

.reel__overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 0.85rem;
  text-align: center;
}

.reel__play {
  display: grid;
  place-items: center;
  width: 4.25rem;
  height: 4.25rem;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--gold);
  font-size: 1.1rem;
  background: rgba(0, 0, 0, 0.35);
}

.reel__note {
  margin: 0;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.reel__meta {
  margin: 1rem 0 0;
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-dim);
}

/* Work */
.work-panels {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 860px) {
  .work-panels {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 2rem;
  }
}

.work-panel {
  padding: 1.75rem 0 0;
  border-top: 1px solid var(--line-gold);
}

.work-panel__title {
  margin: 0 0 0.65rem;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2rem);
  font-weight: 500;
}

.work-panel__note {
  margin: 0 0 1.25rem;
  color: var(--ink-muted);
  font-size: 0.98rem;
}

.credit-pills {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.credit-pills li {
  padding: 0.55rem 0.85rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
  color: var(--ink-muted);
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  transition: border-color 0.25s var(--ease), color 0.25s var(--ease);
}

.credit-pills li:hover {
  border-color: var(--line-gold);
  color: var(--ink);
}

.work-footnote {
  margin: 2.25rem 0 0;
  max-width: 46rem;
  color: var(--ink-dim);
  font-size: 0.98rem;
}

/* Training */
.training p {
  margin: 0 0 1rem;
  color: var(--ink-muted);
}

.training strong {
  color: var(--ink);
  font-weight: 500;
}

/* Purpose */
.section--purpose {
  background:
    radial-gradient(ellipse 70% 60% at 0% 20%, rgba(192, 166, 88, 0.1), transparent 55%),
    var(--bg);
}

.purpose-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 860px) {
  .purpose-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
  }
}

.purpose-card {
  padding: 1.5rem 0 0;
  border-top: 1px solid var(--line-gold);
}

.purpose-card__title {
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 500;
  color: var(--gold);
}

.purpose-card p {
  margin: 0;
  color: var(--ink-muted);
}

/* Photos */
.photo-grid {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: 1fr;
}

@media (min-width: 700px) {
  .photo-grid {
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: minmax(12rem, 22vw);
  }

  .photo-grid__item {
    grid-column: span 4;
  }

  .photo-grid__item--tall {
    grid-column: span 5;
    grid-row: span 2;
  }

  .photo-grid__item--wide {
    grid-column: span 7;
  }
}

.photo-grid__item {
  margin: 0;
  overflow: hidden;
  background: var(--bg-soft);
}

.photo-grid__trigger {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
}

.photo-grid__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease), filter 0.4s var(--ease);
}

.photo-grid__trigger:hover img,
.photo-grid__trigger:focus-visible img {
  transform: scale(1.04);
  filter: brightness(1.05);
}

/* About */
.about__portrait {
  overflow: hidden;
  border: 1px solid var(--line-gold);
}

.about__portrait img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 15%;
}

.about__bio p {
  margin: 0 0 1rem;
  color: var(--ink-muted);
  max-width: 36rem;
}

.stats {
  margin: 2rem 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
}

.stats__row {
  display: grid;
  grid-template-columns: 8rem 1fr;
  gap: 1rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--line);
}

.stats dt {
  margin: 0;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

.stats dd {
  margin: 0;
  color: var(--ink-muted);
}

/* Credits */
.credits-table-wrap {
  overflow-x: auto;
  border-top: 1px solid var(--line-gold);
  border-bottom: 1px solid var(--line-gold);
}

.credits-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 36rem;
}

.credits-table th,
.credits-table td {
  padding: 1rem 0.85rem;
  text-align: left;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

.credits-table th {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

.credits-table td {
  color: var(--ink-muted);
}

.credits-table tbody tr:hover td {
  color: var(--ink);
  background: rgba(192, 166, 88, 0.05);
}

/* Contact */
.section--contact {
  background:
    radial-gradient(ellipse 60% 80% at 100% 0%, rgba(192, 166, 88, 0.1), transparent 50%),
    var(--bg);
}

.contact-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 800px) {
  .contact-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

.contact-block {
  padding: 1.5rem 0;
  border-top: 1px solid var(--line-gold);
}

.contact-block__title {
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 500;
}

.contact-block__body {
  margin: 0;
  color: var(--ink-muted);
}

.contact-block__muted {
  margin: 0.65rem 0 0;
  font-size: 0.9rem;
  color: var(--ink-dim);
}

.contact-link,
.inline-link {
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid var(--gold-soft);
}

.contact-link:hover,
.inline-link:hover {
  color: var(--gold-bright);
  border-bottom-color: var(--gold-bright);
}

.contact-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.contact-links li + li {
  margin-top: 0.45rem;
}

.contact-links__pending {
  color: var(--ink-dim);
}

.contact-block__actions {
  margin: 1.25rem 0 0;
}

/* Footer */
.site-footer {
  padding: 3rem 0 2.5rem;
  border-top: 1px solid var(--line);
  background: #050505;
}

.site-footer__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.25rem;
  display: grid;
  gap: 0.75rem;
}

.site-footer__brand {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--gold);
}

.site-footer__tag,
.site-footer__copy {
  margin: 0;
  color: var(--ink-dim);
  font-size: 0.9rem;
}

.site-footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  margin: 0.5rem 0;
}

.site-footer__nav a {
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ink-muted);
}

/* Lightbox */
.lightbox {
  width: min(92vw, 56rem);
  max-height: 90vh;
  margin: auto;
  padding: 0;
  border: 1px solid var(--line-gold);
  background: #000;
  color: var(--ink);
}

.lightbox::backdrop {
  background: rgba(0, 0, 0, 0.88);
}

.lightbox__image {
  width: 100%;
  max-height: 85vh;
  object-fit: contain;
  background: #000;
}

.lightbox__close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  z-index: 2;
  padding: 0.45rem 0.75rem;
  border: 1px solid var(--gold);
  background: rgba(0, 0, 0, 0.7);
  color: var(--gold);
  font: inherit;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translate3d(0, 1.25rem, 0);
  transition:
    opacity 0.8s var(--ease),
    transform 0.8s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
  }

  .hero__image {
    animation: none;
  }
}

/* Cookie / analytics consent — minimal, non-ad */
.cookie-banner {
  position: fixed;
  inset: auto 1rem 1rem;
  z-index: 200;
  max-width: 34rem;
  margin-left: auto;
  padding: 1.1rem 1.15rem;
  border: 1px solid var(--line-gold);
  background: rgba(5, 5, 5, 0.96);
  backdrop-filter: blur(10px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
}

.cookie-banner[hidden] {
  display: none !important;
}

.cookie-banner__inner {
  display: grid;
  gap: 1rem;
}

.cookie-banner__title {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--gold);
}

.cookie-banner__text {
  margin: 0;
  color: var(--ink-muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: flex-end;
}

@media (min-width: 720px) {
  .cookie-banner {
    inset: auto 1.5rem 1.5rem auto;
    width: min(34rem, calc(100vw - 3rem));
  }

  .cookie-banner__inner {
    grid-template-columns: 1fr auto;
    align-items: end;
    gap: 1.25rem;
  }
}
