/* ============================================================
   Claw & Glam — Luxury Nail Studio
   ============================================================ */

:root {
  --bg: #fdf8f5;
  --bg-alt: #f7ece7;
  --dark: #2a171b;
  --ink: #2c1d21;
  --muted: #8a7276;
  --rose: #c06b7e;
  --rose-deep: #a9576a;
  --gold: #bf9a5e;
  --line: #ecdbd4;
  --white: #ffffff;
  --shadow: 0 18px 50px -24px rgba(80, 30, 40, 0.35);
  --shadow-sm: 0 10px 30px -18px rgba(80, 30, 40, 0.35);

  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 { font-family: var(--serif); font-weight: 500; line-height: 1.05; margin: 0; letter-spacing: -0.01em; }
.accent { color: var(--rose); font-style: italic; }

.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 32px; }
.section { padding: 110px 0; }
.section--alt { background: var(--bg-alt); }

/* -------- shared heads -------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rose-deep);
  margin: 0 0 20px;
}
.eyebrow--light { color: var(--rose-soft, #e9c3cc); }
.eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--rose); }

.section-title { font-size: clamp(2.3rem, 5vw, 3.6rem); }
.section-head { max-width: 640px; margin: 0 auto 60px; text-align: center; }
.section-head .eyebrow { display: inline-flex; }
.section-sub { color: var(--muted); margin: 18px 0 0; }

/* -------- buttons -------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 52px;
  padding: 0 30px;
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 250ms ease, background 250ms ease, color 250ms ease, box-shadow 250ms ease;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary { background: var(--rose); color: #fff; box-shadow: 0 12px 26px -12px rgba(192, 107, 126, 0.8); }
.btn--primary:hover { background: var(--rose-deep); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: #fff; }
.btn--light { background: #fff; color: var(--dark); }
.btn--light:hover { background: #f3e7e2; }
.btn--block { width: 100%; }

/* ============================================================
   NAV
   ============================================================ */
.nav { position: fixed; inset: 0 0 auto 0; height: 78px; z-index: 100; transition: background 250ms ease, box-shadow 250ms ease; }
.nav--scrolled { background: rgba(253, 248, 245, 0.92); backdrop-filter: blur(10px); box-shadow: 0 1px 0 var(--line); }
.nav__inner { height: 100%; display: flex; align-items: center; justify-content: space-between; }
.nav__logo { display: inline-flex; align-items: center; gap: 12px; }
.nav__logo img { height: 50px; width: 50px; object-fit: cover; border-radius: 50%; box-shadow: var(--shadow-sm); }
.nav__logo-word { font-family: var(--serif); font-size: 22px; font-weight: 500; letter-spacing: 0.02em; color: var(--ink); }
.nav__logo-word i { color: var(--rose); font-style: italic; }
@media (max-width: 420px) { .nav__logo-word { display: none; } }
.nav__menu { display: flex; gap: 34px; }
.nav__menu a { font-size: 14px; font-weight: 500; color: var(--ink); transition: color 250ms ease; }
.nav__menu a:hover { color: var(--rose); }
.nav__cta { height: 44px; padding: 0 22px; }
.nav__toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
.nav__toggle span { width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform 250ms ease, opacity 250ms ease; }
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu { position: fixed; inset: 78px 0 auto 0; background: var(--bg); border-bottom: 1px solid var(--line); display: flex; flex-direction: column; gap: 6px; padding: 20px 32px 30px; transform: translateY(-130%); transition: transform 300ms ease; z-index: 99; }
.mobile-menu.open { transform: translateY(0); }
.mobile-menu a { padding: 12px 0; font-size: 17px; border-bottom: 1px solid var(--line); }
.mobile-menu a.btn { border: none; margin-top: 12px; color: #fff; }

/* ============================================================
   HERO
   ============================================================ */
.hero { padding: 140px 0 90px; }
.hero__grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 64px; align-items: center; }
.hero__title { font-size: clamp(3rem, 6.5vw, 5.2rem); margin-bottom: 26px; }
.hero__lede { color: var(--muted); font-size: 19px; max-width: 46ch; margin: 0 0 34px; }
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 30px; }
.hero__quick { display: flex; gap: 26px; flex-wrap: wrap; }
.hero__quick a { font-size: 13px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink); position: relative; }
.hero__quick a::after { content: ""; position: absolute; left: 0; bottom: -4px; width: 0; height: 1.5px; background: var(--rose); transition: width 250ms ease; }
.hero__quick a:hover::after { width: 100%; }

.hero__media { position: relative; }
.hero__media img { width: 100%; height: 560px; object-fit: cover; border-radius: 26px; box-shadow: var(--shadow); }
.hero__badge { position: absolute; left: -22px; top: 40px; background: #fff; border-radius: 18px; padding: 16px 22px; box-shadow: var(--shadow-sm); text-align: center; }
.hero__badge strong { display: block; font-family: var(--serif); font-size: 30px; color: var(--rose); line-height: 1; }
.hero__badge span { font-size: 12px; letter-spacing: 0.06em; color: var(--muted); }
.hero__clients { position: absolute; right: -14px; bottom: 30px; background: var(--dark); color: #fff; font-size: 13px; padding: 12px 20px; border-radius: 999px; box-shadow: var(--shadow-sm); }

/* ============================================================
   ABOUT
   ============================================================ */
.about__grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 70px; align-items: center; }
.about__media { position: relative; }
.about__media img { width: 100%; height: 520px; object-fit: cover; border-radius: 26px; box-shadow: var(--shadow); }
.about__media-tag { position: absolute; left: 24px; bottom: 24px; background: #fff; padding: 10px 18px; border-radius: 999px; font-family: var(--serif); font-size: 18px; box-shadow: var(--shadow-sm); }
.about__content p { color: var(--muted); margin: 0 0 18px; }
.stats { display: flex; gap: 40px; margin-top: 34px; flex-wrap: wrap; }
.stat strong { display: block; font-family: var(--serif); font-size: 32px; color: var(--rose); line-height: 1; }
.stat span { font-size: 13px; color: var(--muted); letter-spacing: 0.04em; }

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.feature { background: #fff; border: 1px solid var(--line); border-radius: 20px; padding: 30px 26px; box-shadow: var(--shadow-sm); transition: transform 300ms ease; }
.feature:hover { transform: translateY(-6px); }
.feature__icon { display: inline-flex; align-items: center; justify-content: center; width: 48px; height: 48px; border-radius: 14px; background: var(--bg-alt); color: var(--rose); font-size: 22px; margin-bottom: 18px; }
.feature h3 { font-size: 22px; margin-bottom: 8px; }
.feature p { color: var(--muted); font-size: 15px; margin: 0; }

/* ============================================================
   SERVICES
   ============================================================ */
.svc__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.svc-card { background: #fff; border: 1px solid var(--line); border-radius: 22px; overflow: hidden; box-shadow: var(--shadow-sm); transition: transform 300ms ease; }
.svc-card:hover { transform: translateY(-6px); }
.svc-card__img { height: 240px; overflow: hidden; }
.svc-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 500ms ease; }
.svc-card:hover .svc-card__img img { transform: scale(1.06); }
.svc-card__body { padding: 26px; }
.svc-card__tag { font-size: 12px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--rose-deep); }
.svc-card__body h3 { font-size: 26px; margin: 10px 0; }
.svc-card__body p { color: var(--muted); font-size: 15px; margin: 0 0 14px; }
.svc-card__price { font-family: var(--serif); font-size: 22px; color: var(--ink); }

.art { display: grid; grid-template-columns: 1fr 1.1fr; gap: 56px; align-items: center; margin-top: 70px; background: #fff; border: 1px solid var(--line); border-radius: 26px; padding: 44px; box-shadow: var(--shadow-sm); }
.art__title { font-size: clamp(2rem, 4vw, 2.8rem); margin: 10px 0 14px; }
.art__text p { color: var(--muted); margin: 0 0 22px; }
.chips { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 26px; }
.chips span { font-size: 13px; padding: 8px 16px; border-radius: 999px; background: var(--bg-alt); color: var(--ink); }
.art__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.art__grid img { width: 100%; height: 180px; object-fit: cover; border-radius: 16px; }

/* ============================================================
   COMBO OFFER
   ============================================================ */
.combo { background: var(--dark); color: #fff; padding: 100px 0; text-align: center; }
.combo__inner { max-width: 720px; margin: 0 auto; }
.combo__title { font-size: clamp(2.2rem, 5vw, 3.4rem); margin-bottom: 26px; }
.combo__title .accent { color: var(--gold); }
.combo__items { display: inline-flex; align-items: center; gap: 18px; margin-bottom: 30px; font-family: var(--serif); font-size: 22px; }
.combo__items span { background: rgba(255,255,255,0.08); padding: 10px 22px; border-radius: 999px; }
.combo__items i { color: var(--gold); font-style: normal; font-size: 26px; }
.combo__price { margin-bottom: 30px; }
.combo__price small { display: block; font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.6); margin-bottom: 8px; }
.combo__price strong { font-family: var(--serif); font-size: 64px; color: var(--gold); line-height: 1; }
.combo__price em { display: block; margin-top: 8px; font-style: normal; font-size: 14px; color: rgba(255,255,255,0.6); text-decoration: line-through; }

/* ============================================================
   PRICING
   ============================================================ */
.price__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; align-items: start; }
.price-card { position: relative; background: #fff; border: 1px solid var(--line); border-radius: 22px; padding: 30px 26px; box-shadow: var(--shadow-sm); }
.price-card--featured { border-color: var(--rose); box-shadow: 0 24px 50px -26px rgba(192,107,126,0.6); }
.price-card__badge { position: absolute; top: -12px; left: 26px; background: var(--rose); color: #fff; font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; padding: 6px 14px; border-radius: 999px; }
.price-card h3 { font-size: 24px; margin-bottom: 20px; padding-bottom: 16px; border-bottom: 1px solid var(--line); }
.price-card ul { list-style: none; margin: 0; padding: 0; }
.price-card li { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; padding: 11px 0; font-size: 15px; }
.price-card li span { color: var(--muted); }
.price-card li b { font-family: var(--serif); font-size: 20px; font-weight: 500; white-space: nowrap; }
.price-card li b small { font-family: var(--sans); font-size: 11px; color: var(--muted); }
.price__note { text-align: center; color: var(--muted); font-size: 14px; margin-top: 30px; }

/* ============================================================
   GALLERY
   ============================================================ */
.gallery__filters { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-bottom: 40px; }
.chip-btn { font-family: var(--sans); font-size: 13px; font-weight: 500; padding: 9px 18px; border-radius: 999px; border: 1px solid var(--line); background: #fff; color: var(--ink); cursor: pointer; transition: all 200ms ease; }
.chip-btn:hover { border-color: var(--rose); color: var(--rose); }
.chip-btn.is-active { background: var(--rose); border-color: var(--rose); color: #fff; }
.gallery__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.gcard { position: relative; margin: 0; border-radius: 20px; overflow: hidden; box-shadow: var(--shadow-sm); }
.gcard img { width: 100%; height: 300px; object-fit: cover; transition: transform 500ms ease; }
.gcard:hover img { transform: scale(1.06); }
.gcard figcaption { position: absolute; left: 16px; bottom: 16px; background: rgba(42,23,27,0.72); color: #fff; font-size: 12px; letter-spacing: 0.08em; padding: 6px 14px; border-radius: 999px; backdrop-filter: blur(4px); }
.gcard.is-hidden { display: none; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testi__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testi-card { margin: 0; background: #fff; border: 1px solid var(--line); border-radius: 22px; padding: 32px; box-shadow: var(--shadow-sm); }
.stars { color: var(--gold); letter-spacing: 2px; margin-bottom: 16px; }
.testi-card p { font-family: var(--serif); font-size: 21px; line-height: 1.4; margin: 0 0 22px; }
.testi-card footer { display: flex; align-items: center; gap: 12px; font-weight: 600; font-size: 15px; }
.avatar { display: inline-flex; align-items: center; justify-content: center; width: 38px; height: 38px; border-radius: 50%; background: var(--rose); color: #fff; font-family: var(--serif); font-size: 18px; }

/* ============================================================
   STEPS
   ============================================================ */
.steps__grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; }
.step { text-align: center; }
.step__no { display: inline-flex; align-items: center; justify-content: center; width: 56px; height: 56px; border-radius: 50%; background: #fff; border: 1px solid var(--line); color: var(--rose); font-family: var(--serif); font-size: 24px; margin-bottom: 18px; box-shadow: var(--shadow-sm); }
.step h3 { font-size: 20px; margin-bottom: 8px; }
.step p { color: var(--muted); font-size: 14px; margin: 0; }

/* ============================================================
   FAQ
   ============================================================ */
.faq__wrap { max-width: 780px; }
.faq__list { display: flex; flex-direction: column; gap: 14px; }
.faq__item { background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 4px 24px; box-shadow: var(--shadow-sm); }
.faq__item summary { list-style: none; cursor: pointer; padding: 20px 0; font-family: var(--serif); font-size: 20px; display: flex; justify-content: space-between; align-items: center; }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after { content: "+"; color: var(--rose); font-size: 26px; font-family: var(--sans); transition: transform 250ms ease; }
.faq__item[open] summary::after { transform: rotate(45deg); }
.faq__item p { color: var(--muted); margin: 0 0 20px; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.contact__info p { color: var(--muted); }
.contact__list { list-style: none; margin: 28px 0; padding: 0; display: flex; flex-direction: column; gap: 20px; }
.contact__list li { display: flex; flex-direction: column; gap: 4px; }
.contact__list span { font-size: 12px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--rose-deep); }
.contact__list a { font-size: 16px; }
.contact__list a:hover { color: var(--rose); }
.contact__actions { display: flex; gap: 14px; }

.contact__form { background: #fff; border: 1px solid var(--line); border-radius: 24px; padding: 36px; box-shadow: var(--shadow); }
.contact__form h3 { font-size: 26px; }
.contact__form-sub { color: var(--muted); font-size: 14px; margin: 6px 0 24px; }
.contact__form label { display: block; font-size: 13px; font-weight: 600; color: var(--ink); margin-bottom: 16px; }
.contact__form input, .contact__form select, .contact__form textarea { width: 100%; margin-top: 8px; padding: 13px 16px; border: 1px solid var(--line); border-radius: 12px; font-family: var(--sans); font-size: 15px; font-weight: 400; background: var(--bg); color: var(--ink); }
.contact__form input:focus, .contact__form select:focus, .contact__form textarea:focus { outline: none; border-color: var(--rose); }
.contact__form textarea { resize: vertical; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--dark); color: rgba(255,255,255,0.75); padding: 70px 0 30px; }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 44px; border-bottom: 1px solid rgba(255,255,255,0.12); }
.footer__logo { height: 72px; width: 72px; object-fit: cover; border-radius: 50%; margin-bottom: 18px; }
.footer__brand p { font-size: 15px; max-width: 34ch; margin: 0; }
.footer__col h4 { font-family: var(--sans); font-size: 13px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: #fff; margin-bottom: 18px; }
.footer__col a { display: block; font-size: 15px; padding: 5px 0; transition: color 200ms ease; }
.footer__col a:hover { color: var(--rose-soft, #e9c3cc); color: #eabfc8; }
.footer__base { display: flex; justify-content: space-between; padding-top: 26px; font-size: 13px; color: rgba(255,255,255,0.5); }

/* social icons */
.socials { display: flex; gap: 12px; margin-top: 20px; }
.socials a { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,0.1); color: #fff; transition: background 250ms ease, color 250ms ease, transform 250ms ease; }
.socials a:hover { background: var(--rose); color: #fff; transform: translateY(-3px); }
.socials--light a { background: #fff; color: var(--rose); border: 1px solid var(--line); }
.socials--light a:hover { background: var(--rose); color: #fff; }

/* ============================================================
   FLOATING WHATSAPP
   ============================================================ */
.wa-float { position: fixed; right: 22px; bottom: 22px; width: 58px; height: 58px; border-radius: 50%; background: #25d366; color: #fff; display: flex; align-items: center; justify-content: center; box-shadow: 0 12px 30px -8px rgba(37,211,102,0.7); z-index: 90; transition: transform 250ms ease; }
.wa-float:hover { transform: scale(1.08); }

/* ============================================================
   REVEAL
   ============================================================ */
.js .reveal { opacity: 0; transform: translateY(20px); transition: opacity 600ms ease, transform 600ms ease; }
.js .reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .js .reveal { opacity: 1; transform: none; } html { scroll-behavior: auto; } }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .nav__menu, .nav__cta { display: none; }
  .nav__toggle { display: flex; }
  .hero__grid, .about__grid, .art, .contact__grid { grid-template-columns: 1fr; }
  .why__grid { grid-template-columns: repeat(2, 1fr); }
  .svc__grid { grid-template-columns: 1fr 1fr; }
  .price__grid { grid-template-columns: 1fr 1fr; }
  .steps__grid { grid-template-columns: repeat(2, 1fr); }
  .testi__grid { grid-template-columns: 1fr; }
  .hero__media { order: -1; }
  .about__media { order: -1; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  body { font-size: 16px; }
  .container { padding: 0 20px; }
  .section { padding: 72px 0; }
  .hero { padding: 116px 0 60px; }
  .hero__media img { height: 420px; }
  .about__media img { height: 400px; }
  .why__grid, .svc__grid, .price__grid, .steps__grid, .gallery__grid { grid-template-columns: 1fr; }
  .art { padding: 26px; }
  .art__grid { grid-template-columns: 1fr 1fr; }
  .stats { gap: 26px; }
  .combo__price strong { font-size: 48px; }
  .contact__form { padding: 26px; }
  .footer__grid { grid-template-columns: 1fr; gap: 30px; }
  .footer__base { flex-direction: column; gap: 10px; }
  .hero__badge { left: 0; }
  .hero__clients { right: 0; }
}
