/* ============ Luxury Nail Lounge — PINK LUXE design system ============ */
:root {
  --bg: #fdf7f6;
  --bg-2: #faf0f1;
  --bg-3: #f5e7ea;
  --ink: #4a2c3d;
  --muted: #8d7385;
  --rose: #e8a3b8;
  --rose-deep: #d17992;
  --rose-soft: #f7dfe6;
  --gold: #d4a86a;
  --line: rgba(209, 121, 146, 0.2);
  --card: rgba(255, 255, 255, 0.75);
  --font-display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-body: "Karla", "Segoe UI", system-ui, sans-serif;
  --radius: 16px;
  --shadow: 0 20px 50px -24px rgba(209, 121, 146, 0.35);
  --maxw: 1140px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  font-size: 1.02rem;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
h1, h2, h3, .display { font-family: var(--font-display); font-weight: 600; line-height: 1.06; }
.serif-i { font-family: var(--font-display); font-style: italic; }

::selection { background: var(--rose); color: #fff; }

/* Rose-gold foil text */
.foil {
  background: linear-gradient(100deg, #f0b8c9 0%, #d17992 35%, #c98a5e 60%, #e8a3b8 85%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 16px 32px; border-radius: 999px;
  font-family: var(--font-body); font-weight: 700; font-size: 0.95rem;
  letter-spacing: 1.2px; text-transform: uppercase; text-decoration: none; cursor: pointer;
  border: 1px solid transparent; transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
  min-height: 50px; position: relative; overflow: hidden;
}
.btn:hover { transform: translateY(-2px); }
.btn-gold {
  background: linear-gradient(100deg, #f0b8c9, #d17992);
  color: #fff;
  box-shadow: 0 8px 30px -8px rgba(209, 121, 146, 0.55);
}
.btn-gold:hover { box-shadow: 0 12px 40px -8px rgba(209, 121, 146, 0.8); }
.btn-gold::after {
  content: ""; position: absolute; top: 0; left: -80%; width: 50%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,.5), transparent);
  transform: skewX(-20deg); transition: left .5s ease;
}
.btn-gold:hover::after { left: 120%; }
.btn-ghost { border-color: rgba(209, 121, 146, 0.55); color: var(--rose-deep); background: transparent; }
.btn-ghost:hover { background: rgba(232, 163, 184, 0.12); border-color: var(--rose-deep); }
.btn-plum {
  background: linear-gradient(100deg, #c96f8b, #b85a77);
  color: #fff;
}
.btn-plum:hover { box-shadow: 0 10px 34px -10px rgba(184, 90, 119, 0.7); }

/* ============ Nav ============ */
.site-nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(253, 247, 246, 0.88); backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 74px; }
.logo { font-family: var(--font-display); font-size: 1.6rem; font-weight: 700; text-decoration: none; letter-spacing: .3px; line-height: 1; }
.logo small { display: block; font-family: var(--font-body); font-size: .58rem; letter-spacing: 4px; text-transform: uppercase; color: var(--muted); font-weight: 700; margin-top: 3px; }
.nav-links { display: flex; align-items: center; gap: 26px; list-style: none; }
.nav-links a { text-decoration: none; font-weight: 700; font-size: .88rem; color: var(--ink); letter-spacing: 1.5px; text-transform: uppercase; position: relative; padding: 6px 0; }
.nav-links a:not(.btn)::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 1px; width: 0;
  background: linear-gradient(90deg, var(--rose-deep), var(--gold)); transition: width .25s ease;
}
.nav-links a:not(.btn):hover::after { width: 100%; }
.nav-links a:not(.btn):hover { color: var(--rose-deep); }
.nav-links .btn { padding: 11px 24px; font-size: .8rem; }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 10px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--rose-deep); margin: 5px 0; border-radius: 2px; }

/* ============ Hero ============ */
.hero {
  position: relative; min-height: 86vh; display: flex; align-items: center;
  overflow: hidden; background: var(--bg-2);
}
.hero-bg {
  position: absolute; inset: -4%; width: 108%; height: 108%;
  max-width: none;
  object-fit: cover; opacity: .85;
  animation: kenburns 18s ease-in-out infinite alternate;
}
@keyframes kenburns {
  from { transform: scale(1); }
  to { transform: scale(1.08); }
}
.hero::after {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 75% 25%, rgba(232, 163, 184, 0.25), transparent 55%),
    linear-gradient(100deg, rgba(253, 247, 246, 0.92) 0%, rgba(253, 247, 246, 0.55) 45%, rgba(250, 240, 241, 0.2) 75%);
}
.hero-inner { position: relative; z-index: 2; padding: 100px 0; max-width: 800px; }
.eyebrow { letter-spacing: 5px; text-transform: uppercase; font-size: .78rem; color: var(--rose-deep); font-weight: 700; margin-bottom: 20px; }
.hero h1 { font-size: clamp(3.2rem, 9vw, 6.2rem); margin-bottom: 12px; }
.hero .tagline { font-family: var(--font-display); font-style: italic; font-size: clamp(1.35rem, 3vw, 1.9rem); color: var(--rose-deep); margin-bottom: 24px; }
.hero p.lede { max-width: 580px; color: var(--muted); margin-bottom: 36px; font-size: 1.05rem; }
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; }

/* ============ Marquee ============ */
.marquee {
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  background: var(--bg-2); overflow: hidden; padding: 16px 0;
}
.marquee-inner {
  display: flex; gap: 3rem; white-space: nowrap;
  animation: marquee 26s linear infinite; width: max-content;
}
.marquee span {
  font-family: var(--font-display); font-style: italic; font-size: 1.15rem;
  letter-spacing: 4px; text-transform: uppercase; color: var(--rose-deep);
}
.marquee span em { color: var(--gold); font-style: normal; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ============ Quick info band ============ */
.band { background: var(--bg-2); border-bottom: 1px solid var(--line); }
.band-inner { display: grid; grid-template-columns: repeat(3, 1fr); }
.band-item { padding: 28px 30px; border-left: 1px solid var(--line); }
.band-item:first-child { border-left: 0; }
.band-item .k { font-size: .7rem; letter-spacing: 3px; text-transform: uppercase; color: var(--rose-deep); font-weight: 700; margin-bottom: 6px; }
.band-item .v { font-family: var(--font-display); font-size: 1.3rem; color: var(--ink); }
.band-item a { text-decoration: none; }
.band-item a:hover { color: var(--rose-deep); }

/* ============ Sections ============ */
.section { padding: 96px 0; position: relative; }
.section-alt { background: var(--bg-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.sec-head { margin-bottom: 52px; max-width: 640px; position: relative; }
.sec-head h2 { font-size: clamp(2.4rem, 5.5vw, 3.4rem); margin-bottom: 14px; }
.sec-head p { color: var(--muted); margin-top: 12px; }
.sec-head .rule {
  width: 120px; height: 1px; margin-top: 20px; position: relative;
  background: linear-gradient(90deg, var(--rose-deep), transparent);
}
.sec-head .rule::after {
  content: "✦"; position: absolute; right: -4px; top: -11px;
  color: var(--rose-deep); font-size: 1rem;
}

/* Welcome */
.welcome-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 60px; align-items: center; }
.welcome-img {
  border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); border: 1px solid rgba(209, 121, 146, 0.3);
}
.welcome-img img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/5; }
.welcome-copy h2 { font-size: clamp(2.2rem, 4.5vw, 3.1rem); margin-bottom: 20px; }
.welcome-copy p { color: var(--muted); margin-bottom: 16px; }
.welcome-copy .sig { font-family: var(--font-display); font-style: italic; font-size: 1.35rem; color: var(--rose-deep); }

/* Price list */
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; align-items: start; }
.price-col {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 28px; backdrop-filter: blur(6px);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.price-col:hover {
  transform: translateY(-4px);
  border-color: rgba(209, 121, 146, 0.5);
  box-shadow: 0 20px 50px -20px rgba(209, 121, 146, 0.3);
}
.price-col h3 { font-size: 1.5rem; color: var(--rose-deep); border-bottom: 1px solid var(--line); padding-bottom: 12px; margin-bottom: 6px; }
.price-col .sub { font-size: .72rem; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); font-weight: 700; margin-bottom: 14px; }
.price-col ul { list-style: none; }
.price-col li { display: flex; justify-content: space-between; gap: 12px; padding: 11px 0; border-bottom: 1px dashed rgba(209, 121, 146, 0.18); font-size: .95rem; }
.price-col li .p { font-weight: 700; color: var(--rose-deep); white-space: nowrap; }
.price-note {
  margin-top: 44px; padding: 20px 24px;
  background: var(--bg-3); border: 1px solid var(--line); border-left: 3px solid var(--rose-deep);
  border-radius: 10px; color: var(--muted); font-size: .9rem;
}
.center-cta { text-align: center; margin-top: 44px; }

/* Bookings */
.bookings { background: radial-gradient(ellipse at 50% 0%, rgba(232, 163, 184, 0.18), transparent 60%), var(--bg); }
.bookings-inner { max-width: 900px; margin: 0 auto; text-align: center; }
.bookings h2 { font-size: clamp(2.4rem, 5.5vw, 3.4rem); margin-bottom: 12px; }
.bookings .lead { color: var(--muted); font-family: var(--font-display); font-style: italic; font-size: 1.3rem; margin-bottom: 36px; }
.setmore-frame {
  width: 100%; height: 680px; border: 1px solid rgba(209, 121, 146, 0.35); border-radius: var(--radius);
  background: #fff; box-shadow: var(--shadow);
}
.booking-cta-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 32px; }

/* Gallery */
.gal-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.gal-grid figure { margin: 0; border-radius: var(--radius); overflow: hidden; position: relative; border: 1px solid rgba(209, 121, 146, 0.2); }
.gal-grid img { width: 100%; aspect-ratio: 3/4; object-fit: cover; transition: transform .5s ease; }
.gal-grid figure:hover img { transform: scale(1.07); }
.gal-grid figure:hover { border-color: rgba(209, 121, 146, 0.55); }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 48px; align-items: start; }
.map-frame { border: 1px solid var(--line); width: 100%; height: 100%; min-height: 460px; border-radius: var(--radius); box-shadow: var(--shadow); }
.contact-card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 36px; backdrop-filter: blur(6px);
}
.contact-card h3 { font-size: 1.8rem; margin-bottom: 22px; color: var(--rose-deep); }
.contact-card .c-row { display: flex; gap: 14px; padding: 14px 0; border-bottom: 1px dashed rgba(209, 121, 146, 0.2); }
.contact-card .c-row:last-child { border-bottom: 0; }
.contact-card .c-k { min-width: 84px; font-size: .7rem; letter-spacing: 2px; text-transform: uppercase; color: var(--rose-deep); font-weight: 700; padding-top: 3px; }
.contact-card .c-v { color: var(--ink); }
.contact-card a.c-v { text-decoration: none; font-weight: 700; }
.contact-card a.c-v:hover { color: var(--rose-deep); }

/* Footer */
.site-footer { background: #4a2c3d; color: rgba(253, 247, 246, 0.75); padding: 56px 0 28px; border-top: 1px solid var(--line); }
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; margin-bottom: 36px; }
.site-footer h4 { font-family: var(--font-display); font-size: 1.35rem; color: #f7dfe6; margin-bottom: 14px; }
.site-footer ul { list-style: none; }
.site-footer li { margin-bottom: 8px; }
.site-footer a { text-decoration: none; }
.site-footer a:hover { color: #f0b8c9; }
.foot-base { border-top: 1px solid rgba(253, 247, 246, 0.15); padding-top: 22px; font-size: .86rem; display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap; }

/* ============ Reveal ============ */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-bg, .marquee-inner { animation: none; }
  .gal-grid img, .btn, .price-col { transition: none; }
}

/* ============ Responsive ============ */
@media (max-width: 1120px) {
  .nav-toggle { display: block; }
  .nav-links {
    display: none; position: absolute; top: 74px; left: 0; right: 0;
    background: rgba(253, 247, 246, 0.98); border-bottom: 1px solid var(--line);
    flex-direction: column; align-items: stretch; gap: 0; padding: 12px 24px 22px;
    box-shadow: 0 24px 50px -24px rgba(74, 44, 61, 0.25);
  }
  .nav-links.open { display: flex; }
  .nav-links li { border-bottom: 1px solid var(--line); }
  .nav-links li:last-child { border-bottom: 0; }
  .nav-links a { display: block; padding: 14px 4px; }
  .nav-links a:not(.btn)::after { display: none; }
  .nav-links .btn { margin-top: 14px; justify-content: center; }
  .band-inner { grid-template-columns: 1fr; }
  .band-item { border-left: 0; border-top: 1px solid var(--line); }
  .band-item:first-child { border-top: 0; }
  .welcome-grid, .contact-grid { grid-template-columns: 1fr; }
  .gal-grid { grid-template-columns: repeat(2, 1fr); }
  .price-grid { grid-template-columns: 1fr; gap: 20px; }
  .foot-grid { grid-template-columns: 1fr; gap: 28px; }
  .hero { min-height: 72vh; }
  .setmore-frame { height: 560px; }
}
@media (max-width: 520px) {
  .hero-cta .btn { width: 100%; justify-content: center; }
}
