:root {
  --primary: #ce508b;
  --secondary: #2a2b6d;
  --text: #000;
  --accent: #fff;
  --blush: #f3e7e7;
  --container: 1120px;
  --header-height: 90px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  line-height: 1.35;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
p { margin: 0 0 14.4px; }

.skip-link {
  position: fixed;
  left: 12px;
  top: -80px;
  z-index: 200;
  padding: 10px 14px;
  background: #fff;
}
.skip-link:focus { top: 12px; }

.container {
  width: min(var(--container), calc(100% - 40px)) !important;
  max-width: var(--container) !important;
  margin-inline: auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-height);
  background: #fff;
  box-shadow: 0 2px 20px rgb(0 0 0 / 50%);
}
.header-inner {
  width: calc(100% - 60px);
  height: 100%;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}
.logo-link { justify-self: start; }
.site-logo { width: 70px; height: 70px; object-fit: contain; filter: brightness(85%) contrast(90%) saturate(105%) hue-rotate(5deg); }
.desktop-nav { display: flex; align-items: center; gap: 38px; }
.desktop-nav a,
.mobile-nav a {
  font-family: "Montserrat", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
}
.desktop-nav a:hover,
.desktop-nav a.active,
.mobile-nav a:hover,
.mobile-nav a.active { color: var(--primary); }
.header-actions { justify-self: end; display: flex; align-items: center; gap: 16px; }
.menu-toggle {
  display: none;
  width: 38px;
  height: 38px;
  padding: 7px;
  border: 0;
  color: var(--secondary);
  background: transparent;
  cursor: pointer;
}
.menu-toggle svg { width: 100%; height: 100%; fill: currentColor; }
.mobile-nav {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  display: grid;
  max-height: 0;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 15px 15px rgb(0 0 0 / 35%);
  border-radius: 0 0 15px 15px;
  opacity: 0;
  transform: translateY(-8px);
  transition: max-height .3s ease-out, opacity .3s ease-out, transform .3s ease-out;
}
.mobile-nav.open { max-height: 320px; opacity: 1; transform: translateY(0); }
.mobile-nav a { padding: 14px 28px; background: #fff; }
.mobile-nav a:hover,
.mobile-nav a.active { background: var(--blush); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 13px 30px;
  border: 0;
  border-radius: 0;
  color: #fff;
  background: linear-gradient(90deg, var(--secondary), var(--primary));
  box-shadow: 0 0 10px rgb(0 0 0 / 50%);
  font-family: "Open Sans", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: .1em;
  text-transform: uppercase;
  transition: transform .6s, background .6s;
}
.btn:hover,
.btn:focus { background: linear-gradient(90deg, var(--primary), var(--secondary)); transform: scale(1.05); }

.sticky-social {
  position: fixed;
  z-index: 90;
  top: 24vh;
  left: 0;
  width: 34px;
  display: grid;
  gap: 4px;
}
.social-icon {
  width: 34px;
  height: 36px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--primary);
  border-radius: 0 3px 3px 0;
}
.social-icon:hover { background: var(--secondary); }
.social-icon svg { width: 18px; height: 18px; fill: currentColor; }

.home-hero,
.sub-hero {
  position: relative;
  isolation: isolate;
  display: grid;
  place-items: center;
  text-align: center;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.home-hero { min-height: 900px; background-image: url("images/banner-1a.webp"); }
.home-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("images/calligraphy_54-1.webp") center bottom / contain no-repeat;
  pointer-events: none;
}
.sub-hero { min-height: 572px; background-image: url("images/bg26-6.webp"); }
.sub-hero.contact-hero { min-height: 480px; }
.hero-content { position: relative; z-index: 1; width: min(1120px, calc(100% - 40px)); padding-top: 40px; }
.home-hero h1 {
  margin: 0 0 8px;
  font-family: "Open Sans", sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.2;
  text-transform: uppercase;
}
.home-hero h2 {
  margin: 0 0 22px;
  font-family: "Allura", sans-serif;
  font-size: 4.8rem;
  font-weight: 500;
  line-height: 1.2;
}
.hero-contact-list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 55px;
  margin: 12px 0 50px;
  font-family: "Montserrat", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
}
.hero-contact-list a,
.hero-contact-list span { display: inline-flex; align-items: center; gap: 8px; }
.hero-contact-list svg { width: 22px; height: 22px; fill: var(--primary); }
.hero-title-frame {
  width: min(650px, 100%);
  min-height: 245px;
  margin-inline: auto;
  display: grid;
  place-content: center;
  background: url("images/frame26c-02.webp") center / contain no-repeat;
}
.sub-hero h1 {
  margin: 0;
  font-family: "Allura", sans-serif;
  font-size: 4.8rem;
  font-weight: 500;
  line-height: 1.2;
}
.sub-hero p {
  max-width: 1120px;
  margin: -35px auto 0;
  font-size: 1.15rem;
}

.section { position: relative; padding: 80px 0; }
.framed-heading {
  position: relative;
  min-height: 160px;
  margin-bottom: 34px;
  border: 1px solid var(--blush);
  display: flex;
  align-items: center;
}
.framed-heading h2 {
  margin: 0 0 0 -78px;
  padding-inline: 0 30px;
  background: #fff;
  font-family: "Allura", sans-serif;
  font-size: 3.6rem;
  font-weight: 500;
  line-height: 1.2;
}
.framed-heading .btn { position: absolute; right: 20px; bottom: -23px; }
.intro-title {
  text-align: center;
  font-family: "Allura", sans-serif;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.2;
}
.short-rule { width: 48px; height: 1px; margin: 20px auto; background: #000; }
.about-copy { text-align: center; font-family: "Poppins", sans-serif; font-size: 1rem; }
.about-copy strong,
.footer-copy strong { color: var(--primary); }
.about-photo-wrap { position: relative; width: 100%; margin-top: 80px; aspect-ratio: 16 / 8.7; overflow: hidden; }
.about-photo-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("images/calligraphy_55.webp") center top / cover no-repeat;
  pointer-events: none;
}
.about-photo { width: 100%; height: 100%; object-fit: cover; }

.service-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.service-card {
  position: relative;
  min-height: 488px;
  overflow: hidden;
  background-position: center;
  background-size: cover;
}
.service-card::after { content: ""; position: absolute; inset: 0; background: rgb(0 0 0 / 4%); }
.service-card h3 {
  position: relative;
  z-index: 1;
  margin: 38px 40px;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.2;
}
.service-card.manicure { background-image: url("images/services-1b.webp"); }
.service-card.pedicure { background-image: url("images/services-3.webp"); }
.service-card.waxing { background-image: url("images/services-5.webp"); }

.home-gallery { min-height: 620px; }
.home-gallery::before {
  content: "";
  position: absolute;
  top: 100px;
  left: max(20px, calc((100% - 1120px) / 2 + 10px));
  width: 370px;
  height: 460px;
  background: url("images/calligraphy_74.webp") left top / cover no-repeat;
  pointer-events: none;
}
.home-gallery > .container { position: relative; z-index: 1; }
.masonry { position: relative; width: 100%; }
.masonry-item {
  position: absolute;
  overflow: hidden;
  cursor: zoom-in;
  transition: opacity .25s;
}
.masonry-item:hover { opacity: .86; }
.masonry-item img { width: 100%; height: 100%; object-fit: cover; }
.home-gallery .masonry { min-height: 560px; }

.testimonials {
  position: relative;
  isolation: isolate;
  min-height: 631px;
  display: flex;
  align-items: center;
  background: url("images/bg1.webp") center / cover no-repeat;
}
.testimonials::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: url("images/calligraphy_68.webp") left top / contain no-repeat;
  pointer-events: none;
}
.testimonial-box {
  position: relative;
  z-index: 1;
  min-height: 340px;
  border: 1px solid #777;
  padding: 95px 180px 55px;
  text-align: center;
  overflow: visible;
}
.testimonial-box > h2 {
  position: absolute;
  top: 45px;
  left: -55px;
  margin: 0;
  padding-right: 25px;
  background: transparent;
  font-family: "Allura", sans-serif;
  font-size: 3.6rem;
  font-weight: 500;
  line-height: 1.2;
}
.testimonial-viewport { overflow: hidden; }
.testimonial-track { display: flex; transition: transform 1.8s ease; }
.testimonial-slide { min-width: 100%; font-style: italic; }
.testimonial-slide blockquote { margin: 0 0 22px; }
.testimonial-slide strong { display: block; color: var(--primary); font-family: "Allura", sans-serif; font-size: 2rem; font-weight: 500; }
.testimonial-slide span { color: var(--primary); font-family: "Montserrat", sans-serif; font-weight: 700; }
.testimonial-dots { display: flex; justify-content: center; gap: 8px; margin-top: 24px; }
.testimonial-dot { width: 8px; height: 8px; border: 0; border-radius: 50%; background: #d9b4c5; padding: 0; }
.testimonial-dot.active { background: var(--primary); }

.menu-page { padding: 0; }
.menu-section {
  position: relative;
  margin-bottom: 0;
  padding: 114px 40px 60px;
  border: 0;
}
.menu-section:last-child { margin-bottom: 0; }
.menu-section::before {
  content: "";
  position: absolute;
  inset: 72px 0 60px;
  border: 1px solid var(--primary);
  pointer-events: none;
}
.menu-section > * { position: relative; }
.menu-section h2 {
  margin: 0 0 36px;
  padding: 14px 18px;
  color: #fff;
  background: linear-gradient(90deg, var(--primary), #f2cfde 72%, #fff);
  font-family: "Allura", sans-serif;
  font-size: 3.6rem;
  font-weight: 500;
  line-height: 1.2;
}
.menu-section h3 {
  margin: 28px 0 14px;
  color: var(--primary);
  font-family: "Allura", sans-serif;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.2;
}
.price-item { margin-bottom: 16px; }
.price-row { display: flex; align-items: baseline; gap: 10px; font-size: 1rem; font-weight: 600; }
.price-row::after { content: ""; flex: 1; border-bottom: 1px dotted #888; order: 2; }
.price-row .name { order: 1; }
.price-row .price { order: 3; white-space: nowrap; }
.price-item p { margin: 8px 0 0; font-family: "Open Sans", sans-serif; font-size: .92rem; font-style: italic; line-height: 1.45; }
.price-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 36px; }

@media (min-width: 1025px) {
  .about-section { padding-block: 60px; }
  .services-preview { padding-block: 49px; }
  .home-gallery .masonry { width: 720px; margin-inline: auto; }
}

.gallery-page { padding: 80px 0 110px; }
.gallery-page .masonry { min-height: 1200px; }
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: none;
  place-items: center;
  padding: 30px;
  background: rgb(0 0 0 / 88%);
}
.lightbox.open { display: grid; }
.lightbox img { max-width: 94vw; max-height: 90vh; object-fit: contain; }
.lightbox-close { position: absolute; top: 16px; right: 22px; border: 0; color: #fff; background: transparent; font-size: 42px; line-height: 1; cursor: pointer; }

.contact-section { padding: 80px 0; }
.contact-panel { display: grid; grid-template-columns: 1fr 1fr; height: 416px; overflow: hidden; }
.contact-photo { width: 100%; height: 100%; min-height: 0; object-fit: cover; object-position: center; }
.contact-copy { min-height: 0; display: grid; place-content: center; padding: 60px; background: var(--blush); text-align: center; }
.contact-copy h2 { margin: 0 0 26px; color: var(--primary); font-size: 1.1rem; font-weight: 700; }

.site-footer { background: var(--blush); }
.footer-main { padding: 60px 0; }
.footer-grid { display: grid; grid-template-columns: 25fr 20fr 20fr 28fr; gap: 26px; }
.footer-column h2 {
  margin: 0 0 22px;
  color: var(--primary);
  font-family: "Allura", sans-serif;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.2;
}
.footer-copy { font-size: 1.05rem; line-height: 1.25; }
.contact-line { display: grid; grid-template-columns: 24px 1fr; gap: 8px; margin-bottom: 9px; align-items: start; }
.contact-line svg { width: 22px; height: 22px; fill: var(--primary); }
.footer-socials { display: flex; gap: 8px; margin-top: 18px; }
.footer-socials .social-icon { width: 42px; height: 42px; border-radius: 50%; }
.seo-links { display: grid; gap: 5px; margin-top: 22px; color: var(--primary); font-weight: 600; }
.map-frame { width: 100%; height: 280px; border: 0; }
.copyright { padding: 20px; background: #fff; text-align: center; }
.copyright strong { color: var(--primary); }

@media (max-width: 1024px) {
  :root { --container: 1024px; }
  .container { width: calc(100% - 60px) !important; }
  .header-inner { width: calc(100% - 60px); }
  .home-hero { min-height: 760px; }
  .home-hero h2,
  .sub-hero h1 { font-size: 4.2rem; }
  .framed-heading h2,
  .menu-section h2,
  .testimonial-box > h2 { font-size: 3.2rem; }
  .service-cards { gap: 24px; }
  .testimonial-box { padding-inline: 100px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 50px 40px; }
}

@media (max-width: 767px) {
  :root { --container: 767px; --header-height: 70px; }
  .container { width: calc(100% - 40px) !important; }
  .header-inner { width: calc(100% - 40px); grid-template-columns: 40% 1fr auto; gap: 10px; }
  .site-logo { width: 50px; height: 50px; }
  .desktop-nav { display: none; }
  .menu-toggle { display: block; justify-self: center; }
  .header-actions .btn { min-height: 36px; padding: 10px 18px; font-size: .8rem; }
  .sticky-social { width: 30px; gap: 4px; }
  .sticky-social .social-icon { width: 30px; height: 34px; }
  .sticky-social svg { width: 16px; height: 16px; }
  .home-hero { min-height: 560px; background-position: 58% center; }
  .home-hero h1 { font-size: 1.2rem; }
  .home-hero h2 { font-size: 3.6rem; }
  .hero-contact-list { flex-wrap: wrap; gap: 6px 24px; margin: 6px auto 34px; max-width: 330px; font-size: 1rem; }
  .sub-hero,
  .sub-hero.contact-hero { min-height: 430px; background-position: center; }
  .hero-title-frame { min-height: 190px; }
  .sub-hero h1 { font-size: 3.6rem; }
  .sub-hero p { margin-top: -24px; padding-inline: 16px; font-size: 1rem; }
  .section { padding: 60px 0; }
  .framed-heading { min-height: 124px; }
  .framed-heading h2 { margin-left: -12px; font-size: 2.8rem; }
  .framed-heading .btn { right: 20px; }
  .about-photo-wrap { margin-top: 50px; aspect-ratio: 4 / 3; }
  .service-cards { grid-template-columns: 1fr; }
  .service-card { min-height: 430px; }
  .home-gallery { min-height: 1180px; }
  .home-gallery .masonry { min-height: 1100px; }
  .testimonials { min-height: 650px; }
  .testimonial-box { min-height: 430px; padding: 120px 28px 45px; }
  .testimonial-box > h2 { top: 44px; left: -14px; font-size: 2.8rem; }
  .menu-page { padding: 50px 0 80px; }
  .menu-section { min-height: 0; margin-bottom: 70px; padding: 20px; border: 1px solid var(--primary); }
  .menu-section::before { display: none; }
  .menu-section h2 { margin-bottom: 28px; padding: 12px; font-size: 2.8rem; }
  .price-grid { grid-template-columns: 1fr; }
  .price-row { gap: 7px; font-size: .93rem; }
  .price-item p { font-size: .86rem; }
  .gallery-page { padding: 50px 0 80px; }
  .gallery-page .masonry { min-height: 2700px; }
  .contact-section { padding: 60px 0; }
  .contact-panel { grid-template-columns: 1fr; }
  .contact-panel { height: auto; }
  .contact-photo { min-height: 390px; }
  .contact-copy { min-height: 350px; padding: 42px 26px; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-main { padding: 60px 0; }
  .copyright { font-size: .9rem; }
}
