/* ============================================
   Luxe & Co. Salon
   Palette: Blush Pink, Charcoal, Gold
============================================ */

:root {
  --blush: #f2d0d8;
  --blush-dark: #e8b4c0;
  --rose: #c4607a;
  --rose-dark: #a84060;
  --charcoal: #2a2a2a;
  --charcoal-mid: #3d3d3d;
  --gold: #c9a84c;
  --gold-light: #e0c068;
  --white: #ffffff;
  --cream: #fdf9f6;
  --gray-100: #f5f0ed;
  --gray-300: #ddd5cf;
  --gray-500: #9a8e88;
  --radius: 12px;
  --shadow: 0 4px 24px rgba(42,42,42,0.08);
  --shadow-lg: 0 12px 48px rgba(42,42,42,0.14);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.65;
}

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

/* BUTTONS */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px; border-radius: 50px;
  font-size: 14px; font-weight: 600; text-decoration: none;
  transition: all 0.2s; cursor: pointer; border: none; letter-spacing: 0.3px;
}
.btn-primary { background: var(--rose); color: var(--white); }
.btn-primary:hover { background: var(--rose-dark); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(196,96,122,0.35); }
.btn-ghost { background: transparent; color: var(--charcoal); border: 1.5px solid var(--gray-300); }
.btn-ghost:hover { border-color: var(--rose); color: var(--rose); }

/* NAV */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.95); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-100); padding: 0 24px;
}
.nav-inner { display: flex; align-items: center; gap: 32px; height: 68px; }
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px; font-weight: 600; color: var(--charcoal);
  letter-spacing: 1px; margin-right: auto; text-decoration: none;
}
.nav-logo span { color: var(--gold); }
.nav-links { display: flex; gap: 28px; list-style: none; }
.nav-links a { color: var(--gray-500); text-decoration: none; font-size: 14px; font-weight: 500; transition: color 0.2s; }
.nav-links a:hover { color: var(--charcoal); }

/* HERO */
.hero {
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: 580px; align-items: center;
  padding: 80px 24px; max-width: 1140px; margin: 0 auto;
  gap: 48px;
}
.hero-tag {
  display: inline-block;
  font-size: 12px; font-weight: 600; letter-spacing: 2px;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 20px;
}
.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(48px, 6vw, 80px);
  font-weight: 600; line-height: 1.05;
  color: var(--charcoal); margin-bottom: 20px;
  letter-spacing: -1px;
}
.hero h1 em { color: var(--rose); font-style: italic; }
.hero p { font-size: 16px; color: var(--gray-500); max-width: 420px; margin-bottom: 32px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-visual { display: flex; justify-content: flex-end; }
.hero-photo { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 1fr 1fr; gap: 12px; width: 400px; height: 400px; }
.hero-photo-block { border-radius: 16px; }
.hero-photo-block.a {
  background: linear-gradient(135deg, var(--blush) 0%, var(--blush-dark) 100%);
  grid-row: span 2;
}
.hero-photo-block.b {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
}
.hero-photo-block.c {
  background: linear-gradient(135deg, var(--charcoal-mid) 0%, var(--charcoal) 100%);
}

/* SECTION HEADERS */
.section-header { text-align: center; margin-bottom: 56px; }
.section-label {
  font-size: 11px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--gold); margin-bottom: 10px;
}
.section-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 4vw, 48px); font-weight: 600;
  letter-spacing: -0.5px; margin-bottom: 12px;
}
.section-header p { font-size: 15px; color: var(--gray-500); max-width: 560px; margin: 0 auto; }

/* SERVICES */
.services { padding: 96px 0; background: var(--cream); }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 28px; margin-bottom: 40px; }
.service-category {
  background: var(--white); border-radius: 16px;
  padding: 32px 28px; border: 1px solid var(--gray-100);
  box-shadow: var(--shadow);
}
.service-category-title {
  font-size: 16px; font-weight: 700; margin-bottom: 24px;
  padding-bottom: 16px; border-bottom: 1px solid var(--gray-100);
  color: var(--charcoal);
}
.service-row { display: flex; justify-content: space-between; align-items: flex-start; padding: 14px 0; border-bottom: 1px solid var(--gray-100); gap: 12px; }
.service-row:last-child { border-bottom: none; }
.service-name { font-size: 14px; font-weight: 600; margin-bottom: 3px; }
.service-desc { font-size: 12px; color: var(--gray-500); }
.service-price { font-size: 15px; font-weight: 700; color: var(--rose); white-space: nowrap; }
.services-cta { text-align: center; background: var(--white); border-radius: 16px; padding: 32px; border: 1px solid var(--gray-100); }
.services-cta p { color: var(--gray-500); font-size: 15px; margin-bottom: 16px; }
.services-cta strong { color: var(--charcoal); }

/* TEAM */
.team { padding: 96px 0; background: var(--white); }
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 28px; }
.team-card {
  border-radius: 16px; overflow: hidden;
  border: 1px solid var(--gray-100); box-shadow: var(--shadow);
  transition: transform 0.25s, box-shadow 0.25s;
}
.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.team-photo {
  height: 180px; display: flex; align-items: center; justify-content: center;
}
.team-photo span {
  font-family: 'Cormorant Garamond', serif;
  font-size: 64px; font-weight: 600; color: rgba(255,255,255,0.8);
}
.team-info { padding: 24px 24px 28px; }
.team-name { font-size: 18px; font-weight: 700; margin-bottom: 4px; }
.team-title { font-size: 12px; color: var(--gold); font-weight: 600; letter-spacing: 0.5px; margin-bottom: 12px; text-transform: uppercase; }
.team-bio { font-size: 13px; color: var(--gray-500); line-height: 1.65; margin-bottom: 16px; }
.team-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.team-tags span {
  font-size: 11px; font-weight: 600; padding: 4px 10px; border-radius: 50px;
  background: var(--gray-100); color: var(--charcoal-mid);
}

/* BOOK CTA */
.book-cta {
  background: linear-gradient(135deg, var(--rose) 0%, var(--rose-dark) 100%);
  padding: 80px 24px; text-align: center;
}
.book-cta-inner { max-width: 600px; margin: 0 auto; }
.book-cta .section-label { color: rgba(255,255,255,0.7); }
.book-cta h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 5vw, 52px); font-weight: 600;
  color: var(--white); margin-bottom: 16px;
}
.book-cta p { color: rgba(255,255,255,0.75); font-size: 16px; margin-bottom: 32px; }
.book-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.book-cta .btn-primary { background: var(--white); color: var(--rose); }
.book-cta .btn-primary:hover { background: var(--cream); }
.book-cta .btn-ghost { border-color: rgba(255,255,255,0.5); color: var(--white); }
.book-cta .btn-ghost:hover { border-color: var(--white); background: rgba(255,255,255,0.1); }

/* CONTACT */
.contact { padding: 80px 0; background: var(--cream); }
.contact-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; }
.contact-inner .section-label { color: var(--gold); }
.contact-inner h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px; font-weight: 600; margin-bottom: 28px;
}
.contact-details { display: flex; flex-direction: column; gap: 20px; }
.contact-item { display: flex; align-items: flex-start; gap: 14px; font-size: 15px; }
.contact-item a { color: var(--rose); text-decoration: none; font-weight: 600; }
.hours-table { border-collapse: collapse; width: 100%; }
.hours-table td { padding: 10px 0; font-size: 14px; border-bottom: 1px solid var(--gray-300); }
.hours-table td:first-child { color: var(--gray-500); padding-right: 24px; }
.hours-table td:last-child { font-weight: 600; }

/* FOOTER */
.footer { background: var(--charcoal); padding: 32px 24px; text-align: center; }
.footer-inner { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px; font-weight: 600; color: var(--white); letter-spacing: 1px;
}
.footer-logo span { color: var(--gold); }
.footer p { color: rgba(255,255,255,0.4); font-size: 12px; }
.footer-demo a { color: var(--gold); text-decoration: none; }

/* RESPONSIVE */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hero { grid-template-columns: 1fr; padding: 48px 24px; }
  .hero-visual { display: none; }
  .contact-inner { grid-template-columns: 1fr; gap: 40px; }
  .services-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
}
