:root {
  --bg: #fff8f7;
  --surface: rgba(255, 255, 255, 0.82);
  --text: #2f1f2d;
  --muted: #6f5b68;
  --primary: #d65980;
  --primary-deep: #a5315b;
  --accent: #1b1423;
  --accent-soft: #f7d4dd;
  --gold: #e1bb6b;
  --shadow: 0 18px 50px rgba(107, 32, 66, 0.14);
  --radius-lg: 28px;
  --container: 1180px;
  --page-bg-image: url("https://images.pexels.com/photos/4662170/pexels-photo-4662170.jpeg?auto=compress&cs=tinysrgb&w=1800");
  --hero-image: url("https://images.pexels.com/photos/4662168/pexels-photo-4662168.jpeg?auto=compress&cs=tinysrgb&w=1600");
  --gallery-nail-image: url("https://images.pexels.com/photos/11518667/pexels-photo-11518667.jpeg?auto=compress&cs=tinysrgb&w=1200");
  --gallery-process-image: url("https://images.pexels.com/photos/9775261/pexels-photo-9775261.jpeg?auto=compress&cs=tinysrgb&w=1200");
  --gallery-tattoo-image: url("https://images.pexels.com/photos/4662171/pexels-photo-4662171.jpeg?auto=compress&cs=tinysrgb&w=1200");
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", sans-serif;
  color: var(--text);
  background: #170f18;
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, textarea, select { font: inherit; }
.container { width: min(calc(100% - 32px), var(--container)); margin: 0 auto; }
.section { padding: 72px 0; }
.section-title { display: grid; gap: 12px; margin-bottom: 30px; }
.eyebrow {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(214, 89, 128, 0.1);
  color: var(--primary-deep);
  font-size: 0.9rem;
  font-weight: 700;
}
.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--primary);
  box-shadow: 0 0 0 6px rgba(214, 89, 128, 0.12);
}
h1, h2, h3 { line-height: 1.15; margin: 0; color: var(--accent); }
h1 { font-size: clamp(2.4rem, 6vw, 4.6rem); letter-spacing: -0.04em; }
h2 { font-size: clamp(1.9rem, 3vw, 3rem); letter-spacing: -0.03em; }
h3 { font-size: 1.15rem; }
p { margin: 0; color: var(--muted); }
.site-shell {
  position: relative;
  isolation: isolate;
  overflow: clip;
}
.site-shell::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(180deg, rgba(255, 247, 245, 0.82), rgba(255, 250, 248, 0.74)),
    radial-gradient(circle at top left, rgba(214, 89, 128, 0.22), transparent 34%),
    radial-gradient(circle at bottom right, rgba(225, 187, 107, 0.14), transparent 28%),
    var(--page-bg-image) center center / cover no-repeat;
  transform: scale(1.04);
}
.site-shell::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(255, 248, 247, 0.08), rgba(255, 248, 247, 0.02)),
    repeating-linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.015) 0,
      rgba(255, 255, 255, 0.015) 2px,
      transparent 2px,
      transparent 12px
    );
  pointer-events: none;
}
.topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(18px);
  background: rgba(255, 248, 247, 0.72);
  border-bottom: 1px solid rgba(47, 31, 45, 0.08);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 0;
}
.brand { display: flex; align-items: center; gap: 12px; min-width: 0; }
.brand-mark {
  width: 48px;
  height: 48px;
  border-radius: 18px;
  object-fit: cover;
  box-shadow: var(--shadow);
  flex-shrink: 0;
}
.brand-text strong, .brand-text span {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.brand-text strong { font-size: 1rem; color: var(--accent); }
.brand-text span { font-size: 0.86rem; color: var(--muted); }
.nav-links { display: none; align-items: center; gap: 18px; color: var(--muted); font-size: 0.95rem; font-weight: 600; }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  cursor: pointer;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  padding: 14px 22px;
  text-align: center;
}
.btn:hover, .btn:focus-visible { transform: translateY(-2px); }
.btn-primary { color: #fff; background: linear-gradient(135deg, var(--primary), var(--primary-deep)); box-shadow: 0 16px 30px rgba(166, 46, 92, 0.25); }
.btn-secondary { color: var(--accent); background: rgba(255, 255, 255, 0.72); border: 1px solid rgba(47, 31, 45, 0.08); }
.btn-ghost { color: var(--primary-deep); background: rgba(214, 89, 128, 0.1); }
.hero { padding: 34px 0 40px; }
.hero-grid { display: grid; gap: 26px; align-items: center; }
.hero-copy { display: grid; gap: 16px; }
.hero-copy p { font-size: 1.04rem; max-width: 520px; }
.highlight-card, .glass-card, .service-card, .review-card, .price-card, .faq-item, .info-card, .contact-card, .gallery-card {
  background: var(--surface);
  border: 1px solid rgba(47, 31, 45, 0.08);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
  border-radius: var(--radius-lg);
}
.highlight-card { padding: 18px; }
.highlight-card strong { display: block; font-size: 1.4rem; color: var(--primary-deep); margin-bottom: 4px; }
.hero-visual {
  position: relative;
  min-height: 420px;
  padding: 14px;
  border-radius: 32px;
  background: linear-gradient(160deg, rgba(49, 26, 44, 0.92), rgba(112, 52, 83, 0.88));
  box-shadow: 0 24px 48px rgba(58, 16, 38, 0.2);
  overflow: hidden;
}
.hero-visual::before, .hero-visual::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  filter: blur(6px);
}
.hero-visual::before { width: 180px; height: 180px; background: rgba(255, 214, 227, 0.16); top: -38px; right: -32px; }
.hero-visual::after { width: 220px; height: 220px; background: rgba(225, 187, 107, 0.12); left: -64px; bottom: -58px; }
.visual-main { position: relative; z-index: 1; height: 100%; }
.visual-large {
  min-height: 392px;
  border-radius: 28px;
  overflow: hidden;
  position: relative;
  background: linear-gradient(180deg, rgba(22, 13, 24, 0.1), rgba(22, 13, 24, 0.42)), var(--hero-image);
  background-size: cover;
  background-position: center center;
  display: flex;
  align-items: end;
  padding: 22px;
}
.visual-overlay {
  display: grid;
  gap: 8px;
  max-width: 280px;
  padding: 14px 16px;
  border-radius: 22px;
  background: rgba(34, 20, 33, 0.42);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(10px);
  color: #fff;
}
.visual-overlay span {
  width: fit-content;
  background: rgba(255, 255, 255, 0.16);
  padding: 7px 11px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
}
.visual-overlay p {
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.98rem;
  font-weight: 600;
}
.glass-card {
  padding: 18px;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
}
.glass-card strong { display: block; margin-bottom: 6px; font-size: 1rem; }
.why-grid, .services-grid, .price-grid, .reviews-grid, .contact-grid, .footer-grid { display: grid; gap: 18px; }
.why-grid { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.info-card { padding: 24px; }
.info-card strong { display: block; margin-bottom: 10px; font-size: 1.08rem; color: var(--accent); }
.services-grid { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.service-card { padding: 24px; position: relative; overflow: hidden; }
.service-card::after {
  content: "";
  position: absolute;
  inset: auto -40px -70px auto;
  width: 140px;
  height: 140px;
  border-radius: 999px;
  background: rgba(214, 89, 128, 0.08);
}
.service-icon {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(214, 89, 128, 0.18), rgba(225, 187, 107, 0.22));
  margin-bottom: 16px;
  font-size: 1.25rem;
}
.service-card ul {
  list-style: none;
  margin: 14px 0 0;
  padding: 0;
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 0.95rem;
}
.service-card li::before { content: "\2022"; color: var(--primary); font-weight: 800; margin-right: 8px; }
.gallery-wrap { display: grid; gap: 18px; }
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 18px; }
.gallery-card { overflow: hidden; }
.gallery-image { aspect-ratio: 4 / 4.4; position: relative; background-size: cover; background-position: center; }
.gallery-nail { background-image: var(--gallery-nail-image); background-position: center center; }
.gallery-process { background-image: var(--gallery-process-image); background-position: center top; }
.gallery-tattoo { background-image: var(--gallery-tattoo-image); background-position: center center; }
.gallery-image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 20%, rgba(27, 20, 35, 0.65)); }
.gallery-label {
  position: absolute;
  left: 16px;
  bottom: 16px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--accent);
  font-weight: 700;
  font-size: 0.88rem;
}
.gallery-content { padding: 18px; display: grid; gap: 8px; }
.reviews-grid { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.review-card { padding: 24px; display: grid; gap: 14px; }
.stars { color: #d39b1c; letter-spacing: 0.14em; font-size: 1rem; }
.review-user { display: flex; align-items: center; gap: 12px; }
.avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-soft), rgba(214, 89, 128, 0.45));
  display: grid;
  place-items: center;
  color: var(--primary-deep);
  font-weight: 800;
}
.price-grid { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.price-section {
  padding-top: 22px;
}
.pricing-split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}
.price-panel {
  padding: 26px;
  display: grid;
  grid-template-rows: auto 1fr auto auto;
  align-content: start;
  gap: 18px;
  border-radius: 32px;
  border: 1px solid rgba(47, 31, 45, 0.08);
  box-shadow: 0 22px 60px rgba(107, 32, 66, 0.18);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(255, 242, 246, 0.95));
  backdrop-filter: blur(14px);
}
.price-panel-tattoo {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(246, 241, 232, 0.94));
  border-color: rgba(47, 31, 45, 0.08);
  box-shadow: 0 22px 60px rgba(107, 32, 66, 0.16);
}
.price-panel-header {
  display: grid;
  gap: 10px;
}
.price-panel-header p {
  font-size: 0.95rem;
}
.price-panel-tattoo h3 {
  color: var(--text);
}
.price-panel-tattoo .price-name {
  color: var(--accent);
}
.price-panel-tattoo .price-amount {
  color: var(--primary-deep);
}
.price-panel-tattoo .price-panel-header p,
.price-panel-tattoo .price-note {
  color: var(--muted);
}
.price-badge {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(214, 89, 128, 0.12);
  color: var(--primary-deep);
  font-size: 0.9rem;
  font-weight: 800;
}
.price-panel-tattoo .price-badge {
  background: rgba(109, 94, 76, 0.12);
  color: #6d5e4c;
}
.price-table {
  display: grid;
  align-content: start;
}
.price-table-grouped {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.price-group {
  display: grid;
  align-content: start;
  padding: 14px;
  border: 1px solid rgba(47, 31, 45, 0.08);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.68);
}
.price-group-wide {
  grid-column: 1 / -1;
}
.price-group-title {
  width: fit-content;
  margin-bottom: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(109, 94, 76, 0.14);
  color: #6d5e4c;
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}
.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 14px 0;
}
.selectable-service {
  cursor: pointer;
  user-select: none;
  border-radius: 18px;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.selectable-service:hover,
.selectable-service:focus-visible {
  background: rgba(214, 89, 128, 0.08);
  transform: translateY(-1px);
  outline: none;
}
.selectable-service.is-selected {
  background: rgba(214, 89, 128, 0.14);
  box-shadow: inset 0 0 0 1px rgba(214, 89, 128, 0.25);
}
.price-row + .price-row {
  border-top: 1px dashed rgba(47, 31, 45, 0.12);
}
.price-panel-tattoo .price-row + .price-row {
  border-top-color: rgba(47, 31, 45, 0.12);
}
.price-panel-tattoo .selectable-service:hover,
.price-panel-tattoo .selectable-service:focus-visible {
  background: rgba(214, 89, 128, 0.08);
}
.price-panel-tattoo .selectable-service.is-selected {
  background: rgba(214, 89, 128, 0.14);
  box-shadow: inset 0 0 0 1px rgba(214, 89, 128, 0.25);
}
.price-name {
  font-weight: 700;
  color: var(--accent);
}
.price-amount {
  white-space: nowrap;
  font-size: 1.18rem;
  font-weight: 900;
  color: var(--primary-deep);
}
.price-note {
  font-size: 0.9rem;
  color: var(--muted);
}
.price-cta {
  width: 100%;
}
.price-card { padding: 24px; display: grid; gap: 16px; }
.price-tag {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  padding: 8px 14px;
  background: rgba(225, 187, 107, 0.18);
  color: #9c6e11;
  font-size: 0.9rem;
  font-weight: 700;
}
.price-value { font-size: 2rem; font-weight: 800; color: var(--accent); }
.price-card ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; color: var(--muted); }
.faq-list { display: grid; gap: 14px; }
.faq-item { overflow: hidden; }
.faq-question {
  width: 100%;
  background: transparent;
  border: 0;
  padding: 20px 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  text-align: left;
  cursor: pointer;
  color: var(--accent);
  font-weight: 700;
}
.faq-question span:last-child { font-size: 1.3rem; color: var(--primary-deep); transition: transform 0.2s ease; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.28s ease; padding: 0 22px; }
.faq-item.active .faq-question span:last-child { transform: rotate(45deg); }
.faq-item.active .faq-answer { padding-bottom: 20px; }
.contact-grid { grid-template-columns: 1.1fr 0.9fr; align-items: start; }
#dat-lich .contact-grid {
  grid-template-columns: minmax(0, 760px);
  justify-content: center;
}
.contact-card { padding: 26px; display: grid; gap: 18px; }
.contact-list { display: grid; gap: 14px; }
.contact-line strong, .contact-line span { display: block; }
.contact-line strong { color: var(--accent); margin-bottom: 4px; }
.quick-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.booking-form { display: grid; gap: 14px; }
.booking-picked {
  display: grid;
  gap: 12px;
  padding: 16px 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(47, 31, 45, 0.08);
  box-shadow: 0 14px 34px rgba(107, 32, 66, 0.12);
}
.booking-picked-head,
.booking-picked-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.booking-picked-head strong,
.booking-picked-total strong {
  color: var(--accent);
}
.booking-picked-head span,
.booking-picked-empty,
.booking-picked-total span {
  color: var(--muted);
  font-size: 0.92rem;
}
.booking-picked-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  min-height: 28px;
}
.booking-picked-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(214, 89, 128, 0.1);
  color: var(--primary-deep);
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.3;
}
.booking-picked-total strong {
  font-size: 1.12rem;
  color: var(--primary-deep);
}
.field-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.booking-form label { display: grid; gap: 8px; color: var(--accent); font-weight: 600; font-size: 0.94rem; }
.booking-form input, .booking-form textarea, .booking-form select {
  width: 100%;
  border: 1px solid rgba(47, 31, 45, 0.1);
  background: #fff;
  color: var(--text);
  border-radius: 16px;
  padding: 14px 16px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.booking-form input:focus, .booking-form textarea:focus, .booking-form select:focus {
  border-color: rgba(214, 89, 128, 0.45);
  box-shadow: 0 0 0 4px rgba(214, 89, 128, 0.1);
}
.booking-form textarea { min-height: 112px; resize: vertical; }
.form-note, .helper { font-size: 0.9rem; color: var(--muted); }
.map-frame { border: 0; width: 100%; min-height: 320px; border-radius: 24px; box-shadow: var(--shadow); }
.footer { padding: 34px 0 110px; background: #211621; color: rgba(255, 255, 255, 0.86); }
.footer-grid { grid-template-columns: 1.2fr 1fr 1fr; align-items: start; }
.footer h3, .footer p, .footer a { color: inherit; }
.footer-list { display: grid; gap: 10px; margin-top: 14px; }
.footer-bottom {
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.92rem;
}
.mobile-cta {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 40;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 10px;
  padding: 10px;
  border-radius: 24px;
  background: rgba(33, 22, 33, 0.9);
  backdrop-filter: blur(16px);
  box-shadow: 0 20px 38px rgba(24, 16, 23, 0.28);
}
.mobile-cta .btn { padding: 13px 12px; font-size: 0.94rem; }
.zalo-float {
  position: fixed;
  right: 18px;
  bottom: 20px;
  z-index: 45;
  display: grid;
  justify-items: end;
  gap: 10px;
}
.zalo-float-trigger {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
}
.zalo-float-label {
  display: inline-flex;
  align-items: center;
  height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  background: #fff;
  color: #1443a6;
  font-weight: 700;
  font-size: 1.04rem;
  box-shadow: 0 14px 24px rgba(17, 54, 136, 0.22);
  border: 1px solid rgba(20, 67, 166, 0.14);
}
.zalo-float-menu {
  min-width: 242px;
  display: grid;
  gap: 8px;
  padding: 10px;
  border-radius: 16px;
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.97), rgba(236, 245, 255, 0.94));
  backdrop-filter: blur(10px);
  box-shadow: 0 20px 36px rgba(19, 40, 86, 0.22);
  border: 1px solid rgba(20, 67, 166, 0.14);
  opacity: 0;
  transform: translateY(8px) scale(0.98);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.zalo-float-menu a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 11px 13px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.93rem;
  color: #1443a6;
  background: rgba(21, 83, 209, 0.08);
  border: 1px solid rgba(21, 83, 209, 0.08);
  transform: translateY(6px);
  opacity: 0;
  transition: transform 0.22s ease, opacity 0.22s ease, background 0.22s ease, border-color 0.22s ease;
}
.zalo-float-menu a::after {
  content: ">";
  font-size: 0.92rem;
  color: rgba(20, 67, 166, 0.74);
}
.zalo-float-menu a:hover {
  background: rgba(21, 83, 209, 0.16);
  border-color: rgba(21, 83, 209, 0.24);
  transform: translateY(-1px);
}
.zalo-float.is-open .zalo-float-menu {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.zalo-float.is-open .zalo-float-menu a {
  opacity: 1;
  transform: translateY(0);
}
.zalo-float.is-open .zalo-float-menu a:nth-child(2) {
  transition-delay: 0.06s;
}
.zalo-float.is-open .zalo-float-bubble {
  animation-play-state: paused;
}
.zalo-float-bubble {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0a67ff, #1151cd);
  color: #fff;
  font-weight: 800;
  letter-spacing: 0.2px;
  display: grid;
  place-items: center;
  box-shadow: 0 16px 30px rgba(13, 78, 196, 0.4);
  position: relative;
  animation: zaloPulse 2.4s ease-in-out infinite;
}
.zalo-float-bubble::before,
.zalo-float-bubble::after {
  content: "";
  position: absolute;
  inset: -9px;
  border-radius: 50%;
  border: 2px solid rgba(37, 114, 255, 0.45);
  animation: zaloRipple 2.6s ease-out infinite;
}
.zalo-float-bubble::after {
  animation-delay: 1.2s;
  border-color: rgba(37, 114, 255, 0.34);
}
@keyframes zaloPulse {
  0%, 100% {
    transform: scale(1);
  }
  45% {
    transform: scale(1.07);
  }
}
@keyframes zaloRipple {
  0% {
    transform: scale(0.82);
    opacity: 0.82;
  }
  75% {
    opacity: 0.22;
  }
  100% {
    transform: scale(1.48);
    opacity: 0;
  }
}
.scroll-reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.6s ease, transform 0.6s ease; }
.scroll-reveal.is-visible { opacity: 1; transform: translateY(0); }
@media (min-width: 900px) {
  .nav-links { display: flex; }
  .hero { padding: 48px 0 56px; }
  .hero-grid { grid-template-columns: 1.05fr 0.95fr; }
  .mobile-cta { display: none; }
  .footer { padding-bottom: 34px; }
}
@media (max-width: 899px) {
  .mobile-cta { display: none; }
  .nav {
    gap: 12px;
    padding: 12px 0;
  }
  .brand-mark {
    width: 42px;
    height: 42px;
    border-radius: 15px;
  }
  .brand-text strong {
    font-size: 0.94rem;
  }
  .brand-text span {
    display: none;
  }
  .nav-actions .btn-secondary { display: none; }
  .nav-actions .btn-primary {
    width: auto;
    padding: 12px 16px;
    font-size: 0.92rem;
  }
  .hero {
    padding: 24px 0 30px;
  }
  .hero-grid {
    gap: 18px;
  }
  .hero-copy p {
    max-width: none;
  }
  .hero-visual {
    min-height: 320px;
    padding: 10px;
    border-radius: 26px;
  }
  .visual-large {
    min-height: 300px;
    padding: 18px;
    border-radius: 22px;
  }
  .visual-overlay {
    max-width: 240px;
  }
  .section-title {
    margin-bottom: 24px;
  }
  .price-panel,
  .info-card,
  .review-card,
  .contact-card,
  .gallery-content {
    padding: 20px;
  }
  .price-row {
    padding: 12px 0;
  }
  .selectable-service {
    border-radius: 16px;
  }
  .price-name {
    max-width: 62%;
    line-height: 1.35;
  }
  .price-amount {
    font-size: 1.05rem;
  }
  .gallery-grid,
  .reviews-grid {
    gap: 14px;
  }
  .gallery-image {
    aspect-ratio: 4 / 3.5;
  }
  .quick-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .map-frame {
    min-height: 280px;
  }
  .contact-grid, .footer-grid, .field-grid, .pricing-split { grid-template-columns: 1fr; }
  .zalo-float {
    right: 12px;
    bottom: 20px;
    gap: 8px;
  }
  .zalo-float-menu {
    min-width: 228px;
    padding: 8px;
  }
  .zalo-float-label {
    height: 38px;
    padding: 0 14px;
    font-size: 0.98rem;
  }
  .zalo-float-bubble {
    width: 52px;
    height: 52px;
  }
}
@media (max-width: 640px) {
  .section { padding: 58px 0; }
  .container { width: min(calc(100% - 24px), var(--container)); }
  .topbar {
    top: 8px;
    width: min(calc(100% - 16px), var(--container));
    margin: 0 auto;
    border-radius: 18px;
  }
  .nav {
    padding: 10px 12px;
  }
  .brand {
    min-width: 0;
    flex: 1 1 auto;
  }
  .brand-text strong {
    font-size: 0.9rem;
  }
  .hero {
    padding: 18px 0 26px;
  }
  .hero-copy {
    gap: 14px;
  }
  .hero-copy p { font-size: 0.98rem; }
  .hero h1 {
    font-size: clamp(2.2rem, 11vw, 3.4rem);
  }
  .topbar .btn-primary {
    padding-inline: 14px;
    font-size: 0.88rem;
  }
  .hero-visual {
    min-height: 286px;
  }
  .visual-large {
    min-height: 264px;
    background-position: center top;
  }
  .visual-overlay {
    max-width: 210px;
    padding: 12px 14px;
  }
  .visual-overlay p {
    font-size: 0.92rem;
  }
  .price-panel {
    padding: 18px;
    border-radius: 22px;
  }
  .price-table-grouped {
    grid-template-columns: 1fr;
  }
  .price-group,
  .price-group-wide {
    grid-column: auto;
  }
  .price-panel-header h3 {
    font-size: 1.2rem;
  }
  .price-badge {
    font-size: 0.84rem;
  }
  .price-name {
    max-width: 58%;
    font-size: 0.95rem;
  }
  .price-amount {
    font-size: 0.98rem;
  }
  .booking-picked {
    padding: 14px 16px;
  }
  .booking-picked-chip {
    font-size: 0.86rem;
  }
  .review-card,
  .contact-card,
  .info-card {
    padding: 18px;
  }
  .gallery-content {
    padding: 16px;
  }
  .quick-actions {
    grid-template-columns: 1fr;
  }
  .map-frame {
    min-height: 240px;
    border-radius: 20px;
  }
  .mobile-cta { grid-template-columns: 1fr 1fr 1fr; }
  .mobile-cta {
    left: 10px;
    right: 10px;
    bottom: 10px;
    gap: 8px;
    padding: 8px;
    border-radius: 20px;
  }
  .mobile-cta .btn {
    min-height: 48px;
    padding: 10px;
    border-radius: 16px;
    font-size: 0.86rem;
  }
  .mobile-cta .btn span { display: none; }
  .zalo-float {
    bottom: 16px;
  }
  .zalo-float-menu {
    min-width: 212px;
  }
}
@media (max-width: 380px) {
  .price-name {
    max-width: 54%;
  }
}
