:root {
  --ink: #181512;
  --muted: #846b72;
  --paper: #fff4f8;
  --ivory: #fffdf9;
  --blush: #f8c9d7;
  --rose: #d9789a;
  --sage: #8fae9b;
  --champagne: #e8c98c;
  --glass: rgba(255, 255, 255, 0.56);
  --line: rgba(145, 83, 103, 0.14);
  --shadow: 0 24px 80px rgba(196, 96, 128, 0.16);
  --radius: 28px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scrollbar-color: rgba(217, 120, 154, 0.62) rgba(255, 238, 245, 0.72);
  scrollbar-width: thin;
}

::-webkit-scrollbar {
  width: 12px;
  height: 12px;
}

::-webkit-scrollbar-track {
  background: rgba(255, 238, 245, 0.72);
}

::-webkit-scrollbar-thumb {
  border: 3px solid rgba(255, 238, 245, 0.72);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(217, 120, 154, 0.74), rgba(248, 201, 215, 0.86));
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, rgba(201, 95, 125, 0.86), rgba(239, 182, 197, 0.95));
}

body {
  margin: 0;
  overflow-x: hidden;
  background:
    linear-gradient(rgba(255, 246, 250, 0.58), rgba(255, 246, 250, 0.7)),
    url("../images/pink-watercolor-bg.png") top center / cover fixed,
    linear-gradient(180deg, #fff4f8 0%, #ffe8f0 52%, #fff8fb 100%);
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

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

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

.site-header {
  position: fixed;
  top: 12px;
  left: 12px;
  right: 12px;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.54);
  box-shadow: 0 18px 50px rgba(49, 31, 25, 0.12);
  backdrop-filter: blur(22px) saturate(1.3);
  -webkit-backdrop-filter: blur(22px) saturate(1.3);
  transition: transform 280ms ease, background 280ms ease, box-shadow 280ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 14px 42px rgba(49, 31, 25, 0.16);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.brand-logo {
  width: clamp(132px, 40vw, 188px);
  height: 52px;
  object-fit: contain;
  object-position: left center;
  filter: drop-shadow(0 8px 14px rgba(24, 21, 18, 0.12));
}

.nav-toggle {
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  gap: 4px;
  border: 0;
  border-radius: 16px;
  background: rgba(24, 21, 18, 0.08);
  cursor: pointer;
}

.nav-toggle i {
  color: #7f3551;
  font-size: 1.22rem;
  transition: transform 260ms ease, color 260ms ease;
}

.nav-toggle[aria-expanded="true"] i {
  transform: rotate(90deg);
  color: var(--rose);
}

.main-nav,
.header-cta {
  display: none;
}

button.header-cta,
button.button {
  border: 0;
  font: inherit;
  cursor: pointer;
}

.main-nav.is-open {
  display: grid;
  grid-column: 1 / -1;
  gap: 6px;
  padding: 8px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.52);
}

.main-nav a,
.nav-link {
  display: flex;
  width: 100%;
  align-items: center;
  padding: 12px 14px;
  border: 0;
  border-radius: 14px;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.main-nav a:hover,
.main-nav a:focus-visible,
.nav-link:hover,
.nav-link:focus-visible,
.nav-service.is-open > .nav-link {
  background: rgba(201, 95, 125, 0.12);
  color: var(--ink);
}

.nav-service {
  position: relative;
}

.service-trigger::after {
  width: 7px;
  height: 7px;
  margin-left: auto;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform 220ms ease;
  content: "";
}

.nav-service.is-open .service-trigger::after {
  transform: rotate(225deg) translate(-2px, -1px);
}

.service-dropdown {
  display: none;
}

.nav-service.is-open .service-dropdown {
  display: grid;
  gap: 4px;
  padding: 6px 0 4px 14px;
}

.service-dropdown button {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  min-height: 44px;
  padding: 10px 12px;
  border: 0;
  border-radius: 14px;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-size: 0.94rem;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
  transition: background 220ms ease, color 220ms ease, transform 220ms ease;
}

.service-dropdown button:hover,
.service-dropdown button:focus-visible,
.service-dropdown button.is-active {
  background: rgba(216, 189, 130, 0.2);
  color: var(--ink);
}

.hero {
  position: relative;
  display: grid;
  min-height: 92svh;
  padding: 112px 16px 24px;
  overflow: hidden;
  isolation: isolate;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-media img {
  height: 100%;
  object-fit: cover;
  object-position: 49% center;
}

.hero-overlay {
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(251, 248, 243, 0.34) 0%, rgba(251, 248, 243, 0.76) 58%, #fbf8f3 100%),
    linear-gradient(90deg, rgba(24, 21, 18, 0.28), transparent 58%);
}

.hero-content {
  align-self: end;
  position: relative;
  max-width: 680px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.66);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.44);
  box-shadow: var(--shadow);
  backdrop-filter: blur(28px) saturate(1.25);
  -webkit-backdrop-filter: blur(28px) saturate(1.25);
}

.hero-socials {
  position: absolute;
  top: 18px;
  right: 18px;
  display: flex;
  gap: 10px;
}

.hero-socials a {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.36);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(16px) saturate(1.2);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
  transition: transform 260ms ease, background 260ms ease;
}

.hero-socials a:hover,
.hero-socials a:focus-visible {
  background: rgba(255, 255, 255, 0.72);
  transform: translateY(-2px);
}

.hero-socials img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.hero-socials a[aria-label="Zalo"] img {
  width: 30px;
  height: 30px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--rose);
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: "Playfair Display", Georgia, serif;
  line-height: 0.98;
}

h1 {
  max-width: 10ch;
  margin-bottom: 18px;
  font-size: clamp(3.25rem, 17vw, 5.4rem);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.4rem, 14vw, 5.6rem);
}

h3 {
  margin-bottom: 8px;
  font-size: 1.18rem;
  line-height: 1.2;
}

.hero-copy {
  max-width: 34rem;
  margin-bottom: 24px;
  color: #3b332d;
  font-size: 1.04rem;
}

.hero-actions,
.contact-actions {
  display: grid;
  gap: 10px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 340ms ease, box-shadow 340ms ease, background 340ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  background: linear-gradient(135deg, var(--ink), #4a322c);
  color: #fff;
  box-shadow: 0 14px 30px rgba(24, 21, 18, 0.22);
}

.button-glass {
  border: 1px solid rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.44);
  color: var(--ink);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.button-glass.dark {
  border-color: rgba(24, 21, 18, 0.1);
  background: rgba(24, 21, 18, 0.06);
}

.hero-card {
  display: grid;
  gap: 14px;
  align-self: end;
  margin-top: 14px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.66);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.5);
  box-shadow: var(--shadow);
  backdrop-filter: blur(24px) saturate(1.25);
  -webkit-backdrop-filter: blur(24px) saturate(1.25);
}

.hero-card div {
  display: grid;
  gap: 2px;
}

.meta-label {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.section-pad {
  padding: 72px 16px;
}

.intro,
.services,
.testimonials,
.service-detail,
.specialists,
.contact {
  max-width: 1160px;
  margin: 0 auto;
}

.intro-grid {
  display: grid;
  gap: 18px;
}

.intro-copy p,
.experience-copy p,
.contact-card p {
  color: var(--muted);
}

.testimonials {
  max-width: none;
  padding-right: max(16px, calc((100vw - 1160px) / 2));
  padding-left: max(16px, calc((100vw - 1160px) / 2));
}

.testimonials.section-pad {
  padding-top: clamp(50px, 8vw, 78px);
  padding-bottom: clamp(50px, 8vw, 78px);
}

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

.testimonial-grid {
  display: grid;
  gap: 16px;
}

.testimonial-grid article {
  display: grid;
  gap: 14px;
  padding: clamp(20px, 4vw, 30px);
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.32);
  box-shadow: 0 20px 58px rgba(196, 96, 128, 0.12);
  backdrop-filter: blur(22px) saturate(1.2);
  -webkit-backdrop-filter: blur(22px) saturate(1.2);
}

.testimonial-grid i {
  color: #b97824;
  font-size: 1.5rem;
}

.testimonial-grid p {
  margin-bottom: 0;
  color: #3e3135;
  font-size: 1.02rem;
}

.testimonial-grid strong {
  color: #7f3551;
}

.stat-strip {
  display: grid;
  gap: 10px;
}

.stat-strip div,
.menu-card,
.contact-card {
  border: 1px solid rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.46);
  box-shadow: var(--shadow);
  backdrop-filter: blur(22px) saturate(1.18);
  -webkit-backdrop-filter: blur(22px) saturate(1.18);
}

.stat-strip div {
  padding: 18px;
  border-radius: 22px;
}

.stat-strip strong {
  display: block;
  color: var(--rose);
  font-size: 2rem;
  line-height: 1;
}

.stat-strip span {
  color: var(--muted);
  font-weight: 700;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 26px;
}

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

.service-card {
  overflow: hidden;
  border: 0;
  padding: 0;
  color: inherit;
  font: inherit;
  text-align: left;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.48);
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  cursor: pointer;
  transition: transform 420ms ease, border-color 420ms ease, box-shadow 420ms ease;
}

.service-card:hover,
.service-card:focus-visible,
.service-card.is-active {
  border-color: rgba(216, 189, 130, 0.72);
  box-shadow: 0 24px 80px rgba(82, 54, 44, 0.2), 0 0 0 1px rgba(216, 189, 130, 0.22);
  transform: translateY(-3px);
}

.service-card img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 900ms ease;
}

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

.service-card div {
  padding: 20px;
}

.service-card span {
  color: var(--sage);
  font-size: 0.76rem;
  font-weight: 900;
}

.service-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.experience-panel {
  display: grid;
  gap: 20px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.2)),
    rgba(143, 174, 155, 0.16);
  box-shadow: var(--shadow);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}

.experience-image {
  overflow: hidden;
  border-radius: 26px;
}

.experience-image img {
  aspect-ratio: 1 / 1;
  height: 100%;
  object-fit: cover;
}

.experience-copy {
  padding: 12px 10px 18px;
}

.feature-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
}

.feature-list li {
  position: relative;
  padding-left: 28px;
  color: #3d352f;
  font-weight: 700;
}

.feature-list li::before {
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 14px;
  height: 2px;
  border-radius: 999px;
  background: var(--champagne);
  content: "";
}

.service-detail-shell {
  display: grid;
  gap: 16px;
}

.service-tabs {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 4px 2px 14px;
  scrollbar-width: thin;
}

.service-tabs button {
  flex: 0 0 auto;
  min-height: 46px;
  padding: 0 16px;
  border: 1px solid rgba(24, 21, 18, 0.09);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.5);
  color: var(--muted);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  transition: background 220ms ease, border-color 220ms ease, color 220ms ease, transform 220ms ease;
}

.service-tabs button:hover,
.service-tabs button:focus-visible,
.service-tabs button.is-active {
  border-color: rgba(216, 189, 130, 0.72);
  background: rgba(216, 189, 130, 0.2);
  color: var(--ink);
  transform: translateY(-1px);
}

.price-panel {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.5);
  box-shadow: var(--shadow);
  backdrop-filter: blur(24px) saturate(1.16);
  -webkit-backdrop-filter: blur(24px) saturate(1.16);
  opacity: 1;
  transform: translateY(0);
  transition: opacity 260ms ease, transform 260ms ease;
}

.price-panel.is-changing {
  opacity: 0;
  transform: translateY(14px);
}

.price-inner {
  display: grid;
  gap: 22px;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 260ms ease, transform 260ms ease;
}

.price-title {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.price-title h3 {
  margin-bottom: 10px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.3rem, 12vw, 4.8rem);
  line-height: 1;
}

.price-title p {
  margin-bottom: 0;
  color: var(--muted);
}

.price-table {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.42);
}

.price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 15px 16px;
  border-top: 1px solid rgba(24, 21, 18, 0.08);
  color: var(--muted);
  transition: background 200ms ease, color 200ms ease;
}

.price-row:first-child {
  border-top: 0;
  background: rgba(216, 189, 130, 0.16);
  color: var(--ink);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.price-row:not(:first-child):hover {
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
}

.price-row strong {
  color: var(--ink);
  white-space: nowrap;
}

.price-row span {
  min-width: 0;
}

.price-actions {
  display: grid;
  gap: 10px;
}

.gallery-grid {
  display: grid;
  gap: 14px;
}

.gallery-grid img {
  min-height: 240px;
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: var(--shadow);
}

.specialists {
  max-width: none;
  padding-right: max(16px, calc((100vw - 1160px) / 2));
  padding-left: max(16px, calc((100vw - 1160px) / 2));
}

.benefit-list {
  display: grid;
  gap: 16px;
  max-width: 900px;
  margin: 0 auto 34px;
}

.benefit-list article {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 16px;
  align-items: start;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.32);
  box-shadow: 0 18px 52px rgba(196, 96, 128, 0.12);
  backdrop-filter: blur(20px) saturate(1.2);
  -webkit-backdrop-filter: blur(20px) saturate(1.2);
}

.benefit-list i {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: 18px;
  background: rgba(217, 120, 154, 0.12);
  color: #7f3551;
  font-size: 1.35rem;
}

.benefit-list h3,
.specialist-card h3 {
  color: #7f3551;
}

.benefit-list p,
.specialist-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.specialist-grid {
  display: grid;
  gap: 16px;
}

.specialist-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.34);
  box-shadow: 0 22px 64px rgba(196, 96, 128, 0.14);
  backdrop-filter: blur(22px) saturate(1.2);
  -webkit-backdrop-filter: blur(22px) saturate(1.2);
}

.specialist-card img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.specialist-card h3,
.specialist-card p {
  padding: 0 20px;
}

.specialist-card h3 {
  margin-top: 18px;
}

.specialist-card p {
  padding-bottom: 20px;
}

.contact-card {
  display: grid;
  gap: 22px;
  padding: 28px;
  border-radius: 34px;
}

.contact-card h2 {
  font-size: clamp(2.3rem, 11vw, 4.8rem);
}

.site-footer {
  display: grid;
  gap: 6px;
  padding: 34px 16px 46px;
  color: var(--muted);
  font-size: 0.9rem;
  text-align: center;
}

.site-footer span:first-child {
  color: var(--ink);
  font-weight: 900;
}

.floating-chat {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  display: grid;
  justify-items: end;
  gap: 12px;
}

.floating-phone {
  position: fixed;
  right: 18px;
  bottom: 94px;
  z-index: 31;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.84);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.34);
  color: #7f3551;
  box-shadow: 0 18px 40px rgba(217, 120, 154, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(22px) saturate(1.25);
  -webkit-backdrop-filter: blur(22px) saturate(1.25);
  transition: transform 360ms ease, box-shadow 360ms ease, background 360ms ease;
}

.floating-phone:hover,
.floating-phone:focus-visible {
  background: rgba(255, 255, 255, 0.72);
  transform: translateY(-2px);
  box-shadow: 0 22px 48px rgba(201, 95, 125, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.86);
}

.floating-phone i {
  font-size: 1.25rem;
}

.chat-toggle {
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.34);
  box-shadow: 0 18px 40px rgba(201, 95, 125, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(22px) saturate(1.25);
  -webkit-backdrop-filter: blur(22px) saturate(1.25);
  cursor: pointer;
  animation: chatPulse 5.2s ease-in-out infinite;
  transition: transform 360ms ease, box-shadow 360ms ease;
}

.chat-toggle:hover,
.chat-toggle:focus-visible,
.floating-chat.is-open .chat-toggle {
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 22px 48px rgba(201, 95, 125, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.86);
}

.chat-toggle svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: #7f3551;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.chat-options {
  display: grid;
  gap: 10px;
  pointer-events: none;
}

.chat-option {
  display: flex;
  min-width: 0;
  width: 54px;
  height: 54px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.34);
  box-shadow: 0 16px 38px rgba(49, 31, 25, 0.14);
  opacity: 0;
  transform: translateY(16px) scale(0.94);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: opacity 320ms ease, transform 320ms ease, background 320ms ease;
}

.chat-option span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.42);
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 900;
  overflow: hidden;
}

.chat-option span img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.chat-option[aria-label="Chat on Zalo"] span img {
  width: 42px;
  height: 42px;
  transform: scale(1.16);
}

.chat-option .fa-phone-flip {
  color: #7f3551;
  font-style: normal;
  font-size: 1.25rem;
}

.chat-option strong {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.booking-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  padding: 18px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 320ms ease;
}

.booking-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.booking-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(72, 39, 52, 0.22);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.booking-form {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(100%, 720px);
  max-height: none;
  gap: 11px;
  overflow: visible;
  padding: clamp(18px, 3vw, 26px);
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.34);
  box-shadow: 0 28px 90px rgba(127, 53, 81, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.74);
  backdrop-filter: blur(28px) saturate(1.35);
  -webkit-backdrop-filter: blur(28px) saturate(1.35);
  transform: translateY(18px) scale(0.98);
  transition: transform 360ms ease;
}

.booking-modal.is-open .booking-form {
  transform: translateY(0) scale(1);
}

.booking-form h2 {
  margin-bottom: 0;
  color: #7f3551;
  font-size: clamp(2rem, 7vw, 3.3rem);
}

.booking-form label {
  display: grid;
  gap: 7px;
  color: #6f5660;
  font-size: 0.88rem;
  font-weight: 800;
}

.field-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.field-label i {
  color: #7f3551;
  font-size: 0.92rem;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  border: 1px solid rgba(127, 53, 81, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.5);
  color: var(--ink);
  font: inherit;
  padding: 10px 13px;
  outline: 0;
  transition: border-color 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.select-wrap {
  position: relative;
  display: block;
}

.select-wrap::after {
  position: absolute;
  top: 50%;
  right: 16px;
  width: 9px;
  height: 9px;
  border-right: 2px solid #7f3551;
  border-bottom: 2px solid #7f3551;
  transform: translateY(-65%) rotate(45deg);
  content: "";
  pointer-events: none;
}

.select-wrap select {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 44px;
  cursor: pointer;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  border-color: rgba(217, 120, 154, 0.62);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 0 0 4px rgba(217, 120, 154, 0.12);
}

.booking-close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: grid;
  width: 40px;
  height: 40px;
  padding: 0;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.44);
  color: #7f3551;
  font: inherit;
  line-height: 1;
  font-size: 1.42rem;
  font-weight: 700;
  cursor: pointer;
}

@media (min-width: 720px) {
  .booking-form {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: end;
  }

  .booking-form > .eyebrow,
  .booking-form > h2,
  .booking-form .booking-name,
  .booking-form .booking-notes,
  .booking-form > .button {
    grid-column: 1 / -1;
  }

  .booking-form .booking-time {
    grid-column: 1 / -1;
  }

  .booking-form textarea {
    min-height: 74px;
  }
}

.chat-option:hover,
.chat-option:focus-visible {
  background: rgba(255, 255, 255, 0.72);
  transform: translateY(-1px) scale(1);
}

.floating-chat.is-open .chat-options {
  pointer-events: auto;
}

.floating-chat.is-open .chat-option {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.floating-chat.is-open .chat-option:nth-child(2) {
  transition-delay: 45ms;
}

.floating-chat.is-open .chat-option:nth-child(3) {
  transition-delay: 90ms;
}

.floating-chat.is-open .chat-option:nth-child(4) {
  transition-delay: 135ms;
}

@keyframes chatPulse {
  0%,
  78%,
  100% {
    transform: translateY(0) scale(1);
  }

  84% {
    transform: translateY(-5px) scale(1.03);
  }

  90% {
    transform: translateY(0) scale(1);
  }
}

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

.js-ready .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 680ms ease, transform 680ms ease;
}

.js-ready .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

@media (min-width: 680px) {
  .site-header {
    left: 22px;
    right: 22px;
    grid-template-columns: minmax(170px, auto) 1fr auto;
    padding: 10px 12px;
  }

  .brand-logo {
    width: 188px;
    height: 58px;
  }

  .nav-toggle {
    display: none;
  }

  .main-nav {
    display: flex;
    justify-content: center;
    gap: 4px;
  }

  .main-nav a,
  .nav-link {
    width: auto;
    padding: 10px 12px;
  }

  .service-trigger::after {
    margin-left: 8px;
  }

  .service-dropdown {
    position: absolute;
    top: calc(100% + 14px);
    left: 50%;
    display: grid;
    width: min(370px, 84vw);
    gap: 4px;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.78);
    border-radius: 24px;
    background: rgba(255, 252, 247, 0.9);
    box-shadow: 0 24px 70px rgba(49, 31, 25, 0.18);
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, 10px);
    backdrop-filter: blur(24px) saturate(1.18);
    -webkit-backdrop-filter: blur(24px) saturate(1.18);
    transition: opacity 220ms ease, transform 220ms ease;
  }

  .nav-service:hover .service-dropdown,
  .nav-service:focus-within .service-dropdown,
  .nav-service.is-open .service-dropdown {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, 0);
  }

  .nav-service.is-open .service-dropdown {
    padding: 12px;
  }

  .service-dropdown button {
    min-height: 42px;
    padding: 10px 12px;
  }

  .header-cta {
    display: inline-flex;
    min-height: 42px;
    align-items: center;
    padding: 0 18px;
    border-radius: 999px;
    background: var(--ink);
    color: #fff;
    font-weight: 800;
  }

  .hero {
    min-height: 94svh;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 390px);
    gap: 18px;
    padding: 128px 24px 34px;
  }

  .hero-content {
    padding: 38px;
  }

  .hero-actions,
  .contact-actions {
    display: flex;
    flex-wrap: wrap;
  }

  .button {
    min-width: 156px;
  }

  .stat-strip,
  .service-grid,
  .gallery-grid,
  .specialist-grid,
  .testimonial-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .intro-grid {
    grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
    align-items: end;
  }

  .price-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }

  .gallery-grid .tall {
    grid-row: span 2;
    min-height: 500px;
  }

  .contact-card {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    padding: 38px;
  }

  .contact-card h2 {
    font-size: clamp(3.4rem, 8vw, 5.6rem);
  }
}

@media (min-width: 960px) {
  .site-header {
    top: 18px;
    left: 50%;
    right: auto;
    width: min(1120px, calc(100% - 48px));
    transform: translateX(-50%);
  }

  .hero {
    padding-left: max(32px, calc((100vw - 1160px) / 2));
    padding-right: max(32px, calc((100vw - 1160px) / 2));
  }

  .hero-media img {
    object-position: center;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(251, 248, 243, 0.08) 0%, rgba(251, 248, 243, 0.18) 46%, #fbf8f3 100%),
      linear-gradient(90deg, rgba(251, 248, 243, 0.74) 0%, rgba(251, 248, 243, 0.36) 42%, rgba(24, 21, 18, 0.08) 100%);
  }

  .hero-content {
    align-self: center;
  }

  h1 {
    font-size: clamp(5.6rem, 10vw, 8.2rem);
  }

  .hero-card {
    align-self: center;
  }

  .section-pad {
    padding-top: 104px;
    padding-bottom: 104px;
  }

  .experience-panel {
    grid-template-columns: 0.95fr 1.05fr;
    align-items: center;
    padding: 14px;
  }

  .experience-copy {
    padding: 34px;
  }

  .service-detail-shell {
    grid-template-columns: 250px minmax(0, 1fr);
    align-items: start;
  }

  .service-tabs {
    position: sticky;
    top: 118px;
    display: grid;
    overflow: visible;
    padding: 0;
  }

  .service-tabs button {
    justify-content: flex-start;
    border-radius: 18px;
    text-align: left;
    white-space: normal;
  }

  .price-panel {
    padding: 34px;
  }
}

/* Pink pastel redesign overrides */
.site-header {
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  border-width: 0 0 1px;
  border-radius: 0;
  background: rgba(255, 246, 250, 0.78);
  box-shadow: 0 12px 40px rgba(196, 96, 128, 0.12);
}

.site-header.is-scrolled {
  background: rgba(255, 246, 250, 0.9);
  box-shadow: 0 14px 36px rgba(196, 96, 128, 0.18);
}

.nav-toggle {
  background: rgba(217, 120, 154, 0.12);
}

.main-nav.is-open {
  background: rgba(255, 238, 245, 0.76);
}

.main-nav a:hover,
.main-nav a:focus-visible,
.nav-link:hover,
.nav-link:focus-visible,
.nav-service.is-open > .nav-link {
  background: rgba(248, 201, 215, 0.42);
  color: #7f3551;
}

.service-dropdown button:hover,
.service-dropdown button:focus-visible,
.service-dropdown button.is-active {
  background: rgba(232, 201, 140, 0.24);
  color: #7f3551;
}

.header-cta,
.button-primary {
  background: linear-gradient(135deg, #d9789a, #f1abc0);
  color: #fff;
  box-shadow: 0 14px 30px rgba(217, 120, 154, 0.28);
}

.button-glass {
  background: rgba(255, 246, 250, 0.62);
}

.hero {
  padding-top: 116px;
  min-height: clamp(620px, 78svh, 760px);
}

.hero-media img {
  transition: opacity 520ms ease, transform 1200ms ease;
}

.hero-media img.is-changing {
  opacity: 0;
  transform: scale(1.025);
}

.hero-content {
  padding: clamp(22px, 4vw, 34px);
}

h1 {
  font-size: clamp(3rem, 11vw, 5.2rem);
}

.hero-content,
.hero-card,
.stat-strip div,
.contact-card {
  border-color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.26);
  box-shadow: 0 24px 80px rgba(196, 96, 128, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(28px) saturate(1.45);
  -webkit-backdrop-filter: blur(28px) saturate(1.45);
}

.hero-card {
  gap: 16px;
}

.hero-hours {
  display: grid;
  gap: 8px;
  padding: 12px 0;
  border-top: 1px solid rgba(127, 53, 81, 0.12);
  border-bottom: 1px solid rgba(127, 53, 81, 0.12);
}

.hero-hours span {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: #3e3135;
}

.hero-hours strong,
.hero-hours em {
  font-style: normal;
  font-weight: 800;
}

.services {
  position: relative;
  max-width: none;
  padding-left: max(16px, calc((100vw - 1180px) / 2));
  padding-right: max(16px, calc((100vw - 1180px) / 2));
  background:
    linear-gradient(rgba(255, 232, 240, 0.86), rgba(255, 239, 245, 0.9)),
    url("../images/pink-floral-bg.png") center / cover;
}

.services .section-heading {
  max-width: 980px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.services .section-heading h2 {
  color: #7f3551;
}

.service-grid {
  grid-template-columns: 1fr;
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
}

.service-card {
  position: relative;
  display: grid;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 26px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.7), rgba(255, 239, 245, 0.58)),
    radial-gradient(circle at top left, rgba(248, 201, 215, 0.7), transparent 20rem);
  box-shadow: 0 24px 70px rgba(196, 96, 128, 0.16);
  cursor: default;
}

.service-card:hover,
.service-card.is-focused,
.service-card.is-active {
  border-color: rgba(232, 201, 140, 0.84);
  box-shadow: 0 28px 86px rgba(196, 96, 128, 0.22), 0 0 0 1px rgba(232, 201, 140, 0.2);
  transform: translateY(-3px);
}

.service-card .service-card-media {
  position: relative;
  overflow: hidden;
  min-height: 260px;
  padding: 0;
}

.service-card-media img {
  height: 100%;
  min-height: 260px;
  aspect-ratio: 1 / 0.82;
  object-fit: cover;
  transition: transform 520ms ease;
}

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

.service-card .service-number {
  position: absolute;
  top: 14px;
  left: 14px;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 999px;
  background: rgba(255, 246, 250, 0.72);
  color: #7f3551;
  font-size: 0.78rem;
  font-weight: 900;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.service-card .service-card-body {
  display: grid;
  gap: 14px;
  padding: 22px;
}

.service-card .service-card-body h3 {
  margin: 0;
  color: #7f3551;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.9rem, 8vw, 3.1rem);
}

.service-card .service-card-body p {
  margin: 0;
  color: var(--muted);
}

.service-card .service-price-list {
  overflow: hidden;
  border: 1px solid rgba(145, 83, 103, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.48);
}

.service-card .service-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  border-top: 1px solid rgba(145, 83, 103, 0.1);
  color: #5e444c;
  transition: background 200ms ease, transform 200ms ease;
}

.service-price-row:first-child {
  border-top: 0;
}

.service-price-row:hover {
  background: rgba(255, 246, 250, 0.86);
}

.service-card .service-price-row span {
  min-width: 0;
  color: #5e444c;
  font-size: 1rem;
  font-weight: 500;
}

.service-card .service-price-row strong {
  flex: 0 0 auto;
  color: #7f3551;
}

.service-card .service-card-actions {
  display: grid;
  gap: 10px;
}

.site-footer {
  gap: 22px;
  padding: 48px 16px 86px;
  background:
    linear-gradient(rgba(255, 244, 248, 0.68), rgba(255, 238, 245, 0.76)),
    url("../images/pink-watercolor-bg.png") center / cover;
}

.footer-info {
  display: grid;
  gap: 12px;
}

.footer-logo {
  width: min(220px, 70vw);
  height: auto;
  margin-bottom: 4px;
  filter: drop-shadow(0 10px 20px rgba(127, 53, 81, 0.12));
}

.footer-contact-line {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--muted);
}

.footer-contact-line i {
  display: inline-grid;
  width: 22px;
  min-width: 22px;
  place-items: center;
  color: #7f3551;
  font-style: normal;
}

.footer-socials {
  display: flex;
  justify-content: flex-start;
  gap: 16px;
  margin-top: 14px;
}

.footer-socials a {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border: 0;
  border-radius: 999px;
  background: transparent;
  box-shadow: none;
  transition: transform 220ms ease, background 220ms ease;
}

.footer-socials a:hover,
.footer-socials a:focus-visible {
  background: rgba(255, 255, 255, 0.36);
  transform: translateY(-2px);
}

.footer-socials img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.footer-socials a[aria-label="Zalo"] img {
  width: 44px;
  height: 44px;
  transform: scale(1.22);
}

.footer-info a,
.contact-card a[href^="tel:"],
.contact-card a[href^="mailto:"] {
  transition: color 180ms ease, font-weight 180ms ease;
}

.footer-info a:hover,
.footer-info a:focus-visible,
.contact-card a[href^="tel:"]:hover,
.contact-card a[href^="tel:"]:focus-visible,
.contact-card a[href^="mailto:"]:hover,
.contact-card a[href^="mailto:"]:focus-visible {
  color: #7f3551;
  font-weight: 900;
}

.footer-map {
  overflow: hidden;
  width: min(100%, 980px);
  margin: 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 26px;
  box-shadow: 0 24px 70px rgba(196, 96, 128, 0.16);
}

.footer-credit {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 18px;
  width: min(100%, 980px);
  margin: 4px auto 0;
  padding: 12px 18px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.32);
  color: rgba(127, 53, 81, 0.78);
  font-size: 0.84rem;
  font-weight: 700;
  text-align: center;
  box-shadow: 0 14px 34px rgba(127, 53, 81, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.58);
  backdrop-filter: blur(14px) saturate(1.14);
  -webkit-backdrop-filter: blur(14px) saturate(1.14);
}

.footer-map iframe {
  display: block;
  width: 100%;
  height: 260px;
  border: 0;
  pointer-events: none;
}

.chat-toggle {
  background: rgba(255, 255, 255, 0.34);
  box-shadow: 0 18px 40px rgba(217, 120, 154, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

@media (min-width: 680px) {
  .site-header {
    left: 0;
    right: 0;
    grid-template-columns: minmax(190px, auto) 1fr auto;
    padding: 8px clamp(22px, 4vw, 56px);
  }

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

  .service-card {
    grid-template-rows: auto 1fr;
  }

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

  .site-footer {
    grid-template-columns: minmax(240px, 0.8fr) minmax(0, 1.2fr);
    align-items: center;
    text-align: left;
    padding-right: clamp(22px, 4vw, 56px);
    padding-left: clamp(22px, 4vw, 56px);
  }
}

@media (min-width: 960px) {
  .site-header {
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    transform: none;
  }

  .service-dropdown {
    top: 100%;
    width: min(430px, 88vw);
    border-radius: 0 0 24px 24px;
    background: rgba(255, 248, 251, 0.94);
    transform: translate(-50%, 8px);
  }

  .service-dropdown::before {
    position: absolute;
    left: 0;
    right: 0;
    top: -18px;
    height: 18px;
    content: "";
  }

  .nav-service:hover .service-dropdown,
  .nav-service:focus-within .service-dropdown,
  .nav-service.is-open .service-dropdown {
    transform: translate(-50%, 0);
  }

  .hero {
    padding-top: 120px;
  }

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

  .service-card:nth-child(3n + 1) {
    grid-template-columns: 0.95fr 1.05fr;
    grid-column: span 2;
  }

  .service-card:nth-child(3n + 1) .service-card-media img {
    min-height: 100%;
  }
}

/* Arched services with click-to-detail */
.services {
  background:
    linear-gradient(rgba(255, 239, 246, 0.76), rgba(255, 246, 250, 0.88)),
    url("../images/pink-watercolor-bg.png") center / cover;
}

.services .section-heading {
  position: relative;
  max-width: 1040px;
}

.services .section-heading::before,
.services .section-heading::after {
  position: absolute;
  top: 50%;
  display: none;
  width: min(22vw, 320px);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(127, 53, 81, 0.42));
  content: "";
}

.services .section-heading::before {
  right: calc(100% + 18px);
}

.services .section-heading::after {
  left: calc(100% + 18px);
  transform: rotate(180deg);
}

.services .section-heading h2 {
  font-family: Inter, system-ui, sans-serif;
  font-size: clamp(2.1rem, 9vw, 4.2rem);
  font-weight: 500;
  letter-spacing: 0;
  text-transform: uppercase;
}

.service-grid {
  display: flex;
  grid-template-columns: none;
  gap: 24px;
  max-width: none;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 10px max(18px, calc((100vw - 1180px) / 2)) 42px;
  margin: 0 calc(-1 * max(16px, calc((100vw - 1180px) / 2)));
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  overscroll-behavior-inline: contain;
}

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

.service-card {
  flex: 0 0 min(76vw, 310px);
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border: 2px solid rgba(232, 201, 140, 0.86);
  border-radius: 999px 999px 10px 10px;
  background: #f7dce5;
  box-shadow: 0 22px 60px rgba(196, 96, 128, 0.2);
  cursor: pointer;
  isolation: isolate;
  scroll-snap-align: center;
}

.service-card::after {
  position: absolute;
  inset: -40% auto -40% -70%;
  z-index: 3;
  width: 46%;
  background: linear-gradient(115deg, transparent, rgba(255, 255, 255, 0.54), transparent);
  transform: skewX(-18deg);
  animation: serviceShine 8s ease-in-out infinite;
  content: "";
  pointer-events: none;
}

.service-card:nth-child(2n)::after {
  animation-delay: 1.1s;
}

.service-card:nth-child(3n)::after {
  animation-delay: 2.2s;
}

.service-card:hover,
.service-card.is-focused,
.service-card.is-active,
.service-card:focus-visible {
  border-color: rgba(232, 201, 140, 1);
  box-shadow: 0 28px 76px rgba(196, 96, 128, 0.28), 0 0 0 4px rgba(255, 255, 255, 0.46);
  transform: translateY(-5px);
  outline: 0;
}

.service-card .service-card-media,
.service-card .service-card-body,
.service-card div {
  padding: 0;
}

.service-card .service-card-media {
  position: absolute;
  inset: 0;
  min-height: 100%;
}

.service-card .service-card-media::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(24, 21, 18, 0.04) 34%, rgba(24, 21, 18, 0.56) 100%);
  content: "";
}

.service-card .service-card-media img,
.service-card-media img {
  height: 100%;
  min-height: 100%;
  aspect-ratio: auto;
  object-fit: cover;
  transition: opacity 520ms ease, transform 900ms ease;
}

.service-card .service-card-media img.is-changing {
  opacity: 0.2;
  transform: scale(1.04);
}

.service-card .service-card-body {
  position: absolute;
  inset: auto 0 0;
  z-index: 2;
  display: grid;
  justify-items: center;
  gap: 12px;
  padding: 0 18px 0;
  color: #fff;
  text-align: center;
}

.service-card .service-number {
  position: static;
  width: auto;
  height: auto;
  border: 0;
  background: transparent;
  color: rgba(255, 232, 240, 0.84);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
}

.service-card .service-card-body h3 {
  color: #ffe4b2;
  font-family: Inter, system-ui, sans-serif;
  font-size: clamp(1.3rem, 6vw, 1.75rem);
  font-weight: 700;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.34);
}

.service-line {
  display: block;
  width: 52px;
  height: 2px;
  background: #f0d094;
}

.service-detail-button {
  display: inline-flex;
  min-width: 178px;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, #edc589, #e1ad6e);
  color: #68452a;
  font: inherit;
  font-size: 0.86rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
  box-shadow: 0 14px 28px rgba(79, 45, 22, 0.18);
  cursor: pointer;
  transition: transform 360ms ease, box-shadow 360ms ease, background 360ms ease;
}

.service-detail-button:hover,
.service-detail-button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 18px 32px rgba(79, 45, 22, 0.26);
}

.service-detail-panel {
  display: none;
  max-width: 980px;
  margin: 66px auto 0;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 280ms ease, transform 280ms ease;
}

.service-rail-wrap {
  position: relative;
  max-width: 100vw;
  padding-right: 0;
  padding-bottom: 0;
  padding-left: 0;
}

.service-page {
  min-height: 100svh;
  padding: 116px 16px 72px;
  background:
    linear-gradient(rgba(255, 246, 250, 0.84), rgba(255, 238, 245, 0.9)),
    url("../images/pink-watercolor-bg.png") center / cover fixed;
}

.back-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  margin: 0 auto 18px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  color: #7f3551;
  font-weight: 800;
}

.service-page-panel {
  display: grid;
  gap: 22px;
  max-width: 1040px;
  margin: 0 auto;
  padding: clamp(18px, 4vw, 34px);
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 34px;
  background: rgba(255, 250, 252, 0.76);
  box-shadow: 0 24px 80px rgba(196, 96, 128, 0.16);
  backdrop-filter: blur(24px) saturate(1.16);
  -webkit-backdrop-filter: blur(24px) saturate(1.16);
}

.service-page-hero {
  display: grid;
  gap: 22px;
  align-items: center;
}

.service-page-hero img {
  aspect-ratio: 4 / 3;
  height: 100%;
  border-radius: 28px;
  object-fit: cover;
  box-shadow: 0 18px 50px rgba(196, 96, 128, 0.16);
}

.service-page-hero h1 {
  max-width: none;
  margin-bottom: 14px;
  color: #7f3551;
  font-size: clamp(3rem, 11vw, 6.6rem);
}

.service-page-hero p:last-child {
  color: var(--muted);
}

.service-detail-panel.is-open {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.service-detail-panel.is-changing {
  display: block;
}

.service-detail-inner {
  position: relative;
  display: grid;
  gap: 22px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 30px;
  background: rgba(255, 250, 252, 0.76);
  box-shadow: 0 24px 70px rgba(196, 96, 128, 0.18);
  backdrop-filter: blur(24px) saturate(1.16);
  -webkit-backdrop-filter: blur(24px) saturate(1.16);
}

.detail-close {
  justify-self: end;
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid rgba(127, 53, 81, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.56);
  color: #7f3551;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.detail-copy {
  text-align: center;
}

.detail-copy h3 {
  margin-bottom: 10px;
  color: #7f3551;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.4rem, 10vw, 4.8rem);
}

.detail-copy p {
  max-width: 620px;
  margin-right: auto;
  margin-left: auto;
  color: var(--muted);
}

.detail-table {
  margin-top: 10px;
  margin-bottom: 28px;
  overflow: hidden;
  border: 1px solid rgba(145, 83, 103, 0.12);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.54);
}

.detail-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 18px 22px;
  border-top: 1px solid rgba(145, 83, 103, 0.1);
  color: #5e444c;
}

.detail-row:first-child {
  border-top: 0;
}

.detail-head {
  background: rgba(248, 201, 215, 0.34);
  color: #7f3551;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.detail-row strong {
  flex: 0 0 auto;
  color: #7f3551;
}

.detail-actions {
  display: grid;
  gap: 10px;
  margin-top: 4px;
}

@keyframes serviceShine {
  0%,
  42% {
    left: -70%;
  }

  58%,
  100% {
    left: 126%;
  }
}

@media (min-width: 680px) {
  .services .section-heading::before,
  .services .section-heading::after {
    display: block;
  }

  .service-grid {
    gap: 28px;
  }

  .service-card {
    flex-basis: 330px;
    min-height: 500px;
  }

  .service-rail-wrap {
    padding-right: 0;
    padding-bottom: 0;
    padding-left: 0;
  }

  .detail-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (min-width: 960px) {
  .service-grid {
    gap: 30px;
  }

  .service-card,
  .service-card:nth-child(3n + 1) {
    grid-column: auto;
    grid-template-columns: 1fr;
    flex-basis: 360px;
    min-height: 520px;
  }

  .hero {
    min-height: clamp(620px, 74svh, 740px);
    padding-top: 112px;
  }

  .service-page-hero {
    grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  }
}

@media (max-width: 679px) {
  .service-rail-wrap {
    padding-right: 0;
    padding-left: 0;
  }

  .footer-socials {
    justify-content: flex-start;
  }
}

/* Compact service carousel */
.services.section-pad {
  padding-top: clamp(46px, 8vw, 72px);
  padding-bottom: clamp(50px, 8vw, 78px);
}

.services .section-heading {
  margin-bottom: clamp(18px, 4vw, 30px);
}

.services .section-heading h2 {
  font-size: clamp(2rem, 7vw, 3.8rem);
}

.services .section-heading p:not(.eyebrow) {
  max-width: 820px;
  margin-right: auto;
  margin-left: auto;
  font-size: clamp(0.96rem, 2vw, 1.12rem);
}

.service-grid {
  gap: 18px;
  padding-top: 4px;
  padding-bottom: 24px;
}

.service-card {
  flex-basis: min(68vw, 260px);
  min-height: 350px;
}

.service-card .service-card-body {
  gap: 8px;
}

.service-card .service-card-body h3 {
  font-size: clamp(1.12rem, 4.8vw, 1.42rem);
}

.service-detail-button {
  min-width: 142px;
  min-height: 42px;
  margin-bottom: 14px;
  padding: 0 18px;
  font-size: 0.76rem;
}

.service-number {
  font-size: 0.72rem;
}

.service-line {
  width: 42px;
}

@media (min-width: 680px) {
  .service-card {
    flex-basis: 270px;
    min-height: 370px;
  }
}

@media (min-width: 960px) {
  .service-card,
  .service-card:nth-child(3n + 1) {
    flex-basis: 292px;
    min-height: 390px;
  }
}

/* Font Awesome + navbar clarity */
.site-header {
  background: rgba(255, 246, 250, 0.86);
  backdrop-filter: blur(14px) saturate(1.12);
  -webkit-backdrop-filter: blur(14px) saturate(1.12);
}

.site-header.is-scrolled {
  background: rgba(255, 246, 250, 0.94);
}

/* Final UI polish requested: alternating backgrounds, complete Our Special, smaller headings, mobile fixes */
body {
  background: #fffafc;
}

main > section:not(.hero) {
  position: relative;
  isolation: isolate;
}

main > section:not(.hero)::before {
  position: absolute;
  inset: 0 50%;
  z-index: -1;
  width: 100vw;
  margin-left: -50vw;
  content: "";
  pointer-events: none;
}

main > section:not(.hero):nth-of-type(odd)::before {
  background:
    radial-gradient(circle at 12% 12%, rgba(248, 201, 215, 0.55), transparent 30rem),
    linear-gradient(180deg, #fff0f6 0%, #ffe7f0 100%);
}

main > section:not(.hero):nth-of-type(even)::before {
  background: linear-gradient(180deg, #fffdf9 0%, #fff9fc 100%);
}

.intro,
.services,
.testimonials,
.specialists,
.contact {
  background: transparent !important;
}

h2,
.contact-card h2,
.service-page-hero h1,
.detail-copy h3,
.price-title h3 {
  line-height: 1.04;
}

h2 {
  font-size: clamp(2rem, 6vw, 3.55rem);
}

.section-heading h2,
.services .section-heading h2,
.contact-card h2,
.compact-heading h2 {
  font-size: clamp(2rem, 5.8vw, 3.3rem);
}

.section-heading {
  max-width: 760px;
}

.section-heading > p:not(.eyebrow) {
  margin-right: auto;
  margin-left: auto;
  color: var(--muted);
}

:where(.button, .main-nav a, .nav-link, .service-dropdown button, .service-card, .testimonial-grid article, .benefit-list article, .specialist-card, .contact-card, .footer-map, .chat-option, .floating-phone, .chat-toggle) {
  transition: transform 320ms ease, box-shadow 320ms ease, background 320ms ease, border-color 320ms ease, color 220ms ease, opacity 260ms ease;
}

.benefit-list {
  grid-template-columns: 1fr;
  max-width: 1160px;
  margin-bottom: clamp(34px, 6vw, 58px);
}

.benefit-list article {
  position: relative;
  overflow: hidden;
  min-height: 150px;
  padding: clamp(20px, 3vw, 28px);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.78), rgba(255, 246, 250, 0.58)),
    radial-gradient(circle at 18% 0%, rgba(248, 201, 215, 0.46), transparent 16rem);
}

.benefit-list article::after {
  position: absolute;
  inset: -40% auto -40% -58%;
  width: 42%;
  background: linear-gradient(115deg, transparent, rgba(255, 255, 255, 0.58), transparent);
  transform: skewX(-18deg);
  content: "";
  pointer-events: none;
}

.benefit-list article:hover,
.benefit-list article:focus-within {
  border-color: rgba(232, 201, 140, 0.86);
  box-shadow: 0 26px 72px rgba(196, 96, 128, 0.2);
  transform: translateY(-4px);
}

.benefit-list article:hover::after,
.benefit-list article:focus-within::after {
  animation: serviceShine 1.05s ease both;
}

.benefit-list i {
  background: linear-gradient(135deg, rgba(217, 120, 154, 0.18), rgba(255, 255, 255, 0.58));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72), 0 16px 28px rgba(217, 120, 154, 0.12);
}

.benefit-list h3 {
  margin-bottom: 6px;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  text-transform: uppercase;
}

.team-block {
  max-width: 1160px;
  margin: 0 auto;
}

.compact-heading {
  margin-right: auto;
  margin-bottom: 22px;
  margin-left: auto;
  text-align: center;
}

.specialist-card {
  transition: transform 320ms ease, box-shadow 320ms ease, border-color 320ms ease;
}

.specialist-card::after {
  position: absolute;
  top: -22%;
  left: -76%;
  z-index: 2;
  width: 44%;
  height: 144%;
  background: linear-gradient(
    105deg,
    transparent 0%,
    rgba(255, 255, 255, 0.12) 34%,
    rgba(255, 245, 231, 0.52) 50%,
    rgba(255, 255, 255, 0.12) 66%,
    transparent 100%
  );
  content: "";
  pointer-events: none;
  transform: skewX(-18deg);
  animation: teamCardShine 6.8s ease-in-out infinite;
}

.specialist-card:nth-child(2n)::after {
  animation-delay: 1.6s;
}

.specialist-card:nth-child(3n)::after {
  animation-delay: 3.1s;
}

.specialist-card:hover,
.specialist-card:focus-within {
  border-color: rgba(232, 201, 140, 0.86);
  box-shadow: 0 28px 78px rgba(196, 96, 128, 0.22);
  transform: translateY(-5px);
}

.specialist-card:hover::after,
.specialist-card:focus-within::after {
  animation-duration: 2.4s;
}

.specialist-card img {
  transition: transform 620ms ease;
}

.specialist-card:hover img,
.specialist-card:focus-within img {
  transform: scale(1.045);
}

@keyframes teamCardShine {
  0%,
  46% {
    left: -76%;
  }

  72%,
  100% {
    left: 132%;
  }
}

.contact.section-pad {
  padding-bottom: clamp(72px, 10vw, 120px);
}

.footer-map {
  position: relative;
  display: grid;
  gap: 0;
  background: rgba(255, 255, 255, 0.44);
}

.footer-map iframe {
  pointer-events: auto;
  background: #fff;
}

.map-open-link {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  background: rgba(255, 246, 250, 0.88);
  color: #7f3551;
  font-weight: 900;
  transition: background 240ms ease, color 240ms ease;
}

.map-open-link:hover,
.map-open-link:focus-visible {
  background: #7f3551;
  color: #fff;
}

/* Booking modal: add bottom breathing space and make it scroll correctly on small screens */
.booking-modal {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  overflow-y: auto;
  padding: max(16px, env(safe-area-inset-top)) 14px max(44px, env(safe-area-inset-bottom));
}

.booking-form {
  width: min(900px, 100%);
  max-height: calc(100dvh - 44px);
  margin: clamp(18px, 4vh, 44px) auto clamp(34px, 6vh, 70px);
  overflow-y: auto;
  padding: clamp(18px, 3vw, 28px) clamp(18px, 3vw, 32px) clamp(24px, 3.5vw, 36px);
  scrollbar-width: thin;
}

.booking-form h2 {
  font-size: clamp(2rem, 5.5vw, 3.15rem);
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  min-height: 52px;
}

.booking-form textarea {
  resize: vertical;
}

.booking-close {
  transition: transform 220ms ease, background 220ms ease, color 220ms ease;
}

.booking-close:hover,
.booking-close:focus-visible {
  background: rgba(217, 120, 154, 0.92);
  color: #fff;
  transform: rotate(90deg) scale(1.04);
}

@media (min-width: 760px) {
  .booking-form {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 14px;
  }
}

@media (min-width: 780px) {
  .benefit-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1120px) {
  .benefit-list {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .benefit-list article {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 679px) {
  body {
    font-size: 15px;
  }

  .site-header {
    top: 0;
    left: 0;
    right: 0;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 0 0 18px 18px;
  }

  .brand-logo {
    width: 132px;
    height: 42px;
  }

  .nav-toggle {
    width: 40px;
    height: 40px;
    border-radius: 14px;
  }

  .main-nav.is-open {
    max-height: calc(100dvh - 74px);
    overflow-y: auto;
    padding: 8px;
  }

  .main-nav a,
  .nav-link {
    min-height: 46px;
    padding: 10px 12px;
  }

  .hero {
    min-height: auto;
    padding: 92px 14px 28px;
    gap: 14px;
  }

  .hero-content {
    padding: 22px 18px 20px;
    border-radius: 24px;
  }

  .hero-socials {
    position: static;
    justify-content: flex-start;
    margin-bottom: 16px;
  }

  .hero-content h1 {
    max-width: 9ch;
    font-size: clamp(2.8rem, 15vw, 4.4rem);
  }

  .hero-copy {
    font-size: 0.98rem;
  }

  .hero-card {
    margin-top: 0;
    padding: 16px;
    border-radius: 22px;
  }

  .hero-hours span {
    gap: 10px;
    font-size: 0.92rem;
  }

  .section-pad {
    padding: 54px 14px;
  }

  .section-heading {
    margin-bottom: 22px;
    text-align: center;
  }

  .section-heading h2,
  .services .section-heading h2,
  .contact-card h2,
  .compact-heading h2 {
    font-size: clamp(1.85rem, 9vw, 2.65rem);
  }

  .eyebrow,
  .section-kicker {
    font-size: 0.86rem;
    letter-spacing: 0.02em;
  }

  .stat-strip div,
  .testimonial-grid article,
  .benefit-list article,
  .contact-card {
    border-radius: 22px;
  }

  .benefit-list article {
    grid-template-columns: 48px 1fr;
    gap: 14px;
    min-height: 0;
    padding: 18px;
    text-align: left;
  }

  .benefit-list i {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    font-size: 1.18rem;
  }

  .service-grid {
    gap: 14px;
    padding-right: 14px;
    padding-left: 14px;
    margin-right: -14px;
    margin-left: -14px;
    scroll-padding-inline: 14px;
  }

  .service-card {
    flex-basis: min(82vw, 286px);
    min-height: 360px;
    border-radius: 999px 999px 14px 14px;
  }

  .service-detail-button {
    min-height: 44px;
    margin-bottom: 16px;
  }

  .team-block {
    margin-top: 4px;
  }

  .specialist-grid {
    gap: 14px;
  }

  .contact-card {
    gap: 18px;
    padding: 22px 18px;
    text-align: center;
  }

  .contact-actions {
    grid-template-columns: 1fr;
  }

  .site-footer {
    gap: 22px;
    padding: 38px 14px 112px;
    text-align: left;
  }

  .footer-logo {
    width: 178px;
  }

  .footer-contact-line {
    font-size: 0.9rem;
  }

  .footer-map {
    width: 100%;
    border-radius: 22px;
  }

  .footer-map iframe {
    height: 220px;
  }

  .floating-chat {
    right: 12px;
    bottom: 14px;
  }

  .floating-phone {
    right: 12px;
    bottom: 84px;
    width: 52px;
    height: 52px;
  }

  .chat-toggle {
    width: 56px;
    height: 56px;
  }

  .chat-option {
    width: 50px;
    height: 50px;
  }

  .booking-modal {
    padding: 10px 10px 36px;
  }

  .booking-form {
    width: 100%;
    max-height: calc(100dvh - 28px);
    margin-top: 10px;
    margin-bottom: 42px;
    gap: 10px;
    padding: 18px 14px 24px;
    border-radius: 24px;
  }

  .booking-form h2 {
    max-width: calc(100% - 44px);
    font-size: clamp(2rem, 12vw, 2.65rem);
  }

  .booking-form input,
  .booking-form select,
  .booking-form textarea {
    min-height: 48px;
    border-radius: 14px;
  }
}

/* Fix service carousel transition while user swipes/scrolls */
.service-grid {
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  contain: layout paint;
  cursor: grab;
}

.service-grid.is-dragging,
.service-grid.is-touching {
  cursor: grabbing;
}

.service-card {
  opacity: 0.9;
  transform: translateZ(0) scale(0.97);
  will-change: auto;
  transition:
    transform 240ms ease,
    opacity 220ms ease,
    border-color 220ms ease,
    box-shadow 240ms ease;
}

.service-grid.is-user-scrolling .service-card {
  transition: none !important;
  will-change: transform;
}

.service-card.is-near {
  opacity: 0.96;
  transform: translateZ(0) scale(0.985);
}

.service-card:hover,
.service-card:focus-visible,
.service-card.is-focused,
.service-card.is-active {
  opacity: 1;
  transform: translate3d(0, -4px, 0) scale(1);
}

.service-card.is-active .service-card-media img,
.service-card:hover .service-card-media img,
.service-card:focus-visible .service-card-media img {
  transform: scale(1.055);
}

@media (max-width: 679px) {
  .service-grid {
    scroll-padding-inline: 18px;
    padding-bottom: 34px;
  }

  .service-card {
    flex-basis: min(78vw, 286px);
    opacity: 0.9;
    transform: translateZ(0) scale(0.97);
  }

  .service-card.is-near {
    opacity: 0.96;
    transform: translateZ(0) scale(0.985);
  }

  .service-card.is-active {
    opacity: 1;
    transform: translate3d(0, -4px, 0) scale(1);
  }
}


/* ===== Ghostwriter final responsive + modal + footer fixes ===== */
.site-header {
  background: rgba(255, 255, 255, 0.82) !important;
  backdrop-filter: blur(12px) saturate(1.08) !important;
  -webkit-backdrop-filter: blur(12px) saturate(1.08) !important;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.9) !important;
  box-shadow: 0 14px 34px rgba(49, 31, 25, 0.13) !important;
}

html.modal-open,
body.modal-open {
  overflow: hidden !important;
}

body.modal-open > *:not(.booking-modal) {
  pointer-events: none;
  user-select: none;
}

body.modal-open .booking-modal {
  pointer-events: auto;
}

.booking-modal {
  padding: 12px !important;
  overflow: hidden !important;
}

.booking-form {
  position: relative;
  width: min(960px, calc(100vw - 24px)) !important;
  height: min(700px, calc(100dvh - 24px));
  max-height: none !important;
  margin: 0 !important;
  overflow: hidden !important;
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-areas:
    "eyebrow eyebrow"
    "title title"
    "name name"
    "phone email"
    "service specialist"
    "date time"
    "notes notes"
    "submit submit";
  align-content: start;
  gap: 12px 16px !important;
  padding: 22px 22px 20px !important;
}

.booking-form > .eyebrow {
  grid-area: eyebrow;
  margin-bottom: 0;
  font-size: 0.92rem;
}

.booking-form > h2 {
  grid-area: title;
  margin-bottom: 4px;
  font-size: clamp(2.15rem, 5.6vw, 3.5rem) !important;
  line-height: 0.95;
}

.booking-name { grid-area: name; }
.booking-phone { grid-area: phone; }
.booking-email { grid-area: email; }
.booking-service-field { grid-area: service; }
.booking-specialist-field { grid-area: specialist; }
.booking-date { grid-area: date; }
.booking-time { grid-area: time; }
.booking-notes { grid-area: notes; }
.booking-form > .button { grid-area: submit; min-height: 52px; }

.booking-form label {
  display: grid;
  gap: 8px;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  min-height: 50px;
}

.booking-form textarea {
  min-height: 98px;
  resize: none;
}

.service-rail-wrap {
  overflow: hidden;
}

.service-grid {
  padding-left: max(72px, calc((100vw - 1180px) / 2 + 42px)) !important;
  padding-right: 18px !important;
  margin-right: 0 !important;
}

.service-grid.is-user-interacting {
  scroll-behavior: smooth;
}

.service-card {
  transition:
    transform 520ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 420ms ease,
    filter 420ms ease,
    border-color 420ms ease,
    box-shadow 520ms ease !important;
}

.main-nav a[href$="#team"]::after {
  content: none;
}

.floating-chat.is-open + .floating-phone {
  opacity: 0;
  transform: translateY(18px) scale(0.94);
  pointer-events: none;
}

.floating-phone {
  transition: opacity 260ms ease, transform 260ms ease, background 260ms ease !important;
}

@media (max-height: 820px) {
  .booking-form {
    height: min(640px, calc(100dvh - 18px));
    gap: 10px 14px !important;
    padding: 18px 18px 16px !important;
  }

  .booking-form > h2 {
    font-size: clamp(1.95rem, 5vw, 3rem) !important;
  }

  .booking-form input,
  .booking-form select,
  .booking-form textarea {
    min-height: 46px;
  }

  .booking-form textarea {
    min-height: 84px;
  }
}

@media (max-width: 959px) {
  .service-grid {
    padding-left: 34px !important;
  }
}

@media (max-width: 679px) {
  .booking-modal {
    padding: 10px !important;
  }

  .booking-form {
    width: calc(100vw - 20px) !important;
    height: min(610px, calc(100dvh - 20px));
    grid-template-columns: 1fr;
    grid-template-areas:
      "eyebrow"
      "title"
      "name"
      "phone"
      "email"
      "service"
      "specialist"
      "date"
      "time"
      "notes"
      "submit";
    gap: 10px !important;
    padding: 18px 14px 16px !important;
    border-radius: 24px !important;
  }

  .booking-form > h2 {
    font-size: clamp(1.8rem, 9vw, 2.35rem) !important;
  }

  .booking-form label {
    font-size: 0.95rem;
  }

  .booking-form input,
  .booking-form select,
  .booking-form textarea {
    min-height: 44px;
    border-radius: 14px !important;
  }

  .booking-form textarea {
    min-height: 74px;
  }

  .service-grid {
    padding-left: 18px !important;
    padding-right: 16px !important;
  }

  .site-footer {
    gap: 18px !important;
  }

  .footer-info {
    display: grid;
    grid-template-columns: 110px 1fr;
    column-gap: 12px;
    row-gap: 8px;
    align-items: start;
  }

  .footer-logo {
    grid-column: 1;
    grid-row: 1 / span 2;
    width: 100%;
    max-width: 110px;
    align-self: start;
  }

  .footer-contact-line {
    grid-column: 2;
    font-size: 0.88rem;
  }

  .footer-socials {
    grid-column: 2;
    justify-self: end;
    display: flex;
    gap: 8px;
    margin-top: 4px;
  }

  .footer-socials a {
    width: 34px;
    height: 34px;
  }

  .footer-socials img {
    width: 18px;
    height: 18px;
  }

  .footer-socials a[aria-label="Zalo"] img {
    width: 22px;
    height: 22px;
  }
}

/* ===== v4 refinements ===== */
.testimonials .section-heading {
  text-align: left !important;
  margin-left: 0 !important;
  margin-right: auto !important;
}

.booking-modal {
  align-content: center;
  justify-items: center;
  overflow-y: auto !important;
  padding: 16px 12px !important;
}

.booking-form {
  width: min(960px, calc(100vw - 24px)) !important;
  height: auto !important;
  max-height: calc(100dvh - 32px) !important;
  overflow-y: auto !important;
  overscroll-behavior: contain;
  scrollbar-width: thin;
}

.booking-form::-webkit-scrollbar {
  width: 10px;
}

.booking-form::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(217, 120, 154, 0.55);
}

.booking-form::-webkit-scrollbar-track {
  background: rgba(255, 244, 248, 0.55);
}

.chat-option span {
  display: flex;
  align-items: center;
  justify-content: center;
}

.chat-option span img,
.chat-option[aria-label="Chat on Zalo"] span img {
  display: block;
  width: 24px;
  height: 24px;
  object-fit: contain;
  transform: none !important;
  margin: 0 auto;
}

.chat-option[aria-label="Chat on Zalo"] span img {
  width: 28px;
  height: 28px;
}

@media (min-width: 1024px) and (max-width: 1536px) {
  .hero {
    grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.82fr);
    gap: 24px;
    padding-top: 110px;
    padding-left: clamp(28px, 4vw, 56px);
    padding-right: clamp(28px, 4vw, 56px);
  }

  .hero-content {
    max-width: 100%;
    padding: 30px;
  }

  .hero-card {
    margin-top: 0;
  }

  .booking-form {
    width: min(900px, calc(100vw - 48px)) !important;
    max-height: calc(100dvh - 42px) !important;
  }
}

@media (max-width: 679px) {
  .benefit-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 26px;
  }

  .benefit-list article {
    grid-template-columns: 1fr;
    justify-items: center;
    align-content: start;
    gap: 10px;
    min-height: 176px;
    padding: 14px 12px;
    text-align: center;
    border-radius: 20px;
  }

  .benefit-list article > div {
    display: grid;
    gap: 6px;
    align-content: start;
  }

  .benefit-list i {
    width: 50px;
    height: 50px;
    border-radius: 16px;
    font-size: 1.2rem;
  }

  .benefit-list h3 {
    margin-bottom: 0;
    font-size: 0.98rem;
    line-height: 1.2;
  }

  .benefit-list p {
    font-size: 0.76rem;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

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

  .footer-info {
    grid-template-columns: 96px 1fr;
    column-gap: 10px;
    row-gap: 6px;
  }

  .footer-logo {
    max-width: 96px;
    margin-bottom: 0;
  }

  .footer-contact-line {
    gap: 8px;
    font-size: 0.9rem !important;
    line-height: 1.35;
  }

  .footer-contact-line i {
    width: 18px;
    min-width: 18px;
  }

  .footer-socials {
    justify-self: end;
    gap: 6px !important;
    margin-top: 4px !important;
    padding: 6px 8px;
    border: 1px solid rgba(255, 255, 255, 0.64);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.34);
    box-shadow: 0 14px 34px rgba(127, 53, 81, 0.13), inset 0 1px 0 rgba(255, 255, 255, 0.62);
    backdrop-filter: blur(16px) saturate(1.16);
    -webkit-backdrop-filter: blur(16px) saturate(1.16);
  }

  .footer-socials a {
    width: 34px !important;
    height: 34px !important;
    background: rgba(255, 255, 255, 0.2);
  }

  .footer-socials img {
    width: 22px !important;
    height: 22px !important;
  }

  .footer-socials a[aria-label="Zalo"] img {
    width: 28px !important;
    height: 28px !important;
  }

  .booking-modal {
    align-content: start;
    padding: 10px !important;
  }

  .booking-form {
    width: calc(100vw - 20px) !important;
    max-height: calc(100dvh - 20px) !important;
    padding: 18px 14px 18px !important;
  }
}

/* ===== v5 fixes: laptop form scrollbar, responsive tuning, mobile header CTA ===== */
@media (min-width: 992px) {
  .booking-form {
    overflow-y: auto !important;
    scrollbar-width: none !important;
    -ms-overflow-style: none !important;
  }

  .booking-form::-webkit-scrollbar {
    display: none !important;
  }
}

@media (min-width: 768px) and (max-width: 1199px) {
  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(285px, 340px);
    gap: 18px;
    min-height: auto;
    padding-top: 110px;
    padding-right: 20px;
    padding-left: 20px;
    padding-bottom: 28px;
  }

  .hero-content {
    max-width: none;
    padding: 24px;
  }

  .hero-card {
    margin-top: 0;
    padding: 18px;
  }

  h1 {
    font-size: clamp(3.8rem, 7.4vw, 5.15rem);
  }

  .hero-copy {
    max-width: 100%;
    font-size: 1rem;
  }

  .intro-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

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

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

  .section-pad {
    padding-top: 78px;
    padding-bottom: 78px;
  }
}

@media (max-width: 959px) {
  .site-header {
    grid-template-columns: minmax(0, 1fr) auto auto;
    gap: 8px;
    padding: 8px 10px;
  }

  .brand-logo {
    width: clamp(112px, 28vw, 150px);
    height: 44px;
  }

  .header-cta {
    display: inline-flex;
    min-height: 40px;
    align-items: center;
    justify-content: center;
    padding: 0 14px;
    border-radius: 999px;
    font-size: 0.92rem;
    font-weight: 800;
    white-space: nowrap;
  }

  .nav-toggle {
    width: 40px;
    height: 40px;
  }

  .main-nav.is-open {
    grid-column: 1 / -1;
  }
}

@media (max-width: 679px) {
  .site-header {
    top: 10px;
    left: 10px;
    right: 10px;
    gap: 6px;
    padding: 8px;
  }

  .header-cta {
    min-height: 38px;
    padding: 0 12px;
    font-size: 0.84rem;
  }

  .nav-toggle {
    width: 38px;
    height: 38px;
    border-radius: 14px;
  }
}

@media (max-width: 420px) {
  .brand-logo {
    width: 102px;
    height: 40px;
  }

  .header-cta {
    padding: 0 10px;
    font-size: 0.8rem;
  }
}

/* ===== v6 fixes: mobile navbar order + 1024px white-gap correction ===== */
html,
body {
  max-width: 100%;
  overflow-x: hidden !important;
}

main,
.hero {
  width: 100%;
  max-width: 100%;
}

.hero-media,
.hero-overlay {
  left: 0;
  right: 0;
  width: 100%;
}

.hero-media img {
  width: 100%;
  min-width: 100%;
}

@media (max-width: 959px) {
  .site-header {
    grid-template-columns: minmax(0, 1fr) auto auto !important;
  }

  .brand {
    order: 1;
    min-width: 0;
  }

  .header-cta {
    order: 2;
    display: inline-flex !important;
    justify-self: end;
  }

  .nav-toggle {
    order: 3;
    justify-self: end;
  }

  .main-nav {
    order: 4;
  }

  .main-nav.is-open {
    grid-column: 1 / -1;
  }
}

@media (min-width: 960px) and (max-width: 1199px) {
  .site-header {
    width: 100% !important;
    max-width: 100% !important;
    left: 0 !important;
    right: 0 !important;
    transform: none !important;
    padding-left: clamp(20px, 3vw, 34px) !important;
    padding-right: clamp(20px, 3vw, 34px) !important;
  }

  .hero {
    width: 100vw !important;
    max-width: 100vw !important;
    margin-left: calc(50% - 50vw) !important;
    margin-right: calc(50% - 50vw) !important;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 330px) !important;
    gap: 18px !important;
    padding-left: clamp(24px, 3vw, 34px) !important;
    padding-right: clamp(24px, 3vw, 34px) !important;
    overflow: hidden !important;
  }

  .hero-media,
  .hero-overlay {
    width: 100vw !important;
    max-width: 100vw !important;
  }

  .hero-media img {
    width: 100vw !important;
    min-width: 100vw !important;
    object-position: center center !important;
  }

  .hero-content {
    min-width: 0;
  }

  .hero-card {
    min-width: 0;
  }
}

@media (min-width: 960px) and (max-width: 1060px) {
  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(250px, 310px) !important;
    gap: 16px !important;
    padding-top: 104px !important;
    padding-left: 20px !important;
    padding-right: 20px !important;
  }

  .hero-content {
    padding: 24px !important;
  }

  .hero-card {
    padding: 16px !important;
  }

  .hero-card,
  .hero-copy,
  .hero-hours {
    font-size: 0.94rem;
  }

  h1 {
    font-size: clamp(3.8rem, 7.2vw, 4.85rem) !important;
  }
}

@media (max-width: 420px) {
  .site-header {
    grid-template-columns: minmax(0, 1fr) auto auto !important;
  }

  .brand-logo {
    width: 92px !important;
  }

  .header-cta {
    min-height: 36px !important;
    padding: 0 10px !important;
    font-size: 0.78rem !important;
  }

  .nav-toggle {
    width: 36px !important;
    height: 36px !important;
  }
}

/* ===== v7 mobile navbar alignment fix ===== */
@media (max-width: 959px) {
  .site-header {
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    border-right: 0 !important;
    border-left: 0 !important;
    border-top: 0 !important;
    border-radius: 0 0 18px 18px !important;
    grid-template-columns: auto 1fr auto auto !important;
    justify-content: stretch !important;
    align-items: center !important;
    gap: 8px !important;
    padding: 8px 12px !important;
    transform: none !important;
  }

  .brand {
    grid-column: 1;
    justify-self: start;
  }

  .brand-logo {
    width: 112px !important;
    height: 42px !important;
    object-fit: contain;
  }

  .header-cta {
    grid-column: 3;
    justify-self: end;
    min-height: 38px !important;
    padding: 0 14px !important;
    font-size: 0.86rem !important;
    line-height: 1 !important;
  }

  .nav-toggle {
    grid-column: 4;
    justify-self: end;
    width: 38px !important;
    height: 38px !important;
    border-radius: 14px !important;
  }

  .main-nav.is-open {
    grid-column: 1 / -1 !important;
    width: 100% !important;
    margin-top: 6px !important;
  }

  .hero {
    padding-top: 92px !important;
  }
}

@media (max-width: 420px) {
  .site-header {
    gap: 6px !important;
    padding: 8px 10px !important;
  }

  .brand-logo {
    width: 96px !important;
    height: 40px !important;
  }

  .header-cta {
    padding: 0 12px !important;
    font-size: 0.82rem !important;
  }

  .nav-toggle {
    width: 36px !important;
    height: 36px !important;
  }
}

/* ===== v8 hard fix: mobile navbar flush top + no right offset ===== */
@media (max-width: 959px) {
  .site-header {
    position: fixed !important;
    inset: 0 0 auto 0 !important;
    left: 0 !important;
    right: 0 !important;
    top: 0 !important;
    width: auto !important;
    max-width: none !important;
    min-width: 0 !important;
    margin: 0 !important;
    box-sizing: border-box !important;
    border-top: 0 !important;
    border-right: 0 !important;
    border-left: 0 !important;
    border-radius: 0 0 16px 16px !important;
    display: grid !important;
    grid-template-columns: auto minmax(0, 1fr) auto auto !important;
    align-items: center !important;
    justify-items: stretch !important;
    column-gap: 8px !important;
    row-gap: 0 !important;
    padding: 6px 10px !important;
    transform: none !important;
  }

  .brand {
    grid-column: 1 !important;
    justify-self: start !important;
    min-width: 0 !important;
  }

  .brand-logo {
    width: 104px !important;
    height: 42px !important;
    object-fit: contain !important;
    object-position: left center !important;
  }

  .header-cta {
    grid-column: 3 !important;
    justify-self: end !important;
    margin: 0 !important;
    min-height: 38px !important;
    padding: 0 14px !important;
    border-radius: 999px !important;
    font-size: 0.86rem !important;
    line-height: 1 !important;
    white-space: nowrap !important;
  }

  .nav-toggle {
    grid-column: 4 !important;
    justify-self: end !important;
    margin: 0 !important;
    width: 38px !important;
    height: 38px !important;
    min-width: 38px !important;
    border-radius: 14px !important;
  }

  .main-nav.is-open {
    grid-column: 1 / -1 !important;
    width: 100% !important;
    margin: 6px 0 0 !important;
  }

  .hero {
    padding-top: 84px !important;
  }
}

@media (max-width: 390px) {
  .site-header {
    column-gap: 6px !important;
    padding: 6px 8px !important;
  }

  .brand-logo {
    width: 88px !important;
    height: 38px !important;
  }

  .header-cta {
    min-height: 36px !important;
    padding: 0 11px !important;
    font-size: 0.8rem !important;
  }

  .nav-toggle {
    width: 36px !important;
    height: 36px !important;
    min-width: 36px !important;
  }
}


/* Highlight current opening day based on Auckland local time */
.hero-hours span {
  position: relative;
  border-radius: 16px;
  transition: transform 260ms ease, background 260ms ease, box-shadow 260ms ease, color 260ms ease;
}

.hero-hours span.is-today {
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 12px 28px rgba(217, 120, 154, 0.18), inset 0 0 0 1px rgba(217, 120, 154, 0.22);
  color: #7f3551;
  transform: translateY(-3px) scale(1.015);
}

.hero-hours span.is-today::after {
  content: "Today";
  position: absolute;
  right: 10px;
  top: 50%;
  padding: 3px 8px;
  border-radius: 999px;
  background: rgba(217, 120, 154, 0.14);
  color: #7f3551;
  font-size: 0.66rem;
  font-weight: 900;
  line-height: 1;
  transform: translateY(-50%);
}

.hero-hours span.is-today em {
  padding-right: 58px;
}

@media (max-width: 520px) {
  .hero-hours span.is-today::after {
    right: 8px;
    font-size: 0.6rem;
    padding: 3px 6px;
  }

  .hero-hours span.is-today em {
    padding-right: 48px;
  }
}


/* v10: opening-hours spacing + Monday-first order refinement */
.hero-hours span {
  padding: 7px 12px !important;
}

.hero-hours span strong {
  padding-left: 2px;
}

.hero-hours span.is-today {
  padding: 8px 14px !important;
}

.hero-hours span.is-today::after {
  right: 10px !important;
}

.hero-hours span.is-today em {
  padding-right: 64px !important;
}

@media (max-width: 520px) {
  .hero-hours span {
    padding: 7px 10px !important;
  }

  .hero-hours span.is-today {
    padding: 8px 12px !important;
  }

  .hero-hours span.is-today em {
    padding-right: 54px !important;
  }
}

@media (max-width: 520px) {
  .footer-credit {
    gap: 4px;
    padding: 10px 14px;
    border-radius: 18px;
    font-size: 0.76rem;
  }

  .footer-credit span {
    width: 100%;
  }
}

/* v11: softer spa typography and light pink team background */
.hero-content h1,
.intro-copy h2,
.section-heading h2,
.services .section-heading h2,
.service-page-hero h1,
.detail-copy h3,
.compact-heading h2 {
  font-family: "Cormorant Garamond", "Playfair Display", Georgia, serif !important;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 0.92;
}

.hero-content h1 {
  max-width: 780px;
  color: #211916;
  font-size: clamp(4.4rem, 13vw, 8.4rem);
}

.section-heading h2,
.services .section-heading h2,
.compact-heading h2 {
  color: #211916;
  font-size: clamp(3.1rem, 9vw, 6.1rem);
}

.team-block {
  padding: clamp(26px, 5vw, 54px);
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 250, 252, 0.96) 42%, rgba(255, 230, 239, 0.78) 100%);
  box-shadow: 0 24px 70px rgba(196, 96, 128, 0.12);
}

/* v12: refined hero title treatment */
.hero-content h1 {
  background:
    linear-gradient(100deg, #181512 0%, #181512 34%, #7f3551 48%, #241917 62%, #181512 100%);
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 18px 48px rgba(127, 53, 81, 0.12);
  animation:
    heroTitleReveal 1.1s cubic-bezier(0.22, 1, 0.36, 1) both,
    heroTitleLustre 8.5s ease-in-out 1.1s infinite;
}

@keyframes heroTitleReveal {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroTitleLustre {
  0%,
  42% {
    background-position: 0% 50%;
  }

  64%,
  100% {
    background-position: 100% 50%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-content h1 {
    animation: none !important;
  }
}

/* v13: booking date/time refinement */
[data-booking-open],
.header-cta,
.hero-actions .button-primary {
  font-weight: 900 !important;
}

.booking-date .select-wrap,
.booking-time input {
  width: 100%;
}

.booking-date select:invalid {
  border-color: rgba(217, 120, 154, 0.52);
}

/* v15: booking day select + softer gold hero title */
.hero-content h1 {
  font-family: "Playfair Display", Georgia, serif !important;
  font-weight: 600 !important;
  line-height: 0.96;
  background:
    linear-gradient(100deg, #211916 0%, #211916 36%, #c9a24c 48%, #f1d486 54%, #2a1f18 66%, #211916 100%);
  background-size: 240% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 16px 42px rgba(201, 162, 76, 0.12);
  animation:
    heroTitleReveal 1.05s cubic-bezier(0.22, 1, 0.36, 1) both,
    heroTitleLustre 7.6s ease-in-out 1.1s infinite;
}

/* v14: dynamic content hardening for future services/team edits */
.service-card,
.specialist-card {
  min-width: 0;
}

.service-grid {
  align-items: stretch;
  flex-wrap: nowrap;
}

.service-card {
  contain: layout paint;
}

.service-card .service-card-body,
.specialist-card {
  overflow-wrap: anywhere;
  word-break: normal;
}

.service-card .service-card-body h3 {
  max-width: 100%;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-height: 1.05;
}

.service-card .service-detail-button {
  max-width: min(100%, 190px);
  white-space: normal;
}

.specialist-grid {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
  justify-content: center;
  align-items: stretch;
}

.specialist-grid.specialist-count-1 {
  grid-template-columns: minmax(0, min(100%, 360px));
}

.specialist-grid.specialist-count-2 {
  grid-template-columns: repeat(2, minmax(0, min(100%, 360px)));
}

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

.specialist-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
}

.specialist-card img {
  flex: 0 0 auto;
}

.specialist-card h3 {
  max-width: 100%;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-height: 1.12;
}

.specialist-card p {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  line-height: 1.45;
}

@media (max-width: 820px) {
  .specialist-grid.specialist-count-2,
  .specialist-grid.specialist-count-3 {
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr));
  }
}

@media (max-width: 560px) {
  .specialist-grid,
  .specialist-grid.specialist-count-1,
  .specialist-grid.specialist-count-2,
  .specialist-grid.specialist-count-3 {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* v16: Allura homepage feature headings */
.hero-content h1,
.intro-copy h2,
.section-heading h2,
.team-block .section-heading h2 {
  font-family: "Allura", cursive !important;
  font-weight: 400 !important;
  letter-spacing: 0;
  text-transform: none;
}

.hero-content h1 {
  max-width: 12ch;
  font-size: clamp(4.8rem, 16vw, 8.8rem);
  line-height: 0.72;
}

.intro-copy h2,
.section-heading h2,
.team-block .section-heading h2 {
  font-size: clamp(4.1rem, 12vw, 7.6rem);
  line-height: 0.82;
}

.section-heading h2 {
  margin-bottom: 12px;
}

@media (max-width: 560px) {
  .hero-content h1 {
    font-size: clamp(4.1rem, 23vw, 6.8rem);
  }

  .intro-copy h2,
  .section-heading h2,
  .team-block .section-heading h2 {
    font-size: clamp(3.6rem, 19vw, 5.8rem);
  }
}

/* v17: lighter gold lustre and calmer Allura heading scale */
.hero-content h1 {
  max-width: 13ch;
  font-size: clamp(3.9rem, 11.5vw, 6.9rem);
  line-height: 0.82;
  background:
    linear-gradient(100deg, #211916 0%, #211916 42%, #6f5b32 49%, #d2b86b 52%, #2b2119 58%, #211916 100%);
  background-size: 280% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 10px 28px rgba(201, 162, 76, 0.07);
  animation:
    heroTitleReveal 1.05s cubic-bezier(0.22, 1, 0.36, 1) both,
    heroTitleLustre 10.5s ease-in-out 1.2s infinite;
}

.intro-copy h2,
.section-heading h2,
.team-block .section-heading h2 {
  font-size: clamp(3.1rem, 8.4vw, 5.7rem);
  line-height: 0.9;
}

@media (max-width: 560px) {
  .hero-content h1 {
    font-size: clamp(3.45rem, 19vw, 5.45rem);
  }

  .intro-copy h2,
  .section-heading h2,
  .team-block .section-heading h2 {
    font-size: clamp(2.9rem, 14.5vw, 4.55rem);
  }
}

/* v18: booking day/time split and service-style team borders */
.booking-form {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important;
  grid-template-areas:
    "eyebrow eyebrow"
    "title title"
    "name name"
    "phone email"
    "service specialist"
    "date time"
    "notes notes"
    "submit submit" !important;
}

.booking-date {
  grid-area: date !important;
}

.booking-time {
  grid-area: time !important;
  grid-column: auto !important;
}

.booking-date,
.booking-time {
  min-width: 0;
  align-self: stretch;
}

.booking-date .select-wrap,
.booking-time input {
  display: block;
  width: 100%;
}

.booking-form label {
  min-width: 0;
  line-height: 1.15;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  max-width: 100%;
}

.specialist-card {
  border: 1px solid rgba(255, 255, 255, 0.72) !important;
  border-radius: 26px !important;
  background: rgba(255, 255, 255, 0.58) !important;
  box-shadow: 0 18px 48px rgba(196, 96, 128, 0.14) !important;
}

.specialist-card:hover,
.specialist-card:focus-within {
  border-color: rgba(232, 201, 140, 0.86) !important;
  box-shadow: 0 26px 72px rgba(196, 96, 128, 0.2) !important;
}

@media (max-width: 719px) {
  .booking-form {
    grid-template-columns: 1fr !important;
    grid-template-areas:
      "eyebrow"
      "title"
      "name"
      "phone"
      "email"
      "service"
      "specialist"
      "date"
      "time"
      "notes"
      "submit" !important;
  }
}

/* v19: copyright line outside the footer */
.footer-credit {
  display: block !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 8px 18px 12px !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: rgba(255, 238, 245, 0.76) !important;
  box-shadow: none !important;
  color: rgba(127, 53, 81, 0.68) !important;
  font-size: 0.74rem !important;
  font-weight: 600 !important;
  line-height: 1.35 !important;
  text-align: center !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

@media (max-width: 520px) {
  .footer-credit {
    padding: 7px 14px 10px !important;
    font-size: 0.68rem !important;
  }
}

/* v20: return feature headings to the opening-hours sans style and center booking form */
.hero-content h1,
.intro-copy h2,
.section-heading h2,
.services .section-heading h2,
.team-block .section-heading h2,
.compact-heading h2 {
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
  font-weight: 800 !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
  line-height: 1.02 !important;
}

.hero-content h1 {
  max-width: 720px !important;
  font-size: clamp(3rem, 9vw, 5.6rem) !important;
}

.intro-copy h2,
.section-heading h2,
.services .section-heading h2,
.team-block .section-heading h2,
.compact-heading h2 {
  font-size: clamp(2.15rem, 5.8vw, 4.1rem) !important;
}

.booking-modal {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 18px !important;
}

.booking-form {
  justify-self: center !important;
  align-self: center !important;
  margin: auto !important;
}

@media (max-width: 560px) {
  .hero-content h1 {
    font-size: clamp(2.65rem, 15vw, 4.1rem) !important;
  }

  .intro-copy h2,
  .section-heading h2,
  .services .section-heading h2,
  .team-block .section-heading h2,
  .compact-heading h2 {
    font-size: clamp(1.95rem, 10.5vw, 3rem) !important;
  }
}

/* v21: refined spa hero title */
.hero-content h1 {
  max-width: 760px !important;
  font-family: "Cormorant Garamond", "Playfair Display", Georgia, serif !important;
  font-size: clamp(3.55rem, 9.2vw, 6.35rem) !important;
  font-weight: 500 !important;
  line-height: 0.9 !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
  background:
    linear-gradient(105deg, #2a201d 0%, #2a201d 43%, #8c743d 49%, #d8c47a 52%, #33261f 58%, #2a201d 100%) !important;
  background-size: 310% 100% !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  color: transparent !important;
  text-shadow: 0 12px 34px rgba(145, 111, 58, 0.08) !important;
  animation:
    heroTitleReveal 1.05s cubic-bezier(0.22, 1, 0.36, 1) both,
    heroTitleLustre 12s ease-in-out 1.25s infinite !important;
}

@media (max-width: 560px) {
  .hero-content h1 {
    font-size: clamp(3rem, 16vw, 4.75rem) !important;
    line-height: 0.94 !important;
  }
}

/* v22: add breathing room between hero title lines */
.hero-content h1 {
  line-height: 1.02 !important;
}

@media (max-width: 560px) {
  .hero-content h1 {
    line-height: 1.04 !important;
  }
}

/* v23: delicate gold hero lustre and glass footer social icons */
.hero-content h1 {
  background:
    linear-gradient(105deg, #2a201d 0%, #2a201d 44%, #705a2e 49%, #d6bd72 51%, #352820 56%, #2a201d 100%) !important;
  background-size: 340% 100% !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  color: transparent !important;
  text-shadow: 0 10px 30px rgba(176, 139, 70, 0.07) !important;
  animation:
    heroTitleReveal 1.05s cubic-bezier(0.22, 1, 0.36, 1) both,
    heroTitleLustre 13.5s ease-in-out 1.25s infinite !important;
}

/* v24: visible but soft hero gold sweep */
.hero-content h1 {
  background:
    linear-gradient(100deg, #2a201d 0%, #2a201d 36%, #8a7138 45%, #ead184 49%, #fff0b4 51%, #b69648 55%, #352820 64%, #2a201d 100%) !important;
  background-size: 260% 100% !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  color: transparent !important;
  text-shadow: 0 10px 30px rgba(176, 139, 70, 0.08) !important;
  will-change: background-position;
  animation:
    heroTitleReveal 1.05s cubic-bezier(0.22, 1, 0.36, 1) both,
    heroGoldSweep 6.8s ease-in-out 1.1s infinite !important;
}

@keyframes heroGoldSweep {
  0%,
  18% {
    background-position: 120% 50%;
  }

  58%,
  100% {
    background-position: -120% 50%;
  }
}

/* v25: shared refined heading font and service-card-like hero shine */
.hero-content h1,
.intro-copy h2,
.section-heading h2,
.services .section-heading h2,
.team-block .section-heading h2,
.compact-heading h2 {
  font-family: "Cormorant Garamond", "Playfair Display", Georgia, serif !important;
  font-weight: 600 !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
  line-height: 0.98 !important;
}

.hero-content h1 {
  font-weight: 700 !important;
  background:
    linear-gradient(105deg, #2a201d 0%, #2a201d 39%, #6b5a51 46%, #fff9ef 50%, #8b766c 54%, #352820 62%, #2a201d 100%) !important;
  background-size: 280% 100% !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  color: transparent !important;
  text-shadow: 0 10px 30px rgba(255, 245, 231, 0.08) !important;
  animation:
    heroTitleReveal 1.05s cubic-bezier(0.22, 1, 0.36, 1) both,
    heroSoftShine 7.2s ease-in-out 1.1s infinite !important;
}

.intro-copy h2,
.section-heading h2,
.services .section-heading h2,
.team-block .section-heading h2,
.compact-heading h2 {
  font-size: clamp(3rem, 8vw, 5.7rem) !important;
}

@keyframes heroSoftShine {
  0%,
  22% {
    background-position: 120% 50%;
  }

  62%,
  100% {
    background-position: -120% 50%;
  }
}

@media (max-width: 560px) {
  .intro-copy h2,
  .section-heading h2,
  .services .section-heading h2,
  .team-block .section-heading h2,
  .compact-heading h2 {
    font-size: clamp(2.55rem, 13vw, 4rem) !important;
  }
}

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

.footer-socials a {
  width: 50px !important;
  height: 50px !important;
  border: 1px solid rgba(255, 255, 255, 0.68) !important;
  border-radius: 999px !important;
  background: rgba(255, 255, 255, 0.42) !important;
  box-shadow: 0 14px 32px rgba(127, 53, 81, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.72) !important;
  backdrop-filter: blur(16px) saturate(1.18) !important;
  -webkit-backdrop-filter: blur(16px) saturate(1.18) !important;
}

.footer-socials a:hover,
.footer-socials a:focus-visible {
  background: rgba(255, 255, 255, 0.58) !important;
  box-shadow: 0 18px 38px rgba(127, 53, 81, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.84) !important;
  transform: translateY(-2px);
}

.footer-socials img {
  width: 25px !important;
  height: 25px !important;
}

.footer-socials a[aria-label="Zalo"] img {
  width: 29px !important;
  height: 29px !important;
  transform: none !important;
}

@media (max-width: 520px) {
  .footer-socials {
    justify-content: center !important;
    gap: 10px !important;
  }

  .footer-socials a {
    width: 46px !important;
    height: 46px !important;
  }
}

/* v26: move shine from title text to the full hero content card */
.hero-content {
  position: relative;
  overflow: hidden;
}

.hero-content > * {
  position: relative;
  z-index: 1;
}

.hero-content h1 {
  background: none !important;
  -webkit-background-clip: initial !important;
  background-clip: initial !important;
  color: #2a201d !important;
  text-shadow: 0 12px 34px rgba(49, 31, 25, 0.1) !important;
  animation: heroTitleReveal 1.05s cubic-bezier(0.22, 1, 0.36, 1) both !important;
}

.hero-content::after {
  position: absolute;
  top: -24%;
  left: -72%;
  z-index: 0;
  width: 42%;
  height: 148%;
  background: linear-gradient(
    105deg,
    transparent 0%,
    rgba(255, 255, 255, 0.08) 34%,
    rgba(255, 248, 235, 0.52) 50%,
    rgba(255, 255, 255, 0.1) 66%,
    transparent 100%
  );
  content: "";
  pointer-events: none;
  transform: skewX(-18deg);
  animation: heroContentShine 7.6s ease-in-out 1.2s infinite;
}

@keyframes heroContentShine {
  0%,
  44% {
    left: -72%;
  }

  72%,
  100% {
    left: 128%;
  }
}

/* v27: controlled intro title lines and tighter refined headings */
.intro-title span {
  display: block;
}

.intro-copy h2,
.section-heading h2,
.services .section-heading h2,
.team-block .section-heading h2,
.compact-heading h2,
.hero-content h1 {
  letter-spacing: -0.01em !important;
  word-spacing: -0.035em !important;
}

.intro-copy h2 {
  max-width: 12.5ch;
  font-size: clamp(3rem, 7.2vw, 5.25rem) !important;
}

@media (max-width: 560px) {
  .intro-copy h2 {
    max-width: 11.5ch;
    font-size: clamp(2.55rem, 12vw, 3.75rem) !important;
  }
}

/* v28: hero card spacing, immediate modal blur, stronger card shine */
.hero-content {
  padding-top: clamp(78px, 8vw, 92px) !important;
}

.hero-socials {
  z-index: 3;
}

.hero-content::after {
  top: -28% !important;
  left: -76% !important;
  z-index: 0 !important;
  width: 54% !important;
  height: 156% !important;
  background: linear-gradient(
    105deg,
    transparent 0%,
    rgba(255, 255, 255, 0.1) 32%,
    rgba(255, 248, 235, 0.7) 50%,
    rgba(255, 255, 255, 0.12) 68%,
    transparent 100%
  ) !important;
  animation: heroContentShineFast 5.8s ease-in-out 0.35s infinite !important;
}

@keyframes heroContentShineFast {
  0%,
  16% {
    left: -76%;
  }

  48%,
  100% {
    left: 132%;
  }
}

.booking-modal {
  transition: none !important;
}

.booking-backdrop {
  background: rgba(72, 39, 52, 0.3) !important;
  backdrop-filter: blur(14px) !important;
  -webkit-backdrop-filter: blur(14px) !important;
}

.booking-form {
  transition: transform 260ms ease !important;
}

.intro-title {
  max-width: none !important;
  line-height: 1.08 !important;
}

.intro-title span {
  display: block;
  line-height: 1.08;
}

@media (min-width: 760px) {
  .intro-title span {
    white-space: nowrap;
  }
}

@media (max-width: 560px) {
  .hero-content {
    padding-top: 74px !important;
  }

  .intro-title {
    line-height: 1.12 !important;
  }

  .intro-title span {
    line-height: 1.12;
  }
}

/* v29: hard fix hero social placement, intro overlap, and frequent hero-card shine */
.hero-content {
  padding-top: clamp(96px, 9vw, 112px) !important;
}

.hero-socials {
  position: absolute !important;
  top: 22px !important;
  right: 22px !important;
  left: auto !important;
  z-index: 4 !important;
  display: flex !important;
  justify-content: flex-end !important;
  margin: 0 !important;
}

.hero-content .eyebrow {
  display: block;
  max-width: calc(100% - 8px);
  margin-top: 0 !important;
  margin-right: 0 !important;
  clear: both;
}

.hero-content::after {
  animation: heroContentShineMore 3.8s ease-in-out 0.2s infinite !important;
}

@keyframes heroContentShineMore {
  0%,
  8% {
    left: -80%;
  }

  42%,
  100% {
    left: 136%;
  }
}

.intro-grid,
.intro-copy {
  min-width: 0;
}

.intro-title {
  max-width: 100% !important;
  overflow: visible;
  line-height: 1.12 !important;
}

.intro-title span {
  display: block;
  line-height: 1.12 !important;
}

@media (max-width: 1180px) {
  .intro-grid {
    grid-template-columns: 1fr !important;
    gap: clamp(20px, 4vw, 34px) !important;
  }

  .intro-copy {
    max-width: 100% !important;
  }

  .stat-strip {
    position: relative !important;
    z-index: 1;
    width: 100% !important;
    margin-top: 0 !important;
  }
}

@media (max-width: 560px) {
  .hero-content {
    padding-top: 86px !important;
  }

  .hero-socials {
    top: 18px !important;
    right: 18px !important;
    gap: 8px !important;
  }

  .hero-socials a {
    width: 38px !important;
    height: 38px !important;
  }

  .hero-socials img {
    width: 20px !important;
    height: 20px !important;
  }

  .hero-socials a[aria-label="Zalo"] img {
    width: 26px !important;
    height: 26px !important;
  }
}

/* v30: rebalance hero content and keep intro stats below copy */
.hero-content {
  padding: clamp(60px, 6vw, 72px) clamp(22px, 3vw, 30px) clamp(22px, 3vw, 30px) !important;
}

.hero-socials {
  top: 18px !important;
  right: 18px !important;
}

.hero-content .eyebrow {
  margin-bottom: 10px !important;
}

.hero-content h1 {
  margin-bottom: 18px !important;
}

.hero-copy {
  margin-bottom: 24px !important;
}

.intro-grid {
  grid-template-columns: 1fr !important;
  gap: clamp(28px, 5vw, 46px) !important;
}

.intro-copy {
  max-width: 100% !important;
}

.intro-copy p {
  max-width: 820px;
}

.stat-strip {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  align-self: auto !important;
  width: 100% !important;
  margin-top: 0 !important;
}

@media (max-width: 760px) {
  .stat-strip {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 560px) {
  .hero-content {
    padding: 66px 18px 22px !important;
  }

  .hero-socials {
    top: 16px !important;
    right: 16px !important;
  }
}

/* v31: align hero and intro to approved composition */
.hero-content {
  width: min(100%, 980px) !important;
  max-width: 980px !important;
  padding: clamp(34px, 4vw, 44px) clamp(32px, 4vw, 42px) clamp(32px, 4vw, 40px) !important;
  border-radius: 30px !important;
}

.hero-socials {
  top: 22px !important;
  right: 24px !important;
}

.hero-content .eyebrow {
  max-width: 58% !important;
  margin-bottom: 24px !important;
}

.hero-content h1 {
  max-width: 8.5ch !important;
  margin-bottom: 26px !important;
  font-size: clamp(4.5rem, 10vw, 7.8rem) !important;
}

.hero-copy {
  max-width: 620px !important;
  margin-bottom: 30px !important;
  font-size: clamp(1.02rem, 1.4vw, 1.35rem) !important;
}

.hero-actions {
  grid-template-columns: max-content max-content !important;
  align-items: center;
}

.hero-card a[href^="tel:"],
.hero-card a[target="_blank"] {
  color: #7f3551 !important;
  font-weight: 800;
}

.intro {
  max-width: 1440px !important;
  padding-top: clamp(90px, 11vw, 140px) !important;
  padding-bottom: clamp(90px, 10vw, 128px) !important;
}

.intro .section-kicker {
  max-width: 1420px;
  margin-right: auto;
  margin-left: auto;
}

.intro-grid {
  grid-template-columns: minmax(0, 1.35fr) minmax(520px, 0.9fr) !important;
  gap: clamp(44px, 7vw, 96px) !important;
  align-items: end !important;
  max-width: 1420px;
  margin: 0 auto;
}

.intro-copy {
  max-width: 820px !important;
}

.intro-title {
  max-width: 820px !important;
  margin-bottom: 26px !important;
  font-size: clamp(4.2rem, 7vw, 7rem) !important;
  line-height: 0.96 !important;
}

.intro-title span {
  line-height: 0.96 !important;
}

.intro-copy p {
  max-width: 760px !important;
  font-size: clamp(1.02rem, 1.45vw, 1.26rem);
}

.stat-strip {
  grid-template-columns: repeat(3, minmax(150px, 1fr)) !important;
  gap: 14px !important;
  align-self: end !important;
  margin-bottom: 4px !important;
}

.stat-strip div {
  min-height: 150px;
  padding: 24px !important;
  border-radius: 22px !important;
}

@media (max-width: 1180px) {
  .intro-grid {
    grid-template-columns: 1fr !important;
    gap: 34px !important;
  }

  .stat-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 760px) {
  .hero-content .eyebrow {
    max-width: calc(100% - 136px) !important;
  }

  .hero-actions {
    grid-template-columns: 1fr !important;
  }

  .stat-strip {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 560px) {
  .hero-content {
    padding: 72px 18px 24px !important;
    border-radius: 24px !important;
  }

  .hero-content h1 {
    max-width: 9.4ch !important;
    font-size: clamp(3rem, 14.2vw, 4.25rem) !important;
    line-height: 0.98 !important;
  }

  .intro-title {
    font-size: clamp(2.8rem, 13vw, 4.2rem) !important;
  }
}

/* v32: mobile hero title and compact stats */
@media (max-width: 560px) {
  .hero-content h1 {
    max-width: 9.8ch !important;
    font-size: clamp(2.95rem, 13.8vw, 4.1rem) !important;
    line-height: 0.98 !important;
    word-spacing: -0.06em !important;
  }

  .stat-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 8px !important;
  }

  .stat-strip div {
    aspect-ratio: 1 / 1 !important;
    min-height: 0 !important;
    padding: 12px 8px !important;
    border-radius: 18px !important;
    align-content: center;
  }

  .stat-strip strong {
    font-size: clamp(1.45rem, 8vw, 2rem) !important;
  }

  .stat-strip span {
    font-size: clamp(0.68rem, 3.2vw, 0.82rem) !important;
    line-height: 1.2;
  }
}

@media (max-width: 390px) {
  .hero-content h1 {
    font-size: clamp(2.75rem, 13vw, 3.8rem) !important;
  }
}

/* v33: lock hero title to two designed lines on all screens */
.hero-title {
  max-width: none !important;
  width: 100% !important;
  line-height: 0.88 !important;
  word-spacing: -0.04em !important;
}

.hero-title span {
  display: block;
  white-space: nowrap;
}

.hero-title span:first-child {
  width: max-content;
  max-width: 100%;
}

@media (min-width: 761px) {
  .hero-title {
    font-size: clamp(4.8rem, 9.4vw, 7.8rem) !important;
  }
}

@media (max-width: 760px) {
  .hero-content {
    padding-top: 82px !important;
  }

  .hero-content .eyebrow {
    max-width: 100% !important;
    padding-right: 132px;
  }

  .hero-title {
    font-size: clamp(2.65rem, 12.6vw, 3.9rem) !important;
    line-height: 0.92 !important;
  }
}

@media (max-width: 390px) {
  .hero-title {
    font-size: clamp(2.45rem, 11.8vw, 3.45rem) !important;
  }
}

/* v34: compact mobile hero card vertical spacing */
@media (max-width: 760px) {
  .hero-content {
    padding-top: 24px !important;
  }

  .hero-socials {
    top: 18px !important;
    right: 18px !important;
  }

  .hero-content .eyebrow {
    max-width: calc(100% - 146px) !important;
    min-height: 44px;
    display: flex;
    align-items: center;
    margin-bottom: 16px !important;
    padding-right: 0 !important;
  }

  .hero-title {
    margin-top: 0 !important;
    margin-bottom: 22px !important;
  }
}

@media (max-width: 420px) {
  .hero-content {
    padding: 18px 18px 22px !important;
  }

  .hero-socials {
    top: 18px !important;
    right: 18px !important;
  }

  .hero-content .eyebrow {
    max-width: calc(100% - 136px) !important;
    min-height: 42px;
    margin-bottom: 18px !important;
  }

  .hero-title {
    margin-bottom: 22px !important;
  }
}

/* v35: service-card style shine for hero content on desktop and mobile */
.hero-content {
  overflow: hidden !important;
}

.hero-content::after {
  position: absolute !important;
  top: -26% !important;
  left: -78% !important;
  z-index: 0 !important;
  width: 46% !important;
  height: 154% !important;
  background: linear-gradient(
    105deg,
    transparent 0%,
    rgba(255, 255, 255, 0.1) 32%,
    rgba(255, 245, 231, 0.58) 50%,
    rgba(255, 255, 255, 0.1) 68%,
    transparent 100%
  ) !important;
  content: "" !important;
  pointer-events: none !important;
  transform: skewX(-18deg) !important;
  animation: heroContentServiceShine 4.8s ease-in-out 0.25s infinite !important;
}

@keyframes heroContentServiceShine {
  0%,
  18% {
    left: -78%;
  }

  56%,
  100% {
    left: 132%;
  }
}

@media (max-width: 560px) {
  .hero-content::after {
    width: 58% !important;
    animation-duration: 4.2s !important;
  }
}

/* v36: desktop hero composition closer to reference */
@media (min-width: 960px) {
  .hero {
    grid-template-columns: minmax(0, 1.1fr) minmax(430px, 0.82fr) !important;
    align-items: end !important;
    gap: clamp(28px, 4vw, 48px) !important;
    padding-right: clamp(34px, 3vw, 54px) !important;
    padding-left: clamp(34px, 3vw, 54px) !important;
    padding-bottom: clamp(28px, 5vh, 70px) !important;
  }

  .hero-content {
    width: 100% !important;
    max-width: 1010px !important;
    min-height: 0 !important;
    align-self: end !important;
    padding: clamp(38px, 3vw, 48px) clamp(38px, 3.2vw, 52px) clamp(34px, 3vw, 44px) !important;
    border-radius: 30px !important;
  }

  .hero-card {
    width: 100% !important;
    max-width: 780px !important;
    min-height: clamp(560px, 68vh, 700px) !important;
    align-self: end !important;
    padding: clamp(24px, 2vw, 30px) !important;
    border-radius: 30px !important;
  }

  .hero-title {
    max-width: none !important;
    margin-bottom: clamp(24px, 3vw, 38px) !important;
    font-size: clamp(4.15rem, 6.7vw, 6.6rem) !important;
    line-height: 0.9 !important;
  }

  .hero-copy {
    max-width: 660px !important;
    margin-bottom: clamp(26px, 3vw, 36px) !important;
    font-size: clamp(1.04rem, 1.15vw, 1.28rem) !important;
  }

  .hero-actions {
    gap: 12px !important;
  }

  .hero-actions .button {
    min-width: 190px;
  }

  .hero-socials {
    top: 24px !important;
    right: 24px !important;
  }
}

@media (min-width: 960px) and (max-width: 1180px) {
  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.76fr) !important;
    gap: 22px !important;
  }

  .hero-title {
    font-size: clamp(3.65rem, 6.2vw, 5rem) !important;
  }

  .hero-card {
    min-height: 540px !important;
  }
}

/* v37: make desktop hero content visibly smaller than hero card */
@media (min-width: 960px) {
  .hero {
    grid-template-columns: minmax(520px, 0.92fr) minmax(500px, 1fr) !important;
    gap: clamp(28px, 3.6vw, 52px) !important;
  }

  .hero-content {
    max-width: 900px !important;
    padding: clamp(30px, 2.5vw, 38px) clamp(30px, 2.8vw, 42px) clamp(28px, 2.4vw, 36px) !important;
    border-radius: 28px !important;
  }

  .hero-title {
    margin-bottom: clamp(18px, 2.2vw, 28px) !important;
    font-size: clamp(3.6rem, 5.75vw, 5.75rem) !important;
    line-height: 0.92 !important;
  }

  .hero-content .eyebrow {
    margin-bottom: clamp(16px, 2vw, 22px) !important;
    font-size: clamp(0.95rem, 1.15vw, 1.15rem) !important;
  }

  .hero-copy {
    max-width: 560px !important;
    margin-bottom: clamp(20px, 2.5vw, 30px) !important;
    font-size: clamp(0.95rem, 1.05vw, 1.12rem) !important;
  }

  .hero-actions .button {
    min-width: 160px !important;
    min-height: 44px !important;
    padding: 0 22px !important;
    font-size: 0.95rem !important;
  }

  .hero-card {
    max-width: 820px !important;
    min-height: clamp(590px, 70vh, 720px) !important;
  }
}

@media (min-width: 960px) and (max-width: 1180px) {
  .hero {
    grid-template-columns: minmax(0, 0.94fr) minmax(380px, 1fr) !important;
  }

  .hero-title {
    font-size: clamp(3.25rem, 5.6vw, 4.65rem) !important;
  }

  .hero-card {
    min-height: 560px !important;
  }
}

/* v38: match final desktop hero reference layout */
@media (min-width: 1200px) {
  .hero {
    min-height: 92svh !important;
    grid-template-columns: minmax(0, 1.08fr) minmax(560px, 0.82fr) !important;
    align-items: end !important;
    gap: clamp(28px, 2.4vw, 42px) !important;
    padding: 104px clamp(52px, 3.6vw, 70px) clamp(34px, 4vh, 56px) !important;
  }

  .hero-content {
    align-self: end !important;
    width: 100% !important;
    max-width: 990px !important;
    min-height: clamp(500px, 58vh, 570px) !important;
    padding: clamp(38px, 2.2vw, 44px) clamp(38px, 2.6vw, 50px) clamp(34px, 2.4vw, 42px) !important;
    border-radius: 32px !important;
  }

  .hero-card {
    align-self: end !important;
    width: 100% !important;
    max-width: 760px !important;
    min-height: clamp(645px, 78vh, 690px) !important;
    padding: clamp(24px, 1.7vw, 30px) !important;
    border-radius: 30px !important;
  }

  .hero-content .eyebrow {
    max-width: calc(100% - 190px) !important;
    margin-bottom: clamp(24px, 2.4vw, 34px) !important;
    font-size: clamp(1.02rem, 1.2vw, 1.24rem) !important;
  }

  .hero-title {
    max-width: 8.8ch !important;
    margin-bottom: clamp(28px, 2.5vw, 42px) !important;
    font-size: clamp(4rem, 5.55vw, 6rem) !important;
    line-height: 0.9 !important;
  }

  .hero-copy {
    max-width: 650px !important;
    margin-bottom: clamp(28px, 2.4vw, 38px) !important;
    font-size: clamp(1rem, 1.1vw, 1.22rem) !important;
    line-height: 1.55 !important;
  }

  .hero-actions {
    gap: 12px !important;
  }

  .hero-actions .button {
    min-width: 180px !important;
    min-height: 62px !important;
    font-size: 1rem !important;
  }

  .hero-socials {
    top: 24px !important;
    right: 24px !important;
  }
}

@media (min-width: 1200px) and (max-height: 820px) {
  .hero {
    padding-top: 94px !important;
    padding-bottom: 28px !important;
  }

  .hero-content {
    min-height: 470px !important;
  }

  .hero-card {
    min-height: 600px !important;
  }

  .hero-title {
    font-size: clamp(3.6rem, 5vw, 5.25rem) !important;
    margin-bottom: 24px !important;
  }
}

/* v39: requested smaller hero content and exact title clamp */
@media (min-width: 960px) {
  .hero {
    grid-template-columns: minmax(0, 0.95fr) minmax(500px, 0.85fr) !important;
    gap: clamp(28px, 2.6vw, 44px) !important;
    padding-left: clamp(44px, 3vw, 58px) !important;
    padding-right: clamp(44px, 3vw, 58px) !important;
  }

  .hero-content {
    max-width: 890px !important;
    min-height: 0 !important;
    padding: clamp(28px, 2.2vw, 36px) clamp(28px, 2.4vw, 40px) clamp(28px, 2.2vw, 36px) !important;
    border-radius: 28px !important;
  }

  .hero-title {
    font-size: clamp(3rem, 16vw, 4.75rem) !important;
    line-height: 0.92 !important;
    margin-bottom: clamp(22px, 2.4vw, 34px) !important;
  }

  .hero-content .eyebrow {
    margin-bottom: clamp(18px, 2vw, 28px) !important;
    font-size: clamp(0.95rem, 1vw, 1.1rem) !important;
  }

  .hero-copy {
    max-width: 600px !important;
    margin-bottom: clamp(22px, 2.5vw, 32px) !important;
    font-size: clamp(0.98rem, 1.05vw, 1.16rem) !important;
  }

  .hero-actions .button {
    min-width: 170px !important;
    min-height: 52px !important;
    font-size: 0.98rem !important;
  }

  .hero-card {
    max-width: 780px !important;
    min-height: clamp(620px, 74vh, 700px) !important;
  }
}

@media (min-width: 1200px) {
  .hero-content {
    transform: translateY(-8px);
  }
}

/* v40: exact requested hero title clamp and reference desktop proportions */
@media (min-width: 1200px) {
  .hero {
    min-height: 92svh !important;
    grid-template-columns: minmax(0, 1.06fr) minmax(560px, 0.8fr) !important;
    align-items: end !important;
    gap: clamp(28px, 2.2vw, 38px) !important;
    padding: 104px clamp(44px, 3.4vw, 68px) clamp(36px, 5vh, 78px) !important;
  }

  .hero-content {
    align-self: end !important;
    width: 100% !important;
    max-width: 988px !important;
    min-height: clamp(510px, 58vh, 572px) !important;
    padding: clamp(34px, 2vw, 42px) clamp(36px, 2.3vw, 46px) clamp(32px, 2.2vw, 40px) !important;
    border-radius: 30px !important;
    transform: none !important;
  }

  .hero-card {
    align-self: end !important;
    width: 100% !important;
    max-width: 750px !important;
    min-height: clamp(635px, 77vh, 675px) !important;
    border-radius: 28px !important;
  }

  .hero-title {
    max-width: 10.6ch !important;
    font-size: clamp(3rem, 16vw, 4.75rem) !important;
    line-height: 0.92 !important;
    margin-bottom: clamp(24px, 2.2vw, 36px) !important;
  }

  .hero-content .eyebrow {
    max-width: calc(100% - 180px) !important;
    margin-bottom: clamp(24px, 2.2vw, 34px) !important;
    font-size: clamp(1rem, 1.05vw, 1.18rem) !important;
  }

  .hero-copy {
    max-width: 630px !important;
    margin-bottom: clamp(26px, 2.3vw, 36px) !important;
    font-size: clamp(1rem, 1.05vw, 1.18rem) !important;
    line-height: 1.55 !important;
  }

  .hero-actions {
    gap: 12px !important;
  }

  .hero-actions .button {
    min-width: 195px !important;
    min-height: 62px !important;
    font-size: 1rem !important;
  }

  .hero-socials {
    top: 22px !important;
    right: 22px !important;
  }
}

@media (min-width: 1200px) and (max-height: 820px) {
  .hero {
    padding-top: 92px !important;
    padding-bottom: 28px !important;
  }

  .hero-content {
    min-height: clamp(470px, 57vh, 540px) !important;
  }

  .hero-card {
    min-height: clamp(600px, 76vh, 650px) !important;
  }

  .hero-title {
    font-size: clamp(3rem, 16vw, 4.75rem) !important;
    margin-bottom: 24px !important;
  }
}

/* v41: shrink the full hero overlay composition */
@media (min-width: 1200px) {
  .hero {
    grid-template-columns: minmax(0, 900px) minmax(500px, 700px) !important;
    justify-content: center !important;
    gap: clamp(24px, 2vw, 34px) !important;
    padding: 104px clamp(34px, 3vw, 58px) clamp(38px, 5vh, 72px) !important;
  }

  .hero-content {
    max-width: 900px !important;
    min-height: clamp(455px, 52vh, 525px) !important;
    padding: clamp(30px, 1.8vw, 36px) clamp(32px, 2vw, 40px) clamp(30px, 1.9vw, 38px) !important;
    border-radius: 28px !important;
  }

  .hero-card {
    max-width: 700px !important;
    min-height: clamp(565px, 70vh, 630px) !important;
    padding: clamp(22px, 1.5vw, 28px) !important;
    border-radius: 27px !important;
  }

  .hero-title {
    font-size: clamp(3rem, 16vw, 4.75rem) !important;
    margin-bottom: clamp(20px, 2vw, 30px) !important;
  }

  .hero-content .eyebrow {
    margin-bottom: clamp(18px, 1.8vw, 28px) !important;
    font-size: clamp(0.95rem, 0.98vw, 1.08rem) !important;
  }

  .hero-copy {
    max-width: 585px !important;
    margin-bottom: clamp(22px, 2vw, 30px) !important;
    font-size: clamp(0.96rem, 1vw, 1.1rem) !important;
  }

  .hero-actions .button {
    min-width: 170px !important;
    min-height: 54px !important;
    font-size: 0.96rem !important;
  }

  .hero-socials a {
    width: 46px !important;
    height: 46px !important;
  }
}

@media (min-width: 1200px) and (max-height: 820px) {
  .hero-content {
    min-height: clamp(430px, 51vh, 495px) !important;
  }

  .hero-card {
    min-height: clamp(535px, 69vh, 600px) !important;
  }
}

/* v42: reduce hero content title size */
@media (min-width: 1200px) {
  .hero-title {
    font-size: clamp(2.8rem, 10vw, 4.25rem) !important;
    line-height: 0.94 !important;
    margin-bottom: clamp(18px, 1.8vw, 28px) !important;
  }
}

@media (min-width: 1200px) and (max-height: 820px) {
  .hero-title {
    font-size: clamp(2.75rem, 9vw, 4rem) !important;
  }
}

/* v43: stronger selector so hero title wins older .hero-content h1 rules */
@media (min-width: 1200px) {
  .hero-content h1.hero-title {
    max-width: 10.8ch !important;
    font-size: clamp(2.65rem, 7.2vw, 3.8rem) !important;
    line-height: 0.96 !important;
    margin-bottom: clamp(18px, 1.7vw, 26px) !important;
  }
}

@media (min-width: 1200px) and (max-height: 820px) {
  .hero-content h1.hero-title {
    font-size: clamp(2.55rem, 6.8vw, 3.55rem) !important;
  }
}

/* v44: smaller schedule card, centered hero content, more open title */
@media (min-width: 1200px) {
  .hero {
    grid-template-columns: minmax(0, 900px) minmax(470px, 650px) !important;
    align-items: center !important;
  }

  .hero-content {
    align-self: center !important;
    min-height: clamp(450px, 50vh, 510px) !important;
    transform: translateY(8px) !important;
  }

  .hero-card {
    align-self: center !important;
    max-width: 650px !important;
    min-height: clamp(520px, 64vh, 590px) !important;
    padding: clamp(20px, 1.35vw, 25px) !important;
  }

  .hero-content h1.hero-title {
    font-size: clamp(2.9rem, 8.4vw, 4.25rem) !important;
    line-height: 1.02 !important;
    margin-bottom: clamp(18px, 1.8vw, 28px) !important;
  }
}

@media (min-width: 1200px) and (max-height: 820px) {
  .hero-content {
    min-height: clamp(420px, 49vh, 480px) !important;
  }

  .hero-card {
    min-height: clamp(500px, 62vh, 560px) !important;
  }

  .hero-content h1.hero-title {
    font-size: clamp(2.8rem, 7.6vw, 4rem) !important;
    line-height: 1 !important;
  }
}

/* v45: increase only hero title font size on tablet and desktop */
@media (min-width: 768px) {
  .hero-content h1.hero-title {
    font-size: clamp(4.25rem, 8.4vw, 6.5rem) !important;
  }
}

/* v46: practical tablet/1024 layout and compact booking selects */
@media (min-width: 768px) and (max-width: 1199px) {
  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 360px) !important;
    align-items: center !important;
    gap: 14px !important;
    min-height: auto !important;
    padding: 96px 14px 24px !important;
  }

  .hero-content {
    align-self: center !important;
    max-width: none !important;
    min-height: 0 !important;
    padding: 22px 20px 24px !important;
    border-radius: 22px !important;
    overflow: hidden !important;
    transform: none !important;
  }

  .hero-socials {
    top: 18px !important;
    right: 16px !important;
    gap: 8px !important;
  }

  .hero-socials a {
    width: 36px !important;
    height: 36px !important;
  }

  .hero-socials img {
    width: 17px !important;
    height: 17px !important;
  }

  .hero-socials a[aria-label="Zalo"] img {
    width: 22px !important;
    height: 22px !important;
  }

  .hero-content .eyebrow {
    max-width: calc(100% - 136px) !important;
    min-height: 36px !important;
    margin-bottom: 22px !important;
    padding-right: 0 !important;
    font-size: clamp(0.76rem, 1.8vw, 0.92rem) !important;
    line-height: 1.25 !important;
  }

  .hero-content h1.hero-title {
    max-width: 100% !important;
    font-size: clamp(3rem, 6.1vw, 3.8rem) !important;
    line-height: 0.94 !important;
    margin-bottom: 22px !important;
  }

  .hero-copy {
    max-width: 360px !important;
    margin-bottom: 22px !important;
    font-size: clamp(0.88rem, 1.7vw, 0.98rem) !important;
    line-height: 1.42 !important;
  }

  .hero-actions {
    gap: 10px !important;
  }

  .hero-actions .button {
    min-width: 130px !important;
    min-height: 44px !important;
    padding: 0 18px !important;
    font-size: 0.9rem !important;
  }

  .hero-card {
    align-self: center !important;
    max-width: 360px !important;
    min-height: 0 !important;
    padding: 16px !important;
    border-radius: 20px !important;
    gap: 10px !important;
    font-size: 0.85rem !important;
  }

  .hero-card > strong {
    font-size: 0.9rem !important;
  }

  .hero-hours {
    gap: 6px !important;
  }

  .hero-hours span {
    min-height: 36px !important;
    padding: 7px 10px !important;
    font-size: 0.82rem !important;
  }

  .hero-hours span strong,
  .hero-hours span em {
    font-size: 0.86rem !important;
  }

  .hero-card div {
    gap: 3px !important;
  }

  .hero-card div span {
    font-size: 0.72rem !important;
  }

  .hero-card a {
    font-size: 0.9rem !important;
    line-height: 1.3 !important;
  }
}

@media (min-width: 768px) and (max-width: 920px) {
  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(270px, 320px) !important;
    gap: 12px !important;
    padding-left: 10px !important;
    padding-right: 10px !important;
  }

  .hero-content h1.hero-title {
    font-size: clamp(2.72rem, 5.8vw, 3.35rem) !important;
  }

  .hero-copy {
    max-width: 320px !important;
  }

  .hero-card {
    max-width: 320px !important;
    padding: 13px !important;
  }
}

@media (max-width: 1199px) {
  .booking-form select,
  .booking-form select option {
    font-size: 0.88rem !important;
    line-height: 1.2 !important;
  }

  .booking-form input,
  .booking-form select,
  .booking-form textarea {
    min-height: 42px !important;
    padding: 0 12px !important;
  }

  .booking-form textarea {
    padding-top: 10px !important;
    padding-bottom: 10px !important;
  }

  .select-wrap::after {
    width: 8px !important;
    height: 8px !important;
    right: 14px !important;
  }

  .select-wrap select {
    padding-right: 36px !important;
  }
}

@media (max-width: 679px) {
  .booking-form select,
  .booking-form select option {
    font-size: 0.82rem !important;
  }

  .booking-form input,
  .booking-form select,
  .booking-form textarea {
    min-height: 40px !important;
  }
}

/* v47: booking admin submission status */
.booking-status {
  grid-area: status;
  min-height: 20px;
  margin: -2px 0 0;
  color: #7f3551;
  font-size: 0.86rem;
  font-weight: 800;
}

.booking-status:empty {
  display: none;
}

.booking-status[data-status="success"] {
  color: #2f7a4f;
}

.booking-status[data-status="error"] {
  color: #a33a3a;
}

.booking-status[data-status="pending"] {
  color: #7f3551;
}

.booking-form > .button[disabled] {
  cursor: wait;
  opacity: 0.72;
}

.booking-form {
  grid-template-areas:
    "eyebrow eyebrow"
    "title title"
    "name name"
    "phone email"
    "service specialist"
    "date time"
    "notes notes"
    "status status"
    "submit submit" !important;
}

@media (max-width: 679px) {
  .booking-form {
    grid-template-areas:
      "eyebrow"
      "title"
      "name"
      "phone"
      "email"
      "service"
      "specialist"
      "date"
      "time"
      "notes"
      "status"
      "submit" !important;
  }
}

/* v48: narrower hero card and airier hero title line-height */
@media (min-width: 1200px) {
  .hero {
    grid-template-columns: minmax(0, 900px) minmax(420px, 590px) !important;
  }

  .hero-card {
    max-width: 590px !important;
  }

  .hero-content h1.hero-title {
    line-height: 1.08 !important;
  }
}

@media (min-width: 768px) and (max-width: 1199px) {
  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 330px) !important;
  }

  .hero-card {
    max-width: 330px !important;
  }

  .hero-content h1.hero-title {
    line-height: 1.06 !important;
  }
}

@media (min-width: 768px) and (max-width: 920px) {
  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(260px, 300px) !important;
  }

  .hero-card {
    max-width: 300px !important;
  }
}

/* v49: visible soft light sweep across the hero content card */
.hero-content {
  position: relative !important;
  overflow: hidden !important;
  isolation: isolate;
}

.hero-content > * {
  position: relative;
  z-index: 2;
}

.hero-content::before {
  content: "";
  position: absolute;
  z-index: 1;
  top: -38%;
  left: -68%;
  width: 42%;
  height: 178%;
  pointer-events: none;
  background:
    linear-gradient(
      105deg,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.2) 42%,
      rgba(255, 244, 218, 0.62) 50%,
      rgba(255, 255, 255, 0.24) 58%,
      rgba(255, 255, 255, 0) 100%
    );
  filter: blur(2px);
  opacity: 0.42;
  transform: skewX(-18deg);
  animation: heroContentSoftSweep 4.8s ease-in-out 0.35s infinite;
}

@keyframes heroContentSoftSweep {
  0%,
  26% {
    transform: translateX(0) skewX(-18deg);
    opacity: 0;
  }

  38% {
    opacity: 0.42;
  }

  68%,
  100% {
    transform: translateX(430%) skewX(-18deg);
    opacity: 0;
  }
}

@media (max-width: 679px) {
  .hero-content::before {
    width: 58%;
    height: 160%;
    animation-duration: 5.2s;
  }
}

/* v50: hardening fixes without changing the visible layout */
.booking-website-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.hero-content::after {
  content: none !important;
  display: none !important;
  animation: none !important;
}

/* v51: make the full menu item background clickable and services toggle cleanly */
.main-nav a,
.main-nav .nav-link,
.service-dropdown button {
  box-sizing: border-box !important;
  display: flex !important;
  width: 100% !important;
  min-height: 46px !important;
  align-items: center !important;
  cursor: pointer !important;
}

.nav-service {
  width: 100% !important;
}

.service-trigger {
  justify-content: space-between !important;
}

@media (min-width: 960px) {
  .main-nav a,
  .main-nav .nav-link {
    width: auto !important;
    min-height: 44px !important;
    padding: 10px 14px !important;
  }

  .nav-service {
    width: auto !important;
  }

  .service-dropdown button {
    min-height: 42px !important;
    padding: 10px 14px !important;
  }
}

/* v52: tighter hero content vertical rhythm */
@media (min-width: 1200px) {
  .hero-content {
    min-height: clamp(390px, 44vh, 455px) !important;
    padding: clamp(24px, 1.55vw, 30px) clamp(30px, 1.9vw, 38px) clamp(24px, 1.55vw, 30px) !important;
  }

  .hero-content .eyebrow {
    margin-bottom: clamp(12px, 1.2vw, 18px) !important;
  }

  .hero-content h1.hero-title {
    margin-bottom: clamp(12px, 1.25vw, 18px) !important;
  }

  .hero-copy {
    margin-bottom: clamp(14px, 1.35vw, 20px) !important;
  }

  .hero-actions {
    gap: 10px !important;
  }
}

@media (min-width: 768px) and (max-width: 1199px) {
  .hero-content {
    padding: 18px 18px 20px !important;
  }

  .hero-content .eyebrow {
    margin-bottom: 14px !important;
    min-height: 30px !important;
  }

  .hero-content h1.hero-title {
    margin-bottom: 14px !important;
  }

  .hero-copy {
    margin-bottom: 16px !important;
  }
}

@media (max-width: 679px) {
  .hero-content {
    padding: 16px 16px 18px !important;
  }

  .hero-content .eyebrow {
    margin-bottom: 12px !important;
    min-height: 34px !important;
  }

  .hero-title {
    margin-bottom: 14px !important;
  }

  .hero-copy {
    margin-bottom: 16px !important;
  }
}

/* v53: make the whole Services menu cell hover/click and allow click-to-close */
.nav-service {
  border-radius: 999px !important;
}

.nav-service .service-trigger {
  min-width: 100% !important;
}

.nav-service.is-click-closed .service-dropdown {
  display: none !important;
}

@media (min-width: 960px) {
  .nav-service {
    display: flex !important;
    min-height: 44px !important;
    align-items: stretch !important;
    padding: 0 !important;
  }

  .nav-service .service-trigger {
    width: 100% !important;
    min-width: 118px !important;
    height: 100% !important;
    padding: 10px 16px !important;
  }

  .nav-service.is-click-closed:hover .service-dropdown,
  .nav-service.is-click-closed:focus-within .service-dropdown {
    opacity: 0 !important;
    pointer-events: none !important;
    transform: translate(-50%, 10px) !important;
  }
}

/* v54: hero title colour and stable Services click-close state */
.hero-content h1.hero-title,
.hero-title {
  color: var(--ink) !important;
}

.nav-service.is-click-closed .service-dropdown {
  display: grid !important;
  opacity: 0 !important;
  pointer-events: none !important;
  transform: translate(-50%, 10px) !important;
}

/* v55: keep hero title classic and tint the View services CTA */
.hero-actions .button-glass {
  color: #7f3551 !important;
}

/* v56: service dropdown items are real links so mobile navigation is reliable */
.service-dropdown a {
  justify-content: space-between;
  border: 0;
  border-radius: 14px;
  background: transparent;
  color: #6f5961;
  font: inherit;
  font-weight: 800;
}

.service-dropdown a:hover,
.service-dropdown a:focus-visible,
.service-dropdown a.is-active {
  background: rgba(232, 201, 140, 0.24);
  color: #7f3551;
}

.main-nav .service-dropdown a,
.service-dropdown a {
  box-sizing: border-box !important;
  display: flex !important;
  width: 100% !important;
  min-height: 46px !important;
  align-items: center !important;
  padding: 10px 13px !important;
  cursor: pointer !important;
  pointer-events: auto !important;
  touch-action: manipulation !important;
  -webkit-tap-highlight-color: rgba(127, 53, 81, 0.12) !important;
}

@media (min-width: 960px) {
  .service-dropdown a {
    min-height: 42px !important;
    padding: 10px 14px !important;
  }
}

/* v63: right-aligned social row, larger chat logos, compact glass, and new hero art */
.hero-media img {
  object-fit: cover !important;
  object-position: center center !important;
  width: 100% !important;
  height: 100% !important;
  transform: none !important;
}

.hero-socials {
  justify-self: end !important;
}

.hero-socials a,
.footer-socials a {
  width: 42px !important;
  height: 42px !important;
  min-width: 42px !important;
  border: 1px solid rgba(255, 255, 255, 0.42) !important;
  background: rgba(255, 255, 255, 0.42) !important;
  box-shadow: 0 6px 14px rgba(127, 53, 81, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.5) !important;
  backdrop-filter: blur(9px) saturate(1.08) !important;
  -webkit-backdrop-filter: blur(9px) saturate(1.08) !important;
}

.hero-socials img,
.footer-socials img {
  width: 30px !important;
  height: 30px !important;
}

.hero-socials a[aria-label="Zalo"] img,
.footer-socials a[aria-label="Zalo"] img,
.hero-socials a[aria-label="WhatsApp"] img,
.footer-socials a[aria-label="WhatsApp"] img {
  width: 42px !important;
  height: 42px !important;
}

.chat-option span {
  width: 42px !important;
  height: 42px !important;
  min-width: 42px !important;
  border: 1px solid rgba(255, 255, 255, 0.42) !important;
  background: rgba(255, 255, 255, 0.48) !important;
  box-shadow: 0 6px 14px rgba(127, 53, 81, 0.08) !important;
}

.chat-option img {
  width: 30px !important;
  height: 30px !important;
  object-fit: contain;
}

.chat-option[aria-label*="Zalo"] img,
.chat-option[aria-label*="WhatsApp"] img {
  width: 42px !important;
  height: 42px !important;
}

.hero-contact-line {
  gap: 0 !important;
}

.site-footer {
  background: linear-gradient(180deg, #ffe8f1 0%, #fffdfd 48%, #ffeaf2 100%) !important;
}

.site-footer::before {
  background: linear-gradient(180deg, rgba(255, 232, 241, 0.96) 0%, rgba(255, 253, 253, 0.54) 52%, rgba(255, 234, 242, 0) 100%) !important;
}

@media (max-width: 1023px) {
  .hero-socials {
    justify-self: end !important;
  }
}

@media (max-width: 679px) {
  .hero-socials {
    justify-self: end !important;
    gap: 7px !important;
  }

  .hero-socials a,
  .footer-socials a {
    width: 36px !important;
    height: 36px !important;
    min-width: 36px !important;
  }

  .hero-socials img,
  .footer-socials img {
    width: 26px !important;
    height: 26px !important;
  }

  .hero-socials a[aria-label="Zalo"] img,
  .footer-socials a[aria-label="Zalo"] img,
  .hero-socials a[aria-label="WhatsApp"] img,
  .footer-socials a[aria-label="WhatsApp"] img {
    width: 36px !important;
    height: 36px !important;
  }

  .hero-card {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    column-gap: 12px !important;
  }

  .hero-card > div:first-child,
  .hero-hours,
  .hero-card > div:last-child {
    grid-column: 1 / -1 !important;
  }

  .hero-contact-mobile {
    grid-column: 1 !important;
  }

  .hero-contact-store {
    grid-column: 2 !important;
    text-align: right !important;
  }

  .hero-contact-store .hero-contact-line {
    justify-content: flex-end !important;
  }

  .chat-option span {
    width: 38px !important;
    height: 38px !important;
    min-width: 38px !important;
  }

  .chat-option img {
    width: 27px !important;
    height: 27px !important;
  }

  .chat-option[aria-label*="Zalo"] img,
  .chat-option[aria-label*="WhatsApp"] img {
    width: 38px !important;
    height: 38px !important;
  }
}

/* v61: clearer mobile hero header, lighter nav, and simplified team label */
.site-header {
  background: rgba(255, 255, 255, 0.32) !important;
  border-color: rgba(255, 255, 255, 0.34) !important;
  box-shadow: 0 12px 34px rgba(49, 31, 25, 0.08) !important;
  backdrop-filter: blur(18px) saturate(145%) !important;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.42) !important;
  box-shadow: 0 14px 38px rgba(49, 31, 25, 0.1) !important;
}

.team-block .section-heading .eyebrow {
  display: none !important;
}

@media (max-width: 679px) {
  .hero-content {
    display: grid !important;
    grid-template-columns: 1fr auto !important;
    align-content: start !important;
    row-gap: 12px !important;
  }

  .hero-content .eyebrow {
    grid-column: 1 / -1 !important;
    grid-row: 1 !important;
    align-self: end;
    margin: 0 !important;
    padding-right: 0 !important;
    white-space: normal !important;
  }

  .hero-socials {
    grid-column: 1 / -1 !important;
    grid-row: 2 !important;
    position: static !important;
    justify-self: end !important;
    align-self: start !important;
    margin: -2px 0 2px !important;
    transform: none !important;
  }

  .hero-title {
    grid-column: 1 / -1 !important;
    grid-row: 3 !important;
  }

  .hero-copy {
    grid-column: 1 / -1 !important;
    grid-row: 4 !important;
  }

  .hero-actions {
    grid-column: 1 / -1 !important;
    grid-row: 5 !important;
  }
}

/* v57: refreshed owner profile, soft section gradients, and pink hero title */
.hero-content h1.hero-title,
.hero-title {
  background: linear-gradient(135deg, #d9789a 0%, #f1abc0 58%, #c95f7d 100%) !important;
  background-size: 100% 100% !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  color: transparent !important;
  -webkit-text-fill-color: transparent !important;
  text-shadow: none !important;
}

.service-page {
  background: linear-gradient(180deg, #ffe7f0 0%, #fff4f8 42%, #ffffff 100%) !important;
}

.specialists.section-pad,
section.specialists,
.specialists.section-pad::before,
section.specialists::before {
  background: linear-gradient(180deg, #ffe7f0 0%, #fff4f8 40%, #ffffff 100%) !important;
}

@media (max-width: 679px) {
  .hero-content h1.hero-title,
  .hero-title {
    line-height: 1.04 !important;
  }
}

/* v58: seamless blend between final content band and footer */
.site-footer {
  position: relative !important;
  margin-top: -1px !important;
  border-top: 0 !important;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 239, 246, 0.94) 0%, rgba(255, 238, 245, 0.86) 28%, rgba(255, 238, 245, 0.76) 100%),
    url("../images/pink-watercolor-bg.png") center top / cover !important;
}

.site-footer::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0 0 auto;
  height: 96px;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 239, 246, 0.98) 0%, rgba(255, 239, 246, 0.64) 45%, rgba(255, 239, 246, 0) 100%);
}

.site-footer > * {
  position: relative;
  z-index: 1;
}

.contact.section-pad + .site-footer,
.specialists.section-pad + .site-footer,
.section-pad + .site-footer {
  margin-top: -1px !important;
}

/* v59: contact labels and updated hero background set */
.hero-contact-line {
  display: inline-flex !important;
  align-items: center;
  gap: 8px;
}

.hero-contact-line i {
  color: #7f3551;
  font-size: 0.95em;
  line-height: 1;
}

.footer-contact-line .fa-phone,
.footer-contact-line .fa-tty {
  color: #7f3551;
}

/* v60: stronger social logos and solid hero title */
.hero-content {
  overflow: visible !important;
}

.hero-content h1.hero-title,
.hero-title {
  width: min(100%, 760px) !important;
  max-width: calc(100% - 12px) !important;
  background: none !important;
  color: #7f3551 !important;
  -webkit-text-fill-color: #7f3551 !important;
  text-shadow: 0 8px 22px rgba(127, 53, 81, 0.26), 0 1px 0 rgba(255, 255, 255, 0.72) !important;
  opacity: 1 !important;
}

.hero-title span:first-child {
  white-space: nowrap !important;
}

.hero-socials a,
.footer-socials a {
  width: 58px !important;
  height: 58px !important;
}

.hero-socials img,
.footer-socials img {
  width: 30px !important;
  height: 30px !important;
  object-fit: contain;
}

.hero-socials a[aria-label="Zalo"] img,
.footer-socials a[aria-label="Zalo"] img,
.hero-socials a[aria-label="WhatsApp"] img,
.footer-socials a[aria-label="WhatsApp"] img {
  width: 38px !important;
  height: 38px !important;
}

@media (max-width: 679px) {
  .hero-content h1.hero-title,
  .hero-title {
    font-size: clamp(3.15rem, 12.6vw, 4.45rem) !important;
    line-height: 1.08 !important;
    max-width: 100% !important;
  }

  .hero-socials a,
  .footer-socials a {
    width: 44px !important;
    height: 44px !important;
  }

  .hero-socials img,
  .footer-socials img {
    width: 25px !important;
    height: 25px !important;
  }

  .hero-socials a[aria-label="Zalo"] img,
  .footer-socials a[aria-label="Zalo"] img,
  .hero-socials a[aria-label="WhatsApp"] img,
  .footer-socials a[aria-label="WhatsApp"] img {
    width: 31px !important;
    height: 31px !important;
  }
}

/* v62: compact glass social buttons, tablet-safe hero header, and soft pink section fades */
.hero-media {
  background: #fff6fa !important;
}

.hero-media img {
  object-fit: contain !important;
  object-position: center center !important;
  transform: none !important;
}

.hero-location {
  display: inline-flex !important;
  align-items: baseline;
  gap: 0.28em;
}

.hero-socials a,
.footer-socials a {
  width: 46px !important;
  height: 46px !important;
  min-width: 46px !important;
  background: rgba(255, 255, 255, 0.54) !important;
  box-shadow: 0 8px 18px rgba(127, 53, 81, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.74) !important;
}

.hero-socials img,
.footer-socials img {
  width: 34px !important;
  height: 34px !important;
}

.hero-socials a[aria-label="Zalo"] img,
.footer-socials a[aria-label="Zalo"] img,
.hero-socials a[aria-label="WhatsApp"] img,
.footer-socials a[aria-label="WhatsApp"] img {
  width: 40px !important;
  height: 40px !important;
}

.site-header {
  background: rgba(255, 255, 255, 0.22) !important;
  border-color: rgba(255, 255, 255, 0.28) !important;
  box-shadow: 0 10px 28px rgba(49, 31, 25, 0.06) !important;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.34) !important;
}

.service-page,
.specialists.section-pad,
section.specialists,
.specialists.section-pad::before,
section.specialists::before {
  background: linear-gradient(180deg, #ffe8f1 0%, #fffdfd 48%, #ffeaf2 100%) !important;
}

@media (max-width: 1023px) {
  .hero-content {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) !important;
    align-content: start !important;
    row-gap: 10px !important;
  }

  .hero-content .hero-location {
    grid-column: 1 !important;
    grid-row: 1 !important;
    margin: 0 !important;
    max-width: 100% !important;
    padding: 0 !important;
  }

  .hero-socials {
    grid-column: 1 !important;
    grid-row: 2 !important;
    position: static !important;
    justify-self: start !important;
    align-self: start !important;
    margin: 0 !important;
    transform: none !important;
  }

  .hero-title {
    grid-column: 1 !important;
    grid-row: 3 !important;
  }

  .hero-copy {
    grid-column: 1 !important;
    grid-row: 4 !important;
  }

  .hero-actions {
    grid-column: 1 !important;
    grid-row: 5 !important;
  }
}

@media (max-width: 679px) {
  .hero-location {
    display: inline-grid !important;
    gap: 0;
    line-height: 1.12 !important;
  }

  .hero-socials {
    gap: 8px !important;
  }

  .hero-socials a,
  .footer-socials a {
    width: 38px !important;
    height: 38px !important;
    min-width: 38px !important;
  }

  .hero-socials img,
  .footer-socials img {
    width: 29px !important;
    height: 29px !important;
  }

  .hero-socials a[aria-label="Zalo"] img,
  .footer-socials a[aria-label="Zalo"] img,
  .hero-socials a[aria-label="WhatsApp"] img,
  .footer-socials a[aria-label="WhatsApp"] img {
    width: 35px !important;
    height: 35px !important;
  }
}

/* v64: tighten Services hover target and align mobile hero socials with location */
@media (min-width: 960px) {
  .nav-service:hover .service-dropdown,
  .nav-service:focus-within .service-dropdown {
    opacity: 0 !important;
    pointer-events: none !important;
    transform: translate(-50%, 10px) !important;
  }

  .service-dropdown::before {
    display: none !important;
  }

  .nav-service:has(.service-trigger:hover) .service-dropdown,
  .nav-service:has(.service-trigger:focus-visible) .service-dropdown,
  .nav-service:has(.service-dropdown:hover) .service-dropdown,
  .nav-service:has(.service-dropdown:focus-within) .service-dropdown,
  .nav-service.is-open:not(.is-click-closed) .service-dropdown {
    opacity: 1 !important;
    pointer-events: auto !important;
    transform: translate(-50%, 0) !important;
  }
}

/* v68: final guard against transparent Services dropdown click zones */
@media (min-width: 960px) {
  .nav-service.is-open:not(.is-hover-armed) .service-dropdown,
  .nav-service.is-open:not(.is-click-closed):not(.is-hover-armed) .service-dropdown,
  .nav-service:not(.is-hover-armed) .service-dropdown {
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    transform: translate(-50%, 10px) !important;
  }

  .nav-service.is-hover-armed:not(:has(.service-trigger:hover)):not(:has(.service-trigger:focus-visible)):not(:has(.service-dropdown:hover)):not(:has(.service-dropdown:focus-within)) .service-dropdown {
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    transform: translate(-50%, 10px) !important;
  }

  .nav-service.is-hover-armed:has(.service-trigger:hover) .service-dropdown,
  .nav-service.is-hover-armed:has(.service-trigger:focus-visible) .service-dropdown,
  .nav-service.is-hover-armed:has(.service-dropdown:hover) .service-dropdown,
  .nav-service.is-hover-armed:has(.service-dropdown:focus-within) .service-dropdown {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transform: translate(-50%, 0) !important;
  }
}

/* v67: prevent invisible Services dropdown from catching clicks */
@media (min-width: 960px) {
  .nav-service .service-dropdown,
  .nav-service:hover .service-dropdown,
  .nav-service:focus-within .service-dropdown,
  .nav-service.is-open:not(.is-click-closed) .service-dropdown {
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    transform: translate(-50%, 10px) !important;
  }

  .nav-service.is-hover-armed:has(.service-trigger:hover) .service-dropdown,
  .nav-service.is-hover-armed:has(.service-trigger:focus-visible) .service-dropdown,
  .nav-service.is-hover-armed:has(.service-dropdown:hover) .service-dropdown,
  .nav-service.is-hover-armed:has(.service-dropdown:focus-within) .service-dropdown {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transform: translate(-50%, 0) !important;
  }
}

/* v66: make wide hero artwork fill the full hero background on every viewport */
.hero {
  overflow: hidden !important;
}

.hero-media {
  inset: 0 !important;
  width: 100% !important;
  max-width: none !important;
  min-width: 100% !important;
  height: 100% !important;
  background: #fff4f8 !important;
}

.hero-media img {
  display: block !important;
  width: 100% !important;
  max-width: none !important;
  min-width: 100% !important;
  height: 100% !important;
  min-height: 100% !important;
  object-fit: cover !important;
  object-position: center center !important;
  transform: none !important;
}

@media (min-width: 1200px) {
  .hero-media img {
    object-position: center 46% !important;
  }
}

@media (max-width: 1023px) {
  .hero-media img {
    object-position: center center !important;
  }
}

@media (max-width: 679px) {
  .hero-media img {
    object-position: center top !important;
  }
}

@media (max-width: 1023px) {
  .hero-content {
    grid-template-columns: minmax(0, 1fr) auto !important;
    column-gap: 10px !important;
    row-gap: 12px !important;
  }

  .hero-content .hero-location {
    grid-column: 1 !important;
    grid-row: 1 !important;
    align-self: center !important;
    min-width: 0 !important;
  }

  .hero-socials {
    grid-column: 2 !important;
    grid-row: 1 !important;
    justify-self: end !important;
    align-self: center !important;
    position: static !important;
    margin: 0 !important;
    transform: none !important;
  }

  .hero-title,
  .hero-copy,
  .hero-actions {
    grid-column: 1 / -1 !important;
  }

  .hero-title {
    grid-row: 2 !important;
  }

  .hero-copy {
    grid-row: 3 !important;
  }

  .hero-actions {
    grid-row: 4 !important;
  }
}

/* v65: Services dropdown only opens from the actual Services button */
@media (min-width: 960px) {
  .nav-service:hover .service-dropdown,
  .nav-service:focus-within .service-dropdown,
  .nav-service:has(.service-dropdown:hover) .service-dropdown,
  .nav-service:has(.service-dropdown:focus-within) .service-dropdown,
  .nav-service:not(.is-hover-armed):not(.is-open) .service-dropdown {
    opacity: 0 !important;
    pointer-events: none !important;
    transform: translate(-50%, 10px) !important;
  }

  .nav-service.is-hover-armed:has(.service-trigger:hover) .service-dropdown,
  .nav-service.is-hover-armed:has(.service-trigger:focus-visible) .service-dropdown,
  .nav-service.is-hover-armed:has(.service-dropdown:hover) .service-dropdown,
  .nav-service.is-hover-armed:has(.service-dropdown:focus-within) .service-dropdown,
  .nav-service.is-open:not(.is-click-closed) .service-dropdown {
    opacity: 1 !important;
    pointer-events: auto !important;
    transform: translate(-50%, 0) !important;
  }
}

/* v69: EOF override - no invisible Services dropdown can receive clicks */
@media (min-width: 960px) {
  .nav-service .service-dropdown,
  .nav-service.is-open:not(.is-hover-armed) .service-dropdown,
  .nav-service:not(.is-hover-armed) .service-dropdown {
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    transform: translate(-50%, 10px) !important;
  }

  .nav-service.is-hover-armed:has(.service-trigger:hover) .service-dropdown,
  .nav-service.is-hover-armed:has(.service-trigger:focus-visible) .service-dropdown,
  .nav-service.is-hover-armed:has(.service-dropdown:hover) .service-dropdown,
  .nav-service.is-hover-armed:has(.service-dropdown:focus-within) .service-dropdown {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transform: translate(-50%, 0) !important;
  }
}

/* v70: mobile footer social row above contact details with tighter contact rhythm */
@media (max-width: 679px) {
  .footer-info {
    display: grid !important;
    grid-template-columns: minmax(82px, 0.3fr) minmax(0, 1fr) !important;
    column-gap: 12px !important;
    row-gap: 6px !important;
    align-items: center !important;
  }

  .footer-logo {
    grid-column: 1 !important;
    grid-row: 1 / span 5 !important;
    width: 100% !important;
    max-width: 104px !important;
    align-self: center !important;
    margin: 0 !important;
  }

  .footer-socials {
    grid-column: 2 !important;
    grid-row: 1 !important;
    justify-self: end !important;
    justify-content: flex-end !important;
    gap: 7px !important;
    margin: 0 0 2px !important;
    padding: 5px 7px !important;
  }

  .footer-contact-line {
    grid-column: 2 !important;
    margin: 0 !important;
    gap: 8px !important;
    align-items: center !important;
    font-size: 0.88rem !important;
    line-height: 1.25 !important;
  }

  .footer-contact-line:nth-of-type(1) {
    grid-row: 2 !important;
  }

  .footer-contact-line:nth-of-type(2) {
    grid-row: 3 !important;
  }

  .footer-contact-line:nth-of-type(3) {
    grid-row: 4 !important;
  }

  .footer-contact-line:nth-of-type(4) {
    grid-row: 5 !important;
  }

  .footer-contact-line i {
    width: 18px !important;
    min-width: 18px !important;
  }

  .footer-socials a {
    width: 36px !important;
    height: 36px !important;
    min-width: 36px !important;
  }

  .footer-socials img {
    width: 27px !important;
    height: 27px !important;
  }

  .footer-socials a[aria-label="Zalo"] img,
  .footer-socials a[aria-label="WhatsApp"] img {
    width: 34px !important;
    height: 34px !important;
  }
}


/* v83: multi-service booking, eyelash infill heading, navbar hover guard, and hero/team spacing fixes */
.booking-service-field .select-wrap-multiple::after {
  display: none !important;
}

.booking-form select[multiple] {
  min-height: 150px !important;
  padding: 10px 13px !important;
  overflow-y: auto !important;
  line-height: 1.35 !important;
}

.booking-form select[multiple] option {
  padding: 8px 10px !important;
  border-radius: 10px !important;
}

.booking-help {
  margin-top: -2px;
  color: #8b6471;
  font-size: 0.78rem;
  font-weight: 700;
}

.detail-section-row {
  justify-content: center !important;
  border-top: 1px solid rgba(145, 83, 103, 0.12) !important;
  background: rgba(248, 201, 215, 0.34) !important;
  color: #b1255c !important;
  font-weight: 900 !important;
  text-align: center !important;
  text-transform: none !important;
}

.detail-section-row span {
  width: 100% !important;
  color: #b1255c !important;
  font-family: "Playfair Display", Georgia, serif !important;
  font-size: clamp(1.15rem, 2.4vw, 1.55rem) !important;
}

.hero-card > div,
.hero-card .hero-hours {
  padding: 10px 12px !important;
  border: 1px solid rgba(255, 255, 255, 0.58) !important;
  border-radius: 16px !important;
  background: rgba(255, 255, 255, 0.28) !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.62) !important;
  backdrop-filter: blur(12px) saturate(1.08) !important;
  -webkit-backdrop-filter: blur(12px) saturate(1.08) !important;
}

.team-block {
  margin-top: -14px !important;
}

.team-block .compact-heading,
.team-block .section-heading.compact-heading {
  margin-bottom: clamp(34px, 4vw, 48px) !important;
}

@media (min-width: 960px) {
  .service-dropdown::before {
    display: none !important;
  }

  .nav-service .service-dropdown,
  .nav-service:hover .service-dropdown,
  .nav-service:focus-within .service-dropdown,
  .nav-service:has(.service-dropdown:hover) .service-dropdown,
  .nav-service:has(.service-dropdown:focus-within) .service-dropdown,
  .nav-service:not(.is-open) .service-dropdown {
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    transform: translate(-50%, 10px) !important;
  }

  .nav-service.is-open .service-dropdown {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transform: translate(-50%, 0) !important;
  }
}

@media (max-width: 679px) {
  .booking-form select[multiple] {
    min-height: 136px !important;
  }

  .hero-card {
    gap: 8px !important;
  }

  .hero-card > div,
  .hero-card .hero-hours {
    padding: 8px 10px !important;
    border-radius: 14px !important;
  }

  .team-block {
    margin-top: -10px !important;
  }
}


/* v84: restore single service select and match detail section row with detail head */
.detail-section-row {
  justify-content: space-between !important;
  background: rgba(248, 201, 215, 0.34) !important;
  color: #7f3551 !important;
  font-size: 0.78rem !important;
  font-weight: 900 !important;
  text-align: left !important;
  text-transform: uppercase !important;
}

.detail-section-row span {
  width: auto !important;
  color: #7f3551 !important;
  font-family: inherit !important;
  font-size: inherit !important;
  font-weight: inherit !important;
  text-transform: inherit !important;
}

.booking-service-field .select-wrap::after {
  display: block !important;
}

/* v89: full English team members, booking specialist filtering, and horizontal team carousel */
.team-rail-wrap {
  width: 100%;
}

.specialist-grid.specialist-count-many {
  display: grid !important;
  grid-auto-flow: column;
  grid-auto-columns: minmax(260px, 320px);
  grid-template-columns: none !important;
  justify-content: start;
  gap: 18px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 8px 4px 24px;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  -webkit-overflow-scrolling: touch;
}

.specialist-grid.specialist-count-many .specialist-card {
  min-width: 0;
  scroll-snap-align: start;
}

.specialist-grid.specialist-count-many .specialist-card img {
  min-height: 220px;
}

.booking-specialist-field option[disabled] {
  color: rgba(127, 53, 81, 0.46);
}

@media (max-width: 680px) {
  .specialist-grid.specialist-count-many {
    grid-auto-columns: minmax(235px, 78vw);
    padding-bottom: 18px;
  }
}

/* v90: hide visible horizontal scrollbar on team carousel while keeping swipe/drag scroll */
.specialist-grid.specialist-count-many {
  scrollbar-width: none !important;
  -ms-overflow-style: none !important;
  padding-bottom: 12px !important;
}

.specialist-grid.specialist-count-many::-webkit-scrollbar {
  display: none !important;
  width: 0 !important;
  height: 0 !important;
}


/* v192: show all specialists in booking select; unsupported service choices stay visible but disabled */
.booking-specialist-field option:disabled {
  color: rgba(34, 28, 26, 0.42);
}

/* v195: clearer booking validation and iOS date/time field fit */
.booking-date,
.booking-time,
.booking-date input,
.booking-time input,
.booking-time .select-wrap,
.booking-time select {
  min-width: 0 !important;
  max-width: 100% !important;
  box-sizing: border-box !important;
}

.booking-date input,
.booking-time input,
.booking-time select {
  display: block !important;
  width: 100% !important;
  text-align: left !important;
  line-height: 1.2 !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
}

.booking-status {
  line-height: 1.35 !important;
  overflow-wrap: anywhere !important;
}

@media (max-width: 520px) {
  .booking-form {
    width: min(100%, calc(100vw - 28px)) !important;
    padding-inline: 14px !important;
    gap: 10px !important;
  }

  .booking-form label {
    min-width: 0 !important;
  }

  .booking-date input,
  .booking-time input,
  .booking-time select {
    min-height: 44px !important;
    padding: 0 14px !important;
    font-size: 16px !important;
    font-weight: 800 !important;
  }
}
