:root {
  --gold:          #B8860B;
  --gold-light:    #D4A017;
  --gold-dark:     #8B6508;
  --gold-pale:     #FDF6E3;
  --bg-main:       #FAFAF8;
  --bg-section:    #F5F3EF;
  --bg-card:       #FFFFFF;
  --bg-card-2:     #F9F7F4;
  --text-primary:  #1A1A1A;
  --text-secondary:#4A4A4A;
  --text-muted:    #888888;
  --border:        rgba(184,134,11,0.2);
  --border-light:  rgba(0,0,0,0.08);
  --shadow-sm:     0 2px 12px rgba(0,0,0,0.06);
  --shadow-md:     0 8px 32px rgba(0,0,0,0.1);
  --shadow-lg:     0 20px 60px rgba(0,0,0,0.12);
  --transition:    all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

#hero {
  position: relative; height: 100vh; min-height: 640px;
  display: flex; align-items: center; overflow: hidden;
  background-color: #000;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('https://images.unsplash.com/photo-1503951914875-452162b0f3f1?w=1920&q=80&fm=webp');
  background-size: cover; background-position: center 30%;
  filter: brightness(0.45) saturate(0.6);
}
.hero-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 8vw, 7rem);
  line-height: 1.1; font-weight: 300;
  letter-spacing: -0.02em; color: var(--text-primary);
}
.hero-heading em { color: var(--gold); font-style: italic; }
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(110deg, rgba(250,250,248,0.92) 0%, rgba(250,250,248,0.55) 50%, rgba(250,250,248,0.15) 100%),
    linear-gradient(to top, rgba(250,250,248,0.9) 0%, transparent 40%);
}
.hero-content { position: relative; z-index: 2; }

.flex         { display: flex; }
.inline-flex  { display: inline-flex; }
.grid         { display: grid; }
.hidden       { display: none; }
.w-full       { width: 100%; }
.max-width-7xl { max-width: 80rem; }
.max-width-sm  { max-width: 24rem; }
.mx-auto      { margin-left: auto; margin-right: auto; }
.ml-1         { margin-left: 0.25rem; }
.mt-3         { margin-top: 0.75rem; }
.mt-4         { margin-top: 1rem; }
.mt-8         { margin-top: 2rem; }
.mb-1         { margin-bottom: 0.25rem; }
.mb-2         { margin-bottom: 0.5rem; }
.mb-3         { margin-bottom: 0.75rem; }
.mb-4         { margin-bottom: 1rem; }
.mb-5         { margin-bottom: 1.25rem; }
.mb-8         { margin-bottom: 2rem; }
.mb-10        { margin-bottom: 2.5rem; }
.mb-12        { margin-bottom: 3rem; }
.mb-14        { margin-bottom: 3.5rem; }
.px-6         { padding-left: 1.5rem; padding-right: 1.5rem; }
.flex-col     { flex-direction: column; }
.flex-wrap    { flex-wrap: wrap; }
.items-center { align-items: center; }
.items-start  { align-items: flex-start; }
.justify-between { justify-content: space-between; }
.justify-center  { justify-content: center; }
.gap-2  { gap: 0.5rem; }
.gap-3  { gap: 0.75rem; }
.gap-4  { gap: 1rem; }
.gap-6  { gap: 1.5rem; }
.gap-9  { gap: 2.25rem; }
.gap-12 { gap: 3rem; }
.gap-14 { gap: 3.5rem; }
.grid-cols-3     { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.text-center     { text-align: center; }
.text-xs         { font-size: 0.75rem; line-height: 1rem; }
.text-sm         { font-size: 0.875rem; line-height: 1.25rem; }
.leading-relaxed { line-height: 1.625; }
.tracking-widest { letter-spacing: 0.1em; }
.uppercase       { text-transform: uppercase; }
.text-gray-400   { color: #9ca3af; }
.text-gray-500   { color: #6b7280; }
.text-gray-700   { color: #374151; }
.text-gray-900   { color: #111827; }
.bg-stone-50     { background-color: #fafaf9; }
.hover\:text-gold:hover { color: var(--gold); }
.transition-colors { transition: color 0.3s ease; }

@media (min-width: 768px) {
  .md\:flex        { display: flex; }
  .md\:hidden      { display: none; }
  .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .md\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .md\:px-12       { padding-left: 3rem; padding-right: 3rem; }
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background-color: var(--bg-main);
  font-family: 'Inter', sans-serif;
  color: var(--text-primary);
  overflow-x: hidden;
  line-height: 1.6;
}

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg-section); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 10px; }
::selection { background: var(--gold-light); color: #fff; }

.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.7s cubic-bezier(0.25,0.46,0.45,0.94),
              transform 0.7s cubic-bezier(0.25,0.46,0.45,0.94);
  will-change: opacity, transform;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.10s; }
.reveal-delay-2 { transition-delay: 0.22s; }
.reveal-delay-3 { transition-delay: 0.34s; }
.reveal-delay-4 { transition-delay: 0.46s; }
.reveal-delay-5 { transition-delay: 0.58s; }

#navbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.25rem 2rem;
  transition: var(--transition);
}
#navbar.scrolled {
  background: rgba(250,250,248,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 0.75rem 2rem;
  border-bottom: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}

.nav-link {
  position: relative;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-secondary);
  transition: color 0.3s ease;
  font-weight: 500;
  text-decoration: none;
}
.nav-link::after {
  content: '';
  position: absolute; bottom: -3px; left: 0;
  width: 0; height: 1.5px;
  background: var(--gold);
  transition: width 0.35s ease;
}
.nav-link:hover { color: var(--gold); }
.nav-link:hover::after { width: 100%; }

.logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem; font-weight: 600;
  letter-spacing: 0.1em; color: var(--text-primary);
  text-decoration: none;
  display: inline-flex; align-items: center;
}
.logo-crown { color: var(--gold); margin-right: 0.3rem; font-size: 1rem; }
.logo-dot { color: var(--gold); }

.lang-btn {
  font-size: 0.68rem; letter-spacing: 0.1em;
  padding: 0.28rem 0.65rem;
  border: 1px solid var(--border-light); border-radius: 3px;
  color: var(--text-muted); cursor: pointer; background: transparent;
  transition: var(--transition); font-family: 'Inter', sans-serif;
}
.lang-btn:hover, .lang-btn.active {
  background: var(--gold); border-color: var(--gold); color: #fff;
}

.pricing-banner {
  background: var(--bg-card);
  padding: 3rem;
  border-radius: 12px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
  margin-top: -2rem;
}
.pricing-banner::before {
  content: ''; position: absolute; top: 0; left: 0; width: 4px; height: 100%;
  background: var(--gold);
}
.pricing-info-card {
  background: var(--bg-card-2);
  padding: 2rem;
  border-radius: 8px;
  border: 1px dashed var(--gold);
}

.btn-gold {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.9rem 2rem;
  background: transparent; border: 1.5px solid var(--gold);
  color: var(--gold); font-size: 0.72rem; letter-spacing: 0.14em;
  text-transform: uppercase; font-family: 'Inter', sans-serif; font-weight: 500;
  cursor: pointer; text-decoration: none;
  position: relative; overflow: hidden;
  transition: color 0.4s ease;
  border-radius: 2px;
  z-index: 1;
  isolation: isolate;
}
.btn-gold::before {
  content: ''; position: absolute; inset: 0;
  background: var(--gold); transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.25,0.46,0.45,0.94); z-index: -1;
}
.btn-gold:hover { color: #fff; }
.btn-gold:hover::before { transform: scaleX(1); }

.btn-gold-solid {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.9rem 2rem;
  background: var(--gold); border: 1.5px solid var(--gold); color: #fff;
  font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase;
  font-family: 'Inter', sans-serif; font-weight: 600;
  cursor: pointer; text-decoration: none;
  transition: background 0.35s ease, transform 0.2s ease;
  border-radius: 2px;
  z-index: 1;
}
.btn-gold-solid:hover { background: var(--gold-light); transform: translateY(-1px); }

.scroll-indicator {
  position: absolute; bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.4rem;
  z-index: 2; cursor: pointer;
  color: var(--text-muted); font-size: 0.6rem;
  letter-spacing: 0.18em; text-transform: uppercase;
}
.scroll-line {
  width: 1px; height: 44px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%,100% { opacity: 0.5; transform: scaleY(1); }
  50%      { opacity: 1;   transform: scaleY(1.1); }
}

section { padding: 6rem 0; }

.section-label {
  font-size: 0.65rem; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--gold); display: flex; align-items: center; gap: 0.7rem;
  margin-bottom: 1.25rem;
}
.section-label::before {
  content: ''; display: inline-block;
  width: 2rem; height: 1.5px; background: var(--gold); flex-shrink: 0;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 5vw, 3.6rem);
  font-weight: 300; line-height: 1.1; color: var(--text-primary);
}
.gold-divider {
  width: 48px; height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  margin: 1.75rem 0; border-radius: 2px;
}

#about { background: var(--bg-main); }
.about-img-wrapper {
  position: relative; overflow: hidden; border-radius: 4px; aspect-ratio: 4/5;
  box-shadow: var(--shadow-lg);
}
.about-img-wrapper img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.75s cubic-bezier(0.25,0.46,0.45,0.94);
  background-color: #eee;
}
.about-img-wrapper:hover img { transform: scale(1.04); }
.about-img-wrapper::after {
  content: ''; position: absolute; bottom: -10px; right: -10px;
  width: 50%; height: 50%; border: 2px solid var(--gold);
  z-index: -1; opacity: 0.4; border-radius: 2px;
  transition: opacity 0.5s ease;
}
.about-img-wrapper:hover::after { opacity: 0.8; }

.stat-card {
  padding: 1.4rem 1rem; border: 1px solid var(--border-light);
  background: var(--bg-card); border-radius: 6px;
  text-align: center;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.stat-card:hover {
  border-color: var(--gold);
  box-shadow: 0 8px 24px rgba(184,134,11,0.12);
  transform: translateY(-3px);
}
.stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem; font-weight: 600; color: var(--gold); line-height: 1;
}
.stat-label {
  font-size: 0.65rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-muted); margin-top: 0.4rem;
}

#services { background: var(--bg-section); }
.services-grid-top, .services-grid-bottom {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem;
}
.services-grid-top { margin-bottom: 1rem; }

.service-card {
  padding: 2rem 1.75rem; background: var(--bg-card);
  position: relative; overflow: hidden;
  border-radius: 6px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: var(--transition); cursor: default;
}
.service-card-sm { padding: 1.5rem 1.5rem; }

.service-card::before, .service-card-sm::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0;
  width: 3px; background: linear-gradient(to bottom, var(--gold), var(--gold-light));
  border-radius: 0 2px 2px 0;
  transform: scaleY(0); transform-origin: top;
  transition: transform 0.4s cubic-bezier(0.25,0.46,0.45,0.94);
}
.service-card:hover::before, .service-card-sm:hover::before { transform: scaleY(1); }
.service-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); border-color: rgba(184,134,11,0.25); }
.service-card-sm:hover { box-shadow: var(--shadow-sm); transform: translateY(-2px); }

.service-tag {
  display: inline-block; font-size: 0.58rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: #fff; background: var(--gold); padding: 0.2rem 0.65rem; margin-bottom: 1.25rem; border-radius: 2px;
}
.service-tag:empty { display: none; }

.service-icon {
  width: 44px; height: 44px; display: flex; align-items: center; justify-content: center;
  border: 1.5px solid var(--border); color: var(--gold); margin-bottom: 1.1rem; border-radius: 6px;
  background: var(--gold-pale); transition: var(--transition);
}
.service-card:hover .service-icon, .service-card-sm:hover .service-icon { background: var(--gold); border-color: var(--gold); color: #fff; }

.service-title { font-size: 1rem; font-weight: 600; letter-spacing: 0.02em; color: var(--text-primary); margin-bottom: 0.6rem; transition: color 0.3s ease; }
.service-card:hover .service-title, .service-card-sm:hover .service-title { color: var(--gold); }
.service-desc { font-size: 0.84rem; line-height: 1.7; color: var(--text-muted); }
.service-desc-sm { font-size: 0.8rem; }

#reviews { background: var(--bg-main); }
.review-card {
  padding: 2rem; border: 1px solid var(--border-light); background: var(--bg-card); border-radius: 8px; position: relative;
  box-shadow: var(--shadow-sm); transition: var(--transition);
}
.review-card::before {
  content: '\201C'; position: absolute; top: 0.75rem; right: 1.25rem;
  font-family: 'Cormorant Garamond', serif; font-size: 5rem; line-height: 1; color: rgba(184,134,11,0.1); pointer-events: none;
}
.review-card:hover { border-color: rgba(184,134,11,0.3); box-shadow: 0 12px 36px rgba(184,134,11,0.1); transform: translateY(-3px); }

.review-stars { display: flex; gap: 3px; margin-bottom: 1rem; color: var(--gold); font-size: 0.9rem; }
.review-text { font-size: 0.9rem; line-height: 1.8; color: var(--text-secondary); margin-bottom: 1.5rem; font-style: italic; }
.review-name { font-size: 0.88rem; font-weight: 600; color: var(--text-primary); }
.review-loc  { font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); margin-top: 0.15rem; }

.google-badge {
  display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.65rem 1.4rem; border: 1.5px solid var(--border);
  font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-secondary); text-decoration: none; border-radius: 4px;
  transition: var(--transition);
}
.google-badge:hover { border-color: var(--gold); color: var(--gold); background: var(--gold-pale); box-shadow: 0 4px 16px rgba(184,134,11,0.12); }
.badge-outline { background: transparent; border: 1.5px solid var(--border-light); }
.badge-outline:hover { border-color: var(--text-secondary); background: rgba(0,0,0,0.02); }

#contact { background: var(--bg-section); }
.contact-info-row { display: flex; gap: 1.25rem; padding: 1.35rem 0; border-bottom: 1px solid var(--border-light); align-items: flex-start; transition: var(--transition); }
.contact-info-row:first-child { border-top: 1px solid var(--border-light); }
.contact-info-row:hover { padding-left: 0.5rem; }
.contact-icon {
  width: 40px; height: 40px; min-width: 40px; display: flex; align-items: center; justify-content: center;
  border: 1.5px solid var(--border); color: var(--gold); border-radius: 8px; background: var(--gold-pale);
}
.contact-info-label { font-size: 0.6rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 0.25rem; }
.contact-info-value { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.55; }

.open-badge { display: inline-flex; align-items: center; gap: 0.4rem; font-size: 0.65rem; letter-spacing: 0.1em; text-transform: uppercase; color: #16a34a; margin-top: 0.35rem; font-weight: 500; }
.open-badge::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: #16a34a; animation: pulse 2s ease-in-out infinite; }
@keyframes pulse { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.5; transform: scale(0.8); } }

.appt-notice {
  display: flex; align-items: flex-start; gap: 0.45rem; margin-top: 0.6rem; font-size: 0.72rem; line-height: 1.55;
  color: var(--gold-dark); background: var(--gold-pale); border: 1px solid rgba(184,134,11,0.25); border-left: 3px solid var(--gold); padding: 0.55rem 0.75rem; border-radius: 4px; max-width: 300px;
}
.appt-notice svg { flex-shrink: 0; margin-top: 1px; color: var(--gold); }

.map-container { width: 100%; height: 320px; overflow: hidden; border: 1px solid var(--border-light); margin-top: 2rem; border-radius: 8px; box-shadow: var(--shadow-sm); }
.map-container iframe { width: 100%; height: 100%; border: none; filter: saturate(0.8) contrast(1.05); }

#whatsapp-btn {
  position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 999; width: 56px; height: 56px; border-radius: 50%;
  background: #25D366; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease; animation: waBounce 3s 2s ease-in-out infinite;
}
#whatsapp-btn:hover { transform: scale(1.12); box-shadow: 0 8px 28px rgba(37,211,102,0.5); animation: none; }
@keyframes waBounce { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }

footer { background: var(--text-primary); padding: 2.5rem 0; border-top: 3px solid var(--gold); }
footer .logo-text { color: #fff; }
footer .logo-crown, footer .logo-dot { color: var(--gold-light); }
.footer-divider { width: 36px; height: 2px; background: var(--gold); margin: 0.75rem auto 1rem; border-radius: 2px; }
.footer-tagline { color: rgba(255,255,255,0.5) !important; }
.footer-copy { color: rgba(255,255,255,0.3); }

.mobile-menu {
  position: fixed; inset: 0; z-index: 998; background: rgba(250,250,248,0.98); backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2rem; transform: translateX(100%); transition: transform 0.5s cubic-bezier(0.25,0.46,0.45,0.94);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-nav-link { font-family: 'Cormorant Garamond', serif; font-size: 2.6rem; font-weight: 300; letter-spacing: 0.04em; color: var(--text-primary); text-decoration: none; transition: color 0.3s ease; }
.mobile-nav-link:hover { color: var(--gold); }
.hamburger { display: flex; flex-direction: column; gap: 5px; cursor: pointer; padding: 6px; background: none; border: none; }
.hamburger span { display: block; width: 22px; height: 1.5px; background: var(--text-primary); transition: var(--transition); }
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

@media (max-width: 900px) {
  .services-grid-top, .services-grid-bottom { grid-template-columns: 1fr 1fr; gap: 0.75rem; }
}

@media (max-width: 640px) {
  section { padding: 4rem 0; }
  #navbar { padding: 1rem 1.25rem; }
  #navbar.scrolled { padding: 0.7rem 1.25rem; }
  .hero-heading { font-size: clamp(2.6rem, 11vw, 4rem); }
  .hero-content { padding-left: 1.25rem !important; padding-right: 1.25rem !important; }
  .services-grid-top, .services-grid-bottom { grid-template-columns: 1fr; gap: 0.75rem; }
  .service-card, .service-card-sm { text-align: center; }
  .service-icon { margin-left: auto; margin-right: auto; }
  .service-tag  { display: block; margin-left: auto; margin-right: auto; width: fit-content; }
  .about-img-wrapper { aspect-ratio: 16/9; margin-bottom: 2rem; }
  .about-img-wrapper::after { display: none; }
  .map-container { height: 220px; }
  .scroll-indicator { display: flex; bottom: 5.5rem; }
  .btn-gold, .btn-gold-solid { padding: 0.8rem 1.5rem; font-size: 0.68rem; width: 100%; justify-content: center; }
  .btn-gold { background: rgba(255, 255, 255, 0.5); font-weight: 600; }
  .btn-gold::before, .btn-gold-solid::before { display: none !important; }
  .btn-gold:hover { color: var(--gold); }
  .btn-gold-solid:hover { transform: none; background: var(--gold); }
  .review-card { padding: 1.5rem; }
  .service-card { padding: 1.5rem 1.25rem; }
  .stat-card { padding: 1rem; }
  .stat-number { font-size: 1.8rem; }
  footer { padding: 2rem 0; }
}

.mobile-lang-btns { display: flex; gap: 0.6rem; margin-top: 0.5rem; }

@media (max-width: 380px) {
  .hero-heading { font-size: clamp(2.2rem, 10vw, 3rem); }
  .logo-text { font-size: 1.2rem; }
}

#sticky-cta {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 1001; padding: 0.75rem 1.25rem;
  background: rgba(250,250,248,0.8); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--border-light); box-shadow: 0 -4px 12px rgba(0,0,0,0.05);
}
.sticky-cta-btn {
  display: flex; align-items: center; justify-content: center; gap: 0.75rem; width: 100%; padding: 0.85rem;
  background: #25D366; color: #fff; font-weight: 600; font-size: 0.85rem; letter-spacing: 0.05em; text-transform: uppercase; text-decoration: none; border-radius: 8px; box-shadow: 0 4px 12px rgba(37,211,102,0.3);
}

@media (max-width: 768px) {
  body { padding-bottom: 70px; }
  #whatsapp-btn { bottom: 5.5rem; }
}

.footer-link-subtle { color: inherit; text-decoration: none; opacity: 1; transition: opacity 0.3s; }
.modal {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(0,0,0,0.4); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  display: none; align-items: center; justify-content: center; padding: 1.5rem;
}
.modal.open { display: flex; }
.modal-content {
  background: var(--bg-card); width: 100%; max-width: 440px;
  border-radius: 12px; box-shadow: var(--shadow-lg);
  display: flex; flex-direction: column; overflow: hidden;
  max-height: 90vh;
}
.modal-header {
  padding: 1.25rem 1.5rem; border-bottom: 1px solid var(--border-light);
  display: flex; justify-content: space-between; align-items: center;
}
.modal-header h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; color: var(--gold); }
.close-btn { background: none; border: none; font-size: 1.8rem; cursor: pointer; color: var(--text-muted); }

.modal-body { padding: 1.5rem; overflow-y: auto; flex: 1; }
.steps-indicator { display: flex; justify-content: center; gap: 0.75rem; margin-bottom: 1.5rem; }
.step-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--border); transition: var(--transition); }
.step-dot.active { background: var(--gold); transform: scale(1.3); }

.wizard-step { display: none; }
.wizard-step.active { display: block; animation: fadeIn 0.4s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

.wizard-step h4 { font-size: 0.9rem; letter-spacing: 0.05em; text-transform: uppercase; margin-bottom: 1rem; color: var(--text-secondary); }
.selection-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(100px, 1fr)); gap: 0.75rem; margin-bottom: 1rem; }
.selection-grid.scrollable { max-height: 250px; overflow-y: auto; padding-right: 5px; grid-template-columns: 1fr 1fr 1fr; }
@media (max-width: 400px) { .selection-grid.scrollable { grid-template-columns: 1fr 1fr; } }
.select-btn {
  padding: 0.75rem; border: 1.5px solid var(--border-light); background: var(--bg-card-2);
  border-radius: 6px; cursor: pointer; transition: var(--transition);
  font-size: 0.82rem; font-weight: 500; color: var(--text-secondary);
  display: flex; align-items: center; justify-content: center; text-align: center;
}
.select-btn:hover { border-color: var(--gold); background: rgba(197, 168, 128, 0.05); }
.select-btn.active { background: var(--gold); border-color: var(--gold); color: #fff; box-shadow: 0 4px 10px rgba(197, 168, 128, 0.3); }

.select-btn.disabled { opacity: 0.4; cursor: not-allowed; pointer-events: none; grayscale: 1; }

.date-input {
  width: 100%; padding: 0.75rem; border: 1.5px solid var(--border-light); border-radius: 6px;
  font-family: 'Inter', sans-serif; font-size: 0.9rem; margin-top: 0.5rem;
  background: var(--bg-card); color: var(--text-primary);
}
.date-input:focus { border-color: var(--gold); outline: none; }

.selection-list { display: flex; flex-direction: column; gap: 0.6rem; }
.service-item {
  display: flex; align-items: center; gap: 0.75rem; padding: 0.75rem;
  border: 1px solid var(--border-light); border-radius: 6px; cursor: pointer;
  transition: var(--transition); font-size: 0.9rem;
}
.service-item:hover { background: var(--bg-card-2); }
.service-item input:checked + span { color: var(--gold); font-weight: 600; }

.booking-summary-box {
  background: var(--gold-pale); border-left: 3px solid var(--gold);
  padding: 1rem; border-radius: 4px; margin-bottom: 1rem;
}
.booking-summary-box p { font-size: 0.85rem; line-height: 1.6; white-space: pre-line; }
#wiz-note {
  width: 100%; height: 80px; padding: 0.75rem; border: 1.5px solid var(--border-light);
  border-radius: 6px; font-family: inherit; font-size: 0.85rem; resize: none;
}

.modal-footer {
  padding: 1.25rem 1.5rem; border-top: 1px solid var(--border-light);
  display: flex; justify-content: flex-end; gap: 0.75rem;
}
.btn-outline {
  padding: 0.75rem 1.25rem; border: 1.5px solid var(--border-light); background: transparent;
  font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 600;
  cursor: pointer; border-radius: 4px; transition: var(--transition);
}
.btn-outline:hover { background: rgba(0,0,0,0.02); border-color: var(--text-muted); }
.hidden { display: none !important; }

@media (max-width: 480px) {
  .modal-content { max-height: 95vh; border-radius: 0; }
  .selection-grid { grid-template-columns: 1fr 1fr; }
}
