/* ============================================================
   Lukman Batik Workshop — styles
   Palette & type reproduced from the Claude Design source.
   ============================================================ */

:root {
  --bg:        #EDECE9;
  --ink:       #252019;   /* "BRIGHT" — primary dark */
  --ink-2:     #0E0B09;   /* near-black */
  --text:      #2A241D;
  --muted:     #6a635a;
  --muted-2:   #8a8175;
  --faint:     #a89e90;
  --line:      #CBC5B8;
  --hairline:  #F0EAE0;
  --card:      #ffffff;
  --cream:     #DEDAD0;
  --hover:     #E4E1DA;
  --accent:    #C25E12;   /* burnt orange */
  --accent-2:  #E5871F;
  --accent-3:  #E07A1C;
  --gold:      #FFC65C;
  --sans: 'Hanken Grotesk', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  background-color: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: -.01em;
}

a { color: #7C7768; text-decoration: none; }
a:hover { color: #3A342A; }

input, textarea, button { font-family: inherit; }
input:focus, textarea:focus { border-color: var(--ink) !important; }
::placeholder { color: #b8afa4; }

img { max-width: 100%; }

.wrap { max-width: 1160px; margin: 0 auto; padding: 0 18px; }
.wrap-narrow { max-width: 1120px; margin: 0 auto; }
.hidden { display: none !important; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* ---------- animations ---------- */
@keyframes lbw-rise { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }
@keyframes lbw-marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- shared button transitions ---------- */
button, a { transition: filter .18s ease, transform .18s ease, box-shadow .18s ease, background-color .18s ease; }
button:hover, a[href]:hover { filter: brightness(.93); transform: translateY(-3px); box-shadow: 0 12px 26px -10px rgba(74,54,38,.4); }
button:active, a[href]:active { filter: brightness(.85); transform: translateY(-1px); }
button:disabled { filter: none !important; transform: none !important; box-shadow: none !important; cursor: not-allowed; }
/* opt certain UI chrome out of the lift effect */
.no-lift:hover, .no-lift:active { transform: none; box-shadow: none; filter: none; }

/* ============ TOP BAR ============ */
.topbar {
  position: sticky; top: 0; z-index: 50;
  background: #0E0B09; /* match hero (section 1) */
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.topbar-logo img { filter: brightness(0) invert(1); } /* white logo on the dark bar */
.topbar .wrap { display: flex; align-items: center; gap: 6px; }
.topbar-logo { display: flex; align-items: center; margin-right: auto; padding: 8px 0; }
.topbar-logo img { height: 51px; width: auto; display: block; }
.lang-toggle {
  display: flex; align-items: center; gap: 2px; background: #fff;
  border: 1px solid var(--line); border-radius: 999px; padding: 3px; margin-right: 10px;
}
.lang-btn {
  background: transparent; color: var(--muted); border: none; cursor: pointer;
  font: inherit; font-weight: 800; font-size: 12px; padding: 5px 11px; border-radius: 999px;
}
.lang-btn.active { background: var(--ink-2); color: #fff; }
.tab-btn {
  background: transparent; border: none; cursor: pointer; font: inherit;
  font-weight: 800; font-size: 14px; padding: 16px 10px 13px; color: var(--muted-2);
  border-bottom: 3px solid transparent; transition: color .15s ease;
}
.tab-btn.active { color: var(--ink-2); border-bottom-color: var(--ink); }
.portal-link {
  display: inline-flex; align-items: center; gap: 7px; color: var(--ink-2); font-weight: 800;
  font-size: 14px; padding: 9px 16px; border: 1px solid var(--line); border-radius: 999px; background: #fff;
}
.portal-link:hover { color: var(--ink-2); background: var(--hover); }

/* ============ HERO ============ */
.hero { position: relative; padding: 80px 18px 76px; background: var(--ink-2); overflow: hidden; }
.hero-inner { max-width: 1160px; margin: 0 auto; display: flex; flex-wrap: wrap; gap: 28px; align-items: center; }
.hero-copy { flex: 1 1 300px; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px; padding: 6px 13px;
  border: 1px solid rgba(233,223,212,.4); border-radius: 999px; font-weight: 600;
  font-size: 11px; letter-spacing: .2em; color: var(--accent-3); margin-bottom: 18px; text-transform: uppercase;
}
.hero h1 {
  font-weight: 600; letter-spacing: -.02em; line-height: 1.04; margin: 0;
  font-size: clamp(32px, 5vw, 60px); color: #EDE6DC; text-wrap: balance;
}
.hero h1 .accent { font-style: italic; color: var(--accent-2); }
.hero-sub {
  max-width: 44ch; margin: 16px 0 0; font-size: clamp(14px, 1.5vw, 16px);
  line-height: 1.6; color: rgba(233,223,212,.72); text-wrap: pretty;
}
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 30px; }

.btn {
  display: inline-flex; align-items: center; gap: 9px; font-weight: 600;
  border: none; cursor: pointer; border-radius: 4px;
}
.btn-primary { background: var(--accent); color: #fff; font-size: 15px; padding: 15px 30px; }
.btn-ghost-light {
  background: transparent; color: #E9DFD4; font-size: 15px; padding: 15px 28px;
  border: 1px solid rgba(233,223,212,.5); border-radius: 4px;
}
.btn-pill { border-radius: 999px; }

.rev-summary { margin-top: 24px; }
.rev-summary .rev-eyebrow { font-weight: 600; font-size: 11px; letter-spacing: .14em; color: #C9BCAD; margin-bottom: 8px; }
.rev-summary .rev-row { display: flex; align-items: center; gap: 12px; }
.rev-rating { font-weight: 800; font-size: 24px; line-height: 1; color: #EDE6DC; }
.rev-stars { display: flex; gap: 2px; }
.rev-basedon { font-size: 13px; color: rgba(233,223,212,.6); margin-top: 2px; }

/* ---------- carousels ---------- */
.hero-gallery { flex: 1.5 1 340px; }
.carousel {
  position: relative; border-radius: 18px; overflow: hidden;
  box-shadow: 0 24px 50px -20px rgba(74,54,38,.4);
}
.carousel.kids-carousel { border-radius: 16px; box-shadow: 0 14px 34px -16px rgba(74,54,38,.3); }
.carousel-track { display: flex; transition: transform .7s cubic-bezier(.4,0,.2,1); }
.carousel-slide { flex: 0 0 100%; aspect-ratio: 4/5; }
.carousel-arrow {
  position: absolute; top: 50%; transform: translateY(-50%); width: 44px; height: 44px;
  border-radius: 50%; border: none; background: rgba(255,255,255,.9); color: var(--ink);
  display: grid; place-items: center; cursor: pointer; z-index: 2;
}
.carousel-arrow.prev { left: 12px; }
.carousel-arrow.next { right: 12px; }
.dots { display: flex; justify-content: center; gap: 8px; margin-top: 14px; }
.dot {
  width: 8px; height: 8px; border-radius: 999px; background: #E4DACB;
  border: none; padding: 0; cursor: pointer; transition: all .3s ease;
}
.dot.active { width: 22px; background: var(--ink); }

/* ---------- image placeholder panels ---------- */
.img-slot {
  width: 100%; height: 100%; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 10px; text-align: center;
  background:
    radial-gradient(120% 120% at 30% 20%, rgba(226,138,54,.14), transparent 60%),
    linear-gradient(135deg, #3A342A 0%, #252019 60%, #1a150f 100%);
  color: #E9DFD4; padding: 18px;
}
.img-slot.on-light {
  background:
    radial-gradient(120% 120% at 30% 20%, rgba(226,138,54,.16), transparent 60%),
    linear-gradient(135deg, #E4DFD5 0%, var(--cream) 60%, #cfc9bc 100%);
  color: #5E5949;
}
.img-slot svg { opacity: .55; }
.img-slot .slot-label { font-weight: 700; font-size: 13px; letter-spacing: .02em; }
.img-slot .slot-tag { font-size: 11px; letter-spacing: .18em; text-transform: uppercase; opacity: .6; }
.img-slot img,
.slot-photo { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ============ TESTIMONIALS MARQUEE ============ */
/* Dark background continues from the hero (section 1) under the scrolling reviews */
.reviews-section { padding: 8px 18px 56px; overflow: hidden; background: #0E0B09; }
.marquee-clip { position: relative; margin: 0 -18px; }
.marquee-track {
  display: flex; align-items: flex-start; gap: 22px; width: max-content;
  padding: 6px 18px; animation: lbw-marquee 55s linear infinite;
}
.review-card {
  flex: 0 0 340px; width: 340px; border-radius: 16px; padding: 26px; background: #fff;
  display: flex; flex-direction: column; gap: 13px; box-shadow: 0 14px 36px -16px rgba(74,54,38,.28);
}
.review-head { display: flex; align-items: center; gap: 11px; }
.review-avatar {
  width: 42px; height: 42px; border-radius: 50%; color: #fff; font-weight: 800;
  font-size: 17px; display: grid; place-items: center; flex-shrink: 0;
}
.review-name { font-weight: 800; font-size: 15px; }
.review-when { font-size: 12px; color: var(--muted-2); }
.review-text { margin: 0; font-size: 14px; line-height: 1.55; color: #332f29; }
.review-toggle {
  align-self: flex-start; background: none; border: none; padding: 0; cursor: pointer;
  font: inherit; font-weight: 800; font-size: 13px; color: #7C7768;
}
.reviews-cta { text-align: center; margin-top: 38px; }

/* ============ SECTION HEADERS ============ */
.section { padding: clamp(74px, 9vw, 120px) 18px; }
.section-head { text-align: center; margin-bottom: 32px; }
.section-eyebrow { font-weight: 600; font-size: 11px; letter-spacing: .2em; color: var(--accent); margin-bottom: 12px; text-transform: uppercase; }
.section-head h2 { font-weight: 600; letter-spacing: -.015em; font-size: clamp(34px, 5vw, 60px); margin: 0; }

/* ============ PACKAGES ============ */
.pkg-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px; padding: 8px 0 4px;
}
.lbw-pkg-card {
  border-radius: 16px; overflow: hidden; background: #fff; display: flex; flex-direction: column;
  box-shadow: 0 12px 30px -14px rgba(74,54,38,.24);
  transition: transform .2s cubic-bezier(.2,0,0,1), box-shadow .2s cubic-bezier(.2,0,0,1);
}
.lbw-pkg-card.featured { border: 2px solid var(--ink); box-shadow: 0 18px 42px -16px rgba(240,112,13,.4); position: relative; }
@media (hover: hover) {
  .lbw-pkg-card:hover { transform: translateY(-4px); box-shadow: 0 18px 40px -16px rgba(74,54,38,.34); }
}
.pkg-badge {
  position: absolute; top: 14px; left: 14px; z-index: 2; background: var(--accent); color: #fff;
  font-weight: 600; font-size: 11px; letter-spacing: .12em; padding: 7px 14px; border-radius: 999px;
}
.scrub {
  position: relative; width: 100%; aspect-ratio: 4/3; background: var(--cream); overflow: hidden;
}
.scrub-frame { position: absolute; inset: 0; opacity: 0; transition: opacity .18s ease; pointer-events: none; }
.scrub-frame.active { opacity: 1; pointer-events: auto; }
.scrub-dots { position: absolute; left: 0; right: 0; bottom: 10px; display: flex; justify-content: center; gap: 5px; pointer-events: none; }
.scrub-dot { width: 7px; height: 7px; border-radius: 999px; background: rgba(255,255,255,.5); transition: all .18s ease; }
.scrub-dot.active { width: 18px; background: rgba(255,255,255,.95); }
.pkg-body { padding: 22px; display: flex; flex-direction: column; flex: 1; }
.pkg-body h3 { font-weight: 800; font-size: 22px; margin: 0 0 8px; font-family: var(--sans); letter-spacing: 0; }
.pkg-desc { margin: 0; color: #6a635a; font-size: 14px; line-height: 1.5; }
.pkg-note { display: inline-flex; align-items: center; gap: 6px; color: #5E5949; font-style: italic; font-size: 12.5px; font-weight: 600; margin-top: 16px; }
.pkg-price { display: flex; align-items: baseline; gap: 6px; margin-top: 6px; }
.pkg-price .amount { font-weight: 900; font-size: 26px; color: #7C7768; }
.pkg-price .per { color: var(--muted-2); font-weight: 600; font-size: 13px; }
.pkg-spacer { flex: 1; min-height: 18px; }
.pkg-book {
  display: flex; align-items: center; justify-content: center; gap: 8px; font-weight: 800; font-size: 15px;
  padding: 13px; border-radius: 999px; cursor: pointer;
}
.pkg-book.outline { background: transparent; color: var(--ink); border: 2px solid var(--ink); }
.pkg-book.solid { background: var(--accent); color: #fff; border: none; font-weight: 600; }
.pkg-includes { display: flex; align-items: center; gap: 9px; margin-top: 14px; color: #6a635a; font-size: 14px; font-weight: 600; }

/* Corporate / large-group inquiry card */
.groups-card {
  display: flex; align-items: center; gap: 24px; flex-wrap: wrap;
  margin-top: 40px; background: var(--ink); color: #fff;
  border-radius: 20px; padding: clamp(26px, 4vw, 44px);
  box-shadow: 0 24px 50px -24px rgba(74,54,38,.5);
}
.groups-ico { flex-shrink: 0; width: 64px; height: 64px; border-radius: 16px; background: rgba(255,255,255,.08); display: grid; place-items: center; }
.groups-text { flex: 1 1 300px; }
.groups-title { font-family: var(--sans); font-weight: 800; letter-spacing: -.01em; font-size: clamp(24px, 3.2vw, 36px); margin: 6px 0 8px; color: #fff; }
.groups-desc { margin: 0; color: rgba(233,223,212,.8); font-size: 16px; line-height: 1.55; max-width: 58ch; }
.groups-btn { flex-shrink: 0; font-size: 15px; padding: 15px 28px; }

/* ============ KIDS / FAMILY ============ */
.kids-grid {
  max-width: 1120px; margin: 0 auto; display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 36px; align-items: center;
}
.kids-benefits { display: flex; flex-direction: column; gap: 14px; }
.benefit { display: flex; align-items: flex-start; gap: 12px; }
.benefit .check {
  flex-shrink: 0; width: 26px; height: 26px; border-radius: 50%; background: var(--ink);
  display: grid; place-items: center; margin-top: 1px;
}
.benefit span.text { font-size: 16px; line-height: 1.5; color: #332f29; font-weight: 600; }
.kids-heading { font-weight: 600; letter-spacing: -.015em; font-size: clamp(30px, 4.4vw, 50px); margin: 0 0 20px; }

/* ============ FAQ ============ */
.faq-section { background: #fff; }
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  border-radius: 14px; background: #fff; overflow: hidden;
  box-shadow: 0 8px 24px -14px rgba(74,54,38,.22); transition: box-shadow .18s ease;
}
.faq-q {
  display: flex; align-items: center; gap: 14px; width: 100%; background: transparent;
  border: none; cursor: pointer; font: inherit; text-align: left; padding: 24px 26px;
  font-weight: 800; font-size: 17px; color: var(--ink); transition: background .18s ease;
}
.faq-q:hover { background: var(--hover) !important; }
.faq-q .icon { flex-shrink: 0; transition: transform .2s ease; color: var(--ink); }
.faq-item.open .faq-q .icon { transform: rotate(45deg); }
.faq-a { padding: 2px 26px 26px; font-size: 15px; line-height: 1.6; color: #6a635a; }

/* ============ BOOKING CTA BAND ============ */
.cta-band { position: relative; padding: 72px 18px 80px; background: var(--ink); overflow: hidden; }
.cta-band .cta-bg { position: absolute; inset: 0; z-index: 0; }
.cta-band .cta-bg-img { width: 100%; height: 100%; object-fit: cover; display: block; }
.cta-band .cta-overlay { position: absolute; inset: 0; z-index: 1; background: rgba(59,42,30,.72); pointer-events: none; }
.cta-inner { position: relative; z-index: 2; max-width: 900px; margin: 0 auto; text-align: center; }
.cta-inner h2 { font-weight: 600; letter-spacing: -.015em; font-size: clamp(38px, 5.5vw, 66px); color: #fff; margin: 0 0 14px; text-wrap: balance; }
.cta-inner p { color: #c9c2b8; font-size: 17px; line-height: 1.55; max-width: 50ch; margin: 0 auto 30px; }
.cta-big {
  display: inline-flex; align-items: center; gap: 12px; background: var(--accent); color: #fff;
  font-weight: 600; font-size: clamp(18px, 2.6vw, 24px); padding: 20px 42px; border: none;
  border-radius: 999px; cursor: pointer;
}

/* ============ LOCATION ============ */
.loc-section { background: transparent; border-top: 1px solid var(--line); }
.loc-grid { max-width: 1120px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; align-items: stretch; }
.loc-details { display: flex; flex-direction: column; gap: 20px; }
.loc-row { display: flex; align-items: flex-start; gap: 13px; }
.loc-ico { flex-shrink: 0; display: grid; place-items: center; padding-top: 2px; }
.loc-label { font-weight: 700; font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--faint); }
.loc-value { font-size: 17px; color: var(--ink); font-weight: 700; margin-top: 3px; }
a.loc-value { display: inline-block; }
.loc-directions {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px; align-self: flex-start;
  background: var(--accent); color: #fff; font-weight: 600; font-size: 15px; padding: 14px 28px; border-radius: 999px;
}
.map-box {
  position: relative; min-height: 320px; border-radius: 16px; overflow: hidden;
  border: 2px solid #3A342A; box-shadow: 0 16px 40px -18px rgba(198,86,10,.45);
}
.map-box iframe {
  width: 100%; height: 100%; min-height: 320px; border: 0; display: block;
  filter: sepia(.45) saturate(1.35) hue-rotate(-18deg) contrast(1.02);
}
.map-box .map-tint { position: absolute; inset: 0; background: #3A342A; mix-blend-mode: multiply; opacity: .14; pointer-events: none; }
.map-box .map-ring { position: absolute; inset: 0; box-shadow: inset 0 0 0 1px rgba(178,74,30,.35); pointer-events: none; }

/* ============ FOOTER ============ */
.site-footer { background: var(--ink); padding: 0 24px 40px; text-align: center; border-top: 1px solid rgba(255,255,255,.08); }
.site-footer .inner { max-width: 900px; margin: 0 auto; padding-top: 32px; display: flex; flex-direction: column; align-items: center; gap: 12px; }
.site-footer .brand { font-weight: 800; font-size: 22px; color: #fff; }
.site-footer .loc { display: flex; align-items: center; gap: 8px; color: #c9c2b8; font-size: 14px; }

/* ============ DASHBOARD — LOGIN ============ */
.login-wrap { max-width: 420px; margin: 0 auto; padding: 64px 20px; }
.login-card { background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 36px 30px; }
.login-icon { width: 52px; height: 52px; border-radius: 14px; background: var(--ink); display: grid; place-items: center; margin-bottom: 18px; }
.login-card h2 { font-weight: 900; font-size: 24px; margin: 0 0 4px; letter-spacing: -.02em; font-family: var(--sans); }
.login-card .sub { margin: 0 0 24px; color: #6a635a; font-size: 14px; }
.field-label { display: block; font-weight: 800; font-size: 13px; margin-bottom: 8px; }
.login-input {
  width: 100%; padding: 13px 15px; border: 2px solid var(--line); border-radius: 12px;
  font-size: 15px; background: #fff; outline: none; margin-bottom: 12px;
}
.chip-row { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 18px; }
.name-chip {
  background: #fff; color: #4a443c; border: 1px solid var(--line); cursor: pointer; font: inherit;
  font-weight: 800; font-size: 13px; padding: 7px 13px; border-radius: 999px;
}
.name-chip.active { background: var(--ink); color: #fff; border-color: var(--ink); }
.login-submit {
  width: 100%; background: var(--ink); color: #fff; font-weight: 800; font-size: 16px;
  padding: 15px; border: none; border-radius: 12px; cursor: pointer;
}
.login-submit:disabled { background: #F0C89A; cursor: not-allowed; }

/* ============ DASHBOARD ============ */
.dash-header { background: #fff; border-bottom: 1px solid var(--line); }
.dash-header .wrap { padding: 20px 18px; display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.dash-welcome { margin-right: auto; }
.dash-welcome .hi { font-size: 13px; color: #6a635a; font-weight: 600; }
.dash-welcome .who { font-weight: 900; font-size: 22px; letter-spacing: -.01em; }
.dash-add {
  display: inline-flex; align-items: center; gap: 8px; background: var(--accent); color: #fff;
  font-weight: 600; font-size: 14px; padding: 12px 18px; border: none; border-radius: 999px; cursor: pointer;
}
.dash-logout {
  display: inline-flex; align-items: center; gap: 8px; background: #fff; color: var(--ink-2);
  font-weight: 800; font-size: 14px; padding: 11px 18px; border: 2px solid var(--line); border-radius: 999px; cursor: pointer;
}
.dash-body { max-width: 1160px; margin: 0 auto; padding: 26px 18px 64px; }
.filter-row { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin-bottom: 22px; }
.filter-btn {
  background: #fff; color: #4a443c; border: 1px solid var(--line); cursor: pointer; font: inherit;
  font-weight: 800; font-size: 14px; padding: 10px 16px; border-radius: 999px; transition: all .15s ease;
}
.filter-btn.active { background: var(--ink-2); color: #fff; border-color: var(--ink-2); }
.dash-cols { display: grid; grid-template-columns: minmax(0, 420px) minmax(0, 1fr); gap: 26px; align-items: start; }

/* calendar */
.cal-card { background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 20px; }
.cal-head { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.cal-month { font-weight: 900; font-size: 18px; letter-spacing: -.01em; margin-right: auto; text-transform: capitalize; }
.cal-nav {
  width: 38px; height: 38px; display: inline-flex; align-items: center; justify-content: center;
  background: #fff; border: 1px solid var(--line); border-radius: 10px; cursor: pointer; color: #4a443c;
}
.cal-nav:hover { background: var(--hover); }
.cal-weekdays, .cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 6px; }
.cal-weekdays { margin-bottom: 6px; }
.cal-weekday { text-align: center; font-weight: 800; font-size: 11px; color: var(--muted-2); padding: 4px 0; }
.cal-cell {
  position: relative; aspect-ratio: 1; display: flex; flex-direction: column; align-items: center;
  justify-content: center; gap: 4px; border: none; border-radius: 10px; font: inherit; font-weight: 800;
  font-size: 15px; background: transparent; color: #4a443c; cursor: pointer; transition: all .15s ease;
}
.cal-cell.empty { visibility: hidden; }
.cal-cell.booked { background: var(--cream); color: #5E5949; }
.cal-cell.today { box-shadow: inset 0 0 0 2px var(--ink-2); }
.cal-cell.selected { background: var(--ink); color: #fff; }
.cal-count { font-size: 10px; font-weight: 800; line-height: 1; padding: 2px 6px; border-radius: 999px; background: #7C7768; color: #fff; }
.cal-cell.selected .cal-count { background: rgba(255,255,255,.28); }
.cal-legend { display: flex; align-items: center; gap: 16px; margin-top: 18px; padding-top: 16px; border-top: 1px solid #F0F1F3; flex-wrap: wrap; }
.cal-legend .lg { display: flex; align-items: center; gap: 8px; }
.cal-legend .lg-count { min-width: 18px; height: 16px; padding: 0 5px; display: inline-flex; align-items: center; justify-content: center; border-radius: 5px; background: #7C7768; color: #fff; font-size: 10px; font-weight: 800; }
.cal-legend .lg-today { width: 16px; height: 16px; border-radius: 5px; box-shadow: inset 0 0 0 2px var(--ink-2); }
.cal-legend .lg-text { font-size: 12px; color: #6a635a; font-weight: 700; }

/* day sessions */
.day-head { display: flex; align-items: center; gap: 11px; margin-bottom: 14px; }
.day-title { font-weight: 900; font-size: 18px; letter-spacing: -.01em; }
.day-rule { flex: 1; height: 1px; background: var(--line); }
.day-count { font-size: 12px; color: var(--muted-2); font-weight: 700; }
.day-empty { background: #fff; border: 1px dashed var(--line); border-radius: 16px; text-align: center; padding: 54px 20px; color: var(--muted-2); }
.day-empty .big { font-weight: 800; font-size: 15px; color: #6a635a; }
.day-empty .small { font-size: 13px; margin-top: 4px; }
.day-list { display: flex; flex-direction: column; gap: 16px; }
.booking-row { padding: 22px 24px; background: #fff; border-radius: 16px; border: 1px solid var(--line); }
.booking-top { display: flex; align-items: flex-start; gap: 12px; }
.booking-time { font-weight: 900; font-size: 30px; letter-spacing: -.02em; line-height: 1.05; margin-right: auto; }
.pay-chip { font-weight: 800; font-size: 13px; padding: 6px 15px; border-radius: 999px; }
.pay-chip.paid { background: #DCFCE7; color: #15803D; }
.pay-chip.unpaid { background: var(--cream); color: #3A342A; }
.booking-client-row { display: flex; align-items: center; gap: 10px; margin-top: 12px; flex-wrap: wrap; }
.booking-client { font-weight: 900; font-size: 24px; letter-spacing: -.02em; }
.code-btn {
  display: inline-flex; align-items: center; gap: 7px; font-family: ui-monospace, 'SF Mono', Menlo, monospace;
  font-weight: 800; font-size: 14px; letter-spacing: .03em; color: #5E5949; background: var(--bg);
  padding: 6px 12px; border: none; border-radius: 9px; cursor: pointer;
}
.code-btn:hover { background: var(--cream); }
.booking-pkg { font-size: 15px; color: #6a635a; margin-top: 3px; }
.booking-bottom { display: flex; align-items: flex-end; gap: 16px; margin-top: 18px; flex-wrap: wrap; }
.booking-meta { margin-right: auto; display: flex; flex-direction: column; gap: 6px; }
.meta-line { display: flex; align-items: center; gap: 9px; font-size: 15px; color: #4a443c; }
.meta-line.suggest { font-size: 14px; color: #B45309; font-weight: 700; }
.meta-line.note { font-size: 15px; color: #6a635a; font-style: italic; }
.booking-actions { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.act-btn { display: inline-flex; align-items: center; gap: 7px; font-weight: 800; font-size: 15px; border-radius: 999px; cursor: pointer; white-space: nowrap; }
.act-drive { background: #fff; color: #1a73e8; padding: 12px 18px; border: 2px solid var(--line); }
.act-photo { background: #fff; color: var(--ink-2); padding: 12px 20px; border: 2px solid var(--line); }
.act-photo.sent { background: var(--cream); color: #5E5949; border-color: var(--cream); }
.act-cta { background: var(--ink); color: #fff; padding: 13px 26px; border: 2px solid #3A342A; }
.act-cta.mine { background: #fff; color: #3A342A; padding: 12px 24px; border: 2px solid var(--ink); }
.act-btn:disabled { background: var(--hover); color: var(--muted-2); border: 2px solid var(--hover); }
.act-wa { background: #25D366; color: #fff; border: none; padding: 12px 20px; }
.act-wa:hover { color: #fff; }
/* admin instructor assignment — batik-dye avatars */
.assign-block { margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--line); }
.assign-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.assign-label { font-weight: 800; font-size: 12px; letter-spacing: .06em; text-transform: uppercase; color: var(--muted-2); }
.assign-cap { font-weight: 800; font-size: 12px; color: var(--muted-2); background: var(--hover); border-radius: 999px; padding: 3px 11px; letter-spacing: .02em; transition: background .18s ease, color .18s ease; }
.assign-cap.full { background: var(--ink); color: #fff; }
.assign-avatars { display: flex; gap: 20px; }
.ava { display: flex; flex-direction: column; align-items: center; gap: 8px; background: none; border: none; padding: 0; cursor: pointer; font: inherit; width: 52px; }
.ava-circle { position: relative; width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center; font-weight: 800; font-size: 17px; color: var(--c); background: #fff; border: 2px solid var(--c); transition: transform .16s cubic-bezier(.2,0,0,1), box-shadow .16s ease, background .16s ease, color .16s ease; }
.ava:hover:not(.blocked) .ava-circle { transform: translateY(-3px); box-shadow: 0 10px 20px -8px var(--c); }
.ava:active:not(.blocked) .ava-circle { transform: translateY(-1px); }
.ava.on .ava-circle { background: var(--c); color: #fff; }
.ava-check { position: absolute; right: -3px; bottom: -3px; width: 18px; height: 18px; border-radius: 50%; background: var(--c); border: 2px solid #fff; display: grid; place-items: center; }
.ava-name { font-weight: 700; font-size: 12.5px; color: var(--muted); transition: color .16s ease; }
.ava.on .ava-name { color: var(--ink); }
.ava.blocked { opacity: .32; cursor: not-allowed; }
.ava:focus-visible .ava-circle { outline: 2px solid var(--ink); outline-offset: 2px; }

/* ============ MODALS ============ */
.modal-overlay {
  position: fixed; inset: 0; z-index: 200; background: rgba(20,18,16,.55);
  overflow-y: auto; padding: 20px; display: flex; align-items: flex-start; justify-content: center;
}
.modal-shell { position: relative; width: 100%; max-width: 760px; margin: auto; }
.modal-shell.narrow { max-width: 520px; }
.modal-close {
  position: absolute; top: 10px; right: 10px; z-index: 3; width: 40px; height: 40px;
  display: grid; place-items: center; background: var(--ink-2); color: #fff; border: none; border-radius: 50%; cursor: pointer;
}
.modal-card {
  background: var(--bg); border-radius: 24px; padding: clamp(20px, 4vw, 40px);
  animation: lbw-rise .35s cubic-bezier(.2,0,0,1) both; box-shadow: 0 40px 90px -30px rgba(30,20,12,.6);
}
.modal-card h2 { font-weight: 900; letter-spacing: -.02em; font-size: clamp(22px, 4vw, 34px); margin: 0 0 4px; font-family: var(--sans); }
.modal-sub { margin: 0 0 20px; color: #6a635a; font-size: 14px; }

/* stepper */
.stepper { display: flex; align-items: center; gap: 6px; margin-bottom: 24px; }
.step-dot { flex: 0 0 auto; width: 30px; height: 30px; border-radius: 50%; display: grid; place-items: center; font-weight: 800; font-size: 14px; background: var(--line); color: var(--muted-2); transition: all .2s ease; }
.step-dot.active { background: var(--ink); color: #fff; }
.step-label { flex: 1; min-width: 8px; font-weight: 800; font-size: 12px; color: #b3a89a; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.step-label.active { color: var(--ink-2); }
.step-bar { flex: 1 1 auto; height: 3px; border-radius: 999px; min-width: 10px; background: var(--line); transition: all .2s ease; }
.step-bar.done { background: var(--ink); }
.step-bar.last { flex: 0 0 0; min-width: 0; }

.notice { display: flex; gap: 12px; align-items: flex-start; background: var(--cream); border-radius: 14px; padding: 14px 16px; margin-bottom: 24px; }
.notice .txt { font-size: 14px; line-height: 1.5; color: #7a4d00; font-weight: 600; }

.form-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 16px; }
.form-block { margin-bottom: 20px; }
.form-input {
  width: 100%; padding: 13px 15px; border: none; border-radius: 12px; font-size: 15px;
  background: #fff; outline: none;
}
.form-input.with-icon { padding-left: 42px; }
.input-wrap { position: relative; }
.input-wrap svg.lead { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); pointer-events: none; }
textarea.form-input { resize: vertical; line-height: 1.5; }

.choice-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.choice-grid-auto { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 14px; }
.choice-card {
  display: flex; align-items: center; gap: 12px; padding: 15px 16px; border-radius: 14px;
  border: 2px solid var(--line); background: #fff; color: var(--ink-2); cursor: pointer; text-align: left;
  width: 100%; font: inherit; transition: all .18s cubic-bezier(.2,0,0,1);
}
.choice-card .col { display: flex; flex-direction: column; line-height: 1.25; }
.choice-card .t { font-weight: 800; font-size: 15px; }
.choice-card .d { font-size: 13px; opacity: .85; }
.choice-card.active { border-color: var(--ink); background: var(--ink); color: #fff; }
.choice-card.disabled { opacity: .45; cursor: not-allowed; pointer-events: none; }

.pkg-picker { display: grid; grid-template-columns: repeat(auto-fit, minmax(170px, 1fr)); gap: 14px; }
.wpkg-card { border: 2px solid transparent; background: #fff; border-radius: 14px; overflow: hidden; display: flex; flex-direction: column; text-align: left; }
.wpkg-card.active { border-color: var(--ink); }
.wpkg-card.disabled { opacity: .5; pointer-events: none; }
.wpkg-body { padding: 13px 15px; display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.wpkg-name { display: flex; flex-direction: column; line-height: 1.25; }
.wpkg-name .t { font-weight: 800; font-size: 15px; }
.wpkg-name .s { font-size: 13px; color: var(--muted-2); }
.qty { display: flex; align-items: center; gap: 2px; background: var(--cream); flex-shrink: 0; border-radius: 8px; }
.qty button { width: 34px; height: 34px; border: none; background: transparent; color: #3A342A; cursor: pointer; display: grid; place-items: center; font: inherit; }
.qty .n { min-width: 24px; text-align: center; font-weight: 900; font-size: 16px; }
.total-bar { margin-top: 14px; display: flex; align-items: center; justify-content: space-between; gap: 12px; background: var(--ink-2); color: #fff; padding: 13px 18px; border-radius: 4px; }
.total-bar .lbl { font-weight: 800; font-size: 14px; }
.total-bar .val { font-weight: 900; font-size: 18px; color: var(--gold); }

.summary { border-radius: 14px; overflow: hidden; margin-bottom: 22px; }
.summary-head { background: var(--ink-2); color: #fff; font-weight: 800; font-size: 14px; padding: 13px 18px; }
.summary-body { padding: 16px 18px; display: flex; flex-direction: column; gap: 10px; }
.summary-row { display: flex; justify-content: space-between; gap: 12px; font-size: 14px; }
.summary-row .k { color: #6a635a; }
.summary-row .v { font-weight: 700; text-align: right; }
.summary-rule { height: 1px; background: var(--line); margin: 4px 0; }
.summary-total { display: flex; justify-content: space-between; gap: 12px; align-items: baseline; }
.summary-total .k { font-weight: 800; font-size: 15px; }
.summary-total .v { font-weight: 900; font-size: 22px; color: #7C7768; }

.pay-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 12px; margin-bottom: 16px; }
.pay-card {
  display: flex; align-items: center; gap: 11px; padding: 14px 15px; border-radius: 14px;
  border: 2px solid var(--line); background: #fff; color: var(--ink-2); cursor: pointer; text-align: left;
  width: 100%; font: inherit; transition: all .18s cubic-bezier(.2,0,0,1);
}
.pay-card.active { border-color: var(--ink); background: var(--ink); color: #fff; }
.pay-card .emoji { font-size: 22px; line-height: 1; }
.pay-card .col { display: flex; flex-direction: column; line-height: 1.2; }
.pay-card .n { font-weight: 800; font-size: 14px; }
.pay-card .d { font-size: 12px; opacity: .8; }
.pay-detail { background: var(--cream); border-radius: 12px; padding: 15px 17px; margin-bottom: 22px; font-size: 14px; line-height: 1.55; color: #5c4a2e; white-space: pre-line; }

.review-rows { padding: 6px 18px; }
.review-line { display: flex; justify-content: space-between; gap: 14px; padding: 11px 0; border-bottom: 1px solid var(--hairline); font-size: 14px; }
.review-line .k { color: #6a635a; flex: 0 0 auto; }
.review-line .v { font-weight: 700; text-align: right; }
.review-total { display: flex; justify-content: space-between; gap: 14px; align-items: baseline; padding: 14px 0 12px; }
.review-total .k { font-weight: 800; font-size: 15px; }
.review-total .v { font-weight: 900; font-size: 22px; color: #7C7768; }
.review-hint { margin: 0 0 18px; font-size: 13px; color: var(--muted-2); line-height: 1.45; }

.success { text-align: center; padding: 32px 24px; background: #fff; border-radius: 20px; box-shadow: 0 20px 48px -22px rgba(74,54,38,.34); }
.success .badge { width: 76px; height: 76px; border-radius: 50%; background: #DCFCE7; display: grid; place-items: center; margin: 0 auto 18px; }
.success h3 { font-weight: 900; font-size: 27px; margin: 0 0 8px; font-family: var(--sans); }
.success p { margin: 0 auto 22px; max-width: 42ch; font-size: 15px; color: #6a635a; line-height: 1.55; }
.success .ref { display: flex; flex-direction: column; align-items: center; gap: 16px; background: var(--bg); border-radius: 20px; padding: 26px 22px; max-width: 340px; margin: 0 auto 24px; }
.success .ref .lbl { font-size: 11px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: var(--faint); }
.success .ref .code { font-weight: 900; font-size: clamp(34px, 9vw, 46px); letter-spacing: .06em; color: #5E5949; line-height: 1; }
.success .ref .qr { background: #fff; border-radius: 16px; padding: 14px; box-shadow: 0 8px 22px -12px rgba(74,54,38,.3); }
.success .ref .qr img { display: block; width: 180px; height: 180px; border-radius: 6px; }
.success .ref .scan { font-size: 12px; color: var(--muted-2); font-weight: 600; }
.success .done {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px; background: var(--accent);
  color: #fff; font-weight: 600; font-size: 16px; padding: 15px 34px; border: none; border-radius: 999px; cursor: pointer;
}

.pay-error { display: flex; align-items: flex-start; gap: 10px; background: #FDECEC; color: #B42318; font-weight: 700; font-size: 14px; line-height: 1.5; padding: 13px 15px; margin-bottom: 14px; border-radius: 12px; }
.confirm-btn {
  width: 100%; display: flex; align-items: center; justify-content: center; gap: 12px; background: var(--ink);
  color: #fff; font-weight: 900; font-size: clamp(17px, 2.4vw, 21px); padding: 19px; border: none; border-radius: 15px; cursor: pointer;
}
.pay-foot { text-align: center; margin: 12px 0 0; font-size: 12.5px; color: var(--muted-2); line-height: 1.4; }

.modal-nav { display: flex; gap: 12px; margin-top: 26px; }
.nav-back {
  flex: 0 0 auto; display: inline-flex; align-items: center; gap: 8px; background: #fff; color: var(--ink-2);
  font-weight: 800; font-size: 15px; padding: 15px 22px; border: none; border-radius: 14px; cursor: pointer;
}
.nav-back:hover { background: var(--hover); }
.nav-next {
  flex: 1 1 auto; display: inline-flex; align-items: center; justify-content: center; gap: 10px; background: var(--ink);
  color: #fff; font-weight: 900; font-size: 16px; padding: 15px 22px; border: none; border-radius: 14px; cursor: pointer;
}
.nav-next:disabled { background: #E7C9A3; }

/* photos modal */
.photo-title { display: flex; align-items: center; gap: 12px; margin-bottom: 6px; }
.photo-title .ico { width: 44px; height: 44px; border-radius: 12px; background: var(--ink); display: grid; place-items: center; flex-shrink: 0; }
.photo-title h2 { font-weight: 900; letter-spacing: -.02em; font-size: clamp(20px, 4vw, 26px); margin: 0; font-family: var(--sans); }
.photo-title .sub { font-size: 13px; color: #6a635a; font-weight: 600; }
.photo-info { background: #fff; border-radius: 16px; padding: 15px 17px; margin: 18px 0; }
.photo-info .r { display: flex; align-items: center; gap: 10px; font-size: 15px; }
.photo-info .r + .r { margin-top: 9px; font-size: 14px; color: #6a635a; }
.photo-info .name { font-weight: 900; }
.photo-info .ses { margin-left: auto; font-size: 12px; font-weight: 800; color: #5E5949; background: var(--cream); padding: 3px 10px; border-radius: 999px; }
.folder-name { display: flex; align-items: center; gap: 9px; background: #fff; border-radius: 12px; padding: 11px 14px; box-shadow: inset 0 0 0 2px var(--line); }
.folder-name span { font-size: 14px; font-weight: 700; color: #4a443c; word-break: break-word; }
.create-btn {
  width: 100%; display: inline-flex; align-items: center; justify-content: center; gap: 8px; margin-top: 10px;
  background: var(--ink-2); color: #fff; font-weight: 800; font-size: 15px; padding: 13px 20px; border: none; border-radius: 999px; cursor: pointer;
}
.photo-url {
  width: 100%; padding: 13px 15px; border: none; border-radius: 12px; font-size: 15px; background: #fff;
  box-shadow: inset 0 0 0 2px var(--line); box-sizing: border-box;
}
.photo-help { font-size: 12px; color: var(--muted-2); margin-top: 8px; line-height: 1.5; }
.photo-ok { display: flex; align-items: center; gap: 10px; background: #DCFCE7; color: #166534; border-radius: 12px; padding: 12px 14px; font-size: 14px; font-weight: 800; margin-top: 14px; }
.photo-err { background: #FEE2E2; color: #991B1B; border-radius: 12px; padding: 11px 14px; font-size: 13px; font-weight: 600; margin-top: 14px; }
.photo-actions { display: flex; gap: 12px; margin-top: 20px; }
.photo-cancel { flex: 0 0 auto; background: #fff; color: var(--ink-2); font-weight: 800; font-size: 15px; padding: 13px 22px; border: 2px solid var(--line); border-radius: 999px; cursor: pointer; }
.photo-send { display: inline-flex; align-items: center; justify-content: center; gap: 8px; flex: 1 1 auto; background: var(--ink); color: #fff; font-weight: 800; font-size: 15px; padding: 13px 22px; border: none; border-radius: 999px; cursor: pointer; }
.photo-send:disabled { opacity: .5; }

/* ============ RESPONSIVE ============ */
@media (max-width: 860px) {
  .dash-cols { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .hero { padding: 56px 18px 52px; }
  .choice-grid-2 { grid-template-columns: 1fr; }
  .section { padding: 60px 18px; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .001ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; }
  .carousel-track { transition: none; }
}
