/* Olga Shevchuk — UGC Portfolio
   Soft feminine aesthetic inspired by modern creator portfolios */

:root {
  --bg: #f6f1ec;
  --panel: #f0c9ce;
  --panel-deep: #e8b4bc;
  --ink: #2a2422;
  --ink-soft: #5a504c;
  --accent: #c97b86;
  --accent-strong: #b8616e;
  --card: #efe6df;
  --card-2: #e8d5d8;
  --card-3: #ddd2c8;
  --white: #fffaf7;
  --shadow: 0 18px 50px rgba(80, 50, 55, 0.12);
  --radius: 18px;
  --max: 920px;
  --font-sans: "Montserrat", system-ui, sans-serif;
  --font-script: "Great Vibes", cursive;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--ink);
  background:
    radial-gradient(1200px 600px at 80% -10%, rgba(240, 201, 206, 0.45), transparent 60%),
    radial-gradient(900px 500px at 10% 20%, rgba(255, 255, 255, 0.55), transparent 55%),
    var(--bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
  transition: color 0.25s ease, opacity 0.25s ease;
}

a:hover {
  color: var(--accent-strong);
}

/* Hero — pink panel + overlapping portrait */
.hero {
  width: min(100% - 2rem, var(--max));
  margin: 2.5rem auto 0;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1.25rem;
  align-items: end;
}

.hero__panel {
  background: linear-gradient(160deg, var(--panel) 0%, #f7d8dc 55%, var(--panel-deep) 100%);
  border-radius: 8px;
  padding: 2.75rem 2rem 2.25rem;
  text-align: center;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.hero__panel::after {
  content: "";
  position: absolute;
  inset: auto -20% -40% 40%;
  height: 180px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.35), transparent 70%);
  pointer-events: none;
}

.hero__niches {
  margin: 0 0 0.35rem;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.hero__name {
  margin: 0;
  font-family: var(--font-script);
  font-size: clamp(3.4rem, 8vw, 5.4rem);
  font-weight: 400;
  line-height: 1;
  color: var(--ink);
}

.hero__role {
  margin: 0.85rem 0 0.15rem;
  font-size: 1.05rem;
  font-weight: 500;
}

.hero__more {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 400;
}

.hero__portrait {
  position: relative;
  z-index: 2;
}

.hero__portrait-frame {
  aspect-ratio: 3 / 4;
  border-radius: 10px;
  overflow: hidden;
  background: linear-gradient(165deg, #f3d5d9, #e8c4c9 40%, #d9b8b0);
  box-shadow: var(--shadow);
  position: relative;
}

.hero__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__placeholder {
  display: none;
  position: absolute;
  inset: 0;
  place-items: center;
  text-align: center;
  color: rgba(42, 36, 34, 0.75);
  padding: 1rem;
}

.hero__portrait-frame.is-placeholder .hero__placeholder {
  display: grid;
}

.hero__placeholder span {
  font-family: var(--font-script);
  font-size: 4.5rem;
  line-height: 1;
}

.hero__placeholder p {
  margin: 0.5rem 0 0;
  font-size: 0.78rem;
  font-weight: 500;
}

.hero__placeholder small {
  opacity: 0.7;
  font-weight: 400;
}

/* Contact + bio */
.contact-bar {
  width: min(100% - 2rem, 640px);
  margin: 1.75rem auto 0;
  display: grid;
  gap: 0.55rem;
  text-align: center;
  font-size: 0.95rem;
  font-weight: 500;
}

.bio {
  width: min(100% - 2rem, 640px);
  margin: 1.75rem auto 0;
  font-size: 0.98rem;
  color: var(--ink-soft);
  font-weight: 400;
}

.bio p {
  margin: 0;
}

/* Script headings */
.script-heading {
  margin: 0;
  font-family: var(--font-script);
  font-size: clamp(2.4rem, 5vw, 3.2rem);
  font-weight: 400;
  text-align: center;
  line-height: 1.1;
}

/* Collaborations marquee */
.collabs {
  width: min(100% - 1rem, 980px);
  margin: 3rem auto 0;
  text-align: center;
}

.collabs__track-wrap {
  margin-top: 1.5rem;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.collabs__track {
  display: flex;
  gap: 1rem;
  width: max-content;
  animation: marquee 28s linear infinite;
}

.brand-chip {
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid rgba(201, 123, 134, 0.25);
  display: grid;
  place-items: center;
  box-shadow: 0 8px 24px rgba(80, 50, 55, 0.08);
  flex-shrink: 0;
}

.brand-chip span {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--accent-strong);
}

.collabs__note {
  margin: 1.25rem 0 0;
  font-size: 0.85rem;
  color: var(--ink-soft);
  font-style: italic;
}

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

/* Work examples */
.work {
  width: min(100% - 2rem, var(--max));
  margin: 3.5rem auto 0;
}

.work__label {
  margin: 0 0 0.35rem;
  text-align: center;
  color: var(--accent);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 1.05rem;
}

.niche {
  margin-top: 1.75rem;
}

.niche + .niche {
  margin-top: 2.75rem;
}

.work-grid {
  margin-top: 1.25rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.work-card {
  text-align: center;
}

.work-card__media {
  position: relative;
  aspect-ratio: 9 / 16;
  border-radius: var(--radius);
  overflow: hidden;
  background: linear-gradient(165deg, #f2d6da, #e7c2c7);
  box-shadow: 0 10px 30px rgba(80, 50, 55, 0.1);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.45s ease;
}

.work-card__media.shade-2 {
  background: linear-gradient(165deg, #ead8d2, #dfc4c8);
}

.work-card__media.shade-3 {
  background: linear-gradient(165deg, #e8ddd4, #d9cbc3);
  aspect-ratio: 4 / 5;
}

.work-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.work-card__media.is-placeholder img {
  display: none;
}

.work-card__fallback {
  display: none;
  position: absolute;
  inset: 0;
  place-items: center;
  font-family: var(--font-script);
  font-size: 1.8rem;
  color: rgba(42, 36, 34, 0.7);
  padding: 1rem;
}

.work-card__media.is-placeholder .work-card__fallback {
  display: grid;
}

.work-card__play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(0.92);
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 250, 247, 0.92);
  color: var(--ink);
  font-size: 0.85rem;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.work-card:hover .work-card__media {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(80, 50, 55, 0.18);
}

.work-card:hover .work-card__media img {
  transform: scale(1.05);
}

.work-card:hover .work-card__play {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.work-card__meta {
  margin: 0.7rem 0 0;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--ink-soft);
  line-height: 1.35;
}

/* Feedback */
.feedback {
  width: min(100% - 2rem, 720px);
  margin: 4rem auto 0;
}

.feedback__list {
  margin-top: 1.5rem;
  display: grid;
  gap: 1rem;
}

.feedback blockquote {
  margin: 0;
  padding: 1.25rem 1.4rem;
  background: rgba(255, 250, 247, 0.7);
  border: 1px solid rgba(201, 123, 134, 0.2);
  border-radius: 14px;
  font-size: 0.92rem;
  color: var(--ink-soft);
  box-shadow: 0 8px 24px rgba(80, 50, 55, 0.05);
}

.feedback cite {
  display: block;
  margin-top: 0.75rem;
  font-style: normal;
  font-weight: 600;
  color: var(--accent-strong);
  font-size: 0.82rem;
}

.feedback__hint {
  margin: 1rem 0 0;
  text-align: center;
  font-size: 0.78rem;
  color: #9a8c88;
  font-style: italic;
}

/* CTA */
.cta {
  width: min(100% - 2rem, var(--max));
  margin: 3.5rem auto 0;
}

.cta__panel {
  background: linear-gradient(155deg, var(--panel) 0%, #f6d7db 50%, var(--panel-deep) 100%);
  border-radius: 12px;
  padding: 3rem 1.75rem;
  text-align: center;
  box-shadow: var(--shadow);
}

.cta__eyebrow {
  margin: 0;
  font-weight: 700;
  letter-spacing: 0.12em;
  font-size: 0.95rem;
}

.cta__title {
  margin: 0.2rem 0 0;
  font-family: var(--font-script);
  font-size: clamp(3rem, 8vw, 4.5rem);
  font-weight: 400;
  line-height: 1;
}

.cta__text {
  margin: 1rem auto 0;
  max-width: 420px;
  font-size: 0.95rem;
  color: var(--ink-soft);
}

.cta__links {
  margin-top: 1.5rem;
  display: grid;
  gap: 0.65rem;
  justify-items: center;
  font-weight: 500;
}

.cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  background: var(--ink);
  color: var(--white) !important;
  text-decoration: none;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  box-shadow: 0 10px 24px rgba(42, 36, 34, 0.2);
  transition: transform 0.25s ease, background 0.25s ease;
}

.cta__btn:hover {
  transform: translateY(-2px);
  background: #3d3330;
  color: var(--white) !important;
}

/* Footer */
.footer {
  margin: 2.5rem auto 2rem;
  text-align: center;
  font-size: 0.75rem;
  color: #9a8c88;
}

.footer a {
  text-decoration: none;
}

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 820px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .hero__portrait {
    width: min(70%, 280px);
    margin: -2.5rem auto 0;
  }

  .hero__panel {
    padding-bottom: 3.5rem;
  }

  .work-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .hero {
    margin-top: 1.25rem;
    width: min(100% - 1.25rem, var(--max));
  }

  .hero__name {
    font-size: 3.2rem;
  }

  .work-grid {
    gap: 0.75rem;
  }

  .brand-chip {
    width: 78px;
    height: 78px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .collabs__track {
    animation: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
