/*
Gia Beauty Lounge Design System
Custom editorial luxury styling
Designed and developed by Jhulian Velasco
*/

/* ═══════════════════════════════════════════════════════
   GIA BEAUTY LOUNGE — SHARED STYLESHEET
   Single source of truth for: header, nav, logo,
   language-toggle, mobile-menu, submenu, floating-actions,
   footer, and responsive breakpoints for those components.
   Page-specific styles live in each page's <style> block.
   ═══════════════════════════════════════════════════════ */

@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600&family=Josefin+Sans:wght@500&family=Manrope:wght@400;500;600;700&display=swap");

/* ─── DESIGN TOKENS ─────────────────────────────────── */
:root {
  --bg: #f4f0eb;
  --cream: #faf7f2;
  --stone: #e8e1d8;
  --taupe: #8d837b;
  --brown: #5b4c44;
  --charcoal: #2a2522;
  --rose: #c98f8f;
  --blush: #ead6d1;
  --blush-soft: #f3e7e3;
  --blush-hover: #dfc4bd;
  --gold: #b79a72;
  --white: #ffffff;
  --font-serif: "Cormorant Garamond", Georgia, serif;
  --font-sans: "Manrope", Arial, sans-serif;
}

/* ─── RESET ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scrollbar-gutter: stable; }
body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--charcoal);
  letter-spacing: -0.005em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html.lang-kr body {
  word-break: keep-all;
  overflow-wrap: anywhere;
}

html.lang-kr .square-btn,
html.lang-kr .hero-cta,
html.lang-kr .text-link,
html.lang-kr .mobile-menu a,
html.lang-kr .category-nav a,
html.lang-kr .filter-pill {
  line-height: 1.35;
}

body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
input, textarea, select, button { font: inherit; }

h1, h2, h3, h4, h5, h6,
blockquote,
.price,
.combo-price,
.promo-price,
.membership-value {
  font-family: var(--font-serif);
}

/* Hero editorial title uses a div, not heading tags */
.hero-script {
  font-family: var(--font-serif);
}

.price,
.price-value,
.promo-price,
.package-price,
.membership-price,
.promo-offer,
.price-table td.price-cell {
  font-family: var(--font-serif);
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--charcoal);
}

.price,
.price-value,
.promo-price,
.package-price {
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1;
}

.price-table td.price-cell {
  font-size: clamp(26px, 2.4vw, 36px);
  line-height: 1;
  text-align: right;
}

.service-number-bg,
.value-item::before,
.fp-feature-content::after,
.fp-secondary-content::after,
.feature-number,
.combo-card::before,
.package-card::before,
.approach-number,
.promo-number,
.tip-num,
.aftercare-card .tip-num,
.pkg-category-label > span {
  font-family: var(--font-serif) !important;
  font-weight: 400 !important;
  letter-spacing: -0.02em !important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.service-number-bg {
  font-size: clamp(138px, 20vw, 310px) !important;
}

.value-item::before {
  font-size: 56px !important;
}

.feature-number {
  font-size: clamp(104px, 13vw, 200px) !important;
}

.fp-feature-content::after {
  font-size: clamp(220px, 18vw, 260px) !important;
}

.fp-secondary-content::after {
  font-size: clamp(150px, 14vw, 190px) !important;
}

.fp-feature-content::after,
.fp-secondary-content::after {
  right: 12px !important;
  bottom: -16px !important;
  color: rgba(91, 76, 68, 0.055) !important;
  line-height: 0.8 !important;
  z-index: 0 !important;
}

.approach-number {
  font-size: clamp(22px, 2.2vw, 30px) !important;
  line-height: 0.95 !important;
}

.promo-number {
  font-size: clamp(42px, 4.4vw, 58px) !important;
  line-height: 0.9 !important;
}

.combo-card::before {
  font-size: clamp(104px, 9vw, 128px) !important;
  top: auto !important;
  right: 14px !important;
  bottom: -12px !important;
  color: rgba(91, 76, 68, 0.055) !important;
  line-height: 0.8 !important;
  z-index: 0 !important;
}

.package-card::before {
  font-size: clamp(96px, 8vw, 118px) !important;
  top: auto !important;
  right: 14px !important;
  bottom: -12px !important;
  color: rgba(91, 76, 68, 0.055) !important;
  line-height: 0.8 !important;
  z-index: 0 !important;
}

.pkg-category-label > span {
  font-size: clamp(50px, 5.6vw, 86px) !important;
}

.aftercare-card .tip-num,
.tip-num {
  font-size: 16px !important;
  line-height: 1.05 !important;
}

@media (max-width: 768px) {
  .service-number-bg {
    font-size: clamp(130px, 34vw, 178px) !important;
  }

  .value-item::before {
    font-size: 50px !important;
  }

  .feature-number {
    font-size: clamp(104px, 28vw, 168px) !important;
  }

  .fp-feature-content::after {
    font-size: clamp(142px, 34vw, 190px) !important;
  }

  .fp-secondary-content::after {
    font-size: clamp(128px, 30vw, 160px) !important;
  }

  .fp-feature-content::after,
  .fp-secondary-content::after {
    right: 10px !important;
    bottom: -12px !important;
  }

  .approach-number {
    font-size: 24px !important;
  }

  .promo-number {
    font-size: 42px !important;
  }

  .combo-card::before {
    font-size: 102px !important;
    right: 12px !important;
    bottom: -10px !important;
  }

  .package-card::before {
    font-size: 94px !important;
    right: 12px !important;
    bottom: -10px !important;
  }

  .pkg-category-label > span {
    font-size: clamp(46px, 15vw, 68px) !important;
  }

  .aftercare-card .tip-num,
  .tip-num {
    font-size: 15px !important;
  }
}

/* ─── SITE HEADER ────────────────────────────────────── */
/* Verbatim from index.html lines 51-226                  */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 72px;
  z-index: 100;
  background: rgba(250, 247, 242, 0.82);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(91, 76, 68, 0.12);
}

.nav {
  max-width: 1320px;
  height: 100%;
  margin: 0 auto;
  padding: 0 42px;
  display: grid;
  grid-template-columns: 220px 1fr 220px;
  align-items: center;
}

.logo {
  display: inline-flex;
  align-items: center;
  width: fit-content;
}

.logo img {
  display: block;
  width: auto;
  height: 36px;
  max-width: 190px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 38px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--brown);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.nav-links a.active {
  color: var(--charcoal);
  border-bottom: 0 !important;
  box-shadow: inset 0 -1px 0 var(--blush-hover);
}

.nav-right {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 14px;
  font-size: 12px;
  font-weight: 700;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.book-small {
  padding: 10px 18px;
  border: 1px solid var(--blush-hover);
  border-radius: 999px;
  background: rgba(234, 214, 209, 0.42);
}

.language-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--brown);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.language-toggle button {
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font: inherit;
  padding: 2px 0;
  opacity: 0.52;
}

.language-toggle button.active {
  opacity: 1;
  color: var(--charcoal);
  border-bottom: 1px solid var(--blush-hover);
}

.mobile-actions {
  display: none;
  align-items: center;
  gap: 14px;
  font-size: 22px;
  color: var(--brown);
}

.mobile-actions svg {
  width: 22px;
  height: 22px;
  display: block;
  stroke: currentColor;
}

.menu-toggle {
  width: 34px;
  height: 28px;
  border: 0;
  background: transparent;
  display: grid;
  gap: 6px;
  cursor: pointer;
  padding: 0;
  z-index: 200;
}

.menu-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--charcoal);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

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

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

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

.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--cream);
  z-index: 95;
  transform: translateX(100%);
  transition: transform 0.45s ease;
  padding-top: 90px;
  overflow-y: auto;
  overscroll-behavior: contain;
}

.mobile-menu.open {
  transform: translateX(0);
}

.mobile-menu-inner {
  padding: 30px 34px 34px;
}

.mobile-menu-section {
  padding: 13px 0;
}

.mobile-menu-section:first-child {
  padding-top: 0;
}

.mobile-menu-section:nth-of-type(3) {
  margin-top: 16px;
  padding-top: 24px;
  border-top: 1px solid rgba(223, 196, 189, 0.32);
}

.mobile-menu-section h3 {
  font-family: var(--font-serif);
  font-size: 24px;
  text-transform: uppercase;
  margin-bottom: 6px;
  color: var(--charcoal);
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1;
}

.mobile-menu-section a {
  display: block;
  min-height: 34px;
  padding: 6px 0;
  font-size: 14px;
  color: var(--taupe);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.4;
  font-weight: 500;
}

.mobile-menu-section a + a {
  margin-top: 0;
}

.mobile-menu-section--single {
  padding: 7px 0;
}

.mobile-menu-primary {
  font-family: var(--font-serif);
  color: var(--charcoal) !important;
  font-size: 24px !important;
  font-weight: 400;
  letter-spacing: 0.04em !important;
  line-height: 1 !important;
}

.mobile-menu a.active {
  color: var(--charcoal) !important;
  box-shadow: inset 0 -1px 0 var(--blush-hover);
}

.mobile-consult {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  margin-top: 24px;
  background: var(--blush);
  color: var(--brown);
  padding: 13px 22px;
  min-height: 46px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-align: left;
  text-transform: uppercase;
}

/* ─── TREATMENTS DROPDOWN ─────────────────────────────── */
/* Used by index.html via theme.css (no inline version)    */
.nav-item {
  position: relative;
}

.nav-item.has-submenu::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  width: 200px;
  height: 12px;
  transform: translateX(-50%);
}

.submenu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  width: 220px;
  padding: 14px 0;
  display: grid;
  gap: 0;
  background: rgba(250, 247, 242, 0.96);
  border: 1px solid rgba(223, 196, 189, 0.55);
  box-shadow: 0 10px 24px rgba(42, 37, 34, 0.08);
  border-radius: 12px;
  backdrop-filter: blur(8px);
  transform: translate(-50%, 6px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 180;
}

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

.submenu-label {
  padding: 0 20px 8px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  line-height: 1.2;
}

.submenu a {
  display: block;
  padding: 11px 20px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--brown);
  transition: background 0.15s ease, color 0.15s ease, padding-left 0.15s ease;
  border-top: 1px solid rgba(223, 196, 189, 0.35);
}

.submenu a:first-of-type { border-top: 0; }

.submenu a:hover {
  background: rgba(234, 214, 209, 0.38);
  color: var(--charcoal);
  padding-left: 24px;
}

/* ─── FLOATING ACTION BUTTONS ────────────────────────── */
/* Verbatim from index.html lines 1220-1252               */
.floating-actions {
  position: fixed;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 90;
  display: grid;
  gap: 10px;
}

.float-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #b88f9b;
  color: var(--cream);
  display: grid;
  place-items: center;
  box-shadow: 0 12px 30px rgba(42, 37, 34, 0.12);
  transition: transform 0.2s ease, background 0.2s ease;
}

.float-btn:hover {
  background: #a97a87;
  transform: translateY(-2px);
}

.float-btn svg {
  width: 21px;
  height: 21px;
  display: block;
  stroke: currentColor;
}

/* Booking FAB — matches index.html emphasis */
.float-btn.float-btn--book {
  background: #a8697a !important;
  position: relative;
}

.float-btn.float-btn--book::before {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: transparent;
  border: 2px solid rgba(184, 143, 155, 0.7);
  animation: bookingRing 2.6s ease-out infinite;
  pointer-events: none;
}

.float-btn.float-btn--book::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: transparent;
  border: 2px solid rgba(184, 143, 155, 0.4);
  animation: bookingRing 2.6s ease-out 0.8s infinite;
  pointer-events: none;
}

@keyframes bookingRing {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(1.72);
    opacity: 0;
  }
}

.float-btn.float-btn--book:hover {
  background: #94576a !important;
}

/* ─── BACK TO TOP (premium circular FAB) ─────────────── */
.to-top {
  --to-top-size: 56px;
  --to-top-icon: 24px;
  position: fixed;
  right: calc(22px + env(safe-area-inset-right, 0px));
  bottom: calc(22px + env(safe-area-inset-bottom, 0px));
  z-index: 89;
  width: var(--to-top-size);
  height: var(--to-top-size);
  border-radius: 50%;
  display: grid;
  place-items: center;
  padding: 0;
  margin: 0;
  color: var(--brown);
  background: rgba(250, 247, 242, 0.82);
  border: 1px solid rgba(223, 196, 189, 0.65);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.65) inset,
    0 10px 28px rgba(42, 37, 34, 0.1),
    0 2px 8px rgba(42, 37, 34, 0.06);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  opacity: 0.9;
  transform: scale(1) translateZ(0);
  transition:
    opacity 0.35s ease,
    transform 0.35s ease,
    background 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.35s ease,
    color 0.25s ease;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.to-top:hover {
  opacity: 1;
  color: var(--charcoal);
  background: rgba(255, 252, 248, 0.94);
  border-color: rgba(184, 143, 155, 0.55);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.75) inset,
    0 14px 36px rgba(42, 37, 34, 0.14),
    0 4px 12px rgba(42, 37, 34, 0.08);
  transform: scale(1.04) translateY(-1px);
}

.to-top:active {
  transform: scale(0.96) translateY(0);
  transition-duration: 0.12s;
}

.to-top:focus {
  outline: none;
}

.to-top:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

/* Stronger presence after meaningful scroll depth */
.to-top.is-scrolled {
  opacity: 1;
  color: var(--charcoal);
  background: rgba(255, 252, 248, 0.94);
  border-color: rgba(184, 143, 155, 0.52);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.8) inset,
    0 16px 40px rgba(42, 37, 34, 0.16),
    0 4px 14px rgba(42, 37, 34, 0.09);
}

.to-top svg {
  width: var(--to-top-icon);
  height: var(--to-top-icon);
  display: block;
  stroke: currentColor;
  stroke-width: 2;
  flex-shrink: 0;
}

@supports not (backdrop-filter: blur(1px)) {
  .to-top {
    background: rgba(250, 247, 242, 0.96);
  }

  .to-top.is-scrolled {
    background: rgba(255, 252, 248, 0.98);
  }
}

@media (prefers-reduced-motion: reduce) {
  .to-top,
  .to-top:hover,
  .to-top:active {
    transition: none;
  }

  .to-top:hover {
    transform: none;
  }

  .to-top:active {
    transform: none;
  }
}

/* ─── SHARED UTILITIES ───────────────────────────────── */
.square-btn {
  display: inline-block;
  background: var(--blush);
  color: var(--brown);
  padding: 14px 34px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  transition: background 0.2s ease, transform 0.2s ease;
}
.square-btn:hover { background: var(--blush-hover); transform: translateY(-1px); }

.eyebrow {
  display: block;
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

/* ─── FOOTER ─────────────────────────────────────────── */
footer {
  background: #e8e1d8;
  padding: 70px 24px;
  color: var(--brown);
}

.footer-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 40px;
}

footer h4 {
  font-family: var(--font-sans);
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 18px;
  color: var(--charcoal);
}

.footer-logo {
  display: block;
  width: min(220px, 100%);
  height: auto;
  margin-bottom: 24px;
}

footer p,
footer a {
  display: block;
  font-size: 14px;
  color: var(--brown);
  margin-bottom: 10px;
}

footer a:hover {
  color: var(--charcoal);
}

.service-menu-sticky.is-compact,
.package-grid-sticky.is-compact {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 12px !important;
  padding-bottom: 13px !important;
}

.service-menu-sticky.is-compact .section-intro,
.package-grid-sticky.is-compact .section-intro {
  max-height: none !important;
  opacity: 1 !important;
  overflow: visible !important;
  width: 100% !important;
  max-width: 760px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  margin-bottom: 11px !important;
  text-align: center !important;
}

.service-menu-sticky.is-compact .section-intro > .eyebrow,
.service-menu-sticky.is-compact .section-intro p,
.service-menu-sticky.is-compact .category-note,
.service-menu-sticky.is-compact .sticky-note,
.service-menu-sticky.is-compact .service-filter-note,
.package-grid-sticky.is-compact .section-intro > .eyebrow,
.package-grid-sticky.is-compact .section-intro p,
.package-grid-sticky.is-compact .service-filter-note {
  display: none !important;
}

.service-menu-sticky.is-compact .section-intro h2,
.package-grid-sticky.is-compact .section-intro h2 {
  font-size: clamp(24px, 3vw, 34px) !important;
  line-height: 1.05 !important;
  margin-bottom: 0 !important;
}

.service-menu-sticky.is-compact .category-nav,
.package-grid-sticky.is-compact .filter-pills {
  box-sizing: border-box;
  flex-wrap: nowrap !important;
  gap: 8px !important;
  justify-content: center !important;
  width: 100% !important;
  max-width: 1120px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  margin-bottom: 0 !important;
  overflow-x: visible !important;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.service-menu-sticky.is-compact .category-nav a,
.service-menu-sticky.is-compact .category-nav button,
.package-grid-sticky.is-compact .filter-pill {
  flex-shrink: 0 !important;
  padding-top: 7px !important;
  padding-bottom: 7px !important;
  white-space: nowrap !important;
}

.service-menu-sticky.is-compact .category-nav::-webkit-scrollbar,
.package-grid-sticky.is-compact .filter-pills::-webkit-scrollbar {
  display: none;
}

/* ─── RESPONSIVE ─────────────────────────────────────── */
@media (max-width: 980px) {
  .site-header {
    height: 64px;
  }

  .nav {
    grid-template-columns: 1fr auto;
    padding: 0 22px;
  }

  .logo img {
    height: 30px;
    max-width: 160px;
  }

  .nav-links,
  .nav-right {
    display: none;
  }

  .mobile-actions {
    display: flex;
  }

  .mobile-actions .language-toggle {
    font-size: 11px;
    gap: 5px;
  }

  .floating-actions {
    right: 14px;
    gap: 8px;
  }

  .float-btn {
    width: 44px;
    height: 44px;
  }

  .float-btn svg {
    width: 19px;
    height: 19px;
  }

  .to-top {
    --to-top-size: 60px;
    --to-top-icon: 26px;
    right: calc(18px + env(safe-area-inset-right, 0px));
    bottom: calc(20px + env(safe-area-inset-bottom, 0px));
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }
}

@media (max-width: 560px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }

  footer {
    padding: 52px 24px;
  }
}

/* ═══════════════════════════════════════════════════════
   LOCKED HEADER — verbatim from index.html original CSS.
   Only properties that were explicitly set on index.html
   are locked here. No extra properties added.
   ═══════════════════════════════════════════════════════ */

@media (max-width: 980px) {
  .service-menu-sticky,
  .package-grid-sticky {
    --category-cue-tone: rgba(91, 76, 68, 0.78);
    --category-cue-wash: rgba(250, 247, 242, 0.9);
  }

  .service-menu-sticky.is-compact .category-nav,
  .package-grid-sticky.is-compact .filter-pills {
    padding-inline: clamp(42px, 11vw, 58px) clamp(76px, 20vw, 112px) !important;
    scroll-padding-inline: 42px;
    justify-content: flex-start !important;
    overflow-x: auto !important;
    -webkit-mask-image: linear-gradient(
      90deg,
      transparent 0,
      #000 48px,
      #000 calc(100% - 78px),
      transparent 100%
    );
    mask-image: linear-gradient(
      90deg,
      transparent 0,
      #000 48px,
      #000 calc(100% - 78px),
      transparent 100%
    );
  }

  .service-menu-sticky.is-compact .category-nav a:last-child,
  .service-menu-sticky.is-compact .category-nav button:last-child,
  .package-grid-sticky.is-compact .filter-pill:last-child {
    margin-right: 10px;
  }

  .category-scroll-cue {
    position: absolute;
    top: 50%;
    z-index: 20;
    width: 54px;
    height: 42px;
    border: 0;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-50%);
    transition: opacity 0.22s ease;
  }

  .category-scroll-cue::after {
    content: "";
    position: absolute;
    top: 50%;
    z-index: 1;
    width: 11px;
    height: 11px;
    border-top: 1.5px solid var(--category-cue-tone);
    border-right: 1.5px solid var(--category-cue-tone);
  }

  .category-scroll-cue--left {
    left: 0;
    background: linear-gradient(90deg, var(--category-cue-wash) 0%, rgba(250, 247, 242, 0.74) 45%, rgba(250, 247, 242, 0) 100%);
  }

  .category-scroll-cue--left::after {
    left: 18px;
    transform: translateY(-50%) rotate(-135deg);
  }

  .category-scroll-cue--right {
    right: 0;
    background: linear-gradient(270deg, var(--category-cue-wash) 0%, rgba(250, 247, 242, 0.74) 45%, rgba(250, 247, 242, 0) 100%);
  }

  .category-scroll-cue--right::after {
    right: 18px;
    transform: translateY(-50%) rotate(45deg);
  }

  .service-menu-sticky.is-compact .category-scroll-cue,
  .package-grid-sticky.is-compact .category-scroll-cue {
    top: auto;
    bottom: 7px;
    transform: none;
  }

  .service-menu-sticky.is-compact.has-scroll-left .category-scroll-cue--left,
  .package-grid-sticky.is-compact.has-scroll-left .category-scroll-cue--left,
  .service-menu-sticky.is-compact.has-scroll-right .category-scroll-cue--right,
  .package-grid-sticky.is-compact.has-scroll-right .category-scroll-cue--right {
    opacity: 0.96;
  }
}

.site-header {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 72px !important;
  z-index: 100 !important;
}

.nav {
  max-width: 1320px !important;
  height: 100% !important;
  margin: 0 auto !important;
  padding: 0 42px !important;
  display: grid !important;
  grid-template-columns: 220px 1fr 220px !important;
  align-items: center !important;
}

.logo {
  display: inline-flex !important;
  align-items: center !important;
  width: fit-content !important;
}

.logo img {
  display: block !important;
  width: auto !important;
  height: 36px !important;
  max-width: 190px !important;
  object-fit: contain !important;
}

.nav-links {
  display: flex !important;
  justify-content: center !important;
  gap: 38px !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  letter-spacing: 0.06em !important;
  text-transform: uppercase !important;
  color: var(--brown) !important;
}

.nav-right {
  display: flex !important;
  justify-content: flex-end !important;
  align-items: center !important;
  gap: 14px !important;
  font-size: 12px !important;
  font-weight: 700 !important;
}

.language-toggle {
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  color: var(--brown) !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  letter-spacing: 0.04em !important;
  text-transform: uppercase !important;
}

.floating-actions {
  position: fixed !important;
  right: 24px !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  z-index: 90 !important;
  display: grid !important;
  gap: 10px !important;
}

.float-btn {
  width: 48px !important;
  height: 48px !important;
  border-radius: 50% !important;
  background: #b88f9b !important;
  color: var(--cream) !important;
  display: grid !important;
  place-items: center !important;
}

.float-btn svg {
  width: 21px !important;
  height: 21px !important;
  display: block !important;
}

.float-btn.float-btn--book {
  background: #a8697a !important;
  position: relative !important;
}

.float-btn.float-btn--book::before {
  content: "" !important;
  position: absolute !important;
  inset: -4px !important;
  border-radius: 50% !important;
  background: transparent !important;
  border: 2px solid rgba(184, 143, 155, 0.7) !important;
  animation: bookingRing 2.6s ease-out infinite !important;
  pointer-events: none !important;
}

.float-btn.float-btn--book::after {
  content: "" !important;
  position: absolute !important;
  inset: -4px !important;
  border-radius: 50% !important;
  background: transparent !important;
  border: 2px solid rgba(184, 143, 155, 0.4) !important;
  animation: bookingRing 2.6s ease-out 0.8s infinite !important;
  pointer-events: none !important;
}

.float-btn.float-btn--book:hover {
  background: #94576a !important;
}

@media (max-width: 980px) {
  .site-header {
    height: 64px !important;
  }

  .nav {
    grid-template-columns: 1fr auto !important;
    padding: 0 22px !important;
  }

  .nav-links,
  .nav-right {
    display: none !important;
  }

  .mobile-actions {
    display: flex !important;
  }

  .floating-actions {
    right: 14px !important;
    gap: 8px !important;
  }

  .float-btn {
    width: 44px !important;
    height: 44px !important;
  }

  .float-btn svg {
    width: 19px !important;
    height: 19px !important;
  }
}
