:root {
  --pink: #8a4fff;          /* royal violet (primary accent) */
  --pink-dark: #6a2fd0;     /* deep violet */
  --gold: #e0a93f;          /* warm gold */
  --ink: #1f1530;           /* deep plum-black */
  --muted: #6d6480;
  --cream: #f6f1fb;         /* soft lavender cream */
  --white: #ffffff;
  --shadow: 0 14px 40px rgba(106, 47, 208, .16);
  --radius: 18px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}

h1, h2, h3 { font-family: 'Playfair Display', serif; line-height: 1.15; }

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

a { text-decoration: none; color: inherit; }

.container { width: min(1140px, 92%); margin: 0 auto; }

/* ===== Buttons ===== */
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: .95rem;
  cursor: pointer;
  border: none;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn--gold {
  background: linear-gradient(135deg, #ff8a4c, #e83e8c, #8a4fff);
  background-size: 200% 200%;
  color: #fff;
  box-shadow: 0 12px 28px rgba(232,62,140,.45);
  animation: btnGlow 5s ease infinite;
}
.btn--gold:hover { box-shadow: 0 18px 38px rgba(232,62,140,.6); }
@keyframes btnGlow {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
.btn--ghost { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,.7); }
.btn--ghost:hover { background: rgba(255,255,255,.15); border-color: #fff; }
.btn--small { padding: 9px 20px; background: linear-gradient(135deg, #8a4fff, #e83e8c); color: #fff; }
.btn--full { width: 100%; }

/* ===== Navbar ===== */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0,0,0,.05);
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; padding: 14px 0; }
.brand { display: flex; align-items: center; gap: 8px; font-weight: 700; }
.brand__mark { font-size: 1.5rem; }
.brand__name { font-family: 'Playfair Display', serif; font-weight: 900; font-size: 1.3rem; letter-spacing: .5px; }
.brand__name span { color: var(--pink); }
.nav__links { display: flex; align-items: center; gap: 26px; }
.nav__links a { font-weight: 500; font-size: .95rem; color: var(--ink); transition: color .2s; }
.nav__links a:hover { color: var(--pink); }
.nav__toggle { display: none; font-size: 1.6rem; background: none; border: none; cursor: pointer; color: var(--ink); }

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex; align-items: center;
  background: url('images/nail-02.jpg') center/cover fixed;
  color: #fff;
}
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(120deg,
    rgba(31,21,48,.86),
    rgba(138,79,255,.55),
    rgba(232,62,140,.5),
    rgba(255,138,76,.45));
  background-size: 300% 300%;
  animation: heroShift 14s ease infinite;
}
@keyframes heroShift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
.hero__content { position: relative; padding: 80px 0; max-width: 720px; }
.hero__eyebrow {
  display: inline-block;
  letter-spacing: 3px; text-transform: uppercase; font-size: .72rem; font-weight: 600;
  color: #fff; margin-bottom: 20px;
  padding: 8px 16px; border-radius: 50px;
  background: linear-gradient(135deg, #8a4fff, #e83e8c, #ff8a4c);
  background-size: 200% 200%;
  animation: heroShift 6s ease infinite;
  box-shadow: 0 8px 22px rgba(232,62,140,.4);
}
.hero__title { font-size: clamp(2.6rem, 6vw, 4.6rem); font-weight: 900; margin-bottom: 20px; }
.hero__title-accent {
  background: linear-gradient(135deg, #ffd86b, #ff8a4c, #e83e8c);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.hero__sub { font-size: 1.08rem; max-width: 560px; color: #ece4fb; margin-bottom: 32px; }
.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }
.hero__stats { display: flex; gap: 40px; flex-wrap: wrap; }
.hero__stats div { display: flex; flex-direction: column; }
.hero__stats strong {
  font-family: 'Playfair Display', serif; font-size: 1.8rem;
  background: linear-gradient(135deg, #ffd86b, #ff8a4c);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.hero__stats span { font-size: .85rem; color: #e3d8f5; }

/* ===== Sections ===== */
.section { padding: 90px 0; }
.section--alt { background: var(--cream); }
.section--dark { background: linear-gradient(135deg, #1f1530, #3a2168); color: #fff; }
.section__head { text-align: center; max-width: 640px; margin: 0 auto 56px; }
.kicker { text-transform: uppercase; letter-spacing: 3px; font-size: .78rem; color: var(--pink); font-weight: 600; margin-bottom: 10px; }
.kicker--light { color: var(--gold); }
.section__head h2 { font-size: clamp(2rem, 4vw, 2.8rem); margin-bottom: 14px; }
.lead { color: var(--muted); font-size: 1.05rem; }
.lead--light { color: #ded2f0; }

/* ===== Grid / Cards ===== */
.grid { display: grid; gap: 28px; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.card {
  background: #fff; border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); transition: transform .25s ease, box-shadow .25s ease;
}
.card:hover { transform: translateY(-8px); box-shadow: 0 22px 50px rgba(106,47,208,.24); }
.card__img { height: 220px; background-size: cover; background-position: center; }
.card__body { padding: 22px 24px 26px; }
.card__body h3 { font-size: 1.35rem; margin-bottom: 8px; }
.card__body p { color: var(--muted); font-size: .95rem; }

/* ===== Gallery ===== */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.gallery img {
  width: 100%; height: 240px; object-fit: cover; border-radius: 14px;
  cursor: pointer; transition: transform .3s ease, filter .3s ease;
}
.gallery img:hover { transform: scale(1.04); filter: brightness(1.05); }

/* ===== Videos ===== */
.videos { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.videos__item {
  width: 100%; height: 420px; object-fit: cover; border-radius: 16px;
  background: #1f1530; box-shadow: var(--shadow); display: block;
}

/* ===== About ===== */
.about { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.about__img { min-height: 420px; border-radius: var(--radius); background-size: cover; background-position: center; box-shadow: var(--shadow); }
.about__text h2 { font-size: clamp(2rem, 4vw, 2.8rem); margin-bottom: 18px; }
.about__text p { color: var(--muted); margin-bottom: 16px; }
.ticks { list-style: none; margin-top: 18px; display: grid; gap: 12px; }
.ticks li { position: relative; padding-left: 32px; font-weight: 500; }
.ticks li::before { content: "✓"; position: absolute; left: 0; top: 0; width: 22px; height: 22px; background: var(--pink); color: #fff; border-radius: 50%; display: grid; place-items: center; font-size: .75rem; }

/* ===== Contact ===== */
.contact { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.contact__list { list-style: none; margin: 26px 0; display: grid; gap: 16px; }
.contact__list li { display: flex; align-items: center; gap: 14px; color: #e8def5; }
.contact__list span { font-size: 1.2rem; }
.socials { display: flex; gap: 14px; }
.socials a { padding: 10px 18px; border: 1px solid rgba(255,255,255,.3); border-radius: 50px; font-size: .85rem; transition: background .2s; }
.socials a:hover { background: rgba(255,255,255,.12); }

.contact__form { background: #fff; color: var(--ink); padding: 34px; border-radius: var(--radius); box-shadow: var(--shadow); }
.contact__form h3 { font-size: 1.5rem; margin-bottom: 20px; }
.contact__form label { display: block; font-size: .85rem; font-weight: 500; margin-bottom: 16px; color: var(--ink); }
.contact__form input, .contact__form select, .contact__form textarea {
  width: 100%; margin-top: 6px; padding: 12px 14px; border: 1.5px solid #e4d8f2;
  border-radius: 12px; font-family: inherit; font-size: .95rem; background: var(--cream);
  transition: border .2s;
}
.contact__form input:focus, .contact__form select:focus, .contact__form textarea:focus { outline: none; border-color: var(--pink); }
.form__note { margin-top: 16px; color: #1c8b4b; font-weight: 600; text-align: center; }

/* ===== Footer ===== */
.footer { background: #1d1118; color: #cbb6bf; padding: 30px 0; }
.footer__inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer__inner .brand__name { color: #fff; }
.footer__inner p { font-size: .88rem; }

/* ===== Lightbox ===== */
.lightbox {
  position: fixed; inset: 0; z-index: 100;
  background: rgba(0,0,0,.88); display: none;
  align-items: center; justify-content: center; padding: 5%;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 90%; max-height: 88vh; border-radius: 12px; }
.lightbox__close { position: absolute; top: 24px; right: 36px; font-size: 2.6rem; color: #fff; cursor: pointer; line-height: 1; }

/* ===== WhatsApp Float ===== */
.wa-float {
  position: fixed; bottom: 26px; right: 26px; z-index: 60;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25d366; color: #fff; display: grid; place-items: center;
  font-size: 1.6rem; box-shadow: 0 10px 26px rgba(37,211,102,.5);
  transition: transform .2s;
}
.wa-float:hover { transform: scale(1.1); }

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .videos { grid-template-columns: repeat(2, 1fr); }
  .about, .contact { grid-template-columns: 1fr; }
  .about__img { min-height: 300px; }
  .hero { background-attachment: scroll; }
}

@media (max-width: 640px) {
  .nav__links {
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; background: #fff; padding: 20px 24px;
    gap: 16px; box-shadow: 0 12px 24px rgba(0,0,0,.08);
    transform: translateY(-150%); transition: transform .3s ease; opacity: 0; pointer-events: none;
  }
  .nav__links.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav__toggle { display: block; }
  .grid--3 { grid-template-columns: 1fr; }
  .hero__stats { gap: 26px; }
}

/* Respect users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
  .hero__overlay, .hero__eyebrow, .btn--gold { animation: none; }
}
