/* ================================================================
   HEALTHY SPA - BRAND KIT v1.0
   Neo Heritage Wellness aesthetic
   Force light theme (no dark mode override)
================================================================ */

:root {
  /* Force light color-scheme so iOS Safari + Edge force-dark don't invert. */
  color-scheme: light only;

  /* Surface */
  --canvas: #F5EFE6;
  --elevated: #FFFFFF;
  --sunken: #EDE6D9;
  --tinted: #FAF7F0;

  /* Ink */
  --ink-primary: #1A1410;
  --ink-secondary: #5C544A;
  --ink-muted: #8A8074;
  --ink-inverse: #FAF7F0;

  /* Universal Gold Accent */
  --gold: #C8A050;
  --gold-soft: #D4B677;
  --gold-deep: #A6803A;

  /* Luxury (CS224) */
  --lux-bg: #37210F;
  --lux-soft: #42291A;
  --lux-deep: #1F1208;
  --lux-gold: #BF934A;
  --lux-gold-soft: #AC8A62;

  /* Regal (CS14) */
  --reg-bg: #27331A;
  --reg-soft: #2F3D20;
  --reg-deep: #1A2412;
  --reg-gold: #C39D4E;
  --reg-gold-soft: #B69F69;

  /* Annam (CS04) */
  --ann-bg: #E9C487;
  --ann-soft: #F0D4A0;
  --ann-deep: #C9A56B;
  --ann-text: #2E0A00;
  --ann-text-soft: #5A3820;

  /* Typography */
  --font-display: 'Oswald', 'Bebas Neue', sans-serif;
  --font-script: 'Dancing Script', 'Allura', 'Brush Script MT', cursive;
  --font-body: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Spacing */
  --container: 1280px;
  --gutter: clamp(1rem, 4vw, 2rem);

  /* Shadows */
  --shadow-soft: 0 4px 24px rgba(26, 20, 16, 0.08);
  --shadow-card: 0 8px 32px rgba(26, 20, 16, 0.12);
  --shadow-hover: 0 16px 48px rgba(26, 20, 16, 0.18);

  /* Radius */
  --r-sm: 6px;
  --r-md: 12px;
  --r-lg: 24px;
}

/* iOS Safari + Chrome force-dark + Edge auto-dark: keep light theme regardless. */
@media (prefers-color-scheme: dark) {
  :root { color-scheme: light only; }
}

/* Lock script font behaviour across browsers — script fonts (Dancing Script,
   Allura fallback) only ship weight 400. Browsers fake bold differently
   (Chrome aggressive, Safari subtle, Edge in-between). font-synthesis: none
   forces every browser to use real glyphs only, no fakery.
   Also: text-transform uppercase looks broken on cursive script — lock to none. */
[class*="-script"],
.font-script,
.hero-slogan,
.section-script,
.promo-script,
.branch-script,
.phone-branch,
.footer-tag {
  font-family: var(--font-script);
  font-weight: 400 !important;
  font-style: normal !important;
  text-transform: none !important;
  letter-spacing: 0;
  font-synthesis: none;
  -webkit-font-synthesis: none;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html {
  scroll-behavior: smooth;
}

html {
  background: var(--canvas);
}

body {
  font-family: var(--font-body);
  background: var(--canvas);
  color: var(--ink-primary);
  line-height: 1.6;
  font-size: 15px;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* Container */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* Typography */
.font-display {
  font-family: var(--font-display);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-weight: 500;
}

.font-script {
  font-family: var(--font-script);
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  line-height: 1.15;
  font-weight: 500;
}

/* Hidden — legacy eyebrow no longer rendered (replaced by gold title + subtitle) */
.section-eyebrow {
  display: none !important;
}

.section-title {
  font-family: var(--font-display);
  text-align: center;
  font-size: clamp(1.7rem, 5vw, 2.5rem);
  color: var(--gold);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 600;
  line-height: 1.2;
  margin: 0 0 0.85rem;
}

.section-subtitle {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  font-size: clamp(0.92rem, 2.2vw, 1.02rem);
  line-height: 1.6;
  color: var(--ink-secondary);
}

.section-script {
  font-family: var(--font-script);
  font-size: clamp(2rem, 6vw, 3.5rem);
  color: var(--gold);
  display: block;
  line-height: 1;
  margin-bottom: 0.5rem;
}

/* ================================================================
   HEADER (top bar - logo + lang + book)
================================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(245, 239, 230, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(200, 160, 80, 0.15);
  transition: all 0.3s ease;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem var(--gutter);
  max-width: var(--container);
  margin: 0 auto;
  gap: 0.75rem;
}

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

.brand img {
  height: 36px;
  width: auto;
  max-width: 160px;
  display: block;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-left: auto;
}

/* Header nav — hidden on mobile, shown on desktop */
.header-nav {
  display: none;
}

.header-nav-list {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.header-nav-list li { margin: 0; }

.header-nav-list a {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-primary);
  text-decoration: none;
  padding: 0.5rem 0;
  position: relative;
  transition: color 0.2s ease;
}

.header-nav-list a:hover {
  color: var(--gold);
}

.header-nav-list a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.25s ease;
}

.header-nav-list a:hover::after {
  width: 100%;
}

/* Language switcher - flag dropdown */
.lang-switch {
  position: relative;
  display: inline-flex;
}

.lang-current {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 0.7rem;
  background: transparent;
  border: 1px solid rgba(200, 160, 80, 0.35);
  border-radius: 2px;
  font-family: var(--font-display);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  color: var(--ink-primary);
  cursor: pointer;
  transition: all 0.2s ease;
  font-weight: 600;
  line-height: 1.2;
  height: 100%;
  min-height: 36px;
}

.lang-current:hover,
.lang-switch.open .lang-current {
  border-color: var(--gold);
  background: rgba(200, 160, 80, 0.08);
}

.lang-flag {
  font-size: 1rem;
  line-height: 1;
}

.lang-code {
  font-weight: 600;
}

.lang-caret {
  transition: transform 0.2s ease;
}

.lang-switch.open .lang-caret {
  transform: rotate(180deg);
}

.lang-dropdown {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  min-width: 170px;
  background: var(--elevated);
  border: 1px solid rgba(200, 160, 80, 0.25);
  border-radius: 4px;
  box-shadow: 0 8px 24px rgba(26, 20, 16, 0.12);
  list-style: none;
  margin: 0;
  padding: 0.4rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  z-index: 102;
}

.lang-switch.open .lang-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-dropdown li {
  margin: 0;
  padding: 0;
}

.lang-dropdown a {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.55rem 0.75rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--ink-primary);
  border-radius: 2px;
  transition: background 0.15s ease, color 0.15s ease;
  letter-spacing: 0;
}

.lang-dropdown a:hover {
  background: rgba(200, 160, 80, 0.1);
  color: var(--gold-deep);
}

.lang-dropdown a.active {
  background: rgba(200, 160, 80, 0.15);
  color: var(--gold-deep);
  font-weight: 600;
}

.btn-book {
  background: var(--gold);
  color: var(--ink-primary);
  font-family: var(--font-display);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: none;
  padding: 0.55rem 0.85rem;
  border-radius: 2px;
  transition: all 0.3s ease;
  border: 1px solid var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  white-space: nowrap;
  font-weight: 600;
  line-height: 1.2;
  min-height: 36px;
  box-sizing: border-box;
}

.btn-book:hover {
  background: var(--ink-primary);
  border-color: var(--ink-primary);
  color: var(--ink-inverse);
}

/* ================================================================
   BOTTOM NAV BAR - Katinat-style
   - Curve top tall enough to contain chevron ABOVE the items row
   - BOOK button highlighted but stays INSIDE nav (no overflow)
================================================================ */
.bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 99;
  /* Match hero brown gradient bottom region (lux-bg = same mid-tone) */
  background: var(--lux-bg);
  box-shadow: 0 -8px 28px rgba(26, 20, 16, 0.35);
  /* Compact: top 0.75rem (chevron outside above), bottom safe-area */
  padding: 0.75rem 0 calc(env(safe-area-inset-bottom) + 0.3rem);
  color: var(--ink-inverse);
  overflow: visible;
  transition: padding 0.35s cubic-bezier(0.2, 0.9, 0.3, 1);
}

/* Brown extension - covers iOS safe-area zone */
.bottom-nav::after {
  content: '';
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  height: env(safe-area-inset-bottom, 0px);
  background: var(--lux-bg);
  pointer-events: none;
  z-index: 98;
}

/* SVG curve - 20% taller (30px) with deeper arc, NO gap with nav surface */
.bottom-nav-curve {
  position: absolute;
  bottom: 100%;
  left: 0;
  width: 100%;
  height: 30px;
  display: block;
  color: var(--lux-bg);
  pointer-events: none;
  margin-bottom: -1px;
}

/* Double-chevron - lifted ABOVE nav top edge to sit just below curve apex */
.bottom-nav-pull {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  width: 52px;
  height: 24px;
  background: transparent;
  border: none;
  color: rgba(250, 247, 240, 0.6);
  cursor: pointer;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  z-index: 3;
}

.pull-chevron {
  width: 22px;
  height: 14px;
  transform: rotate(180deg);
  transition: opacity 0.2s ease;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.pull-chevron-2 {
  margin-top: -7px;
  opacity: 0.55;
}

.bottom-nav:not(.expanded) .pull-chevron-1 {
  animation: chevron-bounce-1 1.8s ease-in-out infinite;
}

.bottom-nav:not(.expanded) .pull-chevron-2 {
  animation: chevron-bounce-2 1.8s ease-in-out infinite 0.15s;
}

@keyframes chevron-bounce-1 {
  0%, 100% { transform: rotate(180deg) translateY(0); opacity: 0.55; }
  50% { transform: rotate(180deg) translateY(-3px); opacity: 1; }
}

@keyframes chevron-bounce-2 {
  0%, 100% { transform: rotate(180deg) translateY(0); opacity: 0.4; }
  50% { transform: rotate(180deg) translateY(-3px); opacity: 0.85; }
}

.bottom-nav.expanded .pull-chevron {
  transform: rotate(0deg);
  animation: none;
}

.bottom-nav.expanded .pull-chevron-2 {
  margin-top: -7px;
  opacity: 0.55;
}

.bottom-nav.expanded .bottom-nav-pull {
  color: var(--gold);
}

.bottom-nav-inner {
  display: flex;
  flex-direction: column;
  max-width: var(--container);
  margin: 0 auto;
  overflow: hidden;
}

.bottom-nav-row {
  display: grid;
  gap: 0.25rem;
  transition: max-height 0.35s cubic-bezier(0.2, 0.9, 0.3, 1),
              opacity 0.25s ease,
              transform 0.35s cubic-bezier(0.2, 0.9, 0.3, 1),
              margin 0.35s ease,
              padding 0.35s ease;
  will-change: max-height, transform;
}

.bottom-nav-row.row-1 {
  grid-template-columns: repeat(5, 1fr);
  position: relative;
  order: 1;
  align-items: center;
}

.bottom-nav-row.row-2 {
  grid-template-columns: repeat(4, 1fr);
  order: 2;
  max-height: 0;
  opacity: 0;
  transform: translateY(-10px);
  overflow: hidden;
  padding: 0;
  margin: 0;
  pointer-events: none;
}

.bottom-nav.expanded .bottom-nav-row.row-2 {
  max-height: 80px;
  opacity: 1;
  transform: translateY(0);
  padding-top: 0.6rem;
  margin-top: 0.4rem;
  border-top: 1px solid rgba(200, 160, 80, 0.15);
  pointer-events: auto;
}

.bn-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 0.35rem 0.25rem;
  color: rgba(250, 247, 240, 0.65);
  font-family: var(--font-display);
  font-size: 0.62rem;
  letter-spacing: 0.06em;
  transition: color 0.2s ease;
  text-align: center;
  position: relative;
  text-decoration: none;
  line-height: 1.2;
}

.bn-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.bn-icon svg {
  width: 22px;
  height: 22px;
  transition: all 0.2s ease;
}

.bn-label {
  display: block;
  font-weight: 500;
  white-space: nowrap;
}

.bn-item.active,
.bn-item:hover {
  color: var(--gold);
}

.bn-item.active .bn-icon svg,
.bn-item:hover .bn-icon svg {
  color: var(--gold);
}

.bn-item-sm {
  font-size: 0.6rem;
  padding: 0.4rem 0.25rem;
  color: rgba(250, 247, 240, 0.5);
}

.bn-item-sm .bn-icon svg {
  width: 18px;
  height: 18px;
  stroke-width: 1.6;
}

.bn-item-sm:hover,
.bn-item-sm.active {
  color: var(--gold);
}

/* BOOK item — highlighted gold, sits in-line with other items (NO overflow) */
.bn-item.bn-book {
  position: relative;
  background: var(--gold);
  color: var(--lux-deep);
  font-weight: 700;
  border-radius: 14px;
  margin: 0 0.25rem;
  padding: 0.55rem 0.25rem;
  box-shadow: 0 2px 10px rgba(200, 160, 80, 0.35);
}

.bn-item.bn-book .bn-icon svg {
  color: var(--lux-deep);
  width: 24px;
  height: 24px;
  stroke-width: 2.2;
}

.bn-item.bn-book .bn-label {
  color: var(--lux-deep);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.6rem;
}

.bn-item.bn-book:hover,
.bn-item.bn-book.active {
  background: var(--gold-soft);
  color: var(--lux-deep);
}

.bn-item.bn-book:hover .bn-icon svg,
.bn-item.bn-book.active .bn-icon svg,
.bn-item.bn-book:hover .bn-label,
.bn-item.bn-book.active .bn-label {
  color: var(--lux-deep);
}

/* ================================================================
   HERO — Neo Heritage Wellness (Aman/Four Seasons style)
================================================================ */
.hero {
  position: relative;
  background:
    /* Top spotlight — soft warm bloom from above center */
    radial-gradient(ellipse 80% 60% at 50% 0%,
      rgba(200, 160, 80, 0.18) 0%,
      rgba(200, 160, 80, 0.05) 30%,
      transparent 60%),
    /* Vignette — darker corners pull eye to center */
    radial-gradient(ellipse 120% 100% at 50% 50%,
      transparent 0%,
      transparent 50%,
      rgba(0, 0, 0, 0.35) 100%),
    /* Base gradient — diagonal warm depth */
    linear-gradient(160deg,
      var(--lux-soft) 0%,
      var(--lux-bg) 35%,
      var(--lux-deep) 100%);
  color: var(--ink-inverse);
  overflow: hidden;
  padding: 5rem 0 2.5rem;
  isolation: isolate;
}

/* Layer 1: ambient gold mesh — multiple soft bloom points */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle 600px at 85% 15%, rgba(200, 160, 80, 0.22) 0%, transparent 70%),
    radial-gradient(circle 500px at 15% 85%, rgba(191, 147, 74, 0.18) 0%, transparent 70%),
    radial-gradient(circle 400px at 50% 50%, rgba(212, 182, 119, 0.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
  mix-blend-mode: screen;
  opacity: 0.85;
  animation: heroBreathe 14s ease-in-out infinite;
}

@keyframes heroBreathe {
  0%, 100% { opacity: 0.85; transform: scale(1); }
  50%      { opacity: 1;    transform: scale(1.04); }
}

@media (prefers-reduced-motion: reduce) {
  .hero::before { animation: none; }
}

/* Layer 2: subtle film grain via SVG noise — organic texture, NOT geometric pattern */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0.78 0 0 0 0 0.63 0 0 0 0 0.31 0 0 0 0.5 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 240px 240px;
  pointer-events: none;
  z-index: 0;
  opacity: 0.18;
  mix-blend-mode: overlay;
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

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

.hero-eyebrow {
  display: block;
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 1.75rem;
}

.hero-brand {
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 11vw, 5rem);
  line-height: 0.95;
  letter-spacing: 0.04em;
  font-weight: 600;
  color: var(--ink-inverse);
  text-transform: uppercase;
  margin: 0 0 0.85rem;
  display: block;
  /* Subtle warm glow — premium hotel signage feel */
  text-shadow:
    0 0 1px rgba(250, 247, 240, 0.15),
    0 2px 24px rgba(200, 160, 80, 0.18);
}

.hero-services {
  font-family: var(--font-display);
  font-size: clamp(0.6rem, 2.4vw, 0.85rem);
  letter-spacing: 0.12em;
  color: var(--gold);
  text-transform: uppercase;
  margin: 0 0 1.5rem;
  line-height: 1.4;
  font-weight: 400;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: clip;
}

.hero-slogan {
  font-family: var(--font-script);
  font-size: clamp(1.85rem, 6vw, 2.75rem);
  color: var(--gold);
  line-height: 1.1;
  margin: 0 0 1.5rem;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  text-shadow: 0 2px 32px rgba(200, 160, 80, 0.35);
}

.hero-desc {
  font-size: clamp(0.95rem, 2.5vw, 1.1rem);
  color: rgba(250, 247, 240, 0.85);
  margin-bottom: 2rem;
  max-width: 480px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
  margin-bottom: 0;
}

.btn-primary {
  position: relative;
  background: var(--gold); /* fallback when pseudos fail to render */
  color: var(--lux-deep);
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 1rem 1.75rem;
  border-radius: 2px;
  font-weight: 600;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  overflow: hidden;
  isolation: isolate;
  box-shadow:
    0 4px 14px rgba(200, 160, 80, 0.28),
    0 0 22px rgba(200, 160, 80, 0.15);
}

/* Rotating border light — bright arc travels around the button perimeter */
.btn-primary::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 220%;
  aspect-ratio: 1;
  background: conic-gradient(
    from 0deg,
    transparent 0%,
    transparent 80%,
    rgba(255, 245, 200, 0.5) 86%,
    rgba(255, 255, 255, 0.95) 92%,
    rgba(255, 245, 200, 0.5) 98%,
    transparent 100%
  );
  transform: translate(-50%, -50%);
  animation: btn-primary-orbit 4s linear infinite;
  z-index: -2;
  pointer-events: none;
}

/* Inner solid fill — leaves ~2px ring visible for the rotating glow */
.btn-primary::after {
  content: '';
  position: absolute;
  inset: 1.5px;
  border-radius: 1px;
  background: var(--gold);
  z-index: -1;
  transition: background 0.3s ease;
}

@keyframes btn-primary-orbit {
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

@media (prefers-reduced-motion: reduce) {
  .btn-primary::before { animation: none; opacity: 0; }
}

.btn-primary:hover {
  background: var(--gold-soft); /* fallback */
  transform: translateY(-2px);
  box-shadow:
    0 8px 26px rgba(200, 160, 80, 0.38),
    0 0 28px rgba(200, 160, 80, 0.22);
}

.btn-primary:hover::after {
  background: var(--gold-soft);
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 1rem 1.75rem;
  border-radius: 2px;
  border: 1px solid var(--gold);
  font-weight: 500;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-outline:hover {
  background: var(--gold);
  color: var(--ink-inverse);
}

/* On dark surfaces (hero, promo banner, footer) keep ivory text + dim border. */
.on-dark .btn-outline,
.promo-banner .btn-outline,
.site-footer .btn-outline,
.hero .btn-outline {
  color: var(--ink-inverse);
  border-color: rgba(250, 247, 240, 0.4);
}

.on-dark .btn-outline:hover,
.promo-banner .btn-outline:hover,
.site-footer .btn-outline:hover,
.hero .btn-outline:hover {
  background: transparent;
  border-color: var(--gold);
  color: var(--gold);
}

.hero-scroll {
  display: none;
}

/* ================================================================
   SECTION COMMON
================================================================ */
section {
  position: relative;
  padding: clamp(1.75rem, 4vw, 2.75rem) 0;
}

.section-head {
  text-align: center;
  margin-bottom: clamp(1rem, 2.5vw, 1.5rem);
}

.section-head.left {
  text-align: left;
}

/* ================================================================
   WHY HEALTHY SPA (replaces USP)
================================================================ */
.why-section {
  background: var(--tinted);
  padding: clamp(2rem, 4vw, 3rem) 0;
  border-top: 1px solid rgba(200, 160, 80, 0.15);
}

/* .why-title and .why-description kept for backward compat —
   styling now comes from .section-title and .section-subtitle base classes. */

/* ── 4 cards grid ────────────────────────────────────────────── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin-top: clamp(1.25rem, 2.5vw, 1.5rem);
}

.why-card {
  background: var(--elevated);
  padding: 1.5rem 1rem 1.25rem;
  border-radius: var(--r-md);
  text-align: center;
  box-shadow: 0 2px 16px rgba(26, 20, 16, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  border: 1px solid transparent;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.why-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(26, 20, 16, 0.08);
  border-color: rgba(200, 160, 80, 0.25);
}

.why-icon-wrap {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(200, 160, 80, 0.10);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.9rem;
}

.why-icon {
  width: 28px;
  height: 28px;
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-icon svg {
  width: 100%;
  height: 100%;
}

.why-card-title {
  font-family: var(--font-display);
  font-size: clamp(0.85rem, 2.4vw, 1rem);
  letter-spacing: 0.04em;
  margin: 0 0 0.85rem;
  color: var(--ink-primary);
  font-weight: 600;
  line-height: 1.3;
  text-transform: uppercase;
}

.why-card-desc {
  font-size: clamp(0.78rem, 2vw, 0.88rem);
  color: var(--ink-secondary);
  line-height: 1.55;
  margin: 0;
}

/* ── 4 highlights row (under cards) ──────────────────────────── */
.why-highlights {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0.75rem 0.5rem;
  background: rgba(200, 160, 80, 0.08);
  border-radius: var(--r-md);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.4rem 0;
}

.why-highlight {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.35rem 0.6rem;
  position: relative;
  text-align: center;
}

.why-highlight-icon {
  width: 18px;
  height: 18px;
  color: var(--gold);
  flex-shrink: 0;
  display: inline-flex;
}

.why-highlight-icon svg {
  width: 100%;
  height: 100%;
}

.why-highlight-text {
  font-size: clamp(0.72rem, 1.9vw, 0.85rem);
  color: var(--ink-secondary);
  font-weight: 500;
  line-height: 1.3;
  overflow-wrap: break-word;
  hyphens: manual;
}

/* Tablet+: 4 columns inline with vertical separator */
@media (min-width: 768px) {
  .why-highlights {
    grid-template-columns: repeat(4, 1fr);
    padding: 0.85rem 1rem;
  }
  .why-highlight + .why-highlight::before {
    content: '';
    position: absolute;
    left: 0;
    top: 25%;
    bottom: 25%;
    width: 1px;
    background: rgba(200, 160, 80, 0.35);
  }
}

.why-note {
  text-align: center;
  font-size: 0.78rem;
  font-style: italic;
  color: var(--ink-muted);
  margin: 0.75rem 0 0;
  letter-spacing: 0.01em;
}

/* ── Mobile-only (< 480px) — compact cards + tighter highlights ── */
@media (max-width: 480px) {
  .why-grid {
    gap: 0.625rem;
  }
  .why-card {
    padding: 1.25rem 0.85rem 1.1rem;
  }
  .why-icon-wrap {
    width: 52px;
    height: 52px;
    margin-bottom: 0.75rem;
  }
  .why-icon {
    width: 24px;
    height: 24px;
  }
  .why-card-title {
    font-size: 0.78rem;
    letter-spacing: 0.02em;
    line-height: 1.35;
    margin-bottom: 0.6rem;
  }
  .why-card-desc {
    font-size: 0.78rem;
    line-height: 1.5;
  }
  .why-highlights {
    padding: 0.6rem 0.35rem;
    gap: 0.25rem 0;
  }
  .why-highlight {
    padding: 0.3rem 0.45rem;
    gap: 0.35rem;
  }
  .why-highlight-icon {
    width: 16px;
    height: 16px;
  }
  .why-highlight-text {
    font-size: 0.72rem;
    line-height: 1.25;
  }
  .why-note {
    font-size: 0.72rem;
    line-height: 1.4;
  }
}

/* ================================================================
   BEST CHOICE SERVICES
================================================================ */
.best-services {
  background: var(--canvas);
  border-top: 1px solid rgba(200, 160, 80, 0.12);
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.service-card {
  background: var(--elevated);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: all 0.4s ease;
  position: relative;
  border: 1px solid rgba(200, 160, 80, 0.15);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: var(--gold);
}

.service-image {
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, var(--lux-bg), var(--lux-soft));
  position: relative;
  overflow: hidden;
}

.service-image-2 { background: linear-gradient(135deg, var(--reg-bg), var(--reg-soft)); }
.service-image-3 { background: linear-gradient(135deg, var(--ann-deep), var(--ann-bg)); }
.service-image-4 { background: linear-gradient(135deg, var(--lux-soft), var(--lux-bg)); }
.service-image-5 { background: linear-gradient(135deg, var(--reg-soft), var(--reg-deep)); }
.service-image-6 { background: linear-gradient(135deg, var(--ann-bg), var(--ann-deep)); }

.service-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 70% 30%, rgba(200, 160, 80, 0.25) 0%, transparent 60%);
}

.service-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.45rem 0.85rem;
  border-radius: 3px;
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--ink-primary);
  z-index: 2;
  overflow: hidden;
  isolation: isolate;
  box-shadow:
    0 4px 14px rgba(200, 160, 80, 0.38),
    0 0 22px rgba(200, 160, 80, 0.22);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

/* Rotating border light — bright arc traces around the badge perimeter */
.service-badge::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 250%;
  aspect-ratio: 1;
  background: conic-gradient(
    from 0deg,
    transparent 0%,
    transparent 78%,
    rgba(255, 245, 200, 0.55) 84%,
    rgba(255, 255, 255, 1) 90%,
    rgba(255, 245, 200, 0.55) 96%,
    transparent 100%
  );
  transform: translate(-50%, -50%);
  animation: service-badge-orbit 3.2s linear infinite;
  z-index: -2;
  pointer-events: none;
}

/* Inner solid fill — leaves only ~1.5px border visible to show the rotating glow */
.service-badge::after {
  content: '';
  position: absolute;
  inset: 1.5px;
  border-radius: 2px;
  background: var(--gold);
  z-index: -1;
}

@keyframes service-badge-orbit {
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

@media (prefers-reduced-motion: reduce) {
  .service-badge::before { animation: none; opacity: 0.45; }
}

.service-card:hover .service-badge {
  transform: translateY(-1px);
  box-shadow:
    0 6px 18px rgba(200, 160, 80, 0.45),
    0 0 26px rgba(200, 160, 80, 0.28);
}

/* Variants — inner fill color changes; rotating light kept warm-white */
.service-badge--best::after {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-deep) 100%);
}

.service-badge--signature::after {
  background: linear-gradient(135deg, #8B5A2B 0%, #A8763E 100%);
}

.service-badge--new::after {
  background: linear-gradient(135deg, #B04A36 0%, #C8633F 100%);
}

.service-badge--signature,
.service-badge--new {
  color: #FAF7F0;
}

.service-badge--signature {
  box-shadow:
    0 4px 14px rgba(139, 90, 43, 0.45),
    0 0 24px rgba(168, 118, 62, 0.3);
}

.service-badge--new {
  box-shadow:
    0 4px 14px rgba(176, 74, 54, 0.45),
    0 0 24px rgba(200, 99, 63, 0.28);
}

/* Brighter tint for dark variants (so the running light reads over dark fill) */
.service-badge--signature::before,
.service-badge--new::before {
  background: conic-gradient(
    from 0deg,
    transparent 0%,
    transparent 76%,
    rgba(255, 230, 185, 0.6) 83%,
    rgba(255, 248, 220, 1) 90%,
    rgba(255, 230, 185, 0.6) 97%,
    transparent 100%
  );
}

/* ── Discount % tag on image (top-right) — same running-border effect ── */
.service-discount-tag {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.4rem 0.7rem;
  border-radius: 3px;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #FAF7F0;
  z-index: 2;
  overflow: hidden;
  isolation: isolate;
  box-shadow:
    0 4px 14px rgba(176, 74, 54, 0.45),
    0 0 22px rgba(200, 99, 63, 0.28);
  transition: transform 0.25s ease;
}

.service-discount-tag::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 250%;
  aspect-ratio: 1;
  background: conic-gradient(
    from 0deg,
    transparent 0%,
    transparent 76%,
    rgba(255, 230, 185, 0.6) 83%,
    rgba(255, 248, 220, 1) 90%,
    rgba(255, 230, 185, 0.6) 97%,
    transparent 100%
  );
  transform: translate(-50%, -50%);
  animation: service-badge-orbit 3.2s linear infinite;
  animation-delay: 1.6s;
  z-index: -2;
  pointer-events: none;
}

.service-discount-tag::after {
  content: '';
  position: absolute;
  inset: 1.5px;
  border-radius: 2px;
  background: linear-gradient(135deg, #B04A36 0%, #C8633F 100%);
  z-index: -1;
}

@media (prefers-reduced-motion: reduce) {
  .service-discount-tag::before { animation: none; opacity: 0.45; }
}

.service-card:hover .service-discount-tag {
  transform: translateY(-1px);
}

.service-icon-bg {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(200, 160, 80, 0.5);
}

.service-icon-bg svg {
  width: 80px;
  height: 80px;
}

.service-body {
  padding: 1.5rem 1.25rem;
}

.service-name {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
  letter-spacing: 0.03em;
}

.service-desc {
  font-size: 0.85rem;
  color: var(--ink-secondary);
  line-height: 1.6;
  margin-bottom: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.service-meta {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 1rem;
  padding-top: 0.875rem;
  border-top: 1px solid rgba(200, 160, 80, 0.15);
}

.service-price {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.service-price-label {
  font-size: 0.7rem;
  color: var(--ink-muted);
  letter-spacing: 0.1em;
  display: block;
  text-transform: uppercase;
  font-family: var(--font-display);
  margin-bottom: 0.2rem;
}

.service-price-old {
  font-family: var(--font-body);
  font-size: 0.78rem;
  color: var(--ink-muted);
  letter-spacing: 0.02em;
  line-height: 1.2;
  display: block;
}

.service-price-old s {
  text-decoration: line-through;
  text-decoration-thickness: 1px;
  text-decoration-color: rgba(140, 128, 116, 0.7);
}

.service-price-now {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--gold-deep);
  letter-spacing: 0.04em;
  font-weight: 600;
  line-height: 1.1;
  white-space: nowrap;
  display: block;
}

.service-price--discount .service-price-now {
  margin-top: 0.1rem;
}

/* Legacy fallback (old templates) */
.service-price small {
  font-size: 0.7rem;
  color: var(--ink-muted);
  letter-spacing: 0.1em;
  display: block;
  text-transform: uppercase;
}

.service-link {
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: var(--ink-primary);
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: color 0.3s ease;
}

.service-link:hover {
  color: var(--gold);
}

.section-cta {
  text-align: center;
  margin-top: 1.75rem;
}

/* ================================================================
   PROMOTION BANNER
================================================================ */
.promo-banner {
  background: var(--lux-bg);
  color: var(--ink-inverse);
  position: relative;
  overflow: hidden;
}

.promo-banner::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -30%;
  width: 80%;
  height: 160%;
  background: radial-gradient(ellipse, rgba(200, 160, 80, 0.12) 0%, transparent 60%);
  pointer-events: none;
}

.promo-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.promo-script {
  font-family: var(--font-script);
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  color: var(--gold);
  line-height: 1;
}

.promo-title {
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  margin: 0.5rem 0 1rem;
  font-family: var(--font-display);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  line-height: 1.1;
}

.promo-list {
  list-style: none;
  margin-bottom: 1.5rem;
}

.promo-list li {
  font-size: 0.92rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(200, 160, 80, 0.2);
  display: grid;
  grid-template-columns: 16px clamp(120px, 14ch, 150px) 1fr;
  gap: 0.6rem 1rem;
  align-items: start;
  line-height: 1.45;
}

.promo-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  align-self: start;
  margin: 0.45rem 5px 0;
}

.promo-list strong {
  color: var(--gold);
  font-family: var(--font-display);
  letter-spacing: 0.06em;
  font-size: 0.92rem;
  font-weight: 600;
  white-space: normal;
  overflow-wrap: break-word;
  hyphens: manual;
  text-transform: uppercase;
  line-height: 1.5;
}

.promo-list li > span {
  line-height: 1.5;
}

.promo-code {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem 1.25rem;
  background: rgba(200, 160, 80, 0.12);
  border: 1px dashed var(--gold);
  border-radius: 4px;
  font-family: var(--font-display);
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
  max-width: 100%;
  box-sizing: border-box;
}

.promo-code small {
  font-size: 0.65rem;
  color: rgba(250, 247, 240, 0.7);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.25rem;
  font-weight: 400;
}

.promo-code-value {
  color: var(--gold);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  white-space: nowrap;
}

/* Promo CTA row - code + button side by side on small screens */
.promo-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: stretch;
}

.promo-cta-row .promo-code {
  margin-bottom: 0;
  flex: 0 1 auto;
}

.promo-cta-row .btn-primary {
  flex: 1 1 auto;
  min-width: 180px;
  justify-content: center;
}

/* ================================================================
   SERVICE MENU (Full)
================================================================ */
.menu-section {
  background: var(--tinted);
  border-top: 1px solid rgba(200, 160, 80, 0.12);
}

.menu-categories {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  gap: 0.4rem;
  margin-bottom: 1.5rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 0 0.25rem;
}

.menu-categories::-webkit-scrollbar {
  display: none;
}

.menu-cat {
  font-family: var(--font-display);
  font-size: clamp(0.62rem, 2.4vw, 0.78rem);
  letter-spacing: 0.08em;
  padding: 0.5rem 0.75rem;
  border: 1px solid rgba(200, 160, 80, 0.3);
  border-radius: 2px;
  color: var(--ink-primary);
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  white-space: nowrap;
  flex-shrink: 0;
  background: transparent;
}

.menu-cat.active,
.menu-cat:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink-inverse);
}

.menu-list {
  background: var(--elevated);
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.menu-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  padding: 1.25rem;
  border-bottom: 1px solid rgba(200, 160, 80, 0.12);
  align-items: start;
}

.menu-item:last-child { border-bottom: none; }

.menu-item-info h4 {
  font-size: 1rem;
  margin-bottom: 0.35rem;
  letter-spacing: 0.03em;
}

.menu-item-info .menu-tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  color: var(--gold-deep);
  background: rgba(200, 160, 80, 0.1);
  border: 1px solid rgba(200, 160, 80, 0.4);
  border-radius: 2px;
  padding: 0.18rem 0.5rem;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  font-weight: 600;
  line-height: 1.3;
}

.menu-item-info p {
  font-size: 0.8rem;
  color: var(--ink-secondary);
  line-height: 1.5;
}

.menu-item-price {
  font-family: var(--font-display);
  text-align: right;
  flex-shrink: 0;
}

.menu-item-price .dur {
  font-size: 0.7rem;
  color: var(--ink-muted);
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 0.2rem;
}

.menu-item-price .val {
  font-size: 1rem;
  color: var(--gold-deep);
  letter-spacing: 0.05em;
  white-space: nowrap;
}

/* ================================================================
   BRANCHES - 3 sub-brand colors
================================================================ */
.branches-section {
  background: var(--canvas);
  border-top: 1px solid rgba(200, 160, 80, 0.12);
}

.branches-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.branch-card {
  border-radius: var(--r-lg);
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  color: var(--ink-inverse);
  transition: all 0.4s ease;
  box-shadow: var(--shadow-card);
}

.branch-card.luxury {
  background: var(--lux-bg);
}

.branch-card.regal {
  background: var(--reg-bg);
}

.branch-card.annam {
  background: var(--ann-bg);
  color: var(--ann-text);
}

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

/* Photo slot - top of card */
.branch-photo {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: linear-gradient(180deg, var(--lux-deep) 0%, var(--lux-bg) 100%);
}

.branch-card.regal .branch-photo {
  background: linear-gradient(180deg, var(--reg-deep) 0%, var(--reg-bg) 100%);
}

.branch-card.annam .branch-photo {
  background: linear-gradient(180deg, var(--ann-deep) 0%, var(--ann-bg) 100%);
}

.branch-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.branch-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(0, 0, 0, 0.25) 100%);
  pointer-events: none;
}

.branch-card.annam .branch-photo::after {
  background: linear-gradient(to bottom, transparent 50%, rgba(46, 10, 0, 0.15) 100%);
}

/* Photo placeholder (when no image yet) */
.branch-photo-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: rgba(200, 160, 80, 0.45);
}

.branch-card.annam .branch-photo-placeholder {
  color: rgba(46, 10, 0, 0.35);
}

.branch-photo-placeholder svg {
  width: 80px;
  height: 60px;
}

.branch-photo-placeholder span {
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.8;
}

/* Content slot - bottom of card */
.branch-content {
  padding: 1.25rem 1.25rem 1.4rem;
  position: relative;
  z-index: 2;
}

.branch-script {
  font-family: var(--font-script);
  font-size: 1.5rem;
  color: var(--lux-gold);
  line-height: 1;
  margin-bottom: 0.3rem;
  display: block;
}

.branch-card.regal .branch-script { color: var(--reg-gold); }
.branch-card.annam .branch-script { color: var(--ann-text-soft); }

.branch-name {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 3.6vw, 1.6rem);
  letter-spacing: 0.04em;
  margin-bottom: 0.65rem;
  line-height: 1.1;
}

/* Unified info line - used for services & address (consistent icon + text style) */
.branch-info-line {
  display: flex;
  align-items: flex-start;
  gap: 0.45rem;
  font-size: 0.88rem;
  line-height: 1.45;
  opacity: 0.9;
  margin-bottom: 0.5rem;
  color: inherit;
  text-decoration: none;
}

.branch-info-icon {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--lux-gold);
}

.branch-card.regal .branch-info-icon { color: var(--reg-gold); }
.branch-card.annam .branch-info-icon { color: var(--ann-deep); }

/* Address link variant - hover state */
.branch-addr-link {
  transition: color 0.2s ease;
}

.branch-addr-link:hover {
  color: var(--gold);
}

.branch-card.annam .branch-addr-link:hover {
  color: var(--ann-deep);
}

/* Services text inside info-line */
.branch-services {
  font-size: 0.85rem;
  margin: 0;
  letter-spacing: 0.01em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-width: 0;
  flex: 1;
}

/* Time + hotline on same line */
.branch-meta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem;
  margin-top: 0.35rem;
}

.branch-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-family: var(--font-display);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: inherit;
  text-decoration: none;
  opacity: 0.9;
  line-height: 1.3;
  font-weight: 500;
}

.branch-meta-item svg {
  color: var(--lux-gold);
  flex-shrink: 0;
}

.branch-card.regal .branch-meta-item svg { color: var(--reg-gold); }
.branch-card.annam .branch-meta-item svg { color: var(--ann-deep); }

.branch-meta-item em {
  font-style: normal;
  font-weight: 400;
  opacity: 0.7;
  margin-left: 0.15rem;
}

.branch-hotline {
  font-weight: 600;
  letter-spacing: 0.05em;
  transition: color 0.2s ease;
}

.branch-hotline:hover {
  color: var(--gold);
}

.branch-card.annam .branch-hotline:hover {
  color: var(--ann-deep);
}

/* ================================================================
   ORDER FORM SECTION + MODAL
================================================================ */
.order-section {
  background: var(--canvas);
  border-top: 1px solid rgba(200, 160, 80, 0.15);
  border-bottom: 1px solid rgba(200, 160, 80, 0.15);
}

.order-intro {
  font-size: 0.9rem;
  color: var(--ink-secondary);
  max-width: 520px;
  margin: 0.75rem auto 0;
  line-height: 1.55;
}

.order-form {
  max-width: 720px;
  margin: 0 auto;
  background: var(--elevated);
  padding: clamp(1.5rem, 5vw, 2.5rem);
  border-radius: var(--r-md);
  box-shadow: 0 4px 24px rgba(26, 20, 16, 0.06);
  border: 1px solid rgba(200, 160, 80, 0.15);
}

.order-form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.1rem;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-field-full {
  grid-column: 1 / -1;
}

/* Date + Time on same line */
.datetime-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.datetime-col {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-field label,
.datetime-col label {
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-secondary);
  font-weight: 600;
}

.form-field .req,
.datetime-col .req {
  color: var(--gold-deep);
  font-weight: 700;
}

.form-field .opt {
  color: var(--ink-muted);
  font-weight: 400;
  letter-spacing: 0.05em;
  text-transform: none;
  font-size: 0.7rem;
}

.form-field input[type="text"],
.form-field input[type="tel"],
.form-field input[type="date"],
.form-field input[type="time"],
.form-field input[type="number"],
.form-field select,
.form-field textarea,
.datetime-col input[type="date"],
.datetime-col input[type="time"] {
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 0.75rem 0.9rem;
  border: 1px solid rgba(200, 160, 80, 0.3);
  border-radius: 2px;
  background: var(--canvas);
  color: var(--ink-primary);
  transition: border-color 0.2s ease, background 0.2s ease;
  width: 100%;
  box-sizing: border-box;
  -webkit-appearance: none;
  appearance: none;
  line-height: 1.4;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus,
.datetime-col input:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--elevated);
  box-shadow: 0 0 0 3px rgba(200, 160, 80, 0.12);
}

.form-field select {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23C8A050' stroke-width='2.5'><polyline points='6 9 12 15 18 9'/></svg>");
  background-repeat: no-repeat;
  background-position: right 0.9rem center;
  background-size: 12px;
  padding-right: 2.25rem;
}

.form-field select:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.form-field input[type="date"]::-webkit-calendar-picker-indicator,
.form-field input[type="time"]::-webkit-calendar-picker-indicator {
  filter: invert(60%) sepia(40%) saturate(450%) hue-rotate(10deg);
  cursor: pointer;
}

.form-field textarea {
  resize: vertical;
  min-height: 60px;
  font-family: var(--font-body);
}

/* Toggle switch (xe đưa đón) */
.form-field-toggle {
  background: var(--canvas);
  border: 1px solid rgba(200, 160, 80, 0.2);
  border-radius: 2px;
  padding: 0.85rem 1rem;
}

.toggle-label {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  cursor: pointer;
  font-size: 0.9rem;
  color: var(--ink-primary);
  line-height: 1.3;
}

.toggle-label input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.toggle-switch {
  flex-shrink: 0;
  display: inline-block;
  width: 40px;
  height: 22px;
  background: rgba(138, 128, 116, 0.35);
  border-radius: 11px;
  position: relative;
  transition: background 0.25s ease;
}

.toggle-switch::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 2px;
  width: 18px;
  height: 18px;
  background: #FFF;
  border-radius: 50%;
  transition: transform 0.25s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.toggle-label input[type="checkbox"]:checked + .toggle-switch {
  background: var(--gold);
}

.toggle-label input[type="checkbox"]:checked + .toggle-switch::after {
  transform: translateX(18px);
}

.toggle-label input[type="checkbox"]:focus-visible + .toggle-switch {
  box-shadow: 0 0 0 3px rgba(200, 160, 80, 0.3);
}

.toggle-text {
  flex: 1;
}

.toggle-text small {
  display: block;
  color: var(--ink-muted);
  font-size: 0.78rem;
  margin-top: 0.15rem;
}

/* Form footer */
.order-form-footer {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.order-submit {
  width: 100%;
  justify-content: center;
  padding: 0.95rem 1.5rem;
  font-size: 0.85rem;
  letter-spacing: 0.18em;
}

.order-disclaimer {
  font-size: 0.78rem;
  color: var(--ink-muted);
  text-align: center;
  line-height: 1.5;
  margin: 0;
}

/* ── Contact strip (4 icons below submit button) ─────────────────── */
.contact-strip {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  margin-top: 0.25rem;
  padding-top: 1.1rem;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.contact-strip-label {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-muted);
  font-family: var(--font-display);
}

.contact-strip-icons {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  max-width: 420px;
}

.contact-icon {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  padding: 0.65rem 0.3rem;
  border-radius: 8px;
  background: var(--tinted);
  border: 1px solid rgba(0, 0, 0, 0.06);
  color: var(--ink-primary);
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.contact-icon svg {
  width: 22px;
  height: 22px;
  display: block;
}

.contact-icon-label {
  font-size: 0.7rem;
  letter-spacing: 0.04em;
  font-weight: 500;
  line-height: 1;
}

.contact-icon:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  background: var(--elevated);
}

/* Channel-specific accent on hover (use brand colors) */
.contact-icon-zalo:hover      { color: #0068FF; }
.contact-icon-whatsapp:hover  { color: #25D366; }
.contact-icon-messenger:hover { color: #0084FF; }
.contact-icon-hotline:hover   { color: var(--gold); }

/* Tablet+: keep horizontal but slightly larger touch area */
@media (min-width: 640px) {
  .contact-strip-icons { gap: 0.75rem; }
  .contact-icon { padding: 0.85rem 0.5rem; }
  .contact-icon svg { width: 24px; height: 24px; }
  .contact-icon-label { font-size: 0.75rem; }
}

/* Dark surfaces (if order form ever lands on dark bg) */
.on-dark .contact-icon {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
  color: var(--ink-inverse);
}

.on-dark .contact-strip { border-top-color: rgba(255, 255, 255, 0.12); }

/* Success state */
.order-success {
  text-align: center;
  padding: 2rem 1rem;
  color: var(--ink-primary);
}

.order-success svg {
  color: #7A8F62;
  margin-bottom: 0.75rem;
}

.order-success h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  letter-spacing: 0.02em;
}

.order-success p {
  font-size: 0.9rem;
  color: var(--ink-secondary);
}

/* ============== MODAL ============== */
.order-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s;
}

.order-modal:not([hidden]) {
  opacity: 1;
  visibility: visible;
}

.order-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(26, 20, 16, 0.7);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  cursor: pointer;
}

.order-modal-content {
  position: relative;
  background: var(--elevated);
  border-radius: var(--r-lg);
  padding: 2rem 1.5rem;
  max-width: 480px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  transform: translateY(10px);
  transition: transform 0.3s ease;
}

.order-modal:not([hidden]) .order-modal-content {
  transform: translateY(0);
}

.order-modal-close {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  width: 36px;
  height: 36px;
  border: none;
  background: transparent;
  color: var(--ink-secondary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.2s ease, color 0.2s ease;
}

.order-modal-close:hover {
  background: rgba(200, 160, 80, 0.1);
  color: var(--gold-deep);
}

.order-modal-header {
  text-align: center;
  margin-bottom: 1.5rem;
}

.order-modal-header .section-script {
  display: block;
  color: var(--gold);
  margin-bottom: 0.25rem;
}

.order-modal-header h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.03em;
  margin-bottom: 0.4rem;
  color: var(--ink-primary);
}

.order-modal-header p {
  font-size: 0.85rem;
  color: var(--ink-secondary);
  margin: 0;
}

.order-modal-body {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.order-modal-body .btn-primary {
  width: 100%;
  justify-content: center;
  padding: 0.9rem 1.25rem;
}

.order-modal-divider {
  text-align: center;
  position: relative;
  color: var(--ink-muted);
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.order-modal-divider::before,
.order-modal-divider::after {
  content: '';
  position: absolute;
  top: 50%;
  width: calc(50% - 5rem);
  height: 1px;
  background: rgba(200, 160, 80, 0.3);
}

.order-modal-divider::before { left: 0; }
.order-modal-divider::after { right: 0; }

.order-modal-phones {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.6rem;
}

.order-phone-card {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  padding: 1rem 1.1rem 1.05rem;
  border-radius: 4px;
  border: 1px solid rgba(200, 160, 80, 0.3);
  transition: all 0.2s ease;
  text-decoration: none;
  color: var(--ink-primary);
}

.order-phone-card.luxury { border-left: 4px solid var(--lux-gold); }
.order-phone-card.regal { border-left: 4px solid var(--reg-gold); }
.order-phone-card.annam { border-left: 4px solid var(--ann-deep); }

.order-phone-card:hover {
  background: rgba(200, 160, 80, 0.08);
  border-color: var(--gold);
}

/* Branch name row - script + uppercase same baseline */
.order-phone-card .phone-name-row {
  display: flex;
  align-items: baseline;
  gap: 0.45rem;
  flex-wrap: wrap;
  line-height: 1.1;
  margin-bottom: 0.2rem;
}

.order-phone-card .phone-branch {
  font-family: var(--font-script);
  font-size: 1.25rem;
  color: var(--gold-deep);
  line-height: 1;
}

.order-phone-card.luxury .phone-branch { color: var(--lux-gold); }
.order-phone-card.regal .phone-branch { color: var(--reg-gold); }
.order-phone-card.annam .phone-branch { color: var(--ann-deep); }

.order-phone-card .phone-name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink-primary);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1;
}

/* Info line - services + address (same structure as homepage branch card) */
.order-phone-card .phone-info-line {
  display: flex;
  align-items: flex-start;
  gap: 0.45rem;
  font-size: 0.85rem;
  line-height: 1.4;
  color: var(--ink-secondary);
}

.order-phone-card .phone-info-icon {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--lux-gold);
}

.order-phone-card.regal .phone-info-icon { color: var(--reg-gold); }
.order-phone-card.annam .phone-info-icon { color: var(--ann-deep); }

/* Meta row - time + hotline same line */
.order-phone-card .phone-meta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem;
  margin-top: 0.25rem;
}

.order-phone-card .phone-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-family: var(--font-display);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  line-height: 1.3;
  font-weight: 500;
  color: var(--ink-primary);
}

.order-phone-card .phone-meta-item svg {
  color: var(--lux-gold);
  flex-shrink: 0;
}

.order-phone-card.regal .phone-meta-item svg { color: var(--reg-gold); }
.order-phone-card.annam .phone-meta-item svg { color: var(--ann-deep); }

.order-phone-card .phone-meta-item em {
  font-style: normal;
  font-weight: 400;
  opacity: 0.65;
  margin-left: 0.15rem;
}

.order-phone-card .phone-hotline {
  font-weight: 600;
  letter-spacing: 0.05em;
}

/* Body scroll lock when modal open */
body.modal-open {
  overflow: hidden;
}

/* ================================================================
   CONTACT CHANNELS
================================================================ */
.contact-section {
  background: var(--lux-deep);
  color: var(--ink-inverse);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.contact-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 50%, rgba(200, 160, 80, 0.1) 0%, transparent 60%);
}

.contact-section .section-eyebrow {
  color: var(--gold);
}

.contact-section .section-title {
  color: var(--ink-inverse);
}

.contact-channels {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin-top: 2rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 2;
}

.contact-ch {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1.25rem 0.75rem;
  background: rgba(250, 247, 240, 0.05);
  border: 1px solid rgba(200, 160, 80, 0.2);
  border-radius: var(--r-md);
  transition: all 0.3s ease;
}

.contact-ch:hover {
  background: rgba(200, 160, 80, 0.15);
  border-color: var(--gold);
  transform: translateY(-4px);
}

.contact-ch-icon {
  width: 36px;
  height: 36px;
  color: var(--gold);
}

.contact-ch-label {
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  color: rgba(250, 247, 240, 0.9);
}

/* ================================================================
   FAQ
================================================================ */
.faq-section {
  background: var(--tinted);
  border-top: 1px solid rgba(200, 160, 80, 0.12);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--elevated);
  border-radius: var(--r-md);
  margin-bottom: 0.75rem;
  overflow: hidden;
  border: 1px solid rgba(200, 160, 80, 0.15);
}

.faq-question {
  padding: 1.25rem 1.25rem;
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  text-transform: none;
  color: var(--ink-primary);
  user-select: none;
}

.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--gold);
  font-weight: 300;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item.open .faq-question::after {
  content: '−';
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.open .faq-answer {
  max-height: 400px;
}

.faq-answer p {
  padding: 0 1.25rem 1.25rem;
  font-size: 0.875rem;
  color: var(--ink-secondary);
  line-height: 1.7;
}

/* ================================================================
   REVIEWS
================================================================ */
.reviews-section {
  background: var(--tinted);
  border-top: 1px solid rgba(200, 160, 80, 0.12);
}

/* Trustindex embed wrapper — center widget, fluid width */
.trustindex-embed {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}

.trustindex-embed iframe {
  width: 100% !important;
  max-width: 100% !important;
  border: 0;
  display: block;
}

.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.review-card {
  background: var(--elevated);
  padding: 1.5rem 1.25rem;
  border-radius: var(--r-md);
  border-left: 3px solid var(--gold);
  position: relative;
}

.review-card::before {
  content: '"';
  position: absolute;
  top: 0.5rem;
  right: 1rem;
  font-family: var(--font-script);
  font-size: 4rem;
  color: rgba(200, 160, 80, 0.2);
  line-height: 1;
}

.review-stars {
  color: var(--gold);
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}

.review-text {
  font-size: 0.875rem;
  color: var(--ink-primary);
  line-height: 1.7;
  margin-bottom: 1rem;
  font-style: italic;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(200, 160, 80, 0.15);
}

.review-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--ink-inverse);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
}

.review-meta strong {
  display: block;
  font-size: 0.85rem;
  font-family: var(--font-display);
  letter-spacing: 0.05em;
}

.review-meta small {
  font-size: 0.7rem;
  color: var(--ink-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ================================================================
   BLOG
================================================================ */
.blog-section {
  background: var(--canvas);
  border-top: 1px solid rgba(200, 160, 80, 0.12);
}

.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.blog-card {
  background: var(--elevated);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid rgba(200, 160, 80, 0.12);
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
  border-color: var(--gold);
}

.blog-image {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--lux-soft), var(--lux-bg));
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(200, 160, 80, 0.4);
}

.blog-image-2 { background: linear-gradient(135deg, var(--reg-soft), var(--reg-bg)); }
.blog-image-3 { background: linear-gradient(135deg, var(--ann-deep), var(--ann-soft)); color: rgba(46, 10, 0, 0.3); }

.blog-image svg {
  width: 60px;
  height: 60px;
}

.blog-body {
  padding: 1.5rem 1.25rem;
}

.blog-date {
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.blog-title {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
  letter-spacing: 0.02em;
  line-height: 1.3;
}

.blog-excerpt {
  font-size: 0.85rem;
  color: var(--ink-secondary);
  line-height: 1.6;
}

/* ================================================================
   FOOTER
================================================================ */
.site-footer {
  background:
    /* Subtle gold ambient — warmth in corners */
    radial-gradient(ellipse 60% 50% at 0% 0%, rgba(200, 160, 80, 0.06) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 100% 100%, rgba(200, 160, 80, 0.04) 0%, transparent 60%),
    /* Base: subtle gradient from soft → deep, anchors page */
    linear-gradient(180deg, var(--lux-bg) 0%, var(--lux-deep) 100%);
  color: var(--ink-inverse);
  padding: clamp(3rem, 6vw, 5rem) 0 1.5rem;
  position: relative;
  overflow: hidden;
}

/* Top gold accent — refined, fades from edges */
.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: var(--container);
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(200, 160, 80, 0.4) 30%,
    var(--gold) 50%,
    rgba(200, 160, 80, 0.4) 70%,
    transparent 100%);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.footer-brand img {
  height: 56px;
  width: auto;
  display: block;
  /* Logo is dark gold #C39D4E - works on dark footer */
}

.footer-tag {
  font-family: var(--font-script);
  font-size: 1.4rem;
  color: var(--gold);
  margin-bottom: 1rem;
  line-height: 1;
}

.footer-desc {
  font-size: 0.875rem;
  color: rgba(250, 247, 240, 0.7);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  max-width: 360px;
}

.footer-socials {
  display: flex;
  gap: 0.75rem;
}

.footer-social {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(200, 160, 80, 0.15);
  border: 1px solid rgba(200, 160, 80, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  transition: all 0.3s ease;
}

.footer-social:hover {
  background: var(--gold);
  color: var(--lux-deep);
  transform: translateY(-2px);
}

.footer-social svg {
  width: 16px;
  height: 16px;
}

.footer-col h4 {
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col li {
  margin-bottom: 0.6rem;
  font-size: 0.9rem;
  line-height: 1.5;
}

.footer-col a {
  color: rgba(250, 247, 240, 0.75);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-col a:hover {
  color: var(--gold);
}

.footer-branch {
  margin-bottom: 1.75rem;
}

.footer-branch:last-child { margin-bottom: 0; }

.footer-branch strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: rgba(250, 247, 240, 0.95);
  text-transform: none;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.footer-branch-address {
  display: block;
  font-size: 0.9rem;
  color: rgba(250, 247, 240, 0.7);
  line-height: 1.45;
  margin-bottom: 0.35rem;
}

.footer-branch-meta {
  display: block;
  font-size: 0.85rem;
  color: rgba(250, 247, 240, 0.7);
  line-height: 1.5;
}

.footer-branch-meta a {
  color: rgba(250, 247, 240, 0.85);
  text-decoration: none;
}

.footer-branch-meta a:hover {
  color: var(--gold);
}

.footer-branch-sep {
  color: rgba(250, 247, 240, 0.4);
}

.footer-bottom {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(200, 160, 80, 0.15);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.75rem;
  color: rgba(250, 247, 240, 0.5);
  letter-spacing: 0.1em;
}

/* ================================================================
   Body padding-bottom for bottom-nav on mobile
================================================================ */
body {
  padding-bottom: calc(76px + env(safe-area-inset-bottom));
}

/* ================================================================
   RESPONSIVE - TABLET (≥768px)
================================================================ */
@media (min-width: 768px) {
  body {
    font-size: 16px;
    padding-bottom: 0;
  }

  .hero {
    min-height: auto;
    padding: 7rem 0 5rem;
  }

  .hero-content {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
  }

  .hero-desc {
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .order-form-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
  }

  .order-phone-card {
    flex-direction: row;
    align-items: center;
    gap: 0.75rem;
  }

  .order-phone-card small {
    margin-top: 0;
    margin-left: auto;
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .why-card {
    padding: 1.75rem 1.25rem 1.5rem;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .promo-inner {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }

  .branches-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .branch-content {
    padding: 1.5rem 1.25rem 1.5rem;
  }

  .contact-channels {
    grid-template-columns: repeat(4, 1fr);
  }

  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .blog-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }

  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1.5fr;
    gap: 3rem;
  }

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }

  .menu-item {
    grid-template-columns: 1fr auto;
    padding: 1.5rem;
  }

  .menu-item-info h4 { font-size: 1.05rem; }

  /* On tablet+, brand aligns left and bottom-nav stays as mobile (compact) */
  .brand {
    justify-content: flex-start;
    flex: 0 0 auto;
  }

  .header-actions {
    gap: 0.75rem;
  }

  .btn-book {
    font-size: 0.78rem;
    padding: 0.65rem 1.1rem;
  }

  .bn-item {
    font-size: 0.7rem;
  }

  .bn-icon svg {
    width: 24px;
    height: 24px;
  }
}

/* ================================================================
   RESPONSIVE - DESKTOP (≥1024px)
================================================================ */
@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .reviews-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .why-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  /* Hide bottom nav entirely on desktop - nav goes into header */
  .bottom-nav {
    display: none;
  }

  body {
    padding-bottom: 0;
  }

  .desktop-nav-wrap {
    display: contents;
  }

  /* Show header nav menu on desktop */
  .header-nav {
    display: flex;
    flex: 1;
    justify-content: center;
  }

  .header-inner {
    gap: 1.5rem;
  }
}

/* ================================================================
   UTILITY
================================================================ */
.on-dark {
  color: var(--ink-inverse);
}

.text-center { text-align: center; }
.mt-2 { margin-top: 1rem; }
/* ================================================================
   ACCESSIBILITY
================================================================ */
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  -webkit-clip-path: inset(50%);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
}

.screen-reader-text:focus {
  background-color: var(--gold);
  border-radius: 3px;
  box-shadow: 0 0 2px 2px rgba(0,0,0,0.2);
  clip: auto !important;
  -webkit-clip-path: none;
  clip-path: none;
  color: var(--ink-primary);
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
}

.skip-link {
  left: -9999px;
  position: absolute;
  top: 1rem;
  z-index: 999999;
}

/* WordPress alignment */
.alignleft { float: left; margin-right: 1.5rem; }
.alignright { float: right; margin-left: 1.5rem; }
.aligncenter { display: block; margin-left: auto; margin-right: auto; }
.alignwide { max-width: 1100px; margin-left: auto; margin-right: auto; }
.alignfull { width: 100vw; margin-left: calc(50% - 50vw); }

/* Galleries */
.wp-caption { max-width: 100%; }
.wp-caption-text { font-size: 0.8rem; color: var(--ink-muted); text-align: center; margin-top: 0.5rem; }

/* Comments */
.comment-list { list-style: none; margin: 0; padding: 0; }
.comment-list li { margin-bottom: 1.5rem; padding: 1.25rem; background: var(--elevated); border-radius: var(--r-md); border-left: 2px solid var(--gold); }
.comment-author { font-family: var(--font-display); letter-spacing: 0.05em; margin-bottom: 0.5rem; }
.comment-metadata { font-size: 0.75rem; color: var(--ink-muted); margin-bottom: 0.75rem; }

/* Pagination */
.pagination, .nav-links { display: flex; gap: 0.5rem; justify-content: center; flex-wrap: wrap; }
.page-numbers { display: inline-flex; align-items: center; justify-content: center; min-width: 40px; height: 40px; padding: 0 0.75rem; font-family: var(--font-display); letter-spacing: 0.05em; border: 1px solid rgba(200, 160, 80, 0.3); border-radius: 2px; color: var(--ink-primary); text-decoration: none; }
.page-numbers.current { background: var(--gold); color: var(--ink-inverse); border-color: var(--gold); }
.page-numbers:hover { background: var(--gold); color: var(--ink-inverse); border-color: var(--gold); }

/* Page content typography */
.page-content, .post-content { font-size: 1rem; line-height: 1.8; }
.page-content h2, .post-content h2 { font-size: 1.5rem; margin-top: 2rem; margin-bottom: 1rem; letter-spacing: 0.02em; }
.page-content h3, .post-content h3 { font-size: 1.25rem; margin-top: 1.5rem; margin-bottom: 0.75rem; }
.page-content p, .post-content p { margin-bottom: 1.25rem; }
.page-content ul, .page-content ol, .post-content ul, .post-content ol { margin-bottom: 1.25rem; padding-left: 1.5rem; }
.page-content li, .post-content li { margin-bottom: 0.5rem; }
.page-content a, .post-content a { color: var(--gold-deep); text-decoration: underline; text-decoration-color: rgba(200, 160, 80, 0.4); text-underline-offset: 3px; }
.page-content blockquote, .post-content blockquote { border-left: 3px solid var(--gold); padding: 1rem 1.5rem; margin: 1.5rem 0; background: var(--tinted); font-style: italic; }
.page-content img, .post-content img { border-radius: var(--r-md); margin: 1.25rem 0; }

/* Search form */
.search-form { display: flex; gap: 0.5rem; max-width: 480px; }
.search-field { flex: 1; padding: 0.7rem 1rem; border: 1px solid rgba(200, 160, 80, 0.3); border-radius: 2px; background: var(--elevated); font-family: var(--font-body); }
.search-field:focus { outline: none; border-color: var(--gold); }

/* ============================================================
   Form submission states (WP theme additions)
   ============================================================ */
.form-actions { margin-top: 1.25rem; text-align: center; }
.btn-submit { min-width: 200px; justify-content: center; }
.btn-submit:disabled { opacity: 0.6; cursor: wait; }
.btn-label, .btn-loading { display: inline-flex; align-items: center; gap: 0.4rem; }
.btn-label[hidden], .btn-loading[hidden] { display: none !important; }

.form-message {
	margin-top: 1rem;
	padding: 0.85rem 1.1rem;
	border-radius: 4px;
	font-size: 0.92rem;
	line-height: 1.5;
}
.form-message-success {
	background: #EDF2E8;
	color: #4A5D3A;
	border-left: 3px solid #7A8F62;
}
.form-message-error {
	background: #F7EAE5;
	color: #8C3D2E;
	border-left: 3px solid #B04A36;
}
.form-message-info {
	background: var(--tinted);
	color: var(--ink-secondary);
	border-left: 3px solid var(--gold);
}

/* Service detail page */
.service-detail { padding: 0; }
.service-header { margin-bottom: 1.5rem; }
.service-thumbnail { margin: 1.5rem 0; border-radius: 6px; overflow: hidden; }
.service-thumbnail img { width: 100%; height: auto; display: block; }
.service-prices { margin: 2rem 0; padding: 1.25rem; background: var(--tinted); border-radius: 6px; }
.service-prices h3 { margin: 0 0 0.75rem; font-family: var(--font-display); font-size: 1.1rem; letter-spacing: 0.05em; }
.service-branches { margin: 2rem 0; }
.service-branches h3 { margin: 0 0 1rem; font-family: var(--font-display); font-size: 1.1rem; letter-spacing: 0.05em; }

/* Archive / Search pages */
.archive-header, .search-header { margin-bottom: 2rem; padding-bottom: 1.25rem; border-bottom: 1px solid rgba(0,0,0,0.08); }
.archive-title, .search-title { font-family: var(--font-display); font-size: 1.6rem; letter-spacing: 0.04em; margin: 0 0 0.5rem; }
.archive-description { opacity: 0.75; margin: 0; }
.archive-item { padding: 1.25rem 0; border-bottom: 1px solid rgba(0,0,0,0.05); }
.archive-item-title { margin: 0 0 0.3rem; font-family: var(--font-display); font-size: 1.15rem; }
.archive-item-title a { color: var(--ink-primary); text-decoration: none; }
.archive-item-title a:hover { color: var(--gold); }
.archive-item-meta { opacity: 0.6; font-size: 0.85rem; margin: 0 0 0.5rem; }
.archive-item-excerpt { color: var(--ink-secondary); }

/* Search results */
.search-results { display: flex; flex-direction: column; gap: 1.5rem; }
.search-item { padding-bottom: 1.5rem; border-bottom: 1px solid rgba(0,0,0,0.05); }
.search-item h2 { font-family: var(--font-display); margin: 0 0 0.5rem; font-size: 1.1rem; }
.search-item h2 a { color: var(--ink-primary); text-decoration: none; }
.search-item h2 a:hover { color: var(--gold); }

/* Single post / page */
.page-header, .single-header { margin-bottom: 1.5rem; }
.page-title, .single-title { font-family: var(--font-display); letter-spacing: 0.03em; margin: 0; }
.single-meta { opacity: 0.65; font-size: 0.85rem; margin: 0 0 0.5rem; }
.single-thumbnail { margin: 1.5rem 0; border-radius: 6px; overflow: hidden; }
.single-thumbnail img { width: 100%; height: auto; display: block; }
.single-content, .page-content { line-height: 1.75; color: var(--ink-primary); }
.single-content p, .page-content p { margin: 0 0 1rem; }
.single-footer { margin-top: 2rem; padding-top: 1.25rem; border-top: 1px solid rgba(0,0,0,0.08); font-size: 0.9rem; color: var(--ink-secondary); }
.single-footer p { margin: 0.5rem 0; }

/* Blog cards (homepage + archive) */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.25rem; margin-bottom: 1.5rem; }
.blog-card { background: var(--elevated); border-radius: 6px; overflow: hidden; box-shadow: 0 1px 3px rgba(0,0,0,0.04); transition: transform 0.2s, box-shadow 0.2s; }
.blog-card:hover { transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0,0,0,0.08); }
.blog-card-link { display: block; color: inherit; text-decoration: none; }
.blog-card-image { aspect-ratio: 16/10; overflow: hidden; background: var(--tinted); }
.blog-card-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.blog-card-body { padding: 1.1rem 1.25rem; }
.blog-card-date { font-size: 0.78rem; color: var(--gold); letter-spacing: 0.05em; text-transform: uppercase; }
.blog-card-title { font-family: var(--font-display); font-size: 1.05rem; letter-spacing: 0.02em; margin: 0.4rem 0 0.5rem; color: var(--ink-primary); }
.blog-card-excerpt { font-size: 0.9rem; color: var(--ink-secondary); margin: 0; line-height: 1.55; }
.blog-actions { text-align: center; margin-top: 1.5rem; }

/* Reviews section */
.reviews-section { background: var(--tinted); }
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.25rem; }
.review-card { background: var(--elevated); padding: 1.5rem; border-radius: 6px; box-shadow: 0 1px 3px rgba(0,0,0,0.04); }
.review-rating { color: var(--gold); margin-bottom: 0.5rem; display: flex; gap: 2px; }
.review-title { font-family: var(--font-display); font-size: 1rem; margin: 0 0 0.5rem; letter-spacing: 0.03em; }
.review-body { color: var(--ink-secondary); line-height: 1.65; margin-bottom: 1rem; font-size: 0.92rem; }
.review-body p:last-child { margin-bottom: 0; }
.review-meta { display: flex; align-items: center; gap: 0.65rem; padding-top: 0.85rem; border-top: 1px solid rgba(200, 160, 80, 0.15); }
.review-avatar img { width: 36px; height: 36px; border-radius: 50%; object-fit: cover; display: block; }
.review-author { display: flex; flex-direction: column; line-height: 1.3; }
.review-author strong { font-size: 0.9rem; color: var(--ink-primary); }
.review-author small { font-size: 0.75rem; color: var(--ink-muted); }

/* Site footer */
.site-footer { background: var(--lux-deep); color: rgba(245, 239, 230, 0.85); padding: 3rem 0 1.5rem; margin-top: 3rem; }
@media (max-width: 720px) { .footer-grid { grid-template-columns: 1fr; gap: 1.75rem; } }
.footer-bottom { padding-top: 1.25rem; border-top: 1px solid rgba(200, 160, 80, 0.15); text-align: center; font-size: 0.82rem; opacity: 0.65; }
.footer-bottom p { margin: 0; }

/* WP post navigation */
.post-navigation { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 2.5rem; padding-top: 2rem; border-top: 1px solid rgba(0,0,0,0.08); }
.post-navigation a { display: block; padding: 1rem 1.25rem; background: var(--tinted); border-radius: 4px; text-decoration: none; color: var(--ink-primary); transition: background 0.2s; }
.post-navigation a:hover { background: var(--elevated); }
.post-navigation small { opacity: 0.6; }
.nav-next { text-align: right; }
@media (max-width: 560px) { .post-navigation { grid-template-columns: 1fr; } }

/* Accessibility */
.screen-reader-text { position: absolute !important; clip: rect(1px,1px,1px,1px); height: 1px; width: 1px; overflow: hidden; }

/* ============================================================
   Bug fixes — v1.0.1
   ============================================================ */

/* Promo list — fix mobile layout (label drops above content) */
@media (max-width: 600px) {
	.promo-list li {
		grid-template-columns: 14px 1fr;
		grid-template-rows: auto auto;
		gap: 0.25rem 0.6rem;
		row-gap: 0.15rem;
		padding: 0.6rem 0;
	}
	.promo-list li::before {
		grid-row: 1 / 3;
		grid-column: 1;
		align-self: start;
		margin-top: 0.45rem;
	}
	.promo-list strong {
		grid-row: 1;
		grid-column: 2;
		font-size: 0.85rem;
	}
	.promo-list li > span {
		grid-row: 2;
		grid-column: 2;
		font-size: 0.88rem;
	}
}

/* Hero secondary CTA on dark hero — add border so it's visible */
.hero .btn-secondary {
	border: 1px solid rgba(200, 160, 80, 0.45);
	color: rgba(245, 239, 230, 0.9);
	padding: 0.7rem 1.4rem;
	border-radius: 2px;
	text-decoration: none;
	font-family: var(--font-display);
	letter-spacing: 0.08em;
	text-transform: uppercase;
	font-size: 0.85rem;
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	transition: background 0.2s, border-color 0.2s;
}
.hero .btn-secondary:hover {
	background: rgba(200, 160, 80, 0.12);
	border-color: var(--gold);
	color: var(--gold);
}

/* Footer — fix layout & contrast on dark bg */
.site-footer {
	background: var(--lux-deep, #1F1208);
	color: rgba(245, 239, 230, 0.85);
}
.site-footer .footer-brand-block img {
	height: 56px !important;
	width: auto !important;
	display: block;
	margin-bottom: 0.85rem;
}
.site-footer h4 {
	color: var(--gold) !important;
	font-family: var(--font-display);
	font-size: 0.85rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	margin: 0 0 1rem;
}
.site-footer .footer-branch-item {
	color: rgba(245, 239, 230, 0.75);
	font-size: 0.9rem;
	line-height: 1.65;
	margin-bottom: 1.1rem;
}
.site-footer .footer-branch-item strong {
	color: rgba(245, 239, 230, 0.98);
	font-size: 0.95rem;
}
.site-footer .footer-branch-item a {
	color: rgba(245, 239, 230, 0.7);
}
.site-footer .footer-branch-item a:hover {
	color: var(--gold);
}

/* Why section — keep 2 columns even on mobile (matches HTML preview) */

/* Section heads — base spacing kept here for cascade reliability */
.section-head {
	text-align: center;
	margin-bottom: clamp(1rem, 2.5vw, 1.5rem);
}


/* Btn-secondary base (used in non-hero contexts too: 404, blog, etc.) */
.btn-secondary {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	padding: 0.7rem 1.4rem;
	border-radius: 2px;
	border: 1px solid var(--gold);
	color: var(--gold);
	background: transparent;
	font-family: var(--font-display);
	font-size: 0.85rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	text-decoration: none;
	font-weight: 500;
	cursor: pointer;
	transition: background 0.2s, color 0.2s;
}
.btn-secondary:hover {
	background: var(--gold);
	color: var(--lux-deep, #1F1208);
}


/* ============================================================
   Bug fixes — v1.0.2
   ============================================================ */

/* Logo: explicit dimensions, override global img{height:auto} */
.healthy-spa-logo {
	max-width: 100% !important;
	height: auto !important; /* aspect from width/height attrs */
}
.brand .healthy-spa-logo,
.site-footer .footer-brand-block .healthy-spa-logo {
	display: inline-block !important;
}
/* Force footer logo height again with extra specificity */
.site-footer .footer-brand-block img.healthy-spa-logo {
	height: 56px !important;
	width: auto !important;
	margin-bottom: 0.85rem;
}
.header .brand img.healthy-spa-logo {
	height: 50px !important;
	width: auto !important;
}

/* Footer social icons handled by main .footer-social rule above */
