:root {
  --ink: #211d19;
  --gold: #b9882d;
  --gold2: #e5c270;
  --cream: #f7f1e8;
  --white: #fff;
  --muted: #6f675f;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  color: var(--ink);
  font-family: Inter, Arial, sans-serif;
  background: #fff;
}
h1,
h2,
h3 {
  font-family: "Cormorant Garamond", serif;
  margin: 0;
}
a {
  color: inherit;
  text-decoration: none;
}
.topbar {
  height: 86px;
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 0 5vw;
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  z-index: 10;
  border-bottom: 1px solid #eee7dd;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-right: auto;
  font-family: "Cormorant Garamond";
  font-weight: 700;
  font-size: 1.2rem;
}
.brand img {
  width: 58px;
  height: 58px;
  object-fit: cover;
  border-radius: 50%;
}
.topbar nav {
  display: flex;
  gap: 28px;
  font-size: 0.92rem;
}
.topbar nav a:hover {
  color: var(--gold);
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #9d6b16, #d6ad52);
  color: white;
  padding: 15px 23px;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: 0 10px 25px #9d6b1630;
}
.btn.small {
  padding: 12px 18px;
  font-size: 0.84rem;
}
.menu {
  display: none;
  border: 0;
  background: none;
  font-size: 1.5rem;
}
.hero {
  min-height: calc(100vh - 86px);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero::before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 4%;
  right: -4%;
  width: 36%;
  height: 80%;
  pointer-events: none;
  border-radius: 50%;
  background: radial-gradient(
    ellipse at center,
    rgba(255, 244, 207, 0.46) 0%,
    rgba(241, 186, 75, 0.2) 34%,
    rgba(255, 255, 255, 0.04) 58%,
    transparent 72%
  );
  filter: blur(9px);
  mix-blend-mode: screen;
  animation: mirrorLightPulse 4.8s ease-in-out infinite;
}
.hero::after {
  content: "";
  position: absolute;
  z-index: 1;
  top: 12%;
  right: 7%;
  width: 34%;
  height: 68%;
  pointer-events: none;
  border-radius: 50%;
  background:
    linear-gradient(
      112deg,
      transparent 27%,
      rgba(255, 243, 205, 0.04) 40%,
      rgba(255, 255, 255, 0.24) 48%,
      rgba(229, 185, 79, 0.1) 55%,
      transparent 67%
    ),
    radial-gradient(circle at 70% 66%, rgba(255, 220, 142, 0.18), transparent 17%);
  filter: blur(13px);
  mix-blend-mode: screen;
  animation: mirrorReflectionPass 8s ease-in-out infinite;
}
.hero-shade {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(28, 23, 18, 0.82) 0%,
    rgba(28, 23, 18, 0.58) 38%,
    rgba(28, 23, 18, 0.05) 72%
  );
}
.hero-atmosphere {
  position: absolute;
  z-index: 3;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.steam {
  position: absolute;
  bottom: 5%;
  width: 28px;
  height: 150px;
  border-radius: 50%;
  background: linear-gradient(
    to top,
    transparent,
    rgba(255, 255, 255, 0.2) 40%,
    rgba(255, 250, 235, 0.46) 68%,
    transparent
  );
  filter: blur(10px);
  opacity: 0;
  transform-origin: bottom center;
  animation: steamRise 7s ease-in-out infinite;
}
.steam-one {
  left: 58%;
}
.steam-two {
  left: 64%;
  height: 125px;
  animation-delay: -2.4s;
  animation-duration: 8.2s;
}
.steam-three {
  left: 70%;
  height: 115px;
  animation-delay: -4.8s;
  animation-duration: 7.6s;
}
.ambient-dot {
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ffe4a0;
  box-shadow: 0 0 14px 5px rgba(255, 216, 120, 0.45);
  opacity: 0;
  animation: warmBokeh 6s ease-in-out infinite;
}
.dot-one {
  top: 30%;
  right: 14%;
}
.dot-two {
  top: 48%;
  right: 8%;
  width: 5px;
  height: 5px;
  animation-delay: -2s;
}
.dot-three {
  top: 21%;
  right: 25%;
  width: 4px;
  height: 4px;
  animation-delay: -4s;
}
.hero-copy {
  position: relative;
  z-index: 4;
  color: #fff;
  width: min(640px, 88vw);
  margin-left: 7vw;
  animation: heroCopyReveal 1s cubic-bezier(0.2, 0.75, 0.25, 1) both;
}
.eyebrow {
  letter-spacing: 0.2em;
  color: var(--gold2);
  font-size: 0.74rem;
  font-weight: 700;
  margin: 0 0 18px;
}
.hero h1 {
  font-size: clamp(3.5rem, 7vw, 6.8rem);
  line-height: 0.83;
  font-weight: 600;
}
.hero h1 em {
  color: var(--gold2);
  font-weight: 500;
}
.hero-copy > p:not(.eyebrow) {
  font-size: 1.08rem;
  line-height: 1.7;
  max-width: 570px;
  margin: 28px 0;
}
.actions {
  display: flex;
  align-items: center;
  gap: 24px;
}
.text-link {
  font-weight: 600;
  border-bottom: 1px solid #ffffff70;
  padding-bottom: 5px;
}
.intro,
.contact {
  padding: 100px 8vw;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8vw;
  align-items: center;
}
.intro {
  background: var(--cream);
}
.intro h2,
.section-head h2,
.contact h2 {
  font-size: clamp(2.8rem, 5vw, 4.8rem);
  line-height: 0.95;
}
.intro > p,
.section-head > p:last-child,
.contact > div > p {
  line-height: 1.8;
  color: var(--muted);
  font-size: 1.05rem;
}
.services,
.prices {
  padding: 110px 8vw;
}
.nail-showcase {
  overflow: hidden;
  padding: 96px 0 88px;
  background: #15120f;
  color: #fff;
}
.nail-showcase-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  padding: 0 8vw 42px;
}
.nail-showcase-head h2 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(2.6rem, 4.8vw, 4.6rem);
  line-height: 0.98;
}
.nail-showcase-head > a {
  flex: 0 0 auto;
  padding-bottom: 7px;
  color: var(--gold2);
  font-weight: 700;
  border-bottom: 1px solid var(--gold2);
}
.nail-marquee {
  overflow: hidden;
  padding: 6px 0 12px;
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent,
    #000 5%,
    #000 95%,
    transparent
  );
  mask-image: linear-gradient(
    90deg,
    transparent,
    #000 5%,
    #000 95%,
    transparent
  );
}
.nail-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: nail-scroll 42s linear infinite;
  will-change: transform;
}
.nail-marquee:hover .nail-track {
  animation-play-state: paused;
}
.nail-slide {
  position: relative;
  flex: 0 0 clamp(260px, 25vw, 390px);
  height: clamp(340px, 34vw, 500px);
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(221, 174, 80, 0.3);
  border-radius: 26px;
  background: #2a241f;
}
.nail-slide:first-child {
  margin-left: 20px;
}
.nail-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}
.nail-slide:hover img {
  transform: scale(1.045);
}
.nail-slide::after {
  content: "";
  position: absolute;
  inset: 45% 0 0;
  background: linear-gradient(transparent, rgba(12, 9, 7, 0.92));
  pointer-events: none;
}
.nail-slide figcaption {
  position: absolute;
  z-index: 1;
  left: 24px;
  right: 24px;
  bottom: 22px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 15px;
}
.nail-slide strong {
  font-family: Georgia, serif;
  font-size: 1.45rem;
}
.nail-slide span {
  color: #e8c77f;
  font-size: 0.82rem;
  text-align: right;
}
.nail-note {
  margin: 28px 8vw 0;
  color: #bdb5ad;
  font-size: 0.95rem;
}
@keyframes nail-scroll {
  to {
    transform: translateX(calc(-50% - 10px));
  }
}
@media (prefers-reduced-motion: reduce) {
  .nail-track {
    animation: none;
  }
  .nail-marquee {
    overflow-x: auto;
  }
}
.section-head {
  max-width: 760px;
  margin-bottom: 54px;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid #d9d0c5;
  border-left: 1px solid #d9d0c5;
}
.service-grid article {
  padding: 42px;
  border-right: 1px solid #d9d0c5;
  border-bottom: 1px solid #d9d0c5;
  min-height: 240px;
  transition: 0.25s;
}
.service-grid article:hover {
  background: var(--cream);
  transform: translateY(-4px);
}
.service-grid span {
  color: var(--gold);
  font-size: 0.75rem;
}
.service-grid h3 {
  font-size: 2rem;
  margin: 26px 0 12px;
}
.service-grid p {
  color: var(--muted);
  line-height: 1.7;
}
.prices {
  background: #201c18;
  color: white;
}
.prices .section-head > p:last-child {
  color: #c9c0b8;
}
.price-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.price-card {
  background: #2a2520;
  border: 1px solid #ffffff18;
  padding: 32px;
}
.price-card.featured {
  border-color: var(--gold);
}
.price-card h3 {
  font-size: 2rem;
  color: var(--gold2);
  margin-bottom: 22px;
}
.price-card div {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  padding: 14px 0;
  border-bottom: 1px solid #ffffff14;
  font-size: 0.88rem;
}
.price-card span {
  white-space: nowrap;
  color: var(--gold2);
}
details {
  margin-top: 22px;
  border: 1px solid #ffffff24;
  padding: 20px 24px;
}
summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--gold2);
}
.wax-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px 26px;
  margin-top: 20px;
}
.wax-grid span {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #ffffff14;
  padding: 9px 0;
  color: #ddd;
}
.wax-grid b {
  color: var(--gold2);
}
.contact {
  position: relative;
  overflow: hidden;
  grid-template-columns: minmax(0, 0.82fr) minmax(520px, 1.18fr);
  gap: clamp(38px, 5vw, 76px);
  padding-top: 76px;
  padding-bottom: 76px;
  background:
    radial-gradient(circle at 8% 16%, rgba(201, 146, 38, 0.18), transparent 30%),
    radial-gradient(circle at 92% 85%, rgba(221, 179, 84, 0.1), transparent 28%),
    #181411;
  color: #fffaf0;
}
.contact::after {
  content: "";
  position: absolute;
  width: 430px;
  height: 430px;
  left: -220px;
  bottom: -250px;
  border: 1px solid rgba(224, 183, 92, 0.2);
  border-radius: 50%;
  box-shadow: 0 0 0 46px rgba(224, 183, 92, 0.025), 0 0 0 92px rgba(224, 183, 92, 0.018);
  pointer-events: none;
}
.contact-intro,
.contact-panel {
  position: relative;
  z-index: 1;
}
.contact h2 {
  max-width: 680px;
  color: #fffaf0;
  font-size: clamp(2.65rem, 4.2vw, 4rem);
}
.contact-lead {
  max-width: 590px;
  margin: 28px 0;
  line-height: 1.8;
  color: #c8beb4;
  font-size: 1.05rem;
}
.contact-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.contact-mail {
  color: #fffaf0;
  font-weight: 700;
  border-bottom: 1px solid #aa771c;
  padding: 8px 0;
}
.availability {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 26px;
  color: #bfb5aa;
  font-size: 0.92rem;
}
.availability span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #21a45d;
  box-shadow: 0 0 0 5px rgba(33, 164, 93, 0.12);
}
.contact-panel {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 28px 34px;
  border: 1px solid rgba(224, 183, 92, 0.45);
  border-radius: 34px 8px 34px 8px;
  background: linear-gradient(145deg, #fffaf1, #eee0ca);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.34);
}
.contact-panel-head {
  padding: 2px 8px 18px;
  border-bottom: 1px solid rgba(90, 65, 29, 0.16);
}
.contact-panel-head span {
  color: var(--gold2);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .18em;
}
.contact-panel-head p {
  margin-top: 7px;
  color: #6f665c;
  font-size: .92rem;
}
.contact-card {
  min-width: 0;
  min-height: 0;
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  padding: 17px 8px;
  border: 0;
  border-bottom: 1px solid rgba(90, 65, 29, 0.14);
  border-radius: 0;
  background: transparent;
  color: #241f1a;
  transition:
    transform 0.22s ease,
    border-color 0.22s ease,
    box-shadow 0.22s ease;
}
.contact-card:hover {
  transform: translateX(5px);
  border-color: rgba(90, 65, 29, 0.14);
  background: rgba(255, 255, 255, 0.46);
  box-shadow: none;
}
.contact-card-wide {
  grid-column: auto;
}
.contact-icon {
  flex: 0 0 38px;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #ad7415, #e5b94f);
  color: #fff;
  font-size: 1.12rem;
  box-shadow: 0 8px 20px rgba(173, 116, 21, 0.22);
}
.contact-icon-brand {
  padding: 8px;
  background: #fff;
  border: 1px solid rgba(157, 119, 53, 0.18);
  box-shadow: 0 8px 20px rgba(74, 52, 18, 0.12);
}
.brand-icon {
  display: block;
  width: 100%;
  height: 100%;
}
.instagram-brand {
  padding: 6px;
  border: 0;
}
.gmail-brand {
  padding: 7px;
}
.clock-brand { padding: 7px; }
.whatsapp-brand { padding: 5px; border: 0; }
.whatsapp-card em { color: #62e58e; }
.instagram-card strong {
  white-space: nowrap;
  overflow-wrap: normal;
  font-size: clamp(.76rem, 1.05vw, .92rem);
  letter-spacing: -.025em;
}
.email-card {
  min-height: 0;
  border-bottom: 0;
}
@keyframes mirrorLightPulse {
  0% {
    opacity: 0.38;
    transform: scale(0.96);
  }
  50% {
    opacity: 0.9;
    transform: scale(1.04);
  }
  100% {
    opacity: 0.48;
    transform: scale(0.98);
  }
}
@keyframes mirrorReflectionPass {
  0% {
    opacity: 0.15;
    transform: translate3d(-15%, -5%, 0) rotate(-3deg);
  }
  45% {
    opacity: 0.75;
  }
  100% {
    opacity: 0.2;
    transform: translate3d(18%, 7%, 0) rotate(3deg);
  }
}
@keyframes steamRise {
  0% {
    opacity: 0;
    transform: translate3d(0, 35px, 0) scaleX(0.7) rotate(-4deg);
  }
  25% {
    opacity: 0.42;
  }
  60% {
    opacity: 0.2;
    transform: translate3d(14px, -45px, 0) scaleX(1.15) rotate(7deg);
  }
  100% {
    opacity: 0;
    transform: translate3d(-8px, -105px, 0) scaleX(0.8) rotate(-6deg);
  }
}
@keyframes warmBokeh {
  0%,
  100% {
    opacity: 0;
    transform: translateY(8px) scale(0.65);
  }
  45% {
    opacity: 0.62;
    transform: translateY(-5px) scale(1);
  }
  70% {
    opacity: 0.25;
  }
}
@keyframes heroCopyReveal {
  from {
    opacity: 0;
    transform: translate3d(-24px, 18px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero::before,
  .hero::after,
  .steam,
  .ambient-dot,
  .hero-copy {
    animation: none;
  }
}
.contact-card small {
  display: block;
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 0.14em;
  margin: 2px 0 9px;
}
.contact-card strong {
  display: block;
  line-height: 1.6;
  overflow-wrap: anywhere;
}
.contact-card em {
  display: inline-block;
  margin-top: 10px;
  color: var(--gold);
  font-size: 0.84rem;
  font-style: normal;
  font-weight: 700;
}
footer {
  padding: 34px 6vw;
  display: flex;
  align-items: center;
  gap: 20px;
  background: #fff;
  border-top: 1px solid #eee7dd;
}
footer img {
  width: 54px;
  height: 54px;
  border-radius: 50%;
}
footer p {
  margin-right: auto;
  color: var(--muted);
  font-size: 0.85rem;
}
footer a {
  font-weight: 700;
  color: var(--gold);
}
.floating {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #1ea952;
  color: white;
  font-size: 1.4rem;
  box-shadow: 0 10px 28px #0003;
  z-index: 9;
}
@media (max-width: 900px) {
  .topbar nav,
  .topbar > .btn {
    display: none;
  }
  .menu {
    display: block;
  }
  .topbar.open nav {
    display: flex;
    position: absolute;
    top: 86px;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    padding: 28px 7vw;
    border-bottom: 1px solid #ddd;
  }
  .hero {
    min-height: 740px;
  }
  .hero > img {
    object-position: 62% center;
  }
  .hero-shade {
    background: linear-gradient(
      90deg,
      rgba(28, 23, 18, 0.88),
      rgba(28, 23, 18, 0.35)
    );
  }
  .intro,
  .contact {
    grid-template-columns: 1fr;
    padding: 75px 7vw;
  }
  .service-grid,
  .price-columns {
    grid-template-columns: 1fr 1fr;
  }
  .wax-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 620px) {
  .topbar {
    height: 74px;
    padding: 0 5vw;
    gap: 10px;
  }
  .brand {
    min-width: 0;
    gap: 9px;
  }
  .brand img {
    width: 46px;
    height: 46px;
    flex: 0 0 46px;
  }
  .brand span {
    max-width: 205px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 0.96rem;
  }
  .menu {
    width: 44px;
    height: 44px;
    padding: 0;
    border-radius: 50%;
    line-height: 1;
  }
  .topbar.open nav {
    top: 74px;
  }
  .hero {
    min-height: 590px;
    align-items: flex-end;
  }
  .hero > img {
    object-position: 64% center;
  }
  .hero-shade {
    background: linear-gradient(90deg, rgba(25, 20, 16, 0.9), rgba(25, 20, 16, 0.42));
  }
  .hero-copy {
    width: 88vw;
    margin: 0 6vw 54px;
  }
  .hero h1 {
    font-size: clamp(2.85rem, 13.5vw, 3.65rem);
    line-height: 0.88;
  }
  .hero-copy > p:not(.eyebrow) {
    margin: 22px 0;
    font-size: 0.98rem;
    line-height: 1.6;
  }
  .actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 17px;
  }
  .actions .btn {
    min-height: 48px;
    padding: 13px 20px;
  }
  .hero-atmosphere {
    opacity: 0.55;
  }
  .intro,
  .contact {
    padding: 58px 6vw;
    gap: 34px;
  }
  .intro h2,
  .section-head h2,
  .contact h2 {
    font-size: clamp(2.35rem, 11vw, 3.15rem);
  }
  .services,
  .prices {
    padding: 78px 6vw;
  }
  .nail-showcase {
    padding: 62px 0 56px;
  }
  .nail-showcase-head {
    align-items: flex-start;
    flex-direction: column;
    padding: 0 6vw 34px;
  }
  .service-grid,
  .price-columns,
  .wax-grid {
    grid-template-columns: 1fr;
  }
  .service-grid article {
    min-height: auto;
    padding: 25px 23px;
  }
  .service-grid h3 {
    margin: 18px 0 9px;
    font-size: 1.75rem;
  }
  .contact-panel {
    margin-top: 8px;
  }
  footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
    padding: 28px 6vw 92px;
  }
  footer p {
    margin: 0;
  }
  .floating {
    width: 52px;
    height: 52px;
    right: 16px;
    bottom: calc(16px + env(safe-area-inset-bottom));
  }
}
@media (max-width: 620px) {
  .nail-marquee {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -webkit-mask-image: none;
    mask-image: none;
  }
  .nail-marquee::-webkit-scrollbar {
    display: none;
  }
  .nail-track {
    animation: none;
    gap: 14px;
    padding-right: 6vw;
  }
  .nail-slide {
    flex-basis: min(78vw, 310px);
    height: 390px;
    scroll-snap-align: center;
    border-radius: 20px;
  }
  .nail-slide:first-child {
    margin-left: 6vw;
  }
  .nail-slide figcaption {
    left: 18px;
    right: 18px;
    bottom: 18px;
  }
  .nail-note {
    margin: 22px 6vw 0;
    font-size: 0.88rem;
  }
  .contact-panel {
    padding: 17px 18px;
    border-radius: 26px 7px 26px 7px;
  }
  .contact-card-wide {
    grid-column: auto;
  }
  .contact-card {
    min-height: 0;
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 12px;
    padding: 14px 2px;
  }
  .contact-card small {
    margin-bottom: 6px;
    font-size: 0.72rem;
  }
  .contact-card strong {
    font-size: 0.92rem;
    line-height: 1.45;
  }
  .instagram-card strong {
    font-size: clamp(0.72rem, 3.7vw, 0.88rem);
  }
  .contact-lead {
    margin: 22px 0;
    font-size: 0.98rem;
    line-height: 1.65;
  }
  .contact-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }
}

/* Rich visual tariff cards */
.price-columns {
  align-items: start;
}
.price-card {
  padding: 0;
  overflow: hidden;
  transition:
    transform 0.25s,
    border-color 0.25s;
}
.price-card:hover {
  transform: translateY(-6px);
  border-color: #ffffff40;
}
.price-visual {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.price-title {
  display: block !important;
  padding: 28px 28px 20px !important;
}
.price-title p {
  margin: 0 0 9px;
  color: var(--gold2);
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  font-weight: 700;
}
.price-card .price-title h3 {
  margin-bottom: 8px;
}
.price-title small {
  display: block;
  color: #c9c0b8;
  line-height: 1.55;
}
.price-card .price-item {
  padding: 16px 28px;
  align-items: flex-start;
}
.price-card .price-item::before,
.wax-grid span::before {
  content: "";
  flex: 0 0 64px;
  width: 64px;
  height: 64px;
  border-radius: 12px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  box-shadow: inset 0 0 0 1px #ffffff24;
}
.price-card:nth-child(1) .price-item:nth-of-type(2)::before {
  background-image: url("services/microblading.webp");
}
.price-card:nth-child(1) .price-item:nth-of-type(3)::before {
  background-image: url("services/microshading.webp");
}
.price-card:nth-child(1) .price-item:nth-of-type(4)::before {
  background-image: url("services/micro-mix-shading.webp");
}
.price-card:nth-child(1) .price-item:nth-of-type(5)::before {
  background-image: url("services/lip-blush.webp");
}
.price-card:nth-child(1) .price-item:nth-of-type(6)::before {
  background-image: url("services/beauty-mark.webp");
}
.price-card:nth-child(1) .price-item:nth-of-type(7)::before {
  background-image: url("services/pmu-pack.webp");
}
.price-card:nth-child(2) .price-item:nth-of-type(2)::before {
  background-image: url("services/brushing.webp");
}
.price-card:nth-child(2) .price-item:nth-of-type(3)::before {
  background-image: url("services/curls.webp");
}
.price-card:nth-child(2) .price-item:nth-of-type(4)::before {
  background-image: url("services/event-hairstyle.webp");
}
.price-card:nth-child(2) .price-item:nth-of-type(5)::before {
  background-image: url("services/hair-care.webp");
}
.price-card:nth-child(2) .price-item:nth-of-type(6)::before {
  background-image: url("services/simple-makeup.webp");
}
.price-card:nth-child(2) .price-item:nth-of-type(7)::before {
  background-image: url("services/guest-makeup.webp");
}
.price-card:nth-child(3) .price-item:nth-of-type(2)::before {
  background-image: url("services/classic-facial.webp");
}
.price-card:nth-child(3) .price-item:nth-of-type(3)::before {
  background-image: url("services/glow-facial.webp");
}
.price-card:nth-child(3) .price-item:nth-of-type(4)::before {
  background-image: url("services/lashes.webp");
}
.price-card:nth-child(3) .price-item:nth-of-type(5)::before {
  background-image: url("services/permanent-polish.webp");
}
.price-card:nth-child(3) .price-item:nth-of-type(6)::before {
  background-image: url("services/false-nails.webp");
}
.price-card:nth-child(3) .price-item:nth-of-type(7)::before {
  background-image: url("services/false-nails-polish.webp");
}
.price-item p {
  margin: 0;
  flex: 1;
}
.price-item b {
  display: block;
}
.price-item small {
  display: block;
  color: #aaa19a;
  line-height: 1.45;
  margin-top: 5px;
}
.price-item span {
  font-weight: 700;
}
.card-cta {
  display: block;
  margin: 22px 28px 28px;
  color: var(--gold2);
  font-weight: 700;
  font-size: 0.86rem;
}
.card-cta:hover {
  color: #fff;
}
.wax-grid span {
  align-items: center;
  justify-content: flex-start;
  gap: 13px;
  padding: 12px 0;
}
.wax-grid span::before {
  flex-basis: 54px;
  width: 54px;
  height: 54px;
  border-radius: 10px;
}
.wax-grid span:nth-child(1)::before {
  background-image: url("services/wax-face.webp");
}
.wax-grid span:nth-child(2)::before {
  background-image: url("services/wax-bikini.webp");
}
.wax-grid span:nth-child(3)::before {
  background-image: url("services/wax-back.webp");
}
.wax-grid span:nth-child(4)::before {
  background-image: url("services/wax-full-arms.webp");
}
.wax-grid span:nth-child(5)::before {
  background-image: url("services/wax-half-arms.webp");
}
.wax-grid span:nth-child(6)::before {
  background-image: url("services/wax-full-legs.webp");
}
.wax-grid span:nth-child(7)::before {
  background-image: url("services/wax-half-legs.webp");
}
.wax-grid span:nth-child(8)::before {
  background-image: url("services/wax-full-body.webp");
}
.wax-grid span:nth-child(9)::before {
  background-image: url("services/wax-underarms.webp");
}
.wax-grid span:nth-child(10)::before {
  background-image: url("services/wax-upper-lip.webp");
}
.wax-grid span:nth-child(11)::before {
  background-image: url("services/wax-brows.webp");
}
.wax-grid span:nth-child(12)::before {
  background-image: url("services/wax-belly.webp");
}
.wax-grid span b {
  margin-left: auto;
  white-space: nowrap;
}
@media (max-width: 900px) {
  .price-columns {
    grid-template-columns: 1fr;
  }
  .price-card {
    max-width: 720px;
    width: 100%;
    margin-inline: auto;
  }
  .price-visual {
    aspect-ratio: 16 / 9;
  }
}
@media (max-width: 620px) {
  .price-title {
    padding: 23px 21px 16px !important;
  }
  .price-card .price-item {
    gap: 12px;
    padding: 14px 18px;
  }
  .price-card .price-item::before {
    flex-basis: 54px;
    width: 54px;
    height: 54px;
  }
  .price-item p {
    min-width: 0;
  }
  .price-item b {
    font-size: 0.96rem;
  }
  .price-item small {
    font-size: 0.79rem;
    line-height: 1.45;
  }
  .card-cta {
    margin: 20px 21px 24px;
  }
  .price-visual {
    aspect-ratio: 4 / 3;
  }
}
