/* ── NAIL KITCHEN — SHARED STYLES ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --bg:       #FAF8F5;
  --cream:    #F0EAE0;
  --beige:    #E5DDD0;
  --gold:     #B8914A;
  --gold-lt:  #D4A85C;
  --text:     #1C1917;
  --text-mid: #5A4E42;
  --text-lt:  #8A7D6E;
  --divider:  rgba(184,145,74,0.22);
  --divb:     rgba(180,160,130,0.25);
}
html { scroll-behavior: smooth; }
body { font-family: 'Cormorant Garamond', serif; background: var(--bg); color: var(--text); overflow-x: hidden; }

/* NAV */
nav#nk-nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; display: flex; align-items: center; justify-content: space-between; padding: 1rem 4rem; background: rgba(250,248,245,0.96); backdrop-filter: blur(12px); border-bottom: 1px solid var(--divb); transition: box-shadow 0.3s; }
nav#nk-nav.scrolled { box-shadow: 0 2px 20px rgba(180,160,130,0.15); }
.nav-logo { display: flex; align-items: center; gap: 0.5rem; text-decoration: none; }
.nav-logo img { height: 40px; width: auto; }
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a { font-family: 'Jost', sans-serif; font-size: 0.74rem; font-weight: 400; letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-mid); text-decoration: none; transition: color 0.2s; }
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-cta { font-family: 'Jost', sans-serif; font-size: 0.72rem; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: #fff; background: var(--gold); padding: 0.6rem 1.6rem; text-decoration: none; transition: background 0.2s; }
.nav-cta:hover { background: var(--gold-lt); }

/* SHARED ELEMENTS */
.section-label { font-family: 'Jost', sans-serif; font-size: 0.65rem; font-weight: 400; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.9rem; display: flex; align-items: center; gap: 0.8rem; }
.section-label::before { content: ''; width: 24px; height: 1px; background: var(--gold); }
.section-label.centered { justify-content: center; }
.section-label.centered::before { display: none; }
.section-title { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 3.5vw, 2.7rem); font-weight: 600; line-height: 1.15; color: var(--text); }
.section-title em { font-style: italic; color: var(--gold); }
.gold-line { width: 48px; height: 1px; background: linear-gradient(90deg, var(--gold), transparent); margin: 1.3rem 0; }
.gold-line.centered { margin: 1.3rem auto; background: linear-gradient(90deg, transparent, var(--gold), transparent); }
.body-text { font-size: 1.1rem; line-height: 1.9; color: var(--text-mid); margin-bottom: 1.2rem; }

/* BUTTONS */
.btn-primary { font-family: 'Jost', sans-serif; font-size: 0.73rem; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: #fff; background: var(--gold); padding: 0.9rem 2.4rem; text-decoration: none; border: 2px solid var(--gold); display: inline-block; transition: all 0.25s; }
.btn-primary:hover { background: var(--gold-lt); transform: translateY(-2px); }
.btn-outline { font-family: 'Jost', sans-serif; font-size: 0.73rem; font-weight: 400; letter-spacing: 0.18em; text-transform: uppercase; color: var(--text); background: transparent; padding: 0.9rem 2.4rem; text-decoration: none; border: 1px solid rgba(28,25,23,0.3); display: inline-block; transition: all 0.25s; }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-wa { font-family: 'Jost', sans-serif; font-size: 0.73rem; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: #fff; background: #25D366; padding: 0.9rem 2.4rem; text-decoration: none; display: inline-block; transition: background 0.2s; }
.btn-wa:hover { background: #1ebe5d; }

/* PAGE HERO (inner pages) */
.page-hero { position: relative; height: 52vh; min-height: 360px; display: flex; align-items: center; justify-content: center; overflow: hidden; margin-top: 62px; }
.page-hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; filter: brightness(0.5); }
.page-hero-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(28,25,23,0.2) 0%, rgba(28,25,23,0.65) 100%); }
.page-hero-content { position: relative; z-index: 2; text-align: center; padding: 2rem; }
.page-hero-content .eyebrow { font-family: 'Jost', sans-serif; font-size: 0.68rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold-lt); margin-bottom: 1rem; display: flex; align-items: center; justify-content: center; gap: 1rem; }
.page-hero-content .eyebrow::before, .page-hero-content .eyebrow::after { content:''; width:32px; height:1px; background:var(--gold-lt); opacity:0.7; }
.page-hero-content h1 { font-family: 'Playfair Display', serif; font-size: clamp(2.2rem, 5vw, 4rem); font-weight: 700; color: #fff; text-shadow: 0 2px 30px rgba(0,0,0,0.4); }

/* FOOTER */
footer#nk-footer { background: var(--text); padding: 2.5rem 4rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1.5rem; }
.footer-logo { font-family: 'Playfair Display', serif; font-size: 1rem; color: var(--gold); }
.footer-logo em { font-style: italic; color: var(--gold-lt); }
.footer-links { display: flex; gap: 1.6rem; flex-wrap: wrap; }
.footer-links a { font-family: 'Jost', sans-serif; font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(250,248,245,0.38); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--gold-lt); }
.footer-copy { font-family: 'Jost', sans-serif; font-size: 0.65rem; color: rgba(250,248,245,0.22); }

/* MOBILE */
@media (max-width: 768px) {
  nav#nk-nav { padding: 1rem 1.5rem; }
  .nav-links { display: none; }
  footer#nk-footer { flex-direction: column; text-align: center; padding: 2rem 1.5rem; }
}
