/* ============================================================
   KANKSHI'S MAKEOVER & NAIL ART — style.css
   Palette: warm ivory, cream, blush, champagne, muted gold,
   deep espresso. Fonts: Cormorant Garamond + Manrope.
   Mobile-first. No frameworks.
   ============================================================ */

:root {
  --ivory: #FDFBF7;
  --cream: #F6EDE7;
  --blush: #F3E5E5;
  --champagne: #EFE3D3;
  --sand: #E8DCD4;
  --gold: #C19B4C;
  --gold-dark: #A88435;
  --gold-light: #D4AF37;
  --charcoal: #1A1614;
  --espresso: #241D18;
  --cocoa: #5C534D;
  --error: #B3261E;
  --wa: #25D366;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Manrope", system-ui, -apple-system, sans-serif;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-soft: 0 10px 40px -10px rgba(26, 22, 20, 0.08);
  --shadow-lift: 0 24px 60px -20px rgba(26, 22, 20, 0.18);
  --shadow-gold: 0 12px 32px -12px rgba(193, 155, 76, 0.45);
  --header-h: 72px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  background: var(--ivory);
  color: var(--charcoal);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; background: none; border: none; color: inherit; }

::selection { background: var(--gold); color: var(--ivory); }

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 100;
  background: var(--charcoal);
  color: var(--ivory);
  padding: 0.75rem 1.25rem;
  border-radius: 999px;
  font-size: 0.85rem;
  transition: top 0.3s var(--ease);
}
.skip-link:focus { top: 1rem; }

.grain {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 90;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- layout helpers ---------- */
[id] { scroll-margin-top: 84px; }

.wrap {
  width: min(1200px, 100% - 2.5rem);
  margin-inline: auto;
}

.section { padding: 5rem 0; }

.section-head {
  max-width: 640px;
  margin: 0 auto 3.25rem;
  text-align: center;
}

.eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-dark);
}
.eyebrow-light { color: var(--gold-light); }
.eyebrow-mark { color: var(--gold); }

.section-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.9rem, 5vw, 2.9rem);
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin-top: 1rem;
}

.section-sub {
  margin-top: 1.1rem;
  color: var(--cocoa);
  font-size: 1rem;
}

.body-text { color: var(--cocoa); line-height: 1.75; }
.body-text + .body-text { margin-top: 1rem; }
.body-text strong { color: var(--charcoal); font-weight: 600; }

.icon { width: 1em; height: 1em; flex-shrink: 0; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 1rem 2rem;
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1;
  transition: transform 0.3s var(--ease), background-color 0.3s var(--ease),
              border-color 0.3s var(--ease), color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.btn:active { transform: translateY(1px); }

.btn-gold {
  background: var(--gold);
  color: var(--ivory);
  box-shadow: var(--shadow-gold);
}
.btn-gold:hover { background: var(--gold-dark); transform: translateY(-2px); }

.btn-outline {
  border: 1px solid rgba(26, 22, 20, 0.25);
  color: var(--charcoal);
  background: transparent;
}
.btn-outline:hover { border-color: var(--gold); background: rgba(239, 227, 211, 0.55); transform: translateY(-2px); }

.btn-whatsapp { background: var(--wa); color: #fff; }
.btn-whatsapp:hover { background: #1eb856; transform: translateY(-2px); }

.btn-ghost {
  border: 1px solid rgba(253, 251, 247, 0.35);
  color: var(--ivory);
}
.btn-ghost:hover { border-color: var(--gold-light); color: var(--gold-light); transform: translateY(-2px); }

.btn-block { width: 100%; }

/* ---------- reveal on scroll ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.85s var(--ease), transform 0.85s var(--ease);
  transition-delay: var(--rd, 0s);
}
[data-reveal].in-view { opacity: 1; transform: none; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 70;
  transition: background-color 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(253, 251, 247, 0.88);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom-color: rgba(232, 220, 212, 0.9);
  box-shadow: var(--shadow-soft);
}

.header-inner {
  width: min(1280px, 100% - 2.5rem);
  margin-inline: auto;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand { display: flex; flex-direction: column; line-height: 1; }
.brand-name {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: 1.55rem;
  color: var(--charcoal);
}
.brand-sub {
  margin-top: 0.3rem;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
}

.main-nav {
  position: fixed;
  inset: 0;
  z-index: 65;
  background: var(--ivory);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: calc(var(--header-h) + 1rem) 2rem 3rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-1.5%);
  transition: opacity 0.45s var(--ease), transform 0.45s var(--ease), visibility 0s 0.45s;
}
.main-nav.open {
  opacity: 1;
  visibility: visible;
  transform: none;
  transition: opacity 0.45s var(--ease), transform 0.45s var(--ease), visibility 0s;
}

.nav-list { display: flex; flex-direction: column; }
.nav-list li {
  border-bottom: 1px solid rgba(232, 220, 212, 0.8);
  opacity: 0;
  transform: translateX(-18px);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}
.main-nav.open .nav-list li { opacity: 1; transform: none; }
.main-nav.open .nav-list li:nth-child(1) { transition-delay: 0.06s; }
.main-nav.open .nav-list li:nth-child(2) { transition-delay: 0.11s; }
.main-nav.open .nav-list li:nth-child(3) { transition-delay: 0.16s; }
.main-nav.open .nav-list li:nth-child(4) { transition-delay: 0.21s; }
.main-nav.open .nav-list li:nth-child(5) { transition-delay: 0.26s; }
.main-nav.open .nav-list li:nth-child(6) { transition-delay: 0.31s; }
.main-nav.open .nav-list li:nth-child(7) { transition-delay: 0.36s; }

.nav-link {
  display: block;
  padding: 1.05rem 0.25rem;
  font-family: var(--font-display);
  font-size: 1.9rem;
  color: var(--charcoal);
  transition: color 0.25s var(--ease);
}
.nav-link:hover, .nav-link:active { color: var(--gold-dark); }

.nav-cta { margin-top: 2rem; align-self: stretch; }
.nav-location {
  margin-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  color: var(--cocoa);
}
.nav-location .icon { color: var(--gold); }

.menu-toggle {
  position: relative;
  z-index: 75;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid var(--sand);
  background: rgba(253, 251, 247, 0.8);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.menu-toggle span {
  display: block;
  width: 18px;
  height: 1.6px;
  background: var(--charcoal);
  transition: transform 0.35s var(--ease), translate 0.35s var(--ease);
}
.menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(3.8px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-3.8px) rotate(-45deg); }

@media (min-width: 1024px) {
  .menu-toggle { display: none; }
  .main-nav {
    position: static;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    padding: 0;
    background: transparent;
    opacity: 1;
    visibility: visible;
    transform: none;
    transition: none;
  }
  .nav-list { flex-direction: row; align-items: center; gap: 1.75rem; }
  .nav-list li { border: 0; opacity: 1; transform: none; }
  .main-nav.open .nav-list li { transition-delay: 0s; }
  .nav-link {
    position: relative;
    padding: 0.35rem 0;
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    color: var(--cocoa);
  }
  .nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.3s var(--ease);
  }
  .nav-link:hover { color: var(--charcoal); }
  .nav-link:hover::after { width: 100%; }
  .nav-cta { margin: 0 0 0 1.5rem; padding: 0.75rem 1.5rem; align-self: auto; }
  .nav-location { display: none; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  overflow: hidden;
  padding-top: var(--header-h);
}

.hero-watermark {
  position: absolute;
  top: 2rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(6rem, 22vw, 20rem);
  line-height: 1;
  white-space: nowrap;
  color: transparent;
  -webkit-text-stroke: 1px rgba(193, 155, 76, 0.25);
  pointer-events: none;
  user-select: none;
}
@supports not (-webkit-text-stroke: 1px black) {
  .hero-watermark { color: rgba(193, 155, 76, 0.07); }
}

.hero-inner {
  position: relative;
  width: min(1280px, 100% - 2.5rem);
  margin-inline: auto;
  display: grid;
  gap: 3rem;
  padding: 2.5rem 0 4.5rem;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid rgba(193, 155, 76, 0.4);
  background: rgba(253, 251, 247, 0.8);
  border-radius: 999px;
  padding: 0.55rem 1.1rem;
  font-size: 0.66rem;
  animation: fadeUp 0.7s var(--ease) 0.15s both;
}

.hero-title {
  margin-top: 1.6rem;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.6rem, 9vw, 4.6rem);
  line-height: 1.06;
  letter-spacing: -0.01em;
}
.hero-title .line { display: block; overflow: hidden; padding-bottom: 0.08em; }
.hero-title .line > span {
  display: block;
  transform: translateY(112%);
  animation: lineUp 1s var(--ease) forwards;
}
.hero-title .line:nth-child(1) > span { animation-delay: 0.3s; }
.hero-title .line:nth-child(2) > span { animation-delay: 0.44s; }
.hero-title .line:nth-child(3) > span { animation-delay: 0.58s; }
.hero-title .accent { font-style: italic; color: var(--gold-dark); }

.hero-sub {
  margin-top: 1.2rem;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--cocoa);
  animation: fadeUp 0.7s var(--ease) 0.85s both;
}

.hero-desc {
  margin-top: 0.9rem;
  max-width: 30rem;
  color: var(--cocoa);
  animation: fadeUp 0.7s var(--ease) 1s both;
}

.hero-ctas {
  margin-top: 2.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  animation: fadeUp 0.7s var(--ease) 1.15s both;
}

.hero-location {
  margin-top: 1.6rem;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.85rem;
  color: var(--cocoa);
  animation: fadeUp 0.7s var(--ease) 1.3s both;
}
.hero-location .icon { color: var(--gold); }

.hero-media {
  position: relative;
  width: min(430px, 100%);
  margin-inline: auto;
  animation: heroImg 1.2s var(--ease) 0.5s both;
}

.hero-frame {
  position: relative;
  border-radius: 999px 999px 26px 26px;
  overflow: hidden;
  box-shadow: var(--shadow-lift);
}
.hero-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(253, 251, 247, 0.25);
  pointer-events: none;
}
.hero-frame img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
}
.hero-media::before {
  content: "";
  position: absolute;
  inset: -0.9rem;
  border: 1px solid rgba(193, 155, 76, 0.4);
  border-radius: 999px 999px 32px 32px;
  pointer-events: none;
}

.hero-badge {
  position: absolute;
  bottom: -1.6rem;
  left: -0.6rem;
  width: 108px;
  height: 108px;
  border-radius: 50%;
  background: var(--ivory);
  border: 1px solid var(--sand);
  box-shadow: var(--shadow-lift);
  display: flex;
  align-items: center;
  justify-content: center;
}
.badge-ring {
  position: absolute;
  inset: 6px;
  animation: spin 26s linear infinite;
}
.badge-text {
  font-family: var(--font-body);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.22em;
  fill: var(--gold-dark);
}
.badge-center {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--charcoal);
}

@keyframes lineUp { to { transform: translateY(0); } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }
@keyframes heroImg { from { opacity: 0; transform: translateY(30px) scale(0.97); } to { opacity: 1; transform: none; } }
@keyframes spin { to { transform: rotate(360deg); } }

@media (max-width: 380px) {
  .hero-eyebrow { font-size: 0.6rem; letter-spacing: 0.2em; padding: 0.5rem 0.9rem; }
}

@media (min-width: 640px) {
  .hero-ctas { flex-direction: row; align-items: center; }
  .hero-badge { left: -1.8rem; width: 122px; height: 122px; }
}

@media (min-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    gap: 3rem;
    padding: 3.5rem 0 6rem;
  }
  .hero-watermark { left: auto; right: -2%; transform: none; top: 1rem; }
  .hero-media { justify-self: end; width: min(460px, 100%); }
}

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee {
  overflow: hidden;
  border-top: 1px solid var(--sand);
  border-bottom: 1px solid var(--sand);
  background: rgba(246, 237, 231, 0.6);
  padding: 1.35rem 0;
}
.marquee-track { display: flex; width: max-content; animation: marquee 46s linear infinite; }
.marquee-row { display: flex; align-items: center; flex-shrink: 0; }
.mq-item {
  padding: 0 2rem;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.45rem;
  color: rgba(26, 22, 20, 0.78);
  white-space: nowrap;
}
.mq-dot { width: 8px; height: 8px; background: rgba(193, 155, 76, 0.7); transform: rotate(45deg); flex-shrink: 0; }

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

/* ============================================================
   ABOUT
   ============================================================ */
.about-grid { display: grid; gap: 4.5rem; align-items: center; }

.about-media { position: relative; max-width: 520px; }
.about-frame {
  overflow: hidden;
  border-radius: 2rem;
  box-shadow: var(--shadow-lift);
}
.about-frame img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.about-frame:hover img { transform: scale(1.05); }
.about-media::before {
  content: "";
  position: absolute;
  top: -1rem;
  left: -1rem;
  width: 84px;
  height: 84px;
  border-top: 2px solid rgba(193, 155, 76, 0.5);
  border-left: 2px solid rgba(193, 155, 76, 0.5);
  border-top-left-radius: 2rem;
}
.about-accent {
  position: absolute;
  right: -0.6rem;
  bottom: -2.2rem;
  width: 9.5rem;
  overflow: hidden;
  border-radius: 1.1rem;
  border: 4px solid var(--ivory);
  box-shadow: var(--shadow-lift);
}
.about-accent img { width: 100%; aspect-ratio: 1; object-fit: cover; }

.about-copy .section-title { margin-bottom: 1.4rem; }

.about-badges {
  margin-top: 1.9rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}
.about-badges li {
  border: 1px solid rgba(193, 155, 76, 0.4);
  background: rgba(239, 227, 211, 0.6);
  border-radius: 999px;
  padding: 0.55rem 1.2rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-dark);
}

@media (min-width: 1024px) {
  .about-grid { grid-template-columns: 1fr 1fr; gap: 5.5rem; }
  .about-media { margin-left: 1rem; }
  .about-accent { right: -2rem; width: 11rem; }
}

/* ============================================================
   SERVICES
   ============================================================ */
.services { background: rgba(246, 237, 231, 0.5); }

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.2rem;
}

.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  background: var(--ivory);
  border: 1px solid var(--sand);
  border-radius: 1.25rem;
  padding: 1.9rem 1.75rem;
  box-shadow: var(--shadow-soft);
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease), border-color 0.5s var(--ease);
}
.service-card:hover {
  transform: translateY(-5px);
  border-color: rgba(193, 155, 76, 0.45);
  box-shadow: var(--shadow-lift);
}

.service-num {
  position: absolute;
  top: 1.4rem;
  right: 1.6rem;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.5rem;
  color: rgba(193, 155, 76, 0.45);
}

.service-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  background: rgba(239, 227, 211, 0.7);
  color: var(--gold-dark);
  transition: background-color 0.5s var(--ease), color 0.5s var(--ease);
}
.service-icon svg { width: 22px; height: 22px; }
.service-card:hover .service-icon { background: var(--gold); color: var(--ivory); }

.service-card h3 {
  margin-top: 1.25rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.35rem;
}
.service-card p {
  margin-top: 0.6rem;
  flex: 1;
  font-size: 0.9rem;
  color: var(--cocoa);
  line-height: 1.65;
}

.service-link {
  margin-top: 1.3rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-dark);
  transition: color 0.3s var(--ease);
}
.service-link .icon { transition: transform 0.3s var(--ease); }
.service-link:hover { color: var(--gold); }
.service-link:hover .icon { transform: translate(2px, -2px); }

@media (min-width: 640px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .services-grid { grid-template-columns: repeat(4, 1fr); } }

/* ============================================================
   PACKAGES
   ============================================================ */
.packages-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.6rem;
  align-items: stretch;
}

.package-card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  background: var(--ivory);
  border: 1px solid var(--sand);
  border-radius: 1.6rem;
  padding: 2.2rem 2rem;
  box-shadow: var(--shadow-soft);
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.package-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lift); }

.package-card h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.7rem;
}
.package-price {
  margin-top: 0.5rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-dark);
}

.package-card ul { margin-top: 1.7rem; flex: 1; display: grid; gap: 0.85rem; }
.package-card li {
  position: relative;
  padding-left: 1.9rem;
  font-size: 0.9rem;
  color: var(--cocoa);
}
.package-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.22rem;
  width: 1.05rem;
  height: 1.05rem;
  border-radius: 999px;
  background: var(--champagne) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23A88435' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12.5l4.5 4.5L19 7.5'/%3E%3C/svg%3E") center / 0.62rem no-repeat;
}
.package-card .btn { margin-top: 2rem; }

.package-card.featured {
  background: var(--charcoal);
  border-color: rgba(193, 155, 76, 0.6);
  box-shadow: var(--shadow-lift);
}
.package-card.featured h3 { color: var(--ivory); }
.package-card.featured .package-price { color: var(--gold-light); }
.package-card.featured li { color: rgba(253, 251, 247, 0.85); }
.package-card.featured li::before {
  background-color: rgba(193, 155, 76, 0.28);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23D4AF37' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12.5l4.5 4.5L19 7.5'/%3E%3C/svg%3E");
}

.package-flag {
  position: absolute;
  top: -0.85rem;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  white-space: nowrap;
  background: var(--gold);
  color: var(--ivory);
  border-radius: 999px;
  padding: 0.42rem 1rem;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.package-flag .icon { width: 0.75rem; height: 0.75rem; }

.packages-note {
  margin: 2.5rem auto 0;
  max-width: 34rem;
  text-align: center;
  font-size: 0.88rem;
  color: var(--cocoa);
}

@media (min-width: 900px) {
  .packages-grid { grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
  .package-card.featured { transform: translateY(-0.9rem); padding: 2.8rem 2.2rem; }
  .package-card.featured:hover { transform: translateY(-1.3rem); }
}

/* ============================================================
   BRIDAL GALLERY (masonry)
   ============================================================ */
.bridal-gallery { background: rgba(246, 237, 231, 0.5); }

.masonry { columns: 2; column-gap: 1rem; }

.g-item {
  margin-bottom: 1rem;
  break-inside: avoid;
  border-radius: 1.1rem;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  cursor: zoom-in;
  position: relative;
}
.g-item img {
  width: 100%;
  height: auto;
  transition: transform 0.7s var(--ease);
}
.g-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(26, 22, 20, 0);
  transition: background-color 0.5s var(--ease);
}
.g-item:hover img { transform: scale(1.05); }
.g-item:hover::after { background: rgba(26, 22, 20, 0.18); }

@media (min-width: 768px) { .masonry { columns: 3; } }

/* ============================================================
   NAIL GALLERY
   ============================================================ */
.nail-filters {
  display: flex;
  gap: 0.6rem;
  overflow-x: auto;
  padding: 0.25rem 0.25rem 0.75rem;
  margin: 0 -1.25rem 2.25rem;
  padding-inline: 1.25rem;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.nail-filters::-webkit-scrollbar { display: none; }

.filter-btn {
  flex-shrink: 0;
  border: 1px solid var(--sand);
  background: var(--ivory);
  color: var(--cocoa);
  border-radius: 999px;
  padding: 0.7rem 1.35rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: background-color 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease);
}
.filter-btn:hover { border-color: rgba(193, 155, 76, 0.55); color: var(--charcoal); }
.filter-btn.active { background: var(--gold); border-color: var(--gold); color: var(--ivory); }

@media (min-width: 640px) {
  .nail-filters { flex-wrap: wrap; justify-content: center; overflow: visible; margin-inline: 0; padding-inline: 0; }
}

.nail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.n-item {
  position: relative;
  aspect-ratio: 1;
  border-radius: 1.1rem;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  cursor: zoom-in;
}
.n-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.n-item:hover img { transform: scale(1.06); }

.n-tag {
  position: absolute;
  left: 0.7rem;
  bottom: 0.7rem;
  background: rgba(253, 251, 247, 0.92);
  border-radius: 999px;
  padding: 0.3rem 0.75rem;
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-dark);
  opacity: 0;
  transition: opacity 0.4s var(--ease);
  pointer-events: none;
}
.n-item:hover .n-tag, .n-item:focus-visible .n-tag { opacity: 1; }

.n-item.n-hide { display: none; }
.n-item.n-show { animation: nPop 0.45s var(--ease) both; }
@keyframes nPop { from { opacity: 0; transform: scale(0.94); } to { opacity: 1; transform: none; } }

@media (min-width: 640px) { .nail-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .nail-grid { grid-template-columns: repeat(4, 1fr); } }

/* ============================================================
   WHY CHOOSE
   ============================================================ */
.why { background: var(--charcoal); }
.why .section-title { color: var(--ivory); }
.why .section-sub { color: rgba(253, 251, 247, 0.65); }
.why .eyebrow { color: var(--gold-light); }

.why-grid { display: grid; grid-template-columns: 1fr; gap: 1.2rem; }

.why-card {
  height: 100%;
  border: 1px solid rgba(253, 251, 247, 0.1);
  background: rgba(253, 251, 247, 0.04);
  border-radius: 1.25rem;
  padding: 2rem 1.9rem;
  transition: transform 0.5s var(--ease), border-color 0.5s var(--ease), background-color 0.5s var(--ease);
}
.why-card:hover {
  transform: translateY(-5px);
  border-color: rgba(193, 155, 76, 0.45);
  background: rgba(253, 251, 247, 0.07);
}

.why-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  border: 1px solid rgba(193, 155, 76, 0.45);
  color: var(--gold-light);
  transition: background-color 0.5s var(--ease), color 0.5s var(--ease);
}
.why-icon svg { width: 22px; height: 22px; }
.why-card:hover .why-icon { background: var(--gold); color: var(--charcoal); }

.why-card h3 {
  margin-top: 1.25rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.3rem;
  color: var(--ivory);
}
.why-card p { margin-top: 0.55rem; font-size: 0.9rem; color: rgba(253, 251, 247, 0.62); }

@media (min-width: 640px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .why-grid { grid-template-columns: repeat(3, 1fr); } }

/* ============================================================
   PROCESS
   ============================================================ */
.process-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.75rem;
  counter-reset: step;
}

.process-step { text-align: center; }

.step-num {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin-inline: auto;
  border-radius: 999px;
  border: 1px solid rgba(193, 155, 76, 0.5);
  background: var(--ivory);
  box-shadow: var(--shadow-soft);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--gold-dark);
}

.process-step h3 {
  margin-top: 1.4rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.3rem;
}
.process-step p {
  margin: 0.55rem auto 0;
  max-width: 15rem;
  font-size: 0.9rem;
  color: var(--cocoa);
}

@media (min-width: 640px) { .process-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) {
  .process-grid { grid-template-columns: repeat(4, 1fr); gap: 1.5rem; position: relative; }
  .process-grid::before {
    content: "";
    position: absolute;
    top: 28px;
    left: 4%;
    right: 4%;
    border-top: 1px dashed rgba(193, 155, 76, 0.45);
  }
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials { background: rgba(246, 237, 231, 0.5); }

.testimonials-grid { display: grid; grid-template-columns: 1fr; gap: 1.2rem; }

.testimonial-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: var(--ivory);
  border: 1px solid var(--sand);
  border-radius: 1.25rem;
  padding: 2rem 1.9rem;
  box-shadow: var(--shadow-soft);
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); }

.stars { display: flex; gap: 0.25rem; }
.stars svg { width: 15px; height: 15px; fill: var(--gold); }

.testimonial-card > p {
  margin-top: 1.1rem;
  flex: 1;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.2rem;
  line-height: 1.5;
  color: var(--charcoal);
}
.testimonial-card footer { margin-top: 1.3rem; font-size: 0.82rem; font-weight: 600; color: var(--cocoa); }
.testimonial-card footer span { font-weight: 500; color: var(--gold-dark); }

@media (min-width: 900px) { .testimonials-grid { grid-template-columns: repeat(3, 1fr); } }

/* ============================================================
   INSTAGRAM
   ============================================================ */
.insta-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.8rem;
}

.insta-item {
  position: relative;
  aspect-ratio: 1;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.insta-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.insta-item:hover img { transform: scale(1.07); }

.insta-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(26, 22, 20, 0.35);
  color: var(--ivory);
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}
.insta-overlay svg { width: 26px; height: 26px; }
.insta-item:hover .insta-overlay, .insta-item:focus-visible .insta-overlay { opacity: 1; }

.insta-cta { margin-top: 2.5rem; text-align: center; }

@media (min-width: 640px) { .insta-grid { grid-template-columns: repeat(3, 1fr); } }

/* ============================================================
   BOOKING CTA
   ============================================================ */
.booking { background: var(--espresso); text-align: center; }

.booking-title {
  margin-top: 1rem;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2rem, 6vw, 3.4rem);
  line-height: 1.12;
  color: var(--ivory);
}
.booking-text { margin-top: 1.1rem; color: rgba(253, 251, 247, 0.7); font-size: 1.05rem; }

.booking-ctas {
  margin-top: 2.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  align-items: stretch;
  max-width: 420px;
  margin-inline: auto;
}

.booking-location {
  margin-top: 2.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  font-size: 0.85rem;
  color: rgba(253, 251, 247, 0.65);
}
.booking-location .icon { color: var(--gold-light); }

@media (min-width: 640px) {
  .booking-ctas { flex-direction: row; justify-content: center; max-width: none; }
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid { display: grid; gap: 3.5rem; align-items: start; }

.contact-list { margin-top: 2.2rem; display: grid; gap: 1.4rem; }
.contact-list li { display: flex; align-items: flex-start; gap: 1rem; }
.contact-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  border-radius: 999px;
  background: rgba(239, 227, 211, 0.7);
  color: var(--gold-dark);
}
.contact-icon svg { width: 20px; height: 20px; }
.contact-list strong { display: block; font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--cocoa); }
.contact-list a, .contact-list div > span {
  display: inline-block;
  margin-top: 0.2rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--charcoal);
}
.contact-list a:hover { color: var(--gold-dark); }

.contact-form-wrap {
  background: var(--ivory);
  border: 1px solid var(--sand);
  border-radius: 1.6rem;
  padding: 2rem 1.5rem;
  box-shadow: var(--shadow-lift);
}

.form-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.5rem;
  margin-bottom: 1.6rem;
}

.field { margin-bottom: 1.15rem; }
.field-row { display: grid; gap: 0; }
@media (min-width: 560px) { .field-row { grid-template-columns: 1fr 1fr; gap: 1rem; } }

.field label {
  display: block;
  margin-bottom: 0.45rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--charcoal);
}
.req { color: var(--gold-dark); }

.field input, .field select, .field textarea {
  width: 100%;
  border: 1px solid var(--sand);
  border-radius: 0.8rem;
  background: #fff;
  padding: 0.9rem 1rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--charcoal);
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
  -webkit-appearance: none;
  appearance: none;
}
.field textarea { resize: vertical; min-height: 110px; }
.field input::placeholder, .field textarea::placeholder { color: #B9AFA6; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(193, 155, 76, 0.16);
}
.field input[aria-invalid="true"], .field select[aria-invalid="true"] {
  border-color: var(--error);
}

.select-wrap { position: relative; }
.select-wrap::after {
  content: "";
  position: absolute;
  right: 1rem;
  top: 50%;
  width: 0.55rem;
  height: 0.55rem;
  border-right: 1.6px solid var(--cocoa);
  border-bottom: 1.6px solid var(--cocoa);
  transform: translateY(-70%) rotate(45deg);
  pointer-events: none;
}
.field select { padding-right: 2.5rem; color: var(--charcoal); }
.field select:invalid { color: #B9AFA6; }

.field input[type="date"] { min-height: 3.25rem; }

.field-error {
  margin-top: 0.4rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--error);
}

.form-note {
  margin-top: 1rem;
  text-align: center;
  font-size: 0.78rem;
  color: var(--cocoa);
}
.form-note.success { color: #1E7E4C; font-weight: 600; }

@media (min-width: 1024px) {
  .contact-grid { grid-template-columns: 1fr 1.1fr; gap: 5rem; }
  .contact-form-wrap { padding: 2.6rem 2.4rem; }
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--charcoal);
  color: var(--ivory);
  padding: 4.5rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.75rem;
  padding-bottom: 3.5rem;
}

.footer-brand .brand-name { color: var(--ivory); font-size: 1.9rem; }
.footer-brand .brand-sub { color: var(--gold-light); }
.footer-tagline {
  margin-top: 1.2rem;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  color: rgba(253, 251, 247, 0.65);
}
.footer-location {
  margin-top: 1rem;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.82rem;
  color: rgba(253, 251, 247, 0.55);
}
.footer-location .icon { color: var(--gold-light); }

.footer-heading {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.2rem;
}

.footer-links ul { display: grid; gap: 0.7rem; }
.footer-links a {
  font-size: 0.9rem;
  color: rgba(253, 251, 247, 0.7);
  transition: color 0.3s var(--ease), padding-left 0.3s var(--ease);
}
.footer-links a:hover { color: var(--gold-light); padding-left: 0.35rem; }

.social-row { display: flex; gap: 0.8rem; }
.social-row a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 1px solid rgba(253, 251, 247, 0.18);
  color: rgba(253, 251, 247, 0.8);
  transition: background-color 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease), transform 0.3s var(--ease);
}
.social-row a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--charcoal);
  transform: translateY(-3px);
}
.social-row svg { width: 20px; height: 20px; }

.footer-bottom {
  border-top: 1px solid rgba(253, 251, 247, 0.1);
  padding: 1.6rem 1.25rem 6.5rem;
  text-align: center;
  font-size: 0.78rem;
  color: rgba(253, 251, 247, 0.5);
}

@media (min-width: 768px) {
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer-bottom { padding-bottom: 1.6rem; }
}

/* ============================================================
   FLOATING WHATSAPP
   ============================================================ */
.wa-float {
  position: fixed;
  right: 1.15rem;
  bottom: max(1.15rem, env(safe-area-inset-bottom));
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 999px;
  background: var(--wa);
  color: #fff;
  box-shadow: 0 12px 30px -8px rgba(37, 211, 102, 0.55);
  transition: transform 0.3s var(--ease);
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 27px; height: 27px; }
.wa-float::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 2px solid var(--wa);
  animation: waPulse 2.4s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  pointer-events: none;
}
@keyframes waPulse {
  0% { transform: scale(1); opacity: 0.5; }
  80%, 100% { transform: scale(1.7); opacity: 0; }
}

/* ============================================================
   LIGHTBOX
   ============================================================ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 95;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(26, 22, 20, 0.96);
  padding: 3.5rem 1rem;
  opacity: 0;
  transition: opacity 0.3s var(--ease);
}
.lightbox.open { opacity: 1; }
.lightbox[hidden] { display: none; }

.lb-figure {
  max-width: 100%;
  max-height: 100%;
  text-align: center;
}
.lb-figure img {
  max-width: 100%;
  max-height: 76vh;
  width: auto;
  margin-inline: auto;
  border-radius: 0.75rem;
  object-fit: contain;
  animation: lbIn 0.4s var(--ease);
}
@keyframes lbIn { from { opacity: 0; transform: scale(0.96); } to { opacity: 1; transform: none; } }
.lb-figure figcaption {
  margin-top: 1rem;
  font-size: 0.85rem;
  color: rgba(253, 251, 247, 0.7);
}

.lb-btn {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 1px solid rgba(253, 251, 247, 0.28);
  color: var(--ivory);
  transition: background-color 0.3s var(--ease);
}
.lb-btn:hover { background: rgba(253, 251, 247, 0.12); }
.lb-btn svg { width: 20px; height: 20px; }

.lb-close { top: 1rem; right: 1rem; }
.lb-prev { left: 0.6rem; top: 50%; transform: translateY(-50%); }
.lb-next { right: 0.6rem; top: 50%; transform: translateY(-50%); }

@media (min-width: 768px) {
  .lb-prev { left: 1.75rem; }
  .lb-next { right: 1.75rem; }
  .lb-close { top: 1.5rem; right: 1.5rem; }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
  .hero-title .line > span { transform: none; }
  .marquee-track { animation: none; }
}
