/* ═══════════════════════════════════════════════════════════════
   LOS SUITES — Luxury Guest Portal
   Design System v1.0
   Palette: Gold #E8973A · Navy #1A2744 · Cream #FBF7F2 · White #FFFFFF
   Type: Cormorant Garamond (headings) · DM Sans (body)
═══════════════════════════════════════════════════════════════ */

/* ── Google Fonts ─────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,300;1,9..40,400&display=swap');

/* ── Custom Properties ────────────────────────────────────── */
:root {
  /* Core palette */
  --gold:         #E8973A;
  --gold-light:   #F2B46A;
  --gold-dark:    #C47820;
  --gold-pale:    #FDF0E0;
  --navy:         #1A2744;
  --navy-mid:     #253560;
  --navy-light:   #3A4F7A;
  --cream:        #FBF7F2;
  --cream-dark:   #F3EBE0;
  --white:        #FFFFFF;
  --text-primary: #1A2744;
  --text-body:    #2D3748;
  --text-muted:   #6B7A99;
  --text-light:   #A0ABBE;
  --border:       #E8DFD0;
  --border-light: #F0E8DB;

  /* Typography */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', system-ui, -apple-system, sans-serif;

  /* Spacing */
  --space-xs:  0.25rem;
  --space-sm:  0.5rem;
  --space-md:  1rem;
  --space-lg:  1.5rem;
  --space-xl:  2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;

  /* Radius */
  --radius-sm:  4px;
  --radius-md:  8px;
  --radius-lg:  16px;
  --radius-xl:  24px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm:  0 1px 3px rgba(26,39,68,.06), 0 1px 2px rgba(26,39,68,.04);
  --shadow-md:  0 4px 16px rgba(26,39,68,.08), 0 2px 6px rgba(26,39,68,.05);
  --shadow-lg:  0 8px 32px rgba(26,39,68,.12), 0 4px 12px rgba(26,39,68,.07);
  --shadow-xl:  0 20px 60px rgba(26,39,68,.15), 0 8px 24px rgba(26,39,68,.09);
  --shadow-gold: 0 4px 20px rgba(232,151,58,.25);

  /* Transitions */
  --ease-out: cubic-bezier(0.16,1,0.3,1);
  --ease-in-out: cubic-bezier(0.4,0,0.2,1);
  --duration-fast: 150ms;
  --duration-mid:  250ms;
  --duration-slow: 400ms;
}

/* ── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-body);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; }
input, select, textarea { font-family: inherit; }

/* ── Typography Scale ─────────────────────────────────────── */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  color: var(--text-primary);
  line-height: 1.15;
  font-weight: 500;
  letter-spacing: 0.01em;
}

h1 { font-size: clamp(2.2rem, 7vw, 3.8rem); }
h2 { font-size: clamp(1.6rem, 5vw, 2.6rem); }
h3 { font-size: clamp(1.25rem, 4vw, 1.9rem); }
h4 { font-size: clamp(1.05rem, 3vw, 1.4rem); }
h5 { font-size: 1.1rem; }

p { color: var(--text-body); }

.text-display {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 9vw, 5rem);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -0.01em;
}

.text-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}

.text-muted { color: var(--text-muted); }
.text-gold  { color: var(--gold); }
.text-navy  { color: var(--navy); }

/* ── Layout Utilities ─────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

@media (min-width: 768px) {
  .container { max-width: 640px; }
}

.section { padding: var(--space-2xl) 0; }
.section-sm { padding: var(--space-xl) 0; }

/* ── Decorative Elements ──────────────────────────────────── */
.gold-line {
  display: block;
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin: var(--space-md) 0;
}

.gold-line--center {
  margin-left: auto;
  margin-right: auto;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  width: 60px;
}

.ornament {
  color: var(--gold-light);
  font-family: var(--font-display);
  font-size: 1.2rem;
  opacity: 0.6;
}

/* ── Page Header ──────────────────────────────────────────── */
.page-header {
  background: var(--white);
  border-bottom: 1px solid var(--border-light);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
}

.page-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
  padding: 0 var(--space-lg);
  max-width: 480px;
  margin: 0 auto;
}

.page-header__logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.page-header__logo img {
  height: 32px;
  width: auto;
}

.page-header__logo-text {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.04em;
}

.page-header__back {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-full);
  transition: color var(--duration-fast) var(--ease-out),
              background var(--duration-fast) var(--ease-out);
}

.page-header__back:hover {
  color: var(--navy);
  background: var(--cream);
}

.page-header__back svg { width: 16px; height: 16px; }

.lang-switcher {
  display: flex;
  align-items: center;
  gap: 2px;
}

.lang-switcher__btn {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 4px 8px;
  border-radius: var(--radius-sm);
  transition: color var(--duration-fast), background var(--duration-fast);
}

.lang-switcher__btn:hover,
.lang-switcher__btn.is-active {
  color: var(--navy);
  background: var(--cream);
}

.lang-switcher__btn.is-active { color: var(--gold); }

/* ── Hero Section ─────────────────────────────────────────── */
.hero {
  position: relative;
  background: var(--navy);
  overflow: hidden;
  min-height: 42vh;
  display: flex;
  align-items: flex-end;
  padding-bottom: var(--space-2xl);
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% -10%, rgba(232,151,58,.18) 0%, transparent 70%),
    radial-gradient(ellipse 60% 80% at 80% 100%, rgba(232,151,58,.08) 0%, transparent 60%),
    linear-gradient(160deg, #1A2744 0%, #0f1929 100%);
}

.hero__sunburst {
  position: absolute;
  top: -60%;
  left: 50%;
  transform: translateX(-50%);
  width: 140%;
  max-width: 600px;
  opacity: 0.04;
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: var(--space-2xl) var(--space-lg) 0;
  max-width: 480px;
  margin: 0 auto;
  width: 100%;
}

.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}

.hero__logo-mark {
  height: 28px;
  width: auto;
  opacity: 0.9;
}

.hero__eyebrow-text {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-light);
  opacity: 0.85;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 8vw, 3.6rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: var(--space-md);
}

.hero__title strong {
  font-weight: 600;
  color: var(--gold-light);
  display: block;
}

.hero__tagline {
  font-size: 0.95rem;
  color: rgba(255,255,255,.55);
  margin-bottom: var(--space-lg);
  font-style: italic;
  font-family: var(--font-display);
  font-size: 1.05rem;
}

.hero__sub {
  font-size: 0.9rem;
  color: rgba(255,255,255,.45);
  letter-spacing: 0.02em;
}

/* Hero wave bottom */
.hero::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 40px;
  background: var(--cream);
  clip-path: ellipse(55% 100% at 50% 100%);
}

/* ── Service Card Grid ────────────────────────────────────── */
.services {
  padding: var(--space-xl) 0 var(--space-3xl);
}

.services__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
  padding: 0 var(--space-lg);
  max-width: 480px;
  margin: 0 auto;
}

.service-card {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-light);
  padding: var(--space-lg) var(--space-md) var(--space-md);
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
  cursor: pointer;
  overflow: hidden;
  transition:
    transform var(--duration-mid) var(--ease-out),
    box-shadow var(--duration-mid) var(--ease-out),
    border-color var(--duration-mid);
  -webkit-tap-highlight-color: transparent;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--duration-mid) var(--ease-out);
}

.service-card:hover,
.service-card:focus-visible {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold-pale);
}

.service-card:hover::before,
.service-card:focus-visible::before {
  transform: scaleX(1);
}

.service-card:active { transform: translateY(-1px); }

.service-card--featured {
  grid-column: span 2;
  flex-direction: row;
  align-items: center;
  padding: var(--space-lg);
}

.service-card--featured .service-card__icon-wrap {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  margin-right: var(--space-md);
}

.service-card__icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-lg);
  background: var(--gold-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-sm);
  transition: background var(--duration-mid);
}

.service-card:hover .service-card__icon-wrap {
  background: linear-gradient(135deg, var(--gold-pale), #fde8c6);
}

.service-card__icon {
  width: 22px;
  height: 22px;
  color: var(--gold-dark);
}

.service-card__featured .service-card__icon { width: 26px; height: 26px; }

.service-card__name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--navy);
  line-height: 1.2;
}

.service-card__desc {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.service-card__arrow {
  margin-top: auto;
  padding-top: var(--space-sm);
  color: var(--gold);
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity var(--duration-mid), transform var(--duration-mid) var(--ease-out);
}

.service-card:hover .service-card__arrow {
  opacity: 1;
  transform: translateX(0);
}

/* ── Section Title Block ──────────────────────────────────── */
.section-head {
  padding: 0 var(--space-lg) var(--space-xl);
  max-width: 480px;
  margin: 0 auto;
}

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

.section-head__eyebrow {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-sm);
}

.section-head__title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 6vw, 2.8rem);
  font-weight: 400;
  color: var(--navy);
  margin-bottom: var(--space-sm);
}

.section-head__sub {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ── Page Hero (sub-pages) ────────────────────────────────── */
.page-hero {
  background: var(--navy);
  padding: var(--space-2xl) var(--space-lg) var(--space-xl);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -20%;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,151,58,.12) 0%, transparent 70%);
}

.page-hero__inner {
  position: relative;
  max-width: 480px;
  margin: 0 auto;
}

.page-hero__eyebrow {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-light);
  opacity: 0.8;
  margin-bottom: var(--space-sm);
}

.page-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 7vw, 3rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: var(--space-sm);
}

.page-hero__sub {
  font-size: 0.9rem;
  color: rgba(255,255,255,.5);
  font-style: italic;
  font-family: var(--font-display);
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 32px;
  background: var(--cream);
  clip-path: ellipse(55% 100% at 50% 100%);
}

/* ── Cards (Tour, Car, Menu Item) ─────────────────────────── */
.card-grid {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  padding: 0 var(--space-lg);
  max-width: 480px;
  margin: 0 auto;
}

.card {
  background: var(--white);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-light);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--duration-mid) var(--ease-out), box-shadow var(--duration-mid);
}

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

.card__image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  background: var(--cream-dark);
}

.card__image-placeholder {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, var(--cream-dark), var(--border));
  display: flex;
  align-items: center;
  justify-content: center;
}

.card__image-placeholder svg {
  width: 48px;
  height: 48px;
  color: var(--border);
}

.card__body { padding: var(--space-lg); }

.card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs);
  margin-bottom: var(--space-sm);
}

.card__tag {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-dark);
  background: var(--gold-pale);
  padding: 3px 10px;
  border-radius: var(--radius-full);
}

.card__title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: var(--space-xs);
}

.card__desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: var(--space-md);
}

.card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm) var(--space-lg);
  margin-bottom: var(--space-md);
  padding: var(--space-md) 0;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.card__meta-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.card__meta-label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
}

.card__meta-value {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--navy);
}

.card__price {
  display: flex;
  align-items: baseline;
  gap: var(--space-xs);
}

.card__price-amount {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--navy);
}

.card__price-unit {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ── Gym Gallery ──────────────────────────────────────────── */
.gym-gallery {
  max-width: 480px;
  margin: 0 auto var(--space-xl);
  padding: 0 var(--space-lg);
}

.gym-gallery__hero {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-xl);
  overflow: hidden;
  cursor: zoom-in;
  position: relative;
  background: var(--cream-dark);
  box-shadow: var(--shadow-lg);
}

.gym-gallery__hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 700ms var(--ease-out);
}

.gym-gallery__hero:hover img { transform: scale(1.04); }

.gym-gallery__hero-hint {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(26,39,68,.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: #fff;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .05em;
  padding: 5px 10px;
  border-radius: var(--radius-full);
  pointer-events: none;
  opacity: 0;
  transition: opacity .3s;
}

.gym-gallery__hero:hover .gym-gallery__hero-hint { opacity: 1; }

.gym-gallery__strip {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 12px 0 4px;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-snap-type: x mandatory;
}

.gym-gallery__strip::-webkit-scrollbar { display: none; }

.gym-gallery__thumb {
  flex: 0 0 80px;
  height: 60px;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  transition: opacity .2s, box-shadow .2s, transform .2s;
  opacity: .55;
  scroll-snap-align: start;
  border: 2px solid transparent;
}

.gym-gallery__thumb:hover { opacity: .85; transform: translateY(-1px); }
.gym-gallery__thumb.is-active {
  opacity: 1;
  border-color: var(--gold);
  box-shadow: 0 0 0 1px var(--gold);
}

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

/* Lightbox */
.gym-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10,15,30,.93);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.gym-lightbox.is-open { display: flex; }

.gym-lightbox__img {
  max-width: 100%;
  max-height: 82vh;
  border-radius: var(--radius-lg);
  object-fit: contain;
  display: block;
  box-shadow: 0 24px 80px rgba(0,0,0,.5);
}

.gym-lightbox__close {
  position: absolute;
  top: 14px;
  right: 18px;
  color: rgba(255,255,255,.8);
  font-size: 2rem;
  cursor: pointer;
  background: rgba(255,255,255,.1);
  border: none;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transition: background .2s, color .2s;
}

.gym-lightbox__close:hover { background: rgba(255,255,255,.2); color: #fff; }

.gym-lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,.12);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 46px;
  height: 46px;
  cursor: pointer;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
  backdrop-filter: blur(4px);
}

.gym-lightbox__nav:hover { background: rgba(255,255,255,.25); }
.gym-lightbox__nav--prev { left: 12px; }
.gym-lightbox__nav--next { right: 12px; }

.gym-lightbox__counter {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,.6);
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .08em;
}

/* ── Menu ─────────────────────────────────────────────────── */
.menu-categories {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
  padding: 0 var(--space-lg);
  max-width: 480px;
  margin: 0 auto;
}

.menu-cat-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 1 / 1;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition: transform var(--duration-mid) var(--ease-out), box-shadow var(--duration-mid);
}

.menu-cat-card:hover { transform: scale(1.02); box-shadow: var(--shadow-lg); }
.menu-cat-card:active { transform: scale(0.99); }

.menu-cat-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-slow) var(--ease-out);
}

.menu-cat-card:hover .menu-cat-card__img { transform: scale(1.06); }

.menu-cat-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(26,39,68,.75) 0%, rgba(26,39,68,.1) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--space-md);
}

.menu-cat-card__name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--white);
  line-height: 1.2;
}

.menu-cat-card__count {
  font-size: 0.7rem;
  color: var(--gold-light);
  letter-spacing: 0.08em;
}

.menu-cat-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--cream-dark), var(--border));
  display: flex;
  align-items: center;
  justify-content: center;
}

.menu-item {
  background: var(--white);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-light);
  padding: var(--space-md);
  display: flex;
  gap: var(--space-md);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--duration-mid);
}

.menu-item:hover { box-shadow: var(--shadow-md); }

.menu-item__image {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
  border-radius: var(--radius-lg);
  object-fit: cover;
  background: var(--cream-dark);
}

.menu-item__image-placeholder {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
  border-radius: var(--radius-lg);
  background: var(--cream-dark);
  display: flex;
  align-items: center;
  justify-content: center;
}

.menu-item__body { flex: 1; min-width: 0; }

.menu-item__name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 4px;
}

.menu-item__desc {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.45;
  margin-bottom: var(--space-sm);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.menu-item__price {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--gold-dark);
}

.menu-item__price--request {
  font-size: 0.78rem;
  font-family: var(--font-body);
  font-weight: 500;
  color: var(--text-muted);
  font-style: italic;
}

/* ── Laundry Table ────────────────────────────────────────── */
/* ── Laundry table (new: card rows with inline prices) ─────── */
/* ── Laundry Price Table ──────────────────────────────────── */
.lprice-wrap { overflow-x: auto; }

.lprice-table {
  width: 100%;
  border-collapse: collapse;
}

.lprice-table thead th {
  padding: 9px 14px;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
  background: var(--navy);
  text-align: left;
  white-space: nowrap;
}
.lprice-table thead .lpt-price { text-align: center; }
.lprice-table thead .lpt-qty   { text-align: center; }

.lpt-group td {
  padding: 7px 14px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--navy);
  background: var(--cream-dark);
  border-bottom: 1px solid var(--border);
}

.lpt-count {
  font-weight: 400;
  color: var(--text-muted);
  margin-left: 4px;
}

.lpt-row { border-bottom: 1px solid var(--border-light); }
.lpt-row:last-child { border-bottom: none; }
.lpt-row:nth-child(even) { background: var(--cream); }

.lpt-td-name {
  padding: 11px 14px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy);
  min-width: 90px;
}

.lpt-td-price {
  padding: 11px 12px;
  font-size: 0.82rem;
  color: var(--text-muted);
  text-align: center;
  white-space: nowrap;
  min-width: 60px;
}

.lpt-dash { color: var(--border); }

.lpt-td-qty {
  padding: 11px 10px;
  text-align: center;
}

.lpt-qty-input {
  width: 56px;
  height: 34px;
  padding: 0 6px;
  text-align: center;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--navy);
  font-size: 0.95rem;
  font-weight: 700;
  -moz-appearance: textfield;
}
.lpt-qty-input::-webkit-outer-spin-button,
.lpt-qty-input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.lpt-qty-input:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 2px var(--gold-pale); }

.lpt-td-svc { padding: 10px 14px; min-width: 150px; }

.lpt-tip {
  font-size: 0.67rem;
  color: var(--text-muted);
  margin: 5px 0 0;
  line-height: 1.35;
}

/* Service choice buttons */
.ltable-svc {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
}

.svc-btn {
  height: 28px;
  padding: 0 10px;
  border-radius: 99px;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--text-muted);
  font-size: 0.7rem;
  font-weight: 600;
  cursor: pointer;
  opacity: 0.35;
  pointer-events: none;
  transition: all var(--duration-fast);
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 3px;
}

.svc-btn.is-enabled {
  opacity: 1;
  pointer-events: auto;
  color: var(--navy);
}

.svc-btn.is-enabled:hover { border-color: var(--gold); background: var(--gold-pale); }

.svc-btn.is-active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
  opacity: 1;
}

.svc-sub {
  font-size: 0.58rem;
  font-weight: 500;
  opacity: 0.65;
}

/* ── Form Elements ────────────────────────────────────────── */
.form-wrap {
  padding: var(--space-xl) var(--space-lg);
  max-width: 480px;
  margin: 0 auto;
}

.form-section {
  background: var(--white);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-light);
  padding: var(--space-xl);
  margin-bottom: var(--space-md);
  box-shadow: var(--shadow-sm);
}

.form-section__title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-md);
  border-bottom: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.form-section__title svg {
  width: 18px;
  height: 18px;
  color: var(--gold);
}

.form-group { margin-bottom: var(--space-md); }
.form-group:last-child { margin-bottom: 0; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

.form-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: var(--space-xs);
}

.form-label .required-dot {
  color: var(--gold);
  margin-left: 3px;
}

.form-control {
  width: 100%;
  height: 48px;
  padding: 0 var(--space-md);
  background: var(--cream);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-primary);
  transition:
    border-color var(--duration-fast),
    background var(--duration-fast),
    box-shadow var(--duration-fast);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

.form-control:focus {
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(232,151,58,.12);
}

.form-control::placeholder { color: var(--text-light); }

.form-control.is-invalid { border-color: #E53E3E; }
.form-control.is-invalid:focus { box-shadow: 0 0 0 3px rgba(229,62,62,.12); }

textarea.form-control {
  height: auto;
  padding: var(--space-md);
  resize: vertical;
  min-height: 100px;
}

select.form-control {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236B7A99' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}

/* Radio / Checkbox custom */
.form-check {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  cursor: pointer;
  padding: var(--space-sm) 0;
}

.form-check__input {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  border: 2px solid var(--border);
  border-radius: 4px;
  background: var(--cream);
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  transition: border-color var(--duration-fast), background var(--duration-fast);
  position: relative;
}

.form-check__input[type="radio"] { border-radius: 50%; }

.form-check__input:checked {
  border-color: var(--gold);
  background: var(--gold);
}

.form-check__input:checked::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath fill='white' d='M10 3L5 8.5 2 5.5'  stroke='white' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/10px no-repeat;
}

.form-check__input[type="radio"]:checked::after {
  background: white;
  border-radius: 50%;
  inset: 3px;
}

.form-check__label {
  font-size: 0.9rem;
  color: var(--text-body);
  cursor: pointer;
}

/* Toggle (yes/no) */
.toggle-group {
  display: flex;
  gap: var(--space-sm);
}

.toggle-btn {
  flex: 1;
  height: 44px;
  border-radius: var(--radius-md);
  border: 1.5px solid var(--border);
  background: var(--cream);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: all var(--duration-fast);
  cursor: pointer;
}

.toggle-btn.is-active,
.toggle-btn:hover {
  border-color: var(--gold);
  background: var(--gold-pale);
  color: var(--gold-dark);
}

/* Error message */
.form-error {
  font-size: 0.75rem;
  color: #E53E3E;
  margin-top: 4px;
  display: flex;
  align-items: center;
  gap: 4px;
}

/* Honeypot (invisible) */
.hp-field { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  height: 52px;
  padding: 0 var(--space-xl);
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  border: none;
  transition:
    transform var(--duration-fast) var(--ease-out),
    box-shadow var(--duration-fast),
    background var(--duration-fast),
    opacity var(--duration-fast);
  -webkit-tap-highlight-color: transparent;
  text-decoration: none;
  white-space: nowrap;
}

.btn:active { transform: scale(0.97); }

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  box-shadow: 0 6px 28px rgba(232,151,58,.35);
  transform: translateY(-1px);
}

.btn-secondary {
  background: var(--white);
  color: var(--navy);
  border: 1.5px solid var(--border);
}

.btn-secondary:hover {
  border-color: var(--gold);
  background: var(--gold-pale);
  color: var(--gold-dark);
  transform: translateY(-1px);
}

.btn-navy {
  background: var(--navy);
  color: var(--white);
}

.btn-navy:hover {
  background: var(--navy-mid);
  transform: translateY(-1px);
}

.btn-wa {
  background: #25D366;
  color: var(--white);
  box-shadow: 0 4px 16px rgba(37,211,102,.25);
}

.btn-wa:hover {
  background: #22bf5c;
  box-shadow: 0 6px 24px rgba(37,211,102,.35);
  transform: translateY(-1px);
}

.btn-full { width: 100%; }
.btn-sm { height: 40px; padding: 0 var(--space-lg); font-size: 0.825rem; }
.btn-lg { height: 58px; padding: 0 var(--space-2xl); font-size: 0.95rem; }

.btn:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.btn svg { width: 18px; height: 18px; }

/* ── WhatsApp FAB ─────────────────────────────────────────── */
.wa-fab {
  position: fixed;
  bottom: 24px;
  right: 20px;
  z-index: 999;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.4), 0 2px 8px rgba(0,0,0,.15);
  transition: transform var(--duration-fast) var(--ease-out), box-shadow var(--duration-fast);
  -webkit-tap-highlight-color: transparent;
}

.wa-fab:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 28px rgba(37,211,102,.5), 0 3px 12px rgba(0,0,0,.18);
}

.wa-fab:active { transform: scale(0.95); }
.wa-fab svg { width: 28px; height: 28px; }

.wa-fab__pulse {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid rgba(37,211,102,.4);
  animation: wa-pulse 2.5s ease-out infinite;
}

@keyframes wa-pulse {
  0%   { transform: scale(0.9); opacity: 0.6; }
  70%  { transform: scale(1.25); opacity: 0; }
  100% { transform: scale(1.25); opacity: 0; }
}

/* ── Thank-you Page ───────────────────────────────────────── */
.thanks-page {
  min-height: calc(100vh - 60px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: var(--space-2xl) var(--space-lg);
  text-align: center;
  max-width: 480px;
  margin: 0 auto;
}

.thanks-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-pale), #fde8c6);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-xl);
  box-shadow: var(--shadow-gold);
}

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

.thanks-ref {
  display: inline-block;
  background: var(--navy);
  color: var(--white);
  font-family: 'Courier New', monospace;
  font-size: 1.1rem;
  letter-spacing: 0.15em;
  padding: var(--space-sm) var(--space-lg);
  border-radius: var(--radius-md);
  margin: var(--space-md) 0 var(--space-xl);
}

/* ── Footer ───────────────────────────────────────────────── */
.site-footer {
  background: var(--navy);
  padding: var(--space-2xl) var(--space-lg) calc(var(--space-2xl) + 80px);
  margin-top: var(--space-2xl);
}

.site-footer__inner {
  max-width: 480px;
  margin: 0 auto;
}

.site-footer__logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}

.site-footer__logo img { height: 28px; width: auto; opacity: 0.85; }

.site-footer__logo-text {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  opacity: 0.85;
}

.site-footer__divider {
  height: 1px;
  background: linear-gradient(90deg, rgba(255,255,255,.1), rgba(255,255,255,.05), transparent);
  margin: var(--space-lg) 0;
}

.site-footer__rights {
  font-size: 0.78rem;
  color: rgba(255,255,255,.35);
}

.site-footer__contact {
  margin-top: var(--space-md);
}

.site-footer__contact a {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  font-size: 0.85rem;
  color: rgba(255,255,255,.5);
  transition: color var(--duration-fast);
}

.site-footer__contact a:hover { color: var(--gold-light); }

.site-footer__nav {
  margin-bottom: var(--space-md);
}

.site-footer__nav a {
  display: inline-flex;
  align-items: center;
  font-size: 0.82rem;
  color: rgba(255,255,255,.45);
  transition: color var(--duration-fast);
  text-decoration: none;
  letter-spacing: 0.02em;
}

.site-footer__nav a:hover { color: var(--gold-light); }

/* ── House Rules ──────────────────────────────────────────── */
.rules-grid {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  max-width: 640px;
  margin: 0 auto;
  padding: 0 var(--space-lg) var(--space-2xl);
}

.rule-card {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
  padding: var(--space-md) var(--space-lg);
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.rule-card__num {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  margin-top: 2px;
}

.rule-card__body { flex: 1; min-width: 0; }

.rule-card__title {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0 0 4px;
  line-height: 1.4;
}

.rule-card__text {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.6;
}

/* ── Badges & Status ──────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: var(--radius-full);
}

.badge-pending  { background: #FFF3CD; color: #856404; }
.badge-confirmed { background: #D1FAE5; color: #065F46; }
.badge-cancelled { background: #FEE2E2; color: #991B1B; }
.badge-completed { background: #DBEAFE; color: #1E40AF; }

/* ── Dividers ─────────────────────────────────────────────── */
.divider {
  height: 1px;
  background: var(--border-light);
  margin: var(--space-xl) 0;
}

.divider--gold {
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  height: 1px;
  opacity: 0.3;
}

/* ── Loading State ────────────────────────────────────────── */
.btn-loading { position: relative; pointer-events: none; }
.btn-loading .btn-text { opacity: 0; }
.btn-loading::after {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255,255,255,.3);
  border-top-color: white;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }

/* ── Alert Banner ─────────────────────────────────────────── */
.alert {
  padding: var(--space-md) var(--space-lg);
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  display: flex;
  gap: var(--space-sm);
  align-items: flex-start;
  margin-bottom: var(--space-md);
}

.alert-error   { background: #FEF2F2; color: #991B1B; border-left: 3px solid #EF4444; }
.alert-success { background: #F0FDF4; color: #166534; border-left: 3px solid #22C55E; }
.alert-info    { background: var(--gold-pale); color: var(--gold-dark); border-left: 3px solid var(--gold); }
.alert svg     { width: 16px; height: 16px; flex-shrink: 0; margin-top: 1px; }

/* ── Scroll-reveal animation ──────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity var(--duration-slow) var(--ease-out), transform var(--duration-slow) var(--ease-out);
}

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

/* ── Responsive tweaks ────────────────────────────────────── */
@media (min-width: 480px) {
  .services__grid { grid-template-columns: repeat(3, 1fr); }
  .service-card--featured { grid-column: span 3; }
  .menu-categories { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 768px) {
  .container,
  .page-header__inner,
  .hero__content,
  .page-hero__inner,
  .section-head,
  .card-grid,
  .form-wrap,
  .services__grid,
  .menu-categories,
  .site-footer__inner {
    max-width: 640px;
  }

  .services__grid { grid-template-columns: repeat(4, 1fr); }
  .service-card--featured { grid-column: span 2; }
  .menu-categories { grid-template-columns: repeat(4, 1fr); }
}

/* ── Print ────────────────────────────────────────────────── */
@media print {
  .wa-fab, .site-footer, .page-header { display: none; }
  body { background: white; }
}
