@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&family=Playfair+Display:wght@500;600;700&display=swap');

:root{
  --burgundy:#6b2737;
  --burgundy-dark:#4a1b26;
  --gold:#c9a96e;
  --gold-light:#e8ddd3;
  --cream:#faf8f5;
  --dark:#2c2c2c;
  --muted:#777;
  --line:#e8e0d8;
  --white:#fff;
  --orange:#d4760a;
  --font-display:"Playfair Display",Georgia,serif;
  --font-body:"Montserrat","Segoe UI",sans-serif;
  --shadow:0 12px 34px rgba(74,27,38,.08);
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  color:var(--dark);
  background:var(--cream);
  font-family:var(--font-body);
  line-height:1.5;
}
button,input,select{font:inherit}
button{cursor:pointer}
a{color:inherit}
.hidden{display:none!important}

.top-bar{
  min-height:34px;
  padding:5px 24px;
  background:var(--burgundy);
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  font-size:12px;
}
.top-bar-left,.top-bar-right{display:flex;align-items:center;gap:16px}
.top-bar a{text-decoration:none;color:#fff}
.top-bar a:hover{opacity:.88}
.facebook-link{
  width:20px;height:20px;border-radius:50%;
  display:grid;place-items:center;
  background:#fff;color:var(--burgundy)!important;
  font-family:Arial,sans-serif;font-weight:700
}
.top-bar-right .btn-book-top{
  color:#fff!important;
  background:var(--orange);
  border-radius:4px;
  padding:4px 14px;
  font-size:12px;
  font-weight:600;
}
.top-bar-right .btn-book-top.active{box-shadow:inset 0 0 0 1px rgba(255,255,255,.28)}

.main-header{
  z-index:100;
  background:#fff;
  border-bottom:1px solid #eee;
  align-items:center;
  gap:24px;
  padding:10px 24px;
  display:flex;
  position:sticky;
  top:0;
}
.main-header .logo{display:flex;align-items:center;flex:0 0 auto}
.main-header .logo img{height:60px;width:auto;display:block}
.main-nav{
  letter-spacing:.5px;
  flex-wrap:wrap;
  align-items:center;
  justify-content:flex-end;
  gap:4px;
  margin-left:auto;
  font-size:12px;
  font-weight:500;
  display:flex;
}
.main-nav a{
  text-decoration:none;
  color:#555;
  padding:5px 3px;
  transition:color .18s;
}
.main-nav a:hover{color:var(--burgundy)}
.main-nav .sep{color:#ccc;font-weight:400;user-select:none}

.page-banner{
  background:
    linear-gradient(90deg,rgba(107,39,55,.94),rgba(74,27,38,.91)),
    url('https://ananya.ro/images/hero1.jpg') center/cover;
  color:#fff;
  border-bottom:4px solid var(--gold);
}
.page-banner-inner{
  width:min(1180px,calc(100% - 40px));
  margin:0 auto;
  padding:52px 0 48px;
}
.eyebrow,.step-kicker,.selection-label{
  display:block;
  text-transform:uppercase;
  letter-spacing:.12em;
  font-size:11px;
  font-weight:700;
}
.eyebrow{color:#f2e5ca;margin-bottom:8px}
.page-banner h1{
  font-family:var(--font-display);
  font-size:clamp(34px,5vw,54px);
  line-height:1.05;
  margin:0 0 10px;
  font-weight:600;
}
.page-banner p{margin:0;max-width:650px;color:#f4edf0;font-size:15px}

.page-shell{
  width:min(1180px,calc(100% - 32px));
  margin:34px auto 60px;
}

.booking-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:12px;
  box-shadow:var(--shadow);
  overflow:hidden;
  min-height:610px;
}

.progress{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  background:#fff;
  border-bottom:1px solid var(--line);
}
.progress-step{
  appearance:none;
  border:0;
  background:transparent;
  color:#888;
  padding:16px 10px;
  display:flex;
  justify-content:center;
  align-items:center;
  gap:8px;
  font-size:12px;
  font-weight:600;
}
.progress-step span{
  width:26px;height:26px;border-radius:50%;
  display:grid;place-items:center;
  background:#fff;
  border:1px solid #d9d0c7;
  color:#888;
  font-size:11px;
}
.progress-step.active{color:var(--burgundy)}
.progress-step.active span{background:var(--burgundy);border-color:var(--burgundy);color:#fff}
.progress-step.done{color:var(--burgundy)}
.progress-step.done span{background:#f2e9ec;border-color:#e6cfd5;color:var(--burgundy)}

.selection-bar{
  margin:22px 32px 0;
  padding:15px 18px;
  border:1px solid var(--gold-light);
  border-left:4px solid var(--gold);
  border-radius:9px;
  background:#fcfaf6;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
}
.selection-copy{min-width:0}
.selection-label{color:#8a6f3c;margin-bottom:2px}
.selection-copy strong{
  display:block;
  color:var(--burgundy);
  font-family:var(--font-display);
  font-size:20px;
  line-height:1.25;
}
.selection-meta{display:block;color:#777;font-size:12px;margin-top:3px}
.change-service-btn{
  flex:0 0 auto;
  border:1px solid var(--gold);
  background:#fff;
  color:var(--burgundy);
  border-radius:5px;
  padding:8px 12px;
  font-size:11px;
  font-weight:700;
}
.change-service-btn:hover{background:#f8f2e8}

.step{display:none;padding:32px}
.step.active{display:block;animation:fade .2s ease}
@keyframes fade{from{opacity:.45;transform:translateY(3px)}to{opacity:1;transform:none}}

.section-heading{
  display:flex;
  align-items:end;
  justify-content:space-between;
  gap:18px;
  margin-bottom:24px;
}
.step-kicker{color:var(--burgundy);margin-bottom:3px}
.section-heading h2,.success-step h2{
  font-family:var(--font-display);
  color:var(--burgundy);
  margin:0;
  font-size:31px;
  line-height:1.15;
  font-weight:600;
}
.search-wrap{width:min(360px,100%)}

input,select{
  width:100%;
  border:1px solid #d8d0c8;
  background:#fff;
  color:var(--dark);
  padding:12px 13px;
  border-radius:6px;
  outline:none;
  transition:.18s;
}
input:focus,select:focus{
  border-color:var(--burgundy);
  box-shadow:0 0 0 3px rgba(107,39,55,.1);
}

.service-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:14px}
.service-card{
  text-align:left;
  border:1px solid var(--line);
  background:#fff;
  border-radius:9px;
  padding:18px;
  min-height:160px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  transition:.18s;
}
.service-card:hover{border-color:var(--gold);box-shadow:0 8px 18px rgba(74,27,38,.07);transform:translateY(-1px)}
.service-card.selected{border-color:var(--burgundy);box-shadow:0 0 0 1px var(--burgundy)}
.service-name{
  font-family:var(--font-display);
  color:var(--burgundy);
  font-size:19px;
  font-weight:600;
  line-height:1.25;
}
.service-desc{
  margin:8px 0 14px;
  color:#777;
  font-size:12px;
  line-height:1.5;
  display:-webkit-box;
  -webkit-line-clamp:2;
  -webkit-box-orient:vertical;
  overflow:hidden;
}
.service-meta{display:flex;justify-content:space-between;gap:10px;color:#777;font-size:12px}
.price{font-weight:700;color:var(--burgundy)}

.field{display:grid;gap:6px;margin-bottom:18px}
.field label,.slots-heading{font-size:12px;font-weight:700;color:#555}
#locationWrap{max-width:520px}

.provider-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:14px}
.provider-card{
  border:1px solid var(--line);
  background:#fff;
  border-radius:9px;
  padding:17px;
  text-align:left;
  display:flex;
  gap:12px;
  align-items:center;
  min-height:82px;
  transition:.18s;
}
.provider-card:hover{border-color:var(--gold)}
.provider-card.selected{border-color:var(--burgundy);box-shadow:0 0 0 1px var(--burgundy)}
.avatar{
  width:46px;height:46px;border-radius:50%;
  display:grid;place-items:center;flex:0 0 auto;
  background:#f4ecee;color:var(--burgundy);
  font-weight:700;font-size:14px;
}
.provider-card strong{display:block;color:var(--burgundy)}
.provider-card small{display:block;color:#888;margin-top:2px;font-size:11px}
.any-provider{background:#fcfaf6}

.date-time-layout{
  display:grid;
  grid-template-columns:minmax(300px,380px) 1fr;
  gap:30px;
  align-items:start;
}
.calendar-card{
  border:1px solid var(--line);
  background:#fff;
  border-radius:9px;
  padding:16px;
}
.calendar-header{
  display:grid;
  grid-template-columns:38px 1fr 38px;
  align-items:center;
  gap:8px;
  margin-bottom:14px;
}
.calendar-header strong{
  text-align:center;
  text-transform:capitalize;
  font-family:var(--font-display);
  color:var(--burgundy);
  font-size:18px;
}
.calendar-nav{
  width:38px;height:38px;
  border:1px solid var(--line);
  background:#fff;
  border-radius:5px;
  color:var(--burgundy);
  font-size:22px;
  line-height:1;
}
.calendar-nav:hover:not(:disabled){border-color:var(--gold);background:#fcfaf6}
.calendar-nav:disabled{opacity:.35;cursor:not-allowed}
.calendar-weekdays,.calendar-grid{display:grid;grid-template-columns:repeat(7,1fr);gap:6px}
.calendar-weekdays{margin-bottom:7px}
.calendar-weekdays span{text-align:center;color:#999;font-size:10px;font-weight:700;text-transform:uppercase}
.calendar-day,.calendar-spacer{aspect-ratio:1;min-width:0}
.calendar-day{
  border:1px solid transparent;
  border-radius:6px;
  background:#faf8f5;
  color:var(--burgundy);
  font-weight:600;
  transition:.15s;
}
.calendar-day.available{background:#fff;border-color:#eadfd5}
.calendar-day.available:hover{background:var(--burgundy);border-color:var(--burgundy);color:#fff}
.calendar-day.selected{background:var(--burgundy);border-color:var(--burgundy);color:#fff}
.calendar-day.unavailable{background:#f1efed;color:#bbb;text-decoration:line-through;cursor:not-allowed}
.calendar-day.loading-day{background:#f6f3ef;color:#d3cec9;cursor:wait;animation:calendarPulse 1s ease-in-out infinite alternate}
@keyframes calendarPulse{to{opacity:.45}}
.calendar-legend{display:flex;align-items:center;gap:7px;margin-top:12px;color:#888;font-size:10px;line-height:1.35}
.legend-dot{width:11px;height:11px;border-radius:3px;background:#f1efed;border:1px solid #e2dfda;flex:0 0 auto}

.slot-grid{display:grid;grid-template-columns:repeat(5,minmax(70px,1fr));gap:9px;margin-top:10px}
.slot{
  border:1px solid var(--line);
  background:#fff;
  border-radius:6px;
  padding:10px 8px;
  font-weight:600;
  color:var(--burgundy);
}
.slot:hover,.slot.selected{background:var(--burgundy);border-color:var(--burgundy);color:#fff}

.nav-row{display:flex;justify-content:space-between;gap:12px;margin-top:30px}
.btn{
  border:0;
  border-radius:5px;
  padding:11px 16px;
  font-weight:700;
  text-decoration:none;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  min-height:43px;
  font-size:12px;
}
.btn.primary{background:var(--burgundy);color:#fff}
.btn.primary:hover{background:var(--burgundy-dark)}
.btn.ghost{background:#f0ebe5;color:var(--burgundy)}
.btn.ghost:hover{background:#e7dfd7}
.btn:disabled{opacity:.4;cursor:not-allowed}

.contact-form{display:grid;grid-template-columns:1fr 1fr;gap:0 16px}
.contact-form .field:first-child{grid-column:1/-1}
.contact-form .consent,.contact-form .privacy-note,.contact-form .nav-row{grid-column:1/-1}
.consent{display:flex;align-items:flex-start;gap:9px;font-size:12px;margin:7px 0}
.consent input{width:auto;margin-top:3px}
.privacy-note{font-size:11px;color:#888;line-height:1.5;margin:4px 0 0}

.summary-box{
  background:#fcfaf6;
  border:1px solid var(--gold-light);
  border-radius:8px;
  padding:15px 17px;
  margin-bottom:22px;
  display:grid;
  gap:7px;
}
.summary-row{display:flex;justify-content:space-between;gap:18px;font-size:12px}
.summary-row span:first-child{color:#888}
.summary-row strong{color:var(--burgundy)}

.success-step{text-align:center;padding:64px 28px}
.success-step h2{font-size:34px;margin:16px 0 8px}
.success-step p{color:#777;margin:0 auto 22px;max-width:520px}
.success-step .summary-box{max-width:560px;margin:0 auto 26px;text-align:left}
.success-icon{
  margin:auto;width:64px;height:64px;border-radius:50%;
  display:grid;place-items:center;
  background:#f2e8eb;color:var(--burgundy);
  font-size:28px;font-weight:700;
  border:1px solid #e4ccd3;
}

.error-box,.fallback-box{margin:0 32px 28px;border-radius:7px;padding:13px 15px}
.error-box{background:#fff0f1;border:1px solid #efc8cf;color:#8a263b}
.fallback-box{background:#fffaf1;border:1px solid #ead7b3;display:flex;align-items:center;gap:14px;flex-wrap:wrap}
.fallback-box span{color:#73695f;flex:1 1 320px}
.muted{color:#888;font-size:12px}

.skeleton-grid{pointer-events:none}
.skeleton-card{
  height:160px;border-radius:9px;
  background:linear-gradient(100deg,#f0ebe5 20%,#faf8f5 40%,#f0ebe5 60%);
  background-size:220% 100%;
  animation:shimmer 1.2s linear infinite;
}
@keyframes shimmer{to{background-position-x:-220%}}
.loading::after{content:"";width:14px;height:14px;border:2px solid currentColor;border-top-color:transparent;border-radius:50%;animation:spin .7s linear infinite}
@keyframes spin{to{transform:rotate(360deg)}}

.site-footer{
  background:var(--burgundy-dark);
  color:#f6eff1;
  text-align:center;
  padding:48px 24px 34px;
  font-size:12px;
}
.site-footer blockquote{
  margin:0 0 6px;
  font-family:var(--font-display);
  font-size:24px;
  color:#fff;
}
.site-footer p{margin:5px 0;color:#e3d5d9}
.site-footer .footer-cta{
  font-family:var(--font-display);
  font-size:22px;
  color:var(--gold);
  margin:24px 0 3px;
}
.footer-ro{font-style:italic}
.footer-links{display:flex;justify-content:center;gap:18px;margin:18px 0 14px}
.footer-links a,.footer-legal a{color:#fff;text-decoration:none}
.footer-links a:hover,.footer-legal a:hover{text-decoration:underline}
.footer-info{margin-top:14px}
.footer-legal{margin-top:14px;color:#d3c5ca;display:flex;justify-content:center;gap:8px;flex-wrap:wrap}

@media(max-width:980px){
  .main-header{flex-direction:column;padding:8px 12px}
  .main-header .logo img{height:56px}
  .main-nav{justify-content:center;margin-left:0;font-size:10px}
  .page-banner-inner{padding:42px 0 40px}
  .service-grid,.provider-grid{grid-template-columns:1fr 1fr}
}

@media(max-width:768px){
  .top-bar{flex-direction:column;gap:4px;padding:5px 12px}
  .top-bar-left,.top-bar-right{gap:10px}
  .main-nav .sep{display:none}
  .main-nav{gap:4px 10px}
  .page-shell{width:min(100% - 18px,1180px);margin-top:20px}
  .booking-card{border-radius:8px}
  .progress-step{font-size:0}
  .progress-step span{font-size:11px}
  .selection-bar{margin:16px 18px 0;align-items:flex-start}
  .step{padding:24px 18px}
  .section-heading{align-items:stretch;flex-direction:column}
  .search-wrap{width:100%}
  .date-time-layout{grid-template-columns:1fr}
  .calendar-card{max-width:430px}
  .slot-grid{grid-template-columns:repeat(4,1fr)}
}

@media(max-width:520px){
  .main-header .logo img{height:50px}
  .main-nav{font-size:9px;line-height:1.25}
  .page-banner-inner{width:min(100% - 28px,1180px);padding:32px 0}
  .page-banner h1{font-size:34px}
  .service-grid,.provider-grid{grid-template-columns:1fr}
  .slot-grid{grid-template-columns:repeat(3,1fr)}
  .contact-form{grid-template-columns:1fr}
  .contact-form .field:first-child,.contact-form .consent,.contact-form .privacy-note,.contact-form .nav-row{grid-column:auto}
  .selection-bar{flex-direction:column}
  .change-service-btn{width:100%}
  .nav-row{position:sticky;bottom:8px;background:rgba(255,255,255,.94);padding:8px 0;margin-top:20px;z-index:5}
  .site-footer blockquote{font-size:20px}
}
