/* ------------------------------------------------------------------
   Floral Botanical Medicine · Booking
   Minimalist, botanical, spa-like — matching the main site aesthetic
   ------------------------------------------------------------------ */

/* Brand board palette — Floral Botanical Medicine
   Deep Sage #444B39 · Spring Green #C5BC58 · Antique Rose #CBA099
   Soft Rose #FAEDC4 · Vintage Ivory #FDF4E6
   Headings: Cormorant Garamond · Body: Ovo */
:root {
  --cream:      #fdf4e6;   /* Warm Linen */
  --cream-dark: #faedc4;   /* Soft Rose */
  --sage:       #444b39;
  --deep-sage:  #444b39;   /* Deep Sage */
  --forest:     #444b39;
  --ink:        #444b39;
  --ink-soft:   rgba(68, 75, 57, 0.78);
  --antique-rose: #cba099; /* Antique Rose */
  --gold:       #c5bc58;   /* Spring Green */
  --gold-strong:#444b39;
  --border:     rgba(68, 75, 57, 0.20);
  --error:      #cba099;
  --ease:       cubic-bezier(.22,.61,.36,1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Ovo', Georgia, serif;
  font-weight: 400;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  letter-spacing: 0.01em;
  color: var(--forest);
}
h1 { font-size: clamp(2.4rem, 5vw, 4rem); line-height: 1.15; }
h1 em, h2 em { font-style: italic; color: var(--sage); font-weight: 300; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
h3 { font-size: 1.3rem; font-weight: 400; }

p { color: var(--ink-soft); }

.container { max-width: 1100px; margin: 0 auto; padding: 0 2rem; }
.center    { text-align: center; max-width: 720px; margin: 0 auto; }
.hidden    { display: none !important; }

.eyebrow {
  font-family: 'Ovo', Georgia, serif;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  font-size: 0.72rem;
  color: var(--deep-sage);
  margin-bottom: 1.2rem;
  font-weight: 400;
}
.lead {
  font-size: 1.1rem;
  margin-top: 1.2rem;
  color: var(--ink-soft);
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* ---------- HEADER ---------- */
.site-header {
  border-bottom: 1px solid var(--border);
  background: var(--cream);
  position: sticky; top: 0; z-index: 100;
  backdrop-filter: blur(10px);
  background: rgba(250, 248, 243, 0.92);
}
.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.4rem 2rem;
}
.brand {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 500;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--forest);
  text-decoration: none;
  letter-spacing: 0.02em;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
}
.site-nav a {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: var(--ink-soft);
  text-decoration: none;
  transition: color .3s var(--ease);
}
.site-nav a:hover { color: var(--deep-sage); }

/* ---------- INTRO ---------- */
.intro { padding: 5rem 0 3rem; }

/* ---------- BOOKING SECTIONS ---------- */
.booking { padding: 2rem 0 6rem; }

.step { animation: fadeUp .6s var(--ease); }
.step-label {
  font-family: 'Ovo', Georgia, serif;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  color: var(--deep-sage);
  margin-bottom: 2rem;
  text-align: center;
}

/* ---------- SERVICE GRID ---------- */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  max-width: 880px;
  margin: 0 auto;
}
.service-card {
  background: #fff;
  border: 1px solid var(--border);
  padding: 2.2rem 1.8rem;
  text-align: left;
  cursor: pointer;
  transition: all .4s var(--ease);
  font-family: inherit;
  color: inherit;
}
.service-card:hover {
  border-color: var(--sage);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -25px rgba(45, 58, 40, 0.25);
}
.service-card h3 {
  margin-bottom: .5rem;
  color: var(--forest);
}
.service-card .duration {
  display: inline-block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--deep-sage);
  margin-bottom: .8rem;
}
.service-card p {
  font-size: 0.92rem;
  line-height: 1.6;
}
.service-card p.service-meta {
  margin-top: .8rem;
  font-style: italic;
  font-size: 0.82rem;
  color: var(--ink-soft);
  letter-spacing: 0.02em;
}
.svc-badge {
  display: inline-block;
  font-family: 'Ovo', Georgia, serif;
  font-size: 0.55rem;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  color: var(--deep-sage);
  border: 1px solid var(--sage);
  padding: .15rem .55rem;
  margin-left: .6rem;
  vertical-align: middle;
  font-weight: 500;
}

/* ---------- PILLARS (full menu structure) ---------- */
.pillar-head {
  grid-column: 1 / -1;
  text-align: center;
  margin: 2.6rem 0 1.4rem;
  padding-top: 2.2rem;
  border-top: 1px solid var(--border);
}
.pillar-head:first-child { margin-top: 0; padding-top: 0; border-top: 0; }
.pillar-roman {
  font-family: 'Ovo', Georgia, serif;
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.6em;
  color: var(--ink-soft);
  margin-bottom: .8rem;
  padding-left: 0.6em;
}
.pillar-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 1.8rem;
  color: var(--forest);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding-left: 0.08em;
  line-height: 1.2;
  margin-bottom: .5rem;
}
.pillar-sub {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1rem;
  color: var(--deep-sage);
  letter-spacing: 0.02em;
}

/* Inquiry-only service card (Apothecary, Forthcoming) */
.service-card--inquiry {
  cursor: default;
  border-style: dashed;
}
.service-card--inquiry:hover { transform: none; }
.inquire-btn {
  display: inline-block;
  margin-top: 1rem;
  background: transparent;
  border: 1px solid var(--forest);
  color: var(--forest);
  padding: .55rem 1.2rem;
  font-family: inherit;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all .25s ease;
}
.inquire-btn:hover { background: var(--forest); color: var(--cream); }
.inquiry-note {
  margin-top: .6rem;
  font-size: 0.78rem;
  font-style: italic;
  color: var(--ink-soft);
}

/* The Circle membership card */
.membership-card {
  grid-column: 1 / -1;
  background: rgba(63, 90, 58, 0.05);
  border: 1px solid var(--sage);
  text-align: center;
  padding: 2.4rem 2rem;
  cursor: default;
}
.membership-benefits {
  list-style: none;
  margin: 0 auto;
  max-width: 460px;
  text-align: left;
  padding: 0;
  font-size: 0.95rem;
  color: var(--ink-soft);
  line-height: 2;
}
.membership-benefits li::before {
  content: "·";
  color: var(--sage);
  margin-right: .8rem;
  font-weight: 700;
}
.membership-price {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.3rem;
  color: var(--deep-sage);
  margin-top: 1.2rem;
  letter-spacing: 0.02em;
}
.membership-inquire {
  margin-top: 1.4rem;
  background: var(--forest);
  color: var(--cream);
  border: 0;
  padding: .7rem 2rem;
  font-family: inherit;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .25s ease;
}
.membership-inquire:hover { background: #444b39; }

/* ---------- CALENDAR ---------- */
.calendar {
  max-width: 620px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--border);
  padding: 2rem;
}
.calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.6rem;
}
.calendar-header h3 {
  font-size: 1.4rem;
  color: var(--forest);
}
.cal-nav {
  background: transparent;
  border: 1px solid var(--border);
  width: 36px;
  height: 36px;
  font-size: 1.2rem;
  color: var(--deep-sage);
  cursor: pointer;
  transition: all .3s var(--ease);
  font-family: inherit;
}
.cal-nav:hover {
  background: var(--sage);
  color: #fff;
  border-color: var(--sage);
}

.calendar-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--ink-soft);
  margin-bottom: .6rem;
  padding-bottom: .6rem;
  border-bottom: 1px solid var(--border);
}
.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  margin-top: .6rem;
}
.cal-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  color: var(--ink);
  background: transparent;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all .25s var(--ease);
  font-family: inherit;
}
.cal-day:hover:not(.disabled):not(.blocked) {
  background: var(--cream-dark);
  border-color: var(--sage);
}
.cal-day.empty { cursor: default; }
.cal-day.disabled { color: rgba(68, 75, 57, 0.28); cursor: not-allowed; }
.cal-day.blocked {
  color: rgba(68, 75, 57, 0.28);
  text-decoration: line-through;
  cursor: not-allowed;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 4px,
    var(--cream-dark) 4px,
    var(--cream-dark) 8px
  );
}
.cal-day.today {
  font-weight: 600;
  color: var(--gold-strong);
}
.cal-day.selected {
  background: var(--forest);
  color: var(--cream);
  border-color: var(--forest);
}
.cal-day.admin-blocked {
  background: var(--error);
  color: #fff;
}

/* ---------- TIME GRID ---------- */
.selected-date {
  text-align: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  color: var(--deep-sage);
  margin-bottom: 2rem;
  font-style: italic;
}
.time-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: .8rem;
  max-width: 620px;
  margin: 0 auto;
}
.time-slot {
  padding: 1rem;
  background: #fff;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: all .3s var(--ease);
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--ink);
  text-align: center;
}
.time-slot:hover {
  border-color: var(--sage);
  background: var(--cream-dark);
}
.time-slot.selected {
  background: var(--forest);
  color: var(--cream);
  border-color: var(--forest);
}
.time-slot.disabled {
  background: var(--cream-dark);
  color: var(--ink-soft);
  cursor: not-allowed;
  opacity: 0.6;
  text-decoration: line-through;
  border-color: var(--border);
}
.time-slot.disabled:hover {
  background: var(--cream-dark);
  border-color: var(--border);
}

/* ---------- FORM ---------- */
.summary-box {
  max-width: 520px;
  margin: 0 auto 2rem;
  padding: 1.4rem 1.6rem;
  background: var(--cream-dark);
  border-left: 2px solid var(--sage);
  font-size: 0.95rem;
  color: var(--ink);
}
.summary-box strong { color: var(--forest); font-weight: 500; }

.booking-form {
  max-width: 520px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.booking-form label {
  display: flex;
  flex-direction: column;
  gap: .4rem;
}
.booking-form label span {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--deep-sage);
}
.booking-form input,
.booking-form textarea {
  padding: .9rem 1rem;
  background: #fff;
  border: 1px solid var(--border);
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--ink);
  transition: border-color .3s var(--ease);
}
.booking-form input:focus,
.booking-form textarea:focus {
  outline: none;
  border-color: var(--sage);
}
.booking-form textarea { resize: vertical; }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-block;
  padding: 1rem 2.4rem;
  background: var(--forest);
  color: var(--cream);
  border: 1px solid var(--forest);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  cursor: pointer;
  font-family: inherit;
  transition: all .4s var(--ease);
  text-decoration: none;
  text-align: center;
}
.btn:hover {
  background: var(--sage);
  border-color: var(--sage);
  letter-spacing: 0.32em;
}
.btn-link {
  background: none;
  border: none;
  color: var(--ink-soft);
  font-family: inherit;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  cursor: pointer;
  padding: .5rem;
  margin-top: .5rem;
  transition: color .3s var(--ease);
}
.btn-link:hover { color: var(--deep-sage); }
.back-btn { display: block; margin: 2rem auto 0; }

/* ---------- DONE CARD ---------- */
.done-card {
  max-width: 560px;
  margin: 2rem auto;
  padding: 3rem 2rem;
  text-align: center;
  background: #fff;
  border: 1px solid var(--border);
}
.done-card h2 { margin: 1rem 0; }
.done-details {
  margin: 2rem 0;
  padding: 1.2rem;
  background: var(--cream-dark);
  font-size: 0.92rem;
  line-height: 1.8;
  color: var(--ink);
}

/* ---------- ADMIN VIEW ---------- */
.admin-controls {
  display: flex;
  justify-content: space-between;
  max-width: 620px;
  margin: 0 auto 1.6rem;
}
.legend {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 1.6rem;
  font-size: 0.78rem;
  color: var(--ink-soft);
  flex-wrap: wrap;
}
.legend .dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  margin-right: .4rem;
  vertical-align: middle;
  border: 1px solid var(--border);
}
.legend .available { background: #fff; }
.legend .blocked { background: var(--error); border-color: var(--error); }
.legend .closed { background: rgba(68, 75, 57, 0.16); }

.bookings-title {
  text-align: center;
  margin-top: 4rem;
  margin-bottom: .5rem;
}
.note {
  text-align: center;
  font-size: 0.82rem;
  color: var(--ink-soft);
  margin-bottom: 2rem;
  font-style: italic;
}
.bookings-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: .8rem;
}
.booking-item {
  background: #fff;
  border: 1px solid var(--border);
  padding: 1.2rem 1.4rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  font-size: 0.92rem;
}
.booking-item .when {
  color: var(--deep-sage);
  font-weight: 500;
}
.booking-item .who {
  color: var(--ink);
}
.booking-item .delete {
  background: none;
  border: none;
  color: var(--error);
  cursor: pointer;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

/* ---------- FOOTER ---------- */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 3rem 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  letter-spacing: 0.04em;
  color: var(--ink);
}

/* ---------- ANIMATIONS ---------- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ---------- CHATBOT ---------- */
.chat-toggle {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 200;
  background: var(--forest);
  color: var(--cream);
  border: none;
  padding: 1rem 1.6rem;
  border-radius: 999px;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  display: flex;
  align-items: center;
  gap: .6rem;
  box-shadow: 0 10px 30px -10px rgba(45, 58, 40, 0.4);
  transition: all .4s var(--ease);
}
.chat-toggle:hover {
  background: var(--sage);
  transform: translateY(-2px);
  box-shadow: 0 14px 36px -10px rgba(45, 58, 40, 0.5);
}
.chat-icon {
  font-size: 1.2rem;
  color: var(--gold);
}

.chat-window {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 380px;
  max-width: calc(100vw - 3rem);
  height: 560px;
  max-height: calc(100vh - 4rem);
  z-index: 201;
  background: var(--cream);
  border: 1px solid var(--border);
  box-shadow: 0 30px 80px -20px rgba(45, 58, 40, 0.3);
  display: flex;
  flex-direction: column;
  animation: fadeUp .4s var(--ease);
}
.chat-header {
  padding: 1.2rem 1.4rem;
  background: var(--forest);
  color: var(--cream);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.chat-header h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--cream);
  margin: 0;
}
.chat-status {
  font-size: 0.72rem;
  color: rgba(250, 248, 243, 0.7);
  margin: 0;
  margin-top: .15rem;
}
.chat-close {
  background: none;
  border: none;
  color: var(--cream);
  font-size: 1.8rem;
  cursor: pointer;
  padding: 0 .4rem;
  line-height: 1;
  opacity: 0.8;
  transition: opacity .3s;
}
.chat-close:hover { opacity: 1; }

.chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 1.4rem;
  display: flex;
  flex-direction: column;
  gap: .8rem;
  background: var(--cream);
}
.chat-message {
  max-width: 85%;
  padding: .8rem 1.1rem;
  font-size: 0.92rem;
  line-height: 1.5;
  animation: fadeUp .3s var(--ease);
}
.chat-message.bot {
  align-self: flex-start;
  background: #fff;
  border: 1px solid var(--border);
  color: var(--ink);
  border-radius: 14px 14px 14px 2px;
}
.chat-message.user {
  align-self: flex-end;
  background: var(--deep-sage);
  color: var(--cream);
  border-radius: 14px 14px 2px 14px;
}
.chat-message.typing {
  background: #fff;
  border: 1px solid var(--border);
  color: var(--ink-soft);
  font-style: italic;
  border-radius: 14px 14px 14px 2px;
}
.chat-message.typing::after {
  content: '●●●';
  letter-spacing: .25em;
  animation: blink 1.4s infinite;
}

.chat-quick-replies {
  padding: .6rem 1rem 0;
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}
.quick-reply {
  background: transparent;
  border: 1px solid var(--sage);
  color: var(--deep-sage);
  padding: .5rem .9rem;
  font-family: inherit;
  font-size: 0.78rem;
  cursor: pointer;
  border-radius: 999px;
  transition: all .3s var(--ease);
}
.quick-reply:hover {
  background: var(--sage);
  color: var(--cream);
}

.chat-form {
  display: flex;
  gap: .5rem;
  padding: 1rem;
  border-top: 1px solid var(--border);
  background: #fff;
}
.chat-form input {
  flex: 1;
  padding: .8rem 1rem;
  background: var(--cream);
  border: 1px solid var(--border);
  font-family: inherit;
  font-size: 0.92rem;
  color: var(--ink);
  outline: none;
  transition: border-color .3s;
}
.chat-form input:focus { border-color: var(--sage); }
.chat-form button {
  background: var(--forest);
  color: var(--cream);
  border: none;
  width: 44px;
  font-size: 1.3rem;
  cursor: pointer;
  transition: background .3s;
  font-family: inherit;
}
.chat-form button:hover { background: var(--sage); }

@keyframes blink {
  0%, 100% { opacity: 0.3; }
  50%      { opacity: 1; }
}

/* ---------- CREATOR / ADMIN MODE ---------- */
.creator-accent { color: var(--gold-strong) !important; font-weight: 500; }
.creator-accent.active { color: var(--error) !important; }

.creator-panel {
  padding: 3rem 0 4rem;
  border-top: 2px solid var(--gold);
  background: linear-gradient(180deg, rgba(184,153,104,0.06) 0%, var(--cream) 30%);
}
.creator-banner { text-align: center; margin-bottom: 2.4rem; }
.creator-banner .lead { max-width: 560px; margin: .8rem auto 0; }

.creator-toolbar {
  display: flex;
  gap: .6rem;
  flex-wrap: wrap;
  margin-bottom: 1.6rem;
}
.btn-gold { background: var(--gold) !important; border-color: var(--gold) !important; }
.btn-gold:hover { background: var(--deep-sage) !important; border-color: var(--deep-sage) !important; }
.btn-small { padding: .6rem 1.2rem; font-size: 0.72rem; }

.stats-bar {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: .6rem;
  margin-bottom: 1.6rem;
}
.stat-card {
  background: #fff;
  border: 1px solid var(--border);
  padding: 1rem;
  text-align: center;
}
.stat-card .number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  color: var(--forest);
  line-height: 1;
}
.stat-card .label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--ink-soft);
  margin-top: .3rem;
}

.has-booking-dot { background: var(--gold) !important; border-color: var(--gold) !important; }

.cal-day.has-booking { position: relative; }
.cal-day.has-booking::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
}

.block-time-section {
  margin-top: 1.4rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}
.block-time-section h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  color: var(--forest);
  margin-bottom: .6rem;
}
.block-time-row {
  display: flex;
  gap: .6rem;
  align-items: center;
  margin-bottom: .6rem;
}
.block-time-row select {
  flex: 1;
  padding: .6rem .8rem;
  border: 1px solid var(--border);
  background: #fff;
  font-family: inherit;
  font-size: 0.9rem;
  color: var(--ink);
}
.block-time-row select:focus { outline: none; border-color: var(--sage); }

.blocked-time-tag {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: var(--cream-dark);
  border: 1px solid var(--border);
  padding: .3rem .7rem;
  margin: .2rem .3rem .2rem 0;
  font-size: 0.82rem;
  color: var(--ink);
}
.blocked-time-tag button {
  background: none;
  border: none;
  color: var(--error);
  font-size: 1rem;
  cursor: pointer;
  padding: 0;
  line-height: 1;
}

.day-bookings {
  background: var(--cream-dark);
  border: 1px solid var(--border);
  padding: 1.2rem;
  margin-top: 1.2rem;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}
.day-bookings h3 { margin-bottom: .8rem; }
.day-booking-item {
  background: #fff;
  border: 1px solid var(--border);
  padding: .8rem;
  margin-bottom: .5rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
}
.day-booking-item .info { flex: 1; font-size: 0.85rem; line-height: 1.5; }
.day-booking-item .time-badge {
  background: var(--forest);
  color: var(--cream);
  padding: .3rem .7rem;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  white-space: nowrap;
}
.day-booking-item .edit-btn,
.day-booking-item .remove-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  padding: .2rem .4rem;
}
.day-booking-item .edit-btn { color: var(--deep-sage); }
.day-booking-item .remove-btn { color: var(--error); }

.creator-code-section {
  padding-top: .4rem;
  border-top: 1px dashed var(--border);
}
.creator-code-section small {
  text-transform: none;
  letter-spacing: normal;
  font-size: 0.72rem;
  color: var(--ink-soft);
}

/* ---------- EDIT BOOKING MODAL ---------- */
.edit-booking-overlay {
  position: fixed;
  inset: 0;
  z-index: 310;
  background: rgba(45, 58, 40, 0.35);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn .3s var(--ease);
}
.edit-booking-modal {
  background: var(--cream);
  border: 1px solid var(--border);
  padding: 2.4rem 2rem;
  width: 460px;
  max-width: calc(100vw - 2rem);
  max-height: calc(100vh - 2rem);
  overflow-y: auto;
  position: relative;
  animation: fadeUp .4s var(--ease);
}

/* ---------- NAV AUTH ---------- */
.nav-divider {
  color: var(--border);
  margin: 0 .3rem;
}
.nav-auth-btn {
  background: none;
  border: none;
  font-family: inherit;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: var(--ink-soft);
  cursor: pointer;
  transition: color .3s var(--ease);
  padding: 0;
}
.nav-auth-btn:hover { color: var(--deep-sage); }

/* ---------- AUTH MODAL ---------- */
.auth-overlay {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(45, 58, 40, 0.35);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn .3s var(--ease);
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.auth-modal {
  background: var(--cream);
  border: 1px solid var(--border);
  padding: 3rem 2.4rem;
  width: 420px;
  max-width: calc(100vw - 2rem);
  max-height: calc(100vh - 2rem);
  overflow-y: auto;
  position: relative;
  animation: fadeUp .4s var(--ease);
}
.auth-close {
  position: absolute;
  top: 1rem;
  right: 1.2rem;
  background: none;
  border: none;
  font-size: 1.8rem;
  color: var(--ink-soft);
  cursor: pointer;
  line-height: 1;
  transition: color .3s;
}
.auth-close:hover { color: var(--forest); }

.auth-modal h2 { margin-bottom: 1.6rem; }

.auth-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.auth-form label {
  display: flex;
  flex-direction: column;
  gap: .35rem;
}
.auth-form label span {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--deep-sage);
}
.auth-form input {
  padding: .8rem 1rem;
  background: #fff;
  border: 1px solid var(--border);
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--ink);
  transition: border-color .3s var(--ease);
}
.auth-form input:focus {
  outline: none;
  border-color: var(--sage);
}

.auth-error {
  color: var(--error);
  font-size: 0.85rem;
  margin: 0;
}

.auth-msg {
  font-size: 0.88rem;
  margin: .8rem 0 0;
  padding: .6rem .8rem;
  border-radius: 2px;
  line-height: 1.45;
}
.auth-msg.success {
  color: var(--deep-sage, #444b39);
  background: rgba(63, 90, 58, 0.08);
}
.auth-msg.error {
  color: var(--error);
  background: rgba(138, 58, 26, 0.08);
}

.auth-switch {
  margin-top: 1.6rem;
  font-size: 0.85rem;
  color: var(--ink-soft);
  text-align: center;
}
.auth-switch .btn-link {
  display: inline;
  font-size: 0.85rem;
  text-transform: none;
  letter-spacing: normal;
  color: var(--deep-sage);
  text-decoration: underline;
  margin: 0;
  padding: 0;
}

/* ---------- MY APPOINTMENTS LIST ---------- */
.my-appt-item {
  background: #fff;
  border: 1px solid var(--border);
  padding: 1rem 1.2rem;
  margin-bottom: .6rem;
}
.my-appt-item .when {
  color: var(--deep-sage);
  font-weight: 500;
  font-size: 0.92rem;
}
.my-appt-item .what {
  font-size: 0.85rem;
  color: var(--ink-soft);
  margin-top: .2rem;
}
.my-appts-empty {
  text-align: center;
  padding: 2rem 0;
  color: var(--ink-soft);
  font-style: italic;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 700px) {
  .intro { padding: 4.5rem 0 3.5rem; }
  .calendar { padding: 1.2rem; }
  .booking { padding: 1rem 0 4rem; }
  .admin-controls { flex-direction: column; gap: .6rem; }
  .booking-item { flex-direction: column; }
  .chat-toggle { bottom: 1rem; right: 1rem; padding: .8rem 1.2rem; font-size: 0.72rem; }
  .chat-window { bottom: 1rem; right: 1rem; left: 1rem; width: auto; max-width: none; height: 70vh; }
  .header-inner { flex-direction: column; gap: .6rem; }
  .site-nav { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: .2rem; }
  .auth-modal { padding: 2rem 1.4rem; }
  .membership-card { padding: 2.4rem 1.4rem; }
}

/* ================================================================
   FBM CHINTZ OVERLAY — Floral Botanical Medicine chintz tile
   Scoped to hero + pillar flourishes + membership card.
   Calendar / time / form stay restrained on cream.
   ================================================================ */
:root {
  --laurustine: #444b39;   /* Deep Sage */
  --dusty-rose: #cba099;   /* Antique Rose */
  --ivory:      #fdf4e6;   /* Warm Linen */
  --morris:     url('assets/fbm-chintz-tile.jpg');
}

.brand-mark {
  height: 2.6rem;
  width: auto;
  display: block;
  margin-right: 0.6rem;
}
.footer-mark {
  height: 9rem;
  width: auto;
  display: block;
  margin: 0 auto 1rem;
  opacity: 0.9;
}

/* ---- HERO ---- */
/* Chintz at full saturation, zoomed and bold — no wash, no overlay.
   Copy sits on an ivory panel so it stays crisp over the pattern. */
.intro {
  padding: 5.5rem 0 5rem;
  background: var(--morris);
  background-size: 1500px auto;
  background-repeat: repeat;
  background-position: center;
  color: var(--ink);
  border-bottom: 1px solid var(--border);
}
.intro .container.center {
  background: #444B39; /* Deep Sage */
  max-width: 900px;
  padding: 3rem 3.25rem 2.75rem;
  border: 2px solid var(--cream); /* clean cream frame hugging the outside */
  box-shadow: 0 18px 48px rgba(52, 58, 44, 0.32);
}
.intro .eyebrow { color: #cba099; }
.intro .lead { max-width: 740px; }
.brand-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.15rem;
  letter-spacing: 0.03em;
  color: var(--cream);
  opacity: 0.9;
  margin-top: 1.3rem;
}
.footer-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1rem;
  letter-spacing: 0.02em;
  color: var(--deep-sage);
  opacity: 0.85;
  margin-top: 0.3rem;
}
.intro h1 { color: #fdf4e6; }
.intro h1 em { color: #cba099; font-style: italic; }
.intro .lead { color: rgba(250, 240, 230, 0.88); }

/* ---- PILLAR HEADS — gold fleuron ---- */
.pillar-head::before {
  content: '❋';
  display: block;
  font-family: 'Cormorant Garamond', serif;
  color: var(--gold);
  font-size: 1rem;
  margin-bottom: 0.9rem;
  opacity: 0.75;
}

/* ---- SERVICE CARDS — tiny gold top accent ---- */
.service-card:not(.membership-card) {
  position: relative;
}
.service-card:not(.membership-card)::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 32px;
  height: 2px;
  background: var(--gold);
  opacity: 0.6;
  transition: opacity .4s var(--ease), width .4s var(--ease);
}
.service-card:not(.membership-card):hover::before {
  opacity: 1;
  width: 52px;
}

/* ---- MEMBERSHIP CARD — lush chintz wallpaper ---- */
.membership-card {
  background:
    linear-gradient(rgba(250, 248, 243, 0.72), rgba(250, 248, 243, 0.85)),
    var(--morris);
  background-size: auto, 360px auto;
  background-repeat: no-repeat, repeat;
  background-position: center;
  border: 1px solid var(--border);
  color: var(--ink);
  padding: 3rem 2.4rem;
}
.membership-card h2,
.membership-card h3 { color: var(--forest); }
.membership-card p { color: var(--ink-soft); }
.membership-benefits { color: var(--ink); }
.membership-benefits li::before { color: var(--gold-strong); }
.membership-price {
  color: var(--dusty-rose);
  font-size: 1.5rem;
  font-weight: 400;
}
.membership-inquire {
  background: var(--forest);
  color: var(--cream);
  border: 1px solid var(--forest);
  font-weight: 500;
}
.membership-inquire:hover {
  background: var(--gold-strong);
  color: var(--cream);
}

.back-top { display: block; margin: 0 auto 1.8rem; border: 1px solid var(--border); padding: .5rem 1.1rem; }
.back-top:hover { border-color: var(--deep-sage); }

.footer-contact {
  margin-top: 0.9rem;
  font-family: 'Ovo', Georgia, serif;
  font-size: 0.9rem;
  text-transform: none;
  letter-spacing: 0.05em;
}
.footer-contact a {
  color: rgba(68, 75, 57, 0.78);
  text-decoration: none;
  transition: color .25s ease;
}
.footer-contact a:hover { color: #444b39; }

/* Member-agreement callout on the booking page — connects intake/booking to the agreement */
.member-callout {
  display: block;
  text-decoration: none;
  background: #444B39;
  color: var(--cream);
  border: 2px solid var(--cream);
  border-radius: 2px;
  padding: 1.6rem 1.8rem;
  max-width: 880px;
  margin: 0 auto 2.5rem;
  text-align: center;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.member-callout:hover { transform: translateY(-3px); box-shadow: 0 18px 40px -22px rgba(52,58,44,.5); }
.member-callout .mc-eyebrow {
  display: block; font-family: 'Ovo', serif; text-transform: uppercase;
  letter-spacing: .28em; font-size: .66rem; color: var(--antique-rose); margin-bottom: .5rem;
}
.member-callout .mc-title {
  display: block; font-family: 'Cormorant Garamond', serif; font-size: 1.6rem;
  color: var(--cream); margin-bottom: .5rem;
}
.member-callout .mc-text {
  display: block; font-size: .92rem; color: rgba(253,244,230,.82);
  max-width: 560px; margin: 0 auto .9rem; line-height: 1.6;
}
.member-callout .mc-cta {
  display: inline-block; font-family: 'Ovo', serif; text-transform: uppercase;
  letter-spacing: .16em; font-size: .74rem; color: var(--gold);
  border-bottom: 1px solid var(--gold); padding-bottom: 2px;
}

/* Membership gate — locks pricing/booking until the agreement is signed */
.gate-panel {
  background: #444B39;
  color: var(--cream);
  border: 2px solid var(--cream);
  border-radius: 2px;
  max-width: 720px;
  margin: 0 auto;
  padding: 3rem 2.75rem;
  text-align: center;
}
.gate-panel .eyebrow { color: var(--antique-rose); }
.gate-panel h2 { color: var(--cream); }
.gate-panel h2 em { color: var(--gold); }
.gate-panel .lead { color: rgba(253,244,230,.85); max-width: 560px; }
.gate-panel > .btn {
  background: var(--cream); color: var(--forest); border: 1px solid var(--cream);
}
.gate-panel > .btn:hover { background: var(--gold); border-color: var(--gold); color: var(--forest); }
.gate-verify {
  margin-top: 2rem; padding-top: 1.6rem; border-top: 1px solid rgba(253,244,230,.25);
}
.gate-verify-label { color: rgba(253,244,230,.82); font-size: .9rem; margin-bottom: .7rem; }
.gate-verify-row { display: flex; gap: .6rem; justify-content: center; flex-wrap: wrap; }
.gate-verify-row input {
  padding: .65rem .8rem; border: 1px solid rgba(253,244,230,.4); background: rgba(253,244,230,.1);
  color: var(--cream); font-family: 'Ovo', serif; font-size: .95rem; border-radius: 2px; min-width: 240px;
}
.gate-verify-row input::placeholder { color: rgba(253,244,230,.55); }
.gate-verify-row input:focus { outline: none; border-color: var(--gold); }
.gate-verify-row .btn { background: var(--gold); color: var(--forest); border: 1px solid var(--gold); }
#gate-msg { color: var(--antique-rose); margin-top: .9rem; font-size: .88rem; min-height: 1.1rem; }

/* Post-booking: intake form next-step block */
.intake-next {
  margin-top: 2.2rem;
  padding-top: 1.8rem;
  border-top: 1px solid var(--border);
}
.intake-next .eyebrow { color: var(--antique-rose); margin-bottom: .6rem; }
.intake-next h3 { color: var(--forest); margin-bottom: .5rem; font-size: 1.35rem; }
.intake-next .intake-next-text {
  max-width: 460px; margin: 0 auto 1.3rem; font-size: .95rem; color: var(--ink-soft);
}
.intake-next .btn { display: inline-block; }
.intake-redirect-note {
  margin-top: 1rem; font-family: 'Cormorant Garamond', serif; font-style: italic;
  font-size: .95rem; color: var(--deep-sage); min-height: 1.2rem;
}
