/* ==========================================================================
   AURA CLINIC & MEDI-SPA — LUXURY EDITORIAL ALABASTER DESIGN SYSTEM
   Palette: Alabaster Silk #FAF7F2 · Cashmere Blush #F4EBE1 · Warm Gold #C89765 · Deep Truffle #241E1C
   ========================================================================== */

:root {
  --bg-alabaster: #FAF7F2;
  --bg-cashmere: #F3ECE2;
  --bg-card: #FFFFFF;
  --bg-accent: #EFE4D6;
  
  --gold: #C89765;
  --gold-light: #DFC09E;
  --gold-dark: #A57241;
  --gold-subtle: rgba(200, 151, 101, 0.12);
  --gold-border: rgba(200, 151, 101, 0.3);
  
  --text-dark: #231E1C;
  --text-muted: #6E6460;
  --text-light: #9C8E88;
  
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Montserrat', sans-serif;
  --font-heading: 'Outfit', sans-serif;
  
  --r-sm: 6px;
  --r-md: 14px;
  --r-lg: 24px;
  --shadow-subtle: 0 10px 30px rgba(35, 30, 28, 0.05);
  --shadow-hover: 0 18px 45px rgba(200, 151, 101, 0.16);
  --transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  background: var(--bg-alabaster);
  color: var(--text-dark);
  font-family: var(--font-sans);
}

body { line-height: 1.7; background: var(--bg-alabaster); overflow-x: hidden; }

.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.text-center { text-align: center; }

/* Demo Top Bar */
.beauty-demo-bar {
  background: #1C1715;
  color: #DDD4CA;
  font-size: 13px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(200, 151, 101, 0.3);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.demo-bar-flex { display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.demo-bar-info { display: flex; align-items: center; gap: 8px; }
.demo-bar-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  background: rgba(255, 255, 255, 0.12);
  color: #FFFFFF;
  font-weight: 700;
  font-size: 12px;
  border-radius: 100px;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.25);
  transition: var(--transition);
  margin-right: 6px;
}
.demo-bar-back:hover { background: #FFFFFF; color: #1C1715; transform: translateY(-1px); }
.beauty-pulse {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 10px var(--gold);
  animation: pulse 2s infinite;
}
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }

.demo-bar-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  background: var(--gold);
  color: #1C1715;
  font-weight: 700;
  font-size: 12px;
  border-radius: 100px;
  text-decoration: none;
  transition: var(--transition);
}
.demo-bar-link:hover { background: #fff; transform: translateY(-1px); }

/* Header */
.beauty-header {
  background: rgba(250, 247, 242, 0.95);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(200, 151, 101, 0.15);
  position: sticky;
  top: 37px;
  z-index: 999;
}
.header-container { display: flex; align-items: center; justify-content: space-between; height: 80px; }
.beauty-brand { text-decoration: none; display: flex; flex-direction: column; align-items: center; }
.brand-crest { font-size: 9px; letter-spacing: 3px; color: var(--gold); font-weight: 700; }
.brand-title {
  font-family: var(--font-serif);
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 5px;
  color: var(--text-dark);
  line-height: 1;
}
.brand-subtitle { font-size: 8.5px; letter-spacing: 2px; color: var(--text-muted); text-transform: uppercase; }

.nav-links { display: flex; gap: 24px; list-style: none; }
.nav-item {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: var(--transition);
}
.nav-item:hover { color: var(--gold); }

.mobile-toggle { display: none; background: none; border: none; font-size: 22px; color: var(--text-dark); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 26px;
  border-radius: 100px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 13.5px;
  letter-spacing: 0.5px;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid transparent;
  transition: var(--transition);
}
.btn-beauty-gold {
  background: linear-gradient(135deg, #C89765 0%, #A57241 100%);
  color: #FFFFFF;
  box-shadow: 0 4px 18px rgba(200, 151, 101, 0.3);
}
.btn-beauty-gold:hover {
  background: linear-gradient(135deg, #DFC09E 0%, #C89765 100%);
  transform: translateY(-2px);
  color: #1c1715;
}
.btn-beauty-outline {
  background: transparent;
  color: var(--text-dark);
  border-color: var(--gold-border);
}
.btn-beauty-outline:hover { background: var(--bg-card); border-color: var(--gold); }
.btn-beauty-sm {
  padding: 8px 18px;
  font-size: 12px;
  background: var(--gold-subtle);
  color: var(--gold-dark);
  border: 1px solid var(--gold-border);
}
.btn-beauty-sm:hover { background: var(--gold); color: #fff; }
.btn-lg { padding: 15px 32px; font-size: 14.5px; }
.btn-block { width: 100%; }

/* Hero Section (Editorial Split) */
.beauty-hero { padding: 70px 0; background: linear-gradient(180deg, var(--bg-alabaster) 0%, var(--bg-cashmere) 100%); }
.hero-split-grid { display: grid; grid-template-columns: 1.15fr 1fr; gap: 60px; align-items: center; }
.editorial-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  color: var(--gold-dark);
  margin-bottom: 24px;
}
.editorial-heading {
  font-family: var(--font-serif);
  font-size: clamp(38px, 4.8vw, 58px);
  color: var(--text-dark);
  line-height: 1.12;
  margin-bottom: 20px;
  font-weight: 600;
}
.editorial-heading em { font-style: italic; color: var(--gold); font-weight: 400; }
.editorial-lead {
  font-size: 15.5px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 540px;
}
.hero-actions-row { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 40px; }

.beauty-trust-row {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(200, 151, 101, 0.2);
}
.b-trust-item { display: flex; flex-direction: column; }
.trust-score { font-family: var(--font-serif); font-size: 24px; font-weight: 700; color: var(--gold); line-height: 1; margin-bottom: 4px; }
.trust-desc { font-size: 12px; color: var(--text-light); }
.b-trust-divider { width: 1px; height: 32px; background: rgba(200, 151, 101, 0.25); }

/* Right Visual */
.hero-editorial-visual { position: relative; }
.visual-frame {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(35, 30, 28, 0.12);
  border: 4px solid #fff;
}
.beauty-hero-photo {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
}
.floating-treatment-card {
  position: absolute;
  bottom: 24px; left: 24px; right: 24px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  padding: 16px 20px;
  border-radius: var(--r-md);
  border: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}
.float-card-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--gold-subtle);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.float-card-info { display: flex; flex-direction: column; }
.float-card-info strong { font-size: 14px; color: var(--text-dark); }
.float-card-info span { font-size: 12px; color: var(--text-light); }
.float-price { margin-left: auto; font-family: var(--font-serif); font-size: 20px; font-weight: 700; color: var(--gold); }

/* Status Ribbon */
.beauty-status-ribbon {
  background: var(--bg-card);
  border-top: 1px solid rgba(200, 151, 101, 0.15);
  border-bottom: 1px solid rgba(200, 151, 101, 0.15);
  padding: 14px 0;
  font-size: 13.5px;
}
.ribbon-inner { display: flex; justify-content: space-between; align-items: center; color: var(--text-muted); }
.ribbon-status { display: flex; align-items: center; gap: 8px; }
.dot-online { width: 8px; height: 8px; border-radius: 50%; background: #52BE80; }
.ribbon-address a { color: var(--gold-dark); text-decoration: none; font-weight: 600; }

/* Sections */
.beauty-section { padding: 90px 0; }
.section-title-wrap { margin-bottom: 48px; }
.sub-badge {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-block;
  margin-bottom: 8px;
}
.section-h2 {
  font-family: var(--font-serif);
  font-size: clamp(32px, 4vw, 46px);
  color: var(--text-dark);
  font-weight: 600;
  margin-bottom: 10px;
}
.section-h2 em { font-style: italic; color: var(--gold); }
.section-p { font-size: 15px; color: var(--text-muted); max-width: 580px; margin: 0 auto; }

/* Menu Tabs */
.beauty-tabs-nav {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.b-tab {
  padding: 10px 22px;
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: 100px;
  color: var(--text-muted);
  font-size: 13.5px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font-sans);
}
.b-tab:hover { border-color: var(--gold); color: var(--text-dark); }
.b-tab.active {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
  box-shadow: 0 4px 16px rgba(200, 151, 101, 0.25);
}

/* Treatment Menu Rows */
.treatment-menu-wrapper {
  background: var(--bg-card);
  border: 1px solid rgba(200, 151, 101, 0.2);
  border-radius: var(--r-lg);
  padding: 40px 48px;
  box-shadow: var(--shadow-subtle);
}
.menu-item-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(200, 151, 101, 0.15);
}
.menu-item-row:last-child { border-bottom: none; }
.item-main-info { flex: 1; }
.item-title-line {
  display: flex;
  align-items: baseline;
  margin-bottom: 8px;
}
.item-name { font-family: var(--font-serif); font-size: 22px; color: var(--text-dark); font-weight: 700; white-space: nowrap; }
.item-dots { flex: 1; border-bottom: 1px dotted rgba(200, 151, 101, 0.35); margin: 0 16px; height: 1px; }
.item-price { font-family: var(--font-serif); font-size: 24px; font-weight: 700; color: var(--gold-dark); white-space: nowrap; }
.item-description { font-size: 13.5px; color: var(--text-muted); line-height: 1.6; margin-bottom: 10px; }
.item-meta-tags { display: flex; gap: 12px; font-size: 12px; color: var(--text-light); align-items: center; }
.tag-gold-subtle {
  background: var(--gold-subtle);
  color: var(--gold-dark);
  padding: 2px 10px;
  border-radius: 100px;
  font-weight: 600;
}

/* Metamorphoses */
.metamorfozy-cards-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.meta-card-luxury {
  background: var(--bg-card);
  border: 1px solid rgba(200, 151, 101, 0.25);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-subtle);
}
.meta-tag-top {
  background: var(--bg-cashmere);
  padding: 10px 20px;
  font-size: 12px;
  font-weight: 700;
  color: var(--gold-dark);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.meta-visual-box { display: grid; grid-template-columns: 1fr 1fr; border-bottom: 1px solid rgba(200, 151, 101, 0.15); }
.meta-side {
  padding: 36px 20px;
  text-align: center;
  position: relative;
  min-height: 160px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.meta-side.before { background: #fbf9f6; }
.meta-side.after { background: #fff5eb; border-left: 1px solid rgba(200, 151, 101, 0.2); }
.badge-tag {
  position: absolute;
  top: 10px;
  font-size: 10px;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: 4px;
  letter-spacing: 1px;
}
.meta-side.before .badge-tag { left: 10px; background: #e5dfd8; color: #666; }
.meta-side.after .badge-tag { right: 10px; background: var(--gold); color: #fff; }
.visual-inner i { font-size: 28px; color: var(--gold); margin-bottom: 8px; }
.visual-inner span { font-size: 12.5px; color: var(--text-dark); font-weight: 600; display: block; }
.meta-card-body { padding: 24px; }
.meta-card-body h4 { font-family: var(--font-serif); font-size: 20px; color: var(--text-dark); margin-bottom: 6px; }
.meta-card-body p { font-size: 13.5px; color: var(--text-muted); }

/* Team */
.team-cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.team-member-card {
  background: var(--bg-card);
  border: 1px solid rgba(200, 151, 101, 0.2);
  border-radius: var(--r-md);
  padding: 36px 24px;
  text-align: center;
  box-shadow: var(--shadow-subtle);
}
.member-avatar-wrap {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--gold-subtle);
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}
.avatar-letter { font-family: var(--font-serif); font-size: 22px; font-weight: 700; color: var(--gold-dark); }
.member-name { font-family: var(--font-serif); font-size: 21px; color: var(--text-dark); margin-bottom: 4px; }
.member-specialty { font-size: 11.5px; font-weight: 700; color: var(--gold); text-transform: uppercase; display: block; margin-bottom: 12px; }
.member-bio { font-size: 13px; color: var(--text-muted); line-height: 1.6; margin-bottom: 16px; }
.member-badge { font-size: 11.5px; font-weight: 600; color: var(--gold-dark); }

/* Vouchers Parchment */
.voucher-parchment-box {
  background: linear-gradient(135deg, #FFFFFF 0%, #F6ECE0 100%);
  border: 2px solid var(--gold-border);
  border-radius: var(--r-lg);
  padding: 48px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: center;
  box-shadow: var(--shadow-hover);
}
.voucher-heading { font-family: var(--font-serif); font-size: 34px; color: var(--text-dark); margin-bottom: 14px; }
.voucher-desc { font-size: 14.5px; color: var(--text-muted); margin-bottom: 20px; line-height: 1.7; }
.voucher-perks { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; font-size: 13.5px; color: var(--text-dark); }
.luxury-gift-card {
  background: #FFF;
  border: 2px solid var(--gold);
  border-radius: var(--r-md);
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 16px 40px rgba(200, 151, 101, 0.2);
}
.card-seal { font-family: var(--font-serif); font-size: 14px; letter-spacing: 4px; color: var(--gold); font-weight: 700; margin-bottom: 14px; }
.card-head { font-family: var(--font-serif); font-size: 24px; color: var(--text-dark); margin-bottom: 10px; }
.card-value { font-size: 15px; color: var(--gold-dark); font-weight: 600; margin-bottom: 14px; }
.card-foot { font-size: 11.5px; color: var(--text-light); font-style: italic; }

/* Contact */
.contact-split-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.contact-info-card {
  background: var(--bg-card);
  border: 1px solid rgba(200, 151, 101, 0.2);
  border-radius: var(--r-lg);
  padding: 40px;
}
.contact-lead { font-size: 14.5px; color: var(--text-muted); margin-bottom: 28px; line-height: 1.7; }
.info-items-list { display: flex; flex-direction: column; gap: 20px; }
.i-item { display: flex; gap: 16px; }
.i-item i { font-size: 20px; color: var(--gold); margin-top: 4px; }
.i-item strong { color: var(--text-dark); font-size: 14.5px; }
.i-item p, .i-item a { font-size: 13.5px; color: var(--text-muted); text-decoration: none; }
.i-item a:hover { color: var(--gold); }

.appointment-form-card {
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--r-lg);
  padding: 40px;
  box-shadow: var(--shadow-subtle);
}
.appointment-form-card h3 { font-family: var(--font-serif); font-size: 26px; color: var(--text-dark); margin-bottom: 20px; }
.beauty-form { display: flex; flex-direction: column; gap: 16px; }
.form-group label { font-size: 12.5px; color: var(--text-muted); font-weight: 600; margin-bottom: 6px; display: block; }
.b-input {
  width: 100%;
  padding: 13px 16px;
  background: var(--bg-alabaster);
  border: 1px solid rgba(200, 151, 101, 0.25);
  border-radius: var(--r-sm);
  color: var(--text-dark);
  font-family: var(--font-sans);
  font-size: 13.5px;
  outline: none;
  transition: var(--transition);
}
.b-input:focus { border-color: var(--gold); background: #fff; box-shadow: 0 0 16px rgba(200, 151, 101, 0.15); }

/* Floating Bar */
.beauty-mobile-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: rgba(255, 255, 255, 0.98);
  border-top: 1px solid var(--gold-border);
  padding: 10px 16px;
  z-index: 998;
  gap: 10px;
}
.mob-btn {
  flex: 1;
  padding: 12px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.mob-call { background: var(--bg-cashmere); color: var(--text-dark); }
.mob-book { background: var(--gold); color: #fff; }

/* Footer */
.beauty-footer {
  background: #171312;
  color: #DDD4CA;
  padding: 40px 0;
  text-align: center;
}
.footer-brand-title { font-family: var(--font-serif); font-size: 18px; letter-spacing: 4px; color: var(--gold-light); margin-bottom: 8px; }
.footer-copy { font-size: 12.5px; color: #8C8078; }
.footer-copy a { color: var(--gold-light); text-decoration: none; }

/* Responsive */
@media (max-width: 992px) {
  .hero-split-grid { grid-template-columns: 1fr; gap: 40px; }
  .metamorfozy-cards-grid { grid-template-columns: 1fr; }
  .team-cards-grid { grid-template-columns: 1fr; }
  .voucher-parchment-box { grid-template-columns: 1fr; }
  .contact-split-grid { grid-template-columns: 1fr; }
  .treatment-menu-wrapper { padding: 24px; }
}

@media (max-width: 768px) {
  .beauty-nav { display: none; }
  .mobile-toggle { display: block; }
  .menu-item-row { flex-direction: column; align-items: flex-start; }
  .item-title-line { flex-direction: column; align-items: flex-start; }
  .item-dots { display: none; }
  .item-price { margin-top: 4px; }
  .beauty-mobile-bar { display: flex; }
  body { padding-bottom: 60px; }
  .ribbon-inner { flex-direction: column; gap: 8px; text-align: center; }
}
