/* CSS Custom Properties */
:root {
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Avenir', 'Avenir Next', 'Nunito Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  
  /* Warm, bohemian color palette based on imagery */
  --color-primary: #8B7355;
  --color-primary-dark: #6B5344;
  --color-accent: #D4A574;
  --color-accent-soft: #E8D5C4;
  --color-bg: #FDF8F3;
  --color-bg-alt: #FAF6F0;
  --color-text: #3D3229;
  --color-text-light: #6B5B4F;
  --color-white: #FFFFFF;
  --color-border: #E5DDD3;
}

*, *::before, *::after {
  box-sizing: border-box;
}

/* Base Typography */
html {
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background-color: var(--color-bg);
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
  color: var(--color-text);
}

h1 {
  font-size: 2.5rem;
  letter-spacing: -0.02em;
}

h2 {
  font-size: 2rem;
  letter-spacing: -0.01em;
}

h3 {
  font-size: 1.5rem;
}

/* Layout Structure */
.layout-container {
  display: flex;
  min-height: 100vh;
}

/* Sidebar Navigation */
.sidebar {
  width: 16vw;
  min-width: 200px;
  max-width: 300px;
  background-color: transparent;
  border-right: none;
  display: flex;
  flex-direction: column;
  position: absolute;
  height: 100vh;
  left: 0;
  top: 0;
  z-index: 50;
}

.sidebar-logo {
  padding: 1.5vw;
  border-bottom: none;
}

.sidebar-logo img {
  max-width: 100%;
  height: auto;
}

.sidebar-nav {
  flex: 1;
  padding: 1.5rem 0;
  overflow-y: auto;
}

.sidebar-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar-nav li {
  margin: 0;
}

.sidebar-nav a {
  display: block;
  padding: 0.6rem 1.5vw;
  color: #fff;
  text-decoration: none;
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 28px;
  line-height: 1.1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-stroke: 0.3px transparent;
  transition: all 0.2s ease;
  border-left: 3px solid transparent;
}

.sidebar-nav a:hover {
  color: #fff;
  background-color: rgba(255, 255, 255, 0.1);
  border-left-color: var(--page-color, var(--color-accent));
}

.sidebar-nav a.active {
  color: #fff;
  background-color: rgba(255, 255, 255, 0.15);
  border-left-color: var(--page-color, var(--color-accent));
}

.sidebar-footer {
  padding: 1vw 1.5vw;
  border-top: none;
}

.sidebar-copyright {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.6875rem;
  text-align: center;
  margin-top: 0.75rem;
}

.sidebar-socials {
  display: flex;
  justify-content: center;
  gap: 1rem;
  padding: 0.5rem 0;
}

.sidebar-social {
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.2s ease, transform 0.2s ease;
  border-left: none;
  background: none;
}

.sidebar-social:hover {
  color: #fff;
  transform: scale(1.15);
  background: none;
  border-left: none;
}

/* Nav thumbnails, descriptions + backdrop: hidden on desktop */
.nav-thumb {
  display: none;
}

.nav-desc {
  display: none;
}

.nav-cta {
  display: none;
}

.mobile-menu-backdrop {
  display: none;
}

html.menu-open,
body.menu-open {
  overflow: hidden;
  height: 100%;
  touch-action: none;
}

/* Page Header (full-screen hero) */
.page-header {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  min-height: 100vh;
  padding: 4rem;
  background-size: cover;
  background-position: 10% 34%;
  background-repeat: no-repeat;
}

.page-header-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
}

.page-header-content {
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin: 0 auto;
}

.page-header-content h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: #fff;
}

.page-header-content p {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  margin-bottom: 0.75rem;
}

.page-header-content a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.page-header-content a:hover {
  opacity: 0.8;
}

@media (max-width: 1024px) {
  .page-header {
    min-height: 60vh;
    padding: 5rem 2rem 2rem;
  }

  .page-header-content h1 {
    font-size: 2rem;
  }
}

/* Main Content Area */
.main-content {
  flex: 1;
  margin-left: 0;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  min-width: 0;
  width: 100%;
}

.main-content main {
  flex: 1;
}

/* Buttons */
.btn-primary {
  display: inline-block;
  padding: 1rem 2rem;
  background-color: var(--page-color, #B26F6F);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 0;
  border: none;
  transition: all 0.2s ease;
}

.btn-primary:hover {
  opacity: 0.85;
}

/* Alert/Notice Styles */
.flash-messages {
  padding: 1rem 2rem;
}

.flash-notice {
  background-color: #F0FDF4;
  border: 1px solid #86EFAC;
  color: #166534;
  padding: 1rem;
  border-radius: 6px;
}

.flash-alert {
  background-color: #FEF2F2;
  border: 1px solid #FCA5A5;
  color: #991B1B;
  padding: 1rem;
  border-radius: 6px;
}

/* Email Capture */
/* Subscribe form (used globally) */
.hero-subscribe-form {
  display: flex;
}

.hero-subscribe-input {
  height: 40px;
  padding: 0 0.75rem;
  border: none;
  border-radius: 0;
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--color-text);
  background-color: rgba(216, 216, 216, 0.2);
  outline: none;
  flex: 1;
  max-width: 260px;
}

.hero-subscribe-input::placeholder {
  color: rgba(0, 0, 0, 0.4);
}

.hero-subscribe-btn {
  height: 40px;
  padding: 0 1.25rem;
  background-color: var(--page-color, #B26F6F);
  color: #fff;
  border: none;
  border-radius: 0;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 400;
  cursor: pointer;
  white-space: nowrap;
  transition: background-color 0.2s ease;
}

.hero-subscribe-btn:hover {
  background-color: #9a5e5e;
}

.hero-subscribe-message {
  font-size: 0.875rem;
  color: var(--color-text-light);
  margin-top: 0.75rem;
}

/* Newsletter Section */
.newsletter-section {
  padding: 6rem 4rem;
  background-color: var(--color-white);
  text-align: center;
}

.newsletter-content {
  max-width: 600px;
  margin: 0 auto;
}

.newsletter-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  background: linear-gradient(to right, var(--color-primary-dark), var(--color-accent), var(--color-primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.newsletter-content p {
  color: var(--color-text-light);
  font-size: 1.0625rem;
  margin-bottom: 2rem;
}

.newsletter-content a {
  color: var(--color-primary);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.newsletter-content a:hover {
  color: var(--color-primary-dark);
}

.newsletter-content .hero-subscribe-form {
  justify-content: center;
}

.newsletter-content .hero-subscribe-input {
  background-color: var(--color-bg-alt);
  color: var(--color-text);
}

.newsletter-content .hero-subscribe-input::placeholder {
  color: var(--color-text-light);
}

@media (max-width: 768px) {
  .newsletter-section {
    padding: 3rem 2rem 10rem;
  }

  .newsletter-content h2 {
    font-size: 2rem;
  }
}

/* Content Page Sections */
.content-section {
  padding: 5rem 4rem;
  background-color: var(--color-white);
}

.content-section:nth-child(even) {
  background-color: var(--color-bg-alt);
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.06'/%3E%3C/svg%3E");
}

.content-container {
  max-width: 800px;
  margin: 0 auto;
}

.content-container h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.content-container p {
  font-size: 1.0625rem;
  color: var(--color-text-light);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.content-container a {
  color: var(--color-primary);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.content-container a:hover {
  color: var(--color-primary-dark);
}

.content-container a.mark-link,
.content-container a.mark-link:hover {
  text-decoration: none;
  color: #332e2e;
}

/* Marker-highlighted links */
.mark-link {
  position: relative;
  text-decoration: none;
  color: #332e2e;
  padding: 2px 6px;
  white-space: nowrap;
  isolation: isolate;
}

.mark-link:hover {
  color: #332e2e;
  text-decoration: none;
}

.mark-link::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: 3px 5px 3px 5px;
  scale: 1.04;
  transform: skew(-1deg);
  --mark-color: 178 111 111;
  --mark-bg-angle: 50deg;
  background:
    conic-gradient(at 0 100%, rgb(var(--mark-color) / 100%) 1%, #fff0 3%) no-repeat 0 0 / auto 120%,
    conic-gradient(from 180deg at 100% 0, #fff0, rgb(var(--mark-color) / 100%) 1%, #fff0 4%) no-repeat 100% 100% / auto 120%,
    linear-gradient(var(--mark-bg-angle), rgb(var(--mark-color) / 60%), rgb(var(--mark-color) / 20%) 75%, rgb(var(--mark-color) / 55%)) no-repeat center / auto;
}

.mark-link--green::before {
  --mark-color: 134 197 134;
  --mark-bg-angle: 30deg;
  transform: skew(1deg);
}

.mark-link--rose::before {
  --mark-color: 196 140 140;
  --mark-bg-angle: 150deg;
  transform: skew(1deg);
}

.mark-link--gold::before {
  --mark-color: 221 158 57;
  --mark-bg-angle: 40deg;
  transform: skew(-1deg);
}

.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.content-grid img {
  width: 100%;
  border-radius: 12px;
}

.content-section--full-bleed {
  padding: 0;
}

.content-grid--full-bleed {
  gap: 0;
  max-width: none;
  align-items: stretch;
}

.content-grid--full-bleed .content-grid-image {
  position: relative;
  overflow: hidden;
  min-height: 400px;
}

.content-grid--full-bleed .content-grid-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
}

.content-grid--full-bleed .content-grid-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.05) 50%, rgba(0,0,0,0.2) 100%);
  pointer-events: none;
}

.content-grid--full-bleed .content-container {
  padding: 4rem;
}

.journal-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin: 2rem 0;
  text-align: left;
}

.journal-card {
  background-color: var(--color-white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.journal-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.journal-card-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.journal-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.journal-card-image .journal-card-date {
  position: absolute;
  bottom: 3.25rem;
  left: 1.25rem;
  font-size: 0.6875rem;
  color: rgba(255,255,255,0.75);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 0;
  z-index: 1;
}

.journal-card-image h3 {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0;
  padding: 3.5rem 1.25rem 1rem;
  font-size: 1.625rem;
  color: white;
  background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, transparent 100%);
}

.journal-card:hover .journal-card-image img {
  transform: scale(1.05);
}

.journal-card-content {
  padding: 1.25rem;
  text-decoration: none;
  display: flex;
  align-items: flex-end;
  gap: 0.75rem;
}

.journal-card-content p {
  text-decoration: none;
  color: var(--color-text-light);
}

.journal-card-excerpt {
  flex: 1;
  font-size: 0.9rem;
  color: var(--color-text-light);
  line-height: 1.6;
  margin: 0;
}

.journal-card-chevron {
  flex-shrink: 0;
  color: var(--color-text-light);
  transition: transform 0.2s ease, color 0.2s ease;
}

.journal-card:hover .journal-card-chevron {
  transform: translateX(3px);
  color: var(--color-primary);
}

@media (max-width: 768px) {
  .journal-cards {
    grid-template-columns: 1fr;
  }
}

.content-cta {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.875rem 2rem;
  background-color: var(--page-color, #B26F6F);
  color: var(--color-white);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9375rem;
  border-radius: 6px;
  transition: background-color 0.2s ease;
}

.content-cta:hover {
  background-color: var(--color-primary-dark);
  color: var(--color-white);
}

@media (max-width: 900px) {
  .content-section {
    padding: 3rem 2rem;
  }

  .content-section--full-bleed {
    padding: 0;
  }

  .content-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .content-grid--full-bleed .content-grid-image {
    order: 2;
    aspect-ratio: 16 / 9;
    min-height: auto;
  }

  .content-grid--full-bleed .content-container {
    padding: 3rem 2rem;
  }
}

/* ═══════════════════════════════════════════════
   Cal.com-style Booking Calendar
   ═══════════════════════════════════════════════ */

.cal-booking {
  display: grid;
  grid-template-columns: 240px 1fr 260px;
  min-height: calc(100vh - 80px);
  background: var(--color-white);
  border-radius: 16px;
  border: 1px solid var(--color-border);
  overflow: hidden;
  margin: 2rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
  position: relative;
  z-index: 60;
}

/* ── Left Panel: Event Info ── */
.cal-info {
  border-right: 1px solid var(--color-border);
  padding: 2rem;
  display: flex;
  flex-direction: column;
}

.cal-info-inner {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.cal-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 0.75rem;
}

.cal-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cal-host {
  font-size: 0.8125rem;
  color: var(--color-text-light);
  margin: 0;
  font-weight: 500;
}

.cal-title {
  font-size: 1.375rem;
  font-weight: 700;
  margin: 0.25rem 0 0.75rem;
  line-height: 1.3;
  font-family: var(--font-heading);
}

.cal-description {
  font-size: 0.8125rem;
  color: var(--color-text-light);
  line-height: 1.55;
  margin: 0 0 1.25rem;
}

.cal-meta {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  margin-bottom: 1.5rem;
}

.cal-meta-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: var(--color-text-light);
}

.cal-meta-item svg {
  flex-shrink: 0;
  opacity: 0.7;
}

.cal-back-link {
  font-size: 0.8125rem;
  color: var(--color-text-light);
  text-decoration: none;
  margin-top: auto;
  padding-top: 1.5rem;
  transition: color 0.2s ease;
}

.cal-back-link:hover {
  color: var(--color-primary);
}

/* ── Center Panel: Calendar ── */
.cal-calendar {
  padding: 2rem;
  border-right: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
}

.cal-calendar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.75rem;
}

.cal-month-label {
  font-size: 1.125rem;
  font-weight: 700;
  margin: 0;
  font-family: var(--font-heading);
  letter-spacing: -0.01em;
}

.cal-nav-btn {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  border: 1px solid var(--color-border);
  background: var(--color-white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text);
  transition: all 0.15s ease;
}

.cal-nav-btn:hover {
  background: var(--color-bg);
  border-color: var(--color-accent);
}

.cal-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
  margin-bottom: 0.5rem;
}

.cal-weekdays span {
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--color-text-light);
  letter-spacing: 0.05em;
  padding: 0.5rem 0;
}

.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
}

.cal-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 50%;
  border: none;
  background: none;
  padding: 0;
  cursor: default;
  position: relative;
  color: var(--color-text);
}

.cal-day--other {
  color: var(--color-border);
}

.cal-day--disabled {
  color: var(--color-text-light);
  opacity: 0.35;
}

.cal-day--available {
  cursor: pointer;
  font-weight: 600;
  background: var(--color-bg-alt);
  transition: all 0.15s ease;
}

.cal-day--available:hover {
  background: var(--color-accent-soft);
  color: var(--color-primary-dark);
}

.cal-day--today {
  font-weight: 700;
}

.cal-day--today::after {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--color-primary);
}

.cal-day--selected {
  background: var(--color-primary) !important;
  color: var(--color-white) !important;
}

.cal-day--selected::after {
  background: var(--color-white);
}

.cal-empty {
  text-align: center;
  padding: 2rem 1rem;
  margin-top: 1rem;
}

.cal-empty p {
  font-size: 0.9375rem;
  color: var(--color-text-light);
  margin: 0;
}

.cal-empty-sub {
  font-size: 0.8125rem;
  margin-top: 0.5rem !important;
  opacity: 0.7;
}

/* ── Right Panel: Time Slots ── */
.cal-right {
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

.cal-slots {
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.cal-slots-header {
  margin-bottom: 1.25rem;
}

.cal-slots-header h3 {
  font-size: 1rem;
  font-weight: 700;
  margin: 0;
  font-family: var(--font-heading);
}

.cal-slots-placeholder {
  font-size: 0.8125rem;
  color: var(--color-text-light);
  text-align: center;
  padding: 2rem 0;
}

.cal-slots-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.cal-slot-btn {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--color-border);
  border-radius: 10px;
  background: var(--color-white);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text);
  cursor: pointer;
  font-family: var(--font-body);
  transition: all 0.15s ease;
  text-align: center;
}

.cal-slot-btn:hover {
  border-color: var(--color-primary);
  background: var(--color-bg-alt);
}

.cal-slot-btn--selected {
  border-color: var(--color-primary);
  background: var(--color-primary);
  color: var(--color-white);
}

.cal-slot-btn--selected:hover {
  background: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
}

/* ── Booking Form (right panel) ── */
.cal-form {
  padding: 2rem 1.5rem;
  border-top: 1px solid var(--color-border);
}

.cal-form-heading {
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 0.25rem;
  font-family: var(--font-heading);
}

.cal-form-time {
  font-size: 0.8125rem;
  color: var(--color-text-light);
  margin: 0 0 1.25rem;
}

.cal-form-fields {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  margin-bottom: 1.25rem;
}

.cal-form-input {
  width: 100%;
  padding: 0.625rem 0.875rem;
  border: 1.5px solid var(--color-border);
  border-radius: 8px;
  font-size: 0.875rem;
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-white);
  transition: border-color 0.15s ease;
}

.cal-form-input:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(139, 115, 85, 0.1);
}

.cal-form-input::placeholder {
  color: var(--color-text-light);
  opacity: 0.6;
}

.cal-form-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-text-light);
  margin: 0 0 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.cal-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem;
  margin-bottom: 1rem;
}

.cal-tag {
  padding: 0.375rem 0.75rem;
  border: 1.5px solid var(--color-border);
  border-radius: 999px;
  background: var(--color-white);
  font-size: 0.75rem;
  color: var(--color-text);
  cursor: pointer;
  font-family: var(--font-body);
  transition: all 0.15s ease;
}

.cal-tag:hover {
  border-color: var(--color-accent);
}

.cal-tag--active {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--color-white);
}

.cal-form-submit {
  width: 100%;
  padding: 0.75rem 1rem;
  border: none;
  border-radius: 10px;
  background: var(--color-border);
  color: var(--color-text-light);
  font-size: 0.875rem;
  font-weight: 600;
  font-family: var(--font-body);
  cursor: not-allowed;
  transition: all 0.2s ease;
  margin-top: 0.5rem;
}

.cal-form-submit--ready {
  background: var(--color-primary);
  color: var(--color-white);
  cursor: pointer;
}

.cal-form-submit--ready:hover {
  background: var(--color-primary-dark);
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .cal-booking {
    grid-template-columns: 1fr;
    margin: 0;
    border-radius: 0;
    border: none;
    min-height: auto;
    z-index: 110;
    position: relative;
  }

  .cal-info {
    border-right: none;
    border-bottom: 1px solid var(--color-border);
    padding: 1.5rem;
  }

  .cal-info-inner {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem;
  }

  .cal-avatar {
    width: 40px;
    height: 40px;
    margin-bottom: 0;
  }

  .cal-host {
    display: none;
  }

  .cal-title {
    font-size: 1.125rem;
    margin: 0;
    flex: 1;
  }

  .cal-description {
    width: 100%;
    margin-bottom: 0.5rem;
  }

  .cal-meta {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 0;
    width: 100%;
  }

  .cal-back-link {
    display: none;
  }

  .cal-calendar {
    border-right: none;
    border-bottom: 1px solid var(--color-border);
    padding: 1.5rem;
  }

  .cal-right {
    min-height: 200px;
  }

  .cal-slots {
    padding: 1.5rem;
  }

  .cal-form {
    padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  .cal-calendar {
    padding: 1rem;
  }

  .cal-slots {
    padding: 1rem;
  }

  .cal-form {
    padding: 1rem;
  }

  .cal-day {
    font-size: 0.8125rem;
  }
}

/* ═══════════════════════════════════════════════ */

/* Booking Pages */
/* Booking Page (standalone) */
.booking-page {
  padding: 4rem;
  max-width: 900px;
  margin: 0 auto;
}

.booking-page-header {
  margin-bottom: 2rem;
  text-align: center;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
  transition: color 0.2s ease;
}

.back-link:hover {
  color: var(--color-primary-dark);
}

.booking-page-header h1 {
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
}

.booking-page-header p {
  color: var(--color-text-light);
}

/* Step indicator */
.booking-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.booking-step {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.8125rem;
  color: var(--color-text-light);
  font-weight: 500;
}

.booking-step.active {
  color: var(--color-primary);
}

.booking-step-number {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 600;
  background: var(--color-bg-alt);
  color: var(--color-text-light);
}

.booking-step.active .booking-step-number {
  background-color: var(--page-color, #B26F6F);
  color: var(--color-white);
}

.booking-step.completed {
  color: var(--color-primary);
}

.booking-step.completed .booking-step-number {
  background: var(--color-accent-soft);
  color: var(--color-primary);
  font-size: 0.875rem;
}

.booking-step-divider {
  width: 24px;
  height: 1px;
  background: var(--color-border);
}

/* Topic Cards */
.topics-grid {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.topic-card {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  background-color: var(--color-white);
  border: 1.5px solid var(--color-border);
  border-radius: 14px;
  padding: 1rem 1.125rem;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.topic-card:hover {
  border-color: var(--color-accent);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.topic-card-header {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}

.topic-card-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--color-bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--color-primary);
}

.topic-card-header h2 {
  font-size: 0.975rem;
  margin: 0;
  font-family: var(--font-body);
  font-weight: 600;
}

.topic-description {
  color: var(--color-text-light);
  font-size: 0.8rem;
  line-height: 1.45;
  margin: 0;
}

.topic-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 0.125rem;
}

.topic-meta {
  font-size: 0.775rem;
  color: var(--color-text-light);
  font-weight: 500;
}

.topic-card-arrow {
  color: var(--color-text-light);
  transition: transform 0.2s ease;
  display: flex;
}

.topic-card:hover .topic-card-arrow {
  transform: translateX(3px);
  color: var(--color-primary);
}

/* Package Detail */
.package-detail {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.hidden {
  display: none !important;
}

.package-categories {
  padding: 0.5rem 0;
}

.package-categories-hint {
  font-size: 0.875rem;
  color: var(--color-text-light);
  margin-bottom: 0.75rem;
}

.interest-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.interest-tag {
  padding: 0.5rem 1rem;
  border: 1.5px solid var(--color-border);
  border-radius: 999px;
  background: var(--color-white);
  color: var(--color-text);
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: var(--font-body);
}

.interest-tag:hover {
  border-color: var(--color-accent);
}

.interest-tag.active {
  background-color: var(--page-color, #B26F6F);
  border-color: var(--color-primary);
  color: var(--color-white);
}

.package-continue {
  align-self: flex-end;
  font-size: 0.9375rem;
  color: var(--color-text);
  text-decoration: none;
  transition: color 0.2s ease;
}

.package-continue:hover {
  color: var(--page-color, #B26F6F);
}

/* Topic Summary (times page) */
.topic-summary {
  color: var(--color-text-light);
}

.topic-summary strong {
  color: var(--color-text);
}

/* Date group headers */
.date-group {
  margin-bottom: 1.5rem;
}

.time-filter {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.time-filter-btn {
  padding: 0.4rem 1rem;
  border: 1.5px solid var(--color-border);
  border-radius: 999px;
  background: var(--color-white);
  color: var(--color-text);
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: var(--font-body);
}

.time-filter-btn:hover {
  border-color: var(--color-accent);
}

.time-filter-btn.active {
  background-color: var(--page-color, #B26F6F);
  border-color: var(--page-color, #B26F6F);
  color: var(--color-white);
}

.date-group-header {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--color-text);
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--color-border);
}

/* Time Slots */
.time-slots-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.time-slot-card {
  background-color: var(--color-white);
  border: 1.5px solid var(--color-border);
  border-radius: 10px;
  padding: 0.75rem 1.25rem;
  transition: border-color 0.2s ease;
  cursor: pointer;
}

.time-slot-card:hover {
  border-color: var(--color-accent);
}

.time-slot-card.selected {
  border-color: var(--page-color, #B26F6F);
  box-shadow: 0 0 0 1px var(--page-color, #B26F6F);
  cursor: default;
  grid-column: 1 / -1;
}

.time-slots-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
}

.time-slot-time {
  margin: 0;
  font-size: 0.875rem;
  text-align: center;
}

.time-slot-form {
  display: flex;
  flex-direction: column;
}

.time-slot-booking {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.refined-topics-label {
  font-size: 0.8125rem;
  color: var(--color-text-light);
  margin: 0.5rem 0 0.25rem;
}

.refined-topics {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.refined-tag {
  padding: 0.35rem 0.75rem;
  border: 1.5px solid var(--color-border);
  border-radius: 999px;
  background: var(--color-white);
  color: var(--color-text);
  font-size: 0.8125rem;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: var(--font-body);
}

.refined-tag:hover {
  border-color: var(--color-accent);
}

.refined-tag.active {
  background-color: var(--page-color, #B26F6F);
  border-color: var(--page-color, #B26F6F);
  color: var(--color-white);
}

.refined-other {
  min-height: 60px;
  resize: vertical;
  margin-top: 0.25rem;
}

.time-slot-info {
  flex: 1;
  min-width: 160px;
}

.time-slot-date {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--color-text);
  margin-bottom: 0.125rem;
}

.time-slot-time {
  font-size: 0.8125rem;
  color: var(--color-text-light);
}

.form-input {
  padding: 0.5rem 0.75rem;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  font-size: 0.875rem;
  font-family: var(--font-body);
  min-width: 140px;
  background: var(--color-white);
}

.form-input:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px var(--color-accent-soft);
}

.btn-secondary {
  display: inline-block;
  padding: 0.625rem 1.25rem;
  background-color: var(--page-color, #B26F6F);
  color: var(--color-white);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.875rem;
  border-radius: 8px;
  transition: background-color 0.2s ease;
}

.btn-secondary:hover {
  background-color: var(--color-primary-dark);
}

.btn-submit {
  padding: 0.5rem 1.125rem;
  background-color: var(--page-color, #B26F6F);
  color: var(--color-white);
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.875rem;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.btn-submit:hover {
  background-color: var(--color-primary-dark);
}

.empty-state {
  text-align: center;
  padding: 3rem 2rem;
  background-color: var(--color-bg);
  border-radius: 12px;
}

.empty-state img {
  max-width: 160px;
  margin-bottom: 1.25rem;
}

.empty-state h3 {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.empty-state p {
  color: var(--color-text-light);
  max-width: 360px;
  margin: 0 auto;
  font-size: 0.9375rem;
}

@media (max-width: 768px) {
  .booking-page {
    padding: 1.5rem;
  }


  .time-slots-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .form-input, .btn-submit {
    width: 100%;
  }
}

/* Booking Modal */
.booking-modal {
  border: none;
  border-radius: 20px;
  padding: 0;
  width: 380px;
  max-height: 520px;
  overflow: visible;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.72) 0%,
    rgba(255, 255, 255, 0.5) 50%,
    rgba(255, 255, 255, 0.62) 100%
  );
  -webkit-backdrop-filter: blur(24px) saturate(180%) brightness(1.1);
  backdrop-filter: blur(24px) saturate(180%) brightness(1.1);
  box-shadow:
    0 8px 40px rgba(0, 0, 0, 0.12),
    0 0 0 0.5px rgba(255, 255, 255, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.6),
    inset 0 -1px 0 rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.5);
  position: fixed;
  inset: auto;
  bottom: 6.5rem;
  right: 1.5rem;
  margin: 0;
  z-index: 98;
  transform-origin: bottom right;
}

.booking-modal[open] {
  animation: modal-pop-in 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes modal-pop-in {
  from {
    transform: scale(0.5);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.booking-modal::backdrop {
  display: none;
}

.booking-modal::after {
  content: "";
  position: absolute;
  bottom: -6px;
  right: 24px;
  width: 12px;
  height: 12px;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.5) 0%,
    rgba(255, 255, 255, 0.62) 100%
  );
  border-right: 1px solid rgba(255, 255, 255, 0.5);
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  transform: rotate(45deg);
}

.booking-modal-inner {
  position: relative;
  max-height: 520px;
  overflow-y: auto;
  padding: 1.25rem 1.5rem 1.5rem;
}

.booking-modal-close {
  position: sticky;
  top: 0;
  float: right;
  z-index: 10;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: none;
  background: rgba(0, 0, 0, 0.06);
  color: var(--color-text);
  font-size: 1.125rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}

.booking-modal-close:hover {
  background: rgba(0, 0, 0, 0.12);
}

.booking-modal-loading {
  padding: 3rem;
  text-align: center;
  color: var(--color-text-light);
}

.booking-modal .booking-page {
  padding: 0;
}

.booking-modal .booking-page-header {
  margin-bottom: 0.5rem;
  text-align: left;
}

.booking-modal .back-link {
  font-size: 0.75rem;
  margin-bottom: 0.5rem;
}

.booking-modal .booking-page-header h1 {
  font-size: 1.5rem;
}

.booking-modal .topic-card {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.booking-modal .topic-card:hover {
  background: rgba(255, 255, 255, 0.9);
}

@media (max-width: 768px) {
  .booking-modal {
    width: calc(100vw - 2rem);
    min-height: 40vh;
    max-height: 75vh;
    bottom: 7rem;
    right: 1rem;
    left: 1rem;
  }

  .booking-modal-inner {
    padding: 1rem 1.25rem 1.25rem;
  }

  .booking-modal .booking-modal-close {
    display: none !important;
  }
}

/* Mobile menu toggle (hidden on desktop) */
.menu-toggle-wrapper {
  display: none;
}

/* Responsive — switch to hamburger menu at tablet + mobile */
@media (max-width: 1024px) {
  .layout-container {
    flex-direction: column;
    max-width: 100%;
    overflow-x: hidden;
  }

  /* ── Logo bar: small, fixed, always on top ── */
  .sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    min-width: 0;
    max-width: 100%;
    height: auto;
    border-bottom: none;
    z-index: 100;
  }

  .sidebar-logo {
    padding: 0.75rem 1rem 0.75rem 1.5rem;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    position: relative;
    z-index: 102;
    transition: background-color 0.3s ease;
  }

  .sidebar--scrolled:not(.sidebar--menu-open) .sidebar-logo {
    background: rgba(0, 0, 0, 0.35);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
  }

  .sidebar-logo img {
    transition: filter 0.3s ease;
  }

  /* ── Toggle button: sits inside logo bar ── */
  .menu-toggle-wrapper {
    display: block;
    padding: 0;
  }

  .menu-divider {
    display: none;
  }

  .menu-toggle {
    background: rgba(0, 0, 0, 0.35);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 6px;
    color: rgba(255, 255, 255, 0.9);
    font-family: var(--font-body);
    font-size: 0.8125rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    padding: 0.4rem 0.875rem;
    transition: background 0.2s ease, color 0.2s ease;
    display: flex;
    align-items: center;
    gap: 0.35rem;
  }

  .menu-toggle-chevron {
    transition: transform 0.3s ease;
  }

  .menu-toggle--open .menu-toggle-chevron {
    transform: rotate(180deg);
  }

  .menu-toggle:hover,
  .menu-toggle--open {
    color: #fff;
    background: rgba(0, 0, 0, 0.5);
  }

  /* ── Backdrop: warm dark overlay ── */
  .mobile-menu-backdrop {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 100;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
  }

  .sidebar--menu-open .mobile-menu-backdrop {
    opacity: 1;
    pointer-events: auto;
  }

  /* ── Nav panel: full-screen centered overlay ── */
  .sidebar-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: none;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 101;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
    overflow: hidden;
  }

  .sidebar--menu-open .sidebar-nav {
    opacity: 1;
    pointer-events: auto;
  }

  .sidebar-nav ul {
    display: grid;
    grid-template-columns: repeat(2, 50vw);
    grid-auto-rows: minmax(96px, 1fr);
    width: 100vw;
    min-height: calc(100dvh - 126px);
    margin: 4.75rem 0 4rem;
    padding: 0;
  }

  .sidebar-nav li {
    background: rgba(255, 255, 255, 0.04);
    -webkit-backdrop-filter: blur(18px) saturate(140%);
    backdrop-filter: blur(18px) saturate(140%);
    border: 1px solid rgba(255, 255, 255, 0.09);
    margin: 0;
    width: 50vw;
    min-width: 0;
    padding: 0;
  }

  .sidebar-nav a {
    position: relative;
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr) 34px;
    align-items: center;
    gap: 0.85rem;
    width: 100%;
    height: 100%;
    min-height: 96px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
    padding: 0.75rem 0.85rem;
    margin: 0;
    border-left: none;
    font-family: var(--font-heading);
    font-size: clamp(1rem, 4.4vw, 1.5rem);
    color: rgba(255, 255, 255, 0.86);
    letter-spacing: -0.02em;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
  }

  .sidebar-nav a:hover,
  .sidebar-nav a:focus-visible {
    color: #fff;
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.24), rgba(255, 255, 255, 0.05));
    border-left: none;
  }

  .sidebar-nav a.active {
    color: #fff;
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.32), rgba(255, 255, 255, 0.07));
    border-left: none;
  }

  /* ── Nav thumbnails ── */
  .nav-thumb {
    display: block;
    width: 72px;
    height: 100%;
    min-height: 72px;
    flex-shrink: 0;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.16);
    transition: border-color 0.2s ease, transform 0.2s ease;
  }

  .nav-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .sidebar-nav a:hover .nav-thumb,
  .sidebar-nav a:focus-visible .nav-thumb,
  .sidebar-nav a.active .nav-thumb {
    border-color: rgba(212, 165, 116, 0.75);
    transform: scale(1.02);
  }

  .nav-text {
    display: flex;
    flex-direction: column;
    min-width: 0;
  }

  .nav-desc {
    display: block;
    font-family: var(--font-body);
    font-size: clamp(0.68rem, 2.7vw, 0.83rem);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.54);
    margin: 0.2rem 0 0;
    line-height: 1.25;
  }

  .nav-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 999px;
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.16);
    transition: background 0.2s ease, transform 0.2s ease;
  }

  .sidebar-nav a:hover .nav-cta,
  .sidebar-nav a:focus-visible .nav-cta,
  .sidebar-nav a.active .nav-cta {
    background: rgba(212, 165, 116, 0.35);
    transform: translateX(2px);
  }

  /* ── Footer: visible in menu, pinned to bottom ── */
  .sidebar-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 0 1.5rem 1.5rem;
    border-top: none;
    z-index: 101;
    display: flex;
    align-items: center;
    justify-content: space-between;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
  }

  .sidebar--menu-open .sidebar-footer {
    opacity: 1;
    pointer-events: auto;
  }

  .sidebar-footer .sidebar-copyright {
    display: block;
    order: -1;
    margin: 0;
    font-size: 0.75rem;
  }

  .sidebar-footer .sidebar-socials {
    position: static;
    justify-content: flex-end;
    padding: 0;
  }

  .sidebar-social {
    background: none !important;
    padding: 0.5rem !important;
    margin: 0 !important;
  }

  .sidebar-social--youtube {
    display: none;
  }

  .sidebar-social--instagram svg {
    width: 40px;
    height: 40px;
  }

  .main-content {
    margin-top: 0;
    max-width: 100%;
    overflow-x: hidden;
  }
}

@media (max-width: 720px) {
  .sidebar-nav ul {
    grid-template-columns: repeat(2, 50vw);
    grid-auto-rows: minmax(88px, 1fr);
    margin-top: 4.5rem;
  }

  .sidebar-nav a {
    grid-template-columns: 54px minmax(0, 1fr) 28px;
    gap: 0.55rem;
    min-height: 88px;
    padding: 0.65rem;
  }

  .nav-thumb {
    width: 54px;
    min-height: 58px;
    border-radius: 10px;
  }

  .nav-cta {
    width: 28px;
    height: 28px;
  }
}

/* Auth pages */
.auth-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6rem 1.25rem 2rem;
  background:
    linear-gradient(135deg, rgba(61, 50, 41, 0.82), rgba(107, 83, 68, 0.58)),
    url("/design/images/contact-bg.webp") center/cover no-repeat;
}

.auth-card {
  width: min(100%, 460px);
  padding: clamp(1.5rem, 4vw, 2.5rem);
  border-radius: 28px;
  background: rgba(253, 248, 243, 0.92);
  -webkit-backdrop-filter: blur(22px) saturate(150%);
  backdrop-filter: blur(22px) saturate(150%);
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow: 0 24px 80px rgba(38, 27, 20, 0.28);
}

.auth-brand {
  width: 150px;
  padding: 0.7rem 0.9rem;
  margin-bottom: 2rem;
  border-radius: 18px;
  background: var(--color-text);
}

.auth-brand img {
  display: block;
  width: 100%;
  height: auto;
}

.auth-eyebrow,
.admin-eyebrow {
  margin: 0 0 0.55rem;
  color: var(--color-primary-dark);
  font-family: var(--font-body);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.auth-title {
  margin: 0;
  font-size: clamp(2.15rem, 8vw, 3.25rem);
  letter-spacing: -0.04em;
}

.auth-intro {
  margin: 0.75rem 0 1.8rem;
  color: var(--color-text-light);
  line-height: 1.65;
}

.auth-form {
  display: grid;
  gap: 1.1rem;
}

.auth-field {
  display: grid;
  gap: 0.45rem;
}

.auth-field label {
  color: var(--color-text);
  font-size: 0.84rem;
  font-weight: 700;
}

.auth-field input {
  width: 100%;
  border: 1px solid rgba(107, 83, 68, 0.22);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.74);
  color: var(--color-text);
  font: inherit;
  padding: 0.95rem 1rem;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.auth-field input:focus {
  border-color: var(--color-accent);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(212, 165, 116, 0.2);
}

.auth-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 0.35rem;
}

.auth-actions--stacked {
  align-items: stretch;
  flex-direction: column;
}

.auth-submit {
  border: none;
  border-radius: 999px;
  background: var(--color-text);
  color: #fff;
  cursor: pointer;
  font: inherit;
  font-weight: 700;
  padding: 0.95rem 1.35rem;
  transition: background 0.2s ease, transform 0.2s ease;
}

.auth-submit:hover,
.auth-submit:focus-visible {
  background: var(--color-primary-dark);
  transform: translateY(-1px);
}

.auth-link {
  color: var(--color-primary-dark);
  font-weight: 700;
  text-decoration: none;
}

.auth-link:hover,
.auth-link:focus-visible {
  color: var(--color-text);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.auth-flash {
  margin: 0 0 1.25rem;
  padding: 0.85rem 1rem;
  border-radius: 14px;
  font-weight: 700;
}

.auth-flash--alert {
  background: rgba(179, 64, 64, 0.12);
  color: #8a2d2d;
}

.auth-flash--notice {
  background: rgba(82, 130, 91, 0.12);
  color: #2f6b3c;
}

/* Admin area */
.admin-shell {
  min-height: 100vh;
  margin: 0;
  background: #f5efe7;
  color: var(--color-text);
}

.admin-layout {
  display: grid;
  grid-template-columns: minmax(240px, 290px) minmax(0, 1fr);
  min-height: 100vh;
}

.admin-sidebar {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 1.5rem;
  background:
    linear-gradient(180deg, rgba(61, 50, 41, 0.96), rgba(107, 83, 68, 0.94)),
    url("/design/images/maria-sitting.webp") center/cover no-repeat;
  color: #fff;
}

.admin-brand img {
  display: block;
  width: 170px;
  max-width: 100%;
  height: auto;
}

.admin-brand p {
  margin: 0.75rem 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.admin-nav,
.admin-sidebar-footer {
  display: grid;
  gap: 0.45rem;
}

.admin-sidebar-footer {
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.admin-nav-link {
  display: block;
  width: 100%;
  border: 1px solid transparent;
  border-radius: 16px;
  background: transparent;
  color: rgba(255, 255, 255, 0.72);
  font: inherit;
  font-weight: 700;
  text-align: left;
  text-decoration: none;
  padding: 0.78rem 0.9rem;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.admin-nav-link:hover,
.admin-nav-link:focus-visible,
.admin-nav-link.is-active {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.14);
  color: #fff;
}

.admin-nav-link--secondary {
  color: rgba(255, 255, 255, 0.86);
}

.admin-nav-link--button {
  cursor: pointer;
}

.admin-main {
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.admin-header {
  position: sticky;
  top: 0;
  z-index: 10;
  padding: 1.5rem clamp(1.25rem, 4vw, 2.5rem);
  background: rgba(253, 248, 243, 0.86);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(107, 83, 68, 0.12);
}

.admin-header h1 {
  margin: 0;
  font-size: clamp(1.5rem, 3vw, 2.15rem);
}

.admin-content {
  flex: 1;
  width: min(100%, 1180px);
  padding: clamp(1.25rem, 4vw, 2.5rem);
}

.admin-flash {
  margin: 1.25rem clamp(1.25rem, 4vw, 2.5rem) 0;
  padding: 0.9rem 1rem;
  border-radius: 16px;
  font-weight: 700;
}

.admin-flash--notice {
  background: rgba(82, 130, 91, 0.12);
  color: #2f6b3c;
}

.admin-flash--alert {
  background: rgba(179, 64, 64, 0.12);
  color: #8a2d2d;
}

@media (max-width: 900px) {
  .admin-layout {
    grid-template-columns: 1fr;
  }

  .admin-sidebar {
    position: sticky;
    top: 0;
    z-index: 40;
    height: auto;
    gap: 0.8rem;
    padding: 0.85rem;
  }

  .admin-brand {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
  }

  .admin-brand img {
    width: 128px;
  }

  .admin-brand p {
    margin: 0;
    font-size: 0.68rem;
  }

  .admin-nav,
  .admin-sidebar-footer {
    display: flex;
    gap: 0.5rem;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 0 0 0.25rem;
    margin: 0 -0.15rem;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .admin-nav::-webkit-scrollbar,
  .admin-sidebar-footer::-webkit-scrollbar {
    display: none;
  }

  .admin-sidebar-footer {
    border-top: none;
    margin-top: 0;
    padding-top: 0;
  }

  .admin-sidebar-footer form {
    flex: 0 0 auto;
  }

  .admin-nav-link {
    flex: 0 0 auto;
    width: auto;
    min-height: 40px;
    padding: 0.58rem 0.8rem;
    border-radius: 999px;
    font-size: 0.82rem;
    line-height: 1.1;
    white-space: nowrap;
  }

  .admin-header {
    position: static;
    padding: 1rem;
  }

  .admin-header h1 {
    font-size: 1.45rem;
  }

  .admin-content {
    width: 100%;
    padding: 1rem;
    overflow-x: hidden;
  }

  .admin-content table {
    display: block;
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
  }

  .admin-content th,
  .admin-content td {
    padding-left: 0.85rem;
    padding-right: 0.85rem;
  }
}

@media (max-width: 760px) {
  .admin-shell {
    overflow-x: hidden;
  }

  .admin-brand p {
    display: none;
  }

  .admin-nav-link {
    font-size: 0.78rem;
    padding: 0.54rem 0.72rem;
  }

  .admin-content {
    padding: 0.85rem;
  }

  .admin-content > .flex {
    align-items: stretch;
    flex-direction: column;
    gap: 0.75rem;
  }

  .admin-content > .flex a {
    text-align: center;
  }

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

  .admin-content input,
  .admin-content textarea,
  .admin-content select,
  .admin-content trix-editor {
    max-width: 100%;
    font-size: 16px;
  }
}

@media (max-width: 640px) {
  .auth-actions {
    align-items: stretch;
    flex-direction: column;
  }
}

/* Floating Book a Call card */
.chat-bubble {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 99;
  padding: 0.75rem 1.25rem 0.75rem 0.75rem;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.72) 0%,
    rgba(255, 255, 255, 0.5) 50%,
    rgba(255, 255, 255, 0.62) 100%
  );
  -webkit-backdrop-filter: blur(24px) saturate(180%) brightness(1.1);
  backdrop-filter: blur(24px) saturate(180%) brightness(1.1);
  color: var(--color-text);
  text-decoration: none;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow:
    0 4px 24px rgba(0, 0, 0, 0.1),
    0 0 0 0.5px rgba(255, 255, 255, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.6),
    inset 0 -1px 0 rgba(0, 0, 0, 0.04);
  transition: box-shadow 0.3s ease, transform 0.3s ease, background 0.3s ease;
}

.chat-bubble:hover {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.82) 0%,
    rgba(255, 255, 255, 0.6) 50%,
    rgba(255, 255, 255, 0.72) 100%
  );
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.14),
    0 0 0 0.5px rgba(255, 255, 255, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.7),
    inset 0 -1px 0 rgba(0, 0, 0, 0.04);
  transform: translateY(-2px);
}

.chat-bubble-avatar {
  position: relative;
  width: 48px;
  height: 48px;
  flex-shrink: 0;
}

.chat-bubble-avatar img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.chat-bubble-status {
  position: absolute;
  bottom: 1px;
  right: 1px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ef4444;
  border: 2px solid rgba(255, 255, 255, 0.6);
  animation: pulse-red 2s ease-in-out infinite;
}

@keyframes pulse-red {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.chat-bubble-text {
  display: flex;
  flex-direction: column;
}

.chat-bubble-label {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9375rem;
  white-space: nowrap;
  line-height: 1.2;
  color: #1a1a1a;
}

.chat-bubble-sublabel {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: #444;
  white-space: nowrap;
  line-height: 1.3;
}

/* Language Switcher */
.language-switcher {
  display: flex;
  gap: 0.25rem;
  justify-content: flex-end;
  margin-bottom: 1.5rem;
}

.language-switcher--inline {
  margin-bottom: 0;
}

.lang-link {
  padding: 0.375rem 0.875rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--color-text-light);
  text-decoration: none;
  border-radius: 6px;
  transition: color 0.2s ease, background-color 0.2s ease;
}

.lang-link:hover {
  color: var(--color-text);
  background-color: var(--color-bg-alt);
}

.lang-active {
  color: var(--color-text);
  background-color: var(--color-bg-alt);
  font-weight: 600;
}

/* Blog Post Hero */
.blog-post-hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  width: 100%;
  min-height: 70vh;
  padding: 3rem 4rem;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.blog-post-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.15) 50%, rgba(0, 0, 0, 0.1) 100%);
}

.blog-post-hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
}

.blog-post-hero-date {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.75rem;
}

.blog-post-hero-title {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 2.5rem;
  line-height: 1.2;
  color: #fff;
  margin: 0;
}

.blog-post-body {
  padding: 2.5rem 4rem 6rem;
}

.blog-post-container {
  max-width: 700px;
  margin: 0 auto;
}

.blog-post-container .trix-content p {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--color-text-light);
  margin-bottom: 1.5rem;
}

.blog-post-container .trix-content p:last-child {
  margin-bottom: 0;
}

.blog-post-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
}

.blog-post-back {
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.875rem;
  transition: color 0.2s ease;
}

.blog-post-back:hover {
  color: var(--color-primary-dark);
}

@media (max-width: 768px) {
  .blog-post-hero {
    min-height: 50vh;
    padding: 2rem;
  }

  .blog-post-hero-title {
    font-size: 1.75rem;
  }

  .blog-post-body {
    padding: 1.5rem 2rem 4rem;
  }
}

/* Blog Post Inline Images */
.blog-image-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 2rem 0;
}

.blog-image-row img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 10px;
}

.blog-post-container .trix-content figure,
.blog-post-container figure {
  margin: 2.5rem auto;
  max-width: 480px;
  text-align: center;
}

.blog-post-container .trix-content figure img,
.blog-post-container figure img {
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
}

.blog-post-container .trix-content figcaption,
.blog-post-container figcaption {
  margin-top: 0.5rem;
  font-size: 0.8125rem;
  color: var(--color-text-light);
  font-style: italic;
  line-height: 1.5;
}

@media (max-width: 600px) {
  .blog-image-row {
    grid-template-columns: 1fr;
  }

  .blog-image-row img {
    height: 220px;
  }

  .blog-post-container .trix-content figure,
  .blog-post-container figure {
    max-width: 100%;
  }
}

/* ── Audio Course: Mini Retreat ── */

.audio-course-section {
  padding: 5rem 4rem;
  background: linear-gradient(135deg, #FDF8F3 0%, #F5EDE4 50%, #FDF8F3 100%);
}

.audio-course-inner {
  max-width: 700px;
  margin: 0 auto;
}

.audio-course-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.audio-course-header h2 {
  font-size: 2.25rem;
  margin-bottom: 0.25rem;
}

.audio-course-subtitle {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--color-text-light);
  margin-bottom: 1.25rem;
}

.audio-course-meta {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.audio-course-badge {
  display: inline-block;
  padding: 0.3rem 0.875rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-primary);
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 999px;
}

.audio-course-intro {
  font-size: 1.0625rem;
  color: var(--color-text-light);
  line-height: 1.8;
  max-width: 580px;
  margin: 0 auto;
}

/* Enrollment form */
.audio-course-enroll {
  text-align: center;
}

.audio-course-enroll-form {
  display: flex;
  justify-content: center;
  max-width: 420px;
  margin: 0 auto 0.75rem;
}

.audio-course-enroll-input {
  height: 44px;
  padding: 0 0.875rem;
  border: 1px solid var(--color-border);
  border-right: none;
  border-radius: 8px 0 0 8px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--color-text);
  background: var(--color-white);
  outline: none;
  flex: 1;
}

.audio-course-enroll-input::placeholder {
  color: rgba(0, 0, 0, 0.35);
}

.audio-course-enroll-input:focus {
  border-color: var(--color-accent);
}

.audio-course-enroll-btn {
  height: 44px;
  padding: 0 1.5rem;
  background: linear-gradient(135deg, #D4A574, #C4955F);
  color: #fff;
  border: none;
  border-radius: 0 8px 8px 0;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: opacity 0.2s ease;
}

.audio-course-enroll-btn:hover {
  opacity: 0.9;
}

.audio-course-enroll-hint {
  font-size: 0.8125rem;
  color: var(--color-text-light);
  margin-top: 0.5rem;
}

/* Lesson cards */
.audio-course-lessons {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.audio-lesson-card {
  background: var(--color-white);
  border: 1.5px solid var(--color-border);
  border-radius: 12px;
  padding: 1rem 1.25rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.audio-lesson-card.unlocked:hover {
  border-color: var(--color-accent);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.audio-lesson-card.playing {
  border-color: #D4A574;
  box-shadow: 0 0 0 1px #D4A574, 0 4px 20px rgba(212, 165, 116, 0.15);
}

/* Locked state */
.audio-lesson-card.locked {
  opacity: 0.55;
  pointer-events: none;
}

.audio-lesson-card.locked .audio-play-button {
  display: none;
}

.audio-lesson-card.locked .audio-lesson-lock-icon {
  display: flex;
}

.audio-lesson-card.locked .audio-lesson-player {
  display: none;
}

/* Lock icon (hidden by default, shown when locked) */
.audio-lesson-lock-icon {
  display: none;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  color: var(--color-text-light);
}

/* Completed state */
.audio-lesson-card .audio-lesson-check {
  display: none;
}

.audio-lesson-card.completed .audio-lesson-check {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  background: #86EFAC;
  color: #166534;
  border-radius: 50%;
}

/* Lesson row layout */
.audio-lesson-row {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.audio-lesson-info {
  flex: 1;
  min-width: 0;
}

.audio-lesson-day {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-accent);
}

.audio-lesson-title {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  margin: 0.125rem 0 0.25rem;
  line-height: 1.3;
}

.audio-lesson-desc {
  font-size: 0.8125rem;
  color: var(--color-text-light);
  line-height: 1.5;
  margin: 0;
}

/* Play button */
.audio-play-button {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  border: none;
  border-radius: 50%;
  background: linear-gradient(135deg, #D4A574, #C4955F);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(212, 165, 116, 0.3);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.audio-play-button:hover {
  transform: scale(1.08);
  box-shadow: 0 4px 16px rgba(212, 165, 116, 0.4);
}

/* Expandable player (shown when playing) */
.audio-lesson-player {
  display: none;
  padding-top: 0.75rem;
  margin-top: 0.75rem;
  border-top: 1px solid var(--color-border);
}

.audio-lesson-card.expanded .audio-lesson-player,
.audio-lesson-card.playing .audio-lesson-player {
  display: block;
}

/* Progress bar */
.audio-progress-bar {
  width: 100%;
  height: 6px;
  background: var(--color-bg-alt);
  border-radius: 3px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.audio-progress-fill {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, #D4A574, #C4955F);
  border-radius: 3px;
  transition: width 0.1s linear;
}

.audio-time {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--color-text-light);
  margin-top: 0.375rem;
}

/* Responsive */
@media (max-width: 768px) {
  .audio-course-section {
    padding: 3rem 1.5rem;
  }

  .audio-course-header h2 {
    font-size: 1.75rem;
  }

  .audio-course-meta {
    gap: 0.5rem;
  }

  .audio-course-enroll-form {
    flex-direction: column;
    align-items: stretch;
  }

  .audio-course-enroll-input {
    border-right: 1px solid var(--color-border);
    border-radius: 8px;
    margin-bottom: 0.5rem;
  }

  .audio-course-enroll-btn {
    border-radius: 8px;
  }

  .audio-play-button {
    width: 42px;
    height: 42px;
  }

  .audio-lesson-lock-icon {
    width: 42px;
    height: 42px;
  }

  .audio-lesson-desc {
    display: none;
  }
}


/* Admin Website Assistant */
.admin-assistant {
  position: fixed;
  right: 1.25rem;
  bottom: 6.25rem;
  z-index: 120;
  font-family: var(--font-body);
}

.admin-assistant__bubble {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  border: 1px solid rgba(61, 50, 41, 0.12);
  border-radius: 999px;
  background: #3D3229;
  color: #FFFFFF;
  box-shadow: 0 16px 45px rgba(61, 50, 41, 0.22);
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 700;
  padding: 0.8rem 1rem;
}

.admin-assistant__spark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.7rem;
  height: 1.7rem;
  border-radius: 999px;
  background: var(--color-accent);
  color: #3D3229;
  font-size: 0.7rem;
  letter-spacing: 0.04em;
}

.admin-assistant__panel {
  position: absolute;
  right: 0;
  bottom: 3.8rem;
  width: min(360px, calc(100vw - 2rem));
  overflow: hidden;
  border: 1px solid rgba(61, 50, 41, 0.12);
  border-radius: 22px;
  background: #FDF8F3;
  box-shadow: 0 24px 60px rgba(61, 50, 41, 0.22);
}

.admin-assistant__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1rem 0.75rem;
  border-bottom: 1px solid var(--color-border);
}

.admin-assistant__header h2 {
  margin: 0;
  font-size: 1.05rem;
}

.admin-assistant__eyebrow {
  margin: 0 0 0.15rem;
  color: var(--color-text-light);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.admin-assistant__close {
  border: 0;
  background: transparent;
  color: var(--color-text-light);
  cursor: pointer;
  font-size: 1.6rem;
  line-height: 1;
}

.admin-assistant__messages {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  max-height: 300px;
  overflow-y: auto;
  padding: 1rem;
}

.admin-assistant__message {
  max-width: 88%;
  margin: 0;
  border-radius: 16px;
  font-size: 0.88rem;
  line-height: 1.45;
  padding: 0.75rem 0.85rem;
}

.admin-assistant__message--assistant {
  align-self: flex-start;
  background: #FFFFFF;
  color: var(--color-text);
}

.admin-assistant__message--user {
  align-self: flex-end;
  background: var(--color-primary-dark);
  color: #FFFFFF;
}

.admin-assistant__form {
  display: grid;
  gap: 0.65rem;
  padding: 0 1rem 1rem;
}

.admin-assistant__input {
  width: 100%;
  resize: vertical;
  border: 1px solid var(--color-border);
  border-radius: 14px;
  background: #FFFFFF;
  color: var(--color-text);
  font: inherit;
  min-height: 5rem;
  padding: 0.8rem;
}

.admin-assistant__send {
  justify-self: end;
  border: 0;
  border-radius: 999px;
  background: var(--color-primary-dark);
  color: #FFFFFF;
  cursor: pointer;
  font-weight: 700;
  padding: 0.7rem 1.1rem;
}

@media (max-width: 768px) {
  .admin-assistant {
    right: 0.75rem;
    bottom: 5.5rem;
  }

  .admin-assistant__bubble {
    padding: 0.7rem 0.85rem;
  }
}
