:root {
  --bg: #151116;
  --bg-soft: #221929;
  --surface: #201625;
  --surface-2: #2a1d31;
  --ink: #f6f0f7;
  --muted: #cdbcd1;
  --accent: #f186b7;
  --accent-2: #ffd6ea;
  --line: rgba(255, 226, 243, 0.2);
  --radius: 20px;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  font-family: "Outfit", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: radial-gradient(1000px 600px at 85% -5%, rgba(241, 134, 183, 0.22), transparent 60%), linear-gradient(180deg, #120d13, var(--bg));
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.1;
  font-family: "Playfair Display", Georgia, serif;
  letter-spacing: -0.01em;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  width: 100%;
  display: block;
  object-fit: cover;
}

.skipLink {
  position: fixed;
  left: 12px;
  top: -44px;
  z-index: 300;
  background: #fff;
  color: #21141f;
  border-radius: 999px;
  padding: 8px 12px;
  font-weight: 700;
}

.skipLink:focus {
  top: 12px;
}

.salonHeader {
  position: sticky;
  top: 0;
  z-index: 220;
  backdrop-filter: blur(10px);
  background: rgba(21, 17, 22, 0.88);
  border-bottom: 1px solid rgba(255, 217, 237, 0.15);
}

.headerInner,
.quickLinks,
.mobileNav {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
}

.headerInner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.logo {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.logo small {
  display: block;
  margin-top: 2px;
  font-family: "Outfit", "Segoe UI", Arial, sans-serif;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
}

.desktopNav {
  display: flex;
  align-items: center;
  gap: 18px;
}

.desktopNav a {
  color: #f3ddeb;
  font-weight: 600;
  border-bottom: 2px solid transparent;
  padding-bottom: 5px;
}

.desktopNav a:hover {
  border-color: rgba(241, 134, 183, 0.5);
}

.menuBtn {
  display: none;
  border: 1px solid var(--line);
  background: transparent;
  color: #fff;
  font-weight: 700;
  border-radius: 10px;
  padding: 8px 11px;
}

.quickLinks {
  min-height: 38px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 14px;
}

.quickLinks a {
  font-size: 13px;
  color: #f8dce9;
  text-decoration: underline;
  text-decoration-color: rgba(241, 134, 183, 0.5);
  text-underline-offset: 3px;
}

.mobileNav {
  display: grid;
  gap: 8px;
  padding-bottom: 12px;
}

.mobileNav a {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  padding: 9px 11px;
  color: #f8e7f0;
  font-weight: 700;
}

main {
  max-width: 1160px;
  margin: 0 auto;
  padding: 30px 20px 0;
}

.hero {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  min-height: 560px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
}

.heroBg {
  position: absolute;
  inset: 0;
  height: 100%;
}

.heroOverlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(16, 12, 17, 0.86) 0%, rgba(16, 12, 17, 0.45) 52%, rgba(16, 12, 17, 0.2) 100%);
}

.heroContent,
.bookingTeaser {
  position: relative;
  z-index: 2;
}

.heroContent {
  padding: 34px;
  max-width: 690px;
}

.tag {
  display: inline-flex;
  background: rgba(255, 224, 240, 0.12);
  border: 1px solid rgba(255, 224, 240, 0.32);
  color: #ffe9f5;
  border-radius: 999px;
  padding: 7px 11px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.hero h1 {
  margin-top: 14px;
  font-size: clamp(38px, 6vw, 72px);
  max-width: 12ch;
}

.hero p {
  margin-top: 12px;
  color: #f0dce8;
  max-width: 56ch;
}

.heroCtas {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.btn {
  border: 1px solid transparent;
  border-radius: 12px;
  padding: 10px 14px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
}

.btnPrimary {
  color: #371425;
  background: linear-gradient(145deg, var(--accent-2), var(--accent));
  box-shadow: 0 10px 20px rgba(241, 134, 183, 0.28);
}

.btnGhost {
  color: #f8e5f0;
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 226, 243, 0.25);
}

.bookingTeaser {
  margin: 20px;
  width: 290px;
  padding: 16px;
  border-radius: 16px;
  background: rgba(25, 16, 29, 0.86);
  border: 1px solid rgba(255, 224, 240, 0.25);
}

.bookingTeaser h3 {
  font-size: 24px;
}

.bookingTeaser ul {
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.bookingTeaser li {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  color: #f8deeb;
  font-size: 14px;
}

.bookingTeaser .btn {
  margin-top: 12px;
  width: 100%;
  justify-content: center;
}

.section {
  margin-top: 42px;
}

.sectionHead h2 {
  font-size: 42px;
}

.sectionHead p {
  margin-top: 10px;
  color: var(--muted);
  max-width: 62ch;
}

.serviceGrid,
.packageGrid,
.bookingLayout {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.serviceCard,
.packageCard,
.bookingCard {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: linear-gradient(170deg, var(--surface-2), var(--surface));
}

.serviceCard img {
  height: 190px;
}

.serviceCard div {
  padding: 13px;
}

.serviceCard p {
  margin: 7px 0 0;
  color: var(--muted);
}

.serviceCard span {
  margin-top: 8px;
  display: inline-block;
  color: #f6cfe5;
  font-weight: 700;
  font-size: 13px;
}

.masonry {
  margin-top: 14px;
  columns: 3 220px;
  column-gap: 12px;
}

.masonry img {
  margin: 0 0 12px;
  border-radius: 14px;
  border: 1px solid var(--line);
  break-inside: avoid;
}

.packageCard {
  padding: 16px;
}

.packageCard .price {
  margin-top: 8px;
  font-size: 24px;
  color: #f8d3e7;
  font-weight: 700;
}

.packageCard ul {
  margin: 10px 0 0;
  padding-left: 18px;
  color: var(--muted);
}

.packageCard li + li {
  margin-top: 6px;
}

.packageCard.featured {
  border-color: rgba(241, 134, 183, 0.55);
  box-shadow: 0 12px 28px rgba(241, 134, 183, 0.16);
}

.bookingLayout {
  grid-template-columns: 1.3fr 0.7fr;
}

.bookingCard {
  padding: 16px;
}

.waForm {
  margin-top: 10px;
  display: grid;
  gap: 10px;
}

.waForm label {
  display: grid;
  gap: 5px;
  font-size: 13px;
  color: var(--muted);
  font-weight: 600;
}

.waForm input,
.waForm select,
.waForm textarea {
  width: 100%;
  color: #f7ecf2;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 10px 11px;
  font: inherit;
}

.waForm .row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.formStatus {
  margin: 10px 0 0;
  min-height: 18px;
  font-size: 12px;
  color: var(--muted);
}

.callout {
  display: grid;
  gap: 10px;
  align-content: start;
}

.tiny {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.siteFooter {
  margin-top: 34px;
  padding: 22px 0 34px;
  display: flex;
  justify-content: space-between;
  gap: 8px;
  color: var(--muted);
  flex-wrap: wrap;
}

@media (max-width: 1080px) {
  .hero {
    grid-template-columns: 1fr;
    align-items: end;
  }

  .bookingTeaser {
    width: auto;
    margin-top: 0;
  }

  .serviceGrid,
  .packageGrid,
  .bookingLayout,
  .waForm .row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .desktopNav {
    display: none;
  }

  .menuBtn {
    display: inline-flex;
  }
}

@media (max-width: 680px) {
  .headerInner,
  .quickLinks,
  .mobileNav,
  main {
    padding-left: 14px;
    padding-right: 14px;
  }

  .heroContent {
    padding: 22px;
  }

  .hero h1 {
    font-size: clamp(34px, 12vw, 54px);
  }

  .sectionHead h2 {
    font-size: 33px;
  }

  .quickLinks a {
    font-size: 12px;
  }
}
