@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Afacad:wght@400;500;600;700;800&display=swap&subset=vietnamese");

:root {
  --primary: #6B3F2A;
  --secondary: #C9A45F;
  --dark: #2A160F;
  --cream: #F6EBD3;
  --cream-light: #FFF7E8;
  --white: #FFFFFF;
  --text: #74513F;
  --shadow: 0 8px 22px rgba(46, 28, 18, 0.18);
  --header-height: 102px;
  --admin-bar-offset: 0px;
  --scrollbar-width: 0px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Afacad", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.45;
  color: var(--text);
  background: var(--cream);
}

.admin-bar {
  --admin-bar-offset: 32px;
}

@media (max-width: 782px) {
  .admin-bar {
    --admin-bar-offset: 46px;
  }
}

body.nav-open,
body.search-open {
  overflow: hidden;
  padding-right: var(--scrollbar-width);
}

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

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

button,
input {
  font: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
}

h1 {
  font-size: 52px;
  line-height: 1.05;
}

h2 {
  font-size: 36px;
  line-height: 1.15;
}

h3 {
  font-size: 28px;
  line-height: 1.2;
}

h4 {
  font-size: 22px;
  line-height: 1.25;
}

h5 {
  font-size: 18px;
  line-height: 1.3;
}

h6 {
  font-size: 16px;
  line-height: 1.35;
}

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

.section-title {
  color: var(--primary);
  font-size: 38px;
  font-weight: 800;
  line-height: 1.15;
  text-align: center;
  text-transform: uppercase;
}

.section-lead {
  max-width: 1120px;
  margin: 16px auto 0;
  color: #8F5636;
  font-size: 19px;
  font-weight: 700;
  line-height: 1.35;
  text-align: center;
  text-transform: uppercase;
}

.site-header {
  position: relative;
  z-index: 50;
  min-height: var(--header-height);
  background: var(--primary);
  isolation: isolate;
}

.header-inner {
  display: flex;
  align-items: center;
  min-height: var(--header-height);
  gap: 42px;
}

.site-logo {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  width: 84px;
}

.site-logo img {
  width: 100%;
  height: auto;
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex: 1 1 auto;
  gap: 25px;
  min-width: 0;
}

.nav-item {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: var(--header-height);
}

.nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  min-height: var(--header-height);
  color: var(--white);
  font-size: 21px;
  font-weight: 700;
  white-space: nowrap;
}

.nav-link::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 5px;
  background: var(--secondary);
  content: "";
  opacity: 0;
  transform: scaleX(0.75);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.nav-link:hover::after,
.nav-link.active::after,
body.single-service .primary-nav .nav-link[href*="/dich-vu/"]::after,
body.post-type-archive-service .primary-nav .nav-link[href*="/dich-vu/"]::after,
body.tax-service_category .primary-nav .nav-link[href*="/dich-vu/"]::after,
body.single-post .primary-nav .nav-link[href*="/tin-tuc/"]::after,
body.category .primary-nav .nav-link[href*="/tin-tuc/"]::after {
  opacity: 1;
  transform: scaleX(1);
}

.nav-link.active,
body.single-service .primary-nav .nav-link[href*="/dich-vu/"],
body.post-type-archive-service .primary-nav .nav-link[href*="/dich-vu/"],
body.tax-service_category .primary-nav .nav-link[href*="/dich-vu/"],
body.single-post .primary-nav .nav-link[href*="/tin-tuc/"],
body.category .primary-nav .nav-link[href*="/tin-tuc/"] {
  color: #E7CC86;
}

.nav-link-parent svg {
  width: 16px;
  height: 16px;
  stroke-width: 3;
  transition: transform 0.18s ease;
}

.has-submenu:hover .nav-link-parent svg,
.has-submenu:focus-within .nav-link-parent svg {
  transform: rotate(180deg);
}

.nav-submenu {
  position: absolute;
  top: 100%;
  left: 50%;
  z-index: 6;
  display: grid;
  min-width: 220px;
  padding: 10px;
  border-radius: 8px;
  background: var(--dark);
  box-shadow: 0 14px 34px rgba(46, 28, 18, 0.22);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -8px);
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.nav-submenu::before {
  position: absolute;
  top: -10px;
  right: 0;
  left: 0;
  height: 10px;
  content: "";
}

.has-submenu:hover .nav-submenu,
.has-submenu:focus-within .nav-submenu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.nav-submenu a {
  display: flex;
  align-items: center;
  min-height: 40px;
  padding: 0 12px;
  border-radius: 6px;
  color: var(--white);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.2;
  white-space: nowrap;
}

.nav-submenu a:hover {
  color: var(--dark);
  background: var(--secondary);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  flex: 0 0 auto;
}

.language-button,
.icon-button,
.booking-button {
  border: 0;
  cursor: pointer;
}

.language-dropdown {
  position: relative;
  display: inline-flex;
}

.language-button {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 48px;
  padding: 0;
  color: var(--white);
  background: transparent;
  font-size: 21px;
  font-weight: 700;
  white-space: nowrap;
}

.flag {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 23px;
  height: 16px;
  overflow: hidden;
  border-radius: 1px;
  color: transparent;
  font-size: 0;
  line-height: 1;
}

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

.flag-image {
  color: inherit;
  background: transparent;
  font-size: inherit;
}

.flag-image::before {
  content: none;
}

.flag::before {
  color: #FFDA44;
  font-size: 10px;
}

.flag-vn,
.flag-cn {
  background: #E31C23;
}

.flag-en {
  background: #24468E;
}

.flag-en::before {
  color: var(--white);
  content: "UK";
  font-size: 8px;
  font-weight: 800;
}

.flag-kr {
  border: 1px solid rgba(42, 22, 15, 0.16);
  background: var(--white);
}

.flag-kr::before {
  color: #C9302C;
  content: "●";
  font-size: 9px;
}

.flag-jp {
  border: 1px solid rgba(42, 22, 15, 0.16);
  background: var(--white);
}

.flag-jp::before {
  color: #BC002D;
  content: "●";
  font-size: 10px;
}

.language-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  z-index: 5;
  display: grid;
  gap: 0;
  min-width: 150px;
  padding: 10px 8px 8px;
  border-radius: 8px;
  background: var(--dark);
  box-shadow: 0 14px 34px rgba(46, 28, 18, 0.22);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.language-menu::before {
  position: absolute;
  top: -10px;
  right: 0;
  left: 0;
  height: 10px;
  content: "";
}

.language-dropdown:hover .language-menu,
.language-dropdown:focus-within .language-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.language-menu a {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 0 9px;
  border-radius: 6px;
  color: var(--white);
  font-size: 15px;
  font-weight: 700;
  white-space: nowrap;
}

.language-menu .flag {
  width: 22px;
  height: 15px;
}

.language-menu .flag::before {
  font-size: 12px;
}

.language-menu .flag-en::before {
  font-size: 9px;
}

.language-menu .flag-kr::before {
  font-size: 11px;
}

.language-menu .flag-jp::before {
  font-size: 11px;
}

.language-menu a:hover,
.language-menu a.active {
  color: var(--dark);
  background: var(--secondary);
}

.language-button svg {
  width: 18px;
  height: 18px;
  stroke-width: 3;
}

.icon-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 4px;
  color: var(--white);
  background: transparent;
  transition: background 0.2s ease, color 0.2s ease;
}

.icon-button:hover {
  background: rgba(255, 255, 255, 0.12);
}

.icon-button svg {
  width: 38px;
  height: 38px;
  stroke-width: 2.4;
}

.search-button svg {
  width: 31px;
  height: 31px;
}

.booking-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 203px;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 8px;
  color: var(--white);
  background: var(--dark);
  font-size: 21px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 0 2px 0 rgba(0, 0, 0, 0.18);
  transition: transform 0.2s ease, background 0.2s ease;
}

.booking-button:hover {
  background: #1F0F0A;
  transform: translateY(-1px);
}

.swal2-popup {
  border-radius: 8px !important;
  color: var(--primary);
  font-family: inherit !important;
}

.swal2-popup .swal2-title {
  color: var(--primary) !important;
  font-weight: 800 !important;
}

.swal2-popup #swal2-content {
  color: #74513F !important;
  font-weight: 500;
  line-height: 1.45;
}

.swal2-popup .swal2-actions {
  gap: 10px;
}

.swal2-popup .swal2-styled.swal2-confirm,
.swal2-popup .swal2-styled.swal2-cancel {
  position: relative;
  min-width: 156px;
  min-height: 48px;
  padding: 0 28px !important;
  overflow: hidden;
  border: 0 !important;
  border-radius: 999px !important;
  color: var(--white) !important;
  background: #2A160F !important;
  box-shadow: 0 12px 26px rgba(42, 22, 15, 0.24) !important;
  font-size: 17px !important;
  font-weight: 800 !important;
  line-height: 1 !important;
  isolation: isolate;
  transition: color 0.22s ease, transform 0.22s ease, box-shadow 0.22s ease !important;
}

.swal2-popup .swal2-styled.swal2-confirm::before,
.swal2-popup .swal2-styled.swal2-cancel::before {
  position: absolute;
  inset: -70%;
  z-index: -2;
  background: conic-gradient(
    from 0deg,
    transparent 0deg,
    transparent 245deg,
    #FFF1C4 278deg,
    var(--secondary) 304deg,
    transparent 332deg,
    transparent 360deg
  );
  animation: bookingBorderSpin 1.8s linear infinite;
  content: "";
}

.swal2-popup .swal2-styled.swal2-confirm::after,
.swal2-popup .swal2-styled.swal2-cancel::after {
  position: absolute;
  inset: 3px;
  z-index: -1;
  border-radius: 999px;
  background: #2A160F;
  content: "";
  transition: background 0.22s ease;
}

.swal2-popup .swal2-styled.swal2-confirm:hover,
.swal2-popup .swal2-styled.swal2-cancel:hover {
  color: #2A160F !important;
  background-image: none !important;
  box-shadow: 0 15px 30px rgba(42, 22, 15, 0.3) !important;
  transform: translateY(-2px);
}

.swal2-popup .swal2-styled.swal2-confirm:hover::after,
.swal2-popup .swal2-styled.swal2-cancel:hover::after {
  background: var(--secondary);
}

.swal2-popup .swal2-styled:focus {
  box-shadow: 0 0 0 3px rgba(201, 164, 95, 0.35), 0 12px 26px rgba(42, 22, 15, 0.24) !important;
}

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

.back-to-top {
  position: fixed;
  right: 22px;
  bottom: 90px;
  z-index: 40;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border: 0;
  border-radius: 50%;
  color: var(--primary);
  background: var(--secondary);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  box-shadow: var(--shadow);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
}

.back-to-top:hover {
  transform: translateY(-2px);
}

.back-to-top svg {
  width: 34px;
  height: 34px;
  stroke-width: 3;
}

.floating-contact-buttons {
  position: fixed;
  left: 12px;
  top: 50%;
  z-index: 45;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;
  transform: translateY(-50%);
}

.floating-contact-button {
  --contact-bg: var(--primary);
  --contact-color: var(--white);
  --contact-label-bg: #A88355;
  position: relative;
  display: inline-flex;
  align-items: center;
  width: 68px;
  min-width: 42px;
  height: 42px;
  border-radius: 999px;
  color: var(--contact-color);
  background: transparent;
  text-decoration: none;
  transition: width 0.22s ease;
}

.floating-contact-button.has-hover-label:hover,
.floating-contact-button.has-hover-label:focus-visible {
  width: 126px;
}

.floating-contact-icon {
  display: inline-flex;
  flex: 0 0 42px;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  overflow: visible;
  border-radius: 50%;
  color: var(--contact-color);
  background: transparent;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  box-shadow: none;
  transition: box-shadow 0.22s ease;
}

.floating-contact-button:hover .floating-contact-icon,
.floating-contact-button:focus-visible .floating-contact-icon {
  box-shadow: none;
}

.floating-contact-icon img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  border-radius: 50%;
}

.floating-contact-icon svg {
  width: 24px;
  height: 24px;
  stroke-width: 3;
}

.floating-contact-zalo .floating-contact-icon {
  font-size: 14px;
  letter-spacing: -1px;
}

.floating-contact-label {
  max-width: 0;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  height: 32px;
  margin-left: 0px;
  padding: 0;
  border-radius: 999px;
  color: var(--contact-color);
  background: var(--contact-label-bg);
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(-8px);
  transition: max-width 0.22s ease, opacity 0.18s ease, transform 0.22s ease;
}

.floating-contact-button.has-hover-label:hover .floating-contact-label,
.floating-contact-button.has-hover-label:focus-visible .floating-contact-label {
max-width: 132px;
    padding: 0px 11px 0 9px;
  opacity: 1;
  transform: translateX(0);
}

.mobile-nav-panel {
  position: fixed;
  inset: 0;
  z-index: 1100;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s ease, visibility 0.28s ease;
}

.mobile-nav-panel.open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.search-modal {
  position: fixed;
  inset: 0;
  z-index: 1100;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.24s ease, visibility 0.24s ease;
}

.search-modal.open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav-backdrop,
.search-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(27, 13, 7, 0.58);
}

.mobile-nav-backdrop {
  opacity: 0;
  transition: opacity 0.28s ease;
}

.mobile-nav-panel.open .mobile-nav-backdrop {
  opacity: 1;
}

.search-backdrop {
  opacity: 0;
  transition: opacity 0.24s ease;
}

.search-modal.open .search-backdrop {
  opacity: 1;
}

.mobile-nav-drawer {
  position: absolute;
  top: 0;
  right: 0;
  width: min(360px, 86vw);
  height: 100%;
  padding: 18px;
  background: var(--primary);
  box-shadow: -8px 0 24px rgba(0, 0, 0, 0.22);
  transform: translateX(100%);
  transition: transform 0.34s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.mobile-nav-panel.open .mobile-nav-drawer {
  transform: translateX(0);
}

.mobile-nav-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}

.mobile-nav-head img {
  width: 92px;
}

.mobile-nav {
  display: grid;
  gap: 2px;
}

.mobile-nav a {
  display: flex;
  align-items: center;
  min-height: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--white);
  font-size: 20px;
  font-weight: 700;
  cursor: pointer;
}

.mobile-nav a.active,
.has-mobile-submenu.open .mobile-nav-row > a {
  color: #E7CC86;
}

.mobile-nav-row {
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.mobile-nav-row > a {
  flex: 1 1 auto;
  border-bottom: 0;
}

.mobile-submenu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 48px;
  height: 48px;
  border: 0;
  color: var(--white);
  background: transparent;
  cursor: pointer;
}

.mobile-submenu-toggle svg {
  width: 19px;
  height: 19px;
  stroke-width: 3;
  transition: transform 0.2s ease;
}

.has-mobile-submenu.open .mobile-submenu-toggle svg {
  transform: rotate(180deg);
}

.mobile-subnav {
  display: grid;
  max-height: 0;
  overflow: hidden;
  padding: 0 0 0 14px;
  background: rgba(42, 22, 15, 0.14);
  opacity: 0;
  transition: max-height 0.28s ease, opacity 0.2s ease;
}

.has-mobile-submenu.open .mobile-subnav {
  max-height: 260px;
  opacity: 1;
}

.mobile-subnav a {
  min-height: 38px;
  border-bottom: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 17px;
  font-weight: 600;
}

.has-mobile-submenu.open .mobile-subnav a:first-child {
  margin-top: 7px;
}

.has-mobile-submenu.open .mobile-subnav a:last-child {
  margin-bottom: 9px;
}

.mobile-booking {
  width: 100%;
  margin-top: 22px;
}

.search-box {
  position: relative;
  z-index: 1;
  width: min(720px, calc(100% - 32px));
  margin: 140px auto 0;
  padding: 34px;
  border-radius: 8px;
  background: var(--cream-light);
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(-12px) scale(0.98);
  transition: opacity 0.24s ease, transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.search-modal.open .search-box {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.search-close {
  position: absolute;
  top: 8px;
  right: 8px;
  color: var(--primary);
}

.search-form {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.search-form input {
  flex: 1 1 auto;
  min-width: 0;
  height: 54px;
  border: 1px solid rgba(107, 63, 42, 0.35);
  border-radius: 8px;
  padding: 0 18px;
  color: var(--dark);
  background: var(--white);
  outline: 0;
}

.search-form input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(201, 164, 95, 0.22);
}

.swiper:not(.swiper-initialized) {
  overflow: hidden;
}

.swiper:not(.swiper-initialized) .swiper-wrapper {
  display: flex;
}

.swiper:not(.swiper-initialized) .swiper-slide {
  flex: 0 0 auto;
}

.home-hero {
  position: relative;
  min-height: 690px;
  overflow: hidden;
  background: var(--dark);
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-youtube {
  position: absolute;
  top: 50%;
  left: 50%;
  width: max(100%, 177.78vh);
  height: max(100%, 56.25vw);
  border: 0;
  pointer-events: none;
  transform: translate(-50%, -50%);
}

.home-hero.is-youtube {
  display: grid;
  grid-template-rows: 56.25vw auto;
  min-height: 0;
  overflow: visible;
  aspect-ratio: auto;
}

.home-hero.is-youtube .hero-youtube {
  position: relative;
  grid-area: 1 / 1;
  top: auto;
  left: auto;
  width: 100%;
  height: 100%;
  pointer-events: auto;
  transform: none;
}

.home-hero.is-youtube .hero-overlay {
  display: none;
}

.home-hero.is-youtube .hero-content {
  display: none;
}

.home-hero.is-youtube .hero-info-bar {
  position: relative;
  grid-area: 2 / 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(27, 13, 7, 0.12), rgba(27, 13, 7, 0.34));
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 642px;
  padding: 80px 0 92px;
  color: var(--white);
  text-align: center;
}

.hero-content h1 {
  max-width: 620px;
  color: var(--white);
  font-size: 54px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.08;
  text-transform: uppercase;
  text-shadow: 0 3px 14px rgba(0, 0, 0, 0.36);
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 22px;
}

.hero-booking-button,
.hero-time {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border-radius: 999px;
  color: var(--dark);
  background: var(--secondary);
  box-shadow: 0 4px 14px rgba(27, 13, 7, 0.18);
}

.hero-booking-button {
  min-width: 138px;
  padding: 0 20px;
  border: 0;
  cursor: pointer;
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
  transition: transform 0.2s ease, background 0.2s ease;
}

.hero-booking-button:hover {
  background: #D7B86D;
  transform: translateY(-1px);
}

.hero-time {
  min-width: 126px;
  padding: 0 18px;
  font-size: 15px;
  font-weight: 800;
}

.hero-info-bar {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  overflow: hidden;
  background: #7F4A31;
  color: #2A160F;
}

.hero-info-track {
  display: flex;
  align-items: center;
  width: max-content;
  min-height: 48px;
  animation: heroInfoScroll 28s linear infinite;
}

.hero-info-track span {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 0 18px 0 36px;
  font-size: 17px;
  font-weight: 800;
  white-space: nowrap;
  text-transform: uppercase;
  color: white;
}

.hero-info-track span::before {
  position: absolute;
  left: 10px;
  width: 14px;
  height: 14px;
  background: white;
  content: "";
  transform: rotate(45deg);
}

@keyframes heroInfoScroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-35%);
  }
}

.home-intro {
  padding: 42px 0 30px;
  background: var(--cream);
}

.intro-inner {
  display: grid;
  justify-items: center;
  gap: 22px;
}

.intro-inner p {
  max-width: 1180px;
  color: #8F5636;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.45;
  text-align: center;
}

.featured-services {
  padding: 16px 0 44px;
  background: var(--cream);
}

.featured-services-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 9px;
  margin-top: 28px;
}

.featured-service-card {
  position: relative;
  display: block;
  min-height: 0;
  aspect-ratio: 1 / 1.5;
  overflow: hidden;
  border: 2px solid #C9A45F;
  border-radius: 8px;
  background: #D4AE6B;
  box-shadow: 0 5px 13px rgba(46, 28, 18, 0.18);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.featured-service-card:hover {
  box-shadow: 0 9px 18px rgba(46, 28, 18, 0.22);
}

.service-count {
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 2;
  min-width: 50px;
  padding: 3px 8px;
  border-radius: 999px;
  color: #5A3323;
  background: rgba(201, 164, 95, 0.94);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
}

.service-image-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 35%, rgba(255, 247, 232, 0.92), rgba(201, 164, 95, 0.45) 42%, rgba(107, 63, 42, 0.62) 100%);
}

.service-image-placeholder::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(42, 22, 15, 0.02) 0%, rgba(42, 22, 15, 0.14) 54%, rgba(42, 22, 15, 0.46) 100%);
  content: "";
}

.service-image-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  filter: none;
  transition: transform 0.28s ease;
}

.featured-service-card:hover .service-image-placeholder img {
  transform: scale(1.05);
}

.service-name {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 74px;
  padding: 14px 12px 16px;
  color: #2A160F;
  background: linear-gradient(180deg, rgba(255, 247, 232, 0.16), rgba(255, 247, 232, 0.76));
  font-size: 17px;
  font-weight: 800;
  line-height: 1.18;
  text-align: center;
  text-transform: uppercase;
}

.home-highlights {
  padding: 26px 0 42px;
  background: var(--cream);
}

.home-highlights-swiper {
  margin-top: 28px;
  padding: 0 38px;
}

.home-highlights-swiper .swiper-slide,
.home-gallery-swiper .swiper-slide,
.customer-reviews-swiper .swiper-slide {
  height: auto;
}

.home-highlights-swiper:not(.swiper-initialized) .swiper-slide {
  width: calc((100% - 70px) / 6);
}

.highlight-card {
  overflow: hidden;
  height: 100%;
  border: 2px solid #C9A45F;
  border-radius: 8px;
  background: var(--cream-light);
  box-shadow: 0 5px 13px rgba(46, 28, 18, 0.16);
}

.highlight-image-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background:
    radial-gradient(circle at 50% 36%, rgba(255, 247, 232, 0.92), rgba(201, 164, 95, 0.48) 46%, rgba(107, 63, 42, 0.65) 100%);
}

.highlight-image-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  filter: none;
  transition: transform 0.28s ease;
}

.highlight-card:hover .highlight-image-placeholder img {
  transform: scale(1.05);
}

.highlight-content {
  min-height: 118px;
  padding: 13px 12px 15px;
}

.highlight-content h3 {
  color: #2A160F;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.2;
}

.highlight-content p {
  margin-top: 7px;
  color: #74513F;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.32;
}

.home-highlights-prev,
.home-highlights-next {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: var(--white);
  background: #1F0F0A;
}

.home-highlights-prev::after,
.home-highlights-next::after {
  font-size: 15px;
  font-weight: 800;
}

.relax-journey {
  padding: 26px 0 42px;
  background: var(--cream);
}

.relax-journey-layout {
  display: grid;
  grid-template-columns: 390px 1fr;
  gap: 18px;
  align-items: stretch;
  margin-top: 28px;
}

.relax-media {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 316px;
  overflow: hidden;
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 35%, rgba(255, 247, 232, 0.95), rgba(201, 164, 95, 0.48) 45%, rgba(42, 22, 15, 0.82) 100%);
  box-shadow: 0 5px 13px rgba(46, 28, 18, 0.16);
}

.relax-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  filter: none;
}

.relax-service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.relax-service-card {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 10px;
  align-items: start;
  min-height: 148px;
  padding: 22px 20px;
  border: 2px solid #C9A45F;
  border-radius: 8px;
  color: #2A160F;
  background: var(--cream-light);
  box-shadow: 0 4px 10px rgba(46, 28, 18, 0.12);
  transition: border-color 0.22s ease, color 0.22s ease, background 0.22s ease, box-shadow 0.22s ease;
}

.relax-service-card:hover {
  color: var(--white);
  background: var(--dark);
  border-color: var(--dark);
}

.relax-service-card:hover {
  box-shadow: 0 9px 18px rgba(46, 28, 18, 0.2);
}

.relax-service-card svg {
  width: 27px;
  height: 27px;
  stroke-width: 2.7;
}

.relax-service-card h3 {
  font-size: 21px;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
}

.relax-service-card p {
  margin-top: 7px;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.32;
}

.care-process {
  position: relative;
  overflow: hidden;
  padding: 28px 0 54px;
  background: var(--cream);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.care-process-map {
  --process-card-width: 280px;
  --process-side-offset: clamp(28px, 9vw, 150px);
  --process-lower-offset: clamp(190px, 23vw, 320px);
  position: relative;
  min-height: 560px;
  margin-top: 28px;
}

.process-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 168px;
  height: 168px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 8px 22px rgba(46, 28, 18, 0.2);
  transform: translate(-50%, -50%);
}

.process-logo img {
  width: 116px;
}

.process-step {
  position: absolute;
  z-index: 3;
  width: var(--process-card-width);
  height: 160px;
  padding: 17px 18px;
  border: 2px solid rgba(201, 164, 95, 0.78);
  border-radius: 8px;
  background: var(--cream-light);
  box-shadow: 0 5px 13px rgba(46, 28, 18, 0.14);
}

.process-step h3 {
  color: var(--primary);
  font-size: 17px;
  font-weight: 800;
  line-height: 1.2;
}

.process-step p {
  margin-top: 8px;
  color: #8F5636;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.34;
}

.process-step-1 {
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.process-step-2 {
  top: 50%;
  left: var(--process-side-offset);
  transform: translateY(-50%);
}

.process-step-3 {
  top: 50%;
  right: var(--process-side-offset);
  transform: translateY(-50%);
}

.process-step-4 {
  bottom: 0;
  left: var(--process-lower-offset);
}

.process-step-5 {
  right: var(--process-lower-offset);
  bottom: 0;
}

.home-gallery {
  padding: 26px 0 46px;
  background: var(--cream);
}

.home-gallery-swiper {
  margin-top: 28px;
  padding: 0 54px;
}

.home-gallery-swiper:not(.swiper-initialized) .swiper-slide {
  width: calc((100% - 54px) / 4);
}

.gallery-card {
  display: block;
  height: 100%;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 5px 13px rgba(46, 28, 18, 0.16);
}

.gallery-image-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1 / 0.84;
  background:
    radial-gradient(circle at 50% 36%, rgba(255, 247, 232, 0.94), rgba(201, 164, 95, 0.5) 44%, rgba(42, 22, 15, 0.82) 100%);
  transition: transform 0.24s ease;
}

.gallery-card:hover .gallery-image-placeholder {
  transform: scale(1.03);
}

.gallery-image-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  filter: none;
}

.home-gallery-prev,
.home-gallery-next {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: var(--white);
  background: #1F0F0A;
}

.home-gallery-prev::after,
.home-gallery-next::after {
  font-size: 15px;
  font-weight: 800;
}

.customer-reviews {
  padding: 26px 0 44px;
  background: var(--cream);
}

.customer-reviews-swiper {
  margin-top: 28px;
  padding: 0 42px;
}

.customer-reviews-swiper:not(.swiper-initialized) .swiper-slide {
  width: calc((100% - 48px) / 5);
}

.review-card {
  height: 100%;
  min-height: 168px;
  padding: 12px;
  border: 2px solid #C9A45F;
  border-radius: 8px;
  background: var(--cream-light);
  box-shadow: 0 5px 13px rgba(46, 28, 18, 0.14);
}

.review-head {
  display: flex;
  align-items: center;
  gap: 8px;
}

.review-map-pin {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  border-radius: 50% 50% 50% 0;
  background:
    radial-gradient(circle at 50% 38%, #FFFFFF 0 4px, transparent 5px),
    conic-gradient(from 210deg, #4285F4 0 28%, #34A853 28% 50%, #FBBC05 50% 72%, #EA4335 72% 100%);
  transform: rotate(-45deg);
}

.review-map-pin::before {
  position: absolute;
  inset: 6px;
  border-radius: 50%;
  background: var(--white);
  content: "";
}

.review-map-pin::after {
  position: absolute;
  inset: 10px;
  border-radius: 50%;
  background: #4285F4;
  content: "";
}

.review-head h3 {
  color: #2A160F;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
}

.review-head p {
  margin-top: 2px;
  color: #74513F;
  font-size: 12px;
  font-weight: 600;
}

.review-stars {
  margin-top: 10px;
  color: #F4B400;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: 0;
}

.review-text {
  margin-top: 8px;
  color: #74513F;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.34;
}

.customer-reviews-prev,
.customer-reviews-next {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: var(--white);
  background: #1F0F0A;
}

.customer-reviews-prev::after,
.customer-reviews-next::after {
  font-size: 15px;
  font-weight: 800;
}

.home-faq {
  padding: 28px 0 48px;
  background: var(--cream);
}

.faq-list {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.faq-item {
  overflow: hidden;
  border: 1px solid rgba(201, 164, 95, 0.9);
  border-radius: 8px;
  background: var(--cream-light);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: 100%;
  min-height: 52px;
  padding: 0 18px;
  border: 0;
  color: #8F5636;
  background: transparent;
  cursor: pointer;
  font-size: 20px;
  font-weight: 700;
  text-align: left;
  transition: color 0.22s ease, background 0.22s ease;
}

.faq-question svg {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  stroke-width: 3;
  transition: transform 0.2s ease;
}

.faq-answer {
  height: 0;
  overflow: hidden;
  transition: height 0.36s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: height;
}

.faq-answer p {
  padding: 14px 18px 16px;
  color: #8F5636;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.35;
}

.faq-item.open {
  border-color: var(--dark);
}

.faq-item.open .faq-question {
  color: var(--white);
  background: var(--dark);
}

.faq-item.open .faq-question svg {
  transform: rotate(180deg);
}

.faq-item.open .faq-answer {
  height: auto;
}

.site-footer {
  background: var(--primary);
  color: var(--white);
}

.footer-main {
  display: grid;
  grid-template-columns: 260px 1.35fr 1.25fr 1.25fr;
  gap: 38px;
  padding: 66px 0 50px;
}

.footer-brand {
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-brand img {
  width: 210px;
}

.footer-column h2,
.footer-column h3 {
  color: var(--white);
  font-size: 19px;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
}

.footer-column h2:not(:first-child),
.footer-column h3 {
  margin-top: 18px;
}

.footer-column p,
.footer-column a {
  color: var(--white);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.32;
}

.footer-column p {
  margin-top: 5px;
}

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

.footer-links a {
  margin-top: 5px;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-hotline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  margin-top: 7px;
  padding: 0 14px;
  border-radius: 6px;
  background: var(--dark);
  font-size: 22px;
  font-weight: 800;
  text-decoration: none;
}

.footer-hotline svg {
  width: 20px;
  height: 20px;
}

.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.footer-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  overflow: hidden;
  border-radius: 50%;
  background: var(--cream);
  text-decoration: none;
}

.footer-socials img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.footer-form {
  display: grid;
  gap: 9px;
  margin-top: 10px;
}

.footer-form input {
  width: 100%;
  height: 34px;
  border: 0;
  border-radius: 999px;
  padding: 0 16px;
  color: var(--dark);
  background: var(--white);
  outline: 0;
}

.footer-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: start;
  min-width: 92px;
  height: 28px;
  border: 0;
  border-radius: 999px;
  color: var(--white);
  background: var(--secondary);
  cursor: pointer;
  font-size: 13px;
  font-weight: 800;
}

.footer-form button.is-sending,
.contact-form button.is-sending {
  cursor: wait;
}

.footer-form button:disabled,
.contact-form button:disabled {
  opacity: 1;
}

.contact-submit-loader {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 3px solid rgba(255, 255, 255, 0.35);
  border-top-color: var(--white);
  border-radius: 50%;
  animation: bookingButtonLoading 0.72s linear infinite;
}

.fanpage-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 132px;
  margin-top: 10px;
  overflow: hidden;
  border-radius: 4px;
  background:
    radial-gradient(circle at 50% 38%, rgba(255, 247, 232, 0.94), rgba(201, 164, 95, 0.5) 44%, rgba(42, 22, 15, 0.82) 100%);
}

.fanpage-placeholder a {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 132px;
}

.fanpage-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
}

.footer-bottom {
  background: #050505;
}

.footer-bottom p {
  padding: 18px 0;
  color: var(--white);
  font-size: 14px;
  font-weight: 500;
  text-align: center;
}

.footer-bottom a {
  color: var(--secondary);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.page-hero {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  min-height: 240px;
  background-color: var(--dark);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  text-align: center;
}

.page-hero::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(27, 13, 7, 0.18), rgba(27, 13, 7, 0.34));
  content: "";
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  color: var(--white);
  font-size: 52px;
  font-weight: 800;
  text-transform: uppercase;
  text-shadow: 0 3px 14px rgba(0, 0, 0, 0.32);
}

.about-welcome {
  padding: 46px 0 38px;
  background: var(--cream);
}

.about-welcome-layout {
  display: grid;
  grid-template-columns: 1fr 555px;
  gap: 62px;
  align-items: center;
  margin-top: 38px;
}

.about-copy {
  display: grid;
  gap: 15px;
  text-align: justify;
  font-size: 20px;
  padding: 20px;
   border-radius: 10px;
   background: var(--cream-light);
   font-weight: 500;
}

.about-copy p {
  color: #8F5636;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.35;
}

.about-photo-placeholder,
.experience-card-media {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 38%, rgba(255, 247, 232, 0.94), rgba(201, 164, 95, 0.5) 44%, rgba(42, 22, 15, 0.82) 100%);
}

.about-photo-placeholder {
  border-radius: 5px;
}

.about-photo-placeholder img,
.experience-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  filter: none;
}

.about-why {
  padding: 18px 0 40px;
  background: var(--cream);
}

.about-why-copy {
  margin-top: 34px;
  text-align: center;
}

.about-why-copy h3 {
  color: var(--primary);
  font-size: 24px;
  font-weight: 800;
  text-transform: uppercase;
}

.about-why-copy p {
  margin-top: 10px;
  color: #8F5636;
  font-size: 19px;
  font-weight: 500;
  line-height: 1.35;
}

.about-experience-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  margin-top: 34px;
}

.experience-card {
  display: block;
  height: 100%;
  padding: 16px;
  border: 2px solid rgba(201, 164, 95, 0.86);
  border-radius: 8px;
  background: var(--cream-light);
  box-shadow: 0 5px 13px rgba(46, 28, 18, 0.14);
}

.experience-card-media {
  height: 210px;
  border-radius: 8px;
}
.experience-card-media img {
  height: 210px !important;
}

.experience-card h3 {
  margin-top: 14px;
  color: var(--primary);
  font-size: 23px;
  font-weight: 800;
  line-height: 1.15;
}

.experience-card p {
  margin-top: 8px;
  color: #8F5636;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.34;
  text-align: justify;
}

.about-vision {
  padding: 18px 0 56px;
  background: var(--cream);
}

.about-vision-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.vision-card {
  position: relative;
  overflow: hidden;
  min-height: 320px;
  padding: 50px 44px;
  border-radius: 14px;
  color: var(--white);
  background-color: #183A44;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  box-shadow: 0 7px 18px rgba(46, 28, 18, 0.2);
}

.vision-card::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(9, 19, 24, 0.82), rgba(9, 19, 24, 0.42));
  content: "";
}

.vision-card h2,
.vision-card p {
  position: relative;
  z-index: 1;
}

.vision-card h2 {
  color: #FFEA3B;
  font-size: 26px;
  font-weight: 800;
  text-transform: uppercase;
}

.vision-card p {
  margin-top: 24px;
  color: var(--white);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.38;
}

.core-values {
  position: relative;
  overflow: hidden;
  padding: 26px 0 58px;
  background-color: var(--dark);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.core-values::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(42, 22, 15, 0.64), rgba(42, 22, 15, 0.7));
  content: "";
}

.core-values .container {
  position: relative;
  z-index: 1;
}

.core-values h2 {
  color: var(--white);
  font-size: 28px;
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
}

.core-values-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
  margin-top: 36px;
}

.core-values-grid article {
  padding: 20px 13px 13px;
  border: 2px solid rgba(201, 164, 95, 0.88);
  border-radius: 8px;
  background: var(--cream-light);
}

.core-values-grid h3 {
  color: var(--primary);
  font-size: 20px;
  font-style: italic;
  text-align: center;
  font-weight: 800;
}

.core-values-grid p {
  margin-top: 12px;
  color: #8F5636;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.34;
  text-align: center;
}

.blog-page {
  padding: 42px 0 58px;
  background: var(--cream);
}

.blog-intro {
  max-width: 1180px;
  margin: 22px auto 0;
  color: #2A160F;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.35;
  text-align: center;
}

.blog-layout {
  display: grid;
  grid-template-columns: 1fr 330px;
  gap: 28px;
  align-items: start;
  margin-top: 22px;
}

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

.blog-card {
  position: relative;
  overflow: hidden;
  border: 1px solid #C9A45F;
  border-radius: 8px;
  background: rgba(255, 247, 232, 0.9);
  box-shadow: 0 6px 16px rgba(46, 28, 18, 0.16);
}

.blog-card-media {
  display: block;
  overflow: hidden;
  aspect-ratio: 1 / 0.7;
}

.blog-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.24s ease;
}

.blog-card:hover .blog-card-media img {
  transform: scale(1.04);
}

.blog-date {
  position: absolute;
  top: 10px;
  left: 10px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  min-height: 24px;
  padding: 0 10px;
  border-radius: 999px;
  color: var(--white);
  background: var(--secondary);
  font-size: 11px;
  font-weight: 800;
}

.blog-date svg {
  width: 13px;
  height: 13px;
}

.blog-card-body {
  position: relative;
  padding: 16px 16px 18px;
}

.blog-card-body h3 {
  font-size: 19px;
  font-weight: 800;
  line-height: 1.22;
}

.blog-card-body h3 a {
  display: -webkit-box;
  overflow: hidden;
  color: var(--primary);
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
}

.blog-card-body p {
  margin-top: 8px;
  color: #7F4F35;
  display: -webkit-box;
  overflow: hidden;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.34;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  text-align: justify;
}

.blog-readmore {
  display: inline-block;
  margin-top: 12px;
  color: var(--secondary);
  font-size: 14px;
  font-weight: 800;
}

.blog-pagination {
  margin-top: 28px;
}

.search-page {
  padding: 42px 0 58px;
  background: var(--cream);
}

.search-page-form {
  display: grid;
  grid-template-columns: 1fr 180px;
  gap: 12px;
  max-width: 820px;
  margin: 0 auto 28px;
}

.search-page-form input {
  width: 100%;
  min-height: 52px;
  border: 2px solid rgba(107, 63, 42, 0.38);
  border-radius: 999px;
  padding: 0 22px;
  color: var(--dark);
  background: rgba(255, 247, 232, 0.96);
  font-size: 16px;
  font-weight: 700;
  outline: 0;
}

.search-page-form input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(107, 63, 42, 0.12);
}

.search-heading {
  margin-bottom: 24px;
  text-align: center;
}

.search-heading p {
  margin-top: 8px;
  color: #7F4F35;
  font-size: 16px;
  font-weight: 700;
}

.search-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.search-card {
  overflow: hidden;
  border: 1px solid #C9A45F;
  border-radius: 8px;
  background: rgba(255, 247, 232, 0.92);
  box-shadow: 0 6px 16px rgba(46, 28, 18, 0.14);
}

.search-card-media {
  display: block;
  overflow: hidden;
  aspect-ratio: 1 / 0.68;
}

.search-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.24s ease;
}

.search-card:hover .search-card-media img {
  transform: scale(1.04);
}

.search-card-body {
  padding: 16px;
}

.search-card-type {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  margin-bottom: 10px;
  padding: 0 10px;
  border-radius: 999px;
  color: var(--white);
  background: var(--secondary);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.search-card h3 {
  font-size: 20px;
  font-weight: 800;
  line-height: 1.22;
}

.search-card h3 a {
  color: var(--primary);
}

.search-card p {
  display: -webkit-box;
  overflow: hidden;
  margin-top: 8px;
  color: #7F4F35;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.35;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  text-align: justify;
}

.search-empty {
  max-width: 760px;
  margin: 0 auto;
  padding: 28px;
  border: 1px solid rgba(107, 63, 42, 0.24);
  border-radius: 8px;
  background: rgba(255, 247, 232, 0.82);
  text-align: center;
}

.search-empty h3 {
  color: var(--primary);
  font-size: 24px;
  font-weight: 800;
}

.search-empty p {
  margin-top: 8px;
  color: #7F4F35;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.35;
}

.blog-sidebar {
  display: grid;
  gap: 22px;
  position: sticky;
  top: calc(var(--header-height) + 20px);
}

.blog-widget {
  overflow: hidden;
  border: 1px solid #C9A45F;
  border-radius: 8px;
  background: rgba(255, 247, 232, 0.96);
  box-shadow: 0 6px 16px rgba(46, 28, 18, 0.14);
}

.blog-widget h2 {
  padding: 14px 18px 11px;
  color: var(--primary);
  border-bottom: 1px solid #C9A45F;
  font-size: 20px;
  font-weight: 800;
  text-transform: uppercase;
}

.blog-category-list {
  display: grid;
}

.blog-category-item {
  border-bottom: 1px solid rgba(201, 164, 95, 0.45);
}

.blog-category-item:last-child {
  border-bottom: 0;
}

.blog-category-row {
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(255, 247, 232, 0.92);
}

.blog-category-row > a {
  flex: 1 1 auto;
  min-height: 54px;
  padding: 16px 0 16px 20px;
  color: var(--primary);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.2;
}

.blog-category-toggle {
  align-self: stretch;
  width: 64px;
  height: auto;
  color: var(--primary);
  background: transparent;
}

.blog-category-toggle svg {
  width: 20px;
  height: 20px;
}

.blog-category-submenu {
  background: rgba(201, 164, 95, 0.14);
}

.blog-category-item.open .blog-category-submenu {
  height: auto;
}

.blog-category-submenu.service-category-submenu a {
  min-height: 42px;
  padding: 10px 20px 10px 34px;
  color: var(--primary);
  font-size: 17px;
  font-weight: 800;
  line-height: 1.2;
}

.blog-category-row > a.active,
.blog-category-row > a:hover,
.blog-category-submenu.service-category-submenu a:hover {
  color: var(--primary);
  background: rgba(201, 164, 95, 0.18);
}

.blog-detail-page {
  padding: 36px 0 58px;
  background: var(--cream);
}

.blog-detail-hero h1 {
  max-width: 980px;
  margin: 0 auto;
  font-size: 42px;
  line-height: 1.15;
  text-align: center;
}

.blog-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  color: #7F4F35;
  font-size: 15px;
  font-weight: 700;
}

.blog-breadcrumb a {
  color: var(--primary);
}

.blog-breadcrumb a:hover {
  color: var(--secondary);
}

.blog-detail-layout {
  margin-top: 24px;
}

.blog-detail-content {
  min-width: 0;
}

.blog-detail-article {
  overflow: hidden;
  border: 1px solid rgba(201, 164, 95, 0.9);
  border-radius: 8px;
  background: rgba(255, 247, 232, 0.94);
  box-shadow: 0 8px 22px rgba(46, 28, 18, 0.14);
}

.blog-detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  padding: 22px 26px 0;
  color: #7F4F35;
  font-size: 15px;
  font-weight: 800;
}

.blog-detail-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.blog-detail-meta svg {
  width: 17px;
  height: 17px;
  color: var(--secondary);
}

.blog-detail-article > h2 {
  padding: 12px 26px 0;
  color: var(--primary);
  font-size: 36px;
  font-weight: 800;
  line-height: 1.15;
}

.blog-detail-lead {
  padding: 14px 26px 0;
  color: #5D3826;
  font-size: 19px;
  font-weight: 600;
  line-height: 1.45;
}

.blog-detail-cover {
  display: block;
  overflow: hidden;
  margin: 24px 26px 0;
  border-radius: 8px;
  aspect-ratio: 16 / 8.2;
  background: rgba(201, 164, 95, 0.24);
}

.blog-detail-cover img,
.blog-detail-image-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-detail-toc {
  display: grid;
  gap: 8px;
  margin: 24px 26px 0;
  padding: 18px 20px;
  border: 1px solid rgba(201, 164, 95, 0.82);
  border-radius: 8px;
  background: rgba(201, 164, 95, 0.14);
}

.blog-detail-toc h3 {
  color: var(--primary);
  font-size: 20px;
  font-weight: 800;
}

.blog-detail-toc a {
  color: #5D3826;
  font-size: 16px;
  font-weight: 700;
}

.blog-detail-body {
  padding: 24px 26px 0;
}

.blog-detail-body h3 {
  margin-top: 24px;
  color: var(--primary);
  font-size: 25px;
  font-weight: 800;
  line-height: 1.2;
}

.blog-detail-body p,
.blog-detail-body li {
  color: #5D3826;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.55;
  text-align: justify;
}

.blog-detail-body p + p {
  margin-top: 14px;
}

.blog-detail-body ul {
  display: grid;
  gap: 8px;
  margin: 14px 0 0 20px;
}

.blog-detail-body blockquote {
  margin: 22px 0;
  padding: 18px 22px;
  border-left: 5px solid var(--secondary);
  border-radius: 0 8px 8px 0;
  background: rgba(201, 164, 95, 0.16);
}

.blog-detail-body blockquote p {
  color: var(--primary);
  font-size: 20px;
  font-weight: 800;
  font-style: italic;
  text-align: left;
}

.blog-detail-image-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 24px 0;
}

.blog-detail-image-grid a {
  display: block;
  overflow: hidden;
  border-radius: 8px;
  aspect-ratio: 4 / 3;
  background: rgba(201, 164, 95, 0.2);
}

.blog-detail-tags,
.blog-detail-share {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin: 24px 26px 0;
  padding-top: 18px;
  border-top: 1px solid rgba(201, 164, 95, 0.5);
}

.blog-detail-share {
  margin-top: 16px;
  padding: 18px 0 26px;
}

.blog-detail-tags span,
.blog-detail-share span {
  color: var(--primary);
  font-size: 16px;
  font-weight: 800;
}

.blog-detail-tags a {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border: 1px solid rgba(201, 164, 95, 0.86);
  border-radius: 999px;
  color: #5D3826;
  background: rgba(255, 247, 232, 0.86);
  font-size: 14px;
  font-weight: 800;
}

.blog-detail-share a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: var(--white);
  background: var(--primary);
}

.blog-detail-share svg {
  width: 17px;
  height: 17px;
}

.blog-detail-contact {
  margin-top: 26px;
  background: rgba(255, 247, 232, 0.94);
}

.blog-detail-booking {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 178px;
  min-height: 52px;
  margin: 0 0 26px 26px;
  padding: 0 24px;
  border-radius: 8px;
  color: var(--white);
  background: var(--dark);
  font-size: 22px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
  box-shadow: 0 4px 10px rgba(46, 28, 18, 0.18);
}

.blog-detail-contact-box {
  padding: 20px 26px 24px;
  border-top: 1px solid rgba(201, 164, 95, 0.42);
  background: linear-gradient(90deg, rgba(201, 164, 95, 0.24), rgba(255, 247, 232, 0.96));
}

.blog-detail-contact-box h3 {
  color: var(--primary);
  font-size: 25px;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
}

.blog-detail-contact-list {
  display: grid;
  gap: 13px;
  margin-top: 18px;
}

.blog-detail-contact-list a {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  color: #2A160F;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.24;
}

.blog-detail-contact-list svg {
  width: 26px;
  height: 26px;
  color: var(--primary);
  stroke-width: 2.8;
}

.blog-detail-socials {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 22px;
}

.blog-detail-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
}

.blog-detail-socials img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 100%;
}

.gallery-page {
  padding: 36px 0 58px;
  background: var(--cream);
}

.gallery-page h2 {
  color: var(--primary);
  font-size: 26px;
  font-style: italic;
  font-weight: 500;
  line-height: 1.22;
  text-align: center;
}

.gallery-page h2::after {
  display: block;
  width: 270px;
  max-width: 80%;
  height: 4px;
  margin: 8px auto 0;
  background: linear-gradient(90deg, transparent, rgba(201, 164, 95, 0.9), transparent);
  content: "";
}

.gallery-page-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  margin-top: 28px;
}

.gallery-page-card {
  display: block;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  border: 1px solid #C9A45F;
  border-radius: 16px;
  background: #D9BE9A;
  box-shadow: 0 6px 16px rgba(46, 28, 18, 0.14);
}

.gallery-page-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.24s ease;
}

.gallery-page-card:hover img {
  transform: scale(1.04);
}

.contact-page {
  padding: 62px 0 68px;
  background: var(--cream);
}

.contact-panel {
  display: grid;
  grid-template-columns: 0.82fr 1fr;
  gap: 54px;
  align-items: stretch;
  padding: 0;
  border: 1px solid #C9A45F;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 8px 22px rgba(46, 28, 18, 0.16);
}

.contact-info-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 670px;
  padding: 76px 82px 34px;
  overflow: hidden;
  border-radius: 18px;
  background: #FFFFFF;
  box-shadow: 12px 0 18px rgba(46, 28, 18, 0.24);
}

.contact-info-card::before,
.contact-info-card::after {
  position: absolute;
  z-index: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  pointer-events: none;
}

.contact-info-card::before {
  top: 0;
  right: 0;
  width: 200px;
  height: 300px;
  background-image: url("../images/caylua-tren.png");
}

.contact-info-card::after {
  bottom: 0;
  left: 0;
  width: 163px;
  height: 238px;
  background-image: url("../images/caylua-duoi.png");
}

.contact-logo-mark {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 120px;
  margin: 0 auto 28px;
  border-radius: 50%;
  background: var(--primary);
}

.contact-logo-mark img {
  width: 84px;
}

.contact-info-list {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 14px;
  margin: 0 auto;
}

.contact-info-list a {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 10px;
  align-items: center;
  color: #050505;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.25;
}

.contact-info-list svg {
  width: 22px;
  height: 22px;
  color: #050505;
  stroke-width: 3;
}

.contact-socials {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  justify-content: center;
  margin-top: 18px;
}

.contact-socials a,
.contact-socials img {
  width: 30px;
  height: 30px;
}

.contact-socials img {
  display: block;
  object-fit: contain;
  border-radius: 100%;
}

.contact-info-card p {
  position: relative;
  z-index: 1;
  margin-top: auto;
  color: var(--primary);
  font-size: 21px;
  font-style: italic;
  font-weight: 500;
  text-align: right;
}

.contact-form-wrap {
  padding: 58px 58px 44px 0;
}

.contact-form-wrap h2 {
  color: var(--primary);
  font-size: 28px;
  font-weight: 800;
}

.contact-form-wrap > p {
  margin-top: 4px;
  color: #050505;
  font-size: 18px;
  font-weight: 500;
}

.contact-form {
  display: grid;
  gap: 14px;
  margin-top: 20px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid #C9A45F;
  border-radius: 999px;
  color: #2A160F;
  background: #FFFFFF;
  box-shadow: 0 7px 18px rgba(46, 28, 18, 0.1);
  font: inherit;
  font-size: 16px;
  outline: none;
}

.contact-form textarea {
  height: 150px;
  resize: vertical;
  padding-top: 15px;
  border-radius: 26px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--primary);
}

.contact-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: center;
  min-width: 128px;
  min-height: 46px;
  padding: 0 28px;
  border: 0;
  border-radius: 999px;
  color: var(--white);
  background: var(--secondary);
  cursor: pointer;
  font-size: 17px;
  font-weight: 800;
}

.contact-map {
  height: 360px;
  margin-top: 28px;
  overflow: hidden;
  border-radius: 18px;
  background: #13212A;
  box-shadow: 0 8px 22px rgba(46, 28, 18, 0.14);
}

.contact-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.booking-services,
.booking-form-section {
  background: var(--cream);
}

.booking-services {
  padding: 38px 0 96px;
}

.booking-layout {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 24px;
  align-items: start;
}

.booking-sidebar {
  overflow: hidden;
  border-radius: 6px;
  background: var(--primary);
  color: var(--white);
}

.booking-sidebar h2 {
  padding: 18px 18px 12px;
  color: var(--white);
  font-size: 20px;
  font-weight: 800;
  text-transform: uppercase;
}

.booking-sidebar-menu {
  display: grid;
  padding: 0 18px 18px;
}

.booking-sidebar-group {
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
}

.booking-sidebar-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 38px;
  padding: 13px 0 11px;
  border: 0;
  color: var(--white);
  background: transparent;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.2;
  text-align: left;
  text-transform: uppercase;
  cursor: pointer;
}

.booking-sidebar-toggle svg {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  color: var(--secondary);
  transition: transform 260ms ease;
}

.booking-sidebar-group.open .booking-sidebar-toggle svg {
  transform: rotate(180deg);
}

.booking-sidebar-submenu {
  display: grid;
  overflow: hidden;
  height: 0;
  transition: height 300ms ease;
}

.booking-sidebar-group.open .booking-sidebar-submenu {
  height: auto;
}

.booking-sidebar a {
  min-height: 34px;
  padding: 9px 0 9px 14px;
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
}

.booking-sidebar a:hover {
  color: #E7CC86;
}

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

.booking-category {
  overflow: hidden;
  background: rgba(255, 247, 232, 0.92);
}

.booking-category + .booking-category {
  margin-top: 12px;
  padding-top: 14px;
  border-top: 8px solid rgba(201, 164, 95, 0.9);
}

.booking-category h2 {
  margin-bottom: 10px;
  color: var(--primary);
  font-size: 26px;
  font-weight: 800;
  line-height: 1.1;
  text-transform: uppercase;
}

.booking-category h2 span {
  font-size: 17px;
  font-weight: 600;
  text-transform: none;
}

.booking-table-title th {
  padding: 12px 18px;
  color: var(--primary);
  background: var(--primary);
  color: var(--white);
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
}

.booking-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 18px;
  table-layout: fixed;
}

.booking-table th,
.booking-table td {
  padding: 9px 18px;
  border-top: 0;
  color: #74513F;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.25;
  text-align: left;
}

.booking-table th {
  color: var(--white);
  background: var(--primary);
  font-size: 14px;
  text-transform: uppercase;
}

.booking-table th:first-child,
.booking-table .booking-description-cell {
  width: 42%;
}

.booking-table label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin: 0;
  white-space: nowrap;
}

.booking-table td[data-label] {
  text-align: center;
}

.booking-empty-price {
  color: rgba(42, 22, 15, 0.45);
  font-weight: 700;
}

.booking-table input {
  accent-color: var(--primary);
}

.booking-benefits {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px 46px;
  margin: 0 0 18px;
  padding: 0 24px;
  color: var(--primary);
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
}

.booking-benefits li {
  list-style-position: inside;
  text-decoration: underline;
}

.booking-note-inline {
  margin: 4px 0 20px;
  color: var(--primary);
  font-size: 15px;
  font-style: italic;
  font-weight: 700;
  line-height: 1.35;
  text-transform: uppercase;
}

.booking-simple-table td:first-child {
  width: auto;
}

.booking-simple-table td:last-child,
.booking-simple-table th:last-child {
  width: 300px;
}

.booking-price-table tr:not(.booking-table-title) td[rowspan],
.booking-table .booking-description-cell,
.booking-nail-table tr:not(.booking-table-title) td:first-child {
  width: 42%;
  text-align: justify;
}

.booking-price-table tr:not(.booking-table-title) td[rowspan] + td,
.booking-price-table tr:not(.booking-table-title) .booking-description-cell + td {
  width: 16%;
  text-align: center;
}

.booking-price-table tr:not(.booking-table-title) td:first-child:not(.booking-description-cell):not([rowspan]) {
  width: 16%;
  text-align: center;
}

.booking-price-table tr:not(.booking-table-title) td:nth-last-child(3) {
  width: 16%;
  text-align: justify;
}

.booking-price-table tr:not(.booking-table-title) td:nth-last-child(2) {
  width: 21%;
  text-align: center;
}

.booking-price-table tr:not(.booking-table-title) td:last-child {
  width: 21%;
  text-align: center;
}

.booking-nail-table tr:not(.booking-table-title) td:nth-child(2),
.booking-nail-table tr:not(.booking-table-title) td:last-child,
.booking-nail-table th:nth-child(2),
.booking-nail-table th:last-child {
  width: 230px;
  text-align: center;
}

.booking-price-table th:nth-child(2),
.booking-price-table th:nth-child(3),
.booking-price-table th:last-child,
.booking-simple-table th:last-child,
.booking-simple-table td:last-child {
  text-align: center;
}

.booking-table th[colspan="2"],
.booking-table td[colspan="2"],
.booking-table th[colspan="3"],
.booking-table td[colspan="3"] {
  text-align: center;
}

.booking-table tr:not(.booking-table-title) .booking-description-cell {
  width: 42%;
  text-align: justify;
}

.booking-price-table tr .booking-col-service {
  width: 42%;
}

.booking-price-table tr .booking-col-duration {
  width: 16%;
  text-align: center;
}

.booking-price-table tr .booking-col-price {
  width: auto;
  text-align: center;
}

.booking-form-section {
  padding: 34px 0 64px;
}

.booking-summary {
  margin-top: 36px;
}

.booking-summary-head,
.booking-summary-row,
.booking-total {
  display: grid;
  grid-template-columns: 1fr 250px 230px 64px;
  gap: 20px;
  align-items: center;
  min-height: 74px;
  border-bottom: 2px solid #C9A45F;
}

.booking-summary-head {
  min-height: 46px;
  color: #050505;
  font-size: 22px;
  font-weight: 800;
}

.booking-summary-row strong,
.booking-total strong {
  color: #050505;
  font-size: 20px;
  font-weight: 800;
}

.booking-summary-row > span,
.booking-total span {
  color: #2A160F;
  font-size: 20px;
  font-weight: 700;
}

.booking-qty {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 150px;
  height: 44px;
  border: 2px solid #2A160F;
  border-radius: 999px;
  background: var(--white);
}

.booking-qty button {
  width: 44px;
  height: 40px;
  border: 0;
  color: #2A160F;
  background: transparent;
  cursor: pointer;
  font-size: 30px;
  font-weight: 800;
  line-height: 1;
}

.booking-qty span {
  min-width: 38px;
  color: #2A160F;
  font-size: 22px;
  font-weight: 800;
  text-align: center;
}

.booking-remove {
  width: 42px;
  height: 42px;
  border: 0;
  color: #2A160F;
  background: transparent;
  cursor: pointer;
}

.booking-remove svg {
  width: 30px;
  height: 30px;
  stroke-width: 2.8;
}

.booking-total {
  grid-template-columns: 1fr 250px 230px 64px;
}

.booking-total span {
  grid-column: 3 / 4;
  color: var(--secondary);
  font-weight: 800;
}

.booking-add-more {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 210px;
  min-height: 52px;
  margin: 24px auto 0;
  padding: 0 26px;
  border: 0;
  border-radius: 999px;
  color: var(--white);
  background: #2A160F;
  cursor: pointer;
  font-size: 18px;
  font-weight: 700;
}

.booking-sticky-submit {
  position: fixed;
  right: 50%;
  bottom: 22px;
  z-index: 120;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 210px;
  min-height: 54px;
  padding: 0 32px;
  overflow: hidden;
  border-radius: 999px;
  color: var(--white);
  background: #2A160F;
  box-shadow: 0 14px 30px rgba(42, 22, 15, 0.28);
  font-size: 18px;
  font-weight: 900;
  isolation: isolate;
  text-transform: uppercase;
  transform: translateX(50%);
  transition: background 220ms ease, transform 220ms ease, box-shadow 220ms ease;
}

.booking-sticky-submit::before {
  position: absolute;
  inset: -70%;
  z-index: -2;
  background: conic-gradient(
    from 0deg,
    transparent 0deg,
    transparent 245deg,
    #FFF1C4 278deg,
    var(--secondary) 304deg,
    transparent 332deg,
    transparent 360deg
  );
  animation: bookingBorderSpin 1.8s linear infinite;
  content: "";
}

.booking-sticky-submit::after {
  position: absolute;
  inset: 3px;
  z-index: -1;
  border-radius: 999px;
  background: #2A160F;
  content: "";
  transition: background 220ms ease;
}

.booking-sticky-submit:hover {
  color: #2A160F;
  box-shadow: 0 16px 34px rgba(42, 22, 15, 0.34);
  transform: translateX(50%) translateY(-2px);
}

.booking-sticky-submit:hover::after {
  background: var(--secondary);
}

@keyframes bookingBorderSpin {
  to {
    transform: rotate(1turn);
  }
}

.booking-note {
  max-width: 900px;
  margin: 24px auto 0;
  color: #2A160F;
  font-size: 19px;
  font-weight: 500;
  line-height: 1.34;
  text-align: center;
}

.booking-deposit {
  margin-top: 22px;
  color: #050505;
  font-size: 22px;
  font-weight: 800;
  text-align: center;
}

.booking-form {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px 24px;
  max-width: 900px;
  margin: 24px auto 0;
}

.booking-field {
  display: grid;
  gap: 7px;
  color: var(--primary);
  font-size: 15px;
  font-weight: 800;
}

.booking-field span {
  padding-left: 6px;
  line-height: 1.1;
}

.booking-field-full {
  grid-column: 1 / 4;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid #C9A45F;
  border-radius: 999px;
  color: #2A160F;
  background: var(--white);
  box-shadow: 0 6px 16px rgba(46, 28, 18, 0.14);
  font: inherit;
  font-size: 16px;
  outline: none;
}

.booking-form input::placeholder,
.booking-form textarea::placeholder {
  color: rgba(42, 22, 15, 0.58);
  font-weight: 400;
}

.booking-form textarea {
  min-height: 270px;
  padding-top: 22px;
  border-radius: 18px;
  resize: vertical;
}

.booking-form button[type="submit"] {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  grid-column: 1 / 4;
  justify-self: center;
  min-width: 230px;
  min-height: 52px;
  overflow: hidden;
  border: 0;
  border-radius: 999px;
  color: var(--white);
  background: #2A160F;
  cursor: pointer;
  font-size: 18px;
  font-weight: 800;
  isolation: isolate;
  transition: color 0.22s ease, transform 0.22s ease, box-shadow 0.22s ease;
}

.booking-form button[type="submit"]::before {
  position: absolute;
  inset: -70%;
  z-index: -2;
  background: conic-gradient(
    from 0deg,
    transparent 0deg,
    transparent 245deg,
    #FFF1C4 278deg,
    var(--secondary) 304deg,
    transparent 332deg,
    transparent 360deg
  );
  opacity: 0;
  animation: bookingBorderSpin 1.8s linear infinite;
  content: "";
  transition: opacity 0.2s ease;
}

.booking-form button[type="submit"]::after {
  position: absolute;
  inset: 3px;
  z-index: -1;
  border-radius: 999px;
  background: #2A160F;
  content: "";
  transition: background 0.22s ease;
}

.booking-form button[type="submit"]:hover,
.booking-form button[type="submit"].is-sending {
  box-shadow: 0 15px 30px rgba(42, 22, 15, 0.3);
  transform: translateY(-2px);
}

.booking-form button[type="submit"]:hover::before,
.booking-form button[type="submit"].is-sending::before {
  opacity: 1;
}

.booking-form button[type="submit"]:hover {
  color: #2A160F;
}

.booking-form button[type="submit"]:hover::after {
  background: var(--secondary);
}

.booking-form button[type="submit"].is-sending {
  color: var(--white);
  cursor: wait;
}

.booking-form button[type="submit"].is-sending::before {
  animation-duration: 0.72s;
}

.booking-form button[type="submit"].is-sending::after {
  background: #2A160F;
}

.booking-form button[type="submit"]:disabled {
  opacity: 1;
}

.booking-form button[type="submit"].is-disabled {
  cursor: not-allowed;
  color: rgba(255, 255, 255, 0.7);
  box-shadow: none;
  transform: none;
}

.booking-form button[type="submit"].is-disabled::before {
  opacity: 0;
}

.booking-form button[type="submit"].is-disabled::after {
  background: rgba(42, 22, 15, 0.58);
}

.booking-submit-loader {
  display: none;
  width: 18px;
  height: 18px;
  border: 3px solid rgba(255, 255, 255, 0.35);
  border-top-color: var(--white);
  border-radius: 50%;
  animation: bookingButtonLoading 0.72s linear infinite;
}

.booking-form button[type="submit"].is-sending .booking-submit-loader {
  display: inline-block;
}

@keyframes bookingButtonLoading {
  to {
    transform: rotate(1turn);
  }
}

.featured-posts {
  display: grid;
  gap: 10px;
  padding: 12px;
}

.featured-post {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 10px;
  align-items: center;
  color: var(--primary);
}

.featured-post img {
  width: 70px;
  height: 48px;
  object-fit: cover;
  border-radius: 4px;
}

.featured-post span {
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
}

.offers-page {
  padding: 42px 0 58px;
  background: var(--cream);
}

.offers-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 26px;
  margin-top: 36px;
}

.offer-card {
  display: grid;
  gap: 16px;
  color: var(--primary);
  text-align: center;
}

.offer-card-media {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  aspect-ratio: 1 / 1.36;
  border: 1px solid #C9A45F;
  border-radius: 18px;
  background: #D9BE9A;
  box-shadow: 0 7px 18px rgba(46, 28, 18, 0.2);
}

.offer-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.offer-card-title {
  min-height: 58px;
  padding: 0 12px;
  color: var(--primary);
  font-size: 21px;
  font-weight: 800;
  line-height: 1.18;
}

.offer-cta {
  margin-top: 28px;
  text-align: center;
}

.offer-cta h2 {
  color: var(--primary);
  font-size: 36px;
  font-weight: 800;
  text-transform: uppercase;
}

.offer-cta p {
  margin-top: 16px;
  color: var(--primary);
  font-size: 24px;
  font-style: italic;
  font-weight: 500;
  line-height: 1.28;
}

.offer-benefits {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  align-items: center;
  margin-top: 22px;
  padding: 22px 24px;
  border: 2px solid #C9A45F;
  border-radius: 18px;
  background: rgba(255, 247, 232, 0.82);
  box-shadow: 0 7px 18px rgba(46, 28, 18, 0.16);
}

.offer-benefit {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  align-items: center;
  color: var(--primary);
  text-align: left;
}

.offer-benefit svg {
  width: 42px;
  height: 42px;
  color: #050505;
  stroke-width: 2.4;
}

.offer-benefit strong,
.offer-benefit span {
  display: block;
}

.offer-benefit strong {
  margin-bottom: 4px;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.15;
}

.offer-benefit span {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.2;
}

.services-page {
  padding: 48px 0 58px;
  background: var(--cream);
}

.services-layout {
  display: grid;
  grid-template-columns: 390px 1fr;
  gap: 36px;
  align-items: start;
}

.services-sidebar {
  overflow: hidden;
  border-radius: 8px;
  background: var(--primary);
  color: var(--white);
}

.services-sidebar h2 {
  padding: 28px 28px 18px;
  color: var(--white);
  font-size: 31px;
  font-weight: 800;
  line-height: 1.15;
  text-transform: uppercase;
}

.service-category-menu {
  display: grid;
  padding: 0 26px 24px;
}

.service-category-item {
  border-top: 1px solid rgba(201, 164, 95, 0.78);
}

.service-category-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 56px;
}

.service-category-row > a {
  flex: 1 1 auto;
  color: var(--white);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.18;
  text-transform: uppercase;
}

.service-category-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 38px;
  border: 0;
  color: var(--secondary);
  background: transparent;
  cursor: pointer;
}

.service-category-toggle svg {
  width: 20px;
  height: 20px;
  stroke-width: 3;
  transition: transform 0.2s ease;
}

.service-category-item.open .service-category-toggle svg {
  transform: rotate(90deg);
}

.service-category-submenu {
  display: grid;
  height: 0;
  overflow: hidden;
  transition: height 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.service-category-submenu a {
  display: flex;
  align-items: center;
  min-height: 36px;
  padding-left: 14px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.2;
}

.service-category-submenu a:hover {
  color: #E7CC86;
}

.service-category-row > a.active,
.service-category-submenu a.active {
  color: #E7CC86;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.service-list-card {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  border-radius: 8px;
  box-shadow: 0 5px 13px rgba(46, 28, 18, 0.16);
}

.service-list-media {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at 50% 36%, rgba(255, 247, 232, 0.94), rgba(201, 164, 95, 0.48) 46%, rgba(42, 22, 15, 0.82) 100%);
  transition: transform 0.24s ease;
}

.service-list-card:hover .service-list-media {
  transform: scale(1.03);
}

.service-list-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  filter: none;
}

.service-list-card > span:last-child {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 62px;
  padding: 12px 10px;
  color: var(--white);
  background: linear-gradient(180deg, rgba(42, 22, 15, 0.05), rgba(42, 22, 15, 0.72));
  font-size: 17px;
  font-weight: 800;
  line-height: 1.18;
  text-align: center;
  text-transform: uppercase;
}

.service-detail-hero h1 {
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}

.service-detail-page {
  padding: 42px 0 58px;
  background: var(--cream);
}

.service-detail-single {
  max-width: 1180px;
}

.service-detail-content {
  min-width: 0;
}

.service-detail-breadcrumb {
  margin-bottom: 18px;
}

.service-detail-card {
  overflow: hidden;
  border: 1px solid rgba(201, 164, 95, 0.9);
  border-radius: 8px;
  background: rgba(255, 247, 232, 0.94);
  box-shadow: 0 8px 22px rgba(46, 28, 18, 0.14);
}

.service-detail-top {
  display: grid;
  grid-template-columns: minmax(320px, 44%) 1fr;
  gap: 28px;
  padding: 26px;
}

.service-detail-media {
  display: block;
  overflow: hidden;
  border-radius: 8px;
  aspect-ratio: 1 / 1;
  background: rgba(201, 164, 95, 0.18);
}

.service-detail-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-detail-summary {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.service-detail-label {
  align-self: flex-start;
  min-height: 30px;
  padding: 6px 12px;
  border-radius: 999px;
  color: #2A160F;
  background: rgba(201, 164, 95, 0.35);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}

.service-detail-summary h2 {
  margin-top: 14px;
  color: var(--primary);
  font-size: 36px;
  font-weight: 800;
  line-height: 1.12;
}

.service-detail-summary p {
  margin-top: 14px;
  color: #5D3826;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.45;
  text-align: justify;
}

.service-detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.service-detail-booking,
.service-detail-phone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border-radius: 999px;
  font-size: 17px;
  font-weight: 800;
}

.service-detail-booking {
  color: var(--white);
  background: var(--dark);
}

.service-detail-phone {
  gap: 8px;
  color: var(--primary);
  border: 1px solid rgba(201, 164, 95, 0.9);
  background: rgba(255, 247, 232, 0.82);
}

.service-detail-phone svg {
  width: 18px;
  height: 18px;
}

.service-detail-section,
.service-detail-grid-info,
.service-detail-note {
  margin: 0 26px;
  padding: 24px 0;
  border-top: 1px solid rgba(201, 164, 95, 0.45);
}

.service-detail-card > .service-detail-section:first-child {
  border-top: 0;
}

.service-detail-section h3,
.service-detail-grid-info h3 {
  color: var(--primary);
  font-size: 25px;
  font-weight: 800;
  line-height: 1.2;
}

.service-detail-section p,
.service-detail-grid-info li,
.service-detail-note p {
  color: #5D3826;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.55;
  text-align: justify;
}

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

.service-detail-article-body h3:not(:first-child) {
  margin-top: 24px;
}

.service-detail-article-body ul {
  display: grid;
  gap: 9px;
  margin: 14px 0 0 20px;
}

.service-detail-grid-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.service-detail-grid-info ul {
  display: grid;
  gap: 8px;
  margin: 14px 0 0 20px;
}

.service-detail-facts {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.service-detail-facts span {
  display: block;
  padding: 12px 14px;
  border: 1px solid rgba(201, 164, 95, 0.58);
  border-radius: 8px;
  color: #5D3826;
  background: rgba(201, 164, 95, 0.12);
  font-size: 17px;
  font-weight: 600;
}

.service-detail-facts strong {
  color: var(--primary);
  font-weight: 800;
}

.service-detail-price-table {
  overflow: hidden;
  margin-top: 16px;
  border: 1px solid rgba(201, 164, 95, 0.72);
  border-radius: 8px;
}

.service-detail-price-head,
.service-detail-price-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

.service-detail-price-head {
  min-height: 48px;
  color: var(--white);
  background: var(--primary);
  font-size: 16px;
  font-weight: 800;
  text-transform: uppercase;
}

.service-detail-price-head span,
.service-detail-price-row span,
.service-detail-price-row strong {
  padding: 13px 18px;
}

.service-detail-price-row {
  border-top: 1px solid rgba(201, 164, 95, 0.35);
  color: #5D3826;
  font-size: 18px;
  font-weight: 700;
}

.service-detail-price-row strong {
  color: var(--primary);
  font-weight: 800;
}

.service-booking-select {
  margin: 0 26px;
  padding: 24px 0;
  border-top: 1px solid rgba(201, 164, 95, 0.45);
}

.service-detail-price-section h3 {
  margin-bottom: 16px;
}

.service-detail-booking-table {
  margin-bottom: 0;
}

.service-detail-price-value {
  color: var(--primary);
  font-weight: 800;
}

.service-booking-select h3 {
  color: var(--primary);
  font-size: 25px;
  font-weight: 800;
  line-height: 1.2;
}

.service-booking-table {
  overflow: hidden;
  margin-top: 16px;
  border: 1px solid rgba(201, 164, 95, 0.72);
  border-radius: 8px;
}

.service-booking-head,
.service-booking-row {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr 0.8fr 72px;
  align-items: center;
}

.service-booking-head {
  min-height: 48px;
  color: var(--white);
  background: var(--primary);
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
}

.service-booking-head span,
.service-booking-row span,
.service-booking-row strong {
  padding: 13px 16px;
}

.service-booking-row {
  min-height: 58px;
  border-top: 1px solid rgba(201, 164, 95, 0.35);
  color: #5D3826;
  cursor: pointer;
  font-size: 17px;
  font-weight: 700;
}

.service-booking-row:hover {
  background: rgba(201, 164, 95, 0.12);
}

.service-booking-row strong {
  color: var(--primary);
  font-weight: 800;
}

.service-booking-row input {
  justify-self: center;
  width: 18px;
  height: 18px;
  accent-color: var(--primary);
}

.service-booking-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 178px;
  min-height: 50px;
  margin-top: 18px;
  padding: 0 24px;
  border-radius: 8px;
  color: var(--white);
  background: var(--dark);
  font-size: 20px;
  font-weight: 800;
  text-transform: uppercase;
  box-shadow: 0 4px 10px rgba(46, 28, 18, 0.18);
}

.service-detail-contact {
  margin-top: 0;
}

.service-detail-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 16px;
}

.service-detail-steps article {
  min-height: 132px;
  padding: 18px 16px;
  border: 1px solid rgba(201, 164, 95, 0.72);
  border-radius: 8px;
  background: rgba(201, 164, 95, 0.12);
}

.service-detail-steps span {
  display: block;
  color: var(--secondary);
  font-size: 24px;
  font-weight: 800;
  line-height: 1;
}

.service-detail-steps p {
  margin-top: 10px;
  font-size: 15px;
  line-height: 1.35;
  text-align: left;
}

.service-detail-note {
  padding-bottom: 26px;
}

.service-detail-note p {
  padding: 16px 18px;
  border-left: 5px solid var(--secondary);
  border-radius: 0 8px 8px 0;
  color: var(--primary);
  background: rgba(201, 164, 95, 0.16);
  font-weight: 800;
  font-style: italic;
}

.service-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 34px;
}

.service-pagination a,
.service-pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  height: 34px;
  border: 1px solid rgba(107, 63, 42, 0.55);
  border-radius: 50%;
  color: var(--primary);
  background: var(--cream-light);
  font-size: 16px;
  font-weight: 700;
}

.service-pagination a.active,
.service-pagination .page-numbers.current {
  color: var(--white);
  background: var(--dark);
  border-color: var(--dark);
}

.service-pagination svg {
  width: 18px;
  height: 18px;
}

@media (max-width: 1400px) {
  .container {
    width: min(100% - 32px, 1300px);
  }

  .header-inner {
    gap: 32px;
  }

  .primary-nav {
    gap: 21px;
  }

  .nav-link,
  .language-button,
  .booking-button {
    font-size: 19px;
  }

  .header-actions {
    gap: 18px;
  }

  .booking-button {
    min-width: 184px;
  }
}

@media (max-width: 1180px) {
  :root {
    --header-height: 78px;
  }

  .container {
    width: min(100% - 32px, 1080px);
  }

  .site-logo {
    width: 72px;
  }

  .primary-nav {
    gap: 18px;
  }

  .nav-link {
    font-size: 17px;
  }

  .language-button span:not(.flag) {
    display: none;
  }

  .language-menu {
    right: 0;
    left: auto;
  }

  .booking-button {
    min-width: 138px;
    min-height: 48px;
    padding: 0 18px;
    font-size: 17px;
  }

  .home-hero {
    min-height: 560px;
  }

  .hero-content {
    min-height: 512px;
    padding: 64px 0 82px;
  }

  .hero-content h1 {
    font-size: 46px;
  }

  .home-intro {
    padding: 36px 0 28px;
  }

  .intro-inner p {
    font-size: 17px;
  }

  .section-lead {
    font-size: 17px;
  }

  .featured-services-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
  }


  .relax-journey-layout {
    grid-template-columns: 330px 1fr;
  }

  .relax-service-card {
    min-height: 138px;
    padding: 18px 16px;
  }

  .relax-service-card h3 {
    font-size: 18px;
  }

  .relax-service-card p {
    font-size: 15px;
  }

  .care-process-map {
    --process-card-width: 238px;
    --process-side-offset: 24px;
    --process-lower-offset: clamp(150px, 20vw, 230px);
    min-height: 500px;
  }

  .process-logo {
    width: 144px;
    height: 144px;
  }

  .process-logo img {
    width: 100px;
  }

  .process-step {
    padding: 14px 15px;
  }

  .home-gallery-swiper {
    padding: 0 42px;
  }

  .home-gallery-swiper:not(.swiper-initialized) .swiper-slide {
    width: calc((100% - 28px) / 3);
  }

  .customer-reviews-swiper {
    padding: 0 38px;
  }

  .customer-reviews-swiper:not(.swiper-initialized) .swiper-slide {
    width: calc((100% - 36px) / 4);
  }

  .offers-grid {
    gap: 18px;
  }

  .offer-card-title {
    font-size: 18px;
  }

  .blog-layout {
    grid-template-columns: 1fr 300px;
    gap: 22px;
  }

  .blog-grid {
    gap: 18px;
  }

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

  .blog-card-body p {
    font-size: 14px;
  }

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

  .faq-question {
    font-size: 18px;
  }

  .footer-main {
    grid-template-columns: 220px 1fr 1fr;
    gap: 30px;
  }

  .footer-consult {
    grid-column: 2 / 4;
  }

  .page-hero {
    min-height: 210px;
  }

  .about-welcome-layout {
    grid-template-columns: 1fr 460px;
    gap: 40px;
  }

  .about-copy p,
  .about-why-copy p,
  .vision-card p{
    font-size: 17px;
    text-align: justify;
  }


  .experience-card p {
    font-size: 15px;
  }


  .vision-card {
    padding: 38px 34px;
  }

  .core-values-grid {
    gap: 16px;
  }

  .services-layout {
    grid-template-columns: 320px 1fr;
    gap: 24px;
  }

  .services-grid {
    gap: 14px;
  }

  .services-sidebar h2 {
    font-size: 26px;
  }

  .service-category-row > a {
    font-size: 16px;
  }
}

@media (max-width: 920px) {
  .primary-nav {
    display: none;
  }

  .header-inner {
    gap: 22px;
  }

  .header-actions {
    margin-left: auto;
    gap: 8px;
  }

  .mobile-menu-button {
    display: inline-flex;
  }

  .header-actions > .booking-button {
    display: none;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / 3;
  }

  .footer-brand img {
    width: 170px;
  }

  .footer-consult {
    grid-column: auto;
  }

  .about-welcome-layout,
  .about-vision-grid {
    grid-template-columns: 1fr;
  }


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

  .experience-card-media {
    min-height: 220px;
  }

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

  .services-layout {
    grid-template-columns: 1fr;
  }

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

  .service-detail-top,
  .service-detail-grid-info {
    grid-template-columns: 1fr;
  }

  .service-detail-media {
    max-width: 520px;
  }

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

  .blog-layout {
    grid-template-columns: 1fr;
  }

  .blog-sidebar {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .gallery-page-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
  }

  .contact-panel {
    grid-template-columns: 0.86fr 1fr;
    gap: 34px;
  }

  .contact-info-card {
    padding: 62px 48px 30px;
  }

  .contact-form-wrap {
    padding: 48px 38px 38px 0;
  }

  .booking-layout {
    grid-template-columns: 260px 1fr;
    gap: 18px;
  }

  .booking-summary-head,
  .booking-summary-row,
  .booking-total {
    grid-template-columns: 1fr 190px 190px 48px;
  }

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

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

  .blog-detail-article > h2 {
    font-size: 30px;
  }

  .blog-detail-lead {
    font-size: 17px;
  }

  .blog-detail-body h3 {
    font-size: 22px;
  }

  .blog-detail-body p,
  .blog-detail-body li {
    font-size: 16px;
  }
}

@media (max-width: 640px) {
  :root {
    --header-height: 70px;
  }

  h1 {
    font-size: 38px;
  }

  h2,
  .section-title {
    font-size: 24px;
  }

  .container {
    width: min(100% - 24px, 100%);
  }

  .site-logo {
    width: 78px;
  }

  .language-button {
    min-height: 40px;
  }

  .icon-button {
    width: 42px;
    height: 42px;
  }

  .icon-button svg {
    width: 27px;
    height: 27px;
  }

  .back-to-top {
    right: 12px;
    bottom: 16px;
    width: 48px;
    height: 48px;
  }

  .floating-contact-buttons {
    left: 10px;
    gap: 7px;
  }

  .floating-contact-button {
    width: 38px;
    min-width: 38px;
    height: 38px;
  }

  .floating-contact-button.has-hover-label:hover,
  .floating-contact-button.has-hover-label:focus-visible {
    width: 112px;
  }

  .floating-contact-icon {
    flex-basis: 38px;
    width: 38px;
    height: 38px;
    font-size: 12px;
  }

  .floating-contact-icon img {
    width: 38px;
    height: 38px;
  }

  .floating-contact-icon svg {
    width: 21px;
    height: 21px;
  }

  .floating-contact-label {
    height: 30px;
    font-size: 12px;
  }

  .floating-contact-button.has-hover-label:hover .floating-contact-label,
  .floating-contact-button.has-hover-label:focus-visible .floating-contact-label {
    padding: 0 10px 0 12px;
  }

  .search-box {
    margin-top: 96px;
    padding: 28px 18px 22px;
  }

  .search-form {
    display: grid;
  }

  .search-form .booking-button {
    width: 100%;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 42px 0 34px;
  }

  .footer-brand {
    grid-column: auto;
  }

  .footer-column h2,
  .footer-column h3 {
    font-size: 17px;
  }

  .footer-column p,
  .footer-column a {
    font-size: 14px;
  }

  .footer-hotline {
    font-size: 18px;
  }

  .footer-bottom p {
    font-size: 12px;
  }

  .page-hero {
    min-height: 170px;
  }

  .page-hero h1 {
    font-size: 38px;
  }

  .blog-detail-hero h1 {
    font-size: 30px;
  }

  .offers-page {
    padding: 34px 0 42px;
  }

  .blog-page {
    padding: 34px 0 42px;
  }

  .blog-intro {
    margin-top: 16px;
    font-size: 15px;
    text-align: left;
  }

  .blog-layout {
    margin-top: 18px;
  }

  .blog-grid {
    gap: 16px;
  }

  .search-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

  .blog-sidebar {
    grid-template-columns: 1fr;
  }

  .blog-widget h2 {
    font-size: 17px;
  }

  .gallery-page {
    padding: 28px 0 42px;
  }

  .gallery-page h2 {
    font-size: 22px;
  }

  .gallery-page-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 22px;
  }

  .gallery-page-card {
    border-radius: 12px;
  }

  .contact-page {
    padding: 40px 0 48px;
  }

  .contact-panel {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .contact-info-card {
    min-height: 420px;
    padding: 44px 32px 28px;
    box-shadow: 0 10px 18px rgba(46, 28, 18, 0.18);
  }

  .contact-info-card p {
    margin-top: 42px;
    text-align: center;
  }

  .contact-form-wrap {
    padding: 34px 28px 34px;
  }

  .contact-map {
    height: 240px;
  }

  .booking-layout {
    grid-template-columns: 1fr;
  }

  .booking-sidebar nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 18px;
  }

  .booking-service-list {
    overflow-x: visible;
  }

  .booking-table {
    min-width: 0;
  }

  .booking-benefits {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .booking-table,
  .booking-table tbody,
  .booking-table tr,
  .booking-table th,
  .booking-table td {
    display: block;
    width: 100%;
  }

  .booking-table {
    table-layout: auto;
    border-collapse: separate;
    border-spacing: 0;
  }

  .booking-table-title {
    display: grid;
    grid-template-columns: 1fr;
    margin-top: 10px;
    background: var(--primary);
    padding: 5px 10px;
  }

  .booking-table-title th {
    width: 100%;
    padding: 10px 12px;
    text-align: left;
  }

  .booking-table-title th:not(:first-child) {
    display: none;
  }

  .booking-table tr:not(.booking-table-title) {
    display: grid;
    gap: 8px;
    padding: 12px;
    background: rgba(255, 250, 235, 0.62);
  }

  .booking-table tr:not(.booking-table-title) + tr:not(.booking-table-title) {
    padding-top: 4px;
  }

  .booking-table td,
  .booking-table th,
  .booking-table .booking-description-cell,
  .booking-price-table tr:not(.booking-table-title) td[rowspan],
  .booking-price-table tr:not(.booking-table-title) td[rowspan] + td,
  .booking-price-table tr:not(.booking-table-title) .booking-description-cell + td,
  .booking-price-table tr:not(.booking-table-title) td:first-child:not(.booking-description-cell):not([rowspan]),
  .booking-price-table tr:not(.booking-table-title) td:nth-last-child(3),
  .booking-price-table tr:not(.booking-table-title) td:nth-last-child(2),
  .booking-price-table tr:not(.booking-table-title) td:last-child,
  .booking-nail-table tr:not(.booking-table-title) td:first-child,
  .booking-nail-table tr:not(.booking-table-title) td:nth-child(2),
  .booking-nail-table tr:not(.booking-table-title) td:last-child,
  .booking-simple-table td:first-child,
  .booking-simple-table td:last-child {
    width: 100%;
    padding: 0;
    text-align: left;
  }

  .booking-table .booking-description-cell {
    line-height: 1.35;
    text-align: justify;
  }

  .booking-price-table td:not(.booking-description-cell),
  .booking-nail-table td:not(.booking-description-cell),
  .booking-simple-table td:not(.booking-description-cell) {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    min-height: 34px;
    padding: 8px 10px;
    border-radius: 5px;
    background: rgba(201, 164, 95, 0.18);
    text-align: right;
  }

  .booking-price-table td:not(.booking-description-cell)::before,
  .booking-nail-table td:not(.booking-description-cell)::before,
  .booking-simple-table td:not(.booking-description-cell)::before {
    color: var(--primary);
    background: transparent;
    font-size: 12px;
    font-weight: 900;
    text-align: left;
    text-transform: uppercase;
    user-select: none;
    -webkit-user-select: none;
  }

  .booking-table td[data-label]::before {
    content: attr(data-label);
  }

  .booking-table label {
    justify-content: flex-end;
    white-space: normal;
    text-align: right;
  }

  .booking-summary-head,
  .booking-summary-row,
  .booking-total {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 14px 0;
  }

  .booking-summary-head {
    display: none;
  }

  .booking-total span {
    grid-column: auto;
  }

  .booking-form {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 100%;
  }

  .booking-field-full,
  .booking-form button[type="submit"] {
    grid-column: 1 / 3;
  }

  .offers-grid {
    gap: 16px;
    margin-top: 24px;
  }

  .offer-card-media {
    border-radius: 12px;
  }

  .offer-card-title {
    min-height: 0;
    padding: 0;
    font-size: 17px;
  }

  .offer-cta {
    margin-top: 22px;
  }

  .offer-cta h2 {
    font-size: 28px;
  }

  .offer-cta p {
    margin-top: 10px;
    font-size: 18px;
  }

  .offer-benefits {
    gap: 12px;
    padding: 16px;
    border-radius: 12px;
  }

  .offer-benefit {
    grid-template-columns: 34px 1fr;
    gap: 9px;
  }

  .offer-benefit svg {
    width: 34px;
    height: 34px;
  }

  .offer-benefit strong {
    font-size: 14px;
  }

  .offer-benefit span {
    font-size: 13px;
  }

  .about-welcome {
    padding: 34px 0;
  }

  .about-welcome-layout,
  .about-why-copy,
  .about-experience-grid {
    margin-top: 24px;
  }

  .about-copy {
    gap: 16px;
    font-size: 16px;
  }

  .about-copy p,
  .about-why-copy p,
  .experience-card p,
  .vision-card p,
  .core-values-grid p {
    font-size: 14px;
  }

  .about-why-copy h3 {
    font-size: 18px;
  }

  .experience-card {
    min-height: 0;
    padding: 16px;
  }

  .experience-card h3 {
    font-size: 27px;
  }

  .about-experience-grid {
    grid-template-columns: 1fr;
  }

  .vision-card {
    min-height: 0;
    padding: 28px 22px;
  }

  .vision-card h2 {
    font-size: 21px;
  }

  .core-values {
    padding: 24px 0 38px;
  }

  .core-values-grid {
    grid-template-columns: 1fr;
    margin-top: 24px;
  }

  .core-values-grid article {
    min-height: 0;
  }

  .services-page {
    padding: 30px 0 38px;
  }

  .service-detail-page {
    padding: 30px 0 42px;
  }

  .services-sidebar h2 {
    padding: 20px 18px 14px;
    font-size: 22px;
  }

  .service-category-menu {
    padding: 0 18px 18px;
  }

  .service-category-row {
    min-height: 48px;
  }

  .service-category-row > a {
    font-size: 13px;
  }

  .service-category-submenu a {
    min-height: 32px;
    font-size: 14px;
  }

  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
  }

  .service-list-card {
    aspect-ratio: 1 / 1.18;
  }

  .service-list-card > span:last-child {
    min-height: 52px;
    padding: 9px 7px;
    font-size: 12px;
  }

  .service-detail-top {
    gap: 18px;
    padding: 16px;
  }

  .service-detail-summary h2 {
    font-size: 28px;
  }

  .service-detail-summary p,
  .service-detail-section p,
  .service-detail-grid-info li,
  .service-detail-note p {
    font-size: 16px;
  }

  .service-detail-section,
  .service-detail-grid-info,
  .service-detail-note,
  .service-booking-select {
    margin: 0 16px;
    padding: 20px 0;
  }

  .service-detail-section h3,
  .service-detail-grid-info h3 {
    font-size: 22px;
  }

  .service-detail-price-head,
  .service-detail-price-row {
    font-size: 15px;
  }

  .service-booking-select h3 {
    font-size: 22px;
  }

  .service-booking-head {
    display: none;
  }

  .service-booking-row {
    grid-template-columns: 1fr;
    gap: 7px;
    padding: 12px;
    font-size: 15px;
  }

  .service-booking-row span,
  .service-booking-row strong {
    padding: 0;
  }

  .service-booking-row input {
    justify-self: start;
  }

  .service-booking-row span::before,
  .service-booking-row strong::before {
    content: attr(data-label) ": ";
    color: var(--primary);
    font-weight: 900;
  }

  .service-booking-submit {
    min-width: 154px;
    min-height: 46px;
    font-size: 18px;
  }

  .service-pagination {
    flex-wrap: wrap;
    gap: 6px;
  }

  .service-pagination a,
  .service-pagination span {
    min-width: 30px;
    height: 30px;
    font-size: 13px;
  }
}

@media (max-width: 760px) {
  .featured-services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .relax-journey-layout {
    grid-template-columns: 1fr;
  }

  .relax-media {
    min-height: 240px;
  }

  .care-process-map {
    display: grid;
    gap: 10px;
    min-height: 0;
  }

  .process-logo,
  .process-step {
    position: static;
    transform: none;
  }

  .process-logo {
    width: 138px;
    height: 138px;
    margin: 0 auto 6px;
  }

  .process-step {
    width: 100%;
  }

  .home-gallery-swiper {
    padding: 0 34px;
  }

  .home-gallery-swiper:not(.swiper-initialized) .swiper-slide {
    width: calc((100% - 28px) / 3);
  }

  .customer-reviews-swiper {
    padding: 0 34px;
  }

  .customer-reviews-swiper:not(.swiper-initialized) .swiper-slide {
    width: calc((100% - 10px) / 2);
  }
}

@media (max-width: 520px) {
  .home-hero {
    min-height: 500px;
  }

  .hero-content {
    min-height: 452px;
    padding: 54px 0 78px;
  }

  .hero-content h1 {
    font-size: 34px;
  }

  .hero-actions {
    flex-wrap: wrap;
    gap: 9px;
    margin-top: 18px;
  }

  .hero-booking-button,
  .hero-time {
    min-height: 38px;
    font-size: 13px;
  }

  .hero-info-track {
    min-height: 42px;
    animation-duration: 22s;
  }

  .hero-info-track span {
    padding: 0 12px 0 30px;
    font-size: 12px;
  }

  .hero-info-track span::before {
    left: 8px;
    width: 11px;
    height: 11px;
  }

  .home-intro {
    padding: 30px 0 24px;
  }

  .intro-inner {
    gap: 16px;
  }

  .intro-inner p {
    font-size: 15px;
    line-height: 1.5;
  }

  .offers-grid {
    grid-template-columns: 1fr;
  }

  .blog-grid {
    grid-template-columns: 1fr;
  }

  .search-page-form {
    grid-template-columns: 1fr;
  }

  .search-grid {
    grid-template-columns: 1fr;
  }

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

  .blog-detail-page {
    padding: 28px 0 42px;
  }

  .blog-breadcrumb {
    font-size: 14px;
  }

  .blog-detail-meta,
  .blog-detail-article > h2,
  .blog-detail-lead,
  .blog-detail-body {
    padding-left: 16px;
    padding-right: 16px;
  }

  .blog-detail-article > h2 {
    font-size: 25px;
  }

  .blog-detail-cover,
  .blog-detail-toc,
  .blog-detail-tags,
  .blog-detail-share {
    margin-left: 16px;
    margin-right: 16px;
  }

  .blog-detail-booking {
    min-width: 150px;
    min-height: 46px;
    margin-left: 16px;
    margin-bottom: 20px;
    padding: 0 18px;
    font-size: 18px;
  }

  .blog-detail-contact-box {
    padding: 16px 16px 18px;
  }

  .blog-detail-contact-box h3 {
    font-size: 21px;
  }

  .blog-detail-contact-list a {
    grid-template-columns: 26px minmax(0, 1fr);
    gap: 10px;
    font-size: 16px;
  }

  .blog-detail-contact-list svg {
    width: 22px;
    height: 22px;
  }

  .blog-detail-socials {
    gap: 12px;
  }

  .blog-detail-socials a {
    width: 36px;
    height: 36px;
  }

  .blog-detail-cover {
    aspect-ratio: 4 / 3;
  }

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

  .blog-detail-body blockquote {
    padding: 16px;
  }

  .blog-detail-body blockquote p {
    font-size: 18px;
  }

  .gallery-page-grid {
    grid-template-columns: 1fr;
  }

  .contact-panel {
    border-radius: 12px;
  }

  .contact-info-card {
    min-height: 0;
    padding: 34px 18px 24px;
    border-radius: 12px;
  }

  .contact-info-card::before {
    width: 100px;
    height: 152px;
  }

  .contact-info-card::after {
    width: 113px;
    height: 168px;
  }

  .contact-logo-mark {
    width: 100px;
    height: 100px;
  }

  .contact-logo-mark img {
    width: 72px;
  }

  .contact-info-list a {
    grid-template-columns: 24px 1fr;
    gap: 8px;
    font-size: 15px;
  }

  .contact-socials {
    gap: 9px;
  }

  .contact-form-wrap {
    padding: 28px 16px 28px;
  }

  .contact-form-wrap h2 {
    font-size: 24px;
  }

  .contact-form-wrap > p {
    font-size: 15px;
  }

  .contact-form input,
  .contact-form textarea {
    min-height: 48px;
    padding: 0 16px;
    font-size: 14px;
  }

  .contact-form textarea {
    height: 132px;
    padding-top: 14px;
  }

  .contact-map {
    height: 210px;
    border-radius: 12px;
  }

  .booking-services {
    padding: 24px 0 92px;
  }

  .booking-sticky-submit {
    bottom: 14px;
    min-width: 180px;
    min-height: 48px;
    padding: 0 24px;
    font-size: 16px;
  }

  .booking-sidebar nav {
    grid-template-columns: 1fr;
  }

  .booking-category h2 {
    font-size: 15px;
    padding: 5px;
  }

  .booking-category h2 span {
    font-size: 13px;
  }

  .booking-benefits {
    padding: 0 8px;
    font-size: 12px;
  }

  .booking-summary {
    margin-top: 24px;
  }

  .booking-summary-row strong,
  .booking-total strong,
  .booking-summary-row > span,
  .booking-total span {
    font-size: 16px;
  }

  .booking-form {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .booking-field-full,
  .booking-form button[type="submit"] {
    grid-column: auto;
  }

  .booking-form textarea {
    min-height: 190px;
  }

  .offer-card-media {
    aspect-ratio: 1 / 1.18;
  }

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

  .featured-services {
    padding: 10px 0 34px;
  }

  .featured-services-grid {
    gap: 8px;
    margin-top: 20px;
  }

  .service-count {
    top: 6px;
    right: 6px;
    min-width: 42px;
    padding: 3px 6px;
    font-size: 10px;
  }

  .service-name {
    min-height: 58px;
    padding: 10px 8px 12px;
    font-size: 12px;
  }

  .home-highlights {
    padding: 18px 0 32px;
  }

  .section-lead {
    margin-top: 12px;
    font-size: 14px;
  }

  .home-highlights-swiper {
    margin-top: 20px;
    padding: 0 28px;
  }

  .home-highlights-swiper:not(.swiper-initialized) .swiper-slide {
    width: calc((100% - 20px) / 2);
  }

  .highlight-content {
    min-height: 112px;
    padding: 11px 10px 13px;
  }

  .highlight-content h3 {
    font-size: 14px;
  }

  .highlight-content p {
    font-size: 12px;
  }

  .relax-journey {
    padding: 18px 0 34px;
  }

  .relax-journey-layout {
    gap: 12px;
    margin-top: 20px;
  }

  .relax-media {
    min-height: 190px;
  }

  .relax-service-grid {
    gap: 8px;
  }

  .relax-service-card {
    grid-template-columns: 1fr;
    gap: 7px;
    min-height: 152px;
    padding: 13px 10px;
  }

  .relax-service-card svg {
    width: 22px;
    height: 22px;
  }

  .relax-service-card h3 {
    font-size: 13px;
  }

  .relax-service-card p {
    font-size: 12px;
  }

  .care-process {
    padding: 18px 0 38px;
  }

  .care-process-map {
    margin-top: 20px;
  }

  .process-logo {
    width: 112px;
    height: 112px;
  }

  .process-logo img {
    width: 78px;
  }

  .process-step {
    height: 120px;
    padding: 13px 14px;
  }

  .process-step h3 {
    font-size: 15px;
  }

  .process-step p {
    font-size: 13px;
  }

  .home-gallery {
    padding: 18px 0 34px;
  }

  .home-gallery-swiper {
    margin-top: 20px;
    padding: 0 28px;
  }

  .home-gallery-swiper:not(.swiper-initialized) .swiper-slide {
    width: calc((100% - 10px) / 2);
  }

  .home-gallery-prev,
  .home-gallery-next {
    width: 30px;
    height: 30px;
  }

  .home-gallery-prev::after,
  .home-gallery-next::after {
    font-size: 12px;
  }

  .customer-reviews {
    padding: 18px 0 34px;
  }

  .customer-reviews-swiper {
    margin-top: 20px;
    padding: 0 28px;
  }

  .customer-reviews-swiper:not(.swiper-initialized) .swiper-slide {
    width: calc((100% - 10px) / 2);
  }

  .review-card {
    min-height: 158px;
    padding: 10px;
  }

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

  .customer-reviews-prev,
  .customer-reviews-next {
    width: 30px;
    height: 30px;
  }

  .customer-reviews-prev::after,
  .customer-reviews-next::after {
    font-size: 12px;
  }

  .home-faq {
    padding: 18px 0 34px;
  }

  .faq-list {
    gap: 8px;
    margin-top: 20px;
  }

  .faq-question {
    min-height: 48px;
    padding: 0 12px;
    font-size: 15px;
  }

  .faq-answer p {
    padding: 12px 12px 13px;
    font-size: 13px;
  }
  .booking-table tr:not(.booking-table-title) .booking-description-cell{
    width: 100%;
  }
  .booking-table th:first-child, .booking-table .booking-description-cell {
    width: 100%;
}
}

.nori-asset--launcher, .nr-chatbox-logo img{
  border-radius: 40px !important;
}
.error-hero {
  min-height: 220px;
}

.error-page {
  padding: 64px 0 76px;
  background: var(--cream);
}

.error-layout {
  display: grid;
  grid-template-columns: minmax(220px, 360px) 1fr;
  gap: 46px;
  align-items: center;
  padding: 42px;
  border: 1px solid rgba(107, 63, 42, 0.22);
  border-radius: 8px;
  background: rgba(255, 247, 232, 0.92);
  box-shadow: var(--shadow);
}

.error-code {
  color: var(--primary);
  font-size: 154px;
  font-weight: 800;
  line-height: 0.9;
  text-align: center;
  text-shadow: 0 8px 0 rgba(201, 164, 95, 0.45);
}

.error-content {
  display: grid;
  gap: 18px;
}

.error-kicker {
  color: var(--secondary);
  font-size: 20px;
  font-weight: 800;
  text-transform: uppercase;
}

.error-content h2 {
  color: var(--primary);
  font-size: 42px;
  font-weight: 800;
  text-transform: uppercase;
}

.error-content > p:not(.error-kicker) {
  max-width: 760px;
  color: #74513F;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.4;
}


.error-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-top: 4px;
}


@media (max-width: 768px) {
  .error-page {
    padding: 42px 0 54px;
  }

  .error-layout {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 28px 20px;
    text-align: center;
  }

  .error-code {
    font-size: 112px;
  }

  .error-content h2 {
    font-size: 30px;
  }

  .error-content > p:not(.error-kicker) {
    font-size: 17px;
  }

  .error-actions {
    justify-content: center;
  }
}
