:root {
  --black: #050505;
  --ink: #1f2130;
  --muted: #6a6d7a;
  --line: #d8d8d8;
  --soft: #f7f7f7;
  --white: #ffffff;
  --gold: #d5a146;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: "Inter", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
}

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

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

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

.narrow {
  width: min(760px, calc(100% - 40px));
}

.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 900;
  display: grid;
  grid-template-columns: 170px 1fr 190px;
  align-items: center;
  width: min(1180px, calc(100% - 44px));
  min-height: 78px;
  padding: 10px 28px;
  color: var(--white);
  background: rgba(0, 0, 0, 0.96);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(12px);
  transform: translateX(-50%);
}

.brand img {
  width: 66px;
  height: 54px;
  object-fit: contain;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
  font-size: 14px;
  font-weight: 700;
}

.main-nav a {
  position: relative;
  opacity: 0.9;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: -12px;
  left: 50%;
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  content: "";
  opacity: 0;
  transform: translateX(-50%) scaleX(0);
  transition: 0.25s ease;
}

.main-nav a:hover::after,
.main-nav a.active::after {
  opacity: 1;
  transform: translateX(-50%) scaleX(1);
}

.header-cta,
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  overflow: hidden;
  border-radius: 999px;
  font-weight: 800;
  white-space: nowrap;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.header-cta {
  justify-self: end;
  gap: 8px;
  min-height: 48px;
  padding: 0 24px;
  background: var(--white);
  color: var(--black);
  font-size: 16px;
}

.btn {
  gap: 8px;
  min-height: 48px;
  padding: 0 28px;
  font-size: 16px;
}

.btn-light {
  background: var(--white);
  color: var(--black);
}

.wa-icon {
  flex: 0 0 auto;
  width: 19px;
  height: 19px;
  aspect-ratio: 1 / 1;
  object-fit: contain;
}

.header-cta::before,
.btn::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: -90px;
  width: 70px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.75), transparent);
  content: "";
  transform: skewX(-18deg);
  transition: left 0.65s ease;
}

.header-cta:hover,
.btn:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.24);
}

.header-cta:hover::before,
.btn:hover::before {
  left: 130%;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--white);
}

.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 560px;
  padding: 118px 0 72px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.38);
  background: var(--black);
  color: var(--white);
}

.hero-video,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-video {
  object-fit: cover;
  opacity: 0.76;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.68) 0%, rgba(0, 0, 0, 0.24) 55%, rgba(0, 0, 0, 0.36) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.5));
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(1110px, calc(100% - 96px));
  margin-left: 6.8vw;
  padding-top: 22px;
}

.rating {
  position: relative;
  display: flex;
  align-items: center;
  width: fit-content;
  margin-bottom: 28px;
}

.google-mark {
  width: 360px;
  height: auto;
  border-radius: 0;
  object-fit: contain;
}

.rating p {
  position: absolute;
  top: 8px;
  left: 112px;
  margin: 0 0 2px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 24px;
  font-weight: 500;
  white-space: nowrap;
}

.rating strong {
  margin-right: 8px;
  font-size: 34px;
  line-height: 1;
}

.stars {
  color: #ffc247;
  font-size: 34px;
  letter-spacing: 2px;
  line-height: 1;
}

.hero h1 {
  max-width: 980px;
  margin: 0 0 22px;
  color: #f5f5f5;
  font-size: clamp(43px, 5.1vw, 72px);
  font-weight: 500;
  line-height: 0.98;
  text-transform: uppercase;
}

.hero p {
  max-width: 1000px;
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 400;
  line-height: 1.36;
}

.features {
  padding: 95px 0 140px;
}

.section-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  text-align: center;
}

.section-head h2,
.services-title h2,
.contact h2 {
  margin: 0;
  color: #252639;
  font-size: clamp(26px, 3vw, 35px);
  line-height: 1.14;
}

.section-head p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 16px;
}

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

.feature-grid article {
  min-height: 258px;
  padding: 46px 34px 32px;
  border: 1px solid #111;
  border-radius: 12px;
  background: linear-gradient(150deg, #080808, #242424);
  color: var(--white);
  text-align: center;
  box-shadow: 0 18px 32px rgba(0, 0, 0, 0.15);
}

.feature-grid img {
  width: 68px;
  height: 68px;
  margin: 0 auto 12px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.92;
}

.feature-grid h3 {
  margin: 0 0 12px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 18px;
}

.feature-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  font-weight: 600;
}

.about {
  padding: 54px 0 74px;
}

.split {
  display: grid;
  grid-template-columns: 1fr 450px;
  align-items: center;
  gap: 120px;
}

.about-copy {
  color: #4e5363;
  font-size: 16px;
  font-weight: 500;
}

.about-copy p {
  margin: 0 0 16px;
}

.logo-card {
  display: grid;
  place-items: center;
  aspect-ratio: 1;
  border: 3px solid #8f8f8f;
  border-radius: 14px;
  background: var(--white);
  overflow: hidden;
}

.logo-card img {
  width: 86%;
  height: 86%;
  object-fit: contain;
}

.banner {
  position: relative;
  min-height: 390px;
  border-top: 10px solid #777;
  overflow: hidden;
  background: var(--black);
  color: var(--white);
}

.banner > img,
.banner-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.banner > img {
  object-fit: cover;
  opacity: 0.75;
}

.banner-overlay {
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.74), rgba(0, 0, 0, 0.25));
}

.banner-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 360px;
  align-items: center;
  min-height: 390px;
  padding: 42px 0;
  gap: 60px;
}

.banner h2 {
  max-width: 560px;
  margin: 0 0 8px;
  font-size: clamp(29px, 3vw, 42px);
  line-height: 1.02;
}

.banner p {
  max-width: 640px;
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.87);
  font-size: 16px;
  font-weight: 700;
}

.banner-person {
  justify-self: center;
  width: 335px;
  max-height: 380px;
  object-fit: contain;
  object-position: bottom;
}

.testimonials {
  position: relative;
  padding: 96px 0 104px;
  background:
    radial-gradient(circle at 18% 20%, rgba(213, 161, 70, 0.09), transparent 28%),
    linear-gradient(180deg, #fff, #f8f8f8);
}

.testimonial-shell {
  width: min(860px, 100%);
  margin: 34px auto 0;
  overflow: hidden;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(14px);
}

.testimonial-track {
  display: grid;
}

.testimonial {
  position: relative;
  display: none;
  min-height: 315px;
  padding: 58px 64px 42px 76px;
  color: #1c1d24;
  text-align: left;
  overflow: hidden;
}

.testimonial::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 8px;
  background: linear-gradient(180deg, #090909, var(--gold), #8f8f8f);
  content: "";
}

.testimonial.active {
  display: block;
}

.quote-mark {
  position: absolute;
  top: 18px;
  left: 42px;
  color: rgba(0, 0, 0, 0.08);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 112px;
  line-height: 1;
}

.testimonial p {
  position: relative;
  z-index: 1;
  margin: 0;
  max-width: 690px;
  color: #212229;
  font-size: clamp(18px, 2vw, 24px);
  font-style: italic;
  font-weight: 700;
  line-height: 1.48;
}

.testimonial-footer {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  margin-top: 34px;
  padding-top: 24px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.author {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 14px;
  margin-top: 0;
}

.author span {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #050505;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
}

.author strong,
.author small {
  display: block;
}

.author strong {
  color: #111;
  font-size: 15px;
}

.author small {
  color: var(--muted);
  font-size: 12px;
}

.author b {
  color: #ffbc30;
}

.testimonial-footer img {
  width: 78px;
  height: 78px;
  padding: 8px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 18px;
  object-fit: contain;
  opacity: 0.48;
}

.dots {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 11px;
  margin-top: 34px;
}

.dots button {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #c8c8c8;
  cursor: pointer;
  transition: transform 0.25s ease, width 0.25s ease, background 0.25s ease;
}

.dots button.active {
  background: #101010;
  width: 26px;
  border-radius: 999px;
}

.services {
  padding-bottom: 90px;
}

.services-title {
  padding: 44px 20px;
  background: #020202;
  text-align: center;
}

.services-title h2 {
  color: #fff;
  font-size: clamp(28px, 3vw, 37px);
}

.service-category {
  padding-top: 56px;
}

.service-category h3 {
  margin: 0 0 36px;
  color: #252525;
  font-size: 29px;
  text-align: center;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 70px 58px;
}

.service-grid.nails,
.service-grid.beauty {
  grid-template-columns: repeat(3, 1fr);
}

.service-grid article {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  min-height: 182px;
  text-align: center;
}

.service-grid img {
  width: 64px;
  height: 64px;
  margin-bottom: 16px;
  object-fit: contain;
  filter: grayscale(1);
}

.service-grid h4 {
  margin: 0 0 6px;
  color: #363636;
  font-size: 18px;
  line-height: 1.2;
}

.service-grid p {
  max-width: 285px;
  margin: 0;
  color: #8a8a8a;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.45;
}

.contact {
  padding: 82px 0 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 505px;
  align-items: end;
  gap: 90px;
}

.contact-copy {
  padding-bottom: 110px;
}

.contact h2 {
  margin-bottom: 10px;
  color: #161616;
  font-size: 34px;
}

.contact p {
  max-width: 500px;
  margin: 0 0 20px;
  color: #515668;
  font-size: 16px;
  font-weight: 700;
}

.contact ul {
  display: grid;
  gap: 8px;
  margin: 0 0 24px;
  padding: 0;
  color: #363636;
  font-size: 14px;
  font-weight: 800;
  list-style: none;
}

.contact li::before {
  margin-right: 8px;
  color: #111;
  content: "●";
  font-size: 10px;
}

.social-row {
  display: flex;
  gap: 9px;
}

.social-row a {
  display: grid;
  place-items: center;
  width: 31px;
  height: 31px;
  border-radius: 50%;
  background: #000;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-photo {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  min-height: 600px;
  border: 4px solid #b4b4b4;
  border-bottom: 0;
}

.contact-photo img {
  width: 86%;
  max-height: 620px;
  object-fit: contain;
  object-position: bottom;
}

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

.fab {
  display: grid;
  place-items: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.25);
  transition: transform 0.25s ease;
}

.fab:hover {
  transform: translateY(-2px) scale(1.05);
}

.fab svg,
.fab img {
  width: 30px;
  height: 30px;
  aspect-ratio: 1 / 1;
  object-fit: contain;
}

.whatsapp img {
  filter: brightness(0) invert(1);
}

.whatsapp {
  background: #25d366;
}

.instagram {
  background: radial-gradient(circle at 30% 110%, #ffdc80 0 18%, #fcaf45 24%, #f77737 38%, #c13584 62%, #833ab4 78%, #405de6 100%);
}

.site-footer {
  display: flex;
  justify-content: center;
  gap: 16px;
  padding: 22px 20px;
  background: #000;
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
  text-align: center;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: #fff;
  font-weight: 700;
}

@media (max-width: 900px) {
  .site-header {
    top: 12px;
    grid-template-columns: auto auto;
    min-height: 72px;
    width: calc(100% - 24px);
    padding: 10px 16px;
    border-radius: 24px;
    background: rgba(0, 0, 0, 0.96);
    backdrop-filter: blur(12px);
  }

  .brand img {
    width: 78px;
    height: 60px;
  }

  .menu-toggle {
    display: block;
    justify-self: end;
  }

  .main-nav,
  .header-cta {
    display: none;
  }

  .site-header.open .main-nav {
    position: absolute;
    top: 82px;
    right: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    padding: 22px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 22px;
    background: rgba(0, 0, 0, 0.92);
  }

  .hero {
    min-height: 640px;
    padding: 110px 0 70px;
  }

  .hero-content {
    width: min(100% - 38px, 650px);
    margin: 0 auto;
    padding-top: 20px;
    text-align: center;
  }

  .rating {
    justify-content: center;
    margin-right: auto;
    margin-left: auto;
  }

  .hero h1,
  .hero p {
    margin-right: auto;
    margin-left: auto;
  }

  .feature-grid,
  .split,
  .banner-inner,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .features {
    padding: 70px 0 78px;
  }

  .split {
    gap: 36px;
  }

  .about-copy {
    order: 1;
    text-align: center;
  }

  .logo-card {
    order: 2;
    width: min(100%, 390px);
    margin: 0 auto;
  }

  .banner-inner {
    align-items: center;
    padding-top: 40px;
    text-align: center;
  }

  .banner p {
    margin: 0 auto 24px;
  }

  .banner-person {
    width: min(76vw, 330px);
  }

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

  .contact-copy {
    padding-bottom: 20px;
    text-align: center;
  }

  .contact p {
    margin-right: auto;
    margin-left: auto;
  }

  .social-row {
    justify-content: center;
  }

  .contact-photo {
    min-height: 440px;
  }
}

@media (max-width: 620px) {
  .container,
  .narrow {
    width: min(100% - 28px, 520px);
  }

  .hero {
    min-height: 610px;
  }

  .google-mark {
    width: 250px;
  }

  .rating p {
    top: 5px;
    left: 78px;
    font-size: 16px;
  }

  .hero h1 {
    font-size: 32px;
  }

  .hero p {
    font-size: 15px;
  }

  .feature-grid article {
    min-height: auto;
  }

  .feature-grid p,
  .about-copy,
  .banner p,
  .testimonial p,
  .service-grid p,
  .contact p,
  .contact ul {
    font-size: 14px;
  }

  .testimonial p {
    font-size: 17px;
  }

  .feature-grid h3,
  .service-grid h4 {
    font-size: 17px;
  }

  .service-grid img {
    width: 58px;
    height: 58px;
  }

  .service-grid,
  .service-grid.nails,
  .service-grid.beauty {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .testimonial {
    min-height: 300px;
    padding: 54px 24px 28px 34px;
  }

  .quote-mark {
    left: 22px;
    font-size: 82px;
  }

  .testimonial-footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

  .testimonial-footer img {
    width: 64px;
    height: 64px;
  }

  .contact-photo {
    min-height: 340px;
  }

  .floating-actions {
    right: 14px;
    bottom: 14px;
  }

  .fab {
    width: 52px;
    height: 52px;
  }

  .site-footer {
    flex-direction: column;
    gap: 6px;
    padding-right: 86px;
    text-align: left;
  }
}
