:root {
  --bg: #faf7f5;
  --surface: #ffffff;
  --text: #2b2320;
  --text-muted: #756a64;
  --accent: #c4707a;
  --accent-dark: #a85560;
  --accent-soft: #f6e6e8;
  --border: #ede6e3;
  --success: #4c8c68;
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --shadow: 0 4px 24px rgba(43, 35, 32, 0.06);
  --shadow-lift: 0 20px 50px rgba(43, 35, 32, 0.14);
  --container: 1140px;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  -webkit-font-smoothing: antialiased;
  line-height: 1.55;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { max-width: var(--container); margin: 0 auto; padding: 0 28px; }
section { padding: 96px 0; }
.eyebrow {
  display: inline-block; font-size: 12.5px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--accent-dark); margin-bottom: 14px;
}
h1, h2, h3 { font-weight: 700; letter-spacing: -0.02em; }
h1 { font-size: 52px; line-height: 1.12; }
h2 { font-size: 34px; margin-bottom: 16px; }
h3 { font-size: 19px; }
p { color: var(--text-muted); }
.section-head { max-width: 620px; margin: 0 auto 56px; text-align: center; }
.section-head h2 { margin-bottom: 12px; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 15px 30px; border-radius: 999px; font-weight: 600; font-size: 14.5px;
  cursor: pointer; border: none; transition: transform .15s ease, box-shadow .15s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--accent); color: #fff; box-shadow: 0 10px 24px rgba(196,112,122,0.35); }
.btn-primary:hover { box-shadow: 0 14px 30px rgba(196,112,122,0.45); }
.btn-outline { background: transparent; color: var(--text); border: 1.5px solid var(--border); }
.btn-outline:hover { border-color: var(--accent); color: var(--accent-dark); }
.btn-light { background: #fff; color: var(--accent-dark); }

/* ---------- nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50; background: rgba(250,247,245,0.9);
  backdrop-filter: blur(10px); border-bottom: 1px solid var(--border);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; padding: 16px 28px; max-width: var(--container); margin: 0 auto; }
.nav-brand { display: flex; align-items: center; gap: 11px; font-weight: 700; font-size: 16px; }
.nav-mark {
  width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 14px;
}
.nav-brand .sub { font-size: 11px; color: var(--text-muted); font-weight: 500; }
.nav-links { display: flex; align-items: center; gap: 34px; font-size: 14px; font-weight: 500; }
.nav-links a { color: var(--text-muted); }
.nav-links a:hover { color: var(--accent-dark); }
.nav-actions { display: flex; align-items: center; gap: 14px; }
.nav-toggle { display: none; background: none; border: none; font-size: 22px; cursor: pointer; }

/* ---------- hero ---------- */
.hero { padding: 80px 0 60px; position: relative; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 60px; align-items: center; }
.hero h1 { margin-bottom: 20px; }
.hero h1 span { color: var(--accent-dark); }
.hero p.lede { font-size: 17px; max-width: 460px; margin-bottom: 32px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-stats { display: flex; gap: 36px; }
.hero-stat .num { font-size: 26px; font-weight: 800; color: var(--accent-dark); }
.hero-stat .label { font-size: 12.5px; color: var(--text-muted); }
.hero-visual {
  position: relative; aspect-ratio: 4/5; border-radius: var(--radius-lg);
  background: linear-gradient(155deg, var(--accent) 0%, var(--accent-dark) 55%, #8a4550 100%);
  overflow: hidden; box-shadow: var(--shadow-lift);
}
.hero-visual::before, .hero-visual::after {
  content: ""; position: absolute; border-radius: 50%; background: rgba(255,255,255,0.12);
}
.hero-visual::before { width: 220px; height: 220px; top: -60px; right: -60px; }
.hero-visual::after { width: 160px; height: 160px; bottom: -30px; left: -40px; background: rgba(255,255,255,0.08); }
.hero-visual .tag {
  position: absolute; background: #fff; color: var(--text); border-radius: var(--radius-sm);
  padding: 14px 18px; box-shadow: var(--shadow-lift); font-size: 13px; font-weight: 600;
}
.hero-visual .tag.tag-1 { top: 30px; left: 24px; }
.hero-visual .tag.tag-2 { bottom: 34px; right: 24px; }
.hero-visual .tag small { display: block; color: var(--text-muted); font-weight: 500; font-size: 11px; margin-top: 2px; }
.hero-visual .monogram { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-size: 120px; font-weight: 800; color: rgba(255,255,255,0.16); }

/* ---------- USP strip ---------- */
.usp-strip { background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 44px 0; }
.usp-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.usp-item { display: flex; align-items: flex-start; gap: 14px; }
.usp-icon {
  width: 46px; height: 46px; border-radius: 14px; background: var(--accent-soft);
  color: var(--accent-dark); display: flex; align-items: center; justify-content: center;
  font-size: 20px; flex-shrink: 0;
}
.usp-item h3 { font-size: 14.5px; margin-bottom: 3px; }
.usp-item p { font-size: 12.5px; margin: 0; }

/* ---------- services ---------- */
.category-tabs { display: flex; justify-content: center; gap: 10px; margin-bottom: 46px; flex-wrap: wrap; }
.cat-tab {
  padding: 10px 20px; border-radius: 999px; border: 1px solid var(--border); background: var(--surface);
  font-size: 13.5px; font-weight: 600; color: var(--text-muted); cursor: pointer;
}
.cat-tab.active { background: var(--text); color: #fff; border-color: var(--text); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.svc-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-md);
  padding: 26px; transition: box-shadow .2s ease, transform .2s ease;
}
.svc-card:hover { box-shadow: var(--shadow-lift); transform: translateY(-4px); }
.svc-card .icon { width: 48px; height: 48px; border-radius: 14px; background: var(--accent-soft); color: var(--accent-dark); display:flex; align-items:center; justify-content:center; font-size: 21px; margin-bottom: 18px; }
.svc-card h3 { margin-bottom: 6px; }
.svc-card p.desc { font-size: 13px; margin-bottom: 16px; min-height: 34px; }
.svc-card .meta-row { display: flex; justify-content: space-between; align-items: center; border-top: 1px dashed var(--border); padding-top: 14px; }
.svc-card .duration { font-size: 12px; color: var(--text-muted); }
.svc-card .price { font-weight: 800; color: var(--accent-dark); font-size: 16px; }
.services-cta { text-align: center; margin-top: 46px; }

/* ---------- stylists ---------- */
.stylists-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.stylist-card { text-align: center; }
.stylist-photo {
  width: 100%; aspect-ratio: 1; border-radius: var(--radius-md); margin-bottom: 18px;
  background: linear-gradient(150deg, var(--accent-soft), var(--border));
  display: flex; align-items: center; justify-content: center; font-size: 40px; font-weight: 800; color: var(--accent-dark);
}
.stylist-card h3 { margin-bottom: 4px; }
.stylist-card .role { font-size: 12.5px; color: var(--accent-dark); font-weight: 600; margin-bottom: 10px; }
.stylist-card p.bio { font-size: 13px; }

/* ---------- gallery ---------- */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 160px; gap: 14px; }
.gallery-grid .g-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.gallery-grid .g-item:nth-child(6) { grid-column: span 2; }
.g-item {
  border-radius: var(--radius-sm); background: linear-gradient(145deg, var(--accent-soft), var(--border));
  display: flex; align-items: center; justify-content: center; color: var(--accent-dark); font-size: 26px; opacity: 0.9;
}
.gallery-note { text-align: center; font-size: 12.5px; color: var(--text-muted); margin-top: 24px; }

/* ---------- social proof ---------- */
.social-banner {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark)); border-radius: var(--radius-lg);
  padding: 56px; text-align: center; color: #fff;
}
.social-banner h2 { color: #fff; }
.social-banner p { color: rgba(255,255,255,0.9); max-width: 480px; margin: 0 auto 28px; }

/* ---------- location ---------- */
.location-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.map-embed { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--border); aspect-ratio: 4/3; }
.map-embed iframe { width: 100%; height: 100%; border: 0; }
.info-list { display: flex; flex-direction: column; gap: 22px; }
.info-row { display: flex; gap: 16px; }
.info-icon { width: 44px; height: 44px; border-radius: 12px; background: var(--accent-soft); color: var(--accent-dark); display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
.info-row h3 { font-size: 15px; margin-bottom: 3px; }
.info-row p { font-size: 13.5px; margin: 0; }
.hours-table { width: 100%; font-size: 13.5px; margin-top: 4px; }
.hours-table tr td { padding: 3px 0; color: var(--text-muted); }
.hours-table tr td:last-child { text-align: right; font-weight: 600; color: var(--text); }

/* ---------- final CTA ---------- */
.final-cta { text-align: center; }
.final-cta h2 { font-size: 38px; }
.final-cta p { max-width: 480px; margin: 0 auto 32px; font-size: 15.5px; }

/* ---------- footer ---------- */
footer { background: #241d1a; color: #cfc4bf; padding: 60px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-brand { display: flex; align-items: center; gap: 10px; color: #fff; font-weight: 700; margin-bottom: 12px; }
footer p { color: #a89e99; font-size: 13.5px; }
footer h4 { color: #fff; font-size: 13px; margin-bottom: 16px; text-transform: uppercase; letter-spacing: 1px; }
footer ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
footer ul a { color: #a89e99; font-size: 13.5px; }
footer ul a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 24px; font-size: 12.5px; color: #7a716c; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; }

/* ---------- responsive ---------- */
@media (max-width: 980px) {
  h1 { font-size: 38px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { max-width: 420px; margin: 0 auto; }
  .usp-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .stylists-grid { grid-template-columns: repeat(2, 1fr); }
  .location-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 700px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .nav-inner { padding: 12px 18px; }
  .nav-brand .sub { display: none; }
  .nav-brand { font-size: 14px; }
  .nav-mark { width: 34px; height: 34px; font-size: 12px; }
  .nav-actions { gap: 8px; }
  .nav-actions .btn-primary { padding: 10px 16px; font-size: 12.5px; }
  #navLinks { box-shadow: var(--shadow-lift); }
  section { padding: 64px 0; }
  h1 { font-size: 30px; }
  h2 { font-size: 26px; }
  .usp-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .stylists-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 130px; }
  .gallery-grid .g-item:nth-child(1) { grid-column: span 2; grid-row: span 1; }
  .footer-grid { grid-template-columns: 1fr; }
  .social-banner { padding: 36px 22px; }
  .final-cta h2 { font-size: 28px; }
}
