/* ============================================
   Uptown Nail Salon — Soft Luxury / Art Deco
   Charlotte, NC
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Nunito+Sans:opsz,wght@6..12,300;6..12,400;6..12,600;6..12,700&display=swap');

:root {
  --color-cream: #FAF6F1;
  --color-rose-gold: #B97D6E;
  --color-rose-gold-light: #D4A99A;
  --color-charcoal: #2C2C2C;
  --color-charcoal-soft: #3E3E3E;
  --color-warm-white: #FFFDF9;
  --color-muted-gold: #C9A96E;
  --color-blush: #F0E0D6;
  --color-deep-plum: #4A2C3D;
  --color-text: #3A3A3A;
  --color-text-light: #6E6E6E;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Nunito Sans', 'Segoe UI', sans-serif;
  --max-width: 1200px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-cream);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* Skip Link */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  background: var(--color-charcoal);
  color: #fff;
  padding: 12px 24px;
  z-index: 9999;
  font-weight: 600;
  text-decoration: none;
  transition: top 0.2s;
}
.skip-link:focus { top: 0; }

.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-rose-gold); text-decoration: none; transition: color var(--transition); }
a:hover, a:focus-visible { color: var(--color-deep-plum); }
*:focus-visible { outline: 3px solid var(--color-rose-gold); outline-offset: 3px; }

/* ============================================
   HEADER
   ============================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(250, 246, 241, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(185, 125, 110, 0.15);
  transition: background var(--transition), box-shadow var(--transition);
}
.site-header.scrolled {
  background: rgba(250, 246, 241, 0.98);
  box-shadow: 0 2px 24px rgba(0,0,0,0.06);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 16px 24px;
}
.logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-charcoal);
  text-decoration: none;
  letter-spacing: 0.02em;
}
.logo:hover, .logo:focus-visible { color: var(--color-rose-gold); }
.logo span {
  display: block;
  font-size: 0.6rem;
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--color-rose-gold);
  margin-top: -2px;
}

.nav-desktop { display: none; }
.nav-desktop ul { list-style: none; display: flex; gap: 36px; }
.nav-desktop a {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-charcoal-soft);
  text-decoration: none;
  position: relative;
  padding-bottom: 4px;
}
.nav-desktop a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--color-rose-gold);
  transition: width var(--transition);
}
.nav-desktop a:hover::after,
.nav-desktop a:focus-visible::after,
.nav-desktop a.active::after { width: 100%; }
.nav-desktop a:hover, .nav-desktop a:focus-visible { color: var(--color-rose-gold); }

.menu-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-charcoal);
  transition: transform var(--transition), opacity var(--transition);
}
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100vh;
  background: var(--color-cream);
  z-index: 999;
  padding: 100px 24px 40px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.nav-mobile.open { display: flex; }
.nav-mobile ul { list-style: none; text-align: center; }
.nav-mobile li { margin-bottom: 28px; }
.nav-mobile a {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--color-charcoal);
  text-decoration: none;
}
.nav-mobile a:hover, .nav-mobile a:focus-visible { color: var(--color-rose-gold); }

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--color-charcoal);
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(135deg, rgba(74, 44, 61, 0.7) 0%, rgba(44, 44, 44, 0.5) 50%, rgba(185, 125, 110, 0.3) 100%);
}
.hero-deco {
  position: absolute;
  z-index: 3;
  pointer-events: none;
}
.hero-deco--corner {
  top: 100px;
  right: 40px;
  width: 120px;
  height: 120px;
  border: 2px solid rgba(201, 169, 110, 0.3);
}
.hero-deco--line {
  bottom: 80px;
  left: 40px;
  width: 80px;
  height: 2px;
  background: var(--color-muted-gold);
  opacity: 0.4;
}
.hero-content {
  position: relative;
  z-index: 4;
  max-width: 700px;
  padding: 120px 24px 80px;
  margin: 0 auto;
  text-align: center;
}
.hero-content .eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--color-muted-gold);
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.2s;
}
.hero-content h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 700;
  color: var(--color-warm-white);
  line-height: 1.1;
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.4s;
}
.hero-content .subhero {
  font-size: 1.1rem;
  font-weight: 300;
  color: rgba(255,255,255,0.8);
  margin-bottom: 36px;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.6s;
}
.hero-cta {
  display: inline-flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.8s;
}

/* Buttons */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 16px 36px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
}
.btn--primary {
  background: var(--color-rose-gold);
  color: #fff;
  border-color: var(--color-rose-gold);
}
.btn--primary:hover, .btn--primary:focus-visible {
  background: var(--color-deep-plum);
  border-color: var(--color-deep-plum);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(74, 44, 61, 0.3);
}
.btn--outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.5);
}
.btn--outline:hover, .btn--outline:focus-visible {
  border-color: var(--color-muted-gold);
  color: var(--color-muted-gold);
  transform: translateY(-2px);
}
.btn--dark {
  background: var(--color-charcoal);
  color: #fff;
  border-color: var(--color-charcoal);
}
.btn--dark:hover, .btn--dark:focus-visible {
  background: var(--color-deep-plum);
  border-color: var(--color-deep-plum);
  color: #fff;
  transform: translateY(-2px);
}

/* ============================================
   SECTIONS
   ============================================ */
section { padding: 100px 0; }

.section-eyebrow {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--color-rose-gold);
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--color-charcoal);
  line-height: 1.15;
  margin-bottom: 20px;
}
.section-subtitle {
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--color-text-light);
  max-width: 560px;
  line-height: 1.7;
}

.deco-line {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--color-rose-gold), var(--color-muted-gold));
  margin: 24px 0;
}
.deco-line--center { margin-left: auto; margin-right: auto; }

/* ============================================
   INTRO
   ============================================ */
.intro {
  background: var(--color-warm-white);
  position: relative;
  overflow: hidden;
}
.intro::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 200px; height: 200px;
  border: 2px solid rgba(185, 125, 110, 0.1);
  transform: rotate(45deg);
  pointer-events: none;
}
.intro-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
.intro-image { position: relative; overflow: hidden; }
.intro-image img { width: 100%; height: 400px; object-fit: cover; }
.intro-image::after {
  content: '';
  position: absolute;
  bottom: -10px; right: -10px;
  width: 100%; height: 100%;
  border: 2px solid var(--color-rose-gold-light);
  z-index: -1;
}

/* ============================================
   SERVICES
   ============================================ */
.services-section {
  background: var(--color-cream);
  position: relative;
}
.services-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 50%, rgba(185, 125, 110, 0.04) 0%, transparent 50%),
                     radial-gradient(circle at 80% 20%, rgba(201, 169, 110, 0.04) 0%, transparent 50%);
  pointer-events: none;
}
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-top: 48px;
  position: relative;
}
.service-card {
  background: var(--color-warm-white);
  padding: 48px 36px;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  border: 1px solid rgba(185, 125, 110, 0.1);
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 0;
  background: linear-gradient(180deg, var(--color-rose-gold), var(--color-muted-gold));
  transition: height var(--transition);
}
.service-card:hover::before { height: 100%; }
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.06);
}
.service-card .service-icon { font-size: 2.5rem; margin-bottom: 20px; display: block; }
.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--color-charcoal);
  margin-bottom: 12px;
}
.service-card p { font-size: 0.95rem; color: var(--color-text-light); line-height: 1.7; }

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-section {
  background: var(--color-charcoal);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.testimonials-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(74, 44, 61, 0.6) 0%, transparent 50%);
  pointer-events: none;
}
.testimonials-section .section-eyebrow { color: var(--color-muted-gold); }
.testimonials-section .section-title { color: var(--color-warm-white); }
.testimonials-section .deco-line { background: linear-gradient(90deg, var(--color-muted-gold), var(--color-rose-gold-light)); }
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-top: 48px;
  position: relative;
}
.testimonial-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 40px 32px;
  position: relative;
}
.testimonial-card::before {
  content: '\201C';
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--color-rose-gold);
  opacity: 0.4;
  position: absolute;
  top: 12px; left: 24px;
  line-height: 1;
}
.testimonial-card blockquote {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-style: italic;
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
  margin-bottom: 20px;
  padding-left: 8px;
}
.testimonial-card cite {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-muted-gold);
  font-style: normal;
}

/* ============================================
   PAGE HERO (inner pages)
   ============================================ */
.page-hero {
  padding: 160px 0 80px;
  background: var(--color-charcoal);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(74, 44, 61, 0.5) 0%, transparent 60%);
  pointer-events: none;
}
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--color-warm-white);
  position: relative;
  z-index: 1;
}
.page-hero .section-eyebrow { color: var(--color-muted-gold); position: relative; z-index: 1; }
.page-hero .deco-line { position: relative; z-index: 1; }

/* About */
.about-content { background: var(--color-warm-white); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: start;
}
.about-text p { font-size: 1.05rem; line-height: 1.8; margin-bottom: 20px; }
.about-image img { width: 100%; height: 400px; object-fit: cover; }
.location-highlight {
  background: var(--color-cream);
  padding: 40px;
  margin-top: 32px;
  border-left: 4px solid var(--color-rose-gold);
}
.location-highlight h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--color-charcoal);
  margin-bottom: 8px;
}
.location-highlight p { margin-bottom: 0; color: var(--color-text-light); }

/* Services Detail Page */
.services-detail { background: var(--color-warm-white); }
.services-detail-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-top: 48px;
}
.service-detail-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  background: var(--color-cream);
  overflow: hidden;
  transition: box-shadow var(--transition);
}
.service-detail-card:hover { box-shadow: 0 12px 40px rgba(0,0,0,0.06); }
.service-detail-img img { width: 100%; height: 250px; object-fit: cover; }
.service-detail-body { padding: 32px; }
.service-detail-body h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-charcoal);
  margin-bottom: 12px;
}
.service-detail-body p { font-size: 0.95rem; color: var(--color-text-light); line-height: 1.7; }

/* CTA Banner */
.cta-banner {
  background: linear-gradient(135deg, var(--color-deep-plum) 0%, var(--color-charcoal) 100%);
  text-align: center;
  padding: 80px 24px;
}
.cta-banner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  color: var(--color-warm-white);
  margin-bottom: 16px;
}
.cta-banner p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 32px;
  font-weight: 300;
}

/* ============================================
   CONTACT
   ============================================ */
.contact-section { background: var(--color-warm-white); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}
.contact-info-list { list-style: none; margin-top: 32px; }
.contact-info-list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(185, 125, 110, 0.12);
}
.contact-info-list li:last-child { border-bottom: none; }
.contact-icon {
  width: 48px; height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-blush);
  color: var(--color-rose-gold);
  font-size: 1.2rem;
  flex-shrink: 0;
}
.contact-detail h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-charcoal);
  margin-bottom: 4px;
}
.contact-detail p, .contact-detail a { font-size: 0.95rem; color: var(--color-text-light); }
.contact-detail a:hover, .contact-detail a:focus-visible { color: var(--color-rose-gold); }

.contact-form {
  background: var(--color-cream);
  padding: 48px 36px;
}
.contact-form h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-charcoal);
  margin-bottom: 24px;
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-charcoal-soft);
  margin-bottom: 8px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-text);
  background: var(--color-warm-white);
  border: 1px solid rgba(185, 125, 110, 0.2);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--color-rose-gold);
  box-shadow: 0 0 0 3px rgba(185, 125, 110, 0.15);
  outline: none;
}
.form-group textarea { min-height: 140px; resize: vertical; }

.hours-card {
  background: var(--color-cream);
  padding: 36px;
  margin-top: 32px;
}
.hours-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--color-charcoal);
  margin-bottom: 16px;
}
.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid rgba(185, 125, 110, 0.1);
  font-size: 0.95rem;
}
.hours-row:last-child { border-bottom: none; }
.hours-row .day { font-weight: 600; color: var(--color-charcoal); }
.hours-row .time { color: var(--color-text-light); }

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--color-charcoal);
  color: rgba(255,255,255,0.6);
  padding: 60px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer-brand .logo { color: var(--color-warm-white); margin-bottom: 16px; display: inline-block; }
.footer-brand p { font-size: 0.9rem; line-height: 1.7; max-width: 320px; }
.footer-links h4, .footer-contact h4 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-muted-gold);
  margin-bottom: 20px;
}
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: rgba(255,255,255,0.6); font-size: 0.9rem; }
.footer-links a:hover, .footer-links a:focus-visible { color: var(--color-rose-gold-light); }
.footer-contact p { font-size: 0.9rem; margin-bottom: 8px; }
.footer-contact a { color: rgba(255,255,255,0.6); }
.footer-contact a:hover, .footer-contact a:focus-visible { color: var(--color-rose-gold-light); }
.footer-social { display: flex; gap: 12px; margin-top: 16px; }
.footer-social a {
  width: 40px; height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  transition: all var(--transition);
}
.footer-social a:hover, .footer-social a:focus-visible {
  border-color: var(--color-rose-gold);
  color: var(--color-rose-gold);
  background: rgba(185, 125, 110, 0.1);
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  text-align: center;
  font-size: 0.8rem;
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-stagger > *:nth-child(1) { transition-delay: 0.05s; }
.reveal-stagger > *:nth-child(2) { transition-delay: 0.15s; }
.reveal-stagger > *:nth-child(3) { transition-delay: 0.25s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-content .eyebrow,
  .hero-content h1,
  .hero-content .subhero,
  .hero-cta { opacity: 1; animation: none; }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (min-width: 640px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .service-detail-card { grid-template-columns: 280px 1fr; }
  .service-detail-img img { height: 100%; }
}
@media (min-width: 768px) {
  .intro-grid { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; }
}
@media (min-width: 960px) {
  .menu-toggle { display: none; }
  .nav-desktop { display: block; }
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(3, 1fr); }
}
