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

:root {
  --plum: #2a2024;
  --plum-dark: #1d1518;
  --rose: #c08a6e;
  --rose-dark: #a06f54;
  --cream: #f7f1ea;
  --warm: #efe4d9;
  --ink: #2a2024;
  --muted: #8c7a72;
}

html { scroll-behavior: smooth; }

body { background: var(--cream); color: var(--ink); font-family: 'Helvetica Neue', Arial, sans-serif; overflow-x: hidden; }

/* PROMO BANNER */
.promo-bar { position: sticky; top: 0; z-index: 300; background: linear-gradient(90deg, var(--plum-dark), var(--plum)); color: var(--cream); display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 0 22px; height: 48px; }
.promo-back { display: inline-flex; align-items: center; gap: 7px; color: var(--cream); text-decoration: none; font-size: 12px; font-weight: 700; letter-spacing: 0.05em; opacity: 0.85; transition: opacity 0.2s, transform 0.2s; white-space: nowrap; }
.promo-back:hover { opacity: 1; transform: translateX(-3px); }
.promo-msg { font-size: 13px; letter-spacing: 0.02em; text-align: center; flex: 1; }
.promo-msg strong { color: var(--rose); font-style: italic; }
.promo-cta { background: var(--rose); color: #fff; text-decoration: none; font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; padding: 9px 18px; border-radius: 30px; white-space: nowrap; transition: background 0.2s, transform 0.2s; }
.promo-cta:hover { background: var(--rose-dark); transform: translateY(-1px); }

/* NAV */
nav { position: absolute; top: 48px; left: 0; right: 0; z-index: 100; display: flex; justify-content: space-between; align-items: center; padding: 28px 60px; }
.logo { display: flex; flex-direction: column; line-height: 1; text-decoration: none; }
.logo-top { font-size: 9px; letter-spacing: 5px; color: var(--rose); text-transform: uppercase; margin-bottom: 6px; }
.logo-main { font-family: Georgia, serif; font-size: 24px; font-weight: normal; letter-spacing: 1px; color: #fff; }
nav ul { list-style: none; display: flex; gap: 34px; align-items: center; }
nav a { color: #fff; text-decoration: none; font-size: 11px; letter-spacing: 2.5px; text-transform: uppercase; transition: color 0.3s; position: relative; }
nav a:hover { color: var(--rose); }
nav a.active { color: var(--rose); }
nav a.active::after { content: ''; position: absolute; left: 0; right: 0; bottom: -7px; height: 1px; background: var(--rose); }
.nav-cta { background: var(--rose); padding: 11px 24px; border-radius: 30px; color: #fff; }
.nav-cta:hover { background: var(--rose-dark); color: #fff; }
.nav-cta.active::after { display: none; }

/* HERO */
.hero { height: calc(100vh - 48px); min-height: 580px; position: relative; display: flex; align-items: center; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; background: linear-gradient(to right, rgba(42,32,36,0.82) 0%, rgba(42,32,36,0.45) 60%, rgba(42,32,36,0.3) 100%), url('https://images.unsplash.com/photo-1560066984-138dadb4c035?w=1600&q=80') center/cover; }
.hero-content { position: relative; max-width: 640px; padding: 0 60px; }
.hero-eyebrow { font-size: 11px; letter-spacing: 6px; color: var(--rose); text-transform: uppercase; margin-bottom: 24px; display: flex; align-items: center; gap: 14px; }
.hero-eyebrow::before { content: ''; width: 36px; height: 1px; background: var(--rose); }
.hero h1 { font-family: Georgia, serif; font-size: clamp(44px, 6.5vw, 82px); line-height: 1.04; color: #fff; font-weight: normal; margin-bottom: 22px; }
.hero h1 em { display: block; color: var(--rose); font-style: italic; }
.hero-sub { font-weight: 300; font-size: 16px; line-height: 1.8; color: rgba(247,241,234,0.85); max-width: 440px; margin-bottom: 38px; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }

/* PAGE HERO */
.page-hero { height: 54vh; min-height: 350px; position: relative; display: flex; align-items: flex-end; overflow: hidden; }
.page-hero-bg { position: absolute; inset: 0; background-position: center; background-size: cover; }
.page-hero-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(42,32,36,0.9) 0%, rgba(42,32,36,0.35) 65%, rgba(42,32,36,0.5) 100%); }
.page-hero-content { position: relative; padding: 0 60px 52px; max-width: 760px; }
.page-hero h1 { font-family: Georgia, serif; font-size: clamp(38px, 5.5vw, 66px); line-height: 1.05; color: #fff; font-weight: normal; }
.page-hero h1 em { color: var(--rose); font-style: italic; }
.page-hero p { font-weight: 300; font-size: 16px; line-height: 1.8; color: rgba(247,241,234,0.85); margin-top: 14px; max-width: 540px; }

.btn-primary { background: var(--rose); color: #fff; padding: 16px 34px; border-radius: 30px; font-size: 11px; letter-spacing: 2px; text-transform: uppercase; font-weight: 700; text-decoration: none; transition: background 0.3s, transform 0.15s; display: inline-block; }
.btn-primary:hover { background: var(--rose-dark); transform: translateY(-2px); }
.btn-ghost { color: #fff; padding: 16px 34px; border-radius: 30px; border: 1px solid rgba(255,255,255,0.5); font-size: 11px; letter-spacing: 2px; text-transform: uppercase; text-decoration: none; transition: all 0.3s; display: inline-block; }
.btn-ghost:hover { border-color: var(--rose); color: var(--rose); }

.section-label { font-size: 10px; letter-spacing: 5px; text-transform: uppercase; color: var(--rose); margin-bottom: 18px; }

/* ABOUT */
.about { display: grid; grid-template-columns: 1fr 1fr; align-items: stretch; }
.about-img { background-position: center; background-size: cover; min-height: 540px; }
.about-text { padding: 90px 70px; display: flex; flex-direction: column; justify-content: center; }
.about-text h2 { font-family: Georgia, serif; font-size: 42px; line-height: 1.2; font-weight: normal; margin-bottom: 24px; }
.about-text p { color: var(--muted); line-height: 1.95; font-size: 15px; margin-bottom: 18px; font-weight: 300; }
.about-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 30px; padding-top: 34px; border-top: 1px solid rgba(42,32,36,0.12); }
.stat-val { font-family: Georgia, serif; font-size: 34px; color: var(--rose); }
.stat-lbl { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); margin-top: 4px; }

/* SERVICE PRICE MENU */
.svc { padding: 100px 60px; background: var(--warm); }
.svc-head { text-align: center; margin-bottom: 56px; }
.svc-head h2 { font-family: Georgia, serif; font-size: 46px; font-weight: normal; }
.svc-head p { color: var(--muted); font-size: 14px; margin-top: 12px; letter-spacing: 1px; }
.svc-cat { max-width: 820px; margin: 0 auto 14px; font-size: 11px; letter-spacing: 4px; text-transform: uppercase; color: var(--rose); }
.price-list { max-width: 820px; margin: 0 auto 44px; }
.price-row { display: flex; align-items: baseline; gap: 12px; padding: 16px 0; border-bottom: 1px solid rgba(42,32,36,0.1); }
.price-name { font-family: Georgia, serif; font-size: 19px; white-space: nowrap; }
.price-dots { flex: 1; border-bottom: 1px dotted rgba(42,32,36,0.3); transform: translateY(-4px); }
.price-amt { font-size: 17px; color: var(--rose); white-space: nowrap; }
.price-desc { display: block; font-size: 12px; color: var(--muted); margin-top: 4px; font-weight: 300; }

/* TEAM */
.team { padding: 100px 60px; }
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; max-width: 1160px; margin: 0 auto; }
.stylist { text-align: center; }
.stylist img { width: 100%; height: 320px; object-fit: cover; border-radius: 10px; margin-bottom: 18px; transition: transform 0.3s; }
.stylist:hover img { transform: translateY(-5px); }
.stylist h3 { font-family: Georgia, serif; font-size: 22px; font-weight: normal; }
.stylist .role { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--rose); margin: 6px 0 10px; }
.stylist p { color: var(--muted); font-size: 13px; line-height: 1.7; font-weight: 300; }

/* GALLERY */
.gallery { padding: 100px 60px; text-align: center; background: var(--warm); }
.gallery h2 { font-family: Georgia, serif; font-size: 44px; font-weight: normal; margin-bottom: 14px; }
.gallery-sub { color: var(--muted); font-size: 14px; margin-bottom: 50px; }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; max-width: 1100px; margin: 0 auto; }
.gallery-grid img { width: 100%; height: 240px; object-fit: cover; border-radius: 10px; transition: transform 0.3s; }
.gallery-grid img:hover { transform: scale(1.04); }

/* BOOKING */
.booking { padding: 100px 60px; display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; max-width: 1180px; margin: 0 auto; }
.booking-text h2 { font-family: Georgia, serif; font-size: 46px; font-weight: normal; line-height: 1.2; margin-bottom: 18px; }
.booking-text p { color: var(--muted); line-height: 1.9; font-size: 15px; margin-bottom: 16px; font-weight: 300; }
.hours { margin-top: 28px; }
.hours h4 { font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: var(--rose); margin-bottom: 14px; }
.hours-row { display: flex; justify-content: space-between; padding: 9px 0; border-bottom: 1px solid rgba(42,32,36,0.1); font-size: 14px; }
.hours-row span:last-child { color: var(--muted); }
.form-card { background: #fff; padding: 44px; border-radius: 14px; box-shadow: 0 14px 40px rgba(42,32,36,0.08); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-group.full { grid-column: 1 / -1; }
label { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); }
input, select, textarea { background: var(--cream); border: 1px solid rgba(42,32,36,0.15); border-radius: 8px; color: var(--ink); padding: 13px 15px; font-size: 14px; font-family: inherit; outline: none; transition: border-color 0.3s; }
input:focus, select:focus, textarea:focus { border-color: var(--rose); }
.form-submit { margin-top: 18px; width: 100%; background: var(--rose); color: #fff; padding: 17px; border: none; border-radius: 30px; font-size: 11px; letter-spacing: 3px; text-transform: uppercase; font-weight: 700; cursor: pointer; transition: background 0.3s; }
.form-submit:hover { background: var(--rose-dark); }

/* CTA BAND */
.cta-band { background: var(--plum); color: var(--cream); text-align: center; padding: 84px 40px; }
.cta-band h2 { font-family: Georgia, serif; font-size: 42px; font-weight: normal; margin-bottom: 16px; }
.cta-band p { color: rgba(247,241,234,0.7); font-size: 15px; margin-bottom: 30px; font-weight: 300; }

/* FOOTER */
footer { background: var(--plum-dark); color: var(--cream); padding: 64px 60px 30px; display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; }
.footer-brand .logo-main { color: var(--cream); font-size: 26px; margin-bottom: 14px; }
.footer-brand p { font-size: 13px; line-height: 1.8; color: rgba(247,241,234,0.6); max-width: 280px; font-weight: 300; }
.footer-col h5 { font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: var(--rose); margin-bottom: 18px; }
.footer-col p, .footer-col a { display: block; font-size: 13px; line-height: 1.9; color: rgba(247,241,234,0.6); text-decoration: none; font-weight: 300; }
.footer-col a:hover { color: var(--cream); }
.footer-bottom { background: #140e10; text-align: center; padding: 18px; font-size: 11px; color: rgba(247,241,234,0.5); }

@media (max-width: 860px) {
  nav { padding: 20px 24px; }
  nav ul { display: none; }
  .about, .booking { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-content, .page-hero-content { padding-left: 28px; padding-right: 28px; }
  .promo-msg { display: none; }
  footer { grid-template-columns: 1fr; }
}
