:root {
  --brown-950: #1f120d;
  --brown-900: #2b1811;
  --brown-800: #42271d;
  --brown-700: #5d3a2b;
  --brown-600: #7b5541;

  --cream-50: #fffaf4;
  --cream-100: #fff4e9;
  --cream-200: #f6e4d2;

  --burgundy-900: #5f1621;
  --burgundy-800: #7b1f2d;
  --burgundy-700: #982b3b;
  --burgundy-600: #aa3345;

  --gold-600: #bd8c48;
  --gold-500: #d6a85f;
  --gold-300: #f4d7a2;

  --text: #2c1a13;
  --muted: #7f665a;
  --white: #ffffff;

  --border: rgba(123, 31, 45, 0.14);
  --shadow-soft: 0 14px 40px rgba(43, 24, 17, 0.09);
  --shadow-card: 0 20px 60px rgba(43, 24, 17, 0.14);
  --shadow-strong: 0 28px 90px rgba(43, 24, 17, 0.24);

  --container: 1180px;
  --header-height: 78px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: "Be Vietnam Pro", system-ui, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(123, 31, 45, 0.08), transparent 360px),
    radial-gradient(circle at top right, rgba(214, 168, 95, 0.14), transparent 420px),
    linear-gradient(180deg, #fffaf4 0%, #ffffff 44%, #fff4e9 100%);
  overflow-x: hidden;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.no-scroll {
  overflow: hidden;
}

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

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

button {
  border: 0;
  font: inherit;
  cursor: pointer;
}

.container {
  width: min(var(--container), calc(100% - 32px));
  margin-inline: auto;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99999;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--burgundy-800), var(--gold-500), var(--burgundy-700));
}

.top-bar {
  position: relative;
  z-index: 1002;
  color: rgba(255, 255, 255, 0.92);
  background: linear-gradient(90deg, var(--brown-950), var(--burgundy-900), var(--brown-900));
  font-size: 13px;
}

.top-bar-inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.top-left,
.top-right {
  display: flex;
  align-items: center;
  gap: 18px;
}

.top-left a,
.top-left span,
.top-right a {
  white-space: nowrap;
}

.top-left a:hover,
.top-right a:hover {
  color: var(--gold-300);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 250, 244, 0.9);
  border-bottom: 1px solid rgba(123, 31, 45, 0.1);
  backdrop-filter: blur(18px);
  transition: box-shadow 0.24s ease, background 0.24s ease;
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 12px 36px rgba(43, 24, 17, 0.1);
}

.header-inner {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.brand-logo,
.footer-logo {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  padding: 6px;
  border-radius: 18px;
  background:
    radial-gradient(circle at 35% 25%, rgba(244, 215, 162, 0.9), transparent 18px),
    linear-gradient(135deg, var(--burgundy-800), var(--brown-900));
  box-shadow: 0 14px 30px rgba(123, 31, 45, 0.2);
  overflow: hidden;
}

.brand-logo img,
.footer-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand strong,
.footer-brand strong {
  display: block;
  font-family: "Playfair Display", Georgia, serif;
  color: var(--brown-950);
  font-size: 28px;
  line-height: 1;
  letter-spacing: 0.035em;
}

.brand small {
  display: block;
  margin-top: 5px;
  color: var(--burgundy-800);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.105em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
}

.main-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  padding: 10px 12px;
  border-radius: 999px;
  color: var(--brown-700);
  font-size: 14px;
  font-weight: 800;
  transition: color 0.2s ease, background 0.2s ease;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 6px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--burgundy-800), var(--gold-500));
  transform: scaleX(0);
  transition: transform 0.22s ease;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--burgundy-800);
  background: rgba(123, 31, 45, 0.045);
}

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

.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(--burgundy-800), var(--burgundy-600));
  font-size: 14px;
  font-weight: 900;
  box-shadow: 0 14px 30px rgba(123, 31, 45, 0.25);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.header-call::before {
  content: "☎";
  margin-right: 8px;
}

.header-call:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 42px rgba(123, 31, 45, 0.32);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 10px;
  border-radius: 15px;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: 0 10px 26px rgba(43, 24, 17, 0.08);
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 6px 0;
  border-radius: 999px;
  background: var(--burgundy-800);
  transition: 0.24s ease;
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.hero {
  position: relative;
  padding: 58px 0 54px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255, 250, 244, 0.96), rgba(255, 255, 255, 0.86)),
    radial-gradient(circle at 85% 25%, rgba(123, 31, 45, 0.13), transparent 380px),
    radial-gradient(circle at 16% 68%, rgba(214, 168, 95, 0.14), transparent 360px);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background-image:
    linear-gradient(90deg, rgba(123, 31, 45, 0.12) 1px, transparent 1px),
    linear-gradient(rgba(123, 31, 45, 0.12) 1px, transparent 1px);
  background-size: 66px 66px;
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 120px;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.72));
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(14px);
  pointer-events: none;
}

.hero-glow-1 {
  width: 260px;
  height: 260px;
  left: -90px;
  top: 120px;
  background: rgba(123, 31, 45, 0.11);
}

.hero-glow-2 {
  width: 240px;
  height: 240px;
  right: 8%;
  bottom: 80px;
  background: rgba(214, 168, 95, 0.18);
}

.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;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 13px;
  color: var(--burgundy-800);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-kicker::before {
  content: "◆";
  color: var(--gold-600);
  font-size: 12px;
}

.section-kicker.center {
  display: flex;
  justify-content: center;
}

.hero h1,
.about-content h2,
.section-heading h2,
.feature-box h2,
.contact-content h2 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  color: var(--brown-950);
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 1.05;
}

.hero h1 {
  max-width: 640px;
  font-size: clamp(46px, 5.6vw, 76px);
}

.hero h1::first-letter {
  color: var(--burgundy-800);
}

.hero-content p:not(.section-kicker) {
  max-width: 600px;
  margin: 20px 0 28px;
  color: var(--muted);
  font-size: 16px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.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, border-color 0.22s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--burgundy-800), var(--burgundy-600));
  box-shadow: 0 16px 34px rgba(123, 31, 45, 0.26);
}

.btn-primary::before {
  content: "☎";
  margin-right: 8px;
}

.btn-outline {
  color: var(--burgundy-800);
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(123, 31, 45, 0.25);
  box-shadow: 0 12px 28px rgba(43, 24, 17, 0.06);
}

.btn-outline::before {
  content: "✦";
  margin-right: 8px;
  color: var(--gold-600);
}

.btn-outline:hover {
  border-color: rgba(123, 31, 45, 0.4);
  background: #fff;
}

.btn-light {
  color: var(--brown-950);
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.48);
}

.hero-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.hero-contact span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 14px;
  border-radius: 999px;
  color: var(--brown-800);
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(123, 31, 45, 0.12);
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(43, 24, 17, 0.05);
}

.hero-visual {
  position: relative;
  min-height: 510px;
  isolation: isolate;
}

.hero-slider {
  position: relative;
  height: 500px;
  overflow: hidden;
  border-radius: 44px;
  border: 10px solid rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-strong);
  background: var(--brown-900);
}

.hero-slider::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  background:
    radial-gradient(circle at 28% 16%, rgba(255, 255, 255, 0.36), transparent 190px),
    linear-gradient(180deg, rgba(43, 24, 17, 0.02) 35%, rgba(43, 24, 17, 0.78) 100%);
  pointer-events: none;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.06);
  transition: opacity 0.8s ease, transform 1.8s ease;
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1);
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.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(43, 24, 17, 0.74);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(14px);
}

.hero-badge strong {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 34px;
  line-height: 1;
}

.hero-badge span {
  color: var(--gold-300);
  font-size: 13px;
  font-weight: 900;
}

.hero-dots {
  position: absolute;
  right: 28px;
  top: 28px;
  z-index: 6;
  display: flex;
  gap: 8px;
}

.hero-dots button {
  width: 10px;
  height: 10px;
  padding: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  transition: width 0.24s ease, background 0.24s ease;
}

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

.floating-card {
  position: absolute;
  z-index: 8;
  width: 190px;
  padding: 16px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(123, 31, 45, 0.12);
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(12px);
}

.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(--burgundy-800), var(--gold-600));
  font-size: 12px;
  font-weight: 900;
}

.floating-card strong {
  display: block;
  color: var(--brown-950);
  font-size: 15px;
}

.floating-card small {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 12px;
}

.card-one {
  left: -24px;
  top: 68px;
}

.card-two {
  right: -20px;
  bottom: 96px;
}

.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 rgba(123, 31, 45, 0.12);
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(14px);
}

.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 rgba(123, 31, 45, 0.11);
}

.hero-benefits div:last-child {
  border-right: 0;
}

.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(--burgundy-800), var(--brown-900));
  box-shadow: 0 10px 22px rgba(123, 31, 45, 0.18);
}

.hero-benefits strong {
  color: var(--brown-950);
  font-size: 13px;
  line-height: 1.25;
}

.hero-benefits p {
  margin: 3px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.section {
  padding: 84px 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 58px;
  align-items: center;
}

.about-image {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border-radius: 36px;
  background: var(--cream-200);
  box-shadow: var(--shadow-strong);
}

.about-image::before {
  content: "";
  position: absolute;
  inset: 18px;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.56);
  border-radius: 28px;
  pointer-events: none;
}

.about-image img {
  width: 100%;
  height: 430px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.about-image:hover img {
  transform: scale(1.05);
}

.about-content h2,
.section-heading h2,
.feature-box h2,
.contact-content h2 {
  font-size: clamp(30px, 3.2vw, 46px);
}

.about-content > p,
.section-heading > p,
.feature-box p,
.contact-content > p {
  color: var(--muted);
  font-size: 15px;
}

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

.about-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin: 28px 0;
}

.about-stats div {
  padding: 16px 10px;
  text-align: center;
  border-radius: 20px;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: 0 12px 30px rgba(43, 24, 17, 0.075);
}

.about-stats strong {
  display: block;
  color: var(--burgundy-800);
  font-size: 27px;
  line-height: 1;
}

.about-stats div:nth-child(2) strong::after,
.about-stats div:nth-child(3) strong::after {
  content: "+";
  font-size: 14px;
}

.about-stats div:nth-child(4) strong::after {
  content: "%";
  font-size: 14px;
}

.about-stats span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  line-height: 1.35;
}

.about-list {
  display: grid;
  gap: 11px;
}

.about-list div {
  display: grid;
  grid-template-columns: 32px 1fr;
  align-items: start;
  gap: 11px;
}

.about-list span {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  color: #fff;
  border-radius: 50%;
  background: var(--burgundy-800);
  font-weight: 900;
}

.about-list p {
  margin: 3px 0 0;
  color: var(--brown-700);
}

.section-heading {
  max-width: 780px;
  margin: 0 auto 40px;
  text-align: center;
}

.services-section {
  padding-top: 34px;
}

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

.service-card {
  overflow: hidden;
  border-radius: 28px;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.service-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-card);
}

.service-img {
  height: 210px;
  overflow: hidden;
  background: var(--cream-200);
}

.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.service-card:hover .service-img img {
  transform: scale(1.07);
}

.service-body {
  position: relative;
  padding: 30px 20px 23px;
  text-align: center;
}

.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(--burgundy-800), var(--brown-900));
  border: 5px solid #fff;
  transform: translateX(-50%);
  box-shadow: 0 12px 25px rgba(123, 31, 45, 0.2);
}

.service-body h3 {
  margin: 0 0 9px;
  font-family: "Playfair Display", Georgia, serif;
  color: var(--brown-950);
  font-size: 24px;
  line-height: 1.1;
}

.service-body p {
  min-height: 72px;
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 13px;
}

.service-body a {
  color: var(--burgundy-800);
  font-size: 13px;
  font-weight: 900;
}

.service-body a::after {
  content: " →";
}

.feature-section {
  padding: 18px 0 78px;
}

.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(244, 215, 162, 0.18), transparent 260px),
    linear-gradient(135deg, var(--brown-950), var(--burgundy-900));
  box-shadow: var(--shadow-strong);
}

.feature-box h2,
.feature-box p,
.feature-box .section-kicker {
  color: #fff;
}

.feature-box p {
  max-width: 720px;
  margin: 15px 0 0;
  color: rgba(255, 255, 255, 0.78);
}

.feature-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.price-section {
  background:
    linear-gradient(180deg, transparent, rgba(214, 180, 141, 0.16), transparent);
}

.price-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 28px;
}

.price-tab {
  min-height: 43px;
  padding: 10px 18px;
  border-radius: 999px;
  color: var(--brown-700);
  background: #fff;
  border: 1px solid rgba(123, 31, 45, 0.18);
  font-weight: 900;
  transition: 0.22s ease;
}

.price-tab:hover,
.price-tab.active {
  color: #fff;
  background: linear-gradient(135deg, var(--burgundy-800), var(--brown-900));
  box-shadow: 0 12px 28px rgba(123, 31, 45, 0.18);
}

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

.price-card {
  min-height: 292px;
  display: flex;
  flex-direction: column;
  padding: 24px;
  border-radius: 28px;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.price-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-card);
}

.price-card.hidden {
  display: none;
}

.price-card.highlight {
  color: #fff;
  background:
    radial-gradient(circle at 90% 0%, rgba(244, 215, 162, 0.2), transparent 180px),
    linear-gradient(135deg, var(--burgundy-800), var(--brown-950));
}

.price-card span {
  color: var(--burgundy-800);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.price-card.highlight span {
  color: var(--gold-300);
}

.price-card h3 {
  margin: 10px 0 9px;
  font-family: "Playfair Display", Georgia, serif;
  color: var(--brown-950);
  font-size: 25px;
  line-height: 1.08;
}

.price-card.highlight h3 {
  color: #fff;
}

.price-card p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 13px;
}

.price-card.highlight p {
  color: rgba(255, 255, 255, 0.76);
}

.price-lines {
  display: grid;
  gap: 7px;
  margin-top: auto;
}

.price-lines div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 9px 0;
  border-bottom: 1px dashed rgba(123, 31, 45, 0.2);
}

.price-lines div:last-child {
  border-bottom: 0;
}

.price-card.highlight .price-lines div {
  border-bottom-color: rgba(255, 255, 255, 0.22);
}

.price-lines b {
  color: var(--brown-700);
  font-size: 13px;
}

.price-card.highlight .price-lines b {
  color: rgba(255, 255, 255, 0.86);
}

.price-lines strong {
  color: var(--burgundy-800);
  font-size: 15px;
  text-align: right;
}

.price-card.highlight .price-lines strong {
  color: var(--gold-300);
}

.night-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(--border);
  color: var(--brown-700);
  box-shadow: var(--shadow-soft);
}

.night-note strong {
  color: var(--burgundy-800);
}

.night-note span {
  font-size: 13px;
  font-weight: 800;
}

.gallery-section {
  padding-top: 50px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.gallery-item {
  height: 260px;
  padding: 0;
  overflow: hidden;
  border-radius: 28px;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.42s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.contact-section {
  padding: 42px 0 82px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 34px;
  align-items: stretch;
}

.contact-content,
.contact-card {
  padding: 36px;
  border-radius: 34px;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
}

.contact-content > p {
  max-width: 660px;
}

.contact-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 25px;
}

.contact-list a,
.copy-kakao {
  width: 100%;
  min-height: 88px;
  display: grid;
  grid-template-columns: 48px 1fr;
  align-items: center;
  gap: 13px;
  padding: 16px;
  border-radius: 22px;
  text-align: left;
  background: var(--cream-50);
  border: 1px solid rgba(123, 31, 45, 0.12);
  transition: transform 0.22s ease, background 0.22s ease, box-shadow 0.22s ease;
}

.contact-list a:hover,
.copy-kakao:hover {
  transform: translateY(-3px);
  background: #fff1e6;
  box-shadow: 0 14px 34px rgba(43, 24, 17, 0.08);
}

.contact-list span,
.copy-kakao span {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  color: #fff;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--burgundy-800), var(--brown-900));
}

.contact-list strong,
.copy-kakao strong {
  display: block;
  color: var(--brown-950);
  font-size: 14px;
}

.contact-list small,
.copy-kakao small {
  display: block;
  color: var(--muted);
  font-size: 12px;
  word-break: break-word;
}

.map-card {
  min-height: 330px;
  display: grid;
  align-content: end;
  padding: 28px;
  border-radius: 28px;
  color: #fff;
  background:
    linear-gradient(180deg, rgba(43, 24, 17, 0.08), rgba(43, 24, 17, 0.78)),
    url("https://images.unsplash.com/photo-1559599189-fe84dea4eb79?auto=format&fit=crop&w=1000&q=85") center/cover;
  overflow: hidden;
}

.map-card span {
  color: var(--gold-300);
  font-weight: 900;
}

.map-card strong {
  display: block;
  margin: 6px 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 36px;
  line-height: 1;
}

.map-card p {
  margin: 0 0 16px;
  color: rgba(255, 255, 255, 0.84);
}

.map-card a {
  width: fit-content;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 10px 16px;
  border-radius: 999px;
  color: var(--brown-950);
  background: #fff;
  font-weight: 900;
}

.open-time {
  margin-top: 16px;
  padding: 19px;
  border-radius: 24px;
  background: var(--cream-50);
  border: 1px solid rgba(123, 31, 45, 0.12);
}

.open-time strong {
  color: var(--burgundy-800);
}

.open-time p {
  margin: 5px 0 0;
  color: var(--muted);
}

.site-footer {
  padding: 50px 0 0;
  color: #fff;
  background:
    radial-gradient(circle at 90% 0%, rgba(123, 31, 45, 0.22), transparent 300px),
    var(--brown-950);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.8fr 0.85fr 1.15fr;
  gap: 34px;
  padding-bottom: 38px;
}

.footer-brand {
  margin-bottom: 16px;
}

.footer-brand strong {
  color: #fff;
}

.site-footer p {
  margin: 0 0 8px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
}

.site-footer h3 {
  margin: 0 0 14px;
  color: var(--gold-300);
  font-size: 16px;
}

.site-footer a {
  display: block;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
}

.site-footer a:hover {
  color: #fff;
}

.footer-bottom {
  padding: 17px;
  text-align: center;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.mobile-bottom-nav {
  display: none;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 5000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(31, 18, 13, 0.88);
  backdrop-filter: blur(8px);
}

.lightbox.active {
  display: flex;
}

.lightbox img {
  max-width: min(92vw, 880px);
  max-height: 88vh;
  object-fit: contain;
  border-radius: 24px;
}

.lightbox-close {
  position: absolute;
  top: 22px;
  right: 24px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  color: #fff;
  background: var(--burgundy-800);
  font-size: 32px;
  line-height: 1;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  z-index: 6000;
  width: min(430px, calc(100% - 32px));
  padding: 15px 18px;
  border-radius: 16px;
  color: #fff;
  background: linear-gradient(135deg, var(--burgundy-800), var(--brown-950));
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.24);
  text-align: center;
  font-weight: 900;
  opacity: 0;
  transform: translate(-50%, 120px);
  transition: 0.28s ease;
}

.toast.show {
  opacity: 1;
  transform: translate(-50%, 0);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1180px) {
  .top-bar-inner,
  .top-left {
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero-grid,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-content {
    max-width: 820px;
  }

  .hero-visual {
    width: min(100%, 720px);
    min-height: auto;
    margin-inline: auto;
  }

  .hero-benefits,
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-benefits div:nth-child(2) {
    border-right: 0;
  }

  .hero-benefits div:nth-child(1),
  .hero-benefits div:nth-child(2) {
    border-bottom: 1px solid rgba(123, 31, 45, 0.11);
  }

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

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

  .feature-box {
    grid-template-columns: 1fr;
  }

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

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

  .header-call {
    display: none;
  }

  .menu-toggle {
    display: block;
    position: relative;
    z-index: 1002;
  }

  .main-nav {
    position: fixed;
    top: 92px;
    left: 16px;
    right: 16px;
    z-index: 1001;
    display: grid;
    gap: 8px;
    padding: 16px;
    border-radius: 22px;
    background: #fff;
    border: 1px solid rgba(123, 31, 45, 0.16);
    box-shadow: var(--shadow-strong);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    pointer-events: none;
    transition: 0.24s ease;
  }

  .main-nav.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }

  .main-nav a {
    justify-content: flex-start;
    min-height: 46px;
    padding: 12px 14px;
    border-radius: 14px;
    background: var(--cream-50);
  }

  .main-nav a::after {
    display: none;
  }

  .header-inner {
    min-height: 82px;
  }

  .hero {
    padding-top: 42px;
  }

  .hero-slider {
    height: 440px;
    border-radius: 36px;
  }

  .card-one {
    left: 14px;
    top: 22px;
  }

  .card-two {
    right: 14px;
    bottom: 84px;
  }

  .about-stats,
  .contact-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 680px) {
  body {
    padding-bottom: 92px;
  }

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

  .brand-logo {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    padding: 5px;
  }

  .brand strong {
    font-size: 22px;
  }

  .brand small {
    display: none;
  }

  .hero {
    padding: 34px 0 42px;
  }

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

  .hero-content p:not(.section-kicker) {
    font-size: 15px;
  }

  .hero-actions,
  .feature-actions {
    display: grid;
  }

  .btn {
    width: 100%;
    min-height: 50px;
  }

  .hero-slider {
    height: 390px;
    border-radius: 30px;
    border-width: 7px;
  }

  .hero-badge {
    left: 14px;
    right: 14px;
    bottom: 14px;
    display: grid;
    padding: 16px;
  }

  .hero-badge strong {
    font-size: 30px;
  }

  .floating-card {
    position: static;
    width: 100%;
    margin-top: 12px;
  }

  .hero-benefits,
  .services-grid,
  .price-grid,
  .gallery-grid,
  .footer-grid,
  .about-stats,
  .contact-list {
    grid-template-columns: 1fr;
  }

  .hero-benefits {
    padding: 12px;
    border-radius: 24px;
  }

  .hero-benefits div {
    border-right: 0;
    border-bottom: 1px solid rgba(123, 31, 45, 0.11);
  }

  .hero-benefits div:last-child {
    border-bottom: 0;
  }

  .section {
    padding: 62px 0;
  }

  .about-image,
  .about-image img {
    min-height: auto;
    height: 330px;
  }

  .service-body p {
    min-height: auto;
  }

  .feature-box,
  .contact-content,
  .contact-card {
    padding: 22px;
    border-radius: 26px;
  }

  .map-card {
    min-height: 290px;
    padding: 22px;
  }

  .map-card strong {
    font-size: 31px;
  }

  .gallery-item {
    height: 230px;
  }

  .price-card {
    min-height: auto;
  }

  .night-note {
    align-items: flex-start;
    justify-content: flex-start;
  }

  .mobile-bottom-nav {
    position: fixed;
    left: 14px;
    right: 14px;
    bottom: 12px;
    z-index: 1500;
    height: 76px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    align-items: center;
    gap: 0;
    padding: 8px 10px;
    border-radius: 22px;
    overflow: visible;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(123, 31, 45, 0.16);
    box-shadow: 0 18px 50px rgba(43, 24, 17, 0.2);
    backdrop-filter: blur(16px);
  }

  .mobile-nav-item,
  .mobile-nav-center {
    width: 100%;
    height: 60px;
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-direction: column;
    gap: 5px;
    padding: 8px 2px 7px;
    margin: 0;
    border-radius: 16px;
    color: #3b251c;
    font-size: 10.5px;
    font-weight: 900;
    line-height: 1;
    text-align: center;
    transition: color 0.2s ease, transform 0.2s ease, background 0.2s ease;
  }

  .mobile-nav-item svg {
    width: 22px;
    height: 22px;
    display: block;
    margin: 0 auto;
    flex: 0 0 auto;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .mobile-nav-item svg path {
    fill: none;
  }

  .mobile-nav-item span,
  .mobile-nav-center > span:last-child {
    display: block;
    width: 100%;
    margin: 0;
    padding: 0;
    text-align: center;
    white-space: nowrap;
  }

  .mobile-nav-item:hover,
  .mobile-nav-item.active {
    color: var(--burgundy-800);
    background: rgba(123, 31, 45, 0.06);
  }

  .mobile-nav-center {
    position: relative;
    justify-content: flex-end;
    padding-top: 33px;
    padding-bottom: 7px;
    color: var(--brown-950);
    background: transparent;
  }

  .mobile-center-icon {
    position: absolute;
    left: 50%;
    top: -28px;
    transform: translateX(-50%);
    width: 62px;
    height: 62px;
    display: grid;
    place-items: center;
    margin: 0;
    padding: 0;
    border-radius: 50%;
    color: #fff;
    background:
      radial-gradient(circle at 32% 24%, rgba(255, 255, 255, 0.36), transparent 18px),
      linear-gradient(135deg, var(--burgundy-800), var(--burgundy-600));
    border: 5px solid #fff;
    box-shadow:
      0 16px 34px rgba(123, 31, 45, 0.28),
      0 0 0 1px rgba(123, 31, 45, 0.1);
  }

  .mobile-center-icon svg {
    width: 28px;
    height: 28px;
    display: block;
    fill: currentColor;
    margin: 0;
  }

  .mobile-nav-center > span:last-child {
    font-size: 10.5px;
    font-weight: 900;
    color: var(--brown-950);
  }

  .mobile-bottom-nav a:active {
    transform: scale(0.96);
  }

  .site-footer {
    padding-bottom: 102px;
  }
}

@media (max-width: 420px) {
  .hero h1 {
    font-size: 37px;
  }

  .hero-slider {
    height: 340px;
  }

  .hero-contact span {
    width: 100%;
    justify-content: center;
  }

  .price-lines div {
    align-items: flex-start;
    flex-direction: column;
    gap: 3px;
  }

  .price-lines strong {
    text-align: left;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* ===== LOGO CLEAN STYLE - REMOVE LOGO BOX ===== */
.brand-logo,
.footer-logo {
  width: 78px !important;
  height: 58px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0 !important;
  margin: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  overflow: visible !important;
  flex-shrink: 0 !important;
}

.brand-logo img,
.footer-logo img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  display: block !important;
  filter: none !important;
}

.brand {
  gap: 12px !important;
}

.footer-brand {
  gap: 12px !important;
}

@media (max-width: 680px) {
  .brand-logo {
    width: 58px !important;
    height: 46px !important;
    padding: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
  }

  .footer-logo {
    width: 62px !important;
    height: 48px !important;
    padding: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
  }

  .brand {
    gap: 9px !important;
  }

  .brand strong {
    font-size: 21px !important;
  }
}


/* =========================================================
   FIX PRICE CARD LAYOUT - MASONRY / NO EMPTY GAPS
   Paste this at the END of style.css
========================================================= */

/* Desktop: masonry layout, cards tự dồn lên theo chiều cao thật */
.price-grid {
  display: block !important;
  column-count: 3 !important;
  column-gap: 18px !important;
}

/* Card không còn ép chiều cao bằng nhau */
.price-card {
  display: inline-block !important;
  width: 100% !important;
  min-height: 0 !important;
  height: auto !important;
  margin: 0 0 18px !important;
  break-inside: avoid !important;
  page-break-inside: avoid !important;
  vertical-align: top !important;
}

/* Khi filter tab thì vẫn ẩn đúng */
.price-card.hidden {
  display: none !important;
}

/* Bỏ kiểu đẩy giá xuống cuối card gây khoảng trắng */
.price-lines {
  margin-top: 18px !important;
}

/* Nội dung card gọn hơn, không bị thưa */
.price-card p {
  margin-bottom: 12px !important;
}

/* Dòng giá canh đẹp hơn */
.price-lines div {
  align-items: flex-start !important;
  gap: 12px !important;
}

.price-lines b {
  max-width: 58% !important;
  line-height: 1.35 !important;
}

.price-lines strong {
  flex-shrink: 0 !important;
  line-height: 1.35 !important;
}

/* Tablet: 2 cột */
@media (max-width: 1180px) {
  .price-grid {
    column-count: 2 !important;
    column-gap: 18px !important;
  }
}

/* Mobile: 1 cột */
@media (max-width: 680px) {
  .price-grid {
    column-count: 1 !important;
  }

  .price-card {
    margin-bottom: 16px !important;
    border-radius: 24px !important;
  }

  .price-lines div {
    flex-direction: row !important;
    align-items: flex-start !important;
  }

  .price-lines b {
    max-width: 56% !important;
  }

  .price-lines strong {
    text-align: right !important;
  }
}

/* Màn rất nhỏ: giá xuống dòng để không vỡ layout */
@media (max-width: 420px) {
  .price-lines div {
    flex-direction: column !important;
    gap: 4px !important;
  }

  .price-lines b,
  .price-lines strong {
    max-width: 100% !important;
    text-align: left !important;
  }
}


.promo-popup {
  position: fixed;
  inset: 0;
  z-index: 100000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(31, 18, 13, 0.62);
  backdrop-filter: blur(8px);
}

.promo-popup.show {
  display: flex;
}

.promo-popup__box {
  position: relative;
  width: min(430px, 100%);
  padding: 34px 26px 28px;
  border-radius: 30px;
  text-align: center;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(244, 215, 162, 0.45), transparent 180px),
    linear-gradient(180deg, #fffaf4, #ffffff);
  border: 1px solid rgba(123, 31, 45, 0.18);
  box-shadow: 0 30px 90px rgba(31, 18, 13, 0.34);
  animation: promoZoom 0.35s ease;
}

.promo-popup__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--burgundy-800), var(--brown-900));
  font-size: 28px;
  line-height: 1;
}

.promo-popup__kicker {
  margin: 0 0 10px;
  color: var(--burgundy-800);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.promo-popup h2 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  color: var(--brown-950);
  font-size: clamp(32px, 6vw, 46px);
  line-height: 1.05;
}


.promo-popup p:not(.promo-popup__kicker) {
  margin: 16px 0 22px;
  color: var(--muted);
  font-size: 15px;
}

.promo-popup__btn {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, var(--burgundy-800), var(--burgundy-600));
  font-weight: 900;
  box-shadow: 0 16px 34px rgba(123, 31, 45, 0.26);
}

@keyframes promoZoom {
  from {
    opacity: 0;
    transform: scale(0.92) translateY(14px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}


/* =========================
   RUBY SPA ABOUT SLIDER
========================= */

.about-image {
  position: relative;
  min-height: 430px;
  height: 430px;
  overflow: hidden;
  border-radius: 36px;
  background: var(--cream-200);
  box-shadow: var(--shadow-strong);
}

.about-image::before {
  content: "";
  position: absolute;
  inset: 18px;
  z-index: 7;
  border: 1px solid rgba(255, 255, 255, 0.56);
  border-radius: 28px;
  pointer-events: none;
}

/* tắt hiệu ứng hover ảnh cũ để slider không bị giật */
.about-image:hover img {
  transform: none;
}

.about-spa-slider {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: inherit;
  background: var(--brown-900);
}

.about-spa-slide {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0;
  visibility: hidden;
  transform: translateX(100%);
  transition:
    opacity 0.65s ease,
    visibility 0.65s ease,
    transform 0.65s ease;
}

.about-spa-slide.active {
  z-index: 3;
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.about-spa-slide.prev {
  z-index: 2;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-100%);
}

.about-spa-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transform: none !important;
}

/* Nút chuyển ảnh */
.about-spa-nav {
  position: absolute;
  top: 50%;
  z-index: 10;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  transform: translateY(-50%);
  color: #fff;
  background: rgba(43, 24, 17, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
  font-size: 30px;
  line-height: 1;
  transition: 0.24s ease;
}

.about-spa-nav:hover {
  background: rgba(123, 31, 45, 0.86);
}

.about-spa-prev {
  left: 16px;
}

.about-spa-next {
  right: 16px;
}

/* Dots */
.about-spa-dots {
  position: absolute;
  left: 50%;
  bottom: 18px;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(43, 24, 17, 0.38);
  backdrop-filter: blur(10px);
  transform: translateX(-50%);
}

.about-spa-dots button {
  width: 10px;
  height: 10px;
  padding: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.48);
  transition: width 0.24s ease, background 0.24s ease;
}

.about-spa-dots button.active {
  width: 28px;
  background: #fff;
}

/* Tablet */
@media (max-width: 991px) {
  .about-image {
    min-height: 360px;
    height: 360px;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .about-image {
    min-height: 300px;
    height: 300px;
    border-radius: 24px;
  }

  .about-image::before {
    inset: 12px;
    border-radius: 18px;
  }

  .about-spa-nav {
    width: 38px;
    height: 38px;
    font-size: 26px;
  }

  .about-spa-prev {
    left: 10px;
  }

  .about-spa-next {
    right: 10px;
  }

  .about-spa-dots {
    bottom: 12px;
    gap: 6px;
    padding: 6px 10px;
  }

  .about-spa-dots button {
    width: 8px;
    height: 8px;
  }

  .about-spa-dots button.active {
    width: 22px;
  }
}