/* Yana Kulchak — UGC portfolio
   Palette: blush paper, plum ink, orchid rose, silver hairline. */

:root {
  --paper: #FAF6F5;
  --blush: #F2E4E8;
  --ink: #2B2127;
  --muted: #86767D;
  --rose: #C4558B;
  --rose-soft: #E7A9C6;
  --line: #DCD0D4;

  --script: "Pinyon Script", cursive;
  --serif: "Newsreader", "Times New Roman", serif;

  --gutter: clamp(16px, 5vw, 72px);
  --ease: cubic-bezier(.2, .7, .1, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 64px; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(17px, 1.1vw + 12px, 20px);
  line-height: 1.6;
  font-optical-sizing: auto;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, video { display: block; max-width: 100%; }
a { color: inherit; }
:focus-visible { outline: 2px solid var(--rose); outline-offset: 4px; }

/* spaced small serif used for labels, nav and roles */
.eyebrow,
.bar__nav a,
.hero__role,
.hero__cue,
.sound {
  font-family: var(--serif);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: .32em;
  text-transform: uppercase;
}
.eyebrow { color: var(--rose); margin: 0 0 1.4em; }

/* ---------- top bar ---------- */
.bar {
  position: fixed; inset: 0 0 auto 0; z-index: 20;
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px var(--gutter);
  color: #fff;
  transition: background .5s var(--ease), color .5s var(--ease), padding .5s var(--ease);
}
.bar.is-solid {
  background: rgba(250, 246, 245, .86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  color: var(--ink);
  padding-block: 12px;
  box-shadow: 0 1px 0 var(--line);
}
.bar__mark {
  font-family: var(--script);
  font-size: 34px; line-height: 1;
  text-decoration: none;
}
.bar.is-solid .bar__mark { color: var(--rose); }
.bar__nav { display: flex; gap: clamp(16px, 3vw, 40px); }
.bar__nav a { text-decoration: none; padding: 6px 0; position: relative; }
.bar__nav a::after {
  content: ""; position: absolute; left: 0; right: .32em; bottom: 0;
  height: 1px; background: currentColor;
  transform: scaleX(0); transform-origin: left;
  transition: transform .4s var(--ease);
}
.bar__nav a:hover::after { transform: scaleX(1); }

/* ---------- hero ---------- */
.hero {
  position: relative;
  height: 100svh; min-height: 560px;
  overflow: hidden;
  display: grid; place-items: end center;
  background: #3a3035;
}
.hero__video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  animation: settle 2.4s var(--ease) both;
}
.hero__veil {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(43,33,39,.35) 0%, rgba(43,33,39,0) 30%, rgba(43,33,39,.05) 45%, rgba(43,33,39,.62) 100%);
}
.hero__type {
  position: relative; z-index: 1;
  text-align: center;
  padding: 0 var(--gutter) clamp(110px, 16vh, 170px);
}
.hero__name {
  margin: 0;
  font-family: var(--script);
  font-weight: 400;
  font-size: clamp(64px, 13vw, 210px);
  line-height: .95;
  color: var(--rose-soft);
  text-shadow: 0 2px 40px rgba(43, 33, 39, .55);
  animation: rise 1.6s .3s var(--ease) both;
}
.hero__role {
  margin: .4em 0 0;
  color: #fff;
  font-size: clamp(12px, 1.1vw, 15px);
  letter-spacing: .5em;
  animation: rise 1.4s .8s var(--ease) both;
}
.hero__cue {
  position: absolute; bottom: 28px; left: 50%;
  transform: translateX(-50%);
  color: #fff; text-decoration: none; font-size: 10px;
  padding-bottom: 44px;
}
.hero__cue::after {
  content: ""; position: absolute; left: 50%; bottom: 0;
  width: 1px; height: 36px; background: rgba(255,255,255,.8);
  transform-origin: top;
  animation: drip 2.4s var(--ease) infinite;
}

@keyframes settle { from { transform: scale(1.08); } to { transform: scale(1); } }
@keyframes rise { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: none; } }
@keyframes drip {
  0% { transform: translateX(-50%) scaleY(0); }
  50% { transform: translateX(-50%) scaleY(1); transform-origin: top; }
  100% { transform: translateX(-50%) scaleY(0); transform-origin: bottom; }
}

/* ---------- about ---------- */
.about { padding: clamp(96px, 14vw, 180px) var(--gutter) clamp(72px, 10vw, 140px); }
.about__grid {
  max-width: 1180px; margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
  gap: clamp(40px, 7vw, 120px);
  align-items: center;
}
.about__photo { margin: 0; position: relative; width: 100%; max-width: 440px; justify-self: end; }
.about__photo::before {
  content: ""; position: absolute;
  inset: 24px -24px -24px 24px;
  border: 1px solid var(--rose-soft);
  z-index: -1;
}
.about__photo img {
  width: 100%; height: auto; aspect-ratio: 3 / 4; object-fit: cover; object-position: 50% 30%;
}
.about__text p { margin: 0 0 1.1em; max-width: 34em; color: #4a3d44; }
.about__text .lede {
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.4;
  font-weight: 300;
  color: var(--ink);
}

.pullquote {
  margin: clamp(96px, 12vw, 170px) auto 0;
  max-width: 1000px;
  text-align: center;
}
.pullquote p {
  margin: 0;
  font-size: clamp(30px, 4.4vw, 64px);
  line-height: 1.15;
  font-weight: 300;
  letter-spacing: -.01em;
}
.pullquote em {
  font-family: var(--script);
  font-style: normal;
  color: var(--rose);
  font-size: 1.35em;
  line-height: 0;
}

/* ---------- section heads ---------- */
.section-head { text-align: center; margin-bottom: clamp(56px, 8vw, 110px); }
.section-title {
  margin: 0;
  font-family: var(--script);
  font-weight: 400;
  font-size: clamp(48px, 7vw, 104px);
  line-height: 1;
  color: var(--rose);
}

/* ---------- video examples ---------- */
.work {
  background: var(--blush);
  padding: clamp(88px, 12vw, 160px) var(--gutter);
}
.stay {
  max-width: 980px;
  margin: 0 auto clamp(80px, 11vw, 150px);
  display: flex; align-items: flex-start; justify-content: center;
  gap: clamp(20px, 4vw, 56px);
}
.stay:last-child { margin-bottom: 0; }
.stay--flip { flex-direction: row-reverse; }
.stay__name {
  margin: 0;
  writing-mode: vertical-rl;
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(28px, 4.4vw, 60px);
  line-height: 1;
  letter-spacing: .14em;
  white-space: nowrap;
  color: var(--ink);
}
.stay__label {
  display: flex; align-items: flex-start;
  gap: clamp(10px, 1.2vw, 16px);
}
.stay--flip .stay__label { transform: rotate(180deg); }
.stay__caption {
  margin: 0;
  writing-mode: vertical-rl;
  font-style: italic;
  font-weight: 300;
  font-size: clamp(16px, 1.45vw, 21px);
  letter-spacing: .04em;
  line-height: 1;
  color: var(--rose);
  padding-top: clamp(18px, 2vw, 28px);
  white-space: nowrap;
}
.stay__caption::before {
  content: "";
  display: inline-block;
  inline-size: 36px; block-size: 1px;
  background: var(--rose-soft);
  margin-block-end: 14px;
  vertical-align: middle;
}
.stay__frame {
  position: relative;
  width: min(420px, 70vw);
  aspect-ratio: 9 / 16;
  background: #d8c7cd;
  box-shadow: 0 40px 80px -40px rgba(43, 33, 39, .45);
}
.stay__video { width: 100%; height: 100%; object-fit: cover; }
.sound {
  position: absolute; right: 14px; bottom: 14px;
  padding: 9px 14px 9px 16px;
  font-size: 10px;
  color: #fff;
  background: rgba(43, 33, 39, .45);
  border: 1px solid rgba(255, 255, 255, .5);
  border-radius: 999px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  cursor: pointer;
  transition: background .3s;
}
.sound:hover { background: rgba(196, 85, 139, .8); }
.sound[aria-pressed="true"] { background: var(--rose); border-color: var(--rose); }

/* ---------- photography ---------- */
.stills { padding: clamp(88px, 12vw, 160px) var(--gutter); }
.stills__grid {
  max-width: 1240px; margin: 0 auto;
  columns: 3;
  column-gap: clamp(10px, 1.6vw, 22px);
}
.still {
  margin: 0 0 clamp(10px, 1.6vw, 22px);
  overflow: hidden;
  break-inside: avoid;
}
.still img {
  width: 100%; height: auto;
  transition: transform 1.2s var(--ease);
}
.still:hover img { transform: scale(1.04); }

/* ---------- why ugc ---------- */
.why {
  padding: clamp(96px, 13vw, 180px) var(--gutter);
  border-top: 1px solid var(--line);
  text-align: center;
}
.why__inner { max-width: 820px; margin: 0 auto; }
.why__big {
  margin: 0 0 .7em;
  font-size: clamp(34px, 5vw, 72px);
  line-height: 1.08;
  font-weight: 300;
  font-style: italic;
  letter-spacing: -.015em;
}
.why__body { margin: 0 auto; max-width: 36em; color: #4a3d44; }

/* ---------- contact ---------- */
.contact {
  background: var(--ink);
  color: var(--paper);
  padding: clamp(110px, 15vw, 200px) var(--gutter);
  text-align: center;
}
.contact__title {
  margin: 0 0 .25em;
  font-family: var(--script);
  font-weight: 400;
  font-size: clamp(64px, 11vw, 170px);
  line-height: 1;
  color: var(--rose-soft);
}
.contact__mail {
  display: inline-block;
  font-size: clamp(18px, 2.2vw, 30px);
  font-weight: 300;
  letter-spacing: .04em;
  text-decoration: none;
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(250, 246, 245, .35);
  transition: color .3s, border-color .3s;
  overflow-wrap: anywhere;
}
.contact__mail:hover { color: var(--rose-soft); border-color: var(--rose-soft); }

/* ---------- scroll reveal ---------- */
.js .reveal {
  opacity: 0; transform: translateY(32px);
  transition: opacity 1.1s var(--ease), transform 1.1s var(--ease);
}
.js .reveal.is-in { opacity: 1; transform: none; }

/* ---------- small screens ---------- */
@media (max-width: 760px) {
  .bar__nav { gap: 18px; }
  .bar__nav a { font-size: 10px; letter-spacing: .24em; }
  .about__grid { grid-template-columns: 1fr; }
  .about__photo { max-width: 420px; margin-right: 24px; }
  .stills__grid { columns: 2; }
  .stay__frame { width: 72vw; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .js .reveal { opacity: 1; transform: none; }
}
