/* ============================================================
   LUNE NAIL & BEAUTY BAR — STYLESHEET
   Light blush / rose mauve / gold — Playfair Display + Inter
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Inter', sans-serif; background: var(--bg); color: var(--text); line-height: 1.65; overflow-x: hidden; }
img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* TYPOGRAPHY */
h1,h2,h3 { font-family: 'Playfair Display', serif; line-height: 1.2; }
h1 { font-size: clamp(2.6rem, 6vw, 4.8rem); font-weight: 700; }
h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 600; }
h3 { font-size: clamp(1.15rem, 2vw, 1.4rem); font-weight: 600; }
em { font-style: italic; color: var(--primary); }

.container { max-width: 1240px; margin: 0 auto; padding: 0 24px; }

/* BUTTONS */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--primary); color: #fff;
  padding: 14px 28px; border-radius: 50px;
  font-size: .9rem; font-weight: 600; font-family: 'Inter', sans-serif;
  border: none; cursor: pointer;
  transition: background .25s, transform .2s, box-shadow .25s;
  box-shadow: 0 4px 20px var(--primary-glow);
}
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 8px 30px var(--primary-glow); }
.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--primary);
  padding: 13px 28px; border-radius: 50px;
  border: 1.5px solid var(--primary); font-size: .9rem; font-weight: 600;
  cursor: pointer; transition: all .25s;
}
.btn-outline:hover { background: var(--primary-light); }
.btn-outline-light {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.15); color: #fff;
  padding: 13px 28px; border-radius: 50px;
  border: 1.5px solid rgba(255,255,255,.4); font-size: .9rem; font-weight: 600;
  backdrop-filter: blur(8px); cursor: pointer; transition: all .25s;
}
.btn-outline-light:hover { background: rgba(255,255,255,.25); }
.btn-text { display: inline-flex; align-items: center; gap: 6px; color: var(--primary); font-size: .85rem; font-weight: 600; transition: gap .2s; }
.btn-text:hover { gap: 10px; }
.full-width { width: 100%; justify-content: center; }

/* EYEBROW */
.eyebrow, .eyebrow-tag {
  display: inline-block; font-size: .72rem; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--primary); margin-bottom: 12px;
}
.eyebrow-tag {
  background: var(--primary-light); border: 1px solid var(--border);
  padding: 5px 16px; border-radius: 50px; margin-bottom: 20px;
}

/* SECTION HEADER */
.section { padding: 100px 0; }
.section-tinted { background: var(--surface); }
.section-header { text-align: center; max-width: 680px; margin: 0 auto 56px; }
.section-header h2 { margin-bottom: 14px; }
.section-header p { color: var(--text-muted); font-size: 1.02rem; }

/* SCROLL REVEAL */
[data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity .65s ease, transform .65s ease; }
[data-reveal].visible { opacity: 1; transform: translateY(0); }

/* ALERT BAR */
.alert-bar {
  background: var(--primary); color: #fff;
  text-align: center; padding: 10px 24px;
  font-size: .82rem; font-weight: 500;
  display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap;
}
.alert-cta { background: rgba(255,255,255,.2); padding: 4px 14px; border-radius: 50px; font-weight: 700; transition: background .2s; }
.alert-cta:hover { background: rgba(255,255,255,.35); }

/* NAVBAR */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  transition: background .3s, backdrop-filter .3s, box-shadow .3s;
  padding: 20px 0;
}
.navbar.scrolled {
  background: rgba(253,248,246,.92); backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--border); padding: 14px 0;
}
.nav-inner { display: flex; align-items: center; gap: 32px; }
.logo { display: flex; flex-direction: column; line-height: 1; text-decoration: none; }
.logo-main { font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 700; color: var(--primary); letter-spacing: 2px; }
.logo-sub { font-size: .58rem; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; color: var(--text-muted); margin-top: 1px; }
.navbar.scrolled .logo-main { color: var(--primary-dark); }
.nav-links { display: flex; align-items: center; gap: 28px; margin-left: auto; }
.nav-links a { font-size: .85rem; font-weight: 500; color: rgba(255,255,255,.85); transition: color .2s; }
.navbar.scrolled .nav-links a { color: var(--text-muted); }
.nav-links a:hover, .navbar.scrolled .nav-links a:hover { color: var(--primary); }
.nav-cta { margin-left: 8px; padding: 10px 22px; font-size: .85rem; }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; margin-left: auto; }
.hamburger span { display: block; width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: all .3s; }
.navbar.scrolled .hamburger span { background: var(--text); }
@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .nav-links.open { display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: var(--bg-card); padding: 20px 24px; gap: 16px; box-shadow: 0 8px 30px rgba(0,0,0,.08); }
  .nav-links.open a { color: var(--text); font-size: .95rem; }
  .nav-links.open .nav-cta { display: inline-flex; width: 100%; justify-content: center; margin-left: 0; }
}

/* HERO */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; overflow: hidden; }
.hero-image-wrap { position: absolute; inset: 0; }
.hero-img { height: 100%; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(26,13,18,.72) 0%, rgba(26,13,18,.35) 60%, rgba(26,13,18,.1) 100%); }
.hero-content { position: relative; z-index: 2; display: flex; align-items: center; min-height: 100vh; padding-top: 100px; }
.hero-text { max-width: 640px; }
.hero-headline { color: #fff; margin-bottom: 20px; }
.hero-sub { color: rgba(255,255,255,.82); font-size: 1.08rem; line-height: 1.7; max-width: 520px; margin-bottom: 32px; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 32px; }
.hero-trust { display: flex; flex-direction: column; gap: 8px; }
.hero-trust li { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,.8); font-size: .84rem; }
.hero-trust i { color: var(--primary); width: 16px; height: 16px; flex-shrink: 0; }

/* TRUST BAR */
.trust-bar { background: var(--bg-card); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 20px 0; }
.trust-bar-inner { display: flex; justify-content: center; align-items: center; gap: 32px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 8px; font-size: .82rem; color: var(--text-muted); white-space: nowrap; }
.trust-item i { color: var(--primary); width: 16px; height: 16px; }

/* FILTER ROW */
.filter-row { display: flex; justify-content: center; gap: 8px; flex-wrap: wrap; margin-bottom: 40px; }
.filter-btn {
  background: transparent; border: 1.5px solid var(--border);
  color: var(--text-muted); padding: 8px 20px; border-radius: 50px;
  font-size: .8rem; font-weight: 600; font-family: 'Inter', sans-serif;
  cursor: pointer; transition: all .2s;
}
.filter-btn.active, .filter-btn:hover { background: var(--primary); border-color: var(--primary); color: #fff; }

/* SERVICES GRID */
.services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(310px, 1fr)); gap: 24px; }
.service-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: 16px; overflow: hidden; transition: transform .3s, box-shadow .3s; }
.service-card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(181,115,138,.12); }
.service-card.hidden { display: none; }
.service-img-wrap { height: 200px; position: relative; overflow: hidden; }
.service-img-wrap img { transition: transform .4s ease; }
.service-card:hover .service-img-wrap img { transform: scale(1.05); }
.service-badge { position: absolute; top: 12px; right: 12px; background: var(--primary); color: #fff; font-size: .67rem; font-weight: 700; padding: 4px 10px; border-radius: 50px; letter-spacing: .5px; }
.service-cat-tag { position: absolute; top: 12px; left: 12px; background: rgba(253,248,246,.9); color: var(--primary); font-size: .67rem; font-weight: 700; padding: 4px 10px; border-radius: 50px; letter-spacing: .5px; }
.service-body { padding: 20px; }
.service-body h3 { margin-bottom: 8px; font-size: 1.08rem; }
.service-body > p { color: var(--text-muted); font-size: .84rem; line-height: 1.6; margin-bottom: 14px; }
.service-meta { display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px; }
.meta-item { display: flex; align-items: center; gap: 5px; font-size: .8rem; color: var(--text-muted); }
.meta-item i { width: 13px; height: 13px; }
.meta-price { font-weight: 700; color: var(--primary); font-size: .95rem; }

/* GALLERY */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); grid-template-rows: auto; gap: 12px; }
.gallery-wide { grid-column: span 2; }
.gallery-item { border-radius: 12px; overflow: hidden; position: relative; aspect-ratio: 4/3; cursor: pointer; }
.gallery-wide { aspect-ratio: 16/9; }
.gallery-item img { transition: transform .4s ease; }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(26,13,18,.7) 0%, transparent 50%); opacity: 0; transition: opacity .3s; display: flex; align-items: flex-end; padding: 16px; }
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span { color: #fff; font-size: .82rem; font-weight: 600; letter-spacing: .5px; }
@media (max-width: 700px) { .gallery-grid { grid-template-columns: repeat(2,1fr); } .gallery-wide { grid-column: span 2; } }

/* ARTISTS */
.artists-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 28px; }
.artist-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: 16px; overflow: hidden; transition: box-shadow .3s; }
.artist-card:hover { box-shadow: 0 12px 40px rgba(181,115,138,.1); }
.artist-img-wrap { height: 280px; overflow: hidden; }
.artist-img-wrap img { transition: transform .4s; }
.artist-card:hover .artist-img-wrap img { transform: scale(1.04); }
.artist-body { padding: 22px; }
.artist-body h3 { margin-bottom: 4px; font-size: 1.15rem; }
.artist-title { color: var(--primary); font-size: .8rem; font-weight: 600; letter-spacing: .5px; text-transform: uppercase; margin-bottom: 10px; }
.artist-bio { color: var(--text-muted); font-size: .84rem; line-height: 1.6; margin-bottom: 14px; }
.artist-skills { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 14px; }
.skill-tag { background: var(--primary-light); color: var(--primary); font-size: .72rem; font-weight: 600; padding: 4px 10px; border-radius: 50px; border: 1px solid var(--border); }
.artist-ig { display: inline-flex; align-items: center; gap: 6px; color: var(--primary); font-size: .82rem; font-weight: 600; transition: gap .2s; }
.artist-ig:hover { gap: 10px; }
.artist-ig i { width: 14px; height: 14px; }

/* PRICING */
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; margin-bottom: 60px; }
.pricing-card { background: var(--bg-card); border: 1.5px solid var(--border); border-radius: 20px; padding: 32px; position: relative; transition: box-shadow .3s; }
.pricing-card:hover { box-shadow: 0 12px 40px rgba(181,115,138,.1); }
.pricing-featured { border-color: var(--primary); box-shadow: 0 8px 40px var(--primary-glow); }
.pricing-crown { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--primary); color: #fff; font-size: .7rem; font-weight: 700; padding: 5px 16px; border-radius: 50px; letter-spacing: 1px; text-transform: uppercase; white-space: nowrap; }
.pricing-top { margin-bottom: 24px; }
.pricing-top h3 { font-size: 1.25rem; margin-bottom: 8px; }
.pricing-price { font-size: 2rem; font-weight: 800; color: var(--primary); font-family: 'Playfair Display', serif; margin-bottom: 8px; }
.pricing-top p { color: var(--text-muted); font-size: .84rem; line-height: 1.5; }
.pricing-perks { margin-bottom: 24px; display: flex; flex-direction: column; gap: 10px; }
.pricing-perks li { display: flex; align-items: center; gap: 10px; font-size: .85rem; color: var(--text-muted); }
.pricing-perks i { color: var(--primary); width: 16px; height: 16px; flex-shrink: 0; }
.addons-section { background: var(--bg-card); border: 1px solid var(--border); border-radius: 16px; padding: 32px; }
.addons-section h3 { font-size: 1.2rem; margin-bottom: 20px; }
.addons-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 0; }
.addon-row { display: flex; justify-content: space-between; align-items: center; padding: 12px 0; border-bottom: 1px solid var(--border-subtle); font-size: .86rem; }
.addon-row:last-child { border-bottom: none; }
.addon-price { font-weight: 700; color: var(--primary); }

/* ABOUT */
.about-section { background: var(--bg); }
.about-split { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-image { border-radius: 20px; overflow: hidden; aspect-ratio: 4/5; }
.about-text .eyebrow { display: block; }
.about-text h2 { margin-bottom: 20px; }
.about-text p { color: var(--text-muted); font-size: .95rem; line-height: 1.75; margin-bottom: 16px; }
.about-stats { display: grid; grid-template-columns: repeat(2,1fr); gap: 20px; margin-top: 32px; }
.about-stat { background: var(--surface); border: 1px solid var(--border); border-radius: 12px; padding: 20px; text-align: center; }
.stat-val { display: block; font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 700; color: var(--primary); }
.stat-lbl { font-size: .75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; color: var(--text-muted); }
@media (max-width: 860px) { .about-split { grid-template-columns: 1fr; gap: 40px; } .about-image { aspect-ratio: 16/9; } }

/* FAQ */
.faq-container { max-width: 760px; }
.faq-list { display: flex; flex-direction: column; gap: 2px; }
.faq-item { background: var(--bg-card); border: 1px solid var(--border); border-radius: 12px; overflow: hidden; }
.faq-q { width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 20px 24px; font-size: .95rem; font-weight: 600; font-family: 'Inter', sans-serif; color: var(--text); background: none; border: none; cursor: pointer; text-align: left; }
.faq-icon { transition: transform .3s; flex-shrink: 0; width: 18px; height: 18px; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s ease; }
.faq-item.open .faq-a { max-height: 400px; }
.faq-a p { padding: 0 24px 20px; color: var(--text-muted); font-size: .9rem; line-height: 1.7; }

/* BOOKING */
.booking-section { background: var(--primary-light); }
.booking-split { display: grid; grid-template-columns: 1fr 1.1fr; gap: 80px; align-items: start; }
.booking-info .eyebrow { display: block; }
.booking-info h2 { margin-bottom: 12px; }
.booking-info > p { color: var(--text-muted); margin-bottom: 32px; font-size: .95rem; }
.contact-items { display: flex; flex-direction: column; gap: 16px; margin-bottom: 28px; }
.contact-item { display: flex; align-items: flex-start; gap: 14px; }
.contact-item i { color: var(--primary); margin-top: 2px; flex-shrink: 0; }
.contact-label { display: block; font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--text-dim); margin-bottom: 2px; }
.contact-item a, .contact-item span { font-size: .9rem; color: var(--text-muted); }
.hours-list { border-top: 1px solid var(--border); padding-top: 20px; }
.hours-row { display: flex; justify-content: space-between; padding: 8px 0; font-size: .84rem; border-bottom: 1px solid var(--border-subtle); }
.hours-row:last-child { border-bottom: none; }
.booking-form { background: var(--bg-card); border: 1px solid var(--border); border-radius: 20px; padding: 36px; }
.form-row { display: flex; flex-direction: column; gap: 16px; margin-bottom: 16px; }
.form-row.two-col { flex-direction: row; }
.form-group { display: flex; flex-direction: column; gap: 6px; flex: 1; }
.form-group label { font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--text-muted); }
.form-group input, .form-group select, .form-group textarea {
  background: var(--bg); border: 1.5px solid var(--border); border-radius: 10px;
  padding: 12px 16px; font-size: .9rem; font-family: 'Inter', sans-serif;
  color: var(--text); transition: border-color .2s; width: 100%;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--primary); }
.form-group textarea { resize: vertical; min-height: 80px; }
.submit-btn { margin-top: 8px; font-size: .95rem; padding: 16px 28px; }
.form-note { text-align: center; font-size: .78rem; color: var(--text-dim); margin-top: 12px; }
@media (max-width: 780px) { .booking-split { grid-template-columns: 1fr; gap: 40px; } .form-row.two-col { flex-direction: column; } }

/* FOOTER */
.footer { background: #1a0d12; color: rgba(255,255,255,.6); padding-top: 64px; }
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; padding-bottom: 48px; }
.footer-brand .logo-main { color: #fff; }
.footer-brand .logo-sub { color: rgba(255,255,255,.4); }
.footer-brand > p { font-size: .85rem; line-height: 1.6; margin-top: 12px; max-width: 260px; }
.social-links { display: flex; gap: 12px; margin-top: 16px; }
.social-links a { width: 36px; height: 36px; border-radius: 50%; border: 1px solid rgba(255,255,255,.15); display: flex; align-items: center; justify-content: center; transition: border-color .2s, color .2s; }
.social-links a:hover { border-color: var(--primary); color: var(--primary); }
.social-links i { width: 15px; height: 15px; }
.footer-col h4 { color: #fff; font-size: .8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 16px; font-family: 'Inter', sans-serif; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: .84rem; transition: color .2s; }
.footer-col a:hover { color: var(--primary); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.06); padding: 20px 24px; text-align: center; font-size: .78rem; }
@media (max-width: 700px) { .footer-inner { grid-template-columns: 1fr; gap: 32px; } }

/* BACK TO TOP & FLOATING CTA */
.back-to-top { position: fixed; bottom: 90px; right: 24px; width: 42px; height: 42px; border-radius: 50%; background: var(--primary); color: #fff; border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; opacity: 0; visibility: hidden; transition: all .3s; z-index: 800; }
.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top i { width: 18px; height: 18px; }
.floating-cta { position: fixed; bottom: 24px; right: 24px; display: flex; align-items: center; gap: 8px; background: var(--primary); color: #fff; padding: 12px 20px; border-radius: 50px; font-size: .84rem; font-weight: 700; box-shadow: 0 8px 30px var(--primary-glow); transition: transform .2s, box-shadow .2s; z-index: 800; }
.floating-cta:hover { transform: translateY(-3px); box-shadow: 0 12px 40px var(--primary-glow); }
.floating-cta i { width: 16px; height: 16px; }
