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

:root {
  --accent: #d4457a;
  --accent-dark: #b32d5f;
  --bg: #ffffff;
  --bg-soft: #f7f5f6;
  --text: #292e32;
  --text-muted: #757c82;
  --border: #e9e6e7;
}

body {
  font-family: 'Poppins', 'Segoe UI', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

/* Nav */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 6%;
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 5;
}

.nav-logo {
  font-weight: 700;
  font-size: 1.3rem;
  color: #fff;
  letter-spacing: 0.02em;
}

/* Hero — video-style tile grid */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: #000;
}

.hero-grid {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 3px;
}

.hero-grid .tile {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
}

.hero-grid img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0;
  transform: translateX(6%) scale(1.06);
  transition: opacity 1.4s ease, transform 5s ease;
}

.hero-grid img.active {
  opacity: 1;
  transform: translateX(0) scale(1.12);
  transition: opacity 1.4s ease, transform 5s ease, transform 4.5s ease-in;
  z-index: 1;
}

.video-tile video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0;
  transition: opacity 1s ease;
}

.video-tile video.active {
  opacity: 1;
  z-index: 1;
}

.video-tile img {
  transform: none;
}

.video-tile img.active {
  transform: none;
}

.hero-overlay {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 60px 6% 56px;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 15%, rgba(0,0,0,0.15) 75%, transparent);
}

.persona-name {
  font-size: clamp(2.2rem, 6vw, 4rem);
  font-weight: 700;
  letter-spacing: 0.01em;
  color: #fff;
}

.tagline {
  margin: 10px 0 26px;
  font-size: clamp(1rem, 2.2vw, 1.25rem);
  color: rgba(255,255,255,0.8);
  max-width: 560px;
}

.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #fff;
  box-shadow: 0 6px 24px rgba(212, 69, 122, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(212, 69, 122, 0.5);
}

/* Intro */
.intro {
  max-width: 680px;
  margin: 0 auto;
  padding: 80px 8% 60px;
  text-align: center;
}

.eyebrow {
  color: var(--accent);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.bio-text {
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  color: var(--text);
  font-weight: 500;
}

/* Gallery */
.gallery {
  padding: 20px 6% 90px;
  background: var(--bg-soft);
  padding-top: 70px;
}

.gallery h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 34px;
  font-weight: 700;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
  max-width: 1100px;
  margin: 0 auto;
}

.gallery-item {
  position: relative;
  aspect-ratio: 3/4;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.gallery-item:not(.locked):hover img {
  transform: scale(1.04);
}

.gallery-item.locked img {
  filter: blur(20px) brightness(0.65) saturate(1.1);
}

.lock-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: rgba(0,0,0,0.15);
  color: #fff;
}

.lock-icon {
  font-size: 1.8rem;
}

.lock-overlay p {
  font-weight: 600;
  font-size: 0.95rem;
}

/* CTA band */
.cta-band {
  text-align: center;
  padding: 90px 8%;
  background: linear-gradient(135deg, #1a1418, #2a1420);
  color: #fff;
}

.cta-band h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin-bottom: 12px;
  font-weight: 700;
}

.cta-band p {
  color: rgba(255,255,255,0.65);
  margin-bottom: 30px;
  font-size: 1.05rem;
}

/* Footer */
.site-footer {
  text-align: center;
  padding: 44px 8%;
  border-top: 1px solid var(--border);
  background: var(--bg);
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 26px;
  margin-bottom: 20px;
}

.social-links a {
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
}

.social-links a:hover {
  color: var(--accent);
}

.footer-note {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 8px;
}

.footer-note a {
  color: var(--text-muted);
}

.copyright {
  color: #aaa4a7;
  font-size: 0.8rem;
}

@media (max-width: 640px) {
  .hero-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: repeat(3, 1fr); }
}
