  :root {
    --purple: #6A11CB;
    --purple-light: #8A4FFF;
    --purple-accent: #C58BFF;
    --cream: #F5EED8;
    --ink: #0A0806;
    --charcoal: #140E1D;
    --muted: #9A8ABF;
    --accent: #8B1A1A;
    --white: #FDFAF4;
  }

  *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  body {
    background: var(--ink);
    color: var(--cream);
    font-family: 'DM Sans', sans-serif;
    overflow-x: hidden;
  }

  body::before {
    content: '';
    position: fixed;
    inset: 0;
    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)' opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 9000;
    opacity: 0.6;
  }

  .reveal {
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
  }
  .reveal.up { transform: translateY(-60px); }
  .reveal.left { transform: translateX(-80px); }
  .reveal.right { transform: translateX(80px); }
  .reveal.scale { transform: scale(0.88); }
  .reveal.visible { opacity: 1; transform: none; }
  .reveal-delay-1 { transition-delay: 0.1s; }
  .reveal-delay-2 { transition-delay: 0.2s; }
  .reveal-delay-3 { transition-delay: 0.35s; }
  .reveal-delay-4 { transition-delay: 0.5s; }

  /* NAV */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 3rem;
    transition: background 0.4s;
  }
  nav.scrolled {
    background: rgba(20,14,29,0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(106,17,203,0.15);
  }
  .nav-logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.1rem;
    letter-spacing: 0.3em;
    color: var(--purple);
    text-decoration: none;
  }
  .nav-links { display: flex; gap: 2.5rem; list-style: none; }
  .nav-links a {
    color: var(--cream);
    text-decoration: none;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
  }
  .nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 0;
    width: 0; height: 1px;
    background: var(--purple);
    transition: width 0.3s;
  }
  .nav-links a:hover { color: var(--purple); }
  .nav-links a:hover::after { width: 100%; }

  /* HERO */
  #hero {
    height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: relative;
    overflow: hidden;
  }
  .hero-left {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 6rem 3rem 5rem 4rem;
    position: relative;
    z-index: 2;
  }
  .hero-eyebrow {
    font-size: 0.7rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--purple);
    font-weight: 500;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
  }
  .hero-eyebrow::before {
    content: '';
    width: 40px; height: 1px;
    background: var(--purple);
    display: inline-block;
  }
  .hero-name {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3.5rem, 6vw, 6rem);
    font-weight: 900;
    line-height: 0.95;
    color: var(--white);
    margin-bottom: 0.5rem;
  }
  .hero-name .italic { font-style: italic; color: var(--purple); }
  .hero-name .last {
    font-size: clamp(2rem, 4vw, 3.8rem);
    font-weight: 400;
    letter-spacing: 0.05em;
  }
  .hero-tagline {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(0.9rem, 1.5vw, 1.2rem);
    letter-spacing: 0.35em;
    color: var(--muted);
    margin: 2rem 0;
  }
  .hero-roles { display: flex; flex-direction: column; gap: 0.4rem; }
  .hero-role-item {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--cream);
    display: flex;
    align-items: center;
    gap: 0.8rem;
  }
  .role-dot {
    width: 5px; height: 5px;
    border-radius: 50%;
    background: var(--purple);
    flex-shrink: 0;
  }
  .hero-cta {
    margin-top: 3rem;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
  }
  .btn-primary {
    display: inline-block;
    padding: 0.9rem 2.2rem;
    background: var(--purple);
    color: var(--ink);
    text-decoration: none;
    font-size: 0.75rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    font-weight: 700;
    transition: all 0.3s;
  }
  .btn-primary:hover { background: var(--purple-light); transform: translateY(-2px); }
  .btn-outline {
    display: inline-block;
    padding: 0.9rem 2.2rem;
    border: 1px solid var(--purple);
    color: var(--purple);
    text-decoration: none;
    font-size: 0.75rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    font-weight: 500;
    transition: all 0.3s;
  }
  .btn-outline:hover { background: rgba(171,79,255,0.1); }

  .hero-right {
    position: relative;
    overflow: hidden;
  }
  .hero-right::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, var(--ink) 0%, transparent 25%);
    z-index: 1;
  }
  .hero-right::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, var(--ink) 0%, transparent 30%);
    z-index: 1;
  }
  .hero-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
  }
  .hero-vertical-text {
    position: absolute;
    right: 2.5rem;
    top: 50%;
    transform: translateY(-50%) rotate(90deg);
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 0.5em;
    font-size: 0.65rem;
    color: rgba(171,79,255,0.4);
    z-index: 10;
  }

  /* MARQUEE */
  .marquee-section {
    padding: 2rem 0;
    overflow: hidden;
    border-top: 1px solid rgba(171,79,255,0.15);
    border-bottom: 1px solid rgba(171,79,255,0.15);
    background: var(--charcoal);
  }
  .marquee-track {
    display: flex;
    gap: 3rem;
    width: max-content;
    animation: marquee 20s linear infinite;
  }
  .marquee-item {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.1rem;
    letter-spacing: 0.4em;
    color: var(--muted);
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 3rem;
  }
  .marquee-item .star { color: var(--purple); font-size: 0.8rem; }
  @keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }

  /* ABOUT */
  #about {
    padding: 8rem 4rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
  }
  .section-label {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 0.5em;
    color: var(--purple);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
  }
  .section-label::before { content: '\2014'; color: var(--purple); }
  .about-headline {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 4vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 2rem;
  }
  .about-headline em { font-style: italic; color: var(--purple); }
  .about-body {
    font-size: 1rem;
    line-height: 1.85;
    color: rgba(245,238,216,0.75);
    margin-bottom: 1.5rem;
  }
  .quote-block {
    border-left: 2px solid var(--purple);
    padding-left: 1.5rem;
    margin-top: 2.5rem;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1rem;
    color: var(--purple-light);
    line-height: 1.7;
  }
  .quote-source {
    font-family: 'DM Sans', sans-serif;
    font-style: normal;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    color: var(--muted);
    margin-top: 0.5rem;
  }

  /* ABOUT VISUAL - real image */
  .about-visual {
    position: relative;
    height: 640px;
  }
  .about-img-frame {
    position: absolute;
    width: 80%;
    height: 90%;
    top: 0; right: 0;
    overflow: hidden;
    border: 1px solid rgba(171,79,255,0.25);
  }
  .about-img-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
    filter: contrast(1.05) saturate(0.95);
  }
  .about-img-frame::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 60%, rgba(10,8,6,0.6) 100%);
  }
  .about-accent-box {
    position: absolute;
    bottom: 0; left: 0;
    width: 55%;
    padding: 1.8rem;
    background: var(--purple);
    color: var(--ink);
    z-index: 2;
  }
  .accent-number { font-family: 'Bebas Neue', sans-serif; font-size: 3rem; line-height: 1; }
  .accent-label { font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 700; margin-top: 0.3rem; opacity: 0.7; }

  /* EXPERIENCE */
  #experience { background: var(--charcoal); padding: 8rem 4rem; }
  .exp-inner { max-width: 1400px; margin: 0 auto; }
  .exp-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 5rem;
    border-bottom: 1px solid rgba(171,79,255,0.15);
    padding-bottom: 2rem;
  }
  .exp-title { font-family: 'Playfair Display', serif; font-size: clamp(3rem, 5vw, 5rem); font-weight: 900; color: var(--white); line-height: 1; }
  .exp-title span { color: var(--purple); font-style: italic; }
  .exp-count { font-family: 'Bebas Neue', sans-serif; font-size: 5rem; color: rgba(171,79,255,0.15); line-height: 1; }
  .exp-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; }
  .exp-column-title { font-family: 'Bebas Neue', sans-serif; font-size: 0.8rem; letter-spacing: 0.4em; color: var(--purple); margin-bottom: 2.5rem; padding-bottom: 1rem; border-bottom: 1px solid rgba(171,79,255,0.2); }
  .exp-item { display: flex; gap: 1.5rem; margin-bottom: 2rem; padding-bottom: 2rem; border-bottom: 1px solid rgba(255,255,255,0.05); transition: all 0.3s; }
  .exp-item:hover { border-bottom-color: rgba(171,79,255,0.2); }
  .exp-item:last-child { border-bottom: none; margin-bottom: 0; }
  .exp-bullet { width: 8px; height: 8px; border: 1px solid var(--purple); border-radius: 50%; flex-shrink: 0; margin-top: 0.4rem; transition: background 0.3s; }
  .exp-item:hover .exp-bullet { background: var(--purple); }
  .exp-role { font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 600; color: var(--white); margin-bottom: 0.3rem; }
  .exp-show { font-size: 0.75rem; color: var(--purple); letter-spacing: 0.1em; font-style: italic; margin-bottom: 0.2rem; }
  .exp-type { font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); }

  /* GALLERY */
  #gallery { padding: 6rem 4rem; max-width: 1400px; margin: 0 auto; }
  .gallery-label { margin-bottom: 3rem; }
  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
  .gallery-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/4;
    border: 1px solid rgba(171,79,255,0.1);
  }
  .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
    transition: transform 0.6s cubic-bezier(0.16,1,0.3,1), filter 0.4s;
    filter: saturate(0.9) contrast(1.05);
  }
  .gallery-item:hover img { transform: scale(1.06); filter: saturate(1.1) contrast(1.05); }
  .gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10,8,6,0.7) 0%, transparent 50%);
    pointer-events: none;
  }
  .gallery-item-label {
    position: absolute;
    bottom: 1.2rem; left: 1.2rem;
    z-index: 2;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    color: var(--purple);
    text-transform: uppercase;
  }
  .gallery-item.tall { grid-row: span 2; aspect-ratio: auto; }
  .gallery-item.tall { aspect-ratio: unset; }

  /* QUALITIES */
  #qualities { padding: 8rem 4rem; max-width: 1400px; margin: 0 auto; }
  .qualities-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1px;
    margin-top: 4rem;
    border: 1px solid rgba(171,79,255,0.15);
    background: rgba(171,79,255,0.15);
  }
  .quality-card {
    background: var(--ink);
    padding: 2.5rem 1.5rem;
    text-align: center;
    transition: background 0.3s;
    position: relative;
    overflow: hidden;
  }
  .quality-card::before {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 2px;
    background: var(--purple);
    transform: scaleX(0);
    transition: transform 0.4s;
  }
  .quality-card:hover { background: var(--charcoal); }
  .quality-card:hover::before { transform: scaleX(1); }
  .quality-icon { font-size: 1.8rem; margin-bottom: 1rem; display: block; }
  .quality-name { font-family: 'Playfair Display', serif; font-size: 0.95rem; font-weight: 600; color: var(--white); margin-bottom: 0.5rem; }
  .quality-desc { font-size: 0.7rem; color: var(--muted); line-height: 1.6; }

  /* MODELING */
  #modeling { background: var(--charcoal); padding: 8rem 4rem; }
  .model-inner { max-width: 1400px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; }
  .model-brands { margin-top: 2.5rem; display: flex; flex-direction: column; gap: 1rem; }
  .brand-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.2rem 1.5rem;
    border: 1px solid rgba(171,79,255,0.15);
    transition: all 0.3s;
  }
  .brand-item:hover { border-color: var(--purple); background: rgba(171,79,255,0.05); }
  .brand-num { font-family: 'Bebas Neue', sans-serif; font-size: 1.5rem; color: rgba(171,79,255,0.3); width: 2rem; }
  .brand-name { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 600; color: var(--white); flex: 1; }
  .brand-cat { font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); }
  .open-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    margin-top: 2.5rem;
    padding: 1rem 2rem;
    background: rgba(171,79,255,0.08);
    border: 1px solid rgba(171,79,255,0.3);
  }
  .open-dot { width: 8px; height: 8px; border-radius: 50%; background: #4CAF50; animation: blink 2s ease-in-out infinite; }
  @keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }
  .open-text { font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--cream); }

  /* Modeling visual with real image */
  .model-visual { position: relative; height: 650px; }
  .model-img-main {
    position: absolute;
    width: 72%;
    height: 92%;
    right: 0; top: 0;
    overflow: hidden;
    border: 1px solid rgba(171,79,255,0.2);
  }
  .model-img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
    transition: transform 0.6s ease;
  }
  .model-img-main:hover img { transform: scale(1.04); }
  .model-img-main::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 55%, rgba(10,8,6,0.5) 100%);
    pointer-events: none;
  }
  .model-frame-accent {
    position: absolute;
    left: 0; bottom: 0;
    width: 40%;
    height: 38%;
    background: var(--accent);
    border: 1px solid rgba(171,79,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
  }
  .model-frame-accent-inner { text-align: center; padding: 1rem; }
  .mfa-title { font-family: 'Bebas Neue', sans-serif; font-size: 0.7rem; letter-spacing: 0.3em; color: rgba(255,255,255,0.6); margin-bottom: 0.5rem; }
  .mfa-name { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-style: italic; color: var(--purple-light); }

  /* CONTACT */
  #contact { padding: 8rem 4rem; position: relative; overflow: hidden; }
  #contact::before {
    content: 'CONTACT';
    position: absolute;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 18rem;
    color: rgba(171,79,255,0.03);
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    white-space: nowrap;
    pointer-events: none;
  }
  .contact-inner { max-width: 900px; margin: 0 auto; text-align: center; position: relative; z-index: 2; }
  .contact-headline { font-family: 'Playfair Display', serif; font-size: clamp(3rem, 6vw, 6rem); font-weight: 900; color: var(--white); line-height: 0.95; margin-bottom: 1rem; }
  .contact-headline .gold { color: var(--purple); font-style: italic; }
  .contact-sub { font-size: 0.85rem; color: var(--muted); letter-spacing: 0.1em; margin-bottom: 3rem; }
  .contact-details { display: flex; justify-content: center; gap: 4rem; margin: 3rem 0; flex-wrap: wrap; }
  .contact-item { text-align: center; }
  .contact-item-label { font-size: 0.6rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--purple); margin-bottom: 0.5rem; }
  .contact-item-value { font-family: 'Playfair Display', serif; font-size: 1rem; color: var(--white); }
  .divider-line { width: 60px; height: 1px; background: var(--purple); margin: 0 auto 2rem; }

  footer {
    background: var(--charcoal);
    border-top: 1px solid rgba(171,79,255,0.15);
    padding: 2rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .footer-logo { font-family: 'Bebas Neue', sans-serif; font-size: 1.2rem; letter-spacing: 0.3em; color: var(--purple); }
  .footer-copy { font-size: 0.65rem; letter-spacing: 0.2em; color: var(--muted); text-transform: uppercase; }
  .footer-social { display: flex; gap: 1.5rem; }
  .social-link { font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); text-decoration: none; transition: color 0.3s; }
  .social-link:hover { color: var(--purple); }
  .section-divider { width: 100%; height: 1px; background: linear-gradient(to right, transparent, rgba(171,79,255,0.3), transparent); }

@media (max-width: 900px) {
    #hero { 
      grid-template-columns: 1fr 1fr;
    }
    .hero-right::before { display: none; }
    .hero-right::after { display: none; }
    .hero-left { padding: 4rem 2rem 4rem 4rem; }
    #about, .exp-grid, .model-inner { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: 1fr 2fr; }
    .qualities-grid { grid-template-columns: repeat(2, 1fr); }
    .reels-grid { grid-template-columns: 1fr; }
    nav { padding: 1.2rem 1.5rem; }
    .nav-links { display: none; }
    #about, #experience, #qualities, #modeling, #contact, #posters, #featured, #reels { padding: 5rem 2rem; }
    footer { flex-direction: column; gap: 1rem; text-align: center; }
    .about-visual { height: 300px; }
    .model-visual { height: 300px; }
    .posters-grid { grid-template-columns: 1fr; }
    .form-row { flex-direction: column; }
    .whatsapp-float { width: 50px; height: 50px; bottom: 1.5rem; right: 1.5rem; }
  }

@media (max-width: 600px) {
    #hero { 
      grid-template-columns: 1fr;
    }
    .hero-left { padding: 4rem 2rem 2rem 2rem; }
    .hero-right { height: 50vh; min-height: 250px; }
  }

/* PAGE LOADER */
.page-loader {
  position: fixed;
  inset: 0;
  background: linear-gradient(135deg, var(--ink) 0%, var(--charcoal) 100%);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s;
}
.page-loader.hidden {
  opacity: 0;
  visibility: hidden;
}
.loader-content {
  text-align: center;
}
.loader-image-wrapper {
  position: relative;
  width: 120px;
  height: 120px;
  margin: 0 auto 1.5rem;
}
.loader-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  animation: pulseScale 2s ease-in-out infinite;
}
.loader-ring {
  position: absolute;
  inset: -8px;
  border: 2px solid transparent;
  border-top-color: var(--purple);
  border-right-color: var(--purple-light);
  border-radius: 50%;
  animation: spin 1.5s linear infinite;
}
@keyframes pulseScale {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
.loader-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-style: italic;
  color: var(--white);
  margin-bottom: 0.5rem;
  letter-spacing: 0.1em;
}

/* BRANDS CAROUSEL */
.brands-section {
  padding: 4rem 2rem;
  background: var(--ink);
}
.brands-carousel {
  overflow: hidden;
  margin-top: 2rem;
}
.brands-track {
  display: flex;
  gap: 4rem;
  align-items: center;
  animation: brandsScroll 35s linear infinite;
}
.brand-logo-item {
  flex-shrink: 0;
  filter: grayscale(70%) brightness(0.8);
  transition: filter 0.4s;
}
.brand-logo-item:hover {
  filter: grayscale(0) brightness(1);
}
.brand-logo-item img {
  height: 40px;
  width: auto;
  object-fit: contain;
}
@keyframes brandsScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* SHOW POSTERS (9:16 ratio) */
#posters {
  padding: 6rem 4rem;
  max-width: 920px;
  margin: 0 auto;
}
.posters-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.poster-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 9/16;
  border: 1px solid rgba(171,79,255,0.15);
}
.poster-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.poster-item:hover img {
  transform: scale(1.05);
}
.poster-label {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  color: var(--purple);
  text-transform: uppercase;
  background: rgba(10,8,6,0.7);
  padding: 0.5rem 1rem;
}

/* FEATURED VIDEO */
#featured {
  padding: 6rem 4rem;
  max-width: 1400px;
  margin: 0 auto;
  text-align: center;
}
.featured-inner {
  max-width: 900px;
  margin: 0 auto;
}
.featured-video {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  border: 1px solid rgba(171,79,255,0.2);
}
.featured-video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* COMMERCIAL REELS */
#reels {
  padding: 6rem 4rem;
  max-width: 1400px;
  margin: 0 auto;
}
.reels-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.reels-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.reel-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 9/16;
  border: 1px solid rgba(171,79,255,0.15);
  background: var(--ink);
}
.reel-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}
.reel-iframe {
  width: 100%;
  height: 100%;
  border: none;
}
.reel-label {
  position: absolute;
  bottom: 0.5rem;
  right: 0.5rem;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: var(--purple);
  background: rgba(10,8,6,0.7);
  padding: 0.3rem 0.6rem;
}

/* QUALITIES ICONS */
.quality-icon {
  width: 2rem;
  height: 2rem;
  margin-bottom: 1rem;
  display: block;
  stroke: var(--purple);
}

/* BOOKING FORM */
.booking-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 500px;
  margin: 2rem auto 0;
}
.form-row {
  display: flex;
  gap: 1rem;
}
.form-row input, .form-row select {
  flex: 1;
  padding: 0.8rem 1rem;
  background: var(--ink);
  border: 1px solid rgba(171,79,255,0.3);
  color: var(--purple);
  font-family: inherit;
}
.form-row select option {
  background: var(--ink);
  color: var(--purple);
}
.booking-form textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  background: transparent;
  border: 1px solid rgba(171,79,255,0.3);
  color: var(--white);
  font-family: inherit;
  resize: vertical;
}
.booking-form input::placeholder,
.booking-form textarea::placeholder {
  color: var(--muted);
}

/* AVAILABLE BUTTON */
.btn-available {
  display: inline-block;
  padding: 1rem 2rem;
  background: var(--purple);
  color: var(--ink);
  text-decoration: none;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
  text-align: center;
  transition: all 0.3s;
}
.btn-available:hover {
  background: var(--purple-light);
  transform: translateY(-2px);
}
.btn-sub {
  display: block;
  font-size: 0.6rem;
  font-weight: 400;
  opacity: 0.8;
}

/* WHATSAPP STICKY */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 60px;
  height: 60px;
  background: transparent;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}
.whatsapp-float .wa-burst {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37,211,102,0.6) 0%, transparent 70%);
  animation: burst 2s ease-out infinite;
  opacity: 0;
}
.whatsapp-float .wa-burst:nth-child(2) { animation-delay: 0.5s; }
.whatsapp-float .wa-burst:nth-child(3) { animation-delay: 1s; }
@keyframes burst {
  0% { transform: scale(0.8); opacity: 0.8; }
  100% { transform: scale(2.5); opacity: 0; }
}
.whatsapp-float .wa-icon {
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
.whatsapp-float .wa-icon svg {
  width: 32px;
  height: 32px;
}

/* FOOTER CREDIT */
.footer-credit {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.3s;
  margin-left: auto;
}
.footer-credit:hover {
  color: var(--purple);
}

/* ================================================================
   PASTE THIS ENTIRE BLOCK AT THE VERY END OF assets/css/styles.css
   ================================================================ */

/* ── 1. YouTube embed fix (proper 16:9 aspect ratio) ── */
.video-responsive {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
  overflow: hidden;
  border-radius: 8px;
}
.video-responsive iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
/* Remove any old fixed-height iframe styles that may exist */
.featured-video iframe {
  position: static;
  width: auto;
  height: auto;
}
.featured-video {
  max-width: 820px;
  margin: 2rem auto 0;
}

/* ── 2. Instagram reel cards (replaces blocked iframes) ── */
.reels-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.reel-card {
  background: #111;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.reel-card:hover {
  transform: translateY(-4px);
  border-color: rgba(130, 80, 255, 0.4);
}

.reel-thumb {
  position: relative;
  aspect-ratio: 9 / 14;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1a0a2e 0%, #0d1b2a 100%);
  overflow: hidden;
}
.reel-thumb::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background-image: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 10px,
    rgba(255,255,255,0.04) 10px,
    rgba(255,255,255,0.04) 11px
  );
}
/* Brand accent colours */
.reel-thumb--bic {
  background: linear-gradient(135deg, #1a1a3e 0%, #0a0a1a 100%);
}
.reel-thumb--bic::after {
  content: 'BIC';
  position: absolute;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 5rem;
  color: rgba(255, 165, 0, 0.12);
  letter-spacing: 0.1em;
}
.reel-thumb--sendwave {
  background: linear-gradient(135deg, #0a2a1a 0%, #051a0e 100%);
}
.reel-thumb--sendwave::after {
  content: 'SW';
  position: absolute;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 5rem;
  color: rgba(0, 200, 100, 0.12);
  letter-spacing: 0.1em;
}
.reel-thumb--sofy {
  background: linear-gradient(135deg, #2a0a1a 0%, #1a0510 100%);
}
.reel-thumb--sofy::after {
  content: 'SOFY';
  position: absolute;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 4rem;
  color: rgba(255, 80, 120, 0.12);
  letter-spacing: 0.1em;
}

.reel-play-icon {
  position: relative;
  z-index: 2;
  opacity: 0.8;
  transition: opacity 0.2s;
}
.reel-card:hover .reel-play-icon {
  opacity: 1;
}

.reel-brand-badge {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(8px);
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.15);
  z-index: 2;
}

.reel-card-body {
  padding: 1rem 1.2rem 1.4rem;
}
.reel-label {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.3rem;
}
.reel-desc {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.4;
  margin: 0 0 0.9rem;
}
.reel-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  color: #a78bfa;
  text-decoration: none;
  border: 1px solid rgba(167, 139, 250, 0.3);
  padding: 6px 14px;
  border-radius: 20px;
  transition: background 0.2s, color 0.2s;
}
.reel-cta:hover {
  background: rgba(167, 139, 250, 0.15);
  color: #fff;
}

/* ── 3. Mobile hero improvements ── */
@media (max-width: 768px) {
  /* Stack hero vertically — image first, text below */
  #hero {
    flex-direction: column !important;
    min-height: 100svh;
    padding: 5rem 1.5rem 3rem;
    gap: 2rem;
    align-items: center;
    text-align: center;
  }

  .hero-right {
    order: -1; /* image on top */
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
  }

  .hero-photo {
    width: 100%;
    height: auto;
    max-height: 340px;
    object-fit: cover;
    border-radius: 50% 50% 40% 40%;
  }

  .hero-left {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-name {
    font-size: clamp(2.8rem, 14vw, 4.5rem) !important;
    line-height: 1.05;
  }

  .hero-eyebrow,
  .hero-tagline {
    font-size: 0.85rem;
  }

  .hero-roles {
    align-items: center;
  }

  .hero-role-item {
    justify-content: center;
    font-size: 0.8rem;
  }

  .hero-cta {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    max-width: 280px;
    gap: 0.75rem;
  }
  .hero-cta .btn-primary,
  .hero-cta .btn-outline {
    text-align: center;
    width: 100%;
  }

  .hero-vertical-text {
    display: none; /* hides the rotated side text on mobile */
  }

  /* Reels grid stacks to 1 column on mobile */
  .reels-grid {
    grid-template-columns: 1fr;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
  }
  .reel-thumb {
    aspect-ratio: 16 / 9; /* landscape on mobile to save vertical space */
  }
}

@media (max-width: 480px) {
  .hero-name {
    font-size: clamp(2.4rem, 15vw, 3.5rem) !important;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  /* Tablet: reels in 2 columns */
  .reels-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  /* Hero side-by-side but tighter */
  #hero {
    padding: 6rem 2.5rem 3rem;
    gap: 2rem;
  }
  .hero-name {
    font-size: clamp(3rem, 6vw, 5rem) !important;
  }
}
/* ===================================================================
   PATCH 3 — assets/css/styles.css
   PASTE THIS ENTIRE BLOCK AT THE VERY END of your styles.css file.
   Do NOT replace anything — just append to the bottom.
   =================================================================== */


/* ──────────────────────────────────────────────────────────────────
   1. REEL CARDS — Apples Photography-inspired dark card layout
   ────────────────────────────────────────────────────────────────── */

.reels-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}

/* The card itself */
.reel-card {
  background: #0e0e0e;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}
.reel-card:hover {
  transform: translateY(-6px);
  border-color: rgba(167, 139, 250, 0.35);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

/* Facebook iframe embed — 9:16 portrait ratio like Apples Photography */
.reel-embed {
  display: block;
  width: 100%;
  aspect-ratio: 9 / 16;
  border: none;
  background: #111;
  flex-shrink: 0;
}

/* Footer strip below each embed */
.reel-card-footer {
  padding: 1rem 1.25rem 1.3rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  background: #0e0e0e;
}

/* Brand pill */
.reel-brand-pill {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 3px 10px;
  border-radius: 20px;
  width: fit-content;
}

.reel-label {
  font-family: 'Playfair Display', serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
}

/* Instagram fallback link */
.reel-ig-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  color: rgba(167, 139, 250, 0.8);
  text-decoration: none;
  transition: color 0.2s;
}
.reel-ig-link:hover {
  color: #fff;
}


/* ──────────────────────────────────────────────────────────────────
   2. WHATSAPP STICKY BUTTON — Apples Photography style
      Replaces the old .whatsapp-float button entirely
   ────────────────────────────────────────────────────────────────── */

/* Remove old button if it still exists (safety net) */
.whatsapp-float {
  display: none !important;
}

/* New wa-sticky container */
.wa-sticky {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 1000;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Tooltip label that slides in on hover */
.wa-tooltip {
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(10px);
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  padding: 7px 14px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  white-space: nowrap;
  opacity: 0;
  transform: translateX(8px);
  transition: opacity 0.25s ease, transform 0.25s ease;
  pointer-events: none;
}
.wa-sticky:hover .wa-tooltip {
  opacity: 1;
  transform: translateX(0);
}

/* The circular green bubble */
.wa-bubble {
  position: relative;
  width: 58px;
  height: 58px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  flex-shrink: 0;
}
.wa-bubble:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.55);
}
.wa-bubble svg {
  width: 28px;
  height: 28px;
  fill: #fff;
  position: relative;
  z-index: 2;
}

/* Pulsing ring animation */
.wa-pulse {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, 0.5);
  animation: waPulse 2.2s ease-out infinite;
}
@keyframes waPulse {
  0%   { transform: scale(1);    opacity: 0.7; }
  70%  { transform: scale(1.45); opacity: 0; }
  100% { transform: scale(1.45); opacity: 0; }
}


/* ──────────────────────────────────────────────────────────────────
   3. MOBILE HERO — image goes RIGHT on desktop, stays above on mobile
      FIX: the issue where image appeared on the left on mobile.
      On mobile the hero stacks vertically with image on top.
      On desktop, hero-right stays on the right (natural order).
   ────────────────────────────────────────────────────────────────── */

/* Desktop: make sure hero is a proper row with left→right order */
@media (min-width: 769px) {
  #hero {
    display: flex;
    flex-direction: row;
    align-items: center;
  }
  .hero-left  { order: 1; } /* text on LEFT */
  .hero-right { order: 2; } /* image on RIGHT */
}

/* Mobile: stack vertically, image on TOP, text below */
@media (max-width: 768px) {
  #hero {
    display: flex;
    flex-direction: column !important;
    min-height: 100svh;
    padding: 5rem 1.5rem 3rem;
    gap: 2rem;
    align-items: center;
    text-align: center;
  }

  .hero-right {
    order: -1 !important; /* image first (top) */
    width: 100%;
    max-width: 260px;
    margin: 0 auto;
  }

  .hero-photo {
    width: 100%;
    height: auto;
    max-height: 320px;
    object-fit: cover;
    border-radius: 50% 50% 40% 40%;
  }

  .hero-left {
    order: 2 !important; /* text below */
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-name {
    font-size: clamp(2.8rem, 13vw, 4.5rem) !important;
    line-height: 1.05;
  }

  .hero-eyebrow,
  .hero-tagline {
    font-size: 0.85rem;
  }

  .hero-roles {
    align-items: center;
  }

  .hero-role-item {
    justify-content: center;
    font-size: 0.8rem;
  }

  .hero-cta {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    max-width: 280px;
    gap: 0.75rem;
  }
  .hero-cta .btn-primary,
  .hero-cta .btn-outline {
    text-align: center;
    width: 100%;
  }

  .hero-vertical-text {
    display: none;
  }

  /* Reels: single column on mobile */
  .reels-grid {
    grid-template-columns: 1fr;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
  }

  /* Swap embed to 16:9 landscape on mobile to save vertical space */
  .reel-embed {
    aspect-ratio: 16 / 9;
  }

  /* WhatsApp button slightly smaller on mobile */
  .wa-sticky {
    bottom: 20px;
    right: 20px;
  }
  .wa-bubble {
    width: 52px;
    height: 52px;
  }
  .wa-bubble svg {
    width: 24px;
    height: 24px;
  }
  /* Hide tooltip on mobile — no hover on touch */
  .wa-tooltip {
    display: none;
  }
}

/* Tablet: 2-column reels */
@media (min-width: 769px) and (max-width: 1024px) {
  .reels-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  #hero {
    padding: 6rem 2.5rem 3rem;
    gap: 2rem;
  }
  .hero-name {
    font-size: clamp(3rem, 6vw, 5rem) !important;
  }
}

/* Refined featured video and reel card styling */
.featured-video {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}
.video-responsive {
  position: relative;
  width: 100%;
  max-width: 820px;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(10, 8, 6, 0.95);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
}
.video-responsive video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
  display: block;
  background: #080808;
}
.reel-card {
  background: #0e0e0e;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 22px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.24);
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}
.reel-card:hover {
  transform: translateY(-6px);
  border-color: rgba(130, 80, 255, 0.35);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.32);
}
.reel-embed {
  width: 100%;
  aspect-ratio: 9 / 16;
  border: none;
  object-fit: cover;
  min-height: 0;
  background: #090808;
}
.reel-card-footer {
  padding: 1.1rem 1.25rem 1.3rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  background: #0e0e0e;
}
.reel-brand-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: fit-content;
}
@media (max-width: 768px) {
  .reel-embed {
    aspect-ratio: 16 / 9;
  }
}
