:root {
  --sii-pink-950: #5e2d3d;
  --sii-pink-900: #8f4860;
  --sii-pink-800: #b76782;
  --sii-pink-700: #cf819a;
  --sii-pink-600: #dc91aa;
  --sii-pink-500: #efb7ca;
  --sii-pink-300: #f8dce6;
  --sii-pink-100: #fff1f6;
  --sii-cream: #fffaf6;
  --sii-rose-white: #fff7fa;
  --sii-gold: #c99a5b;
  --sii-text: #3a2430;
  --sii-muted: #846474;
  --sii-white: #ffffff;
  --sii-border: rgba(183, 103, 130, 0.18);
  --sii-shadow-soft: 0 14px 40px rgba(159, 79, 104, 0.10);
  --sii-shadow-card: 0 20px 60px rgba(159, 79, 104, 0.16);
  --sii-shadow-strong: 0 28px 90px rgba(159, 79, 104, 0.24);
  --sii-container: 1180px;
  --sii-header-height: 78px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body.sii-page {
  margin: 0;
  font-family: "Be Vietnam Pro", system-ui, sans-serif;
  color: var(--sii-text);
  background:
    radial-gradient(circle at top left, rgba(242, 191, 208, 0.45), transparent 360px),
    radial-gradient(circle at top right, rgba(201, 154, 91, 0.12), transparent 420px),
    linear-gradient(180deg, #fff7fa 0%, #ffffff 44%, #fff1f6 100%);
  overflow-x: hidden;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.sii-page.sii-no-scroll {
  overflow: hidden;
}

.sii-page a {
  color: inherit;
  text-decoration: none;
}

.sii-page img {
  display: block;
  max-width: 100%;
}

.sii-page button,
.sii-page input,
.sii-page select {
  font: inherit;
}

.sii-page button {
  border: 0;
  cursor: pointer;
}

.sii-container {
  width: min(var(--sii-container), calc(100% - 32px));
  margin-inline: auto;
}

.sii-scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99999;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--sii-pink-800), var(--sii-pink-500), var(--sii-gold));
}

.sii-top-bar {
  position: relative;
  z-index: 1002;
  color: #fff;
  background: linear-gradient(90deg, var(--sii-pink-950), var(--sii-pink-700), var(--sii-pink-950));
  font-size: 13px;
}

.sii-top-bar-inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.sii-top-left,
.sii-top-right {
  display: flex;
  align-items: center;
  gap: 18px;
}

.sii-top-left a,
.sii-top-left span,
.sii-top-right a {
  white-space: nowrap;
}

.sii-site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 247, 250, 0.9);
  border-bottom: 1px solid var(--sii-border);
  backdrop-filter: blur(18px);
  transition: box-shadow 0.24s ease, background 0.24s ease;
}

.sii-site-header.scrolled {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 12px 36px rgba(159, 79, 104, 0.10);
}

.sii-header-inner {
  min-height: var(--sii-header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.sii-brand,
.sii-footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.sii-brand-logo,
.sii-footer-logo {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  padding: 5px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid rgba(183, 103, 130, 0.24);
  box-shadow: 0 14px 30px rgba(183, 103, 130, 0.16);
  overflow: hidden;
}

.sii-brand-logo img,
.sii-footer-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.sii-brand strong,
.sii-footer-brand strong {
  display: block;
  font-family: "Playfair Display", Georgia, serif;
  color: var(--sii-pink-900);
  font-size: 28px;
  line-height: 1;
  letter-spacing: 0.02em;
}

.sii-brand small,
.sii-footer-brand small {
  display: block;
  margin-top: 5px;
  color: var(--sii-pink-800);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.sii-main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
}

.sii-main-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  padding: 10px 12px;
  border-radius: 999px;
  color: var(--sii-muted);
  font-size: 14px;
  font-weight: 800;
  transition: 0.2s ease;
}

.sii-main-nav a::after {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 6px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--sii-pink-800), var(--sii-gold));
  transform: scaleX(0);
  transition: transform 0.22s ease;
}

.sii-main-nav a:hover,
.sii-main-nav a.active {
  color: var(--sii-pink-900);
  background: rgba(242, 191, 208, 0.18);
}

.sii-main-nav a:hover::after,
.sii-main-nav a.active::after {
  transform: scaleX(1);
}

.sii-header-call {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 11px 18px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, var(--sii-pink-800), var(--sii-pink-600));
  font-size: 14px;
  font-weight: 900;
  box-shadow: 0 14px 30px rgba(183, 103, 130, 0.25);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.sii-header-call::before {
  content: "☎";
  margin-right: 8px;
}

.sii-menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 10px;
  border-radius: 15px;
  background: #fff;
  border: 1px solid var(--sii-border);
  box-shadow: 0 10px 26px rgba(159, 79, 104, 0.08);
}

.sii-menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 6px 0;
  border-radius: 999px;
  background: var(--sii-pink-900);
  transition: 0.24s ease;
}

.sii-menu-toggle.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.sii-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.sii-menu-toggle.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.sii-hero {
  position: relative;
  padding: 58px 0 54px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255, 247, 250, 0.96), rgba(255, 255, 255, 0.86)),
    radial-gradient(circle at 85% 25%, rgba(242, 191, 208, 0.45), transparent 380px),
    radial-gradient(circle at 16% 68%, rgba(201, 154, 91, 0.12), transparent 360px);
}

.sii-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background-image:
    linear-gradient(90deg, rgba(183, 103, 130, 0.14) 1px, transparent 1px),
    linear-gradient(rgba(183, 103, 130, 0.14) 1px, transparent 1px);
  background-size: 66px 66px;
  pointer-events: none;
}

.sii-hero-glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(14px);
  pointer-events: none;
}

.sii-hero-glow-1 {
  width: 260px;
  height: 260px;
  left: -90px;
  top: 120px;
  background: rgba(242, 191, 208, 0.45);
}

.sii-hero-glow-2 {
  width: 240px;
  height: 240px;
  right: 8%;
  bottom: 80px;
  background: rgba(201, 154, 91, 0.14);
}

.sii-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(460px, 1.08fr);
  align-items: center;
  gap: 54px;
}

.sii-section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 13px;
  color: var(--sii-pink-900);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sii-section-kicker::before {
  content: "♡";
  color: var(--sii-gold);
  font-size: 13px;
}

.sii-section-kicker.center {
  display: flex;
  justify-content: center;
}

.sii-hero h1,
.sii-about-content h2,
.sii-section-heading h2,
.sii-feature-box h2,
.sii-booking-content h2,
.sii-contact-content h2,
.sii-hours-box h2 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  color: var(--sii-text);
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 1.05;
}

.sii-hero h1 {
  max-width: 650px;
  font-size: clamp(44px, 5.4vw, 74px);
}

.sii-hero-content p:not(.sii-section-kicker) {
  max-width: 600px;
  margin: 20px 0 28px;
  color: var(--sii-muted);
  font-size: 16px;
}

.sii-hero-actions,
.sii-feature-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.sii-btn {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 900;
  line-height: 1;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.sii-btn:hover {
  transform: translateY(-2px);
}

.sii-btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--sii-pink-800), var(--sii-pink-600));
  box-shadow: 0 16px 34px rgba(183, 103, 130, 0.26);
}

.sii-btn-primary::before {
  content: "♡";
  margin-right: 8px;
}

.sii-btn-outline {
  color: var(--sii-pink-900);
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(183, 103, 130, 0.25);
  box-shadow: 0 12px 28px rgba(159, 79, 104, 0.06);
}

.sii-btn-outline::before {
  content: "☎";
  margin-right: 8px;
  color: var(--sii-gold);
}

.sii-btn-light {
  color: var(--sii-pink-900);
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.48);
}

.sii-hero-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.sii-hero-contact span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 14px;
  border-radius: 999px;
  color: var(--sii-text);
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid var(--sii-border);
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(159, 79, 104, 0.05);
}

.sii-hero-visual {
  position: relative;
  min-height: 510px;
  isolation: isolate;
}

.sii-hero-slider {
  position: relative;
  height: 500px;
  overflow: hidden;
  border-radius: 44px;
  border: 10px solid rgba(255, 255, 255, 0.78);
  box-shadow: var(--sii-shadow-strong);
  background: var(--sii-pink-300);
}

.sii-hero-slider::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  background:
    radial-gradient(circle at 28% 16%, rgba(255, 255, 255, 0.38), transparent 190px),
    linear-gradient(180deg, rgba(58, 36, 48, 0.02) 35%, rgba(58, 36, 48, 0.55) 100%);
  pointer-events: none;
}

.sii-hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.06);
  transition: opacity 0.8s ease, transform 1.8s ease;
}

.sii-hero-slide.active {
  opacity: 1;
  transform: scale(1);
}

.sii-hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sii-hero-badge {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px;
  border-radius: 22px;
  color: #fff;
  background: rgba(159, 79, 104, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.20);
  backdrop-filter: blur(14px);
}

.sii-hero-badge strong {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 34px;
  line-height: 1;
}

.sii-hero-badge span {
  color: #fff7d9;
  font-size: 13px;
  font-weight: 900;
}

.sii-hero-dots {
  position: absolute;
  right: 28px;
  top: 28px;
  z-index: 6;
  display: flex;
  gap: 8px;
}

.sii-hero-dots button {
  width: 10px;
  height: 10px;
  padding: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.55);
  transition: width 0.24s ease, background 0.24s ease;
}

.sii-hero-dots button.active {
  width: 26px;
  border-radius: 999px;
  background: #fff;
}

.sii-floating-card {
  position: absolute;
  z-index: 8;
  width: 190px;
  padding: 16px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--sii-border);
  box-shadow: var(--sii-shadow-card);
  backdrop-filter: blur(12px);
}

.sii-floating-card span {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  margin-bottom: 9px;
  color: #fff;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sii-pink-800), var(--sii-gold));
  font-size: 12px;
  font-weight: 900;
}

.sii-floating-card strong {
  display: block;
  color: var(--sii-text);
  font-size: 15px;
}

.sii-floating-card small {
  display: block;
  margin-top: 2px;
  color: var(--sii-muted);
  font-size: 12px;
}

.sii-card-one {
  left: -24px;
  top: 68px;
}

.sii-card-two {
  right: -20px;
  bottom: 96px;
}

.sii-hero-benefits {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 36px;
  padding: 18px 20px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--sii-border);
  box-shadow: var(--sii-shadow-card);
  backdrop-filter: blur(14px);
}

.sii-hero-benefits div {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  column-gap: 14px;
  align-items: center;
  min-height: 78px;
  padding: 8px 16px;
  border-right: 1px solid var(--sii-border);
}

.sii-hero-benefits div:last-child {
  border-right: 0;
}

.sii-hero-benefits span {
  grid-row: span 2;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  color: #fff;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sii-pink-800), var(--sii-pink-600));
}

.sii-hero-benefits strong {
  color: var(--sii-text);
  font-size: 13px;
  line-height: 1.25;
}

.sii-hero-benefits p {
  margin: 3px 0 0;
  color: var(--sii-muted);
  font-size: 12px;
  line-height: 1.45;
}

.sii-section {
  padding: 84px 0;
}

.sii-about-grid,
.sii-booking-grid,
.sii-contact-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 58px;
  align-items: center;
}

.sii-about-image {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border-radius: 36px;
  background: var(--sii-pink-300);
  box-shadow: var(--sii-shadow-strong);
}

.sii-about-image::before {
  content: "";
  position: absolute;
  inset: 18px;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 28px;
  pointer-events: none;
}

.sii-about-image img {
  width: 100%;
  height: 430px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.sii-about-image:hover img {
  transform: scale(1.05);
}

.sii-about-content h2,
.sii-section-heading h2,
.sii-feature-box h2,
.sii-booking-content h2,
.sii-contact-content h2,
.sii-hours-box h2 {
  font-size: clamp(30px, 3.2vw, 46px);
}

.sii-about-content > p,
.sii-section-heading > p,
.sii-feature-box p,
.sii-booking-content > p,
.sii-contact-content > p {
  color: var(--sii-muted);
  font-size: 15px;
}

.sii-about-content > p {
  margin: 16px 0 0;
}

.sii-about-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin: 28px 0;
}

.sii-about-stats div {
  padding: 16px 10px;
  text-align: center;
  border-radius: 20px;
  background: #fff;
  border: 1px solid var(--sii-border);
  box-shadow: 0 12px 30px rgba(159, 79, 104, 0.075);
}

.sii-about-stats strong {
  display: block;
  color: var(--sii-pink-900);
  font-size: 27px;
  line-height: 1;
}

.sii-about-stats div:nth-child(1) strong::after,
.sii-about-stats div:nth-child(2) strong::after {
  content: "+";
  font-size: 14px;
}

.sii-about-stats span {
  display: block;
  margin-top: 8px;
  color: var(--sii-muted);
  font-size: 11px;
  font-weight: 800;
  line-height: 1.35;
}

.sii-about-list {
  display: grid;
  gap: 11px;
}

.sii-about-list div {
  display: grid;
  grid-template-columns: 32px 1fr;
  align-items: start;
  gap: 11px;
}

.sii-about-list span {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  color: #fff;
  border-radius: 50%;
  background: var(--sii-pink-800);
  font-weight: 900;
}

.sii-about-list p {
  margin: 3px 0 0;
  color: var(--sii-muted);
}

.sii-section-heading {
  max-width: 780px;
  margin: 0 auto 40px;
  text-align: center;
}

.sii-services-section {
  padding-top: 34px;
}

.sii-services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.sii-service-card,
.sii-price-card {
  overflow: hidden;
  border-radius: 28px;
  background: #fff;
  border: 1px solid var(--sii-border);
  box-shadow: var(--sii-shadow-soft);
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.sii-service-card:hover,
.sii-price-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--sii-shadow-card);
}

.sii-service-img {
  height: 210px;
  overflow: hidden;
  background: var(--sii-pink-300);
}

.sii-service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.sii-service-card:hover .sii-service-img img {
  transform: scale(1.07);
}

.sii-service-body {
  position: relative;
  padding: 30px 20px 23px;
  text-align: center;
}

.sii-service-body span {
  position: absolute;
  left: 50%;
  top: -26px;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  color: #fff;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sii-pink-800), var(--sii-pink-600));
  border: 5px solid #fff;
  transform: translateX(-50%);
  box-shadow: 0 12px 25px rgba(183, 103, 130, 0.2);
}

.sii-service-body h3 {
  margin: 0 0 9px;
  font-family: "Playfair Display", Georgia, serif;
  color: var(--sii-text);
  font-size: 24px;
  line-height: 1.1;
}

.sii-service-body p {
  min-height: 72px;
  margin: 0 0 14px;
  color: var(--sii-muted);
  font-size: 13px;
}

.sii-service-body a {
  color: var(--sii-pink-900);
  font-size: 13px;
  font-weight: 900;
}

.sii-service-body a::after {
  content: " →";
}

.sii-feature-section {
  padding: 18px 0 78px;
}

.sii-feature-box {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 36px;
  border-radius: 32px;
  color: #fff;
  background:
    radial-gradient(circle at 15% 20%, rgba(255, 255, 255, 0.20), transparent 260px),
    linear-gradient(135deg, var(--sii-pink-950), var(--sii-pink-700));
  box-shadow: var(--sii-shadow-strong);
}

.sii-feature-box h2,
.sii-feature-box p,
.sii-feature-box .sii-section-kicker {
  color: #fff;
}

.sii-feature-box p {
  max-width: 720px;
  margin: 15px 0 0;
  color: rgba(255, 255, 255, 0.86);
}

.sii-price-section {
  background:
    linear-gradient(180deg, transparent, rgba(248, 220, 230, 0.48), transparent);
}

.sii-price-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 28px;
}

.sii-price-tab {
  min-height: 43px;
  padding: 10px 18px;
  border-radius: 999px;
  color: var(--sii-muted);
  background: #fff;
  border: 1px solid var(--sii-border);
  font-weight: 900;
  transition: 0.22s ease;
}

.sii-price-tab:hover,
.sii-price-tab.active {
  color: #fff;
  background: linear-gradient(135deg, var(--sii-pink-800), var(--sii-pink-600));
  box-shadow: 0 12px 28px rgba(183, 103, 130, 0.18);
}

.sii-price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.sii-price-card {
  min-height: 270px;
  display: flex;
  flex-direction: column;
  padding: 24px;
}

.sii-price-card.hidden {
  display: none;
}

.sii-price-card.highlight {
  color: #fff;
  background:
    radial-gradient(circle at 90% 0%, rgba(255, 255, 255, 0.22), transparent 180px),
    linear-gradient(135deg, var(--sii-pink-800), var(--sii-pink-950));
}

.sii-price-card span {
  color: var(--sii-pink-900);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sii-price-card.highlight span {
  color: #fff7d9;
}

.sii-price-card h3 {
  margin: 10px 0 9px;
  font-family: "Playfair Display", Georgia, serif;
  color: var(--sii-text);
  font-size: 25px;
  line-height: 1.08;
}

.sii-price-card.highlight h3 {
  color: #fff;
}

.sii-price-card p {
  margin: 0 0 18px;
  color: var(--sii-muted);
  font-size: 13px;
}

.sii-price-card.highlight p {
  color: rgba(255, 255, 255, 0.86);
}

.sii-price-lines {
  display: grid;
  gap: 7px;
  margin-top: auto;
}

.sii-price-lines div {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  padding: 9px 0;
  border-bottom: 1px dashed rgba(183, 103, 130, 0.24);
}

.sii-price-lines div:last-child {
  border-bottom: 0;
}

.sii-price-card.highlight .sii-price-lines div {
  border-bottom-color: rgba(255, 255, 255, 0.24);
}

.sii-price-lines b {
  color: var(--sii-muted);
  font-size: 13px;
  font-weight: 800;
}

.sii-price-card.highlight .sii-price-lines b {
  color: rgba(255, 255, 255, 0.9);
}

.sii-price-lines strong {
  color: var(--sii-pink-900);
  font-size: 15px;
  text-align: right;
  white-space: nowrap;
}

.sii-price-card.highlight .sii-price-lines strong {
  color: #fff7d9;
}

.sii-menu-note {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px 16px;
  margin-top: 26px;
  padding: 16px 18px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid var(--sii-border);
  color: var(--sii-muted);
  box-shadow: var(--sii-shadow-soft);
  text-align: center;
}

.sii-menu-note strong {
  color: var(--sii-pink-900);
}

.sii-hours-section {
  padding-top: 0;
}

.sii-hours-box {
  display: grid;
  grid-template-columns: 0.8fr 1fr 0.7fr;
  gap: 24px;
  align-items: center;
  padding: 34px;
  border-radius: 32px;
  background: #fff;
  border: 1px solid var(--sii-border);
  box-shadow: var(--sii-shadow-card);
}

.sii-hours-list {
  display: grid;
  gap: 10px;
}

.sii-hours-list div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 10px;
  border-bottom: 1px dashed rgba(183, 103, 130, 0.24);
}

.sii-hours-list strong {
  color: var(--sii-text);
}

.sii-hours-list span {
  color: var(--sii-pink-900);
  font-weight: 900;
}

.sii-voucher {
  padding: 22px;
  border-radius: 24px;
  color: #fff;
  background: linear-gradient(135deg, var(--sii-pink-800), var(--sii-pink-600));
  text-align: center;
}

.sii-voucher strong {
  display: block;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 25px;
  line-height: 1.1;
}

.sii-voucher span {
  display: block;
  margin-top: 8px;
  opacity: 0.9;
  font-weight: 800;
}

.sii-gallery-section {
  padding-top: 50px;
}

.sii-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.sii-gallery-item {
  height: 260px;
  padding: 0;
  overflow: hidden;
  border-radius: 28px;
  background: #fff;
  border: 1px solid var(--sii-border);
  box-shadow: var(--sii-shadow-soft);
}

.sii-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.sii-gallery-item:hover img {
  transform: scale(1.08);
}

.sii-booking-section {
  background:
    radial-gradient(circle at 15% 10%, rgba(242, 191, 208, 0.45), transparent 360px),
    linear-gradient(180deg, #fff, #fff7fa);
}

.sii-booking-info,
.sii-contact-list {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.sii-booking-info a,
.sii-contact-list a {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 14px;
  align-items: center;
  padding: 16px;
  border-radius: 22px;
  background: #fff;
  border: 1px solid var(--sii-border);
  box-shadow: var(--sii-shadow-soft);
}

.sii-booking-info span,
.sii-contact-list span {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  color: #fff;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sii-pink-800), var(--sii-pink-600));
  font-weight: 900;
}

.sii-booking-info strong,
.sii-contact-list strong {
  display: block;
  color: var(--sii-text);
}

.sii-booking-info small,
.sii-contact-list small {
  display: block;
  color: var(--sii-muted);
  font-size: 13px;
  line-height: 1.45;
}

.sii-booking-form {
  padding: 30px;
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--sii-border);
  box-shadow: var(--sii-shadow-card);
}

.sii-form-row {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
}

.sii-form-row.two {
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.sii-form-row.two > div {
  display: grid;
  gap: 8px;
}

.sii-form-row label {
  color: var(--sii-text);
  font-size: 13px;
  font-weight: 900;
}

.sii-form-row input,
.sii-form-row select {
  width: 100%;
  min-height: 52px;
  padding: 12px 15px;
  border-radius: 16px;
  border: 1px solid var(--sii-border);
  background: #fff;
  color: var(--sii-text);
  outline: none;
  transition: 0.2s ease;
}

.sii-form-row input:focus,
.sii-form-row select:focus {
  border-color: var(--sii-pink-700);
  box-shadow: 0 0 0 4px rgba(242, 191, 208, 0.28);
}

.sii-form-submit {
  width: 100%;
  border: 0;
}

.sii-form-message {
  min-height: 22px;
  margin: 14px 0 0;
  color: var(--sii-pink-900);
  font-size: 13px;
  font-weight: 800;
  text-align: center;
}

.sii-contact-section {
  padding: 88px 0;
  color: #fff;
  background:
    radial-gradient(circle at 80% 10%, rgba(255, 255, 255, 0.16), transparent 340px),
    linear-gradient(135deg, var(--sii-pink-950), var(--sii-pink-700));
}

.sii-contact-content h2,
.sii-contact-content p,
.sii-contact-content .sii-section-kicker {
  color: #fff;
}

.sii-contact-list a {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.20);
  color: #fff;
}

.sii-contact-list span {
  background: #fff;
  color: var(--sii-pink-900);
}

.sii-contact-list strong,
.sii-contact-list small {
  color: #fff;
}

.sii-map-card {
  overflow: hidden;
  border-radius: 34px;
  background: #fff;
  color: var(--sii-text);
  box-shadow: var(--sii-shadow-strong);
}

.sii-map-card img {
  width: 100%;
  height: 310px;
  object-fit: cover;
}

.sii-map-card div {
  padding: 24px;
}

.sii-map-card h3 {
  margin: 0 0 8px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 30px;
  color: var(--sii-pink-900);
}

.sii-map-card p {
  margin: 0 0 18px;
  color: var(--sii-muted);
}

.sii-map-card a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 11px 18px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, var(--sii-pink-800), var(--sii-pink-600));
  font-size: 14px;
  font-weight: 900;
}

.sii-site-footer {
  padding: 62px 0 84px;
  background: #fff;
  color: var(--sii-muted);
}

.sii-footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr 1fr;
  gap: 40px;
}

.sii-footer-grid h3 {
  margin: 0 0 14px;
  color: var(--sii-text);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 24px;
}

.sii-footer-grid a,
.sii-footer-grid span {
  display: block;
  margin-bottom: 8px;
}

.sii-footer-grid p {
  max-width: 380px;
}

.sii-footer-bottom {
  margin-top: 36px;
  padding-top: 18px;
  border-top: 1px solid var(--sii-border);
  text-align: center;
  font-size: 13px;
}

.sii-lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 30px;
  background: rgba(58, 36, 48, 0.82);
}

.sii-lightbox.active {
  display: flex;
}

.sii-lightbox img {
  max-width: min(920px, 100%);
  max-height: 82vh;
  border-radius: 24px;
  box-shadow: var(--sii-shadow-strong);
}

.sii-lightbox-close {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  color: var(--sii-pink-900);
  background: #fff;
  font-size: 32px;
  line-height: 1;
}

.sii-toast {
  position: fixed;
  left: 50%;
  bottom: 92px;
  z-index: 9999;
  padding: 12px 18px;
  border-radius: 999px;
  color: #fff;
  background: var(--sii-pink-900);
  box-shadow: var(--sii-shadow-card);
  font-size: 13px;
  font-weight: 800;
  opacity: 0;
  transform: translate(-50%, 20px);
  pointer-events: none;
  transition: 0.25s ease;
}

.sii-toast.show {
  opacity: 1;
  transform: translate(-50%, 0);
}

.sii-live-toast {
  position: fixed;
  left: 22px;
  bottom: 118px;
  z-index: 9997;
  width: min(372px, calc(100% - 44px));
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 14px;
  align-items: center;
  padding: 16px 18px;
  border-radius: 22px;
  color: #fff;
  background:
    radial-gradient(circle at 16% 12%, rgba(255, 255, 255, 0.13), transparent 120px),
    linear-gradient(135deg, rgba(43, 24, 17, 0.98), rgba(24, 14, 10, 0.96));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 50px rgba(43, 24, 17, 0.35);
  opacity: 0;
  transform: translateY(24px) scale(0.98);
  pointer-events: none;
  transition: opacity 0.36s ease, transform 0.36s ease;
}

.sii-live-toast.show {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.sii-live-toast__icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 17px;
  background: linear-gradient(135deg, #b56b43, #8f4860);
}

.sii-live-toast__icon svg {
  width: 23px;
  height: 23px;
  fill: #fff;
}

.sii-live-toast__text strong {
  display: block;
  margin-bottom: 2px;
  font-size: 14px;
  font-weight: 900;
}

.sii-live-toast__text span {
  display: block;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.35;
}

.sii-live-toast__text b {
  color: #f7d59d;
}

.sii-promo-popup {
  position: fixed;
  inset: 0;
  z-index: 10001;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(58, 36, 48, 0.55);
  backdrop-filter: blur(7px);
}

.sii-promo-popup.active {
  display: flex;
}

.sii-promo-popup__box {
  position: relative;
  width: min(480px, 100%);
  padding: 34px;
  border-radius: 34px;
  text-align: center;
  background: #fff;
  box-shadow: var(--sii-shadow-strong);
}

.sii-promo-popup__box h2 {
  margin: 0 0 12px;
  font-family: "Playfair Display", Georgia, serif;
  color: var(--sii-pink-900);
  font-size: 40px;
  line-height: 1.05;
}

.sii-promo-popup__box p {
  color: var(--sii-muted);
}

.sii-promo-popup__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: var(--sii-pink-900);
  background: var(--sii-pink-100);
  font-size: 26px;
  line-height: 1;
}

.sii-mobile-bottom-nav {
  display: none;
}

.sii-reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.sii-reveal.show {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1120px) {
  .sii-services-grid,
  .sii-gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .sii-price-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .sii-hero-grid {
    grid-template-columns: 1fr;
  }

  .sii-hero-visual {
    min-height: auto;
  }
}

@media (max-width: 880px) {
  .sii-top-bar {
    display: none;
  }

  .sii-header-call {
    display: none;
  }

  .sii-menu-toggle {
    display: block;
  }

  .sii-main-nav {
    position: fixed;
    inset: var(--sii-header-height) 16px auto 16px;
    z-index: 999;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    border-radius: 24px;
    background: #fff;
    border: 1px solid var(--sii-border);
    box-shadow: var(--sii-shadow-card);
  }

  .sii-main-nav.active {
    display: flex;
  }

  .sii-main-nav a {
    justify-content: center;
  }

  .sii-hero {
    padding-top: 34px;
  }

  .sii-hero h1 {
    font-size: clamp(38px, 10vw, 58px);
  }

  .sii-hero-slider {
    height: 420px;
    border-radius: 34px;
  }

  .sii-floating-card {
    display: none;
  }

  .sii-hero-benefits {
    grid-template-columns: repeat(2, 1fr);
  }

  .sii-hero-benefits div {
    border-right: 0;
    border-bottom: 1px solid var(--sii-border);
  }

  .sii-about-grid,
  .sii-booking-grid,
  .sii-contact-grid,
  .sii-feature-box,
  .sii-hours-box {
    grid-template-columns: 1fr;
  }

  .sii-about-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .sii-services-grid,
  .sii-gallery-grid,
  .sii-price-grid,
  .sii-footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .sii-mobile-bottom-nav {
    position: fixed;
    left: 18px;
    right: 18px;
    bottom: 16px;
    z-index: 9998;
    display: grid;
    grid-template-columns: 1fr 1fr 76px 1fr 1fr;
    align-items: end;
    gap: 6px;
    padding: 10px 12px 10px;
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(183, 103, 130, 0.18);
    box-shadow: 0 20px 55px rgba(159, 79, 104, 0.22);
    backdrop-filter: blur(16px);
  }

  .sii-mobile-bottom-nav a {
    min-height: 58px;
    display: grid;
    place-items: center;
    gap: 4px;
    padding: 8px 4px;
    border-radius: 19px;
    color: #3e231d;
    font-size: 11px;
    font-weight: 900;
    line-height: 1;
    transition: 0.22s ease;
  }

  .sii-mobile-bottom-nav a svg {
    width: 22px;
    height: 22px;
    fill: currentColor;
  }

  .sii-mobile-bottom-nav a.active:not(.sii-mobile-call) {
    color: #fff;
    background: linear-gradient(135deg, var(--sii-pink-700), var(--sii-pink-600));
    box-shadow: 0 10px 22px rgba(183, 103, 130, 0.28);
  }

  .sii-mobile-bottom-nav .sii-mobile-call {
    width: 76px;
    height: 76px;
    min-height: 76px;
    margin: -32px auto 0;
    border-radius: 50%;
    color: #fff;
    background:
      radial-gradient(circle at 34% 22%, rgba(255,255,255,0.35), transparent 22px),
      linear-gradient(135deg, var(--sii-pink-900), var(--sii-pink-700));
    border: 6px solid #fff;
    box-shadow: 0 14px 34px rgba(143, 72, 96, 0.36);
  }

  .sii-mobile-bottom-nav .sii-mobile-call svg {
    width: 31px;
    height: 31px;
  }

  .sii-mobile-bottom-nav .sii-mobile-call span {
    display: none;
  }

  .sii-live-toast {
    left: 16px;
    right: 16px;
    bottom: 108px;
    width: auto;
    border-radius: 22px;
  }

  .sii-site-footer {
    padding-bottom: 120px;
  }
}

@media (max-width: 620px) {
  .sii-container {
    width: min(100% - 24px, var(--sii-container));
  }

  .sii-brand strong {
    font-size: 23px;
  }

  .sii-brand small {
    font-size: 10px;
  }

  .sii-hero-slider {
    height: 360px;
    border-width: 7px;
  }

  .sii-hero-badge {
    left: 14px;
    right: 14px;
    bottom: 14px;
    padding: 14px;
  }

  .sii-hero-badge strong {
    font-size: 28px;
  }

  .sii-hero-benefits,
  .sii-services-grid,
  .sii-gallery-grid,
  .sii-price-grid,
  .sii-footer-grid,
  .sii-form-row.two {
    grid-template-columns: 1fr;
  }

  .sii-section {
    padding: 64px 0;
  }

  .sii-gallery-item {
    height: 320px;
  }

  .sii-booking-form,
  .sii-feature-box,
  .sii-promo-popup__box,
  .sii-hours-box {
    padding: 24px;
    border-radius: 26px;
  }

  .sii-mobile-bottom-nav {
    left: 12px;
    right: 12px;
    bottom: 12px;
    grid-template-columns: 1fr 1fr 70px 1fr 1fr;
    padding: 8px 10px;
    border-radius: 22px;
  }

  .sii-mobile-bottom-nav a {
    min-height: 52px;
    border-radius: 16px;
    font-size: 10px;
  }

  .sii-mobile-bottom-nav a svg {
    width: 20px;
    height: 20px;
  }

  .sii-mobile-bottom-nav .sii-mobile-call {
    width: 70px;
    height: 70px;
    min-height: 70px;
    margin-top: -30px;
  }
}