:root {
  --bg: #f8f6f2;
  --surface: #f3efe8;
  --card: #fffdf9;
  --text: #2f3538;
  --muted: #62707a;
  --accent: #6f8877;
  --accent-deep: #587061;
  --blue-grey: #7c8d97;
  --border: #ddd6ca;
  --shadow: 0 10px 32px rgba(47, 53, 56, 0.07);
  --error: #a33d4a;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Lora", "Palatino Linotype", "Book Antiqua", Palatino, serif;
  color: var(--text);
  background: radial-gradient(circle at top right, #f5f1ea 0%, var(--bg) 55%);
  line-height: 1.6;
  position: relative;
}

body::before,
body::after {
  content: "";
  position: fixed;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.55;
}

body::before {
  top: -140px;
  left: -120px;
  background:
    radial-gradient(circle at 30% 35%, rgba(207, 179, 160, 0.32) 0 24%, transparent 25%),
    radial-gradient(circle at 72% 42%, rgba(180, 203, 181, 0.28) 0 22%, transparent 23%),
    radial-gradient(circle at 50% 72%, rgba(198, 187, 214, 0.23) 0 18%, transparent 19%);
}

body::after {
  bottom: -150px;
  right: -120px;
  background:
    radial-gradient(circle at 36% 30%, rgba(193, 175, 160, 0.3) 0 22%, transparent 23%),
    radial-gradient(circle at 67% 45%, rgba(162, 188, 172, 0.28) 0 20%, transparent 21%),
    radial-gradient(circle at 50% 72%, rgba(182, 176, 203, 0.22) 0 17%, transparent 18%);
}

h1,
h2,
h3,
.brand,
.btn {
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  letter-spacing: 0.01em;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(248, 246, 242, 0.92);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(8px);
}

.nav-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 74px;
}

.brand {
  text-decoration: none;
  color: var(--text);
  font-weight: 700;
  font-size: 1.06rem;
}

.nav-links {
  display: flex;
  gap: 1.2rem;
}

.nav-links a {
  text-decoration: none;
  color: var(--muted);
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.95rem;
}

.nav-links a:hover {
  color: var(--accent-deep);
}

.main-content {
  padding: 2.25rem 0 3rem;
  display: grid;
  gap: 1.2rem;
  position: relative;
  z-index: 1;
}

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 1.5rem;
  box-shadow: var(--shadow), 0 1px 0 rgba(255, 255, 255, 0.8) inset;
  position: relative;
  overflow: hidden;
}

.card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 120px;
  height: 120px;
  background:
    radial-gradient(circle at 38% 35%, rgba(214, 198, 179, 0.22) 0 14%, transparent 15%),
    radial-gradient(circle at 66% 66%, rgba(189, 209, 191, 0.2) 0 12%, transparent 13%);
  pointer-events: none;
}

.card-lite {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.2rem;
}

.narrow {
  max-width: 480px;
  margin: 0 auto;
}

.eyebrow {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--blue-grey);
  font-weight: 600;
  font-size: 0.83rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.eyebrow::before,
.eyebrow::after {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(145deg, #b8cbbd, #d8c5b8);
  opacity: 0.85;
}

h1 {
  margin: 0.45rem 0 0.85rem;
  font-size: clamp(1.7rem, 2.2vw, 2.45rem);
  line-height: 1.22;
}

h2 {
  margin: 0.45rem 0 0.75rem;
  font-size: clamp(1.35rem, 1.9vw, 1.85rem);
  line-height: 1.27;
}

h3 {
  margin: 0 0 0.5rem;
  font-size: 1.03rem;
}

.lead {
  max-width: 62ch;
  color: #49565f;
}

.subtle {
  color: var(--muted);
}

.hero-surface {
  display: grid;
  grid-template-columns: 1.45fr 1fr;
  gap: 1rem;
  align-items: stretch;
}

.hero-copy,
.hero-note {
  border: 1px solid var(--border);
  border-radius: 20px;
  background: linear-gradient(180deg, #fffefb 0%, #f9f6f0 100%);
  box-shadow: var(--shadow);
}

.hero-copy {
  padding: 1.8rem;
}

.hero-note {
  padding: 1.4rem;
  position: relative;
}

.hero-note::after {
  content: "";
  position: absolute;
  inset: auto 14px 10px auto;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 16%, rgba(176, 200, 178, 0.45) 0 20%, transparent 21%),
    radial-gradient(circle at 22% 52%, rgba(201, 179, 166, 0.38) 0 20%, transparent 21%),
    radial-gradient(circle at 78% 52%, rgba(188, 183, 209, 0.32) 0 20%, transparent 21%),
    radial-gradient(circle at 50% 88%, rgba(196, 207, 189, 0.4) 0 20%, transparent 21%);
}

.hero-actions {
  margin-top: 1rem;
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  text-decoration: none;
  cursor: pointer;
  background: linear-gradient(160deg, #7f9d88, #648173);
  color: #fff;
  padding: 0.65rem 1.05rem;
  border-radius: 11px;
  font-size: 0.93rem;
  font-weight: 600;
}

.btn:hover {
  background: linear-gradient(160deg, #6f907a, #557365);
}

.btn-secondary {
  background: linear-gradient(180deg, #fff 0%, #f5f8f5 100%);
  border-color: #a9bea8;
  color: var(--accent-deep);
}

.btn-secondary:hover {
  background: #eef3ef;
}

.btn.small {
  padding: 0.45rem 0.8rem;
  font-size: 0.82rem;
}

.section-grid {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 1.2rem;
  align-items: center;
}

.team-grid {
  margin-top: 0.8rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem;
}

.team-card {
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1rem;
  background: #fff;
  position: relative;
}

.team-card::after {
  content: "";
  position: absolute;
  top: 10px;
  right: 10px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 15%, rgba(176, 200, 178, 0.38) 0 20%, transparent 21%),
    radial-gradient(circle at 20% 50%, rgba(201, 179, 166, 0.32) 0 20%, transparent 21%),
    radial-gradient(circle at 80% 50%, rgba(188, 183, 209, 0.3) 0 20%, transparent 21%),
    radial-gradient(circle at 50% 84%, rgba(196, 207, 189, 0.33) 0 20%, transparent 21%);
}

.team-serial {
  margin: 0;
  color: var(--blue-grey);
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
}

.therapist-photo {
  display: grid;
  place-items: center;
}

.avatar {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: linear-gradient(160deg, #e8efe7, #d8e2dd);
  color: #4f6a5a;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-weight: 700;
  font-size: 2.1rem;
  display: grid;
  place-items: center;
  border: 1px solid #ccd9d0;
}

.role {
  margin-top: -0.35rem;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.9rem;
  color: var(--blue-grey);
}

.steps {
  margin-top: 0.95rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.8rem;
}

.step-item {
  border: 1px solid var(--border);
  border-radius: 13px;
  background: #fff;
  padding: 0.95rem;
}

.step-item span {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #e7eee9;
  color: #4f6356;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.84rem;
  font-weight: 700;
  margin-bottom: 0.45rem;
}

.step-item p {
  margin: 0;
  color: #55616a;
  font-size: 0.92rem;
}

.stats-soft {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.8rem;
}

.stat-card {
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1rem;
  background: var(--card);
  box-shadow: var(--shadow), 0 1px 0 rgba(255, 255, 255, 0.7) inset;
}

.stat-value {
  color: #3f5b48;
}

.stat-label {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.stat-value {
  margin: 0.28rem 0 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-weight: 600;
}

.booking-shell h1,
.confirm-shell h1 {
  margin-top: 0.35rem;
}

.booking-form {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 1rem;
}

.booking-filter {
  margin-top: 0.6rem;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0.8rem;
  background: #fff;
  display: flex;
  gap: 0.65rem;
  align-items: end;
  flex-wrap: wrap;
}

.slot-controls {
  margin: 0.3rem 0 0.75rem;
}

.slot-controls label {
  max-width: 280px;
}

.admin-slot-controls {
  margin-top: 0.2rem;
}

.date-range {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 0.8rem;
}

.date-chip {
  border: 1px solid var(--border);
  background: #fff;
  color: var(--text);
  border-radius: 10px;
  padding: 0.4rem 0.6rem;
  min-width: 95px;
  cursor: pointer;
  display: grid;
  gap: 0.1rem;
  text-align: left;
}

.date-chip span {
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--muted);
  font-size: 0.75rem;
}

.date-chip strong {
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.82rem;
}

.date-chip.active {
  border-color: #bfcfc2;
  background: #eef4ef;
}

.date-chip.has-open {
  border-color: #cfe2d3;
  background: #f1f8f2;
}

.date-chip.has-open.active {
  border-color: #86b58f;
  background: #dff0e1;
}

.date-chip.has-open strong {
  color: #315d3a;
}

.date-chip.has-closed {
  border-color: #ebc9c9;
  background: #fdf0f0;
}

.date-chip.has-closed.active {
  border-color: #d98f8f;
  background: #f8dede;
}

.date-chip.has-closed strong {
  color: #7a3434;
}

.booking-form.single-panel {
  grid-template-columns: 1fr;
}

.slot-panel,
.details-panel {
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #fff;
  padding: 1rem;
}

.table-wrap {
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 730px;
}

th,
td {
  border-bottom: 1px solid #e7e1d6;
  padding: 0.64rem 0.5rem;
  text-align: left;
  font-size: 0.92rem;
  vertical-align: middle;
}

th {
  color: #5f6c74;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-weight: 600;
}

input,
select {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: #fff;
  padding: 0.58rem 0.65rem;
  font-size: 0.92rem;
  color: var(--text);
}

input:focus,
select:focus {
  outline: 2px solid #d2ddd4;
  border-color: #c5d1c7;
}

.form-grid {
  display: grid;
  gap: 0.85rem;
  margin: 0.45rem 0 1rem;
}

label {
  display: grid;
  gap: 0.4rem;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.88rem;
  color: #4f5b63;
}

.is-open {
  background: #fbfdfb;
}

.is-closed {
  background: #fbf8f5;
  color: #8a8a8a;
}

.badge {
  display: inline-block;
  border-radius: 999px;
  padding: 0.18rem 0.55rem;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.77rem;
  font-weight: 600;
}

.badge-open {
  background: #eaf2eb;
  color: #4f6757;
  border: 1px solid #d2e1d5;
}

.badge-closed {
  background: #f2ece5;
  color: #816c5c;
  border: 1px solid #e4d8cc;
}

.client-initial {
  display: inline-grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: #e6edf3;
  color: #4d6270;
  border: 1px solid #d4dee7;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
}

.confirm-grid {
  margin: 0.95rem 0 1.2rem;
  display: grid;
  gap: 0.65rem;
}

.confirm-item {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0.8rem;
  background: #fff;
}

.confirm-item span {
  display: block;
  color: var(--muted);
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.82rem;
}

.confirm-item strong {
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-size: 1rem;
}

.row-between {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.8rem;
}

.admin-table {
  min-width: 1000px;
}

.sheet-picker {
  margin: 0.8rem 0 1rem;
  display: flex;
  gap: 0.65rem;
  align-items: end;
  flex-wrap: wrap;
}

.admin-top-controls {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
  margin-bottom: 0.7rem;
}

.upload-download-wrap {
  display: grid;
  gap: 0.45rem;
  align-content: start;
}

.sheet-picker label {
  min-width: 220px;
}

.upload-form {
  margin: 0.8rem 0 1rem;
  display: flex;
  gap: 0.65rem;
  align-items: end;
  flex-wrap: wrap;
}

.upload-form label {
  min-width: 260px;
}

.admin-actions {
  margin-top: 0.9rem;
  display: flex;
  justify-content: flex-end;
}

.admin-actions.top-save {
  margin-top: 0.2rem;
  margin-bottom: 0.7rem;
}

.admin-shell td,
.admin-shell th {
  font-size: 0.87rem;
}

.profile-table {
  min-width: 900px;
}

.tiny a {
  color: var(--accent-deep);
  text-decoration: none;
}

.error {
  color: var(--error);
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-weight: 600;
}

.success-msg {
  color: #44624f;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-weight: 600;
}

.site-footer {
  border-top: 1px solid var(--border);
  margin-top: 2rem;
  padding: 1rem 0 1.7rem;
}

.footer-wrap {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-wrap p {
  margin: 0;
  color: var(--muted);
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.87rem;
}

.home-foam {
  display: grid;
  gap: 1rem;
}

.home-foam .foam-hero .hero-copy {
  background: linear-gradient(165deg, #fffdf9 0%, #f3eee6 100%);
  border: 1px solid #d8cebe;
  position: relative;
}

.home-foam .foam-hero .hero-note {
  background: #ffffff;
  border: 1px solid #e1d7ca;
}

.home-foam .foam-panel {
  background: #fffefb;
  border-color: #dfd3c5;
}

.home-foam .foam-panel h2 {
  letter-spacing: 0.005em;
}

.home-foam .team-card {
  border: 1px solid #ddd2c4;
  background: linear-gradient(180deg, #fff 0%, #fffcf8 100%);
  box-shadow: 0 8px 24px rgba(47, 53, 56, 0.05);
}

.home-foam .team-card h3 {
  margin-bottom: 0.35rem;
}

.home-foam .btn {
  border-radius: 9px;
}

.home-foam .btn.btn-secondary {
  background: #fff;
}

.floral-cluster {
  position: absolute;
  width: 72px;
  height: 72px;
  pointer-events: none;
  z-index: 2;
}

.floral-left {
  left: -18px;
  top: -18px;
}

.floral-right {
  right: -16px;
  bottom: -12px;
}

.floral-cluster span {
  position: absolute;
  width: 22px;
  height: 30px;
  border-radius: 14px 14px 14px 14px;
  transform-origin: center bottom;
}

.floral-cluster span:nth-child(1) {
  left: 24px;
  top: 0;
  background: rgba(177, 200, 180, 0.55);
}

.floral-cluster span:nth-child(2) {
  left: 44px;
  top: 20px;
  transform: rotate(90deg);
  background: rgba(201, 181, 169, 0.55);
}

.floral-cluster span:nth-child(3) {
  left: 24px;
  top: 40px;
  transform: rotate(180deg);
  background: rgba(185, 179, 208, 0.52);
}

.floral-cluster span:nth-child(4) {
  left: 4px;
  top: 20px;
  transform: rotate(270deg);
  background: rgba(175, 197, 179, 0.5);
}

@media (max-width: 980px) {
  .hero-surface,
  .booking-form,
  .section-grid,
  .admin-top-controls {
    grid-template-columns: 1fr;
  }

  .steps,
  .stats-soft,
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* (mobile nav now handled by hamburger pattern in the responsive block below) */
@media (max-width: 640px) {
  .steps,
  .stats-soft,
  .team-grid {
    grid-template-columns: 1fr;
  }

  .card,
  .hero-copy,
  .hero-note {
    padding: 1.1rem;
  }
}

/* Psychedelic Story Theme Overrides */
:root {
  --psy-bg-1: #120b28;
  --psy-bg-2: #1b1138;
  --psy-card: rgba(24, 18, 46, 0.72);
  --psy-text: #f8f4ff;
  --psy-muted: #c8bfdf;
  --psy-neon-cyan: #53f1ff;
  --psy-neon-pink: #ff65d4;
  --psy-neon-lime: #b7ff4a;
  --psy-neon-orange: #ffb14d;
  --psy-border: rgba(164, 124, 255, 0.42);
}

body {
  color: var(--psy-text);
  background:
    radial-gradient(1000px 520px at -10% -10%, rgba(255, 92, 205, 0.28), transparent 58%),
    radial-gradient(980px 560px at 110% -5%, rgba(83, 241, 255, 0.26), transparent 56%),
    radial-gradient(900px 480px at 50% 120%, rgba(183, 255, 74, 0.2), transparent 58%),
    linear-gradient(145deg, var(--psy-bg-1), var(--psy-bg-2) 45%, #0f0a24 100%);
}

body::before,
body::after {
  opacity: 0.7;
  filter: blur(1px) saturate(1.2);
}

.topbar {
  background: rgba(17, 12, 36, 0.82);
  border-bottom: 1px solid rgba(173, 129, 255, 0.38);
}

.brand {
  color: #fff8ff;
  text-shadow: 0 0 14px rgba(255, 101, 212, 0.34);
  letter-spacing: 0.04em;
}

.nav-links a {
  color: #e5d9ff;
}

.nav-links a:hover {
  color: var(--psy-neon-cyan);
}

.main-content {
  gap: 1.35rem;
}

.card,
.hero-copy,
.hero-note,
.team-card,
.step-item,
.slot-panel,
.details-panel,
.confirm-item,
.stat-card {
  background: var(--psy-card);
  border-color: var(--psy-border);
  box-shadow:
    0 14px 36px rgba(5, 2, 20, 0.46),
    0 0 0 1px rgba(122, 91, 201, 0.18) inset,
    0 0 36px rgba(131, 72, 255, 0.14);
  backdrop-filter: blur(8px);
}

.card::before,
.team-card::after,
.hero-note::after {
  opacity: 0.9;
  filter: saturate(1.2);
}

h1, h2, h3, .brand, .btn {
  font-family: "Trebuchet MS", "Avenir Next", "Segoe UI", sans-serif;
}

h1 {
  color: #fff;
  text-shadow: 0 0 24px rgba(255, 101, 212, 0.22);
}

h2 {
  color: #f3edff;
}

.subtle,
.lead,
.stat-label,
label,
.footer-wrap p,
.team-serial,
.role,
.step-item p {
  color: var(--psy-muted);
}

.eyebrow {
  color: #e7d6ff;
  letter-spacing: 0.09em;
}

.eyebrow::before,
.eyebrow::after {
  background: linear-gradient(145deg, var(--psy-neon-cyan), var(--psy-neon-pink));
  box-shadow: 0 0 12px rgba(83, 241, 255, 0.46);
}

.btn {
  background: linear-gradient(135deg, var(--psy-neon-pink), #9a5bff 54%, var(--psy-neon-cyan));
  color: #160d2f;
  font-weight: 700;
  border-color: rgba(255, 255, 255, 0.24);
  box-shadow: 0 8px 22px rgba(124, 75, 235, 0.42), 0 0 18px rgba(83, 241, 255, 0.25);
}

.btn:hover {
  background: linear-gradient(135deg, #ff78db, #ab6cff 52%, #74f6ff);
}

.btn-secondary {
  background: linear-gradient(140deg, rgba(83, 241, 255, 0.22), rgba(255, 101, 212, 0.2));
  border-color: rgba(133, 229, 255, 0.46);
  color: #e8f9ff;
}

.btn-secondary:hover {
  background: linear-gradient(140deg, rgba(83, 241, 255, 0.31), rgba(255, 101, 212, 0.29));
}

.home-foam .team-card h3,
.step-item h3 {
  color: #fff7ff;
}

.steps {
  position: relative;
}

.steps::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 32px;
  height: 2px;
  background: linear-gradient(90deg, var(--psy-neon-cyan), var(--psy-neon-pink), var(--psy-neon-lime));
  opacity: 0.45;
}

.step-item {
  position: relative;
  z-index: 1;
}

.step-item span {
  background: linear-gradient(145deg, var(--psy-neon-cyan), var(--psy-neon-pink));
  color: #140b2a;
  box-shadow: 0 0 18px rgba(83, 241, 255, 0.4);
}

table {
  min-width: 760px;
}

th {
  color: #f6e9ff;
  background: rgba(131, 72, 255, 0.16);
}

th, td {
  border-bottom: 1px solid rgba(179, 146, 255, 0.32);
}

input,
select {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(177, 144, 255, 0.52);
  color: #fff;
}

input::placeholder {
  color: #d5cbef;
}

input:focus,
select:focus {
  outline: 2px solid rgba(83, 241, 255, 0.48);
  border-color: rgba(83, 241, 255, 0.62);
}

.booking-filter,
.slot-controls {
  background: rgba(24, 18, 46, 0.58);
  border-color: rgba(162, 124, 255, 0.42);
}

.date-chip {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(175, 142, 255, 0.45);
  color: #fff;
}

.date-chip span {
  color: #e3d7ff;
}

.date-chip.has-open {
  background: rgba(183, 255, 74, 0.18);
  border-color: rgba(183, 255, 74, 0.58);
}

.date-chip.has-open strong {
  color: #e9ffbf;
}

.date-chip.has-closed {
  background: rgba(255, 101, 212, 0.16);
  border-color: rgba(255, 101, 212, 0.56);
}

.date-chip.has-closed strong {
  color: #ffd4f3;
}

.date-chip.active {
  transform: translateY(-1px);
  box-shadow: 0 0 18px rgba(83, 241, 255, 0.3);
}

.badge-open {
  background: rgba(183, 255, 74, 0.2);
  border-color: rgba(183, 255, 74, 0.62);
  color: #ebffc7;
}

.badge-closed {
  background: rgba(255, 101, 212, 0.2);
  border-color: rgba(255, 101, 212, 0.58);
  color: #ffd6f3;
}

.client-initial {
  background: linear-gradient(145deg, rgba(83, 241, 255, 0.38), rgba(255, 101, 212, 0.38));
  border-color: rgba(188, 158, 255, 0.62);
  color: #fff;
}

.confirm-item strong,
.stat-value {
  color: #f8faff;
}

.error {
  color: #ffc2d6;
}

.success-msg {
  color: #c9ffd9;
}

.site-footer {
  border-top: 1px solid rgba(173, 129, 255, 0.36);
  background: rgba(17, 12, 36, 0.58);
}

@media (max-width: 980px) {
  .steps::before {
    display: none;
  }
}

/* Content/Story Enhancements */
.fade-in {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.thoughts-strip {
  text-align: center;
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.thoughts-strip p {
  margin: 0.45rem 0;
  font-size: 1.02rem;
  color: #efe9ff;
}

.stories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
}

.story-card {
  min-height: 170px;
}

.story-card p:last-child {
  margin-top: 0.55rem;
  color: #e2daf6;
}

.mind-facts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem;
}

.fact-card p {
  margin: 0;
  color: #ece5ff;
}

.fact-card span {
  color: #7df7ff;
  font-weight: 700;
  margin-right: 0.35rem;
}

.light-fun-strip {
  display: flex;
  gap: 0.7rem;
  overflow-x: auto;
  padding-bottom: 0.25rem;
  scrollbar-width: thin;
}

.fun-pill {
  flex: 0 0 auto;
  border: 1px solid rgba(175, 142, 255, 0.45);
  background: rgba(255, 255, 255, 0.08);
  color: #f2edff;
  border-radius: 999px;
  padding: 0.58rem 0.9rem;
  font-size: 0.9rem;
  white-space: nowrap;
}

@media (max-width: 980px) {
  .stories-grid,
  .mind-facts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .stories-grid,
  .mind-facts-grid {
    grid-template-columns: 1fr;
  }

  .thoughts-strip p {
    font-size: 0.95rem;
  }
}

/* Floral Elegant Theme Overrides (non-neon, soft premium) */
:root {
  --floral-ivory: #f9f5ef;
  --floral-cream: #f4eee6;
  --floral-blush: #f2e3e5;
  --floral-rose: #d8b8bf;
  --floral-mauve: #9b7f90;
  --floral-sage: #9caf9a;
  --floral-lavender: #cbc2d8;
  --floral-champagne: #e8dbc9;
  --floral-peach: #efd8cb;
  --floral-ink: #4f4952;
  --floral-muted: #7b7480;
  --floral-border: #dfd3c6;
}

body {
  color: var(--floral-ink);
  background:
    radial-gradient(900px 480px at 0% 0%, rgba(242, 227, 229, 0.58), transparent 56%),
    radial-gradient(880px 460px at 100% 0%, rgba(239, 216, 203, 0.46), transparent 58%),
    radial-gradient(860px 420px at 50% 110%, rgba(203, 194, 216, 0.32), transparent 60%),
    linear-gradient(145deg, var(--floral-ivory), #f7f1ea 40%, #fbf8f4 100%);
}

body::before,
body::after {
  opacity: 0.42;
  filter: none;
}

.topbar {
  background: rgba(249, 245, 239, 0.92);
  border-bottom: 1px solid var(--floral-border);
}

.brand {
  color: #5f5663;
  text-shadow: none;
}

.nav-links a {
  color: var(--floral-muted);
}

.nav-links a:hover {
  color: #7d6a79;
}

.card,
.hero-copy,
.hero-note,
.team-card,
.step-item,
.slot-panel,
.details-panel,
.confirm-item,
.stat-card {
  background: rgba(255, 252, 248, 0.88);
  border-color: var(--floral-border);
  box-shadow: 0 8px 22px rgba(126, 109, 96, 0.08), 0 1px 0 rgba(255, 255, 255, 0.88) inset;
  backdrop-filter: blur(2px);
}

.card::before,
.team-card::after,
.hero-note::after,
.steps::before {
  opacity: 0.35;
  filter: none;
}

h1,
h2,
h3,
.brand,
.btn {
  font-family: "Cormorant Garamond", "Georgia", "Times New Roman", serif;
  letter-spacing: 0.01em;
  color: #594f5f;
}

.lead,
.subtle,
.stat-label,
label,
.footer-wrap p,
.team-serial,
.role,
.step-item p,
.story-card p:last-child,
.fact-card p,
.thoughts-strip p {
  color: #746d78;
}

.eyebrow {
  color: #8b7a86;
}

.eyebrow::before,
.eyebrow::after {
  background: linear-gradient(145deg, #d5c1c9, #cfdbc8);
  box-shadow: none;
}

.btn {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  background: linear-gradient(160deg, #d6b7c0, #caa8b4 55%, #c7b9cf);
  color: #ffffff;
  border-color: rgba(171, 136, 151, 0.42);
  border-radius: 14px;
  box-shadow: 0 4px 12px rgba(166, 136, 147, 0.18);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
  background: linear-gradient(160deg, #d0aeb9, #c49daa 55%, #bfaed0);
  box-shadow: 0 6px 14px rgba(162, 131, 143, 0.2);
}

.btn:active {
  transform: translateY(0);
}

.btn-secondary {
  background: linear-gradient(180deg, #f7f3ee 0%, #f2ebe3 100%);
  border-color: #d5c6b8;
  color: #6b5f68;
}

.btn-secondary:hover {
  background: linear-gradient(180deg, #f5efe9 0%, #ece3d8 100%);
}

.home-foam .team-card {
  background: linear-gradient(180deg, #fffdf9 0%, #faf4ed 100%);
  box-shadow: 0 8px 20px rgba(125, 111, 103, 0.08);
}

.stats-soft .stat-value {
  color: #6c5d69;
}

th {
  color: #6e6470;
  background: rgba(230, 216, 221, 0.33);
}

th,
td {
  border-bottom: 1px solid #e7ddd3;
}

input,
select {
  background: #fffdfa;
  border-color: #dccfbe;
  color: #594f5f;
}

input::placeholder {
  color: #a2969f;
}

input:focus,
select:focus {
  outline: 2px solid rgba(185, 164, 178, 0.3);
  border-color: #c8b3be;
}

.booking-filter,
.slot-controls {
  background: rgba(254, 250, 245, 0.85);
  border-color: #e0d2c3;
}

.date-chip {
  background: #fffdfa;
  border-color: #ddcfbf;
  color: #5a505f;
}

.date-chip span {
  color: #8a7f8a;
}

.date-chip.has-open {
  background: #eff4ee;
  border-color: #bfd0bc;
}

.date-chip.has-open strong {
  color: #5f785d;
}

.date-chip.has-closed {
  background: #f7ecee;
  border-color: #dcb8c0;
}

.date-chip.has-closed strong {
  color: #8c6169;
}

.date-chip.active {
  box-shadow: 0 4px 10px rgba(174, 150, 160, 0.14);
}

.badge-open {
  background: #edf3ec;
  border-color: #c7d6c4;
  color: #658063;
}

.badge-closed {
  background: #f6ecee;
  border-color: #e0c5cb;
  color: #8a6670;
}

.client-initial {
  background: linear-gradient(145deg, #e6dde9, #efd9df);
  border-color: #d6c4cf;
  color: #6f6170;
}

.fun-pill {
  border-color: #decebf;
  background: rgba(255, 250, 243, 0.85);
  color: #71667a;
}

.site-footer {
  border-top: 1px solid var(--floral-border);
  background: rgba(250, 246, 240, 0.9);
}

/* Petal click animation */
.petal-layer {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  overflow: hidden;
}

.petal {
  position: fixed;
  width: 10px;
  height: 15px;
  border-radius: 12px 12px 12px 2px;
  transform: rotate(25deg);
  opacity: 0.92;
  animation: petal-float 850ms ease-out forwards;
}

.petal.p1 { background: #e9c7d0; }
.petal.p2 { background: #e8d7e7; }
.petal.p3 { background: #d8e5d3; }
.petal.p4 { background: #f0d8cb; }

@keyframes petal-float {
  0% {
    transform: translate3d(0, 0, 0) rotate(18deg) scale(1);
    opacity: 0.94;
  }
  100% {
    transform: translate3d(var(--tx), var(--ty), 0) rotate(var(--rot)) scale(0.84);
    opacity: 0;
  }
}

/* Refinement Patch: flatter, cleaner, non-glossy */
.card,
.hero-copy,
.hero-note,
.team-card,
.step-item,
.slot-panel,
.details-panel,
.confirm-item,
.stat-card {
  box-shadow: 0 6px 16px rgba(121, 104, 92, 0.08);
  backdrop-filter: none;
}

.card::before,
.team-card::after,
.hero-note::after,
.eyebrow::before,
.eyebrow::after {
  opacity: 0.2;
}

.btn {
  background: #c8a9b2;
  border: 1px solid #b995a2;
  border-radius: 10px;
  box-shadow: none;
  color: #fff;
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.01em;
  padding: 0.68rem 1.08rem;
}

.btn:hover {
  background: #bc9aa6;
  box-shadow: none;
  transform: translateY(-1px);
}

.btn:active {
  transform: translateY(0);
}

.btn-secondary {
  background: #efe6db;
  border-color: #d6c5b5;
  color: #6a5d66;
}

.btn-secondary:hover {
  background: #e8ddcf;
}

.date-range {
  gap: 0.62rem;
}

.date-chip {
  min-width: 112px;
  min-height: 58px;
  border-radius: 8px;
  border-width: 1px;
  box-shadow: none;
  padding: 0.5rem 0.62rem;
}

.date-chip.active {
  box-shadow: none;
  border-color: #b8a2ad;
  outline: 2px solid rgba(186, 164, 176, 0.22);
}

.date-chip.has-open {
  background: #f0f5ef;
}

.date-chip.has-closed {
  background: #f7eeef;
}

.client-initial {
  background: #ece4ea;
  border: 1px solid #d5c6cf;
  color: #6f6170;
}

.fun-pill {
  border-radius: 10px;
}

.petal {
  border-radius: 10px 10px 10px 2px;
}

/* Final Green + Cream refinement overrides */
:root {
  --gc-bg: #f7f4ec;
  --gc-surface: #fdfbf6;
  --gc-card: #fbf8f2;
  --gc-text: #4f5850;
  --gc-muted: #748073;
  --gc-border: #d7d9cb;
  --gc-sage: #95a48f;
  --gc-eucalyptus: #7f9278;
  --gc-moss: #6f8468;
  --gc-champ: #e8dfcf;
}

body {
  background:
    radial-gradient(920px 480px at 0% 0%, rgba(232, 223, 207, 0.36), transparent 58%),
    radial-gradient(860px 470px at 100% 0%, rgba(149, 164, 143, 0.2), transparent 60%),
    linear-gradient(145deg, var(--gc-bg), #f4f0e7 42%, #f8f5ee 100%);
  color: var(--gc-text);
}

.topbar {
  background: rgba(247, 244, 236, 0.95);
  border-bottom-color: var(--gc-border);
}

.brand {
  color: #5d655b;
}

.nav-links a {
  color: #6f786e;
}

.nav-links a:hover {
  color: var(--gc-moss);
}

.card,
.hero-copy,
.hero-note,
.team-card,
.step-item,
.slot-panel,
.details-panel,
.confirm-item,
.stat-card {
  background: var(--gc-surface);
  border-color: var(--gc-border);
  box-shadow: 0 5px 14px rgba(114, 122, 105, 0.08);
}

.card::before,
.team-card::after,
.hero-note::after,
.eyebrow::before,
.eyebrow::after,
.floral-cluster,
.steps::before {
  opacity: 0.16;
}

h1, h2, h3, .brand {
  color: #5a6358;
}

.lead,
.subtle,
.stat-label,
label,
.footer-wrap p,
.team-serial,
.role,
.step-item p,
.story-card p:last-child,
.fact-card p,
.thoughts-strip p,
.fun-pill {
  color: var(--gc-muted);
}

.btn {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  background: var(--gc-eucalyptus);
  border: 1px solid #74856e;
  color: #fff;
  border-radius: 9px;
  box-shadow: none;
  font-weight: 600;
}

.btn:hover {
  background: var(--gc-moss);
  box-shadow: none;
}

.btn-secondary {
  background: #ede7db;
  border-color: #d3cdbf;
  color: #5f6a5d;
}

.btn-secondary:hover {
  background: #e4ddce;
}

.booking-filter,
.slot-controls {
  background: #f7f3ea;
  border-color: #ddd7c8;
}

.date-chip {
  min-width: 116px;
  min-height: 58px;
  border-radius: 8px;
  border: 1px solid #d7d3c4;
  background: #faf7f0;
  color: #596256;
  box-shadow: none;
}

.date-chip span {
  color: #7f887c;
}

.date-chip.has-open {
  background: #edf3ec;
  border-color: #c2d0be;
}

.date-chip.has-open strong {
  color: #5d7857;
}

.date-chip.has-closed {
  background: #f0ece4;
  border-color: #d4c9b7;
}

.date-chip.has-closed strong {
  color: #7c7165;
}

.date-chip.active {
  outline: 2px solid rgba(127, 146, 120, 0.25);
  border-color: #98ab92;
  box-shadow: none;
}

.slot-pick-cell {
  position: relative;
  min-width: 98px;
}

.slot-radio {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.slot-choice {
  display: inline-flex;
  width: 86px;
  justify-content: center;
  align-items: center;
  padding: 0.4rem 0.5rem;
  border: 1px solid #c8cdbd;
  border-radius: 8px;
  background: #f4f1e8;
  color: #5d655b;
  font-size: 0.82rem;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  font-weight: 600;
  cursor: pointer;
  user-select: none;
}

.slot-choice:hover {
  background: #ece8de;
}

.slot-radio:checked + .slot-choice {
  background: #dce7d9;
  border-color: #9eb198;
  color: #4d5f49;
}

.slot-choice.is-disabled {
  background: #f2efea;
  border-color: #d8d2c7;
  color: #9a948a;
  cursor: not-allowed;
}

.booking-submit-row {
  display: flex;
  justify-content: flex-end;
  margin-top: 0.65rem;
}

.field-error {
  min-height: 1.1rem;
  display: block;
  margin-top: 0.2rem;
  color: #8c4747;
  font-size: 0.8rem;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
}

.whatsapp-actions {
  margin-top: 0.9rem;
  display: flex;
  gap: 0.55rem;
  flex-wrap: wrap;
}

.btn.is-disabled {
  opacity: 0.55;
  cursor: not-allowed;
  pointer-events: none;
}

th {
  background: #ebe8df;
  color: #667062;
}

th,
td {
  border-bottom-color: #e3ded2;
}

input,
select {
  background: #fffdf9;
  border-color: #d8d3c6;
  color: #596056;
}

input::placeholder {
  color: #9ba194;
}

input:focus,
select:focus {
  outline: 2px solid rgba(150, 165, 143, 0.26);
  border-color: #aebbaa;
}

.badge-open {
  background: #eaf1e8;
  border-color: #c2d2bf;
  color: #60795b;
}

.badge-closed {
  background: #f1ede6;
  border-color: #d7ccbc;
  color: #7b7063;
}

.client-initial {
  background: #e9ece4;
  border-color: #cfd6c9;
  color: #667060;
}

.fun-pill {
  border-color: #d8d2c6;
  background: #f6f3ec;
  border-radius: 10px;
}

/* Prominent but elegant petals */
.petal {
  border-radius: 14px 14px 14px 3px;
  opacity: 0.9;
  filter: saturate(0.95);
}

.petal.p1 { background: #d8e2d2; }
.petal.p2 { background: #e8ddcd; }
.petal.p3 { background: #ccd8c6; }
.petal.p4 { background: #e3d6c5; }

@keyframes petal-float {
  0% {
    transform: translate3d(0, 0, 0) rotate(12deg) scale(1.02);
    opacity: 0.95;
  }
  100% {
    transform: translate3d(var(--tx), var(--ty), 0) rotate(var(--rot)) scale(0.82);
    opacity: 0;
  }
}

/* Readability & contrast refinement */
body {
  color: #2f372f;
}

h1, h2, h3, .brand {
  color: #2f3b31;
}

.lead,
.subtle,
.stat-label,
label,
.footer-wrap p,
.team-serial,
.role,
.step-item p,
.story-card p:last-child,
.fact-card p,
.thoughts-strip p,
.fun-pill {
  color: #4d5a4e;
}

.nav-links a {
  color: #3f4d41;
  font-weight: 500;
}

.nav-links a:hover {
  color: #2f3e31;
}

.eyebrow {
  color: #5f6a5f;
}

.card,
.hero-copy,
.hero-note,
.team-card,
.step-item,
.slot-panel,
.details-panel,
.confirm-item,
.stat-card {
  background: #fcfaf4;
}

.btn {
  background: #6f8468;
  border-color: #61775b;
  color: #ffffff;
}

.btn:hover {
  background: #60765a;
}

.btn-secondary {
  background: #ebe5d8;
  border-color: #cfc6b6;
  color: #485246;
}

.btn-secondary:hover {
  background: #e2dbc9;
}

.btn-linkedin {
  background: #dfe7de;
  border-color: #bdcbb9;
  color: #3f5a44;
}

.btn-linkedin:hover {
  background: #d3ddcf;
}

.team-actions {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

.team-card h3 {
  color: #2e3a30 !important;
  font-weight: 700;
}

.team-card .team-serial {
  color: #4d5f4f !important;
  font-weight: 600;
}

.team-card .subtle {
  color: #4b5a4d !important;
}

.payment-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(220px, 1fr));
  gap: 0.75rem;
}

.qr-preview-wrap {
  margin-top: 0.7rem;
}

.qr-preview {
  width: 140px;
  height: 140px;
  object-fit: cover;
  border: 1px solid #d8d3c6;
  border-radius: 8px;
  background: #fff;
}

.payment-info {
  margin-top: 0.9rem;
  padding: 0.9rem;
  border: 1px solid #d8d3c6;
  border-radius: 10px;
  background: #f9f6ef;
}

.payment-info h3 {
  margin: 0 0 0.45rem;
}

.payment-list p {
  margin: 0.22rem 0;
}

.confirm-qr {
  margin-top: 0.6rem;
  width: 170px;
  height: 170px;
  object-fit: cover;
  border: 1px solid #d8d3c6;
  border-radius: 8px;
  background: #fff;
}

@media (max-width: 760px) {
  .payment-grid {
    grid-template-columns: 1fr;
  }
}

.stories-grid .eyebrow,
.mind-facts-grid .eyebrow,
.thoughts-strip .eyebrow {
  color: #5d6860;
}

.fact-card span {
  color: #527154;
}

th {
  color: #4a564d;
  background: #e9e5da;
}

td {
  color: #4c564d;
}

input,
select {
  color: #414b41;
  background: #fffdf9;
}

input::placeholder {
  color: #778077;
}

.date-chip {
  color: #3f4b40;
}

.date-chip span {
  color: #5f6a5f;
}

.date-chip.has-open strong {
  color: #3d5e3d;
}

.date-chip.has-closed strong {
  color: #6c6256;
}

.slot-choice {
  color: #435043;
}

.slot-radio:checked + .slot-choice {
  color: #2f4e33;
}

.badge-open {
  color: #4c6547;
}

.badge-closed {
  color: #6e6458;
}

.client-initial {
  color: #4e5a4d;
}

.confirm-item strong,
.stat-value {
  color: #364138;
}

.tiny a {
  color: #4d6650;
  font-weight: 600;
}

.error {
  color: #8c4747;
}

.success-msg {
  color: #3f6747;
}

@media (max-width: 640px) {
  .team-actions {
    width: 100%;
  }
}

/* ============================================================
   MODERN CLASSY & BOTANICAL ENHANCEMENTS
   ============================================================ */

/* ─── Typography: Playfair Display for headings ─── */
h1, h2 {
  font-family: "Playfair Display", "Cormorant Garamond", "Book Antiqua", Georgia, serif;
  letter-spacing: -0.015em;
}

h3 {
  font-family: "Playfair Display", "Cormorant Garamond", Georgia, serif;
  letter-spacing: -0.005em;
}

.brand {
  font-family: "Playfair Display", "Cormorant Garamond", Georgia, serif !important;
  font-size: 1.32rem !important;
  letter-spacing: 0.03em;
  color: #3a4a3c !important;
}

.brand::before {
  content: "✿";
  margin-right: 0.4rem;
  font-size: 1.18rem;
  color: rgba(111, 132, 104, 0.7);
}

/* ─── Nav refinements ─── */
.nav-links a {
  font-family: "Inter", "Segoe UI", Arial, sans-serif !important;
  font-size: 0.9rem !important;
  letter-spacing: 0.02em;
  transition: color 0.2s ease;
}

/* ─── Hero copy enhancement ─── */
.hero-copy {
  background: linear-gradient(165deg, #fefcf8 0%, #f3ede3 100%) !important;
  border-color: #cac1b0 !important;
}

.hero-copy h1 {
  line-height: 1.18;
  font-size: clamp(1.85rem, 2.4vw, 2.6rem) !important;
}

.hero-copy .lead {
  font-size: 1.0rem;
  line-height: 1.72;
  color: #4a5a4c !important;
}

/* Larger, more vibrant floral clusters */
.floral-cluster span:nth-child(1) { background: rgba(130, 172, 134, 0.72) !important; }
.floral-cluster span:nth-child(2) { background: rgba(208, 168, 143, 0.68) !important; }
.floral-cluster span:nth-child(3) { background: rgba(172, 158, 210, 0.64) !important; }
.floral-cluster span:nth-child(4) { background: rgba(148, 192, 154, 0.7) !important; }

.card::before,
.team-card::after,
.hero-note::after,
.eyebrow::before,
.eyebrow::after,
.floral-cluster,
.steps::before {
  opacity: 0.26 !important;
}

/* ─── Eyebrow dots: richer botanical gradient ─── */
.eyebrow {
  letter-spacing: 0.08em !important;
  font-size: 0.78rem !important;
}

.eyebrow::before,
.eyebrow::after {
  background: linear-gradient(145deg, #90b48a, #c9a07a) !important;
  opacity: 1 !important;
  width: 7px !important;
  height: 7px !important;
}

/* ─── Thoughts Strip ─── */
.thoughts-strip {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  gap: 0.1rem !important;
  padding: 2.4rem 2rem !important;
  text-align: center;
}

.thoughts-ornament {
  display: block;
  font-size: 1.1rem;
  color: rgba(111, 132, 104, 0.45);
  line-height: 1.4;
}

.thoughts-divider {
  display: block;
  width: 48px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(111, 132, 104, 0.35), transparent);
  margin: 0.55rem auto;
}

.thoughts-strip p {
  margin: 0 !important;
  font-family: "Playfair Display", "Cormorant Garamond", Georgia, serif !important;
  font-style: italic !important;
  font-size: 1.06rem !important;
  line-height: 1.65 !important;
  color: #2f3b31 !important;
  max-width: 58ch;
  letter-spacing: 0.005em;
}

/* ─── Stories label ─── */
.stories-label {
  text-align: center;
  padding: 0.2rem 0 0;
}

/* ─── Story Cards ─── */
.stories-grid {
  align-items: start;
}

.story-card {
  display: flex !important;
  flex-direction: column !important;
  gap: 0.7rem;
  padding: 1.65rem 1.5rem 1.45rem !important;
  position: relative;
  overflow: hidden;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
  min-height: 200px;
}

.story-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 44px rgba(60, 85, 60, 0.16) !important;
}

.stories-grid .story-card:nth-child(2) {
  margin-top: 1.6rem;
}

.story-card::after {
  content: "\201C";
  position: absolute;
  top: -0.6rem;
  right: 0.8rem;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 6rem;
  color: rgba(111, 132, 104, 0.09);
  line-height: 1;
  pointer-events: none;
  z-index: 0;
}

.story-header {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  position: relative;
  z-index: 1;
}

.story-num {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 3rem;
  font-weight: 700;
  color: rgba(111, 132, 104, 0.16);
  line-height: 1;
  flex-shrink: 0;
}

blockquote.story-body {
  margin: 0;
  padding: 0 0 0 0.95rem;
  border-left: 2.5px solid rgba(111, 132, 104, 0.38);
  font-style: italic;
  font-family: "Lora", "Palatino Linotype", Georgia, serif;
  font-size: 0.97rem;
  line-height: 1.74;
  color: #2f3b31 !important;
  position: relative;
  z-index: 1;
}

.story-shift {
  margin: auto 0 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  font-size: 0.75rem;
  color: #7a9272 !important;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding-top: 0.7rem;
  border-top: 1px solid rgba(111, 132, 104, 0.16);
  position: relative;
  z-index: 1;
}

/* ─── Mind Facts ─── */
.mind-facts-grid {
  gap: 0.9rem !important;
}

.fact-card {
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-left-color 0.22s ease;
  border-left: 3px solid rgba(111, 132, 104, 0.2) !important;
  padding: 1.1rem 1.2rem !important;
}

.fact-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(60, 85, 60, 0.13) !important;
  border-left-color: rgba(111, 132, 104, 0.6) !important;
}

.fact-card p {
  line-height: 1.65 !important;
  color: #344035 !important;
  font-size: 0.93rem;
}

.fact-card span {
  color: #6f8468 !important;
  font-size: 1.05rem;
  margin-right: 0.4rem;
  display: inline-block;
}

/* ─── How It Works Steps ─── */
.steps {
  position: relative;
}

.steps::before {
  content: "" !important;
  position: absolute;
  left: calc(12.5% + 17px);
  right: calc(12.5% + 17px);
  top: 40px;
  height: 1.5px;
  background: linear-gradient(90deg, rgba(111, 132, 104, 0.18), rgba(111, 132, 104, 0.42) 50%, rgba(111, 132, 104, 0.18));
  opacity: 1 !important;
  z-index: 0;
}

.step-item {
  position: relative;
  z-index: 1;
  transition: transform 0.22s ease;
  padding: 1.1rem !important;
}

.step-item:hover {
  transform: translateY(-3px);
}

.step-item > span {
  width: 36px !important;
  height: 36px !important;
  font-size: 0.92rem !important;
  font-family: "Playfair Display", Georgia, serif !important;
  font-weight: 700 !important;
  background: linear-gradient(145deg, #e4ede0, #d4e4cf) !important;
  color: #3a5a3e !important;
  border: 1.5px solid rgba(111, 132, 104, 0.35) !important;
  box-shadow: 0 3px 10px rgba(111, 132, 104, 0.2) !important;
}

.step-item h3 {
  font-size: 0.98rem !important;
  color: #2f3b31 !important;
  margin-top: 0.5rem;
}

.step-item p {
  color: #4d5a4e !important;
  font-size: 0.88rem;
}

/* ─── Stats Section ─── */
.stat-card {
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  padding: 1.3rem 1.1rem !important;
  border-top: 3px solid rgba(111, 132, 104, 0.2) !important;
}

.stat-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(60, 85, 60, 0.14) !important;
}

.stat-value {
  font-family: "Playfair Display", Georgia, serif !important;
  font-size: 1.9rem !important;
  font-weight: 700 !important;
  color: #2f3b31 !important;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin: 0 0 0.35rem !important;
}

.stat-label {
  font-family: "Inter", "Segoe UI", Arial, sans-serif !important;
  font-size: 0.78rem !important;
  letter-spacing: 0.05em !important;
  text-transform: uppercase !important;
  color: #6f7e6e !important;
  margin: 0 !important;
}

/* ─── Fun Pills ─── */
.light-fun-strip {
  gap: 0.65rem !important;
}

.fun-pill {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  font-size: 0.88rem !important;
  padding: 0.55rem 1.05rem !important;
  border-radius: 999px !important;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
  cursor: default;
  font-weight: 500;
}

.fun-pill:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(60, 85, 60, 0.12);
}

.fun-pill:nth-child(2n) {
  background: #edf3eb !important;
  border-color: #bfcfbb !important;
  color: #45604a !important;
}

.fun-pill:nth-child(3n) {
  background: #f2ede2 !important;
  border-color: #cfc5b0 !important;
  color: #5a5040 !important;
}

.fun-pill:nth-child(4n) {
  background: #ede9f4 !important;
  border-color: #c8c0d8 !important;
  color: #4f4868 !important;
}

/* ─── Approach Section ─── */
#approach p:not(.eyebrow) {
  font-size: 1.02rem !important;
  line-height: 1.78 !important;
  max-width: 72ch;
  color: #3a4a3c !important;
}

/* ─── Team Cards ─── */
.team-card {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.team-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(60, 85, 60, 0.14) !important;
}

/* ─── Buttons — refined pill shape ─── */
.btn {
  border-radius: 10px !important;
  font-family: "Inter", "Segoe UI", Arial, sans-serif !important;
  letter-spacing: 0.02em !important;
  transition: background 0.2s ease, transform 0.18s ease, box-shadow 0.2s ease !important;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(80, 110, 75, 0.22) !important;
}

.btn-secondary:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(80, 90, 75, 0.15) !important;
}

/* ─── Footer ─── */
.site-footer {
  background: linear-gradient(180deg, transparent 0%, rgba(226, 218, 202, 0.25) 100%);
}

.footer-wrap {
  position: relative;
}

.footer-wrap p:first-child {
  font-family: "Playfair Display", Georgia, serif !important;
  font-style: italic;
  font-size: 0.95rem !important;
  color: #4a5a4c !important;
}

/* ─── Petal colors: more vivid ─── */
.petal.p1 { background: #b8d4b0 !important; }
.petal.p2 { background: #e8c8a8 !important; }
.petal.p3 { background: #a8c8b8 !important; }
.petal.p4 { background: #d8c0b0 !important; }

/* ─── Responsive ─── */
@media (max-width: 980px) {
  .stories-grid .story-card:nth-child(2) {
    margin-top: 0;
  }
  .steps::before {
    display: none;
  }
}

@media (max-width: 640px) {
  .story-card::after {
    font-size: 4.5rem;
  }
  .story-num {
    font-size: 2.2rem;
  }
  .stat-value {
    font-size: 1.55rem !important;
  }
  .thoughts-strip p {
    font-size: 0.97rem !important;
  }
}

/* ─── User Memory Banner ─── */
.user-memory-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 0.9rem 1.1rem;
  margin-bottom: 1rem;
  background: #edf3eb;
  border: 1px solid #bfcfbb;
  border-radius: 12px;
  border-left: 4px solid #6f8468;
}

.memory-welcome {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.memory-greeting {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.02rem;
  color: #2f3b31;
  font-style: italic;
}

.memory-greeting strong {
  font-style: normal;
  color: #3a5a3e;
}

.memory-hint {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  font-size: 0.8rem;
  color: #5a7060;
}

.memory-actions {
  display: flex;
  gap: 0.5rem;
  flex-shrink: 0;
  flex-wrap: wrap;
}

.btn-memory-continue {
  background: #6f8468 !important;
  border-color: #61775b !important;
  color: #fff !important;
  padding: 0.5rem 1rem !important;
  font-size: 0.88rem !important;
}

.memory-actions .btn-secondary {
  padding: 0.5rem 0.9rem !important;
  font-size: 0.88rem !important;
}

@media (max-width: 640px) {
  .user-memory-banner {
    flex-direction: column;
    align-items: flex-start;
  }
  .memory-actions {
    width: 100%;
  }
}

/* ─── User Nav: initials badge + dropdown ─── */
.user-nav {
  position: relative;
  display: inline-block;
}

.user-trigger {
  display: flex;
  align-items: center;
  gap: 0.38rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #3f4d41;
  line-height: 1;
}

.user-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #6f8468;
  color: #fff;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  flex-shrink: 0;
}

.user-nav-name {
  font-size: 0.9rem;
  font-weight: 500;
  color: #3f4d41;
  max-width: 100px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.user-nav-caret {
  font-size: 0.65rem;
  color: #748073;
}

.user-dropdown {
  display: none;
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  background: #fcfaf4;
  border: 1px solid #d7d9cb;
  border-radius: 11px;
  box-shadow: 0 10px 28px rgba(60, 80, 60, 0.14);
  min-width: 155px;
  z-index: 200;
  overflow: hidden;
}

.user-dropdown.open {
  display: block;
}

.user-dropdown a {
  display: block;
  padding: 0.65rem 1rem;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  font-size: 0.88rem;
  color: #2f3b31;
  text-decoration: none;
  border-bottom: 1px solid #ece8de;
  transition: background 0.15s ease;
}

.user-dropdown a:last-child {
  border-bottom: none;
}

.user-dropdown a:hover {
  background: #edf3eb;
}

/* admin link slight mute */
.nav-admin-link {
  color: #8a9487 !important;
  font-size: 0.85rem !important;
}

/* ─── User Login Page ─── */
.user-login-shell {
  max-width: 480px;
  margin: 0 auto;
}

.user-login-form {
  margin-top: 1.2rem;
}

/* ─── My Bookings Page ─── */
.mybookings-empty {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.9rem;
}

/* ─── Profile Page ─── */
.profile-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin: 1.2rem 0;
}

.profile-item {
  background: #f7f4ec;
  border: 1px solid #d7d9cb;
  border-radius: 10px;
  padding: 0.75rem 0.9rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.profile-label {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #748073;
}

.profile-value {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.05rem;
  color: #2f3b31;
}

.profile-actions {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

/* ─── Admin User Directory actions ─── */
.user-dir-actions {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  align-items: center;
}

@media (max-width: 640px) {
  .profile-grid {
    grid-template-columns: 1fr;
  }
  .user-nav-name {
    display: none;
  }
  .user-dir-actions {
    flex-direction: column;
    width: 100%;
  }
}

/* =========================================================
   Responsive Patch (Phone First + Tablet)
   UI-only; preserves existing behavior
========================================================= */

img,
svg,
video {
  max-width: 100%;
  height: auto;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid #c8d3c8;
  border-radius: 10px;
  background: #f8f7f2;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  padding: 0;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: #2f3b31;
}

@media (max-width: 1024px) {
  .container {
    width: min(1120px, 94%);
  }

  .hero-surface {
    grid-template-columns: 1fr;
  }

  .hero-copy,
  .hero-note {
    width: 100%;
  }

  .team-grid,
  .stories-grid,
  .mind-facts-grid,
  .stats-soft {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .booking-form.single-panel {
    grid-template-columns: 1fr;
  }

  .admin-top-controls {
    grid-template-columns: 1fr;
  }

  .sheet-picker,
  .upload-form {
    width: 100%;
  }

  .upload-download-wrap {
    width: 100%;
    align-items: stretch;
  }

  .upload-download-wrap .btn {
    width: 100%;
  }

  .confirm-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .topbar {
    backdrop-filter: none;
  }

  .nav-wrap {
    min-height: 68px;
    position: relative;
    gap: 0.75rem;
  }

  .brand {
    font-size: 1rem;
    max-width: calc(100% - 64px);
    line-height: 1.25;
  }

  .nav-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .nav-links {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 1px);
    display: none;
    flex-direction: column;
    gap: 0;
    background: #f9f8f4;
    border: 1px solid #d8ddcf;
    border-radius: 12px;
    box-shadow: 0 10px 24px rgba(47, 53, 56, 0.09);
    padding: 0.35rem 0;
    z-index: 60;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links > a,
  .nav-links .user-trigger {
    width: 100%;
    text-align: left;
    padding: 0.72rem 0.95rem;
    border-radius: 0;
  }

  .nav-links > a {
    border-bottom: 1px solid #ecefe6;
  }

  .nav-links > a:last-child {
    border-bottom: 0;
  }

  .nav-links .user-nav {
    width: 100%;
    border-bottom: 1px solid #ecefe6;
  }

  .nav-links .user-dropdown {
    position: static;
    display: block;
    border: 0;
    box-shadow: none;
    background: transparent;
    min-width: 0;
    padding: 0 0.65rem 0.5rem;
  }

  .nav-links .user-dropdown a {
    border: 1px solid #e5e9dd;
    border-radius: 9px;
    margin-top: 0.35rem;
    background: #fff;
  }

  .main-content {
    padding-top: 1.15rem;
    gap: 1rem;
  }

  .card {
    padding: 1.1rem;
    border-radius: 14px;
  }

  .hero-actions {
    width: 100%;
  }

  .hero-actions .btn {
    flex: 1 1 220px;
  }

  .thoughts-strip {
    gap: 0.65rem;
  }

  .team-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.55rem;
  }

  .booking-filter,
  .slot-controls,
  .form-grid,
  .payment-grid {
    grid-template-columns: 1fr;
  }

  .booking-filter .btn,
  .slot-controls .btn,
  .booking-submit-row .btn,
  .whatsapp-actions .btn {
    width: 100%;
  }

  .date-range {
    gap: 0.45rem;
    overflow-x: auto;
    padding-bottom: 0.35rem;
    scroll-snap-type: x proximity;
  }

  .date-chip {
    min-width: 92px;
    scroll-snap-align: start;
  }

  .slot-choice {
    min-width: 84px;
  }

  .confirm-grid {
    grid-template-columns: 1fr;
  }

  .whatsapp-actions {
    grid-template-columns: 1fr;
  }

  .profile-actions .btn {
    width: 100%;
  }

  .footer-wrap {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.35rem;
  }
}

@media (max-width: 700px) {
  h1 {
    font-size: clamp(1.45rem, 6.8vw, 1.9rem);
    line-height: 1.26;
  }

  h2 {
    font-size: clamp(1.2rem, 5.8vw, 1.55rem);
  }

  p,
  label,
  td,
  th,
  input,
  select,
  textarea,
  .btn {
    font-size: 0.95rem;
  }

  .lead,
  .subtle {
    line-height: 1.55;
  }

  .team-grid,
  .stories-grid,
  .mind-facts-grid,
  .stats-soft,
  .steps {
    grid-template-columns: 1fr;
  }

  .stories-grid {
    gap: 0.8rem;
  }

  .table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: 10px;
    border: 1px solid #d6ddcf;
    background: #fff;
  }

  .slots-table,
  .admin-table,
  .profile-table,
  .table-wrap table {
    min-width: 760px;
  }

  .admin-shell .row-between {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.7rem;
  }

  .admin-actions.top-save,
  .admin-actions {
    position: static;
    width: 100%;
  }

  .admin-actions .btn,
  .row-between .btn,
  .user-dir-actions .btn,
  .user-dir-actions form {
    width: 100%;
  }

  .user-dir-actions form .btn {
    width: 100%;
  }

  .upload-form input[type="file"] {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .container {
    width: min(1120px, 95%);
  }

  .main-content {
    padding-top: 0.95rem;
    padding-bottom: 1.9rem;
  }

  .card {
    padding: 0.95rem;
  }

  .hero-copy {
    padding: 1.1rem;
  }

  .hero-note {
    padding: 0.95rem;
  }

  .hero-actions .btn,
  .booking-submit-row .btn,
  .profile-actions .btn,
  .team-actions .btn,
  .whatsapp-actions .btn,
  .upload-download-wrap .btn {
    width: 100%;
  }

  .date-chip {
    min-width: 86px;
    padding: 0.46rem 0.52rem;
  }

  .confirm-item {
    padding: 0.7rem;
  }

  .payment-list p {
    line-height: 1.45;
  }

  .site-footer {
    padding: 0.95rem 0;
  }
}

/* ============================================================
   COMPREHENSIVE MOBILE RESPONSIVE
   ============================================================ */

/* ─── Hamburger button: base (hidden on desktop) ─── */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  padding: 6px;
  background: none;
  border: 1.5px solid rgba(111, 132, 104, 0.32);
  border-radius: 8px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: #3a4a3c;
  border-radius: 2px;
  transition: transform 0.22s ease, opacity 0.2s ease;
  transform-origin: center;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ─── Tablet (≤980px) ─── */
@media (max-width: 980px) {
  .hero-surface,
  .booking-form,
  .section-grid,
  .admin-top-controls {
    grid-template-columns: 1fr !important;
  }

  .steps,
  .stats-soft,
  .team-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .stories-grid,
  .mind-facts-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .stories-grid .story-card:nth-child(2) {
    margin-top: 0 !important;
  }

  .steps::before {
    display: none !important;
  }
}

/* ─── Mobile nav: hamburger pattern (≤768px) ─── */
@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .nav-wrap {
    flex-wrap: wrap;
    align-items: center;
    min-height: 60px !important;
    padding: 0.5rem 0 !important;
    gap: 0;
  }

  .brand {
    flex: 1;
    font-size: 1.15rem !important;
  }

  /* Hide nav by default; show toggle */
  .nav-links {
    display: none !important;
    width: 100%;
    flex-direction: column !important;
    gap: 0 !important;
    padding: 0.3rem 0 0.6rem !important;
    margin-top: 0.4rem;
    border-top: 1px solid #ddd8cc;
    order: 3;
  }

  .nav-links.open {
    display: flex !important;
  }

  /* Nav items as stacked rows */
  .nav-links > a,
  .nav-links > .nav-admin-link {
    display: block;
    padding: 0.68rem 0.2rem !important;
    border-bottom: 1px solid #ede9df !important;
    font-size: 0.95rem !important;
    color: #2f3b31 !important;
    font-weight: 500 !important;
  }

  .nav-links > a:last-child {
    border-bottom: none !important;
  }

  /* User nav in mobile menu: flat, full-width */
  .user-nav {
    width: 100%;
    display: block !important;
    position: static !important;
    padding: 0 !important;
    border-bottom: 1px solid #ede9df;
  }

  .user-trigger {
    width: 100%;
    justify-content: flex-start;
    padding: 0.68rem 0.2rem;
  }

  .user-nav-name {
    max-width: none !important;
    flex: 1;
  }

  /* Dropdown becomes inline on mobile */
  .user-dropdown {
    position: static !important;
    box-shadow: none !important;
    border: none !important;
    border-radius: 0 !important;
    background: transparent !important;
    min-width: 0 !important;
    padding-left: 2rem;
    display: none;
  }

  .user-dropdown.open {
    display: block !important;
  }

  .user-dropdown a {
    padding: 0.45rem 0 !important;
    border-bottom: none !important;
    font-size: 0.88rem !important;
    color: #5a7060 !important;
  }

  .user-dropdown a:hover {
    background: none !important;
    text-decoration: underline;
  }
}

/* ─── Mobile: general layout (≤640px) ─── */
@media (max-width: 640px) {
  .container {
    width: 100%;
    padding-left: 0.9rem;
    padding-right: 0.9rem;
    box-sizing: border-box;
  }

  .main-content {
    padding: 1rem 0 2rem !important;
    gap: 0.8rem !important;
  }

  .card,
  .hero-copy,
  .hero-note,
  .slot-panel,
  .details-panel {
    padding: 1rem !important;
    border-radius: 14px !important;
  }

  h1 {
    font-size: clamp(1.4rem, 5vw, 1.75rem) !important;
    line-height: 1.22 !important;
  }

  h2 {
    font-size: clamp(1.2rem, 4vw, 1.45rem) !important;
  }

  h3 {
    font-size: 0.97rem !important;
  }

  /* One column for all grids */
  .steps,
  .stats-soft,
  .team-grid,
  .stories-grid,
  .mind-facts-grid {
    grid-template-columns: 1fr !important;
  }

  /* Story card tweaks */
  .story-card::after {
    font-size: 4rem;
  }
  .story-num {
    font-size: 2rem;
  }

  /* Stats */
  .stat-value {
    font-size: 1.6rem !important;
  }

  /* Thoughts */
  .thoughts-strip {
    padding: 1.4rem 1rem !important;
  }
  .thoughts-strip p {
    font-size: 0.95rem !important;
  }

  /* Fun pills: slightly smaller */
  .fun-pill {
    font-size: 0.82rem !important;
    padding: 0.44rem 0.8rem !important;
  }

  /* Footer */
  .site-footer {
    padding: 0.8rem 0 1.2rem;
  }

  .footer-wrap {
    flex-direction: column !important;
    gap: 0.25rem !important;
  }

  /* Profile grid: 1 col */
  .profile-grid {
    grid-template-columns: 1fr !important;
  }

  /* Admin top controls */
  .admin-top-controls {
    grid-template-columns: 1fr !important;
  }

  .sheet-picker,
  .upload-form {
    flex-direction: column;
    gap: 0.5rem;
  }

  .sheet-picker label,
  .upload-form label {
    min-width: 0 !important;
  }

  .user-dir-actions {
    flex-direction: column;
    width: 100%;
  }

  .user-dir-actions a,
  .user-dir-actions button {
    width: 100%;
    text-align: center;
  }
}

/* ─── Slot table: mobile card-style (≤600px) ─── */
@media (max-width: 600px) {
  /* Remove wide min-width so table fits */
  .slots-table {
    min-width: 0 !important;
  }

  /* Hide: Day (col 2), Therapist (col 5), Client (col 7) */
  .slots-table th:nth-child(2),
  .slots-table td:nth-child(2),
  .slots-table th:nth-child(5),
  .slots-table td:nth-child(5),
  .slots-table th:nth-child(7),
  .slots-table td:nth-child(7) {
    display: none !important;
  }

  /* Tighten remaining columns */
  .slots-table th,
  .slots-table td {
    padding: 0.5rem 0.3rem !important;
    font-size: 0.82rem !important;
  }

  /* Date column — slightly bolder */
  .slots-table td:nth-child(3) {
    font-weight: 600;
    color: #2f3b31;
  }

  /* Slot time — green tint */
  .slots-table td:nth-child(4) {
    color: #6f8468;
  }

  /* Choose cell: tighter */
  .slot-pick-cell {
    min-width: 56px !important;
  }

  .slot-choice {
    width: 56px !important;
    font-size: 0.75rem !important;
    padding: 0.35rem 0.25rem !important;
  }

  /* Date chips: smaller */
  .date-chip {
    min-width: 64px !important;
    min-height: 48px !important;
    padding: 0.3rem 0.35rem !important;
  }

  .date-chip span {
    font-size: 0.68rem !important;
  }

  .date-chip strong {
    font-size: 0.75rem !important;
  }

  /* Slot controls filter */
  .booking-filter {
    flex-direction: column;
    gap: 0.5rem;
  }

  .slot-controls label {
    max-width: 100% !important;
  }
}

/* ─── My Bookings table: mobile (≤600px) ─── */
@media (max-width: 600px) {
  .my-bookings-table {
    min-width: 0 !important;
  }

  /* Hide Calendar column (col 4) */
  .my-bookings-table th:nth-child(4),
  .my-bookings-table td:nth-child(4) {
    display: none !important;
  }

  .my-bookings-table th,
  .my-bookings-table td {
    padding: 0.48rem 0.3rem !important;
    font-size: 0.83rem !important;
  }
}

/* ─── Booking confirmation (≤600px) ─── */
@media (max-width: 600px) {
  .confirm-grid {
    grid-template-columns: 1fr !important;
  }

  .payment-grid {
    grid-template-columns: 1fr !important;
  }

  .whatsapp-actions {
    flex-direction: column;
    gap: 0.5rem;
  }

  .whatsapp-actions .btn {
    width: 100%;
    text-align: center;
  }
}

/* ─── Very small screens (≤400px) ─── */
@media (max-width: 400px) {
  .slot-choice {
    width: 48px !important;
    font-size: 0.7rem !important;
  }

  .date-chip {
    min-width: 56px !important;
  }

  .btn {
    font-size: 0.87rem !important;
    padding: 0.6rem 0.85rem !important;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
    text-align: center;
  }
}

/* ─── Therapist Avatar & Image ─── */
.therapist-avatar-wrap {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 0 0.75rem 0;
  flex-shrink: 0;
  border: 2px solid rgba(111, 132, 104, 0.28);
  background: linear-gradient(145deg, #e4ede0, #d4e4cf);
  display: flex;
  align-items: center;
  justify-content: center;
}

.therapist-photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.therapist-initials {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: #3a5a3e;
  line-height: 1;
  user-select: none;
}

/* Slightly larger avatar on team card hover */
.team-card:hover .therapist-avatar-wrap {
  border-color: rgba(111, 132, 104, 0.55);
  box-shadow: 0 4px 14px rgba(60, 90, 60, 0.14);
}

/* ─── View Profile button ─── */
.btn-linked-profile {
  background: #dfe7de !important;
  border-color: #bdcbb9 !important;
  color: #3f5a44 !important;
}

.btn-linked-profile:hover {
  background: #d3ddcf !important;
}

/* ─── Admin: therapist thumbnail in table ─── */
.admin-therapist-thumb {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  border: 1px solid #d7d3c4;
  display: block;
}

.profile-img-cell {
  min-width: 140px;
}

.profile-table {
  min-width: 1100px;
}

/* ─── Team card: layout update for avatar ─── */
.team-card {
  display: flex;
  flex-direction: column;
}

.team-card .team-actions {
  margin-top: auto;
  padding-top: 0.6rem;
}

/* ─── Mobile: avatar sizing ─── */
@media (max-width: 640px) {
  .therapist-avatar-wrap {
    width: 60px;
    height: 60px;
  }

  .therapist-initials {
    font-size: 1.35rem;
  }
}

/* ─── WhatsApp floating button ─── */
.wa-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 200;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  background: #25d366;
  color: #fff;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  padding: 0.65rem 1.1rem 0.65rem 0.85rem;
  border-radius: 50px;
  box-shadow: 0 4px 18px rgba(37, 211, 102, 0.38);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  letter-spacing: 0.01em;
}

.wa-float:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.48);
  color: #fff;
}

.wa-float svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  fill: #fff;
}

@media (max-width: 480px) {
  .wa-float {
    bottom: 1rem;
    right: 1rem;
    padding: 0.6rem 0.9rem 0.6rem 0.75rem;
    font-size: 0.82rem;
  }
}

/* ─── About page ─── */
.about-hero {
  text-align: center;
  padding: 2.5rem 1.5rem 2rem;
}

.about-hero h1 {
  font-size: clamp(2rem, 5vw, 2.8rem);
  margin-bottom: 0.6rem;
}

.about-body {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.about-body p {
  font-size: 1.04rem;
  line-height: 1.78;
  color: var(--text);
}

.about-belief {
  font-style: italic;
  font-size: 1.08rem !important;
  color: #4a5e48 !important;
  border-left: 3px solid rgba(111, 132, 104, 0.45);
  padding-left: 1rem;
  margin: 0.5rem 0;
}

.about-why-list {
  list-style: none;
  padding: 0;
  margin: 0.5rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.about-why-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 1rem;
  line-height: 1.55;
  color: var(--text);
}

.about-why-list li::before {
  content: "✦";
  color: rgba(111, 132, 104, 0.7);
  font-size: 0.75rem;
  margin-top: 0.3rem;
  flex-shrink: 0;
}

/* ─── Nav Contact button ─── */
.nav-contact-btn {
  color: #3a7d44 !important;
  font-weight: 600 !important;
  border: 1.5px solid rgba(58, 125, 68, 0.35);
  border-radius: 20px;
  padding: 0.28rem 0.85rem !important;
  transition: background 0.18s, border-color 0.18s;
}

.nav-contact-btn:hover {
  background: rgba(58, 125, 68, 0.08);
  border-color: rgba(58, 125, 68, 0.6);
}

/* ─── Mobile: compact hero + bigger therapist cards ─── */
@media (max-width: 640px) {
  /* Tighter hero so it doesn't dominate the screen */
  .hero-copy {
    padding: 1rem 1rem 0.9rem !important;
  }

  .hero-copy h1 {
    font-size: clamp(1.25rem, 5.5vw, 1.55rem) !important;
    line-height: 1.2 !important;
    margin-bottom: 0.4rem !important;
  }

  .hero-copy .lead {
    font-size: 0.88rem !important;
    line-height: 1.55 !important;
    margin-bottom: 0.6rem !important;
  }

  .hero-actions {
    gap: 0.5rem !important;
    margin-top: 0.5rem !important;
  }

  .hero-actions .btn {
    padding: 0.55rem 1rem !important;
    font-size: 0.87rem !important;
  }

  .hero-note {
    padding: 0.75rem 1rem !important;
  }

  .hero-note h3 {
    font-size: 0.9rem !important;
    margin-bottom: 0.2rem !important;
  }

  .hero-note p {
    font-size: 0.82rem !important;
    line-height: 1.45 !important;
  }

  /* Bigger therapist cards on mobile */
  .team-card {
    padding: 1.4rem 1.2rem !important;
  }

  .therapist-avatar-wrap {
    width: 88px !important;
    height: 88px !important;
    margin-bottom: 0.9rem !important;
  }

  .therapist-initials {
    font-size: 2rem !important;
  }

  .team-card h3 {
    font-size: 1.15rem !important;
    margin-bottom: 0.3rem !important;
  }

  .team-card .subtle {
    font-size: 0.92rem !important;
    line-height: 1.55 !important;
  }

  .team-card .team-actions {
    gap: 0.6rem !important;
    margin-top: 1rem !important;
  }

  .team-card .btn {
    width: 100% !important;
    text-align: center !important;
  }
}
