:root {
  --bg: #fff8f6;
  --surface: #ffffff;
  --surface-2: #f9ebe8;
  --text: #2b2424;
  --muted: #766766;
  --accent: #d9897d;
  --accent-dark: #b96e62;
  --accent-soft: #f2c9c1;
  --gold: #d9b06b;
  --border: rgba(95, 62, 60, 0.14);
  --shadow: 0 22px 60px rgba(75, 45, 40, 0.12);
  --radius: 28px;
  --font-serif: Georgia, "Times New Roman", serif;
  --font-sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(242,201,193,.35), transparent 32rem),
    linear-gradient(180deg, #fff, var(--bg));
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: 78px;
  padding: 0 7vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 248, 246, 0.84);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
}

.brand {
  display: flex;
  gap: 12px;
  align-items: center;
}

.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--accent-soft), #fff);
  color: var(--accent-dark);
  font-family: var(--font-serif);
  font-weight: 700;
  border: 1px solid var(--border);
}

.brand strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.3rem;
  line-height: 1;
}

.brand small {
  color: var(--muted);
  letter-spacing: .18em;
  text-transform: uppercase;
  font-size: .65rem;
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: .86rem;
  font-weight: 650;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.nav a { color: #554442; }
.nav a:hover { color: var(--accent-dark); }

.nav-cta,
.btn {
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 13px 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 750;
  cursor: pointer;
  transition: .2s ease;
}

.nav-cta,
.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: white !important;
  box-shadow: 0 12px 30px rgba(185,110,98,.22);
}

.btn-primary:hover,
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(185,110,98,.28);
}

.btn-ghost {
  background: rgba(255,255,255,.55);
  border-color: rgba(185,110,98,.35);
  color: var(--accent-dark);
}

.btn-ghost:hover {
  background: white;
  transform: translateY(-2px);
}

.nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}
.nav-toggle span {
  width: 26px;
  height: 2px;
  background: var(--text);
}

.hero {
  min-height: calc(100vh - 78px);
  position: relative;
  display: grid;
  align-items: center;
  padding: 8vw 7vw;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255,248,246,.97) 0%, rgba(255,248,246,.85) 44%, rgba(255,248,246,.2) 100%),
    url("assets/hero-salon.jpg") center right / cover no-repeat;
  z-index: -1;
}

.hero-content {
  max-width: 720px;
}

.eyebrow {
  color: var(--accent-dark);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .17em;
  font-size: .75rem;
  margin: 0 0 16px;
}

h1, h2 {
  font-family: var(--font-serif);
  font-weight: 500;
  margin: 0;
  line-height: 1.05;
}

h1 {
  font-size: clamp(3rem, 7vw, 6.9rem);
  letter-spacing: -0.04em;
}

h1 span { color: var(--accent-dark); }
h2 {
  font-size: clamp(2.2rem, 4vw, 4.4rem);
  letter-spacing: -0.035em;
}

.hero-text {
  max-width: 590px;
  color: var(--muted);
  font-size: 1.15rem;
  line-height: 1.8;
  margin: 28px 0;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 42px;
}

.trust-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.trust-row span {
  padding: 12px 16px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.65);
  border-radius: 999px;
  color: #6d5957;
  font-weight: 700;
}

.section {
  padding: 95px 7vw;
}

.section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 46px;
}

.section-head p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.service-card {
  border: 1px solid var(--border);
  background: rgba(255,255,255,.78);
  border-radius: 24px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 42% 1fr;
  gap: 16px;
  padding: 12px;
  align-items: center;
  box-shadow: 0 14px 36px rgba(75,45,40,.07);
  transition: .2s ease;
  position: relative;
}

.service-card:hover,
.service-card.selected {
  transform: translateY(-4px);
  border-color: rgba(217,137,125,.62);
  box-shadow: var(--shadow);
}

.service-card.selected::after {
  content: "✓";
  position: absolute;
  top: 12px;
  right: 12px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--accent-dark);
  color: white;
  display: grid;
  place-items: center;
  font-weight: 900;
}

.service-card img {
  height: 175px;
  width: 100%;
  object-fit: cover;
  border-radius: 18px;
}

.service-card h3 {
  margin: 0 0 6px;
  font-size: 1.15rem;
}
.service-card p {
  margin: 0 0 10px;
  color: var(--muted);
}
.service-card strong,
.service-card small {
  display: block;
}
.service-card strong { color: var(--accent-dark); }
.service-card small { color: var(--muted); margin-top: 4px; }
.service-card button {
  margin-top: 12px;
  padding: 10px 14px;
  border: 0;
  border-radius: 999px;
  background: var(--surface-2);
  color: var(--accent-dark);
  font-weight: 800;
  cursor: pointer;
}

.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 620px;
  background: linear-gradient(135deg, #fff, var(--surface-2));
}

.split-image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.split-content {
  padding: 8vw 7vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.split-content p {
  color: var(--muted);
  line-height: 1.8;
  font-size: 1.05rem;
}

.feature-list {
  margin-top: 28px;
  display: grid;
  gap: 14px;
}
.feature-list div {
  background: rgba(255,255,255,.66);
  border: 1px solid var(--border);
  padding: 18px;
  border-radius: 20px;
}
.feature-list strong { display: block; }
.feature-list span { color: var(--muted); }

.price-section {
  background: #fff;
}

.price-card {
  max-width: 1050px;
  margin: 0 auto;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 34px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  box-shadow: var(--shadow);
}

.price-group h3 {
  color: var(--accent-dark);
  margin: 0 0 14px;
}
.price-group p {
  margin: 0;
  padding: 13px 0;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px dashed rgba(95,62,60,.18);
}
.price-note {
  text-align: center;
  color: var(--muted);
  margin-top: 22px;
}

.filter-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.filter-row button {
  border: 1px solid var(--border);
  background: rgba(255,255,255,.76);
  color: var(--muted);
  border-radius: 999px;
  padding: 10px 18px;
  cursor: pointer;
  font-weight: 800;
}
.filter-row button.active {
  background: var(--accent-dark);
  color: #fff;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.gallery-grid img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 22px;
  box-shadow: 0 14px 36px rgba(75,45,40,.09);
  transition: .2s ease;
}

.gallery-grid img:hover {
  transform: scale(1.025);
}

.booking-section {
  padding: 100px 7vw;
  background:
    linear-gradient(rgba(72, 38, 35, .64), rgba(72, 38, 35, .64)),
    url("assets/booking-flatlay.jpg") center / cover no-repeat;
}

.booking-card {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 36px;
  padding: 42px;
  border-radius: 34px;
  background: rgba(255,248,246,.94);
  box-shadow: 0 30px 80px rgba(31,20,20,.24);
}

.booking-card p { color: var(--muted); line-height: 1.7; }
.booking-card code {
  background: #fff;
  border: 1px solid var(--border);
  padding: 3px 7px;
  border-radius: 8px;
}

.booking-form {
  display: grid;
  gap: 16px;
}
.booking-form label {
  display: grid;
  gap: 8px;
  font-weight: 750;
  color: #5c4a49;
}
.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  border: 1px solid rgba(95,62,60,.2);
  border-radius: 16px;
  padding: 14px 16px;
  font: inherit;
  background: #fff;
  outline: none;
}
.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  border-color: var(--accent-dark);
  box-shadow: 0 0 0 4px rgba(217,137,125,.18);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.full { width: 100%; }

.contact-section {
  padding: 90px 7vw;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 38px;
  align-items: center;
  background: #fff;
}

.contact-section p { color: var(--muted); line-height: 1.7; }
.contact-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.map-placeholder {
  min-height: 360px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  display: grid;
  place-items: center;
  text-align: center;
  background:
    linear-gradient(45deg, rgba(255,255,255,.72), rgba(255,248,246,.88)),
    repeating-linear-gradient(45deg, transparent 0 20px, rgba(185,110,98,.08) 20px 22px);
  color: var(--accent-dark);
  box-shadow: var(--shadow);
}
.map-placeholder span {
  display: block;
  font-family: var(--font-serif);
  font-size: 2.2rem;
}
.map-placeholder small {
  color: var(--muted);
  max-width: 270px;
}

.footer {
  padding: 28px 7vw;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  background: #2b2424;
  color: rgba(255,255,255,.78);
}
.footer a { color: white; }

.floating-whatsapp {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 60;
  border-radius: 999px;
  padding: 15px 20px;
  background: #25D366;
  color: white;
  font-weight: 900;
  box-shadow: 0 18px 36px rgba(0,0,0,.22);
}

@media (max-width: 1050px) {
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 800px) {
  .site-header { padding: 0 20px; }
  .nav-toggle { display: flex; }
  .nav {
    position: fixed;
    top: 78px;
    left: 16px;
    right: 16px;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    border-radius: 22px;
    border: 1px solid var(--border);
    background: rgba(255,248,246,.98);
    box-shadow: var(--shadow);
    transform: translateY(-130%);
    opacity: 0;
    pointer-events: none;
    transition: .2s ease;
  }
  .nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav a { padding: 10px; }
  .hero {
    min-height: 760px;
    padding: 86px 22px;
  }
  .hero-bg {
    background:
      linear-gradient(180deg, rgba(255,248,246,.97) 0%, rgba(255,248,246,.88) 55%, rgba(255,248,246,.45) 100%),
      url("assets/hero-salon.jpg") center / cover no-repeat;
  }
  .section { padding: 72px 22px; }
  .service-grid,
  .split-section,
  .price-card,
  .booking-card,
  .contact-section {
    grid-template-columns: 1fr;
  }
  .split-image img { max-height: 420px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .booking-section { padding: 72px 22px; }
  .booking-card { padding: 24px; }
}

@media (max-width: 520px) {
  h1 { font-size: 3.2rem; }
  .hero-actions .btn { width: 100%; }
  .trust-row span { width: 100%; text-align: center; }
  .service-card {
    grid-template-columns: 1fr;
  }
  .service-card img { height: 230px; }
  .form-row { grid-template-columns: 1fr; }
  .gallery-grid { gap: 10px; }
  .footer {
    flex-direction: column;
  }
  .floating-whatsapp {
    left: 20px;
    right: 20px;
    text-align: center;
  }
}
