:root{
  --bg:#fbfaf8;
  --cream:#f5f0ea;
  --cream2:#f0e8df;
  --ink:#090909;
  --muted:#6e6259;
  --brown:#927762;
  --line:#ddd3c8;
  --white:#fff;
  --shadow:0 18px 45px rgba(45,34,25,.08);
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  background:var(--bg);
  color:var(--ink);
  font-family:'Inter','Prompt',Arial,sans-serif;
}
.page{position:relative;overflow:hidden;background:linear-gradient(90deg,#fff 0%,#faf7f3 52%,#f1e8df 100%)}
.topbar{
  height:82px;
  display:grid;
  grid-template-columns:190px 1fr auto;
  align-items:center;
  gap:28px;
  padding:0 34px;
  position:relative;
  z-index:20;
}
.logo-wrap{display:flex;align-items:center;text-decoration:none}
.logo-img{width:142px;height:auto;display:block}
.main-nav{display:flex;align-items:center;justify-content:center;gap:31px}
.main-nav a{
  text-decoration:none;
  color:#0d0d0d;
  font-size:12px;
  font-weight:800;
  letter-spacing:.02em;
  padding:31px 0 8px;
  position:relative;
}
.main-nav a.active:after{
  content:"";
  position:absolute;
  left:0;right:0;bottom:0;
  height:2px;background:#111;
}
.top-actions{display:flex;align-items:center;gap:18px}
.social{
  width:22px;height:22px;display:grid;place-items:center;
  text-decoration:none;color:#111;font-weight:900;font-size:19px;
}
.social.line{
  width:25px;height:25px;border-radius:50%;background:#090909;color:#fff;font-size:7px;font-weight:900;
}
.book-top{
  text-decoration:none;color:#fff;background:#8f735f;
  padding:14px 26px;border-radius:6px;
  font-size:12px;font-weight:800;letter-spacing:.02em;
}

.hero{
  min-height:625px;
  display:grid;
  grid-template-columns:88px minmax(390px,480px) 1fr;
  align-items:center;
  position:relative;
  padding:0 0 0 0;
}
.side-social{
  height:540px;
  display:flex;flex-direction:column;align-items:center;
  justify-content:flex-start;gap:14px;
  padding-top:68px;
  color:#111;
}
.side-line{width:1px;height:142px;background:#c7b8aa;margin-bottom:14px}
.side-line.short{height:48px;margin:10px 0 0}
.side-social a{
  width:31px;height:31px;border:1px solid #dfd5ca;border-radius:50%;
  display:grid;place-items:center;color:#111;text-decoration:none;font-size:13px;font-weight:800;background:#fff7;
}
.side-social a:nth-of-type(3){font-size:6px;background:#111;color:#fff}
.side-social span{
  writing-mode:vertical-rl;
  transform:rotate(180deg);
  font-size:10px;font-weight:800;letter-spacing:.12em;
  margin-top:0;
}
.side-social b{font-size:28px;font-weight:200;color:#ad9b8b;margin-top:4px}

.hero-copy{
  align-self:start;
  padding-top:93px;
  z-index:2;
}
.script-title{
  font-family:'Parisienne',cursive;
  color:#9b806a;
  font-size:31px;
  margin:0 0 18px 0;
  line-height:1;
}
.hero-title-row{display:flex;align-items:flex-start;gap:23px}
.hero h1{
  margin:0;
  font-family:'Inter',Arial,sans-serif;
  letter-spacing:-.045em;
  line-height:.83;
}
.hero h1 span{
  display:block;
  font-size:76px;
  font-weight:900;
}
.hero h1 em{
  display:block;
  font-size:72px;
  font-style:normal;
  font-weight:900;
  color:transparent;
  -webkit-text-stroke:1.6px #111;
  text-stroke:1.6px #111;
  letter-spacing:-.055em;
}
.studio-text{
  font-size:12px;
  font-weight:800;
  line-height:1.35;
  margin-top:35px;
}
.hero-copy h2{
  margin:31px 0 13px;
  font-family:'Prompt',sans-serif;
  font-size:26px;
  letter-spacing:-.03em;
  font-weight:800;
}
.hero-copy p{
  margin:0;
  font-family:'Prompt',sans-serif;
  font-size:16px;
  line-height:1.78;
  font-weight:400;
}
.hero-buttons{display:flex;gap:24px;margin-top:31px}
.btn{
  height:52px;
  min-width:136px;
  display:inline-flex;align-items:center;justify-content:center;
  text-decoration:none;border-radius:4px;
  font-size:13px;font-weight:800;
}
.btn-dark{background:#8f735f;color:#fff;border:1px solid #8f735f}
.btn-dark span{font-size:17px;margin-left:9px}
.btn-outline{background:#fff9;color:#111;border:1px solid #b8a99b}

.hero-image{
  height:625px;
  align-self:stretch;
  overflow:hidden;
  position:relative;
}
.hero-image:before{
  content:"";
  position:absolute;inset:0;
  background:linear-gradient(90deg,#fbfaf8 0%,rgba(251,250,248,.72) 7%,rgba(251,250,248,0) 24%);
  z-index:1;
  pointer-events:none;
}
.hero-image img{
  width:100%;height:100%;object-fit:cover;object-position:center top;
  display:block;
}

.features{
  position:relative;
  z-index:4;
  margin-top:-48px;
  padding:0 70px;
}
.feature-card{
  max-width:1080px;
  margin:0 auto;
  min-height:126px;
  background:#fff;
  border-radius:24px;
  box-shadow:var(--shadow);
  display:grid;
  grid-template-columns:repeat(4,1fr);
  align-items:center;
  padding:20px 28px;
}
.feature-item{
  display:flex;align-items:center;gap:19px;
  padding:0 32px;
  min-height:78px;
  border-right:1px solid #e5ddd4;
}
.feature-item.last{border-right:0}
.feature-icon{
  width:58px;height:58px;border-radius:50%;background:#f6f2ee;
  display:grid;place-items:center;font-size:31px;font-weight:300;
}
.feature-item b{display:block;font-family:'Prompt';font-size:14px;font-weight:800;margin-bottom:4px}
.feature-item small{display:block;font-family:'Prompt';font-size:12px;color:#333}

.works-section{
  padding:54px 54px 62px;
  background:#fff;
  text-align:center;
}
.works-head span{
  color:#8f8176;
  font-size:11px;font-weight:800;letter-spacing:.08em;
}
.works-head h2{
  font-family:'Prompt';font-size:28px;font-weight:800;margin:7px 0 7px;
}
.works-head i{
  display:block;width:48px;height:2px;background:#111;margin:0 auto 31px;
}
.slider-shell{position:relative;max-width:1068px;margin:0 auto}
.works-slider{
  display:flex;gap:16px;overflow-x:auto;scroll-snap-type:x mandatory;
  padding:0 16px 4px;
  scrollbar-width:none;
}
.works-slider::-webkit-scrollbar{display:none}
.work-card{
  flex:0 0 153px;height:222px;
  margin:0;
  border-radius:6px;overflow:hidden;
  scroll-snap-align:center;
  background:#eee;
}
.work-card img{width:100%;height:100%;object-fit:cover;display:block}
.slide-arrow{
  position:absolute;top:50%;transform:translateY(-50%);
  width:38px;height:38px;border:1px solid #d5c8bc;border-radius:50%;
  background:#fff;color:#9a8069;font-size:31px;font-weight:300;z-index:3;cursor:pointer;
}
.slide-arrow.left{left:-35px}
.slide-arrow.right{right:-35px}
.dots{display:flex;justify-content:center;gap:15px;margin:28px 0 20px}
.dots span{width:8px;height:8px;border:1px solid #b9a697;border-radius:50%}
.dots span.active{background:#8e7662;border-color:#8e7662}
.all-work{
  display:inline-flex;align-items:center;justify-content:center;
  min-width:145px;height:43px;border:1px solid #b9a697;border-radius:5px;
  text-decoration:none;color:#111;font-family:'Prompt';font-size:13px;font-weight:500;background:#fff;
}

.about-contact{
  display:grid;
  grid-template-columns:1fr 330px 1fr;
  gap:52px;
  padding:70px 70px 72px;
  background:linear-gradient(90deg,#f7f1eb 0%,#fff 45%,#f6efe7 100%);
  align-items:center;
}
.about-box small,.contact-box small{
  font-size:11px;font-weight:800;color:#665950;letter-spacing:.04em;
}
.about-box h2,.contact-box h2{
  margin:14px 0 29px;
  font-family:'Inter';font-size:22px;font-weight:900;letter-spacing:-.02em;
  display:flex;align-items:center;gap:15px;
}
.about-box h2 i,.contact-box h2 i{width:47px;height:1px;background:#a99585;display:inline-block}
.about-box p{
  font-family:'Prompt';font-size:13px;line-height:1.9;margin:0 0 29px;
}
.mini-btn{
  display:inline-flex;align-items:center;justify-content:center;gap:13px;
  min-width:126px;height:43px;border:1px solid #b9a697;border-radius:5px;
  color:#111;text-decoration:none;font-family:'Prompt';font-size:13px;background:#fff8;
}
.studio-photo{border-radius:5px;overflow:hidden;height:264px;background:#eee}
.studio-photo img{width:100%;height:100%;object-fit:cover;display:block}
.contact-box ul{padding:0;margin:0;list-style:none;display:grid;gap:15px}
.contact-box li{display:grid;grid-template-columns:28px 1fr;gap:13px;align-items:start;font-size:13px;line-height:1.45}
.contact-box li b{font-size:18px;line-height:1;text-align:center}
.contact-box li:nth-child(3) b{font-size:9px;background:#111;color:#fff;border-radius:50%;width:22px;height:22px;display:grid;place-items:center}

.footer{
  background:#fff;
  border-top:1px solid #eee5dc;
  display:grid;
  grid-template-columns:235px 1fr 1fr 1.2fr;
  gap:54px;
  padding:44px 70px 26px;
}
.footer-logo img{width:139px}
.footer-logo p{font-size:12px;margin:11px 0 17px}
.footer-social{display:flex;gap:14px}
.footer-social a{
  width:31px;height:31px;border:1px solid #d5c8bc;border-radius:50%;
  display:grid;place-items:center;font-size:13px;font-weight:800;
}
.footer-social a:nth-child(3){font-size:6px;background:#111;color:#fff}
.footer h3{font-size:13px;font-weight:900;margin:0 0 17px}
.footer-links div{
  display:grid;grid-template-columns:1fr 1fr;gap:10px 50px;
  font-size:12px;font-weight:500;
}
.footer-hours p{display:flex;justify-content:space-between;max-width:205px;font-size:12px;margin:0 0 14px}
.footer-book p{font-family:'Prompt';font-size:13px;margin:0 0 17px}
.footer-book-actions{display:flex;gap:14px}
.book-bottom{
  height:50px;min-width:126px;background:#8f735f;color:#fff;text-decoration:none;
  display:grid;place-items:center;border-radius:5px;font-size:13px;font-weight:800;
}
.line-bottom{
  width:54px;height:50px;border:1px solid #b9a697;background:#fff;border-radius:5px;font-size:9px;font-weight:800;
}
.copyright{text-align:center;background:#fff;color:#9b928b;font-size:12px;padding:0 0 24px}
.to-top{
  position:fixed;right:28px;bottom:24px;width:37px;height:37px;border:1px solid #b9a697;border-radius:50%;
  display:grid;place-items:center;text-decoration:none;color:#111;background:#fff;z-index:30;
}

/* Chat widget style */
.nn-chat-btn{position:fixed;right:76px;bottom:24px;z-index:40;background:#111;color:#fff;border:0;border-radius:999px;padding:12px 18px;font-weight:800;box-shadow:0 12px 30px rgba(0,0,0,.16);cursor:pointer}
.nn-chat-panel{position:fixed;right:28px;bottom:75px;width:360px;max-width:calc(100vw - 28px);height:520px;max-height:calc(100vh - 110px);z-index:40;background:#fff;border-radius:22px;box-shadow:0 25px 80px rgba(0,0,0,.22);overflow:hidden;display:none;font-family:'Prompt',Arial,sans-serif}
.nn-chat-panel.open{display:grid;grid-template-rows:auto auto 1fr auto}
.nn-chat-head{background:#111;color:#fff;padding:16px 18px}
.nn-chat-head b{display:block}.nn-chat-head span{font-size:12px;opacity:.78}
.nn-chat-start{padding:12px;background:#fff;border-bottom:1px solid #eee;display:grid;gap:8px}
.nn-chat-start input{border:1px solid #ddd;border-radius:12px;padding:11px;font:inherit}
.nn-chat-messages{padding:15px;background:#faf7f3;overflow:auto}
.nn-msg{max-width:84%;padding:10px 12px;border-radius:15px;margin:8px 0;background:#fff;box-shadow:0 6px 18px rgba(0,0,0,.04);white-space:pre-wrap;font-size:14px}
.nn-msg.me{background:#111;color:#fff;margin-left:auto}
.nn-chat-form{padding:12px;background:#fff;border-top:1px solid #eee;display:flex;gap:8px}
.nn-chat-form input{flex:1;border:1px solid #ddd;border-radius:14px;padding:12px;outline:none;font:inherit}
.nn-chat-form button{background:#111;color:#fff;border:0;border-radius:14px;padding:0 14px;font-weight:800}
.nn-hidden{display:none}

@media(max-width:900px){
  .topbar{grid-template-columns:1fr auto;height:70px;padding:0 18px}
  .logo-img{width:115px}
  .main-nav{display:none}
  .top-actions .social{display:none}
  .book-top{padding:11px 16px}
  .hero{grid-template-columns:1fr;min-height:auto;padding:20px 22px 0}
  .side-social{display:none}
  .hero-copy{padding-top:28px}
  .script-title{font-size:27px}
  .hero h1 span{font-size:64px}
  .hero h1 em{font-size:60px}
  .hero-image{height:360px;margin:20px -22px 0}
  .features{padding:0 18px;margin-top:-20px}
  .feature-card{grid-template-columns:1fr;border-radius:18px;padding:10px}
  .feature-item{border-right:0;border-bottom:1px solid #eee;padding:14px}.feature-item.last{border-bottom:0}
  .works-section{padding:44px 18px}.work-card{flex-basis:150px}
  .slide-arrow{display:none}
  .about-contact{grid-template-columns:1fr;padding:42px 22px;gap:30px}
  .footer{grid-template-columns:1fr;padding:36px 22px;gap:30px}
  .to-top{right:16px}
}


/* Language switch */
.lang-toggle{
  min-width:38px;
  height:32px;
  border:1px solid #d8c8b9;
  border-radius:999px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  color:#111;
  background:#fffaf5;
  font-size:11px;
  font-weight:800;
}
.lang-toggle:hover{
  background:#f1e6dc;
}
@media(max-width:900px){
  .lang-toggle{height:30px;min-width:34px;font-size:10px}
}


/* Fixed TH/EN language switch */
.lang-switch{
  display:inline-flex;
  align-items:center;
  gap:4px;
  padding:3px;
  border:1px solid #d8c8b9;
  border-radius:999px;
  background:#fffaf5;
}
.lang-switch .lang-toggle{
  min-width:32px;
  height:26px;
  border:0;
  border-radius:999px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  color:#6d5b4e;
  background:transparent;
  font-size:11px;
  font-weight:800;
}
.lang-switch .lang-toggle.active{
  background:#8f735f;
  color:#fff;
}
.lang-switch .lang-toggle:hover{
  background:#f1e6dc;
  color:#111;
}
.lang-switch .lang-toggle.active:hover{
  background:#8f735f;
  color:#fff;
}
@media(max-width:900px){
  .lang-switch .lang-toggle{height:24px;min-width:28px;font-size:10px}
}


/* Premium Google Calendar Booking */
.premium-booking{
  padding:72px 70px;
  background:linear-gradient(135deg,#fbfaf8 0%,#f3ebe2 100%);
  border-top:1px solid #eee5dc;
}
.booking-shell{
  max-width:1180px;
  margin:0 auto;
  display:grid;
  grid-template-columns:0.88fr 1.12fr;
  gap:28px;
  align-items:start;
}
.booking-copy,
.calendar-panel,
.booking-form-premium{
  background:rgba(255,255,255,.84);
  border:1px solid #e5d9cf;
  border-radius:24px;
  box-shadow:0 22px 65px rgba(43,31,22,.08);
}
.booking-copy{
  padding:34px;
  min-height:310px;
}
.booking-copy small{
  color:#8f735f;
  font-size:11px;
  font-weight:900;
  letter-spacing:.08em;
}
.booking-copy h2{
  margin:12px 0 12px;
  font-family:'Prompt',sans-serif;
  font-size:34px;
  line-height:1.1;
}
.booking-copy p{
  margin:0;
  color:#6d625a;
  line-height:1.8;
  font-size:14px;
}
.booking-legend{
  display:flex;
  gap:16px;
  flex-wrap:wrap;
  margin:24px 0;
}
.booking-legend span{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-size:13px;
  color:#40352d;
}
.booking-legend .dot{
  width:11px;
  height:11px;
  border-radius:50%;
  display:inline-block;
}
.booking-legend .free{background:#dcefe2;border:1px solid #92c69d}
.booking-legend .busy{background:#1c1714}
.booking-note{
  padding:18px;
  border-radius:18px;
  background:#f8f2ec;
  border:1px solid #e8ddd2;
  display:grid;
  gap:5px;
}
.booking-note b{font-size:14px}
.booking-note span{font-size:13px;color:#6e6259;line-height:1.6}

.calendar-panel{
  padding:24px;
  grid-row:span 2;
}
.calendar-toolbar{
  display:grid;
  grid-template-columns:42px 1fr 42px;
  align-items:center;
  gap:12px;
  margin-bottom:18px;
}
.calendar-toolbar strong{
  text-align:center;
  font-size:20px;
  letter-spacing:-.02em;
}
.calendar-toolbar button{
  width:42px;
  height:42px;
  border-radius:50%;
  border:1px solid #d8c8b9;
  background:#fff;
  color:#8f735f;
  font-size:28px;
  line-height:1;
  cursor:pointer;
}
.calendar-toolbar button:hover{background:#f5ece4}
.calendar-weekdays{
  display:grid;
  grid-template-columns:repeat(7,1fr);
  gap:8px;
  margin-bottom:8px;
}
.calendar-weekdays span{
  text-align:center;
  font-size:11px;
  color:#8a7b6d;
  font-weight:800;
}
.calendar-grid{
  display:grid;
  grid-template-columns:repeat(7,1fr);
  gap:8px;
}
.cal-day{
  min-height:76px;
  border:1px solid #e5d9cf;
  border-radius:17px;
  background:#fffaf6;
  padding:9px;
  cursor:pointer;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  transition:.18s ease;
}
.cal-day:hover{
  transform:translateY(-2px);
  box-shadow:0 12px 28px rgba(43,31,22,.08);
}
.cal-day.other{
  opacity:.36;
  pointer-events:none;
}
.cal-day.disabled{
  opacity:.45;
  cursor:not-allowed;
  pointer-events:none;
}
.cal-day.selected{
  border-color:#8f735f;
  box-shadow:0 0 0 4px rgba(143,115,95,.12);
}
.cal-day.busy{
  background:#1c1714;
  color:#fff;
  border-color:#1c1714;
}
.cal-day.partial{
  background:linear-gradient(135deg,#fffaf6 0%,#fffaf6 62%,#f1e1d2 100%);
}
.cal-day .num{
  font-weight:900;
  font-size:15px;
}
.cal-day .status{
  font-size:10px;
  color:#8a7b6d;
}
.cal-day.busy .status{color:#d8cec5}
.slot-panel{
  margin-top:22px;
  border-top:1px solid #eee0d3;
  padding-top:18px;
}
.slot-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  margin-bottom:12px;
}
.slot-head b{font-size:15px}
.slot-head small{color:#8f735f;font-size:12px}
.time-slots{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  min-height:48px;
}
.time-slot{
  border:1px solid #d8c8b9;
  background:#fff;
  border-radius:999px;
  padding:9px 14px;
  font-weight:800;
  font-size:13px;
  cursor:pointer;
}
.time-slot:hover{background:#f4ece5}
.time-slot.selected{
  background:#8f735f;
  color:#fff;
  border-color:#8f735f;
}
.time-slot.busy{
  opacity:.45;
  text-decoration:line-through;
  cursor:not-allowed;
}
.booking-form-premium{
  padding:24px;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
}
.booking-form-premium label{
  display:grid;
  gap:7px;
  font-size:12px;
  font-weight:800;
  color:#6d625a;
}
.booking-form-premium label.wide{
  grid-column:1/-1;
}
.booking-form-premium input,
.booking-form-premium textarea{
  width:100%;
  border:1px solid #d8c8b9;
  background:#fffaf6;
  border-radius:15px;
  padding:13px 14px;
  font:inherit;
  outline:none;
}
.booking-form-premium input:focus,
.booking-form-premium textarea:focus{
  border-color:#8f735f;
  box-shadow:0 0 0 4px rgba(143,115,95,.10);
}
.booking-form-premium button{
  grid-column:1/-1;
  border:0;
  border-radius:15px;
  background:#8f735f;
  color:#fff;
  padding:15px;
  font-weight:900;
  cursor:pointer;
}
.booking-form-premium button:hover{background:#7d6451}
.booking-status{
  grid-column:1/-1;
  margin:0;
  font-size:13px;
  color:#6d625a;
}
.booking-status.ok{color:#18713b}
.booking-status.err{color:#b42318}

@media(max-width:900px){
  .premium-booking{padding:44px 18px}
  .booking-shell{grid-template-columns:1fr}
  .calendar-panel{grid-row:auto}
  .calendar-grid{gap:6px}
  .cal-day{min-height:62px;border-radius:14px;padding:7px}
  .booking-form-premium{grid-template-columns:1fr}
}


/* Premium Booking UI v2 */
.premium-booking{
  position:relative;
  overflow:hidden;
  padding:92px 70px;
  background:
    radial-gradient(circle at 8% 8%, rgba(255,255,255,.92) 0 18%, transparent 34%),
    radial-gradient(circle at 88% 18%, rgba(189,162,139,.22) 0 18%, transparent 38%),
    linear-gradient(135deg,#fbfaf8 0%,#f3ebe2 100%) !important;
}
.premium-booking:before{
  content:"";
  position:absolute;
  inset:28px;
  border:1px solid rgba(143,115,95,.13);
  border-radius:34px;
  pointer-events:none;
}
.premium-booking:after{
  content:"NEAT NEEDLE";
  position:absolute;
  right:55px;
  top:28px;
  font-size:82px;
  font-weight:900;
  letter-spacing:-.08em;
  color:rgba(143,115,95,.055);
  pointer-events:none;
}
.booking-shell{
  position:relative;
  z-index:2;
  max-width:1240px !important;
  grid-template-columns:410px 1fr !important;
  gap:34px !important;
}
.booking-copy,
.calendar-panel,
.booking-form-premium{
  background:rgba(255,255,255,.74) !important;
  border:1px solid rgba(223,207,193,.88) !important;
  border-radius:32px !important;
  box-shadow:
    0 30px 90px rgba(43,31,22,.10),
    inset 0 1px 0 rgba(255,255,255,.92) !important;
  backdrop-filter:blur(18px);
}
.booking-copy{
  min-height:352px !important;
  padding:40px 38px !important;
}
.booking-copy small{
  display:inline-flex;
  padding:7px 12px;
  border-radius:999px;
  background:#f2e8df;
  border:1px solid #dfcfc1;
  color:#8a6a55 !important;
}
.booking-copy h2{
  margin-top:20px !important;
  font-size:42px !important;
  letter-spacing:-.05em;
}
.booking-copy p{
  font-size:15px !important;
}
.booking-legend{
  gap:20px !important;
}
.booking-legend span{
  padding:9px 12px;
  background:#fffaf6;
  border:1px solid #eadfd5;
  border-radius:999px;
}
.booking-note{
  margin-top:22px;
  padding:22px !important;
  border-radius:24px !important;
  background:
    linear-gradient(135deg,rgba(255,250,246,.96),rgba(239,228,218,.78)) !important;
}
.booking-note b{
  font-size:16px !important;
}
.booking-form-premium{
  padding:28px !important;
  gap:16px !important;
}
.booking-form-premium label{
  color:#4b3d33 !important;
}
.booking-form-premium input,
.booking-form-premium textarea{
  background:rgba(255,250,246,.88) !important;
  border-radius:18px !important;
  min-height:52px;
  transition:.18s ease;
}
.booking-form-premium textarea{
  min-height:120px;
}
.booking-form-premium input:focus,
.booking-form-premium textarea:focus{
  background:#fff !important;
}
.booking-form-premium button{
  min-height:56px;
  border-radius:18px !important;
  background:linear-gradient(135deg,#9b7d68,#7b604f) !important;
  box-shadow:0 16px 34px rgba(123,96,79,.22);
  transition:.2s ease;
}
.booking-form-premium button:hover{
  transform:translateY(-2px);
  box-shadow:0 20px 42px rgba(123,96,79,.28);
}
.calendar-panel{
  padding:30px !important;
}
.calendar-toolbar{
  grid-template-columns:48px 1fr 48px !important;
  margin-bottom:24px !important;
}
.calendar-toolbar strong{
  font-size:25px !important;
  font-weight:900;
  letter-spacing:-.04em;
}
.calendar-toolbar button{
  width:48px !important;
  height:48px !important;
  background:#fffaf6 !important;
  border:1px solid #d9c6b7 !important;
  box-shadow:0 10px 28px rgba(43,31,22,.06);
}
.calendar-weekdays{
  background:#f8f1ea;
  border:1px solid #eadfd5;
  border-radius:18px;
  padding:10px 8px;
}
.calendar-weekdays span{
  color:#8a6a55 !important;
  font-size:12px !important;
}
.calendar-grid{
  gap:10px !important;
  margin-top:10px;
}
.cal-day{
  min-height:86px !important;
  border-radius:22px !important;
  background:
    linear-gradient(145deg,rgba(255,250,246,.96),rgba(255,255,255,.78)) !important;
  box-shadow:0 10px 24px rgba(43,31,22,.045);
  position:relative;
  overflow:hidden;
}
.cal-day:before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(135deg,rgba(255,255,255,.48),transparent 58%);
  pointer-events:none;
}
.cal-day .num{
  position:relative;
  z-index:1;
  font-size:18px !important;
}
.cal-day .status{
  position:relative;
  z-index:1;
  display:inline-flex;
  align-self:flex-start;
  padding:5px 8px;
  border-radius:999px;
  background:rgba(143,115,95,.08);
  color:#8a6a55 !important;
  font-size:10px !important;
}
.cal-day.busy{
  background:linear-gradient(145deg,#211915,#0e0b09) !important;
  color:#fff !important;
}
.cal-day.busy .status{
  background:rgba(255,255,255,.12);
  color:#efe4dc !important;
}
.cal-day.partial{
  background:
    linear-gradient(145deg,#fffaf6 0%,#fffaf6 52%,#ead8c9 100%) !important;
}
.cal-day.selected{
  border-color:#8f735f !important;
  box-shadow:
    0 0 0 4px rgba(143,115,95,.14),
    0 18px 34px rgba(43,31,22,.12) !important;
}
.slot-panel{
  margin-top:28px !important;
  padding-top:24px !important;
}
.slot-head{
  padding:14px 16px;
  border-radius:18px;
  background:#f8f1ea;
  border:1px solid #eadfd5;
}
.slot-head b{
  font-size:16px !important;
}
.time-slots{
  padding-top:14px;
  gap:12px !important;
}
.time-slot{
  min-width:74px;
  height:44px;
  border-radius:16px !important;
  background:#fffaf6 !important;
  box-shadow:0 10px 22px rgba(43,31,22,.045);
  transition:.18s ease;
}
.time-slot:hover{
  transform:translateY(-2px);
}
.time-slot.selected{
  background:linear-gradient(135deg,#9b7d68,#7b604f) !important;
  color:#fff !important;
  box-shadow:0 14px 28px rgba(123,96,79,.22);
}
.time-slot.busy{
  background:#f1ebe5 !important;
  color:#c2b4a8 !important;
  box-shadow:none !important;
}
.calendar-loading,
.calendar-error,
.no-slot{
  grid-column:1/-1;
  padding:22px;
  border-radius:18px;
  background:#fff7f0;
  color:#8a6a55;
  border:1px solid #eadfd5;
}
@media(max-width:900px){
  .premium-booking{
    padding:54px 18px !important;
  }
  .premium-booking:before,
  .premium-booking:after{
    display:none;
  }
  .booking-shell{
    grid-template-columns:1fr !important;
  }
  .booking-copy{
    min-height:auto !important;
    padding:28px !important;
  }
  .booking-copy h2{
    font-size:34px !important;
  }
  .calendar-panel{
    padding:18px !important;
    border-radius:26px !important;
  }
  .calendar-weekdays{
    padding:8px 5px;
    gap:4px;
  }
  .calendar-grid{
    gap:6px !important;
  }
  .cal-day{
    min-height:66px !important;
    border-radius:16px !important;
    padding:7px !important;
  }
  .cal-day .num{
    font-size:14px !important;
  }
  .cal-day .status{
    font-size:9px !important;
    padding:3px 6px;
  }
  .time-slot{
    min-width:66px;
    height:40px;
    font-size:12px !important;
  }
}


/* Standalone Premium Booking Page */
.booking-page-body{
  min-height:100vh;
  background:
    radial-gradient(circle at 8% 12%, rgba(255,255,255,.95) 0 16%, transparent 34%),
    radial-gradient(circle at 92% 5%, rgba(143,115,95,.20) 0 18%, transparent 36%),
    linear-gradient(135deg,#fbfaf8 0%,#efe4da 100%);
}
.booking-nav{
  max-width:1240px;
  margin:0 auto;
  height:88px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:0 22px;
}
.booking-logo img{
  width:145px;
  display:block;
}
.booking-nav-actions{
  display:flex;
  align-items:center;
  gap:14px;
}
.booking-home-link{
  text-decoration:none;
  color:#332820;
  border:1px solid #dfcfc1;
  background:rgba(255,255,255,.72);
  padding:10px 15px;
  border-radius:999px;
  font-weight:800;
  font-size:13px;
}
.booking-standalone{
  max-width:1240px;
  margin:0 auto;
  padding:22px 22px 80px;
}
.booking-hero-premium{
  position:relative;
  overflow:hidden;
  border:1px solid rgba(223,207,193,.88);
  border-radius:36px;
  padding:48px;
  min-height:250px;
  display:grid;
  grid-template-columns:1fr 380px;
  gap:30px;
  align-items:end;
  background:
    linear-gradient(90deg,rgba(255,255,255,.92),rgba(255,250,246,.72)),
    radial-gradient(circle at 78% 8%, rgba(143,115,95,.20), transparent 36%);
  box-shadow:0 34px 95px rgba(43,31,22,.10);
}
.booking-hero-premium:after{
  content:"BOOKING";
  position:absolute;
  right:34px;
  top:10px;
  font-size:100px;
  font-weight:900;
  letter-spacing:-.08em;
  color:rgba(143,115,95,.055);
}
.booking-hero-premium small{
  display:inline-flex;
  padding:8px 13px;
  border-radius:999px;
  background:#f2e8df;
  border:1px solid #dfcfc1;
  color:#8a6a55;
  font-weight:900;
  font-size:11px;
  letter-spacing:.08em;
}
.booking-hero-premium h1{
  margin:20px 0 12px;
  font-family:'Prompt',sans-serif;
  font-size:58px;
  line-height:1;
  letter-spacing:-.06em;
}
.booking-hero-premium p{
  max-width:620px;
  margin:0;
  color:#6d625a;
  font-size:17px;
  line-height:1.8;
}
.booking-hero-card{
  position:relative;
  z-index:2;
  background:rgba(255,255,255,.78);
  border:1px solid #e5d9cf;
  border-radius:26px;
  padding:24px;
  box-shadow:0 22px 65px rgba(43,31,22,.08);
  display:grid;
  gap:8px;
}
.booking-hero-card b{
  font-size:17px;
}
.booking-hero-card span{
  color:#6d625a;
  line-height:1.7;
}
.booking-flow-card{
  margin-top:28px;
  display:grid;
  grid-template-columns:260px 1fr;
  gap:28px;
  align-items:start;
}
.booking-side{
  position:sticky;
  top:18px;
  background:rgba(255,255,255,.74);
  border:1px solid rgba(223,207,193,.88);
  border-radius:32px;
  padding:24px;
  box-shadow:0 30px 90px rgba(43,31,22,.09), inset 0 1px 0 rgba(255,255,255,.92);
  backdrop-filter:blur(18px);
}
.booking-step{
  display:flex;
  gap:13px;
  align-items:center;
  padding:14px 0;
  border-bottom:1px solid #eadfd5;
}
.booking-step span{
  width:42px;
  height:42px;
  border-radius:16px;
  display:grid;
  place-items:center;
  background:#f6eee6;
  color:#8f735f;
  font-weight:900;
}
.booking-step.active span{
  background:linear-gradient(135deg,#9b7d68,#7b604f);
  color:#fff;
}
.booking-step b{
  font-size:14px;
}
.booking-legend.premium{
  margin:24px 0;
  display:grid;
  gap:10px;
}
.booking-legend.premium span{
  width:100%;
  justify-content:flex-start;
}
.booking-contact-mini{
  margin-top:22px;
  padding:18px;
  border-radius:22px;
  background:#f8f1ea;
  border:1px solid #eadfd5;
  display:grid;
  gap:12px;
}
.booking-contact-mini span{
  font-size:13px;
  color:#6d625a;
}
.booking-contact-mini button{
  border:0;
  border-radius:14px;
  background:#1c1714;
  color:#fff;
  padding:12px;
  font-weight:900;
  cursor:pointer;
}
.calendar-panel.standalone{
  grid-column:2;
  min-height:680px;
}
.standalone-form{
  grid-column:2;
}
@media(max-width:960px){
  .booking-nav{
    height:auto;
    padding:18px;
  }
  .booking-logo img{width:120px}
  .booking-hero-premium{
    grid-template-columns:1fr;
    padding:30px;
    border-radius:28px;
  }
  .booking-hero-premium:after{display:none}
  .booking-hero-premium h1{font-size:42px}
  .booking-flow-card{
    grid-template-columns:1fr;
  }
  .booking-side,
  .calendar-panel.standalone,
  .standalone-form{
    grid-column:auto;
  }
  .booking-side{
    position:relative;
    top:auto;
  }
}
