/* ===== VARIABLES ===== */
:root {
  --cream: #FDF8F5;
  --blush: #F5EDE8;
  --rose: #C9A99A;
  --rose-deep: #A07B72;
  --rose-light: #E8D0C8;
  --mauve: #5C3D3D;
  --text: #3D2B2B;
  --text-light: #8B6F6F;
  --white: #FFFFFF;
  --border: #E8D0C8;
  --shadow: rgba(180, 120, 100, 0.12);
  --shadow-deep: rgba(180, 120, 100, 0.25);
  --radius: 16px;
  --radius-sm: 8px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Nunito', 'Segoe UI', sans-serif;
  --header-h: 72px;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0 }
html { scroll-behavior: smooth; font-size: 16px }
body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; display: block }
a { text-decoration: none; color: inherit }
button { cursor: pointer; font-family: var(--font-body); border: none; background: none }
input, textarea, select { font-family: var(--font-body); font-size: 1rem }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 { font-family: var(--font-heading); color: var(--mauve); line-height: 1.25 }
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem) }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem) }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem) }
h4 { font-size: 1.1rem }
p { margin-bottom: 1rem }

/* ===== LAYOUT ===== */
.container { max-width: 1100px; margin: 0 auto; padding: 0 1.5rem }
section { padding: 80px 0 }
@media (max-width: 768px) { section { padding: 56px 0 } }

/* ===== HEADER ===== */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--header-h);
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition), backdrop-filter var(--transition);
}
.site-header.scrolled {
  background: rgba(253,248,245,0.92);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 24px var(--shadow);
}
.header-inner {
  display: flex; align-items: center; gap: 1.5rem; height: 100%;
}
.logo {
  font-family: var(--font-heading);
  font-size: 1.4rem; font-weight: 700;
  color: var(--mauve); letter-spacing: -0.02em;
  margin-right: auto; /* штовхає всі інші елементи вправо */
  white-space: nowrap; flex-shrink: 0;
}
.logo span { color: var(--rose) }

/* Desktop: nav-menu — горизонтальний flex */
#nav-menu { display: flex; align-items: center; gap: 1.5rem }

.nav-links { display: flex; gap: 1.5rem; list-style: none }
.nav-link { font-size: 0.85rem; font-weight: 600; color: var(--text-light); transition: color var(--transition); white-space: nowrap }
.nav-link:hover { color: var(--rose-deep) }
.lang-switcher { display: flex; gap: 2px; align-items: center; flex-shrink: 0 }
.header-lang { flex-shrink: 0 }
.lang-btn {
  padding: 4px 10px; border-radius: 20px; font-size: 0.8rem; font-weight: 700;
  color: var(--text-light); background: transparent; letter-spacing: 0.03em;
  transition: all var(--transition);
}
.lang-btn:hover, .lang-btn.active { background: var(--rose); color: var(--white) }
.btn-book-nav {
  background: var(--rose); color: var(--white);
  padding: 10px 22px; border-radius: 30px;
  font-weight: 700; font-size: 0.9rem;
  transition: all var(--transition); white-space: nowrap;
}
.btn-book-nav:hover { background: var(--rose-deep); transform: translateY(-1px) }
.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  width: 28px; padding: 4px; background: none; border: none;
}
.nav-toggle span {
  display: block; height: 2px; background: var(--mauve); border-radius: 2px;
  transition: var(--transition);
}
@media (max-width: 1000px) {
  .nav-toggle { display: flex }
  #nav-menu {
    position: fixed; inset: 0; top: var(--header-h);
    background: var(--cream); flex-direction: column;
    align-items: center; justify-content: flex-start;
    padding: 2rem; gap: 1.5rem; display: none; z-index: 99;
  }
  #nav-menu.open { display: flex }
  .nav-links { flex-direction: column; align-items: center; gap: 1.5rem }
  .nav-link { font-size: 1.1rem }
  .btn-book-nav { font-size: 1rem; padding: 14px 32px }
}
@media (max-width: 480px) {
  .lang-btn { padding: 4px 8px; font-size: 0.75rem }
  .logo { font-size: 1.1rem }
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, #F5EDE8 0%, #FDF8F5 50%, #F0E0D8 100%);
  padding: calc(var(--header-h) + 40px) 0 80px;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background: url('../img/hero-bg.jpg') center/cover no-repeat;
  opacity: 0.22;
}
.hero-content {
  position: relative; z-index: 1; text-align: center;
  max-width: 800px; margin: 0 auto; padding: 0 1.5rem;
}
.hero-badge {
  display: inline-block; background: var(--rose-light); color: var(--rose-deep);
  padding: 6px 18px; border-radius: 20px; font-size: 0.85rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 1.5rem;
}
.hero h1 { margin-bottom: 1.2rem; color: var(--mauve) }
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem); color: var(--text-light);
  margin-bottom: 2.5rem; line-height: 1.8;
}
.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap }
.btn-primary {
  background: var(--rose); color: var(--white);
  padding: 16px 36px; border-radius: 50px;
  font-size: 1rem; font-weight: 700; letter-spacing: 0.03em;
  transition: all var(--transition); display: inline-flex; align-items: center; gap: 8px;
}
.btn-primary:hover { background: var(--rose-deep); transform: translateY(-2px); box-shadow: 0 8px 24px var(--shadow-deep) }
.btn-outline {
  background: transparent; color: var(--mauve);
  padding: 16px 36px; border-radius: 50px; border: 2px solid var(--border);
  font-size: 1rem; font-weight: 600;
  transition: all var(--transition);
}
.btn-outline:hover { border-color: var(--rose); color: var(--rose); transform: translateY(-2px) }
.hero-stats { display: flex; gap: 3rem; justify-content: center; margin-top: 3rem; flex-wrap: wrap }
.hero-stat { text-align: center }
.hero-stat-num { font-family: var(--font-heading); font-size: 2rem; color: var(--rose-deep); display: block }
.hero-stat-label { font-size: 0.85rem; color: var(--text-light); font-weight: 600 }
.scroll-hint { position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%); animation: bounce 2s infinite }
.scroll-hint svg { width: 28px; opacity: 0.4 }
@keyframes bounce { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(8px)} }

/* ===== SERVICES ===== */
.services { background: var(--white) }
.section-header { text-align: center; margin-bottom: 3rem }
.section-header h2 { margin-bottom: 0.75rem }
.section-header p { color: var(--text-light); font-size: 1.05rem; max-width: 560px; margin: 0 auto }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem }
@media (max-width: 900px) { .services-grid { grid-template-columns: 1fr } }
.service-card {
  background: var(--cream); border-radius: var(--radius);
  overflow: hidden; transition: transform var(--transition), box-shadow var(--transition);
  border: 1px solid var(--border);
}
.service-card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px var(--shadow) }
.svc-photo {
  width: 100%; aspect-ratio: 4/3; overflow: hidden;
  background: linear-gradient(135deg, var(--rose-light), var(--blush));
  display: flex; align-items: center; justify-content: center; position: relative;
}
.svc-photo img { width: 100%; height: 100%; object-fit: cover }
.svc-photo-placeholder {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  width: 100%; height: 100%; color: var(--rose-deep); gap: 12px;
}
.svc-photo-placeholder svg { width: 48px; opacity: 0.5 }
.svc-photo-placeholder span { font-size: 0.8rem; font-weight: 600; letter-spacing: 0.05em; opacity: 0.7 }
.svc-body { padding: 1.75rem }
.svc-meta { display: flex; gap: 0.75rem; margin-bottom: 1rem; align-items: center; flex-wrap: wrap }
.svc-dur, .svc-zone {
  font-size: 0.8rem; font-weight: 700; letter-spacing: 0.04em;
  padding: 4px 12px; border-radius: 20px; background: var(--blush); color: var(--rose-deep);
}
.svc-card-title { font-family: var(--font-heading); font-size: 1.4rem; color: var(--mauve); margin-bottom: 0.75rem }
.svc-desc { font-size: 0.95rem; color: var(--text-light); margin-bottom: 1.5rem; line-height: 1.7 }
.svc-footer { display: flex; align-items: center; justify-content: space-between }
.svc-price { font-family: var(--font-heading); font-size: 1.8rem; color: var(--rose-deep); font-weight: 700 }
.svc-select-btn {
  background: var(--rose); color: var(--white);
  padding: 10px 24px; border-radius: 30px; font-weight: 700; font-size: 0.9rem;
  transition: all var(--transition);
}
.svc-select-btn:hover, .svc-select-btn.active { background: var(--rose-deep) }
.services-note {
  text-align: center; margin-top: 2.5rem; padding: 1.5rem;
  background: var(--blush); border-radius: var(--radius); border: 1px solid var(--border);
}
.services-note strong { color: var(--rose-deep) }
.services-note p { margin: 0; color: var(--text-light); font-size: 0.95rem }

/* ===== WHY ===== */
.why { background: var(--blush) }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem }
@media (max-width: 900px) { .why-grid { grid-template-columns: repeat(2,1fr) } }
@media (max-width: 480px) { .why-grid { grid-template-columns: 1fr } }
.why-card { text-align: center; padding: 1.5rem; background: var(--white); border-radius: var(--radius); border: 1px solid var(--border) }
.why-icon { font-size: 2.2rem; margin-bottom: 1rem }
.why-card h4 { font-family: var(--font-heading); font-size: 1.1rem; color: var(--mauve); margin-bottom: 0.5rem }
.why-card p { font-size: 0.9rem; color: var(--text-light); margin: 0 }

/* ===== ABOUT ===== */
.about { background: var(--white) }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center }
@media (max-width: 768px) { .about-grid { grid-template-columns: 1fr; gap: 2.5rem } }
.about-photos { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; position: relative }
.about-photo {
  border-radius: var(--radius); overflow: hidden; aspect-ratio: 3/4;
  background: linear-gradient(135deg, var(--rose-light) 0%, var(--blush) 100%);
}
.about-photo:first-child { margin-top: 2rem }
.about-photo img { width: 100%; height: 100%; object-fit: cover; display: block }
.about-exp-badge {
  position: absolute; bottom: -1rem; left: 50%; transform: translateX(-50%);
  background: var(--rose); color: var(--white); padding: 12px 24px;
  border-radius: var(--radius); font-family: var(--font-heading);
  font-size: 1rem; font-weight: 700; white-space: nowrap; text-align: center;
  box-shadow: 0 8px 24px var(--shadow-deep);
}
.about-content { padding: 1rem 0 }
.about-content h2 { margin-bottom: 0.5rem }
.about-role { color: var(--rose-deep); font-weight: 600; font-size: 1.05rem; margin-bottom: 1.5rem; display: block }
.about-content p { color: var(--text-light); line-height: 1.8; margin-bottom: 1rem }
.about-techniques-title { font-weight: 700; color: var(--mauve); margin-bottom: 0.75rem }
.techniques-list { list-style: none; display: flex; flex-wrap: wrap; gap: 0.5rem }
.techniques-list li {
  background: var(--blush); color: var(--rose-deep);
  padding: 6px 14px; border-radius: 20px; font-size: 0.85rem; font-weight: 600;
  border: 1px solid var(--rose-light);
}
.techniques-list li::before { content: '✦ '; font-size: 0.7rem }

/* ===== BOOKING ===== */
.booking { background: var(--blush) }
.booking-wrap { max-width: 900px; margin: 0 auto }

/* Service selector */
.booking-svc-selector { margin-bottom: 2rem }
.booking-svc-hint { font-size: 0.8rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-light); margin-bottom: 1rem; text-align: center }
.booking-svc-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem }
@media (max-width: 640px) { .booking-svc-grid { grid-template-columns: 1fr } }

.booking-svc-card {
  position: relative; padding: 1.5rem 1.25rem; background: var(--white);
  border: 2px solid var(--border); border-radius: var(--radius);
  cursor: pointer; transition: all var(--transition);
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  text-align: center;
}
.booking-svc-card:hover { border-color: var(--rose-light); transform: translateY(-3px); box-shadow: 0 8px 24px var(--shadow) }
.booking-svc-card.active { border-color: var(--rose); background: #FFF8F6; box-shadow: 0 8px 28px var(--shadow-deep) }

.bsc-popular {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--rose); color: var(--white);
  padding: 3px 14px; border-radius: 20px; font-size: 0.72rem; font-weight: 800;
  letter-spacing: 0.04em; white-space: nowrap;
}
.bsc-icon { font-size: 2rem; line-height: 1; margin-top: 0.25rem }
.bsc-name { font-family: var(--font-heading); font-size: 1.2rem; color: var(--mauve); font-weight: 700; line-height: 1.2 }
.bsc-badges { display: flex; gap: 0.5rem; justify-content: center; flex-wrap: wrap }
.bsc-dur { background: var(--blush); color: var(--rose-deep); padding: 3px 10px; border-radius: 20px; font-size: 0.78rem; font-weight: 700 }
.bsc-price { background: var(--rose); color: var(--white); padding: 3px 12px; border-radius: 20px; font-size: 0.78rem; font-weight: 800 }
.bsc-zone { font-size: 0.78rem; color: var(--text-light); line-height: 1.4 }
.bsc-check {
  font-size: 0.75rem; font-weight: 800; color: var(--rose-deep);
  opacity: 0; transition: opacity var(--transition); padding: 2px 0;
}
.booking-svc-card.active .bsc-check { opacity: 1 }

/* Calendar — hidden until service confirmed */
.cal-container {
  background: var(--white); border-radius: var(--radius);
  border: 1px solid var(--border); overflow: hidden; margin-bottom: 1.5rem;
  display: none;
}
.cal-container.visible { display: block; animation: slideDown 0.35s ease }
.cal-header { display: flex; align-items: center; justify-content: space-between; padding: 1.25rem 1.5rem; border-bottom: 1px solid var(--border) }
.cal-nav-btn {
  background: var(--blush); border: 1px solid var(--border); border-radius: var(--radius-sm);
  width: 38px; height: 38px; font-size: 1.2rem; color: var(--mauve);
  display: flex; align-items: center; justify-content: center; transition: all var(--transition);
}
.cal-nav-btn:hover { background: var(--rose); color: var(--white); border-color: var(--rose) }
#cal-title { font-family: var(--font-heading); font-size: 1.2rem; color: var(--mauve); text-transform: capitalize }
#cal-grid { display: grid; grid-template-columns: repeat(7,1fr); padding: 0.5rem 0.75rem 0.75rem }
.cal-day-header {
  text-align: center; padding: 0.3rem 0; font-size: 0.68rem; font-weight: 800;
  color: var(--text-light); letter-spacing: 0.05em; text-transform: uppercase;
}
.cal-day {
  width: 34px; height: 34px; display: flex; align-items: center; justify-content: center;
  border-radius: 50%; font-size: 0.82rem; font-weight: 600; margin: 2px auto; cursor: default;
  transition: all var(--transition);
}
.cal-day.empty { }
.cal-day.past { color: var(--border); }
.cal-day.full { color: var(--rose-light); background: var(--blush); position: relative }
.cal-day.full::after { content:''; position:absolute; width:3px; height:3px; background:var(--rose-light); border-radius:50%; bottom:2px }
.cal-day.available { color: var(--mauve); cursor: pointer; background: var(--blush) }
.cal-day.available:hover { background: var(--rose-light); color: var(--mauve); transform: scale(1.08) }
.cal-day.selected { background: var(--rose) !important; color: var(--white) !important; transform: scale(1.08) }
.cal-day.today { box-shadow: 0 0 0 2px var(--rose) }

/* Collapsed calendar after date selected */
.cal-collapsed { display: flex; align-items: center; justify-content: space-between; padding: 0.85rem 1.25rem; border-top: 1px solid var(--border) }
.cal-collapsed-label { font-size: 0.9rem; font-weight: 700; color: var(--mauve) }
.cal-change-btn {
  font-size: 0.8rem; font-weight: 700; color: var(--rose-deep);
  background: var(--blush); border: 1px solid var(--border);
  padding: 5px 14px; border-radius: 20px; cursor: pointer; transition: all var(--transition);
}
.cal-change-btn:hover { background: var(--rose-light) }

/* ===== SLOTS ===== */
#booking-slots {
  background: var(--white); border-radius: var(--radius); border: 1px solid var(--border);
  padding: 1.5rem; margin-bottom: 1.5rem;
  display: none; animation: slideDown 0.3s ease;
}
#booking-slots.visible { display: block }
@keyframes slideDown { from{opacity:0;transform:translateY(-10px)} to{opacity:1;transform:translateY(0)} }
#booking-slots h4 { margin-bottom: 1rem; color: var(--mauve) }
.slots-grid { display: flex; flex-wrap: wrap; gap: 0.5rem }
.slot-btn {
  padding: 10px 18px; border-radius: var(--radius-sm); font-size: 0.9rem; font-weight: 700;
  transition: all var(--transition); border: 2px solid transparent;
}
.slot-btn.available { background: var(--blush); color: var(--mauve); border-color: var(--border) }
.slot-btn.available:hover { background: var(--rose-light); border-color: var(--rose) }
.slot-btn.available.selected { background: var(--rose); color: var(--white); border-color: var(--rose) }
.slot-btn.busy { background: transparent; color: var(--border); border-color: var(--border); cursor: not-allowed; text-decoration: line-through }
.slot-hint { font-size: 0.8rem; color: var(--text-light); margin-top: 0.75rem; font-style: italic }
.no-slots { color: var(--text-light); font-style: italic; text-align: center }
.slots-loading { color: var(--text-light); text-align: center }

/* ===== BOOKING FORM ===== */
#booking-form-wrap { display: none; animation: slideDown 0.3s ease }
#booking-form-wrap.visible { display: block }
.booking-form-container {
  background: var(--white); border-radius: var(--radius);
  border: 1px solid var(--border); padding: 2rem;
}
#booking-summary {
  display: flex; gap: 1.5rem; flex-wrap: wrap;
  background: var(--blush); border-radius: var(--radius-sm);
  padding: 1rem 1.25rem; margin-bottom: 1.5rem; border: 1px solid var(--border);
}
#booking-summary span { font-size: 0.9rem; font-weight: 600; color: var(--mauve) }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem }
@media (max-width: 600px) { .form-grid { grid-template-columns: 1fr } }
.form-group { display: flex; flex-direction: column; gap: 6px }
.form-group label { font-size: 0.85rem; font-weight: 700; color: var(--mauve) }
.form-group input, .form-group textarea {
  padding: 12px 16px; border: 2px solid var(--border); border-radius: var(--radius-sm);
  background: var(--cream); color: var(--text);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-group input:focus, .form-group textarea:focus {
  outline: none; border-color: var(--rose); box-shadow: 0 0 0 3px var(--rose-light);
}
.form-group textarea { resize: vertical; min-height: 80px }
.contact-type-wrap { display: flex; gap: 0.75rem; flex-wrap: wrap }
.contact-type-label {
  display: flex; align-items: center; gap: 8px; padding: 10px 18px;
  border: 2px solid var(--border); border-radius: var(--radius-sm);
  cursor: pointer; transition: all var(--transition); font-weight: 600; font-size: 0.9rem;
}
.contact-type-label:hover { border-color: var(--rose-light) }
.contact-type-label.active { border-color: var(--rose); background: var(--rose-light) }
.contact-type-label input { display: none }
.form-span { grid-column: 1 / -1 }
.btn-submit {
  width: 100%; padding: 16px; background: var(--rose); color: var(--white);
  border-radius: 50px; font-size: 1.05rem; font-weight: 800; letter-spacing: 0.03em;
  transition: all var(--transition); margin-top: 0.5rem;
}
.btn-submit:hover:not(:disabled) { background: var(--rose-deep); transform: translateY(-2px); box-shadow: 0 8px 24px var(--shadow-deep) }
.btn-submit:disabled { opacity: 0.6; cursor: not-allowed }
#booking-error {
  display: none; background: #FFF0F0; color: #C0392B;
  padding: 0.75rem 1rem; border-radius: var(--radius-sm); border: 1px solid #F5C6C6;
  font-size: 0.9rem; margin-top: 0.75rem;
}
#booking-error.visible { display: block }

/* ===== SUCCESS ===== */
#booking-success {
  display: none; text-align: center; padding: 3rem 2rem;
  background: var(--white); border-radius: var(--radius); border: 1px solid var(--border);
}
#booking-success.visible { display: block; animation: slideDown 0.4s ease }
.success-icon { font-size: 3rem; margin-bottom: 1rem }
#booking-success h3 { font-family: var(--font-heading); color: var(--mauve); margin-bottom: 0.75rem }
#booking-success p { color: var(--text-light); margin-bottom: 1.5rem }
.btn-secondary {
  background: var(--blush); color: var(--rose-deep); padding: 12px 28px;
  border-radius: 30px; font-weight: 700; border: 2px solid var(--rose-light);
  transition: all var(--transition);
}
.btn-secondary:hover { background: var(--rose-light) }

/* ===== CONTRAINDICATIONS ===== */
.contraind { background: var(--white); padding: 48px 0 }
.contraind-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1rem }
.contraind-header h3 { font-family: var(--font-heading); color: var(--mauve) }
.btn-toggle {
  background: var(--blush); color: var(--rose-deep); padding: 8px 18px;
  border-radius: 20px; font-size: 0.85rem; font-weight: 700;
  border: 1px solid var(--border); transition: all var(--transition);
}
.btn-toggle:hover { background: var(--rose-light) }
#contraind-list { display: none }
#contraind-list.open { display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem }
@media (max-width: 600px) { #contraind-list.open { grid-template-columns: 1fr } }
.contraind-item {
  padding: 0.5rem 0.75rem; border-radius: var(--radius-sm);
  background: var(--blush); font-size: 0.9rem; color: var(--text-light);
  border-left: 3px solid var(--rose-light);
}

/* ===== CONTACT ===== */
.contact { background: var(--mauve) }
.contact .section-header h2 { color: var(--white) }
.contact .section-header p { color: var(--rose-light) }
.contact-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; max-width: 600px; margin: 0 auto }
@media (max-width: 560px) { .contact-cards { grid-template-columns: 1fr } }
.contact-card {
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius); padding: 2rem; text-align: center;
  transition: all var(--transition); color: var(--white);
}
.contact-card:hover { background: rgba(255,255,255,0.15); transform: translateY(-4px) }
.contact-card-icon { font-size: 2.5rem; margin-bottom: 1rem }
.contact-card h4 { color: var(--white); margin-bottom: 0.5rem; font-family: var(--font-heading) }
.contact-card p { color: var(--rose-light); font-size: 0.9rem; margin-bottom: 1rem }
.btn-contact {
  display: block; padding: 12px 24px; border-radius: 30px; font-weight: 700;
  background: var(--rose); color: var(--white); text-align: center;
  transition: all var(--transition); font-size: 0.9rem;
}
.btn-contact:hover { background: var(--rose-deep); transform: translateY(-2px) }
.contact-info { text-align: center; margin-top: 2.5rem; color: var(--rose-light); font-size: 0.95rem }
.contact-info p { margin-bottom: 0.25rem }

/* ===== FOOTER ===== */
.site-footer {
  background: var(--mauve); border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0; text-align: center;
}
.site-footer p { color: rgba(255,255,255,0.4); font-size: 0.85rem; margin: 0; cursor: default }

/* ===== SCROLL ANIMATIONS ===== */
.fade-in, .slide-up, .slide-left, .slide-right {
  opacity: 0; transition: opacity 0.7s ease, transform 0.7s ease;
}
.slide-up { transform: translateY(30px) }
.slide-left { transform: translateX(-30px) }
.slide-right { transform: translateX(30px) }
.fade-in.in-view, .slide-up.in-view, .slide-left.in-view, .slide-right.in-view {
  opacity: 1; transform: none;
}
.delay-1 { transition-delay: 0.1s }
.delay-2 { transition-delay: 0.2s }
.delay-3 { transition-delay: 0.3s }
.delay-4 { transition-delay: 0.4s }

/* ===== BOOKING SUCCESS MODAL ===== */
.bmodal-overlay {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(60, 30, 30, 0.55);
  backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  padding: 1.5rem;
  opacity: 0; pointer-events: none;
  transition: opacity 0.35s ease;
}
.bmodal-overlay.open {
  opacity: 1; pointer-events: all;
}
.bmodal-card {
  background: var(--white); border-radius: 24px;
  padding: 2.5rem 2rem; max-width: 420px; width: 100%;
  text-align: center; box-shadow: 0 24px 64px rgba(60,20,20,0.22);
  transform: translateY(24px) scale(0.97);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.bmodal-overlay.open .bmodal-card {
  transform: translateY(0) scale(1);
}
.bmodal-icon {
  font-size: 3.5rem; line-height: 1; margin-bottom: 1rem;
  animation: bmodal-bloom 0.6s 0.2s both;
}
@keyframes bmodal-bloom {
  0%   { transform: scale(0) rotate(-20deg); opacity: 0 }
  70%  { transform: scale(1.15) rotate(5deg) }
  100% { transform: scale(1) rotate(0); opacity: 1 }
}
.bmodal-title {
  font-family: var(--font-heading); font-size: 1.6rem;
  color: var(--mauve); margin-bottom: 1.25rem; line-height: 1.25;
}
.bmodal-booking-info {
  background: var(--blush); border-radius: var(--radius-sm);
  padding: 1rem 1.25rem; margin-bottom: 1.25rem;
  border: 1px solid var(--border);
  display: flex; flex-direction: column; gap: 0.4rem;
}
.bmodal-booking-info span {
  font-size: 0.95rem; font-weight: 700; color: var(--mauve);
}
.bmodal-booking-info .bm-time {
  font-family: var(--font-heading); font-size: 1.4rem;
  color: var(--rose-deep);
}
.bmodal-waiting {
  font-size: 1rem; color: var(--text); font-weight: 600;
  margin-bottom: 0.75rem; line-height: 1.5;
}
.bmodal-contact {
  font-size: 0.88rem; color: var(--text-light);
  line-height: 1.6; margin-bottom: 1.75rem;
}
.bmodal-close {
  background: var(--rose); color: var(--white);
  border: none; border-radius: 50px;
  padding: 14px 32px; font-size: 1rem; font-weight: 800;
  cursor: pointer; width: 100%;
  transition: all var(--transition);
  font-family: var(--font-body);
}
.bmodal-close:hover { background: var(--rose-deep); transform: translateY(-2px) }

/* ===== FLOATING CTA ===== */
.floating-cta {
  position: fixed; bottom: 24px; right: 24px; z-index: 50;
  background: var(--rose); color: var(--white);
  padding: 14px 24px; border-radius: 50px;
  font-weight: 700; font-size: 0.95rem;
  box-shadow: 0 8px 24px var(--shadow-deep);
  transition: all var(--transition); display: none;
}
.floating-cta.visible { display: block }
.floating-cta:hover { background: var(--rose-deep); transform: translateY(-3px) }
@media (max-width: 480px) { .floating-cta { bottom: 16px; right: 16px; padding: 12px 20px; font-size: 0.85rem } }
