:root {
  --salmon: #d87856;
  --salmon-dark: #c86645;
  --peach: #fff2ec;
  --peach-soft: #fff8f5;
  --ink: #403b39;
  --muted: #8c7a74;
  --line: #edc8ba;
  --fs-hero: clamp(34px, 3.25vw, 48px);
  --fs-section-title: clamp(32px, 3.6vw, 50px);
  --fs-panel-title: clamp(31px, 3.25vw, 46px);
  --fs-subtitle: 15px;
  --fs-body: 13px;
  --fs-small: 11px;
  --fs-nav: 14px;
  --fs-card-title: 19px;
  --fs-card-body: 13px;
  --fs-faq-title: 18px;
  --fs-faq-answer: 17px;
  --fs-footer-title: 20px;
  --fs-footer-link: 14px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #fff6f2;
  overflow-x: hidden;
}

html {
  width: 100%;
  overflow-x: hidden;
}

.container-xxl {
  max-width: 1400px;
}

a {
  text-decoration: none;
}

.main-nav {
  width: 100%;
  min-height: 95px;
  background: #fff;
  box-shadow: 0 3px 16px rgba(91, 54, 43, 0.06);
  position: relative;
  z-index: 10;
}

.brand-mark {
  width: 58px;
  height: 58px;
  color: var(--salmon);
  display: grid;
  place-items: center;
  font-size: 45px;
}

.brand-title {
  display: block;
  color: #5b4a42;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 23px;
  font-weight: 700;
  line-height: 1;
}

.brand-title strong {
  color: var(--salmon);
}

.brand-tagline {
  display: block;
  margin-top: 3px;
  color: #7d665e;
  font-size: 9px;
  font-weight: 700;
}

.navbar .nav-link {
  color: #4e4b49;
  font-size: 16px;
  font-weight: 800;
  padding-inline: 0;
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
  color: var(--salmon-dark);
}

.btn-join {
  min-width: 116px;
  padding: 13px 24px;
  color: #fff;
  background: #df876b;
  border: 0;
  border-radius: 999px;
  font-weight: 800;
  box-shadow: 0 4px 0 #ead2c8, 0 10px 20px rgba(189, 94, 63, 0.16);
}

.btn-join:hover {
  color: #fff;
  background: var(--salmon-dark);
}

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

.btn-book {
  min-width: 126px;
  padding: 13px 24px;
  color: #fff;
  background: var(--salmon-dark);
  border: 0;
  border-radius: 999px;
  font-weight: 800;
  box-shadow: 0 4px 0 #ead2c8, 0 10px 20px rgba(189, 94, 63, 0.16);
}

.btn-book:hover {
  color: #fff;
  background: #ad5235;
}

.mobile-book-btn {
  box-shadow: none;
}

.service-nav {
  width: 100%;
  position: relative;
  z-index: 20;
  background: linear-gradient(90deg, #d87956 0%, #dc7d59 50%, #d87956 100%);
  box-shadow: 0 7px 22px rgba(113, 58, 40, 0.13);
}

.service-list {
  min-height: 52px;
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  overflow-x: auto;
  scrollbar-width: none;
}

.service-list::-webkit-scrollbar {
  display: none;
}

.service-nav .service-list a,
.services-trigger {
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
  padding: 18px 17px 16px;
  border: 0;
  background: transparent;
  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.15;
  position: relative;
  transition: background 0.2s ease, opacity 0.2s ease;
}

.service-nav .service-list a:hover,
.services-trigger:hover,
.services-trigger:focus-visible {
  color: #fff;
  background: rgba(255, 255, 255, 0.09);
  outline: 0;
}

.service-nav .service-list a::after,
.services-trigger::after {
  content: "";
  position: absolute;
  left: 17px;
  right: 17px;
  bottom: 10px;
  height: 2px;
  background: #fff;
  border-radius: 99px;
  opacity: 0;
  transform: scaleX(0.35);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.service-nav .service-list a:hover::after,
.service-nav .service-list a.active::after,
.services-trigger:hover::after,
.service-nav.services-open .services-trigger::after {
  opacity: 1;
  transform: scaleX(1);
}

.services-trigger i {
  font-size: 10px;
  transition: transform 0.25s ease;
}

.mobile-services-menu {
  display: none;
}

.service-nav.services-open .services-trigger i {
  transform: rotate(180deg);
}

.services-mega-menu {
  position: absolute;
  top: calc(100% - 1px);
  left: 50%;
  width: min(1080px, calc(100vw - 32px));
  padding: 26px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(216, 121, 86, 0.18);
  border-radius: 20px;
  box-shadow: 0 24px 60px rgba(74, 42, 31, 0.2);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate(-50%, -8px);
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
}

.services-mega-menu::before {
  content: "";
  position: absolute;
  top: -7px;
  left: 50%;
  width: 14px;
  height: 14px;
  background: #fff;
  border-top: 1px solid rgba(216, 121, 86, 0.18);
  border-left: 1px solid rgba(216, 121, 86, 0.18);
  transform: translateX(-50%) rotate(45deg);
}

.service-nav.services-open .services-mega-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.mega-menu-heading {
  margin-bottom: 20px;
  padding: 0 4px 18px;
  border-bottom: 1px solid #f0ded6;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}

.mega-menu-heading span {
  color: var(--salmon-dark);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.mega-menu-heading h2 {
  margin: 5px 0 0;
  color: #332e2c;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 24px;
}

.mega-menu-heading > a {
  color: var(--salmon-dark);
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}

.mega-menu-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.audience-services {
  padding: 20px;
  background: #fff8f5;
  border: 1px solid #f3dfd6;
  border-radius: 15px;
}

.audience-title {
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.audience-icon {
  width: 42px;
  height: 42px;
  color: #fff;
  background: linear-gradient(135deg, #df8a69, #c86747);
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-size: 20px;
}

.audience-title small {
  color: #9b8279;
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.audience-title h3 {
  margin: 1px 0 0;
  color: #3d3633;
  font-size: 18px;
  font-weight: 800;
}

.service-group + .service-group {
  margin-top: 15px;
}

.service-group h4 {
  margin: 0 0 7px;
  color: #4b413d;
  font-size: 12px;
  font-weight: 800;
}

.sub-service-links {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.sub-service-links a {
  padding: 6px 9px;
  color: #76645d;
  background: #fff;
  border: 1px solid #efddd5;
  border-radius: 7px;
  font-size: 10px;
  font-weight: 600;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.sub-service-links a:hover {
  color: #fff;
  background: var(--salmon);
  border-color: var(--salmon);
}

.hero-section {
  width: 100%;
  min-height: 582px;
  padding: 62px 0 82px;
  background:
    radial-gradient(circle at 31% 5%, rgba(246, 203, 181, 0.58) 0 98px, transparent 100px),
    radial-gradient(circle at 83% 28%, rgba(248, 220, 206, 0.8) 0 130px, transparent 132px),
    linear-gradient(103deg, #fffaf8 0%, #fff1eb 50%, #fff7f3 100%);
  position: relative;
  overflow: hidden;
}

.hero-section::after {
  content: "";
  position: absolute;
  right: -75px;
  bottom: -93px;
  width: 315px;
  height: 315px;
  border: 1px solid rgba(217, 120, 85, 0.12);
  border-radius: 50%;
}

.eyebrow {
  margin-bottom: 27px;
  color: var(--salmon);
  font-size: 25px;
  font-style: italic;
  font-weight: 900;
  text-transform: uppercase;
}

.eyebrow span,
.hero-section h1 span,
.section-heading h2 strong {
  color: var(--salmon-dark);
}

.hero-section h1 {
  max-width: 500px;
  margin: 0;
  color: #46413f;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(44px, 4.2vw, 58px);
  font-weight: 700;
  line-height: 1.12;
}

.hero-copy {
  max-width: 455px;
  margin: 20px 0 12px;
  color: #6e5f59;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.45;
}

.glow-pill {
  width: fit-content;
  max-width: 100%;
  margin-bottom: 18px;
  padding: 8px 14px;
  color: var(--salmon-dark);
  background: #fff1e8;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}

.store-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.store-badge {
  min-width: 120px;
  min-height: 38px;
  padding: 5px 10px;
  color: #fff;
  background: #080808;
  border-radius: 5px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 9px;
  line-height: 1.05;
}

.store-badge i {
  font-size: 22px;
}

.store-badge strong {
  font-size: 15px;
}

.hero-visual {
  min-height: 430px;
  position: relative;
}

.portrait-halo {
  position: absolute;
  left: 10%;
  right: 37%;
  bottom: 0;
  height: 368px;
  background: linear-gradient(180deg, rgba(255, 247, 241, 0.92), rgba(241, 211, 192, 0.86));
  border-radius: 190px 190px 8px 8px;
  box-shadow: inset 0 0 0 1px rgba(229, 179, 157, 0.24);
}

.hero-person {
  position: absolute;
  left: 13%;
  bottom: 0;
  width: min(45%, 365px);
  height: 392px;
  object-fit: cover;
  object-position: center top;
  border-radius: 185px 185px 8px 8px;
  filter: drop-shadow(0 18px 24px rgba(130, 81, 63, 0.15));
}

.phone-mockup {
  position: absolute;
  right: 12%;
  top: 8px;
  width: 245px;
  min-width: 245px;
  padding: 16px 15px;
  background: #fff;
  border: 10px solid #f5f5f5;
  border-radius: 32px;
  box-shadow: 0 18px 36px rgba(100, 70, 60, 0.18);
  transform: rotate(6deg);
  z-index: 2;
}

.phone-top,
.phone-greeting,
.booking-row,
.booking-card,
.phone-grid {
  display: flex;
  align-items: center;
}

.phone-top,
.booking-row {
  justify-content: space-between;
  color: #111;
  font-size: 10px;
  font-weight: 800;
}

.phone-greeting {
  gap: 9px;
  margin: 18px 0 12px;
  font-size: 10px;
  line-height: 1.25;
}

.avatar {
  width: 28px;
  height: 28px;
  background: url("https://images.unsplash.com/photo-1494790108377-be9c29b29330?auto=format&fit=crop&w=80&q=80") center/cover;
  border-radius: 50%;
}

.phone-search {
  padding: 9px 10px;
  color: #96908d;
  background: #faf5f2;
  border-radius: 8px;
  font-size: 9px;
}

.booking-row {
  margin: 15px 0 8px;
}

.booking-row a {
  color: var(--salmon);
}

.booking-card {
  gap: 9px;
  padding: 10px;
  color: #625450;
  background: #fff4ec;
  border-radius: 10px;
  font-size: 9px;
}

.booking-card i {
  color: var(--salmon);
  font-size: 19px;
}

.phone-grid {
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.phone-grid span {
  width: calc(33.333% - 6px);
  color: #6c5d59;
  font-size: 8px;
  text-align: center;
}

.phone-grid i {
  width: 28px;
  height: 28px;
  margin: 0 auto 4px;
  color: var(--salmon);
  background: #fff4ec;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 13px;
}

.discount-card,
.discount-x,
.floating-card,
.beauty-bag,
.heart-bubble {
  position: absolute;
  z-index: 3;
  box-shadow: 0 16px 26px rgba(124, 73, 55, 0.16);
}

.discount-card {
  left: 38%;
  top: 69px;
  padding: 15px 21px 14px;
  color: #fff;
  background: var(--salmon);
  border-radius: 8px;
  font-size: 24px;
  font-weight: 900;
  line-height: 1;
  transform: rotate(-3deg);
}

.discount-card span {
  display: block;
  margin-top: 4px;
  font-size: 10px;
}

.discount-x {
  left: calc(38% + 127px);
  top: 106px;
  width: 34px;
  height: 34px;
  color: #fff;
  background: #34302f;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 13px;
  font-weight: 900;
  z-index: 4;
}

.heart-bubble {
  left: 17%;
  top: 78px;
  width: 46px;
  height: 46px;
  color: var(--salmon);
  background: #fff;
  border: 1px solid #f4c4b2;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 23px;
}

.floating-card {
  right: 0;
  width: 177px;
  min-height: 70px;
  padding: 13px 15px;
  color: #fff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.2;
}

.floating-card i {
  font-size: 22px;
}

.candy {
  top: 104px;
  background: #df8b69;
}

.confirm {
  right: 2%;
  bottom: 91px;
  background: #3f3b3a;
}

.beauty-bag {
  left: 19%;
  bottom: 33px;
  padding: 13px 22px;
  color: #fff;
  background: #4a4747;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 800;
}

.beauty-bag i {
  margin-right: 10px;
  color: #ef8a62;
}

.hero-arrow {
  position: absolute;
  left: 48%;
  bottom: 47px;
  width: 92px;
  height: 64px;
  border-right: 4px solid rgba(255, 255, 255, 0.95);
  border-bottom: 4px solid rgba(255, 255, 255, 0.95);
  border-radius: 0 0 56px 0;
  transform: rotate(16deg);
  z-index: 3;
}

.hero-arrow::after {
  content: "";
  position: absolute;
  right: -6px;
  bottom: -9px;
  width: 18px;
  height: 18px;
  border-right: 4px solid rgba(255, 255, 255, 0.95);
  border-bottom: 4px solid rgba(255, 255, 255, 0.95);
  transform: rotate(-18deg);
}

.hero-dots {
  position: absolute;
  left: 42%;
  bottom: -3px;
  display: flex;
  gap: 8px;
  z-index: 5;
}

.hero-dots span {
  width: 8px;
  height: 8px;
  background: #e7d5cc;
  border-radius: 50%;
}

.hero-dots span:first-child {
  background: var(--salmon);
}

.search-panel {
  position: absolute;
  left: 50%;
  bottom: -55px;
  width: min(930px, calc(100% - 32px));
  min-height: 70px;
  padding: 10px;
  background: #fff;
  border-radius: 5px;
  display: flex;
  align-items: center;
  transform: translateX(-50%);
  box-shadow: 0 16px 38px rgba(108, 75, 62, 0.14);
  z-index: 4;
}

.location-select {
  width: 250px;
  padding: 0 18px;
  border-right: 1px solid #eee1dc;
  display: flex;
  align-items: center;
  gap: 12px;
}

.location-select i {
  color: #776a66;
}

.location-select select,
.search-panel input {
  width: 100%;
  height: 50px;
  color: #4b4542;
  background: transparent;
  border: 0;
  outline: 0;
  font-weight: 700;
}

.search-panel input {
  padding: 0 22px;
  font-weight: 500;
}

.search-panel button {
  width: 136px;
  height: 50px;
  color: #fff;
  background: var(--salmon);
  border: 0;
  border-radius: 4px;
  font-weight: 800;
}

.search-panel button:hover {
  color: #fff;
  background: var(--salmon-dark);
}

.pamper-section {
  width: 100%;
  position: relative;
  padding: 92px 0 32px;
  background:
    radial-gradient(circle at 4% 13%, rgba(245, 197, 172, 0.46) 0 118px, transparent 120px),
    radial-gradient(circle at 96% 82%, rgba(244, 196, 178, 0.5) 0 135px, transparent 137px),
    linear-gradient(180deg, #fff9f6 0%, #fff2ef 100%);
  overflow: hidden;
}

.section-heading span {
  color: #b58a7d;
  font-size: 15px;
  font-weight: 700;
}

.section-heading h2 {
  margin: 8px 0 7px;
  color: #4a403d;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(38px, 4.1vw, 56px);
  font-weight: 700;
}

.section-heading p {
  color: #8b7771;
  font-size: 13px;
  font-weight: 600;
}

.service-row {
  margin-top: 56px;
  display: grid;
  grid-template-columns: 150px 40px minmax(0, 1fr);
  align-items: center;
  gap: 28px;
}

.audience-card {
  min-height: 142px;
  padding: 17px 13px;
  color: #a75e48;
  background: #fff8f4;
  border: 1px solid #efb8a6;
  border-radius: 12px;
  display: grid;
  align-content: center;
  justify-items: center;
  text-align: center;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 22px;
  line-height: 1.03;
  box-shadow: 0 16px 30px rgba(133, 86, 70, 0.06);
}

.audience-card i {
  margin-bottom: 8px;
  color: #d58570;
  font-size: 37px;
}

.audience-card strong {
  color: var(--salmon);
  font-size: 32px;
}

.round-arrow {
  width: 34px;
  height: 34px;
  color: #fff;
  background: var(--salmon);
  border: 0;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 20px;
}

.service-slider-controls {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 9px;
}

.service-slider-controls .service-prev {
  display: none;
}

.category-track {
  display: grid;
  grid-template-columns: repeat(8, minmax(100px, 1fr));
  align-items: start;
  gap: 17px;
}

.category-item {
  min-width: 0;
  color: #4f4642;
  text-align: center;
  display: block;
  position: relative;
  font-size: 10px;
  font-weight: 700;
}

.category-item img {
  width: 120px;
  height: 120px;
  margin: 0 auto 10px;
  object-fit: cover;
  border: 5px solid #fff7f2;
  border-radius: 50%;
  display: block;
  box-shadow: 0 10px 20px rgba(126, 82, 64, 0.13);
}

.category-item i {
  position: absolute;
  top: -6px;
  left: 50%;
  width: 34px;
  height: 34px;
  margin-left: -51px;
  color: var(--salmon);
  background: #fff8f4;
  border: 1px solid #edc6ba;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 16px;
}

.category-item span {
  min-height: 28px;
  display: block;
}

.divider {
  height: 1px;
  margin: 31px 0 -15px;
  background: linear-gradient(90deg, transparent, #edc8ba, transparent);
  display: grid;
  place-items: center;
}

.divider span {
  width: 12px;
  height: 12px;
  background: #fff8f4;
  border: 1px solid #edc8ba;
  transform: rotate(45deg);
}

.trust-strip {
  width: min(610px, 100%);
  margin: 57px auto 0;
  padding: 16px 35px;
  background: #ffe8df;
  border-radius: 999px;
  display: flex;
  justify-content: space-between;
  gap: 21px;
}

.trust-strip div {
  color: #6b5953;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.25;
}

.trust-strip i {
  width: 36px;
  height: 36px;
  color: #6b5953;
  border: 1px solid #bfa298;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 18px;
}

.hero-leaf,
.decor-leaf {
  position: absolute;
  pointer-events: none;
  opacity: 0.55;
}

.hero-leaf-left,
.leaf-left {
  left: -38px;
  bottom: -22px;
  width: 210px;
  height: 210px;
  background: radial-gradient(ellipse at 75% 50%, rgba(210, 116, 89, 0.28) 0 22%, transparent 24%) 0 0 / 70px 70px;
  transform: rotate(-25deg);
}

.hero-leaf-right,
.leaf-right {
  right: -26px;
  bottom: 10px;
  width: 190px;
  height: 190px;
  background: radial-gradient(ellipse at 25% 50%, rgba(210, 116, 89, 0.24) 0 22%, transparent 24%) 0 0 / 64px 64px;
  transform: rotate(28deg);
}

.offers-artists-section {
  width: 100%;
  position: relative;
  padding: 0;
  overflow: hidden;
}

.offers-panel {
  position: relative;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 48px 0 54px;
  background:
    radial-gradient(circle at 10% 8%, rgba(239, 208, 190, 0.3) 0 95px, transparent 96px),
    radial-gradient(circle at 88% 59%, rgba(239, 208, 190, 0.36) 0 155px, transparent 156px),
    linear-gradient(180deg, #fff8f4 0%, #fff5f0 100%);
  border: 0;
  border-radius: 0;
  box-shadow: none;
  overflow: hidden;
}

.offers-panel .container-xxl {
  position: relative;
  z-index: 1;
  padding-inline: 24px;
}

.offers-artists-section::before {
  content: none;
}

.offer-shape,
.offer-leaf {
  position: absolute;
  pointer-events: none;
}

.shape-top-right {
  right: 0;
  top: 0;
  width: 260px;
  height: 178px;
  background: #efd0be;
  border-radius: 0 0 0 130px;
  opacity: 0.75;
}

.shape-mid-right {
  right: -82px;
  top: 578px;
  width: 330px;
  height: 190px;
  background: #efd0be;
  border-radius: 140px 0 0 140px;
  opacity: 0.58;
}

.shape-bottom-left {
  left: -92px;
  bottom: -35px;
  width: 245px;
  height: 150px;
  background: #efd0be;
  border-radius: 0 120px 0 0;
  opacity: 0.5;
}

.offer-leaf-top,
.offer-leaf-mid {
  left: 48px;
  width: 210px;
  height: 210px;
  opacity: 0.42;
  background: radial-gradient(ellipse at 75% 50%, rgba(196, 107, 75, 0.3) 0 22%, transparent 24%) 0 0 / 66px 66px;
  transform: rotate(-22deg);
}

.offer-leaf-top {
  top: 10px;
}

.offer-leaf-mid {
  top: 682px;
  left: 44px;
  transform: rotate(-62deg);
}

.offer-heading h2,
.artist-heading h2 {
  margin: 0;
  color: var(--salmon-dark);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(44px, 5vw, 70px);
  font-weight: 700;
  line-height: 1.05;
  font-style: italic;
}

.offer-heading h2 span,
.artist-heading h2 {
  color: #2d2b2b;
  font-style: normal;
}

.offer-heading p {
  margin: 16px 0 0;
  color: #5e5652;
  font-size: 20px;
  font-weight: 800;
}

.offer-heading p strong,
.artist-heading strong,
.artist-heading p i {
  color: var(--salmon-dark);
}

.offer-grid {
  position: relative;
  z-index: 1;
  margin: 45px auto 0;
  width: min(1180px, 100%);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 26px;
}

.deal-card,
.artist-card {
  position: relative;
  background: rgba(255, 252, 249, 0.92);
  border: 1px solid #f0ded6;
  border-radius: 13px;
  text-align: center;
  box-shadow: 0 16px 32px rgba(116, 74, 56, 0.08);
  overflow: hidden;
}

.deal-card {
  min-height: 450px;
  padding-bottom: 24px;
}

.deal-card img {
  width: 100%;
  height: 186px;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: 13px 13px 48% 48%;
}

.deal-card:nth-child(1) img {
  object-position: center 58%;
}

.deal-card:nth-child(2) img {
  object-position: center 38%;
}

.deal-card:nth-child(3) img,
.deal-card:nth-child(4) img {
  object-position: center 35%;
}

.deal-discount {
  position: absolute;
  left: 0;
  top: 0;
  width: 84px;
  height: 84px;
  color: #fff;
  background: #cf7a55;
  border-radius: 0 0 100% 0;
  padding: 15px 0 0 15px;
  text-align: left;
  font-size: 22px;
  font-weight: 900;
  line-height: 1.1;
  z-index: 2;
}

.deal-discount br + * {
  font-size: 14px;
}

.deal-icon,
.artist-service {
  width: 72px;
  height: 72px;
  margin: -35px auto 0;
  color: var(--salmon-dark);
  background: #fff;
  border: 1px solid #f0d9ce;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 31px;
  box-shadow: 0 8px 18px rgba(126, 82, 64, 0.12);
  position: relative;
  z-index: 3;
}

.deal-card h3 {
  margin: 17px 0 10px;
  color: var(--salmon-dark);
  font-size: 22px;
  font-weight: 900;
}

.deal-card p {
  min-height: 48px;
  margin: 0;
  color: #77706d;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.5;
}

.card-divider {
  position: relative;
  width: 76%;
  height: 1px;
  margin: 18px auto 14px;
  background: linear-gradient(90deg, transparent, #efd6cb, transparent);
}

.card-divider::after {
  content: "";
  position: absolute;
  left: 50%;
  top: -4px;
  width: 8px;
  height: 8px;
  background: #efd6cb;
  transform: translateX(-50%) rotate(45deg);
}

.price-line {
  margin-bottom: 18px;
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 18px;
}

.price-line strong {
  color: var(--salmon-dark);
  font-size: 24px;
  font-weight: 900;
}

.price-line del {
  color: #8d8683;
  font-size: 16px;
  font-weight: 800;
}

.outline-action {
  width: min(205px, calc(100% - 48px));
  min-height: 40px;
  margin: 0 auto;
  color: var(--salmon-dark);
  background: transparent;
  border: 1.5px solid #dd8c70;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  font-size: 14px;
  font-weight: 900;
}

.outline-action:hover {
  color: #fff;
  background: var(--salmon);
}

.artist-heading {
  position: relative;
  z-index: 1;
  margin-top: 42px;
}

.artist-heading span {
  color: var(--salmon-dark);
  font-size: 22px;
  font-weight: 900;
}

.artist-heading h2 {
  margin-top: 22px;
  font-size: clamp(44px, 5vw, 66px);
}

.artist-heading p {
  margin: 19px 0 0;
  color: #6f6763;
  font-size: 18px;
  font-weight: 800;
}

.artist-slider {
  position: relative;
  z-index: 1;
  width: min(1180px, 100%);
  margin: 42px auto 0;
  overflow: hidden;
}

.artist-grid {
  display: flex;
  gap: 30px;
  transition: transform 0.45s ease;
  will-change: transform;
}

.artist-card {
  flex: 0 0 calc((100% - 90px) / 4);
  min-height: 440px;
  padding: 28px 28px 26px;
  overflow: visible;
}

.artist-card::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 34px;
  width: 215px;
  height: 215px;
  background: #eee2dc;
  border-radius: 50%;
  transform: translateX(-50%);
}

.artist-service {
  position: absolute;
  left: 32px;
  top: 32px;
  width: 48px;
  height: 48px;
  margin: 0;
  color: #fff;
  background: #cf7a55;
  border: 0;
  font-size: 22px;
  z-index: 3;
}

.artist-card img {
  position: relative;
  z-index: 2;
  width: 215px;
  height: 215px;
  margin: 16px auto 25px;
  object-fit: cover;
  object-position: center 24%;
  border-radius: 50%;
  display: block;
}

.artist-card:nth-child(3) img,
.artist-card:nth-child(4) img {
  object-position: center 18%;
}

.artist-card h3 {
  margin: 0;
  color: #302d2c;
  font-size: 22px;
  font-weight: 900;
}

.artist-card .role {
  margin: 5px 0 0;
  min-height: 24px;
  color: var(--salmon-dark);
  font-size: 14px;
  font-weight: 900;
}

.artist-meta {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  color: #68615e;
  font-size: 13px;
  font-weight: 900;
}

.artist-meta span + span {
  padding-left: 18px;
  border-left: 1px solid #b9aaa3;
}

.artist-meta i {
  color: var(--salmon-dark);
}

.artist-actions {
  margin-top: 24px;
  display: flex;
  justify-content: center;
  gap: 18px;
}

.artist-actions a {
  width: 42px;
  height: 42px;
  color: var(--salmon-dark);
  background: #fffaf7;
  border: 1px solid #efd6cb;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 19px;
}

.artist-actions a:hover {
  color: #fff;
  background: var(--salmon);
}

.slider-arrow {
  position: absolute;
  top: 50%;
  width: 66px;
  height: 66px;
  color: var(--salmon-dark);
  background: rgba(255, 255, 255, 0.9);
  border: 0;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 30px;
  box-shadow: 0 12px 26px rgba(116, 74, 56, 0.08);
  transform: translateY(-50%);
  z-index: 4;
}

.arrow-left {
  left: -88px;
}

.arrow-right {
  right: -88px;
}

.artist-dots {
  position: relative;
  z-index: 1;
  margin-top: 38px;
  display: flex;
  justify-content: center;
  gap: 17px;
}

.artist-dots span {
  width: 13px;
  height: 13px;
  background: #ded3cc;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.25s ease, height 0.25s ease, width 0.25s ease, margin 0.25s ease;
}

.artist-dots .active {
  width: 18px;
  height: 18px;
  margin-top: -3px;
  background: var(--salmon-dark);
}

.reviews-blogs-section {
  width: 100%;
  position: relative;
  padding: 0;
  overflow: hidden;
}

.reviews-panel {
  position: relative;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 54px 0 58px;
  background:
    radial-gradient(circle at 12% 8%, rgba(239, 208, 190, 0.28) 0 95px, transparent 96px),
    radial-gradient(circle at 86% 48%, rgba(239, 208, 190, 0.34) 0 170px, transparent 171px),
    linear-gradient(180deg, #fff9f5 0%, #fff6f1 52%, #fffaf7 100%);
  border: 0;
  border-radius: 0;
  box-shadow: none;
  overflow: hidden;
}

.reviews-panel .container-xxl {
  position: relative;
  z-index: 2;
  padding-inline: 24px;
}

.rb-shape,
.rb-leaf,
.dot-cluster {
  position: absolute;
  pointer-events: none;
}

.rb-shape-top {
  right: 0;
  top: 0;
  width: 250px;
  height: 238px;
  background: #efd0be;
  border-radius: 0 0 0 150px;
  opacity: 0.72;
}

.rb-shape-mid {
  right: -60px;
  top: 640px;
  width: 310px;
  height: 250px;
  background: #efd0be;
  border-radius: 145px 0 0 145px;
  opacity: 0.55;
}

.rb-leaf-top,
.rb-leaf-bottom {
  left: 50px;
  width: 220px;
  height: 220px;
  opacity: 0.42;
  background: radial-gradient(ellipse at 75% 50%, rgba(196, 107, 75, 0.3) 0 22%, transparent 24%) 0 0 / 68px 68px;
}

.rb-leaf-top {
  top: 20px;
  transform: rotate(-22deg);
}

.rb-leaf-bottom {
  top: 650px;
  transform: rotate(-55deg);
}

.dot-cluster {
  width: 72px;
  height: 72px;
  opacity: 0.45;
  background-image: radial-gradient(circle, #d8977c 2px, transparent 3px);
  background-size: 18px 18px;
}

.dots-top {
  right: 125px;
  top: 138px;
}

.dots-mid {
  right: 140px;
  top: 800px;
}

.review-heading .mini-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 170px;
  min-height: 34px;
  padding: 8px 22px;
  color: #a75f43;
  background: #f2dfd3;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.review-heading h2,
.blogs-heading h2 {
  margin: 20px 0 0;
  color: #262525;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(42px, 5vw, 66px);
  font-weight: 700;
  line-height: 1.08;
}

.review-heading h2 strong,
.blogs-heading h2 strong {
  color: var(--salmon-dark);
  font-weight: 700;
}

.review-heading p,
.blogs-heading p {
  margin: 17px 0 0;
  color: #69615d;
  font-size: 18px;
  font-weight: 800;
}

.review-heading p i,
.blogs-heading p i {
  color: var(--salmon-dark);
}

.testimonial-slider,
.blog-slider {
  position: relative;
  width: min(1160px, 100%);
  margin: 30px auto 0;
  overflow: hidden;
}

.testimonial-grid {
  display: flex;
  gap: 22px;
  transition: transform 0.45s ease;
  will-change: transform;
}

.testimonial-card {
  flex: 0 0 calc((100% - 44px) / 3);
  min-height: 410px;
  padding: 28px 32px 24px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid #f1ded5;
  border-radius: 18px;
  box-shadow: 0 16px 34px rgba(116, 74, 56, 0.08);
}

.review-person,
.hired-person {
  display: flex;
  align-items: center;
  gap: 18px;
}

.review-avatar {
  width: 70px;
  height: 70px;
  flex: 0 0 70px;
  color: #fff;
  background: linear-gradient(135deg, #dba17f, #c98965);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 26px;
  font-weight: 700;
}

.review-avatar.dark {
  background: linear-gradient(135deg, #d17c52, #ba5f3e);
}

.review-person h3 {
  margin: 0 0 2px;
  color: #2e2b2a;
  font-size: 17px;
  font-weight: 900;
}

.review-person span {
  color: #6f6662;
  font-size: 14px;
  font-weight: 600;
}

.stars {
  margin-top: 5px;
  color: #ffc01d;
  font-size: 15px;
  letter-spacing: 1px;
}

.review-text {
  min-height: 78px;
  margin: 26px 0 20px;
  color: #383432;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.55;
}

.review-line {
  height: 1px;
  background: #eadbd4;
}

.reviewed-on {
  padding: 16px 0;
  color: #2f2b2a;
  font-size: 14px;
  font-weight: 800;
}

.reviewed-on i {
  margin-left: 10px;
  color: #22b14c;
  font-size: 20px;
}

.testimonial-card h4 {
  margin: 18px 0 15px;
  color: var(--salmon-dark);
  font-size: 15px;
  font-weight: 900;
}

.pro-avatar {
  width: 66px;
  height: 66px;
  flex: 0 0 66px;
  background:
    linear-gradient(180deg, transparent 45%, #dba17f 46%),
    radial-gradient(circle at 50% 33%, #d6d6d6 0 27px, transparent 28px),
    #fff;
  border: 1px solid #eadbd4;
  border-radius: 50%;
  display: block;
}

.hired-person strong {
  color: #2f2b2a;
  font-size: 17px;
  font-weight: 900;
}

.small-stars {
  margin-top: 7px;
  font-size: 14px;
}

.small-stars span {
  color: #2f2b2a;
  margin-left: 8px;
  letter-spacing: 0;
}

.rb-arrow-left,
.blog-arrow-left {
  left: -86px;
}

.rb-arrow-right,
.blog-arrow-right {
  right: -86px;
}

.blogs-heading {
  margin-top: 76px;
}

.blogs-heading > span {
  color: #df8a6c;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 8px;
  text-transform: uppercase;
}

.blog-slider {
  margin-top: 34px;
}

.blog-grid {
  display: flex;
  gap: 30px;
  transition: transform 0.45s ease;
  will-change: transform;
}

.blog-card {
  flex: 0 0 calc((100% - 60px) / 3);
  min-height: 500px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid #f1ded5;
  border-radius: 14px;
  box-shadow: 0 16px 34px rgba(116, 74, 56, 0.08);
  overflow: hidden;
}

.blog-image {
  position: relative;
  height: 218px;
  margin: 10px 10px 0;
  overflow: hidden;
  border-radius: 10px;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.blog-image span {
  position: absolute;
  left: 28px;
  bottom: -1px;
  width: 54px;
  height: 54px;
  color: #fff;
  background: #df8a6c;
  border: 4px solid rgba(255, 255, 255, 0.9);
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-size: 25px;
}

.blog-body {
  padding: 25px 24px 24px;
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 22px;
  color: #716965;
  font-size: 13px;
  font-weight: 800;
}

.blog-meta strong {
  padding: 6px 12px;
  color: #dc8062;
  background: #fff0e9;
  border-radius: 999px;
  text-transform: uppercase;
}

.blog-meta i {
  color: #df8a6c;
  margin-right: 6px;
}

.blog-card h3 {
  margin: 16px 0 13px;
  color: #2c2928;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 25px;
  font-weight: 700;
  line-height: 1.25;
}

.blog-card p {
  min-height: 86px;
  margin: 0;
  color: #786f6b;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.65;
}

.blog-footer {
  margin-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  color: #3b3735;
  font-size: 14px;
  font-weight: 800;
}

.blog-footer span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.blog-footer span:first-child {
  color: var(--salmon-dark);
}

.blog-footer img {
  width: 38px;
  height: 38px;
  object-fit: cover;
  border-radius: 50%;
}

.blog-footer i {
  color: #df8a6c;
  font-size: 20px;
}

.blog-dots {
  margin-top: 38px;
  display: flex;
  justify-content: center;
  gap: 16px;
}

.blog-dots span,
.testimonial-dots span {
  width: 14px;
  height: 14px;
  background: #efd5c9;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.25s ease;
}

.blog-dots .active,
.testimonial-dots .active {
  background: var(--salmon-dark);
  transform: scale(1.12);
}

.testimonial-dots {
  margin-top: 28px;
  display: flex;
  justify-content: center;
  gap: 16px;
}

.faq-footer-section {
  width: 100%;
  padding: 0;
  overflow: hidden;
}

.faq-footer-panel {
  width: 100%;
  max-width: none;
  margin: 0;
  background: #fff;
  border-radius: 0;
  box-shadow: none;
  overflow: hidden;
}

.faq-wrap {
  padding: 72px 0 92px;
}

.faq-footer-panel .container-xxl {
  padding-inline: 24px;
}

.faq-wrap h2 {
  margin: 0 0 54px;
  color: #050505;
  text-align: center;
  font-size: clamp(36px, 4vw, 48px);
  font-weight: 900;
  letter-spacing: 0;
}

.faq-list {
  width: min(1150px, 100%);
  margin: 0 auto;
  display: grid;
  gap: 28px;
}

.faq-item {
  min-height: 96px;
  padding: 0 68px 0 40px;
  background: #fff;
  border: 1px solid #f7ede8;
  border-radius: 0 0 24px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  box-shadow: 0 7px 0 rgba(226, 126, 93, 0.08), 0 8px 18px rgba(117, 74, 58, 0.08);
  cursor: pointer;
  transition: min-height 0.3s ease, padding 0.3s ease, box-shadow 0.3s ease;
}

.faq-item.active {
  min-height: 180px;
  padding: 30px 56px 28px 46px;
  align-items: center;
}

.faq-content {
  flex: 1 1 auto;
}

.faq-item h3 {
  margin: 0;
  color: #444445;
  font-size: 26px;
  font-weight: 900;
  line-height: 1.25;
}

.faq-item.active h3 {
  color: #d87856;
  font-size: 20px;
  margin-bottom: 18px;
}

.faq-item p {
  max-width: 760px;
  margin: 0;
  color: #4d4d4f;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.35;
}

.faq-item:not(.active) p {
  display: none;
}

.faq-item button {
  width: 30px;
  height: 30px;
  color: #000;
  background: transparent;
  border: 0;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  font-size: 30px;
  font-weight: 900;
  pointer-events: none;
  transition: background 0.25s ease, color 0.25s ease, width 0.25s ease, height 0.25s ease;
}

.faq-item.active button {
  width: 30px;
  height: 30px;
  color: #fff;
  background: #d87856;
  border-radius: 50%;
  font-size: 0;
}

.faq-item.active button i {
  display: none;
}

.faq-item.active button::before {
  content: "";
  width: 18px;
  height: 4px;
  background: #fff;
  border-radius: 999px;
  display: block;
}

.site-footer {
  position: relative;
  padding: 58px 0 28px;
  color: #fff;
  background: #e6815e;
}

.footer-notch {
  position: absolute;
  left: 50%;
  top: 0;
  width: 360px;
  height: 40px;
  background: #fff;
  border-radius: 0 0 40px 40px;
  transform: translateX(-50%);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 1.35fr 1.1fr 0.9fr;
  gap: 48px;
  align-items: start;
  width: min(1150px, 100%);
  margin: 0 auto;
  padding-bottom: 26px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.72);
}

.footer-brand {
  align-self: center;
  font-size: 56px;
  font-weight: 900;
  line-height: 1;
}

.footer-grid h3 {
  margin: 0 0 18px;
  color: #fff;
  font-size: 42px;
  font-weight: 900;
  line-height: 1;
}

.footer-grid a {
  color: #fff;
  display: block;
  font-size: 30px;
  font-weight: 900;
  line-height: 1.55;
}

.footer-bottom {
  width: min(1150px, 100%);
  margin: 24px auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-bottom span {
  color: #fff;
  font-size: 12px;
  font-weight: 700;
}

.social-links {
  display: flex;
  gap: 10px;
}

.social-links a {
  width: 34px;
  height: 34px;
  color: #fff;
  background: #050505;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 16px;
  transition: transform 0.2s ease, background 0.2s ease;
}

.social-links a:hover {
  color: #fff;
  background: #4b3730;
  transform: translateY(-2px);
}

@media (max-width: 1199.98px) {
  .navbar .nav-link,
  .service-list a {
    font-size: 14px;
  }

  .service-row {
    grid-template-columns: 130px 36px minmax(0, 1fr);
    gap: 18px;
  }

  .category-track {
    gap: 12px;
  }

  .category-item img {
    width: 76px;
    height: 76px;
  }

  .offer-grid,
  .artist-grid {
    gap: 18px;
  }

  .artist-card {
    flex-basis: calc((100% - 54px) / 4);
  }

  .testimonial-card {
    flex-basis: calc((100% - 36px) / 3);
  }

  .blog-card {
    flex-basis: calc((100% - 36px) / 3);
  }

  .arrow-left {
    left: -20px;
  }

  .arrow-right {
    right: -20px;
  }

  .rb-arrow-left,
  .blog-arrow-left {
    left: -18px;
  }

  .rb-arrow-right,
  .blog-arrow-right {
    right: -18px;
  }

  .faq-list,
  .footer-grid,
  .footer-bottom {
    width: min(1040px, 100%);
  }

  .faq-item p {
    font-size: 17px;
  }

  .footer-grid {
    gap: 34px;
  }

  .footer-grid h3 {
    font-size: 34px;
  }

  .footer-grid a {
    font-size: 25px;
  }
}

@media (max-width: 991.98px) {
  .main-nav {
    min-height: 78px;
  }

  .service-list {
    min-height: 0;
    padding: 8px 16px;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    overflow: visible;
  }

  .service-list li {
    width: 100%;
  }

  .service-nav .service-list a,
  .services-trigger {
    width: 100%;
    min-height: 48px;
    padding: 14px 12px;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 8px;
    text-align: left;
  }

  .service-nav .service-list li:last-child a {
    border-bottom: 0;
  }

  .service-nav .service-list a::after,
  .services-trigger::after {
    left: 12px;
    right: auto;
    bottom: 8px;
    width: 30px;
  }

  .services-mega-menu {
    display: none !important;
  }

  .service-list .services-item {
    display: block;
  }

  .service-list .mobile-services-menu {
    max-height: 0;
    padding: 0 8px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 7px;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition: max-height 0.28s ease, padding 0.28s ease, opacity 0.2s ease;
  }

  .service-nav.services-open .mobile-services-menu {
    max-height: 180px;
    padding: 8px 8px 13px;
    opacity: 1;
    visibility: visible;
  }

  .service-nav .service-list .mobile-services-menu a {
    width: auto;
    min-height: 64px;
    padding: 9px 4px;
    color: #8e432d;
    background: rgba(255, 250, 247, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    text-align: center;
    white-space: normal;
    font-size: 11px;
  }

  .service-nav .service-list .mobile-services-menu a::after {
    display: none;
  }

  .service-nav .service-list .mobile-services-menu a > i {
    font-size: 18px;
  }

  .service-nav .service-list .mobile-services-menu .mobile-services-all {
    min-height: 38px;
    grid-column: 1 / -1;
    flex-direction: row;
    gap: 7px;
    color: #fff;
    background: #ad5235;
  }

  .service-nav .service-list .mobile-services-menu .mobile-services-all > i {
    font-size: 13px;
  }

  .mega-menu-grid {
    grid-template-columns: 1fr;
  }

  .hero-section {
    padding-top: 38px;
  }

  .hero-visual {
    min-height: 470px;
  }

  .portrait-halo {
    left: 2%;
    right: 43%;
  }

  .hero-person {
    left: 5%;
    width: 43%;
  }

  .phone-mockup {
    right: 5%;
  }

  .floating-card {
    right: 1%;
  }

  .category-track {
    overflow-x: auto;
    grid-template-columns: repeat(8, 96px);
    padding-bottom: 6px;
    scrollbar-width: thin;
  }

  .offer-grid,
  .artist-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .artist-card,
  .testimonial-card,
  .blog-card {
    flex-basis: calc((100% - 18px) / 2);
  }

  .offers-artists-section {
    padding: 0;
  }

  .offers-panel {
    border-radius: 0;
  }

  .slider-arrow {
    display: none;
  }

  .testimonial-grid,
  .blog-grid {
    max-width: 520px;
    margin-inline: auto;
  }

  .reviews-blogs-section {
    padding: 0;
  }

  .reviews-panel {
    border-radius: 0;
  }

  .faq-footer-section {
    padding: 0;
  }

  .faq-footer-panel {
    border-radius: 0;
  }

  .faq-item,
  .faq-item.active {
    padding-inline: 28px;
  }

  .faq-item.active button {
    width: 68px;
    height: 68px;
  }

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

  .footer-brand {
    align-self: start;
  }
}

@media (max-width: 767.98px) {
  .brand-title {
    font-size: 18px;
  }

  .brand-mark {
    width: 36px;
    height: 36px;
    font-size: 28px;
  }

  .hero-section {
    padding-bottom: 108px;
  }

  .hero-visual {
    min-height: 420px;
    margin-top: 18px;
  }

  .portrait-halo {
    left: 0;
    right: 43%;
    height: 330px;
  }

  .hero-person {
    left: 0;
    width: 56%;
    height: 350px;
  }

  .phone-mockup {
    right: 0;
    min-width: 178px;
    width: 42%;
    padding: 13px 12px;
    border-width: 7px;
  }

  .discount-card {
    left: 40%;
    top: 26px;
    padding: 11px 15px;
    font-size: 20px;
  }

  .discount-x {
    left: calc(40% + 96px);
    top: 55px;
  }

  .floating-card {
    width: 138px;
    min-height: 56px;
    font-size: 11px;
  }

  .beauty-bag {
    left: 14%;
    bottom: 24px;
    padding: 12px 17px;
    font-size: 13px;
  }

  .search-panel {
    bottom: -95px;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }

  .location-select {
    width: 100%;
    border-right: 0;
    border-bottom: 1px solid #eee1dc;
  }

  .search-panel button {
    width: 100%;
  }

  .pamper-section {
    padding-top: 132px;
  }

  .service-row {
    grid-template-columns: 88px 32px minmax(0, 1fr);
    gap: 12px;
    margin-top: 38px;
  }

  .audience-card {
    min-height: 118px;
    font-size: 19px;
  }

  .audience-card i {
    font-size: 30px;
  }

  .audience-card strong {
    font-size: 26px;
  }

  .round-arrow {
    width: 30px;
    height: 30px;
    font-size: 17px;
  }

  .trust-strip {
    padding: 16px;
    border-radius: 18px;
    flex-direction: column;
  }

  .offers-artists-section {
    padding: 0;
  }

  .offers-panel {
    padding: 42px 0 46px;
    border-radius: 0;
  }

  .offer-grid,
  .artist-grid {
    grid-template-columns: 1fr;
  }

  .artist-card,
  .testimonial-card,
  .blog-card {
    flex-basis: 100%;
  }

  .deal-card,
  .artist-card {
    max-width: 390px;
    width: 100%;
    margin-inline: auto;
  }

  .offer-heading h2,
  .artist-heading h2 {
    font-size: 42px;
  }

  .offer-heading p,
  .artist-heading p {
    font-size: 15px;
  }

  .reviews-blogs-section {
    padding: 0;
  }

  .reviews-panel {
    padding: 42px 0 46px;
    border-radius: 0;
  }

  .review-heading h2,
  .blogs-heading h2 {
    font-size: 40px;
  }

  .review-heading p,
  .blogs-heading p {
    font-size: 15px;
  }

  .testimonial-card {
    padding: 24px 22px;
  }

  .review-text {
    font-size: 18px;
  }

  .blog-card h3 {
    font-size: 23px;
  }

  .faq-footer-section {
    padding: 0;
  }

  .faq-footer-panel {
    border-radius: 0;
  }

  .faq-wrap {
    padding: 52px 0 64px;
  }

  .faq-list {
    gap: 18px;
  }

  .faq-item,
  .faq-item.active {
    min-height: auto;
    padding: 24px 20px;
    border-radius: 0 0 18px 18px;
  }

  .faq-item h3,
  .faq-item.active h3 {
    font-size: 18px;
  }

  .faq-item p {
    font-size: 15px;
  }

  .faq-item.active button {
    width: 50px;
    height: 50px;
    font-size: 0;
  }

  .footer-notch {
    width: 210px;
    height: 30px;
  }

  .site-footer {
    padding-top: 58px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-brand {
    font-size: 42px;
  }

  .footer-grid h3 {
    font-size: 30px;
  }

  .footer-grid a {
    font-size: 22px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* Keep the trust benefits in one clean row on mobile. */
@media (max-width: 767.98px) {
  .pamper-section .trust-strip {
    width: 100%;
    padding: 12px 8px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
    border-radius: 16px;
  }

  .pamper-section .trust-strip > div {
    min-width: 0;
    flex-direction: column;
    justify-content: flex-start;
    gap: 6px;
    text-align: center;
    font-size: 9px;
    line-height: 1.25;
  }

  .pamper-section .trust-strip i {
    width: 30px;
    height: 30px;
    flex: 0 0 30px;
    font-size: 14px;
  }
}

@media (max-width: 374.98px) {
  .pamper-section .trust-strip {
    padding: 10px 4px;
    gap: 3px;
  }

  .pamper-section .trust-strip > div {
    gap: 5px;
    font-size: 8px;
  }

  .pamper-section .trust-strip i {
    width: 28px;
    height: 28px;
    flex-basis: 28px;
    font-size: 13px;
  }
}

@media (max-width: 575.98px) {
  .mega-menu-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .mega-menu-heading h2 {
    font-size: 21px;
  }

  .services-mega-menu {
    width: calc(100vw - 20px);
    padding: 14px;
    border-radius: 14px;
  }

  .audience-services {
    padding: 16px;
  }

  .hero-section h1 {
    font-size: 39px;
  }

  .eyebrow {
    margin-bottom: 15px;
    font-size: 20px;
  }

  .hero-visual {
    min-height: 360px;
  }

  .portrait-halo {
    height: 295px;
  }

  .hero-person {
    height: 315px;
  }

  .phone-grid,
  .phone-greeting,
  .booking-row {
    display: none;
  }

  .booking-card {
    margin-top: 12px;
  }

  .phone-mockup {
    min-width: 146px;
    border-radius: 24px;
  }

  .candy {
    top: 88px;
  }

  .confirm {
    bottom: 62px;
  }

  .heart-bubble {
    left: 6%;
    top: 46px;
  }

  .hero-arrow,
  .hero-dots {
    display: none;
  }

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

  .audience-card {
    width: 132px;
    min-height: 106px;
    justify-self: center;
  }

  .round-arrow {
    justify-self: center;
    transform: rotate(90deg);
  }

  .category-track {
    grid-template-columns: repeat(8, 92px);
  }
}

/* Common typography scale: edit these selectors with the variables above. */
body {
  font-size: var(--fs-body);
}

.navbar .nav-link,
.service-list a {
  font-size: var(--fs-nav);
}

.brand-title {
  font-size: 20px;
}

.brand-tagline,
.store-badge,
.phone-grid span {
  font-size: var(--fs-small);
}

.eyebrow {
  font-size: 20px;
}

.hero-section h1 {
  font-size: var(--fs-hero);
}

.hero-copy,
.section-heading p,
.offer-heading p,
.artist-heading p,
.review-heading p,
.blogs-heading p,
.deal-card p,
.artist-card .role,
.blog-card p,
.reviewed-on,
.artist-meta,
.blog-meta,
.blog-footer,
.trust-strip div {
  font-size: var(--fs-body);
}

.glow-pill,
.category-item,
.discount-card span,
.phone-top,
.booking-row,
.phone-greeting,
.booking-card {
  font-size: var(--fs-small);
}

.section-heading span,
.artist-heading span,
.blogs-heading > span,
.review-heading .mini-pill {
  font-size: var(--fs-subtitle);
}

.section-heading h2,
.offer-heading h2,
.artist-heading h2,
.review-heading h2,
.blogs-heading h2,
.faq-wrap h2 {
  font-size: var(--fs-section-title);
}

.deal-card h3,
.artist-card h3,
.blog-card h3,
.audience-card {
  font-size: var(--fs-card-title);
}

.audience-card strong {
  font-size: 27px;
}

.price-line strong {
  font-size: 20px;
}

.price-line del,
.outline-action,
.hired-person strong,
.testimonial-card h4,
.review-person h3,
.small-stars,
.stars {
  font-size: var(--fs-card-body);
}

.review-text {
  font-size: 17px;
}

.faq-item h3,
.faq-item.active h3 {
  font-size: var(--fs-faq-title);
}



.footer-brand {
  font-size: 32px;
  font-weight: 800;
  line-height: 1.08;
}

.footer-grid h3 {
  font-size: var(--fs-footer-title);
  font-weight: 800;
  letter-spacing: -0.2px;
}

.footer-grid a {
  font-size: var(--fs-footer-link);
  font-weight: 600;
  line-height: 1.9;
  opacity: 0.92;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.footer-grid a:hover {
  color: #fff;
  opacity: 1;
  transform: translateX(3px);
}

.footer-bottom span {
  font-size: var(--fs-body);
}

@media (max-width: 767.98px) {
  :root {
    --fs-hero: 32px;
    --fs-section-title: 31px;
    --fs-panel-title: 29px;
    --fs-card-title: 18px;
    --fs-faq-title: 17px;
    --fs-faq-answer: 15px;
    --fs-footer-title: 17px;
    --fs-footer-link: 14px;
  }

  .footer-brand {
    font-size: 26px;
  }
}

/* Mobile layout safeguards */
@media (max-width: 767.98px) {
  .container-xxl,
  .offers-panel .container-xxl,
  .reviews-panel .container-xxl,
  .faq-footer-panel .container-xxl {
    width: 100%;
    max-width: 100%;
    padding-inline: 16px;
  }

  .main-nav {
    min-height: 70px;
  }

  .main-nav .container-xxl {
    flex-wrap: nowrap;
  }

  .navbar-brand {
    max-width: calc(100% - 158px);
    margin-right: 0;
  }

  .navbar-toggler {
    width: 42px;
    height: 42px;
    padding: 9px;
    border: 1px solid #efc7b8 !important;
    border-radius: 12px;
    box-shadow: none !important;
  }

  .navbar-toggler-icon {
    width: 22px;
    height: 18px;
    background-image:
      linear-gradient(var(--salmon-dark), var(--salmon-dark)),
      linear-gradient(var(--salmon-dark), var(--salmon-dark)),
      linear-gradient(var(--salmon-dark), var(--salmon-dark));
    background-position: center top, center, center bottom;
    background-repeat: no-repeat;
    background-size: 22px 2px;
  }

  .mobile-book-btn {
    min-width: 96px;
    margin-right: 8px;
    padding: 10px 14px;
    font-size: 12px;
  }

  .service-list {
    scroll-snap-type: x proximity;
  }

  .service-list li {
    scroll-snap-align: start;
  }

  .services-mega-menu {
    top: 100%;
  }

  .hero-section {
    min-height: 0;
    padding: 34px 0 38px;
  }

  .hero-section .row {
    margin-inline: 0;
    --bs-gutter-x: 0;
    --bs-gutter-y: 24px;
  }

  .hero-section .row > * {
    width: 100%;
    max-width: 100%;
    padding-inline: 0;
  }

  .hero-section h1,
  .hero-copy {
    width: 100%;
    max-width: 100%;
  }

  .hero-copy {
    overflow-wrap: anywhere;
  }

  .hero-visual {
    width: 100%;
    max-width: 100%;
    min-height: 380px;
    margin-top: 0;
    overflow: hidden;
    border-radius: 24px;
  }

  .search-panel {
    position: relative;
    left: auto;
    bottom: auto;
    width: 100%;
    margin-top: 18px;
    padding: 10px;
    transform: none;
  }

  .pamper-section {
    padding: 58px 0 32px;
  }

  .section-heading,
  .offer-heading,
  .artist-heading,
  .review-heading,
  .blogs-heading {
    width: 100%;
    max-width: 100%;
    padding-inline: 4px;
  }

  .section-heading h2,
  .offer-heading h2,
  .artist-heading h2,
  .review-heading h2,
  .blogs-heading h2 {
    max-width: 100%;
    line-height: 1.12;
    overflow-wrap: anywhere;
  }

  .service-row,
  .category-track,
  .trust-strip,
  .offer-grid,
  .artist-slider,
  .testimonial-slider,
  .blog-slider,
  .faq-list,
  .footer-grid,
  .footer-bottom {
    width: 100%;
    max-width: 100%;
  }

  .category-track {
    overscroll-behavior-inline: contain;
    scroll-snap-type: x proximity;
  }

  .category-item {
    scroll-snap-align: start;
  }

  .deal-card,
  .artist-card {
    width: 100%;
    max-width: 100%;
  }

  .offer-heading h2,
  .artist-heading h2,
  .review-heading h2,
  .blogs-heading h2 {
    font-size: 32px;
  }

  .offer-heading p,
  .artist-heading p,
  .review-heading p,
  .blogs-heading p {
    max-width: 340px;
    margin-inline: auto;
    line-height: 1.55;
  }

  .testimonial-grid,
  .blog-grid {
    width: 100%;
    max-width: 100%;
  }

  .testimonial-card,
  .blog-card {
    min-width: 0;
  }

  .faq-item,
  .faq-item.active {
    gap: 14px;
  }

  .footer-bottom {
    gap: 18px;
  }

  .social-links {
    flex-wrap: wrap;
  }
}

@media (max-width: 575.98px) {
  .brand-title {
    font-size: 17px;
  }

  .brand-tagline {
    font-size: 8px;
  }

  .mobile-book-btn {
    min-width: 88px;
    padding-inline: 11px;
  }

  .service-nav .service-list a,
  .services-trigger {
    padding: 16px 13px 14px;
    font-size: 13px;
  }

  .mega-menu-heading h2 {
    font-size: 19px;
  }

  .mega-menu-heading > a {
    white-space: normal;
  }

  .audience-title {
    margin-bottom: 14px;
  }

  .hero-section {
    padding-top: 28px;
  }

  .eyebrow {
    margin-bottom: 16px;
    font-size: 16px;
  }

  .hero-section h1 {
    font-size: 32px;
    line-height: 1.13;
  }

  .hero-copy {
    margin-top: 16px;
    font-size: 13px;
    line-height: 1.55;
  }

  .glow-pill {
    border-radius: 12px;
    line-height: 1.35;
  }

  .store-actions {
    gap: 8px;
  }

  .store-badge {
    min-width: 0;
    flex: 1 1 calc(50% - 4px);
    justify-content: center;
  }

  .hero-visual {
    min-height: 340px;
  }

  .portrait-halo {
    left: 0;
    right: 31%;
    height: 300px;
  }

  .hero-person {
    left: 0;
    width: 69%;
    height: 310px;
  }

  .phone-mockup {
    top: 20px;
    right: -28px;
    width: 47%;
    min-width: 150px;
  }

  .discount-card {
    left: 48%;
    top: 30px;
    padding: 10px 13px;
    font-size: 19px;
  }

  .discount-x {
    left: calc(48% + 92px);
    top: 58px;
  }

  .candy,
  .confirm,
  .beauty-bag {
    display: none;
  }

  .search-panel {
    gap: 4px;
    border-radius: 12px;
  }

  .location-select {
    padding-inline: 12px;
  }

  .search-panel input {
    padding-inline: 12px;
  }

  .section-heading h2 {
    max-width: 310px;
    margin-inline: auto;
    font-size: 29px;
  }

  .section-heading p {
    margin-inline: auto;
    max-width: 310px;
  }

  .service-row {
    gap: 14px;
    margin-top: 32px;
  }

  .category-track {
    padding-inline: 2px;
  }

  .trust-strip {
    margin-top: 38px;
  }

  .offers-panel,
  .reviews-panel {
    padding-block: 42px;
  }

  .offer-heading h2,
  .artist-heading h2,
  .review-heading h2,
  .blogs-heading h2 {
    max-width: 330px;
    margin-inline: auto;
    font-size: 29px;
  }

  .offer-grid {
    margin-top: 30px;
  }

  .artist-heading {
    margin-top: 48px;
  }

  .artist-heading span {
    font-size: 14px;
  }

  .artist-slider {
    margin-top: 28px;
  }

  .artist-card {
    padding-inline: 20px;
  }

  .review-heading .mini-pill {
    min-width: 0;
    padding-inline: 18px;
    letter-spacing: 2px;
  }

  .testimonial-card {
    min-height: 0;
    padding: 22px 18px;
  }

  .review-text {
    min-height: 0;
    font-size: 16px;
  }

  .blogs-heading {
    margin-top: 56px;
  }

  .blog-card {
    min-height: 0;
  }

  .blog-body {
    padding: 20px 18px;
  }

  .blog-meta {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .faq-wrap {
    padding: 44px 0 54px;
  }

  .faq-wrap h2 {
    margin-bottom: 30px;
    font-size: 29px;
  }

  .faq-item,
  .faq-item.active {
    padding: 20px 16px;
  }

  .faq-item.active button {
    width: 42px;
    height: 42px;
  }

  .site-footer {
    padding: 52px 0 24px;
  }

  .footer-grid {
    gap: 22px;
  }

  .footer-grid h3 {
    margin-bottom: 10px;
  }

  .footer-grid a {
    font-size: 14px;
    line-height: 1.7;
  }

  .footer-bottom {
    margin-top: 24px;
  }
}

@media (max-width: 374.98px) {
  .navbar-brand {
    max-width: calc(100% - 140px);
    gap: 4px !important;
  }

  .brand-mark {
    width: 30px;
    height: 30px;
    font-size: 24px;
  }

  .brand-title {
    font-size: 15px;
  }

  .brand-tagline {
    display: none;
  }

  .mobile-book-btn {
    min-width: 78px;
    margin-right: 6px;
    padding: 9px 8px;
    font-size: 11px;
  }

  .navbar-toggler {
    width: 38px;
    height: 38px;
    padding: 7px;
  }
}

/* Mobile service carousels: two cards per view with touch-friendly snapping. */
@media (max-width: 767.98px) {
  .pamper-section .divider {
    width: calc(100% + 32px);
    margin-left: -16px;
    margin-right: -16px;
  }

  .pamper-section .service-slider-controls {
    justify-self: center;
    flex-direction: row;
    gap: 12px;
  }

  .pamper-section .service-slider-controls .service-prev {
    display: grid;
  }

  .pamper-section .service-slider-controls .round-arrow {
    width: 40px;
    height: 40px;
    cursor: pointer;
    font-size: 19px;
    transform: none;
    box-shadow: 0 8px 18px rgba(200, 102, 69, 0.22);
    touch-action: manipulation;
  }

  .pamper-section .category-track {
    width: 100%;
    max-width: 100%;
    padding: 10px 6px 14px;
    display: grid;
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: calc((100% - 14px) / 2);
    gap: 14px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    touch-action: pan-x;
  }

  .pamper-section .category-track::-webkit-scrollbar {
    display: none;
  }

  .pamper-section .category-item {
    width: auto;
    min-width: 0;
    padding: 8px 4px 12px;
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(239, 184, 166, 0.55);
    border-radius: 16px;
    font-size: 12px;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    box-shadow: 0 10px 24px rgba(126, 82, 64, 0.08);
  }

  .pamper-section .category-item img {
    width: min(100%, 132px);
    height: auto;
    aspect-ratio: 1;
    margin-bottom: 12px;
  }

  .pamper-section .category-item i {
    left: calc(50% - clamp(52px, 16vw, 66px));
    top: 1px;
    margin-left: 0;
  }
}
