:root {
  --pink: #e91e63;
  --hot-pink: #ff4fd8;
  --rose: #fff1f6;
  --blush: #fff8fa;
  --ink: #171319;
  --charcoal: #2a2530;
  --muted: #6f6670;
  --line: #f0d7df;
  --teal: #2aae9f;
  --wood: #9b5a2e;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(37, 18, 31, 0.12);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--blush);
  font-family: "Poppins", Arial, sans-serif;
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
}

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

.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.top-strip {
  background: var(--ink);
  color: var(--white);
  font-size: 0.86rem;
}

.top-strip .container {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 8px 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 248, 250, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  font-weight: 700;
  line-height: 1;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: var(--white);
  background: radial-gradient(circle at 28% 24%, var(--hot-pink), var(--pink) 58%, #9d0d3b);
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(233, 30, 99, 0.28);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  border-radius: 999px;
  padding: 10px 13px;
  color: var(--charcoal);
  font-weight: 600;
  font-size: 0.94rem;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--pink);
  background: var(--rose);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 800;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border: 0;
  border-radius: var(--radius);
  padding: 12px 18px;
  font-weight: 700;
  color: var(--white);
  background: var(--pink);
  box-shadow: 0 12px 28px rgba(233, 30, 99, 0.22);
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn.dark {
  background: var(--ink);
  box-shadow: none;
}

.btn.light {
  color: var(--pink);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: none;
}

.btn.whatsapp {
  background: #128c7e;
}

.hero {
  position: relative;
  min-height: 680px;
  display: grid;
  align-items: end;
  color: var(--white);
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: url("../images/salon-wide.jpeg") center/cover;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(23, 19, 25, 0.88), rgba(23, 19, 25, 0.44), rgba(233, 30, 99, 0.14));
}

.hero-inner {
  padding: 120px 0 58px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px;
  color: var(--hot-pink);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  line-height: 1.08;
}

h1 {
  max-width: 780px;
  font-size: clamp(3rem, 9vw, 6.6rem);
}

.hero p {
  max-width: 620px;
  margin: 18px 0 0;
  font-size: clamp(1rem, 2.2vw, 1.22rem);
}

.hero-actions,
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.quick-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 44px;
}

.quick-card,
.service-card,
.feature,
.contact-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
}

.quick-card {
  padding: 18px;
  color: var(--ink);
}

.quick-card strong {
  display: block;
  font-size: 1.04rem;
}

.quick-card span {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.92rem;
}

.section {
  padding: 78px 0;
}

.section.alt {
  background: var(--white);
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
}

.section-head h2 {
  max-width: 680px;
  font-size: clamp(2.1rem, 5vw, 4rem);
}

.section-head p {
  max-width: 430px;
  margin: 0;
  color: var(--muted);
}

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

.service-card {
  overflow: hidden;
  background: var(--white);
}

.service-card img {
  width: 100%;
  height: 170px;
  object-fit: cover;
}

.service-card .pad {
  padding: 18px;
}

.service-card h3 {
  font-size: 1.35rem;
}

.service-card p {
  margin: 8px 0 15px;
  color: var(--muted);
  font-size: 0.94rem;
}

.text-link {
  color: var(--pink);
  font-weight: 800;
}

.split {
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  gap: 34px;
  align-items: center;
}

.image-pair {
  display: grid;
  grid-template-columns: 1fr 0.74fr;
  gap: 14px;
}

.image-pair img,
.wide-image {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  object-fit: cover;
}

.image-pair img:first-child {
  height: 480px;
}

.image-pair img:last-child {
  height: 360px;
  margin-top: 52px;
}

.copy h2 {
  font-size: clamp(2.1rem, 5vw, 4rem);
}

.copy p {
  color: var(--muted);
  margin: 16px 0 0;
}

.check-list {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  padding-left: 28px;
  position: relative;
  font-weight: 600;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--pink);
  box-shadow: 0 0 0 5px var(--rose);
}

.cta-band {
  color: var(--white);
  background: linear-gradient(110deg, var(--ink), #3b1426 50%, var(--pink));
}

.cta-band .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.cta-band h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
}

.cta-band p {
  max-width: 640px;
  margin: 12px 0 0;
}

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

.gallery-grid img {
  width: 100%;
  height: 270px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.gallery-grid img.wide {
  grid-column: span 2;
}

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

.feature {
  padding: 22px;
  background: var(--white);
}

.feature .num {
  color: var(--pink);
  font-weight: 900;
}

.feature h3 {
  margin-top: 8px;
  font-size: 1.26rem;
}

.feature p {
  color: var(--muted);
  margin: 8px 0 0;
}

.page-hero {
  padding: 82px 0 58px;
  color: var(--white);
  background: linear-gradient(120deg, rgba(23, 19, 25, 0.9), rgba(233, 30, 99, 0.74)), url("../images/mirror-station.jpeg") center/cover;
}

.page-hero h1 {
  max-width: 850px;
}

.page-hero p {
  max-width: 650px;
  margin: 18px 0 0;
}

.service-list {
  display: grid;
  gap: 18px;
}

.service-row {
  display: grid;
  grid-template-columns: 260px 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.service-row img {
  width: 100%;
  height: 180px;
  border-radius: var(--radius);
  object-fit: cover;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 22px;
}

.contact-card {
  padding: 24px;
  background: var(--white);
}

.contact-card h3 {
  font-size: 1.45rem;
}

.contact-card p {
  margin: 10px 0 0;
  color: var(--muted);
}

.map-frame {
  min-height: 360px;
  border: 0;
  border-radius: var(--radius);
  width: 100%;
  box-shadow: var(--shadow);
}

.site-footer {
  padding: 42px 0 92px;
  color: var(--white);
  background: var(--ink);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 28px;
}

.site-footer h3 {
  font-size: 1.35rem;
}

.site-footer p,
.site-footer a {
  color: rgba(255, 255, 255, 0.76);
}

.footer-links {
  display: grid;
  gap: 8px;
}

.floating-actions {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 40;
  display: grid;
  gap: 10px;
}

.float-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  color: var(--white);
  font-weight: 900;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.22);
}

.float-btn.call {
  background: var(--pink);
}

.float-btn.wa {
  background: #128c7e;
}

.mobile-bar {
  display: none;
}

@media (max-width: 1040px) {
  .services-grid,
  .features {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 820px) {
  .top-strip .container {
    display: grid;
  }

  .menu-toggle {
    display: inline-grid;
    place-items: center;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px 16px 18px;
    background: var(--white);
    border-bottom: 1px solid var(--line);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    border-radius: var(--radius);
  }

  .desktop-cta {
    display: none;
  }

  .hero {
    min-height: 630px;
  }

  .hero-inner {
    padding: 84px 0 36px;
  }

  .quick-cards,
  .split,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .section-head {
    display: block;
  }

  .section-head p {
    margin-top: 12px;
  }

  .service-row {
    grid-template-columns: 1fr;
  }

  .service-row img {
    height: 230px;
  }

  .cta-band .container {
    display: block;
  }

  .image-pair {
    grid-template-columns: 1fr;
  }

  .image-pair img:first-child,
  .image-pair img:last-child {
    height: 320px;
    margin-top: 0;
  }

  .floating-actions {
    display: none;
  }

  .mobile-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 45;
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: var(--white);
    border-top: 1px solid var(--line);
    box-shadow: 0 -10px 28px rgba(0, 0, 0, 0.12);
  }

  .mobile-bar a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-height: 58px;
    color: var(--white);
    font-weight: 800;
  }

  .mobile-bar .call {
    background: var(--pink);
  }

  .mobile-bar .wa {
    background: #128c7e;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 24px, 1120px);
  }

  .brand {
    font-size: 1.2rem;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .hero {
    min-height: 610px;
  }

  h1 {
    font-size: clamp(2.65rem, 15vw, 4rem);
  }

  .hero-actions .btn,
  .cta-row .btn {
    width: 100%;
  }

  .services-grid,
  .features,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid img.wide {
    grid-column: auto;
  }

  .gallery-grid img,
  .service-card img {
    height: 230px;
  }

  .section {
    padding: 56px 0;
  }
}
