:root {
  /* Primary */
  --forest: #004428;
  --forest-deep: #002e1a;
  --forest-light: #285034;
  --amber: #F8B014;
  --amber-hover: #e09e0e;
  --amber-dark: #A86018;

  /* Mint family */
  --mint: #9CDCB0;
  --mint-light: #e8f4ec;
  --mint-tint: #f0f7f2;

  /* Neutrals */
  --linen: #F7F5F0;
  --parchment: #f0ede6;
  --stone: #e0ddd4;
  --charcoal: #2c2c2c;
  --text-muted: #888;
  --text-light: #aaa;

  /* Semantic */
  --chili: #C44C3F;
  --danger: #c44c3f;
  --danger-light: #fde8e8;
  --warning: #F48410;
  --warning-light: #fdf5e6;
  --success: #9CDCB0;
  --success-light: #e8f4ec;
}

* {
  box-sizing: border-box;
}

/* ═══════════════════════════════════════════════════════════════
   Global mobile fixes
   ═══════════════════════════════════════════════════════════════ */

html {
  overflow-x: hidden;
}
body {
  -webkit-text-size-adjust: 100%;
}

html {
  scroll-behavior: smooth;
}

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

/* Dynamic deposit amount — keep purely inline with no extra spacing */
span.deposit-amount {
  display: inline;
  margin: 0;
  padding: 0;
  white-space: nowrap;
}

/* Touch-friendly tap targets — minimum 44px */
button, a, input, select, .time-slot-btn, .service-card, details summary {
  min-height: 44px;
}

/* Better focus states for accessibility */
button:focus-visible, a:focus-visible, input:focus-visible, select:focus-visible {
  outline: 2px solid var(--amber);
  outline-offset: 2px;
}

body {
  background: var(--linen);
  color: var(--charcoal);
  font-family: 'Outfit', sans-serif;
  line-height: 1.6;
  max-width: 640px;
  margin: 0 auto;
  padding: 80px 2rem 2rem;
}

body.booking-page,
body.manage-page {
  max-width: none;
  margin: 0;
  padding: 64px 0 0 0;
}

body.admin-page {
  max-width: none;
  padding: 1.5rem 2rem;
}

body.landing-page {
  max-width: none;
  margin: 0;
  padding: 64px 0 0 0;
  background: #fff;
}

body.careers-page {
  max-width: none;
  margin: 0;
  padding: 64px 0 0 0;
  background: #fff;
}

/* Header is fixed, no extra margin needed on any page */

/* ═══════════════════════════════════════════════════════════════
   Site header
   ═══════════════════════════════════════════════════════════════ */

.site-header {
  background: var(--forest);
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0 2rem;
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 64px;
  position: fixed;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.header-left {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
}
.header-icon-box {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 4px;
}
.header-icon-box svg {
  width: 100%;
  height: 100%;
  display: block;
}
.header-text-stack {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.header-brand {
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  font-family: 'Outfit', sans-serif;
}
.header-brand-accent {
  color: var(--amber);
}
.header-tagline {
  color: var(--mint);
  font-size: 0.55rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.header-cta {
  background: var(--amber);
  color: var(--forest);
  border: none;
  padding: 0.55rem 1.25rem;
  border-radius: 8px;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.header-cta:hover {
  background: #ffbe2e;
  transform: translateY(-1px);
  box-shadow: 0 2px 12px rgba(248, 176, 20, 0.35);
}

body.booking-page > main {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem 2rem;
}
body.manage-page > main {
  max-width: 620px;
  margin: 0 auto;
  padding: 0 2rem 2rem;
}

/* ═══════════════════════════════════════════════════════════════
   Admin Dashboard
   ═══════════════════════════════════════════════════════════════ */

.admin-stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin: 1.5rem 0;
}
@media (max-width: 768px) {
  .admin-stats-row {
    grid-template-columns: repeat(2, 1fr);
  }
}
.admin-stat-card {
  background: #fff;
  border: 1px solid var(--stone);
  border-radius: 12px;
  padding: 1.25rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.stat-value {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 0.15rem;
}
.stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}
.stat-breakdown {
  font-size: 0.75rem;
  color: var(--text-light);
}
.stat-active { color: var(--forest); }
.stat-completed { color: var(--mint); }
.stat-canceled { color: var(--danger); }

/* Deposit Section */
.admin-deposit-section {
  background: #fff;
  border: 1px solid var(--stone);
  border-radius: 12px;
  padding: 1.25rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.admin-deposit-section h3 {
  margin: 0 0 1rem 0;
  font-size: 1rem;
  color: var(--forest);
  font-family: 'DM Serif Display', serif;
}
.deposit-stats-row {
  display: flex;
  gap: 2rem;
  margin-bottom: 1rem;
}
.deposit-stat {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.deposit-stat-value {
  font-size: 1.25rem;
  font-weight: 700;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.deposit-stat-value.deposit-pending {
  background: var(--warning-light);
  color: var(--amber-dark);
}
.deposit-stat-value.deposit-refunded {
  background: var(--success-light);
  color: var(--forest);
}
.deposit-stat-value.deposit-withheld {
  background: var(--danger-light);
  color: var(--danger);
}
.deposit-stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
}
.deposit-action-list {
  margin-top: 0.75rem;
}
.deposit-action-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem;
  border: 1px solid var(--stone);
  border-radius: 8px;
  margin-bottom: 0.5rem;
}
.deposit-action-info {
  font-size: 0.85rem;
}
.deposit-time-ago {
  display: block;
  font-size: 0.75rem;
  color: #999;
  margin-top: 0.15rem;
}
.deposit-auto-refund-warning {
  display: block;
  font-size: 0.75rem;
  color: var(--amber-dark);
  font-weight: 600;
  margin-top: 0.15rem;
}
.deposit-action-buttons {
  display: flex;
  gap: 0.5rem;
}
.btn-deposit-refund {
  padding: 0.35rem 0.75rem;
  font-size: 0.8rem;
  border: 1px solid var(--forest);
  color: var(--forest);
  background: #fff;
  border-radius: 6px;
  cursor: pointer;
  font-family: 'Outfit', sans-serif;
}
.btn-deposit-refund:hover {
  background: var(--forest);
  color: #fff;
}
.btn-deposit-refund:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.btn-deposit-withhold {
  padding: 0.35rem 0.75rem;
  font-size: 0.8rem;
  border: 1px solid var(--danger);
  color: var(--danger);
  background: #fff;
  border-radius: 6px;
  cursor: pointer;
  font-family: 'Outfit', sans-serif;
}
.btn-deposit-withhold:hover {
  background: var(--danger);
  color: #fff;
}
.btn-deposit-withhold:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* ═══════════════════════════════════════════════════════════════
   Admin Toolbar
   ═══════════════════════════════════════════════════════════════ */

.admin-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
  padding: 1rem;
  background: #fff;
  border: 1px solid var(--stone);
  border-radius: 12px;
  flex-wrap: wrap;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.admin-toolbar-left {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1;
}
.admin-toolbar-right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.admin-search-input {
  width: 250px;
  padding: 0.5rem 0.75rem;
  border: 1px solid var(--stone);
  border-radius: 8px;
  font-size: 0.9rem;
  font-family: 'Outfit', sans-serif;
}
.admin-search-input:focus {
  outline: none;
  border-color: var(--forest);
  box-shadow: 0 0 0 3px rgba(0,68,40,0.08);
}
.admin-filters {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  flex-wrap: wrap;
}
.admin-filter-select {
  padding: 0.4rem 0.6rem;
  border: 1px solid var(--stone);
  border-radius: 8px;
  font-size: 0.85rem;
  background: #fff;
  font-family: 'Outfit', sans-serif;
}
.admin-date-filter {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}
.admin-date-filter span {
  font-size: 0.85rem;
  color: #999;
}
.admin-date-input {
  padding: 0.4rem 0.5rem;
  border: 1px solid var(--stone);
  border-radius: 8px;
  font-size: 0.85rem;
  font-family: 'Outfit', sans-serif;
}
.results-count {
  font-size: 0.85rem;
  color: var(--text-muted);
  white-space: nowrap;
}
.btn-export {
  padding: 0.4rem 0.75rem;
  background: var(--forest);
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 0.85rem;
  cursor: pointer;
  white-space: nowrap;
  font-family: 'Outfit', sans-serif;
}
.btn-export:hover {
  background: var(--forest-deep);
}
.btn-clear-filters {
  padding: 0.4rem 0.75rem;
  background: #fff;
  color: var(--text-muted);
  border: 1px solid var(--stone);
  border-radius: 6px;
  font-size: 0.85rem;
  cursor: pointer;
  white-space: nowrap;
  font-family: 'Outfit', sans-serif;
}
.btn-clear-filters:hover {
  background: var(--parchment);
}

/* ═══════════════════════════════════════════════════════════════
   Admin Table
   ═══════════════════════════════════════════════════════════════ */

.admin-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border: 1px solid var(--stone);
  border-radius: 12px;
  overflow: hidden;
  font-size: 0.85rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.admin-table thead {
  background: var(--parchment);
}
.admin-table th {
  padding: 0.6rem 0.5rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.8rem;
  color: var(--forest);
  border-bottom: 2px solid var(--stone);
  white-space: nowrap;
  user-select: none;
}
.admin-table th.sortable {
  cursor: pointer;
}
.admin-table th.sortable:hover {
  background: var(--stone);
}
.admin-table th.sorted {
  color: var(--forest-deep);
  background: var(--stone);
}
.sort-icon {
  font-size: 0.7rem;
  margin-left: 0.2rem;
  color: var(--text-light);
}
.sorted .sort-icon {
  color: var(--forest);
}
.admin-table td {
  padding: 0.5rem;
  border-bottom: 1px solid var(--parchment);
  vertical-align: top;
}
.admin-table tbody tr:hover {
  background: var(--mint-tint);
}
.admin-table tbody tr.row-canceled {
  background: var(--danger-light);
  color: var(--text-muted);
}
.admin-table tbody tr.row-canceled a { color: var(--text-muted); }
.admin-table tbody tr.row-completed {
  background: var(--success-light);
}

/* Status badges */
.badge-active {
  display: inline-block;
  padding: 0.15rem 0.5rem;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 600;
  background: var(--success-light);
  color: var(--forest);
}
.badge-completed {
  display: inline-block;
  padding: 0.15rem 0.5rem;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 600;
  background: var(--mint);
  color: var(--forest);
}
.badge-canceled {
  display: inline-block;
  padding: 0.15rem 0.5rem;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 600;
  background: var(--danger-light);
  color: var(--danger);
}
.badge-pending {
  display: inline-block;
  padding: 0.15rem 0.5rem;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 600;
  background: var(--warning-light);
  color: var(--amber-dark);
}
.rescheduled-note {
  display: block;
  font-size: 0.7rem;
  color: var(--amber-dark);
  margin-top: 0.1rem;
}

/* Rental column with change note */
.rental-was {
  display: block;
  font-size: 0.7rem;
  color: #999;
  text-decoration: line-through;
}

/* Deposit column states */
.deposit-struck {
  text-decoration: line-through;
  color: #999;
}
.deposit-refunded-label {
  display: block;
  font-size: 0.7rem;
  color: var(--forest);
}
.deposit-withheld-label {
  display: block;
  font-size: 0.7rem;
  color: var(--danger);
}

/* Deposit status in table */
.deposit-status-held { color: var(--text-muted); font-size: 0.8rem; }
.deposit-status-pending { color: var(--amber-dark); font-size: 0.8rem; }
.deposit-status-refunded { color: var(--forest); font-size: 0.8rem; }
.deposit-status-withheld { color: var(--danger); font-size: 0.8rem; }
.deposit-status-forfeited { color: var(--danger); font-size: 0.8rem; }

/* ═══════════════════════════════════════════════════════════════
   Admin View Toggle
   ═══════════════════════════════════════════════════════════════ */

.admin-view-toggle {
  display: flex;
  gap: 0;
  margin-bottom: 1rem;
}
.view-toggle-btn {
  padding: 0.5rem 1.25rem;
  border: 1px solid var(--stone);
  background: #fff;
  font-size: 0.85rem;
  cursor: pointer;
  color: var(--text-muted);
  font-family: 'Outfit', sans-serif;
}
.view-toggle-btn:first-child {
  border-radius: 6px 0 0 6px;
}
.view-toggle-btn:last-child {
  border-radius: 0 6px 6px 0;
  border-left: none;
}
.view-toggle-btn.active {
  background: var(--forest);
  color: #fff;
  border-color: var(--forest);
}

/* ═══════════════════════════════════════════════════════════════
   Admin Calendar View
   ═══════════════════════════════════════════════════════════════ */

.admin-calendar {
  background: #fff;
  border: 1px solid var(--stone);
  border-radius: 12px;
  padding: 1.25rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.admin-calendar-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}
.admin-calendar-header h3 {
  margin: 0;
  font-size: 1.1rem;
  min-width: 180px;
  text-align: center;
  font-family: 'DM Serif Display', serif;
  color: var(--forest);
}
.admin-calendar-header button {
  background: none;
  border: 1px solid var(--stone);
  border-radius: 6px;
  padding: 0.3rem 0.6rem;
  cursor: pointer;
  font-size: 1rem;
  font-family: 'Outfit', sans-serif;
}
.admin-calendar-header button:hover {
  background: var(--parchment);
}
.btn-cal-today {
  margin-left: auto;
  font-size: 0.85rem !important;
  padding: 0.3rem 0.75rem !important;
}
.admin-calendar-legend {
  display: flex;
  gap: 1.25rem;
  margin-bottom: 1rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}
.legend-item {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}
.legend-dot {
  width: 12px;
  height: 12px;
  border-radius: 3px;
  display: inline-block;
}
.legend-morning { background: var(--mint); }
.legend-midday { background: var(--amber); }
.legend-evening { background: #a78bfa; }
.legend-canceled { background: var(--stone); }
.admin-calendar-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
  font-size: 0.75rem;
  font-weight: 600;
  color: #999;
  margin-bottom: 0.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #eee;
}
.admin-calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 1px;
  background: #eee;
}
.admin-cal-day {
  background: #fff;
  min-height: 120px;
  padding: 0.35rem;
  position: relative;
}
.admin-cal-day.empty {
  background: #fafafa;
  min-height: 0;
}
.admin-cal-day.today {
  background: var(--mint-tint);
}
.admin-cal-day.today .admin-cal-day-number {
  background: var(--forest);
  color: var(--mint);
  border-radius: 50%;
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.admin-cal-day.past {
  background: #fcfcfc;
}
.admin-cal-day.past .admin-cal-day-number {
  color: #ccc;
}
.admin-cal-day-number {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 0.25rem;
}
.admin-cal-day-bookings {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.admin-cal-booking {
  font-size: 0.7rem;
  padding: 0.2rem 0.35rem;
  border-radius: 3px;
  cursor: pointer;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: opacity 0.15s;
}
.admin-cal-booking:hover {
  opacity: 0.8;
}
.cal-morning {
  background: var(--mint-light);
  color: var(--forest);
  border-left: 3px solid var(--mint);
}
.cal-midday {
  background: var(--warning-light);
  color: var(--amber-dark);
  border-left: 3px solid var(--amber);
}
.cal-evening {
  background: #ede9fe;
  color: #5b21b6;
  border-left: 3px solid #8b5cf6;
}
.cal-canceled {
  background: var(--parchment);
  color: var(--text-muted);
  border-left: 3px solid var(--stone);
}
.cal-booking-guests {
  font-size: 0.65rem;
  opacity: 0.7;
  flex-shrink: 0;
  margin-left: 0.25rem;
}
.admin-cal-empty-slot {
  font-size: 0.65rem;
  color: #ccc;
  padding: 0.15rem 0.35rem;
  border: 1px dashed #e0e0e0;
  border-radius: 3px;
  text-align: center;
}

/* Booking Popup */
.cal-booking-popup {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
  width: 280px;
  overflow: hidden;
}
.cal-popup-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid #eee;
  font-size: 0.95rem;
}
.cal-popup-close {
  background: none;
  border: none;
  font-size: 1rem;
  cursor: pointer;
  color: #999;
  padding: 0;
}
.cal-popup-close:hover {
  color: #333;
}
.cal-popup-body {
  padding: 0.75rem 1rem;
  font-size: 0.8rem;
  color: #555;
}
.cal-popup-body p {
  margin: 0.2rem 0;
}
.cal-popup-actions {
  padding: 0.5rem 1rem 0.75rem;
  border-top: 1px solid #eee;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cal-popup-link {
  font-size: 0.8rem;
  color: var(--forest);
  text-decoration: none;
  font-weight: 600;
}
.cal-popup-link:hover {
  text-decoration: underline;
}
.cal-popup-cancel {
  font-size: 0.8rem;
  padding: 0.25rem 0.6rem;
  border: 1px solid var(--danger);
  color: var(--danger);
  background: #fff;
  border-radius: 6px;
  cursor: pointer;
  font-family: 'Outfit', sans-serif;
}
.cal-popup-cancel:hover {
  background: var(--danger);
  color: #fff;
}

@media (max-width: 900px) {
  .admin-cal-day {
    min-height: 80px;
    padding: 0.25rem;
  }
  .admin-cal-booking {
    font-size: 0.6rem;
  }
  .admin-cal-empty-slot {
    display: none;
  }
  .cal-booking-guests {
    display: none;
  }
}

h1, h2, .page-title {
  font-family: 'DM Serif Display', serif;
  color: var(--forest);
}

h3, .card-title {
  color: var(--forest);
}

h1 {
  font-size: 1.5rem;
  margin: 0;
}

a { color: var(--forest); }
a:hover { color: var(--forest-deep); }

/* (old .intro removed — replaced by landing page sections) */

/* ── Primary button (Continue, Submit, Confirm, Book Another) ── */
.btn-primary,
.btn-continue {
  display: inline-block;
  background: linear-gradient(135deg, #F8B014, #e5a00f);
  color: #004428;
  padding: 0.9rem 2.25rem;
  border-radius: 12px;
  border: none;
  font-weight: 700;
  font-size: 1rem;
  font-family: 'Outfit', sans-serif;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(248,176,20,0.3), 0 1px 3px rgba(0,0,0,0.1);
  transition: all 0.25s ease;
}
.btn-primary:hover,
.btn-continue:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(248,176,20,0.4);
  background: linear-gradient(135deg, #ffbe2e, #F8B014);
  color: #004428;
}
.btn-primary:active,
.btn-continue:active {
  transform: translateY(0);
  box-shadow: 0 2px 10px rgba(248,176,20,0.3);
}
.btn-primary:disabled,
.btn-continue:disabled {
  background: linear-gradient(135deg, #d4d0c8, #c5c1b9);
  color: #999;
  cursor: not-allowed;
  box-shadow: none;
  transform: none;
}

/* ── Secondary button (Back, Cancel) ── */
.btn-back {
  display: inline-block;
  background: #fff;
  color: var(--forest);
  padding: 0.9rem 2.25rem;
  border-radius: 12px;
  border: 1.5px solid var(--stone);
  font-weight: 600;
  font-size: 1rem;
  font-family: 'Outfit', sans-serif;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.25s ease;
}
.btn-back:hover {
  border-color: var(--forest);
  background: #fafaf8;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  color: var(--forest);
}
.btn-back:active {
  transform: translateY(0);
  box-shadow: none;
}

/* (old .how-it-works / footer removed — replaced by landing page sections) */

/* Booking page */
.booking-form section {
  margin-bottom: 2rem;
}

.booking-form label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.booking-form input,
.booking-form select {
  font-size: 1rem;
  padding: 0.6rem 0.75rem;
  width: 100%;
  max-width: 300px;
  border: 1px solid var(--stone);
  border-radius: 8px;
  font-family: 'Outfit', sans-serif;
  background: #fff;
  color: var(--charcoal);
}
.booking-form input:focus,
.booking-form select:focus {
  outline: none;
  border-color: var(--forest);
  box-shadow: 0 0 0 3px rgba(0,68,40,0.08);
}

.time-blocks {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.time-block-option {
  padding: 1rem;
  border: 1.5px solid var(--stone);
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.2s;
}

.time-block-option:hover {
  border-color: var(--forest);
  box-shadow: 0 2px 8px rgba(0,68,40,0.08);
}

.time-block-option.selected {
  border-color: var(--forest);
  background: var(--mint-tint);
}

.time-block-option h3 {
  margin: 0 0 0.25rem 0;
  font-size: 1rem;
}

.time-block-option p {
  margin: 0;
  font-size: 0.9rem;
  color: #555;
}

.error {
  color: var(--danger);
  font-size: 0.9rem;
  margin-top: 0.5rem;
}

.summary {
  background: var(--mint-tint);
  padding: 1rem;
  border-radius: 10px;
  margin-top: 1rem;
}

.summary p {
  margin: 0.25rem 0;
}

.hidden {
  display: none !important;
}

.hint {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0 0 0.5rem 0;
}

/* (old .intro-text removed) */

/* Availability section */
.availability-section {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--stone);
}

.availability-section h2 {
  font-size: 1.25rem;
  margin: 0 0 0.5rem 0;
}

.availability-nav {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1rem 0;
}

.availability-nav .btn-secondary {
  padding: 0.35rem 0.75rem;
  font-size: 1rem;
  background: var(--parchment);
  border: 1px solid var(--stone);
  border-radius: 6px;
  cursor: pointer;
  font-family: 'Outfit', sans-serif;
}

.availability-nav .btn-secondary:hover {
  background: var(--stone);
}

#availability-month-label {
  font-weight: 600;
  min-width: 10rem;
}

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

.availability-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid #eee;
}

.availability-date {
  font-size: 0.9rem;
  color: var(--charcoal);
  min-width: 11rem;
}

.availability-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.availability-chip {
  padding: 0.5rem 0.75rem;
  font-size: 0.85rem;
  border: 1.5px solid var(--stone);
  border-radius: 8px;
  background: #fff;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
}

.availability-chip:hover:not(.disabled) {
  border-color: var(--forest);
  background: var(--mint-tint);
}

.availability-chip.disabled,
.availability-chip:disabled {
  cursor: default;
  color: var(--text-muted);
  background: var(--parchment);
  border-color: var(--stone);
}

.availability-chip.selected {
  border-color: var(--forest);
  background: var(--forest);
  color: #fff;
}

/* Manage booking page */
.manage-loading {
  margin: 2rem 0;
  color: var(--text-muted);
}

.manage-booking-details {
  margin-bottom: 1.5rem;
  background: #fff;
  border: 1px solid var(--stone);
  border-radius: 12px;
  padding: 1.25rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.manage-section {
  margin-bottom: 1.5rem;
}

.manage-booking-details h2 {
  font-size: 1.25rem;
  margin: 0 0 0.75rem 0;
}

.manage-section h2 {
  font-size: 1.25rem;
  margin: 0 0 0.5rem 0;
}

.manage-status {
  display: inline-block;
  font-weight: 600;
  font-size: 0.8rem;
  padding: 0.2rem 0.6rem;
  border-radius: 12px;
  margin: 0 0 0.75rem 0;
  background: var(--success-light);
  color: var(--forest);
}

.manage-status-canceled {
  background: var(--danger-light);
  color: var(--danger);
}

.manage-details-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.manage-details-list li {
  margin: 0.3rem 0;
  font-size: 0.95rem;
}

.manage-price-note {
  margin-top: 0.75rem;
  padding: 0.6rem 0.75rem;
  background: var(--parchment);
  border-radius: 8px;
  font-size: 0.9rem;
  color: var(--charcoal);
}

.manage-timing-section {
  margin-top: 1rem;
  padding: 0.75rem 1rem;
  background: var(--mint-tint);
  border-left: 3px solid var(--mint);
  border-radius: 0 8px 8px 0;
  font-size: 0.9rem;
}

.manage-timing-section p {
  margin: 0.25rem 0;
}

.manage-policy-summary {
  margin-top: 1rem;
  padding: 1rem;
  background: var(--parchment);
  border-radius: 12px;
  font-size: 0.8rem;
}

.manage-policy-summary p {
  margin: 0.25rem 0;
}

.manage-selection {
  margin-top: 1rem;
  padding: 1.25rem;
  background: #fff;
  border: 1px solid var(--stone);
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.manage-selection p {
  margin: 0 0 0.5rem 0;
}

.manage-selection label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.35rem;
  font-size: 0.9rem;
}

.manage-selection select {
  width: 100%;
  padding: 0.6rem 0.75rem;
  font-size: 0.95rem;
  border: 1px solid var(--stone);
  border-radius: 8px;
  background: #fff;
  margin-bottom: 0.75rem;
  font-family: 'Outfit', sans-serif;
}

.manage-selection select:focus {
  outline: none;
  border-color: var(--forest);
  box-shadow: 0 0 0 3px rgba(0,68,40,0.08);
}

.manage-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin: 0.75rem 0;
  cursor: pointer;
  font-size: 0.9rem;
}

.manage-checkbox input {
  width: auto;
  margin-top: 0.2rem;
  flex-shrink: 0;
  accent-color: var(--forest);
}

.manage-cancel-btn {
  margin-top: 0.75rem;
  display: inline-block;
  background: #fff;
  color: var(--danger);
  padding: 0.9rem 2.25rem;
  border-radius: 12px;
  border: 1.5px solid var(--danger);
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  font-family: 'Outfit', sans-serif;
  transition: all 0.25s ease;
}

.manage-cancel-btn:hover:not(:disabled) {
  background: var(--danger);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.manage-cancel-btn:active:not(:disabled) {
  transform: translateY(0);
  box-shadow: none;
}

.manage-cancel-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.manage-success {
  color: var(--forest);
  background: var(--success-light);
  border-left: 3px solid var(--mint);
  border-radius: 0 8px 8px 0;
  padding: 0.75rem 1rem;
  margin-top: 0.5rem;
  font-size: 0.95rem;
}

/* --- Cancel refund preview & Reschedule price preview --- */
.manage-refund-preview,
.manage-reschedule-price-preview {
  background: #fff;
  padding: 1.25rem;
  border: 1px solid var(--stone);
  border-radius: 12px;
  margin: 1rem 0;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.manage-refund-preview .refund-tier {
  font-weight: 600;
  margin: 0 0 0.5rem 0;
}

.manage-refund-preview .refund-line,
.manage-reschedule-price-preview .price-line {
  margin: 0.25rem 0;
  font-size: 0.9rem;
}

.manage-refund-preview .refund-total {
  font-weight: 600;
}

.manage-refund-preview .refund-warning {
  color: var(--danger);
  font-weight: 600;
  margin: 0.5rem 0 0 0;
}

.manage-reschedule-price-preview .price-same {
  margin: 0.25rem 0;
  font-size: 0.9rem;
  color: #555;
}

.manage-reschedule-price-preview .price-higher {
  margin: 0.25rem 0;
  font-size: 0.9rem;
  color: var(--amber-dark);
  font-weight: 600;
}

.manage-reschedule-price-preview .price-lower {
  margin: 0.25rem 0;
  font-size: 0.9rem;
  color: var(--forest);
  font-weight: 600;
}

/* ── Manage page redesign: shared components ────────────────── */

.manage-page-header {
  text-align: center;
  margin-bottom: 2rem;
}
.manage-page-header .page-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  margin: 0 auto 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}
.manage-page-header h2,
.manage-page-header h3 {
  font-family: 'DM Serif Display', serif;
  color: var(--forest);
  font-size: 1.4rem;
  margin: 0;
}
.manage-page-header p {
  color: #999;
  font-size: 0.82rem;
  margin-top: 0.25rem;
}

/* Manage cards */
.manage-card {
  background: #fff;
  border: 1px solid var(--stone);
  border-radius: 12px;
  padding: 1.25rem;
  margin-bottom: 1.5rem;
}
.manage-card .card-label {
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #aaa;
  margin-bottom: 0.5rem;
  font-weight: 600;
}
.manage-card .detail-row {
  display: flex;
  justify-content: space-between;
  padding: 0.4rem 0;
  font-size: 0.85rem;
}
.manage-card .detail-row .label { color: #888; }
.manage-card .detail-row .value { color: var(--charcoal); font-weight: 500; }
.manage-card .divider {
  border: none;
  border-top: 1px solid #f0ede6;
  margin: 0.5rem 0;
}
.manage-card .total-row {
  display: flex;
  justify-content: space-between;
  border-top: 1.5px solid var(--stone);
  margin-top: 0.5rem;
  padding-top: 0.75rem;
  font-size: 0.85rem;
}
.manage-card .total-row .label {
  color: var(--forest);
  font-weight: 600;
}
.manage-card .total-row .value {
  color: var(--forest);
  font-weight: 700;
  font-size: 0.95rem;
}

/* Info banners (reschedule fee notice) */
.info-banner {
  border-radius: 10px;
  padding: 0.85rem 1rem;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.78rem;
  color: #555;
  line-height: 1.5;
  margin-bottom: 1.5rem;
}
.info-banner.success {
  background: rgba(156,220,176,0.1);
  border: 1px solid rgba(156,220,176,0.25);
}
.info-banner.warning {
  background: rgba(248,176,20,0.08);
  border: 1px solid rgba(248,176,20,0.25);
}
.info-banner .info-icon {
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* Price/deposit notes */
.price-note {
  font-size: 0.75rem;
  font-weight: 500;
  margin-top: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}
.deposit-note {
  font-size: 0.75rem;
  color: #aaa;
  margin-top: 0.35rem;
}

/* Warning banner (non-cancellable, post-reschedule) */
.warning-banner {
  background: rgba(196,76,63,0.06);
  border-left: 3px solid var(--chili);
  border-radius: 0 10px 10px 0;
  padding: 0.85rem 1rem;
  font-size: 0.78rem;
  color: #777;
  line-height: 1.5;
  margin-top: 1.5rem;
}
.warning-banner strong {
  color: var(--chili);
  display: block;
  margin-bottom: 0.2rem;
  font-size: 0.82rem;
}

/* Danger / chili primary button (for cancellation confirm) */
.btn-danger {
  display: inline-block;
  background: linear-gradient(135deg, #C44C3F, #a83e33);
  color: #fff;
  padding: 0.9rem 2.25rem;
  border-radius: 12px;
  border: none;
  font-weight: 700;
  font-size: 1rem;
  font-family: 'Outfit', sans-serif;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(196,76,63,0.3), 0 1px 3px rgba(0,0,0,0.1);
  transition: all 0.25s ease;
}
.btn-danger:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(196,76,63,0.4);
  background: linear-gradient(135deg, #d4564a, #C44C3F);
}
.btn-danger:active:not(:disabled) {
  transform: translateY(0);
  box-shadow: 0 2px 10px rgba(196,76,63,0.3);
}
.btn-danger:disabled {
  background: linear-gradient(135deg, #d4d0c8, #c5c1b9);
  color: #999;
  cursor: not-allowed;
  box-shadow: none;
  transform: none;
}

/* Manage page: shorter terms scroll boxes */
.manage-page .terms-scroll-box {
  height: 160px;
}

/* Manage page: terms headings override for smaller sections */
.manage-page .terms-heading {
  font-family: 'DM Serif Display', serif;
  color: var(--forest);
  font-size: 1rem;
  margin: 0 0 0.25rem 0;
}
.manage-page .terms-intro {
  color: #aaa;
  font-size: 0.75rem;
  margin: 0 0 0.5rem 0;
}

/* Manage page: reschedule checkbox label */
.manage-page .policy-agree-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  cursor: pointer;
  font-size: 0.8rem;
  color: #555;
  line-height: 1.5;
  margin: 0.75rem 0;
}
.manage-page .policy-agree-checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 0.1rem;
  accent-color: var(--forest);
  cursor: pointer;
}

/* Non-cancellable notice (managed via JS) */
.non-cancellable-notice {
  background: rgba(196,76,63,0.06);
  border-left: 3px solid var(--chili);
  border-radius: 0 10px 10px 0;
  padding: 0.85rem 1rem;
  font-size: 0.78rem;
  color: #777;
  line-height: 1.5;
  margin: 1.5rem 0;
}
.non-cancellable-notice strong {
  color: var(--chili);
  display: block;
  margin-bottom: 0.2rem;
  font-size: 0.82rem;
}

/* Status badges (manage page) */
.status-badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.status-badge.cancelled {
  background: rgba(196,76,63,0.1);
  color: var(--chili);
}
.status-badge.confirmed {
  background: rgba(156,220,176,0.15);
  color: #2a7a4a;
}
.status-badge.completed {
  background: rgba(0,68,40,0.08);
  color: var(--forest);
}

/* Cancelled view: page header with WD icon + badge */
.cancelled-icon-wrap {
  position: relative;
  width: 50px;
  height: 50px;
  margin: 0 auto 0.75rem;
}
.cancelled-icon-wrap svg {
  width: 50px;
  height: 50px;
}
.cancelled-icon-wrap .icon-badge {
  position: absolute;
  bottom: -2px;
  right: -4px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--chili);
  color: #fff;
  font-size: 0.6rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #fff;
}

/* Cancelled view: Book Again button wrapper */
.cancelled-action {
  text-align: center;
  margin-top: 2rem;
}

/* Admin cancel modal — polished card layout */
.admin-cancel-modal-inner {
  max-width: 620px;
  width: 95%;
}

/* ── End manage page redesign ───────────────────────────────── */

/* Fee notice now styled as info-banner via class in JS */
.reschedule-fee-notice {
  border-radius: 10px;
  padding: 0.85rem 1rem;
  font-size: 0.78rem;
  color: #555;
  line-height: 1.5;
  margin: 0 0 1.5rem 0;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}
.reschedule-fee-notice.fee-free {
  background: rgba(156,220,176,0.1);
  border: 1px solid rgba(156,220,176,0.25);
}
.reschedule-fee-notice.fee-paid {
  background: rgba(248,176,20,0.08);
  border: 1px solid rgba(248,176,20,0.25);
}

/* (manage-section .btn-primary — now uses global .btn-primary / .btn-continue) */

/* Manage page — hint text */
.manage-section > .hint {
  font-size: 0.85rem;
  color: #666;
  line-height: 1.5;
  margin: 0 0 0.75rem 0;
}

/* Manage page — availability nav label */
.manage-page #reschedule-month-label {
  font-weight: 600;
  min-width: 10rem;
}

.cancel-summary-box {
  background: #fff;
  padding: 1.25rem;
  border: 1px solid var(--stone);
  border-radius: 12px;
  margin: 1rem 0;
  font-size: 0.9rem;
  line-height: 1.6;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.cancel-summary-box a {
  color: var(--forest);
}

.booking-policy-summary {
  background: var(--parchment);
  padding: 0.75rem 1rem;
  border-radius: 8px;
  font-size: 0.85rem;
  color: var(--charcoal);
  margin: 1rem 0;
}

.booking-policy-summary p {
  margin: 0 0 0.25rem 0;
}

.booking-policy-summary ul {
  margin: 0.25rem 0 0 0;
  padding-left: 1.2rem;
}

.booking-policy-summary li {
  margin: 0.2rem 0;
}

/* ═══════════════════════════════════════════════════════════════
   Multi-step booking flow
   ═══════════════════════════════════════════════════════════════ */

/* Progress bar */
.progress-bar {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  margin-bottom: 2rem;
  padding: 1rem 0;
}

.progress-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
}

.step-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid var(--stone);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-light);
  background: #fff;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.progress-step.active .step-circle {
  background: var(--amber);
  border-color: var(--amber);
  color: var(--forest);
}

.progress-step.completed .step-circle {
  background: var(--forest);
  border-color: var(--forest);
  color: var(--mint);
}

.step-label {
  font-size: 0.75rem;
  color: var(--text-light);
  white-space: nowrap;
}

.progress-step.active .step-label {
  color: var(--amber);
  font-weight: 600;
}

.progress-step.completed .step-label {
  color: var(--forest);
}

.progress-line {
  flex: 1;
  height: 2px;
  background: var(--stone);
  margin: 0 0.5rem;
  margin-top: 18px;
  transition: background 0.2s;
}

.progress-line.completed {
  background: var(--forest);
}

@media (max-width: 480px) {
  .step-label { display: none; }
  .progress-line { margin-top: 18px; }
}

/* Step content */
.step-content h2 {
  font-size: 1.35rem;
  margin: 0 0 0.25rem 0;
}

.step-subtitle {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin: 0 0 1rem 0;
}

/* Service cards */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1rem;
  margin: 1.5rem 0;
}

.service-card {
  border: 1.5px solid var(--stone);
  border-radius: 10px;
  padding: 1.25rem;
  cursor: pointer;
  background: #fff;
  transition: all 0.2s;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.service-card:hover {
  border-color: var(--forest);
  box-shadow: 0 2px 8px rgba(0,68,40,0.08);
}

.service-card.selected {
  border: 2px solid var(--forest);
  background: var(--forest);
  color: #fff;
}

.service-card-icon {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.service-card h3 {
  margin: 0 0 0.25rem 0;
  font-size: 1.1rem;
}

.service-card p {
  margin: 0.15rem 0;
  font-size: 0.85rem;
  color: var(--text-muted);
}
.service-card.selected p {
  color: rgba(255,255,255,0.7);
}
.service-card.selected h3 {
  color: #fff;
}

.service-card .price-hint {
  margin-top: 0.5rem;
  font-weight: 700;
  color: var(--amber);
  font-size: 0.95rem;
}
.service-card-content {
  flex: 1;
}
.service-arrow {
  font-size: 1.25rem;
  color: var(--forest);
  margin-left: 1rem;
  opacity: 0.4;
  transition: opacity 0.2s;
}
.service-card:hover .service-arrow {
  opacity: 1;
}
.service-card.selected .service-arrow {
  color: #fff;
  opacity: 1;
}
.service-card.coming-soon {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}
.service-card.coming-soon:hover {
  border-color: var(--stone);
  box-shadow: none;
}
.coming-soon-badge {
  background: var(--stone);
  color: var(--text-muted);
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.2rem 0.65rem;
  border-radius: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  position: absolute;
  top: 12px;
  right: 12px;
}

/* ═══════════════════════════════════════════════════════════════
   Calendar + time slot layout
   ═══════════════════════════════════════════════════════════════ */

/* Shared wrapper: side-by-side on desktop */
.calendar-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin: 1.5rem 0;
  background: #fff;
  border: 1px solid var(--stone);
  border-radius: 12px;
  padding: 1.25rem;
}

/* On booking page (wider container), allow more room for calendar */
body.booking-page .calendar-layout {
  grid-template-columns: 55% 1fr;
}

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

/* ── Calendar grid (left column) ────────────────────────────── */
.calendar-grid {
  border: none;
  border-radius: 0;
  padding: 0;
  background: transparent;
  min-width: 0;
}

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

.calendar-header button {
  width: 32px;
  height: 32px;
  min-height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px solid var(--stone);
  border-radius: 50%;
  cursor: pointer;
  font-size: 1rem;
  line-height: 1;
  padding: 0;
  transition: background 0.15s;
}

.calendar-header button:hover {
  background: var(--parchment);
}

.calendar-header span {
  font-weight: 600;
  font-size: 1rem;
  color: var(--forest);
}

.calendar-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
  font-size: 0.65rem;
  color: #aaa;
  margin-bottom: 0.35rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

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

.calendar-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.1s;
  user-select: none;
  min-height: 32px;
  min-width: 0;
  color: var(--charcoal);
}

.calendar-day:hover:not(.disabled):not(.empty):not(.fully-booked) {
  background: rgba(0,68,40,0.06);
}

.calendar-day.disabled {
  color: #ddd;
  cursor: default;
  pointer-events: none;
}

.calendar-day.empty {
  cursor: default;
}

.calendar-day.selected {
  background: var(--forest);
  color: #fff;
}

.calendar-day.today:not(.selected) {
  font-weight: 600;
  color: var(--forest);
  border: 1.5px solid var(--forest);
}

.calendar-day.fully-booked {
  color: #ddd;
  text-decoration: line-through;
  cursor: default;
}

/* ── Time slots panel (right column) ────────────────────────── */
.time-slots-panel {
  padding: 0;
  border: none;
  border-left: 1px solid #f0ede6;
  padding-left: 1.5rem;
  border-radius: 0;
  background: transparent;
}

@media (max-width: 640px) {
  .time-slots-panel {
    border-left: none;
    padding-left: 0;
    border-top: 1px solid #f0ede6;
    padding-top: 1rem;
  }
}

.time-slots-panel h3 {
  margin: 0 0 0.75rem 0;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--forest);
}

.time-slot-placeholder {
  color: #aaa;
  font-size: 0.85rem;
}

.time-slot-btn {
  display: block;
  width: 100%;
  text-align: left;
  padding: 0.7rem 1rem;
  margin-bottom: 0.5rem;
  border: 1px solid var(--stone);
  border-radius: 8px;
  background: #fff;
  cursor: pointer;
  font-size: 0.85rem;
  font-family: 'Outfit', sans-serif;
  color: var(--charcoal);
  transition: all 0.15s;
}

.time-slot-btn:hover {
  border-color: var(--forest);
  background: rgba(0,68,40,0.03);
}

.time-slot-btn.selected {
  border-color: var(--forest);
  background: var(--forest);
  color: #fff;
}
.time-slot-btn.selected .slot-detail { color: rgba(255,255,255,0.6); }
.time-slot-btn.selected h4 { color: #fff; }

.time-slot-btn h4 {
  margin: 0;
  font-size: 0.9rem;
}

.time-slot-btn p {
  margin: 0.15rem 0 0 0;
  font-size: 0.8rem;
  color: var(--text-muted);
}
.time-slot-btn.selected p {
  color: rgba(255,255,255,0.6);
}

/* Step navigation / button row */
.step-nav,
.button-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
}

/* Step 2 details section */
.step-2-details {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid #eee;
}

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

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

.details-left h3,
.details-right h3 {
  margin: 0 0 1rem 0;
  font-size: 1.05rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.35rem;
  font-size: 0.9rem;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 0.6rem 0.75rem;
  font-size: 0.95rem;
  border: 1px solid var(--stone);
  border-radius: 8px;
  background: #fff;
  font-family: 'Outfit', sans-serif;
  color: var(--charcoal);
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--forest);
  box-shadow: 0 0 0 3px rgba(0,68,40,0.08);
}

.form-hint {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin: 0.25rem 0 0 0;
}

.form-hint a {
  color: var(--forest);
}

/* Booking summary card */
.booking-summary-card {
  background: var(--mint-tint);
  border-radius: 10px;
  padding: 1.25rem;
  position: sticky;
  top: 1rem;
}

.booking-summary-card h3 {
  margin: 0 0 1rem 0;
  font-size: 0.8rem;
  color: var(--forest);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.booking-summary-card hr {
  border: none;
  border-top: 1px solid var(--stone);
  margin: 0.75rem 0;
}

.summary-line {
  display: flex;
  justify-content: space-between;
  margin: 0.4rem 0;
  font-size: 0.9rem;
}

.summary-label {
  color: var(--text-muted);
}

.summary-value {
  font-weight: 500;
  color: var(--charcoal);
  text-align: right;
}

.summary-total {
  font-weight: 700;
  font-size: 1rem;
  margin-top: 0.5rem;
}

.summary-total {
  border-top: 2px solid var(--forest);
  padding-top: 0.5rem;
}
.summary-total .summary-label,
.summary-total .summary-value {
  color: var(--charcoal);
}

/* Booking policy card */
.booking-policy-card {
  margin-top: 1rem;
  background: var(--parchment);
  border-radius: 10px;
  padding: 1rem;
  font-size: 0.8rem;
  color: var(--charcoal);
}

.booking-policy-card h4 {
  margin: 0 0 0.5rem 0;
  font-size: 0.85rem;
  color: var(--forest);
}

.booking-policy-card p {
  margin: 0.3rem 0;
}

.booking-policy-card ul {
  margin: 0.25rem 0 0.5rem 0;
  padding-left: 1.2rem;
}

.booking-policy-card li {
  margin: 0.2rem 0;
}

/* ── Terms & Waiver — unified section styles ──────────────── */

/* Section headings (Booking Terms, Liability Waiver, Reschedule/Cancel Terms) */
.terms-heading {
  font-family: 'DM Serif Display', serif;
  color: var(--forest);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

/* Intro line below section headings */
.terms-intro,
.waiver-intro {
  color: #888;
  font-size: 0.82rem;
  margin-bottom: 0.75rem;
}

/* Waiver section spacing */
.waiver-section {
  margin-top: 2rem;
  margin-bottom: 1.5rem;
}

/* Checkbox row — disabled/enabled opacity pattern (both terms & waiver) */
.terms-checkbox-row,
.waiver-checkbox-row {
  opacity: 0.5;
  transition: opacity 0.3s ease;
}
.terms-checkbox-row.enabled,
.waiver-checkbox-row.enabled {
  opacity: 1;
}

/* Checkbox labels — consistent for both terms & waiver */
.terms-label,
.waiver-label {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  cursor: pointer;
  font-size: 0.82rem;
  color: var(--forest);
  font-weight: 500;
  line-height: 1.4;
}

.terms-label input[type="checkbox"],
.waiver-label input[type="checkbox"] {
  margin-top: 0.15rem;
  accent-color: var(--forest);
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* Legacy policy-agree-checkbox (used on manage.html reschedule/cancel flows) */
.policy-agree-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin: 1rem 0;
  cursor: pointer;
  font-size: 0.82rem;
  color: var(--forest);
  font-weight: 500;
  line-height: 1.4;
}
.policy-agree-checkbox input[type="checkbox"] {
  margin-top: 0.15rem;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  accent-color: var(--forest);
}
.policy-agree-checkbox span {
  line-height: 1.4;
}

/* ═══════════════════════════════════════════════════════════════
   Confirmation page (booking-success.html)
   ═══════════════════════════════════════════════════════════════ */

.confirmation-container {
  max-width: 650px;
  margin: 2rem auto;
  padding: 0 1rem;
}

.confirm-header {
  text-align: center;
  margin-bottom: 2rem;
}
.confirm-icon {
  width: 64px;
  height: 64px;
  background: var(--forest);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.5rem;
  color: var(--mint);
}
.confirm-title {
  font-family: 'DM Serif Display', serif;
  font-size: 1.8rem;
  color: var(--forest);
  margin: 0 0 0.25rem 0;
}
.confirm-subtitle {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin: 0;
}

.confirm-details-card {
  background: #fff;
  border: 1px solid var(--stone);
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.confirm-details-card h2 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.15rem;
  color: var(--forest);
  margin: 0 0 1rem 0;
}
.confirm-detail-row {
  display: flex;
  justify-content: space-between;
  padding: 0.4rem 0;
  font-size: 0.9rem;
}
.confirm-label {
  color: var(--text-muted);
}
.confirm-value {
  font-weight: 500;
  color: var(--charcoal);
}
.confirm-divider {
  height: 1px;
  background: var(--stone);
  margin: 0.75rem 0;
}
.confirm-total {
  border-top: 2px solid var(--forest);
  margin-top: 0.5rem;
  padding-top: 0.6rem;
}
.confirm-total .confirm-label,
.confirm-total .confirm-value {
  font-weight: 700;
  font-size: 1rem;
  color: var(--charcoal);
}

.confirm-reminders {
  background: #fff;
  border: 1px solid var(--stone);
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.confirm-reminders h2 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.15rem;
  color: var(--forest);
  margin: 0 0 1rem 0;
}

.reminder-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--parchment);
  font-size: 0.85rem;
  color: #555;
}
.reminder-item:last-child {
  border-bottom: none;
}
.reminder-icon {
  font-size: 1.1rem;
  flex-shrink: 0;
}

.confirm-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

/* Outline button (Manage Your Booking on confirmation page) */
.btn-outline {
  display: inline-block;
  background: #fff;
  border: 1.5px solid var(--stone);
  color: var(--forest);
  padding: 0.9rem 2.25rem;
  border-radius: 12px;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.25s ease;
}
.btn-outline:hover {
  border-color: var(--forest);
  background: #fafaf8;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  color: var(--forest);
}
.btn-outline:active {
  transform: translateY(0);
  box-shadow: none;
}

/* Ghost button (Back to Home on confirmation page) */
.btn-ghost {
  display: inline-block;
  background: #fff;
  color: var(--forest);
  border: 1.5px solid var(--stone);
  padding: 0.9rem 2.25rem;
  border-radius: 12px;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.25s ease;
}
.btn-ghost:hover {
  border-color: var(--forest);
  background: #fafaf8;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  color: var(--forest);
}

.btn-secondary-link {
  display: inline-block;
  padding: 0.65rem 1.3rem;
  border: 1.5px solid var(--forest);
  border-radius: 6px;
  color: var(--forest);
  text-decoration: none;
  font-size: 0.95rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  transition: all 0.2s;
}

.btn-secondary-link:hover {
  background: var(--forest);
  color: #fff;
}

.btn-primary-link {
  display: inline-block;
  padding: 0.65rem 1.5rem;
  background: var(--amber);
  color: var(--forest);
  border-radius: 6px;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  font-family: 'Outfit', sans-serif;
  transition: all 0.2s;
}

.btn-primary-link:hover {
  background: var(--amber-hover);
  color: var(--forest);
}

/* (confirm-actions mobile moved to main mobile block) */

/* (old index page refinements removed) */

/* ═══════════════════════════════════════════════════════════════
   Scrollable terms / waiver box (unified)
   ═══════════════════════════════════════════════════════════════ */

.terms-scroll-container {
  position: relative;
  margin: 0 0 0.75rem 0;
}

.terms-scroll-box,
.waiver-scroll-box {
  height: 250px;
  overflow-y: auto;
  border: 1px solid var(--stone);
  border-radius: 10px;
  padding: 1.25rem;
  background: #fff;
  font-size: 0.8rem;
  line-height: 1.7;
  color: #555;
  margin-bottom: 0.75rem;
}

/* Custom scrollbar for both */
.terms-scroll-box::-webkit-scrollbar,
.waiver-scroll-box::-webkit-scrollbar {
  width: 6px;
}
.terms-scroll-box::-webkit-scrollbar-track,
.waiver-scroll-box::-webkit-scrollbar-track {
  background: #f0ede6;
  border-radius: 3px;
}
.terms-scroll-box::-webkit-scrollbar-thumb,
.waiver-scroll-box::-webkit-scrollbar-thumb {
  background: var(--stone);
  border-radius: 3px;
}

/* Strong headings inside scroll boxes */
.terms-scroll-box strong,
.waiver-scroll-box strong {
  color: var(--forest);
  display: block;
  margin-top: 1rem;
  margin-bottom: 0.25rem;
}
.terms-scroll-box h4 {
  font-size: 0.85rem;
  color: var(--forest);
  margin: 0.75rem 0 0.35rem 0;
}
.terms-scroll-box h4:first-child {
  margin-top: 0;
}
.terms-scroll-box p,
.waiver-scroll-box p {
  margin: 0.25rem 0;
}
.terms-scroll-box ul,
.waiver-scroll-box ul {
  margin: 0.25rem 0 0.25rem 1.25rem;
  padding: 0;
}
.terms-scroll-box ul li,
.waiver-scroll-box ul li {
  margin: 0.15rem 0;
}

/* Fade overlay at bottom of scroll box */
.terms-scroll-fade {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40px;
  background: linear-gradient(transparent, rgba(255,255,255,0.95));
  pointer-events: none;
  transition: opacity 0.3s;
}
.terms-scroll-fade.faded-out {
  opacity: 0;
}

/* Scroll hint text */
.terms-scroll-hint {
  font-size: 0.8rem;
  color: var(--amber-dark);
  margin: 0.25rem 0 0.5rem 0;
  text-align: center;
  transition: opacity 0.3s, height 0.3s, margin 0.3s;
}
.terms-scroll-hint.faded-out {
  opacity: 0;
  height: 0;
  margin: 0;
  overflow: hidden;
}

/* ═══════════════════════════════════════════════════════════════
   Cancel refund calculation
   ═══════════════════════════════════════════════════════════════ */

.cancel-calculation {
  background: #fff;
  border: 1px solid var(--stone);
  border-radius: 12px;
  padding: 1.25rem;
  margin: 1rem 0;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.refund-table {
  width: 100%;
  border-collapse: collapse;
  margin: 0.25rem 0;
}
.refund-table td {
  padding: 0.4rem 0;
  font-size: 0.9rem;
}
.refund-label {
  color: var(--text-muted);
}
.refund-value {
  text-align: right;
  color: var(--charcoal);
}
.refund-total-row td {
  padding-top: 0.6rem;
  border-top: 2px solid var(--forest);
  font-weight: 700;
  font-size: 0.95rem;
}
.refund-total-row .refund-label,
.refund-total-row .refund-value {
  color: var(--charcoal);
}
.refund-tiers {
  margin: 0.75rem 0;
}
.refund-tier {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0.75rem;
  font-size: 0.85rem;
  border-left: 3px solid #ddd;
  margin-bottom: 2px;
}
.refund-tier-inactive {
  color: #ccc;
}
.refund-tier-active-green {
  background: var(--success-light);
  border-left-color: var(--mint);
  color: var(--charcoal);
  font-weight: 600;
}
.refund-tier-active-amber {
  background: var(--warning-light);
  border-left-color: var(--amber);
  color: var(--charcoal);
  font-weight: 600;
}
.refund-tier-active-red {
  background: var(--danger-light);
  border-left-color: var(--danger);
  color: var(--charcoal);
  font-weight: 600;
}
.tier-label {
  flex: 1;
}
.tier-value {
  text-align: right;
}

/* ═══════════════════════════════════════════════════════════════
   Landing Page — Shared Section Styles
   ═══════════════════════════════════════════════════════════════ */

.section-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 5rem 1.5rem;
}
.section-label {
  display: block;
  text-align: center;
  color: var(--amber);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.section-label-light {
  color: var(--amber);
}
.section-heading {
  font-family: 'DM Serif Display', serif;
  font-size: 1.8rem;
  color: var(--forest);
  text-align: center;
  margin-bottom: 0.35rem;
}
.section-subheading {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 2.5rem;
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
}

/* ═══════════════════════════════════════════════════════════════
   Scroll animations
   ═══════════════════════════════════════════════════════════════ */

.animate-on-scroll {
  opacity: 0;
  transform: translateY(20px);
}
.animate-on-scroll.animated {
  animation: fadeInUp 0.6s ease-out forwards;
}

/* ═══════════════════════════════════════════════════════════════
   Landing Page — Hero
   ═══════════════════════════════════════════════════════════════ */

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes heroFloat {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  33%      { transform: translate(12px, -18px) rotate(4deg); }
  66%      { transform: translate(-8px, 10px) rotate(-3deg); }
}
@keyframes heroBounce {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(8px); }
}

.hero {
  background:
    radial-gradient(ellipse 80% 60% at 20% 80%, rgba(156,220,176,0.06) 0%, transparent 70%),
    radial-gradient(ellipse 60% 50% at 80% 20%, rgba(248,176,20,0.04) 0%, transparent 70%),
    linear-gradient(160deg, #004428 0%, #002e1a 60%, #003820 100%);
  text-align: center;
  min-height: 100vh;
  padding: 6rem 2rem 4rem;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.hero-float {
  position: absolute;
  opacity: 0.05;
  pointer-events: none;
  animation: heroFloat 22s infinite ease-in-out;
  z-index: 0;
  font-size: 10rem;
}
.hero-float-1 { top: 8%; left: 4%; animation-duration: 18s; }
.hero-float-2 { bottom: 12%; right: 6%; animation-duration: 24s; animation-delay: -7s; }
.hero-float-3 { top: 45%; right: 10%; animation-duration: 21s; animation-delay: -12s; font-size: 8rem; }

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

/* Staggered fade-in on load */
.hero-anim {
  opacity: 0;
  animation: fadeInUp 0.8s ease-out forwards;
}

.hero-title {
  font-family: 'DM Serif Display', serif;
  color: #fff;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  margin: 0 auto 0.75rem;
  line-height: 1.15;
  text-wrap: balance;
  max-width: 620px;
}
.hero-title em {
  font-family: 'DM Serif Display', serif;
  font-style: italic;
  color: var(--mint);
}
.hero-tagline {
  color: #F8B014;
  font-size: 0.9rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin: 0.75rem 0 0;
  font-weight: 500;
}
.hero-subtitle {
  color: rgba(255,255,255,0.6);
  max-width: 480px;
  font-size: 1.05rem;
  margin: 1.5rem auto 2rem;
  line-height: 1.7;
  text-wrap: balance;
}
.hero-actions {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.btn-hero-primary {
  display: inline-block;
  background: linear-gradient(135deg, #F8B014, #e5a00f);
  color: #004428;
  padding: 0.9rem 2.25rem;
  font-weight: 700;
  border-radius: 12px;
  font-size: 1rem;
  text-decoration: none;
  font-family: 'Outfit', sans-serif;
  box-shadow: 0 4px 20px rgba(248,176,20,0.3), 0 1px 3px rgba(0,0,0,0.1);
  transition: all 0.25s ease;
}
.btn-hero-primary:hover {
  background: linear-gradient(135deg, #ffbe2e, #F8B014);
  color: #004428;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(248,176,20,0.4);
}
.btn-hero-primary:active {
  transform: translateY(0);
  box-shadow: 0 2px 10px rgba(248,176,20,0.3);
}
.btn-hero-secondary {
  display: inline-block;
  background: rgba(255,255,255,0.06);
  border: 1.5px solid rgba(156,220,176,0.35);
  color: #9CDCB0;
  padding: 0.9rem 2.25rem;
  font-weight: 600;
  border-radius: 12px;
  font-size: 1rem;
  text-decoration: none;
  font-family: 'Outfit', sans-serif;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  transition: all 0.25s ease;
}
.btn-hero-secondary:hover {
  border-color: #9CDCB0;
  background: rgba(156,220,176,0.1);
  color: #9CDCB0;
  transform: translateY(-2px);
}

/* Trust strip */
.hero-trust {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255,255,255,0.35);
  font-size: 0.8rem;
  letter-spacing: 0.02em;
}
.hero-trust-item svg {
  flex-shrink: 0;
}

/* Scroll indicator */
.hero-scroll {
  position: relative;
  z-index: 1;
  margin-top: 2.5rem;
  text-align: center;
}
.hero-scroll-text {
  display: block;
  color: rgba(255,255,255,0.2);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.3rem;
}
.hero-scroll-arrow {
  color: rgba(255,255,255,0.2);
  font-size: 1.2rem;
  animation: heroBounce 2s infinite ease-in-out;
}

/* ═══════════════════════════════════════════════════════════════
   Social Proof Strip
   ═══════════════════════════════════════════════════════════════ */

.social-proof {
  background: #fff;
  border-bottom: 1px solid var(--stone);
}
.social-proof-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1.5rem 1rem;
}
.proof-item {
  flex: 1;
  text-align: center;
  padding: 0.5rem 1rem;
}
.proof-number {
  font-family: 'DM Serif Display', serif;
  color: var(--forest);
  font-size: 1.6rem;
  line-height: 1.2;
}
.proof-label {
  color: #999;
  font-size: 0.75rem;
  margin-top: 0.15rem;
}
.proof-divider {
  width: 1px;
  height: 36px;
  background: var(--stone);
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════════════════
   Our Story
   ═══════════════════════════════════════════════════════════════ */

.our-story {
  background: #fff;
}
.our-story-inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}
.our-story-inner p {
  font-size: 1rem;
  color: var(--charcoal);
  line-height: 1.8;
  margin: 0;
}
.our-story-tagline {
  color: var(--amber) !important;
  font-weight: 600;
  letter-spacing: 0.1em;
  margin-top: 1.5rem !important;
}

/* ═══════════════════════════════════════════════════════════════
   Landing Page — Gallery (masonry v2)
   ═══════════════════════════════════════════════════════════════ */

.gallery {
  background: var(--linen);
}
.gallery-grid-v2 {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: 220px 220px;
  gap: 1rem;
}
.gallery-card {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  cursor: default;
  transition: transform 0.3s ease;
}
.gallery-card:hover {
  transform: scale(1.02);
}
.gallery-card-inner {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1.5rem;
}
.gallery-card-icon {
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
}
.gallery-card-label {
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 0.25rem;
}
.gallery-card-sub {
  color: rgba(255,255,255,0.6);
  font-size: 0.8rem;
}
.gallery-card-badge {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: rgba(0,0,0,0.45);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 500;
  padding: 0.35rem 0.75rem;
  border-radius: 8px;
}

/* Grid placement */
.gallery-card-1 { grid-column: 1 / 8;  grid-row: 1; }
.gallery-card-2 { grid-column: 8 / 13; grid-row: 1; }
.gallery-card-3 { grid-column: 1 / 5;  grid-row: 2; }
.gallery-card-4 { grid-column: 5 / 13; grid-row: 2; }

/* ═══════════════════════════════════════════════════════════════
   Landing Page — What's Included
   ═══════════════════════════════════════════════════════════════ */

.included {
  background: var(--linen);
}
.included-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.included-card {
  background: #fff;
  border: 1px solid var(--stone);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
}
.included-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}
.included-card h3 {
  font-family: 'DM Serif Display', serif;
  color: var(--forest);
  font-size: 1.05rem;
  margin: 0 0 0.5rem;
}
.included-card p {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin: 0;
  line-height: 1.5;
}

/* ═══════════════════════════════════════════════════════════════
   Landing Page — Pricing
   ═══════════════════════════════════════════════════════════════ */

.pricing {
  background: #fff;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.pricing-card {
  border: 1px solid var(--stone);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  position: relative;
}
.pricing-card.featured {
  border: 2px solid var(--amber);
}
.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--amber);
  color: var(--forest);
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.2rem 0.75rem;
  border-radius: 12px;
  white-space: nowrap;
}
.pricing-block-label {
  font-family: 'DM Serif Display', serif;
  font-size: 1.2rem;
  color: var(--forest);
  margin-bottom: 0.25rem;
}
.pricing-time {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin: 0.25rem 0;
}
.pricing-amount {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--forest);
  margin: 0.75rem 0 0.25rem;
}
.pricing-rate {
  color: var(--text-muted);
  font-size: 0.8rem;
}
.btn-pricing {
  margin-top: 1.25rem;
  display: block;
  width: 100%;
  background: var(--forest);
  color: #fff;
  padding: 0.65rem;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  transition: opacity 0.2s;
}
.btn-pricing:hover {
  opacity: 0.9;
  color: #fff;
}
.pricing-card.featured .btn-pricing {
  background: var(--amber);
  color: var(--forest);
}
.pricing-note {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.8rem;
  margin-top: 1.5rem;
}
.pricing-note a {
  color: var(--forest);
}

/* ═══════════════════════════════════════════════════════════════
   Landing Page — How It Works
   ═══════════════════════════════════════════════════════════════ */

.how-it-works {
  background: var(--linen);
}
.how-it-works .section-heading {
  color: var(--forest);
}
.how-it-works .section-subheading {
  color: var(--text-muted);
}
.steps-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: stretch;
}
.step-card {
  background: #fff;
  border: 1px solid var(--stone);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
}
.step-number {
  width: 40px;
  height: 40px;
  background: var(--amber);
  color: var(--forest);
  border-radius: 50%;
  font-weight: 700;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}
.step-card h3 {
  color: var(--forest);
  font-family: 'DM Serif Display', serif;
  font-size: 1.05rem;
  margin: 0 0 0.5rem;
}
.step-card p {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin: 0;
  line-height: 1.5;
}
.step-connector {
  color: var(--amber);
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 0.75rem;
}

/* ═══════════════════════════════════════════════════════════════
   Landing Page — Location
   ═══════════════════════════════════════════════════════════════ */

.location {
  background: #fff;
}
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}
.location-info h3 {
  font-family: 'DM Serif Display', serif;
  color: var(--forest);
  font-size: 1.3rem;
  margin: 0 0 0.25rem;
}
.location-address {
  color: var(--text-muted);
  font-size: 1rem;
  margin: 0 0 0.5rem;
}
.location-detail {
  font-size: 0.85rem;
  color: #555;
  margin: 0 0 0.75rem;
}
.location-features {
  margin-top: 1rem;
}
.location-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--charcoal);
  padding: 0.3rem 0;
}
.location-map-container {
  border-radius: 16px;
  overflow: hidden;
  height: 280px;
  border: 1px solid var(--stone);
}
.location-map-container iframe {
  display: block;
  width: 100%;
  height: 100%;
}

/* ═══════════════════════════════════════════════════════════════
   Landing Page — FAQ
   ═══════════════════════════════════════════════════════════════ */

.faq {
  background: var(--linen);
}
.faq-list {
  max-width: 700px;
  margin: 0 auto;
}
.faq-item {
  background: #fff;
  border: 1px solid var(--stone);
  border-radius: 8px;
  margin-bottom: 0.5rem;
  overflow: hidden;
}
.faq-item summary {
  padding: 1rem 1.25rem;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--forest);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.15s;
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-item summary::after {
  content: '\25B8';
  color: var(--text-light);
  transition: transform 0.2s;
  font-size: 0.85rem;
  flex-shrink: 0;
  margin-left: 1rem;
}
.faq-item[open] summary::after {
  transform: rotate(90deg);
}
.faq-item summary:hover {
  background: var(--parchment);
}
.faq-item p {
  padding: 0 1.25rem 1rem;
  font-size: 0.85rem;
  color: #555;
  line-height: 1.6;
  margin: 0;
}
.faq-item a {
  color: var(--forest);
}

/* ═══════════════════════════════════════════════════════════════
   Site Footer (all pages)
   ═══════════════════════════════════════════════════════════════ */

.site-footer {
  background: var(--forest);
  width: 100%;
  max-width: none;
  margin: 0;
  box-sizing: border-box;
}
body.landing-page .site-footer {
  margin-top: 0;
}
/* Break footer out of constrained body on non-landing pages */
body:not(.landing-page):not(.careers-page) .site-footer {
  width: 100vw;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  margin-top: 3rem;
}
body.careers-page .site-footer {
  margin-top: 0;
}
.footer-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 3rem 2rem 2rem;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 2rem;
  align-items: start;
}
.footer-icon-box {
  width: 32px;
  height: 32px;
  border-radius: 7px;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3px;
  margin-bottom: 0;
  flex-shrink: 0;
}
.footer-icon-box svg {
  width: 100%;
  height: 100%;
  display: block;
}
.footer-motto {
  color: rgba(255,255,255,0.4);
  font-size: 0.7rem;
  margin-top: 0.75rem;
  font-style: italic;
}
.footer-links h4,
.footer-contact h4 {
  color: #fff;
  font-size: 0.85rem;
  margin: 0 0 0.6rem;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.footer-links a {
  display: block;
  color: var(--mint);
  text-decoration: none;
  font-size: 0.82rem;
  margin-bottom: 0.35rem;
  padding: 0;
  line-height: 1.4;
  min-height: 0;
}
.footer-links a:last-child {
  margin-bottom: 0;
}
.footer-links a:hover {
  color: #fff;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.footer-contact a {
  display: block;
  color: var(--mint);
  text-decoration: none;
  font-size: 0.82rem;
  margin-bottom: 0.35rem;
  padding: 0;
  line-height: 1.4;
  min-height: 0;
}
.footer-contact a:hover {
  color: #fff;
}
.footer-contact p {
  color: rgba(255,255,255,0.6);
  font-size: 0.82rem;
  margin: 0 0 0.2rem;
  padding: 0;
  line-height: 1.4;
  min-height: 0;
}
.footer-contact p:last-child {
  margin-bottom: 0;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 1rem 2rem;
  text-align: center;
}
.footer-bottom p {
  color: rgba(255,255,255,0.4);
  font-size: 0.75rem;
  margin: 0;
}

/* ═══════════════════════════════════════════════════════════════
   Mobile Responsive (all pages)
   ═══════════════════════════════════════════════════════════════ */

@media (max-width: 768px) {

  /* --- General typography --- */
  .section-container {
    padding: 3rem 1.25rem;
  }
  .section-heading {
    font-size: 1.4rem;
  }
  .section-subheading {
    font-size: 0.85rem;
    margin-bottom: 1.75rem;
  }
  h1 { font-size: 1.6rem; }
  h2 { font-size: 1.2rem; }

  /* --- Site header --- */
  .site-header {
    padding: 0 1rem;
    height: 56px;
  }
  .header-icon-box {
    width: 28px;
    height: 28px;
    padding: 3px;
  }
  .header-brand {
    font-size: 0.8rem;
  }
  .header-tagline {
    display: none;
  }
  .header-cta {
    padding: 0.4rem 0.85rem;
    font-size: 0.78rem;
  }
  /* Adjust body padding for smaller mobile header */
  body.landing-page,
  body.booking-page,
  body.manage-page,
  body.careers-page {
    padding-top: 56px;
  }

  /* --- Hero --- */
  .hero {
    padding: 4rem 1.25rem 2.5rem;
    min-height: 100vh;
  }
  .hero-title {
    line-height: 1.2;
  }
  .hero-subtitle {
    font-size: 0.92rem;
    line-height: 1.6;
  }
  .hero-tagline {
    font-size: 0.75rem;
  }
  .hero-actions {
    gap: 0.75rem;
  }
  .hero-trust {
    gap: 1rem;
  }
  .hero-trust-item {
    font-size: 0.72rem;
  }
  .hero-float {
    font-size: 6rem;
  }
  .hero-float-3 {
    font-size: 5rem;
  }

  /* --- Social Proof --- */
  .social-proof-inner {
    flex-wrap: wrap;
    padding: 1rem 0.5rem;
  }
  .proof-item {
    flex: 0 0 50%;
    padding: 0.5rem 0.5rem;
  }
  .proof-divider {
    display: none;
  }
  .proof-number {
    font-size: 1.3rem;
  }

  /* --- Our Story --- */
  .our-story-inner p {
    font-size: 0.92rem;
  }

  /* --- Gallery --- */
  .gallery-grid-v2 {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 180px 180px;
  }
  .gallery-card-1 { grid-column: 1 / -1; grid-row: 1; }
  .gallery-card-2 { grid-column: 1 / 2;  grid-row: 2; }
  .gallery-card-3 { grid-column: 2 / 3;  grid-row: 2; }
  .gallery-card-4 { display: none; }

  /* --- What's Included --- */
  .included-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
  .included-card {
    padding: 1.25rem;
    text-align: left;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
  }
  .included-card .included-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-bottom: 0;
  }

  /* --- Pricing --- */
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .pricing-card {
    padding: 1.5rem;
  }
  .pricing-amount {
    font-size: 2rem;
  }
  .pricing-card.featured {
    order: -1;
  }

  /* --- How It Works --- */
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .step-connector {
    transform: rotate(90deg);
    font-size: 1.2rem;
    margin: -0.5rem 0;
  }

  /* --- Location --- */
  .location-grid {
    grid-template-columns: 1fr;
  }
  .location-map-container {
    height: 220px;
  }

  /* --- FAQ --- */
  .faq-item summary {
    padding: 0.85rem 1rem;
    font-size: 0.85rem;
  }
  .faq-item p {
    padding: 0 1rem 0.85rem;
    font-size: 0.82rem;
  }

  /* --- Footer --- */
  .footer-container {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 2rem 1.5rem;
  }
  .footer-links, .footer-contact {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 1rem;
  }
  .footer-bottom {
    padding: 1rem 1.5rem;
  }

  /* --- Booking page: progress bar --- */
  .progress-bar, .booking-progress {
    gap: 0;
    padding: 0 0.5rem;
  }
  .step-circle, .progress-step .step-circle {
    width: 26px;
    height: 26px;
    font-size: 0.65rem;
  }
  .step-label, .progress-step .step-label {
    font-size: 0.55rem;
  }
  .step-line, .progress-step .step-line {
    width: 30px;
  }

  /* --- Booking page: calendar --- */
  .booking-layout, .calendar-layout {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 1rem;
  }
  body.booking-page .calendar-layout {
    grid-template-columns: 1fr;
  }
  .calendar-grid {
    font-size: 0.85rem;
  }
  .calendar-day {
    min-height: 32px;
    font-size: 0.8rem;
  }

  /* --- Booking page: time slots --- */
  .time-slot-btn, .slot-btn {
    padding: 0.65rem 0.85rem;
  }

  /* --- Booking page: form inputs (16px prevents iOS zoom) --- */
  .booking-form input,
  .booking-form select,
  #step-2-details input,
  #step-2-details select {
    font-size: 16px;
    padding: 0.7rem 0.75rem;
  }

  /* --- Booking page: summary card --- */
  .booking-summary-card {
    margin-top: 1rem;
  }

  /* --- Booking page: terms/waiver scroll box --- */
  .terms-scroll-box,
  .waiver-scroll-box {
    max-height: 200px;
  }

  /* --- Button row: stack on mobile --- */
  .step-nav,
  .button-row {
    flex-direction: column-reverse;
    gap: 0.75rem;
  }
  .step-nav .btn-primary,
  .step-nav .btn-continue,
  .step-nav .btn-back,
  .button-row .btn-primary,
  .button-row .btn-continue,
  .button-row .btn-back {
    width: 100%;
    text-align: center;
  }

  /* --- Manage page --- */
  .manage-container, .booking-details-container {
    padding: 0 0.75rem;
  }
  .reschedule-layout {
    grid-template-columns: 1fr;
  }
  .refund-table, .cancel-table {
    font-size: 0.8rem;
  }
  .refund-table td, .cancel-table td {
    padding: 0.4rem 0.5rem;
  }
  .manage-actions {
    flex-direction: column;
  }
  .manage-actions button, .manage-actions a {
    width: 100%;
    text-align: center;
  }

  /* --- Confirmation page --- */
  .confirmation-container {
    padding: 0 0.75rem;
  }
  .confirm-title {
    font-size: 1.4rem;
  }
  .confirm-details-card,
  .confirm-reminders {
    padding: 1.25rem;
  }
  .confirm-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .confirm-actions a, .confirm-actions button {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
    align-items: center;
  }
  .btn-hero-primary, .btn-hero-secondary {
    width: 100%;
    max-width: 280px;
    text-align: center;
  }
}

/* ══════════════════════════════════════════════════════════════
   Careers Page
   ══════════════════════════════════════════════════════════════ */

/* Join Our Team section (index.html) */
.join-team {
  background: linear-gradient(160deg, #004428 0%, #002e1a 60%, #003820 100%);
  padding: 3rem 1.5rem;
}

/* Careers Hero */
.careers-hero {
  background: linear-gradient(160deg, #004428 0%, #002e1a 60%, #003820 100%);
  padding: 4rem 1.5rem;
  text-align: center;
  width: 100%;
  max-width: none;
}
.careers-hero-content {
  max-width: 650px;
  margin: 0 auto;
}
.careers-hero h1 {
  font-family: 'DM Serif Display', serif;
  color: var(--mint);
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.careers-hero p {
  color: rgba(255,255,255,0.8);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 0.75rem;
}
.careers-hero-highlight {
  color: var(--amber) !important;
  font-style: italic;
  font-size: 1.05rem !important;
}

/* Roles section */
.careers-roles {
  padding: 3rem 1.5rem;
  width: 100%;
  max-width: none;
}
.careers-roles .section-container {
  max-width: 800px;
  margin: 0 auto;
}
.roles-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}
.role-card {
  background: #fff;
  border: 1px solid var(--stone);
  border-radius: 12px;
  padding: 1.5rem;
  transition: all 0.2s;
}
.role-card:hover {
  border-color: var(--forest);
  box-shadow: 0 4px 16px rgba(0,68,40,0.08);
}
.role-card-open {
  grid-column: 1 / -1;
  text-align: center;
  background: var(--mint-tint);
  border-color: var(--mint);
}
.role-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}
.role-card h3 {
  font-family: 'DM Serif Display', serif;
  color: var(--forest);
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
}
.role-card p {
  color: var(--text-muted);
  font-size: 0.85rem;
  line-height: 1.6;
  margin-bottom: 0.75rem;
}
.role-apply-link {
  color: var(--forest);
  font-weight: 600;
  font-size: 0.85rem;
  text-decoration: none;
}
.role-apply-link:hover {
  color: var(--amber);
}

/* Application form */
.careers-apply {
  padding: 3rem 1.5rem;
  background: var(--cream);
  width: 100%;
  max-width: none;
}
.apply-form {
  background: #fff;
  border: 1px solid var(--stone);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.form-group {
  margin-bottom: 1.25rem;
}
.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--charcoal);
  margin-bottom: 0.4rem;
}
.required {
  color: var(--danger);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.7rem 0.85rem;
  border: 1px solid var(--stone);
  border-radius: 8px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  color: var(--charcoal);
  background: #fff;
  box-sizing: border-box;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--forest);
  box-shadow: 0 0 0 3px rgba(0,68,40,0.08);
}
.form-group textarea {
  resize: vertical;
  min-height: 120px;
}
.form-group input[type="file"] {
  padding: 0.5rem;
  border-style: dashed;
}
.form-help {
  display: block;
  font-size: 0.75rem;
  color: var(--text-light);
  margin-top: 0.25rem;
}
.btn-apply {
  background: var(--amber);
  color: var(--forest);
  border: none;
  padding: 0.85rem 2rem;
  border-radius: 6px;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  width: 100%;
  transition: all 0.2s;
}
.btn-apply:hover {
  background: var(--amber-hover);
}
.btn-apply:disabled {
  background: var(--stone);
  color: var(--text-muted);
  cursor: not-allowed;
}
.apply-status {
  margin-top: 1rem;
  padding: 1rem;
  border-radius: 8px;
  text-align: center;
  font-weight: 500;
}
.apply-success {
  background: var(--success-light);
  color: var(--forest);
}
.apply-error {
  background: var(--danger-light);
  color: var(--danger);
}

@media (max-width: 768px) {
  .careers-hero h1 { font-size: 1.8rem; }
  .careers-hero { padding: 3rem 1.25rem; }
  .roles-grid { grid-template-columns: 1fr; }
  .role-card-open { grid-column: 1; }
  .apply-form { padding: 1.25rem; }
}

/* ══════════════════════════════════════════════════════════════
   Accounting-style payment summary (manage page)
   ══════════════════════════════════════════════════════════════ */

.acct-section-head {
  background: var(--mint-tint);
  border-left: 3px solid var(--mint);
  color: var(--forest);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 0.5rem 0.75rem;
  margin: 0.75rem 0 0.4rem;
}

.acct-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 0.25rem;
}

.acct-table .acct-label {
  padding: 0.3rem 0;
  color: var(--text-muted);
  font-size: 0.85rem;
}

.acct-table .acct-val {
  padding: 0.3rem 0;
  font-size: 0.85rem;
  text-align: right;
  white-space: nowrap;
  color: var(--charcoal);
}

.acct-table .acct-negative {
  color: var(--danger);
}

.acct-table .acct-positive {
  color: var(--forest);
}

.acct-table .acct-subtotal td {
  border-top: 1px solid var(--stone);
  padding: 0.4rem 0;
  font-weight: 700;
  color: var(--forest);
  font-size: 0.85rem;
}

.acct-table .acct-final td {
  border-top: 2px solid var(--forest);
  padding: 0.5rem 0;
  font-weight: 700;
  color: var(--forest);
  font-size: 0.95rem;
}
