/* ==========================================================================
   FIVEWAKE SUPPER CLUB - BESPOKE DESIGN SYSTEM
   Palette: Warm Cream (#FDFBF7), Botanical Teal (#297373), Dark Slate (#18191B), Gold (#C59B27)
   ========================================================================== */

:root {
  --bg-creme: #FDFBF7;
  --bg-card: #FFFFFF;
  --bg-subtle: #F6F3EC;
  --bg-dark: #161719;
  --bg-dark-card: #202226;
  
  --border-light: #E8E3DA;
  --border-dark: #2C2E33;
  
  --text-dark: #18191B;
  --text-muted: #66635E;
  --text-light: #FDFBF7;
  --text-light-muted: #A3A19C;
  
  --teal-primary: #297373;
  --teal-dark: #1E5353;
  --teal-light: #EBF4F4;
  --teal-soft: #D7EBEB;
  
  --gold-accent: #C59B27;
  --gold-light: #FBF6E9;
  --gold-border: #E8CF8B;
  
  --danger-red: #C53030;
  --danger-light: #FED7D7;
  --success-green: #276749;
  --success-light: #C6F6D5;
  
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-full: 9999px;
  
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 14px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 30px rgba(0,0,0,0.12);
  --shadow-xl: 0 20px 45px rgba(0,0,0,0.16);
  
  --font-serif: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-creme);
  color: var(--text-dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

h1, h2, h3, h4, h5, .font-serif {
  font-family: var(--font-serif);
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--text-dark);
}

a {
  color: var(--teal-primary);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--teal-dark);
}

button {
  font-family: var(--font-sans);
  cursor: pointer;
  border: none;
  background: none;
  transition: var(--transition);
}

/* Layout Containers */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.container-narrow {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Navigation Header */
.site-header {
  background: rgba(253, 251, 247, 0.95);
  backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--border-light);
  padding: 16px 0;
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-link {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-logo-img {
  height: 44px;
  width: auto;
  display: block;
}

.brand-text-block {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.1;
}

.brand-subtitle {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-muted);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  list-style: none;
}

.nav-link {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-dark);
  padding: 6px 12px;
  border-radius: var(--radius-sm);
}

.nav-link:hover, .nav-link.active {
  color: var(--teal-primary);
  background: var(--teal-light);
}

.nav-badge-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--gold-light);
  color: #8c6a0c;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  border: 1px solid var(--gold-border);
}

.nav-badge-link:hover {
  background: #f4ecce;
  color: #6b5109;
}

/* Hero Section */
.hero-section {
  padding: 60px 0 40px;
  text-align: center;
  position: relative;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--teal-light);
  color: var(--teal-dark);
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 20px;
}

.hero-title {
  font-size: 3.4rem;
  line-height: 1.12;
  margin-bottom: 18px;
  color: var(--text-dark);
}

.hero-lead {
  font-size: 1.25rem;
  color: var(--text-muted);
  max-width: 680px;
  margin: 0 auto 30px;
  font-weight: 300;
}

.hero-highlights {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.92rem;
  color: var(--text-dark);
  background: var(--bg-card);
  padding: 8px 18px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}

.highlight-icon {
  color: var(--teal-primary);
  font-size: 1.1rem;
}

/* Calendar & Event Booking Hub */
.booking-section {
  padding: 40px 0 80px;
}

.section-header {
  margin-bottom: 32px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 16px;
}

.section-title {
  font-size: 2.2rem;
  line-height: 1.2;
}

.section-desc {
  color: var(--text-muted);
  font-size: 1rem;
}

/* Month & Week Filters */
.calendar-controls {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--bg-card);
  padding: 6px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}

.cal-nav-btn {
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-weight: 500;
  font-size: 0.9rem;
  background: var(--bg-subtle);
  color: var(--text-dark);
}

.cal-nav-btn:hover {
  background: var(--teal-light);
  color: var(--teal-primary);
}

.cal-current-label {
  font-size: 1rem;
  font-weight: 600;
  padding: 0 12px;
  min-width: 140px;
  text-align: center;
}

/* Calendar Grid */
.calendar-container {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  margin-bottom: 40px;
}

.calendar-weekdays-row {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  background: var(--bg-subtle);
  border-bottom: 1px solid var(--border-light);
  text-align: center;
  padding: 12px 0;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}

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

.cal-day-cell {
  background: var(--bg-card);
  min-height: 125px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: var(--transition);
}

.cal-day-cell.other-month {
  background: #FAF8F4;
  opacity: 0.45;
}

.cal-day-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
}

.cal-day-number {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-dark);
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.cal-day-cell.today .cal-day-number {
  background: var(--teal-primary);
  color: white;
}

.cal-day-cell.has-event {
  cursor: pointer;
  background: #FCFDFC;
}

.cal-day-cell.has-event:hover {
  background: var(--teal-light);
}

/* Supper Club Event Tile inside Day Cell */
.cal-event-badge {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 8px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 4px;
  transition: var(--transition);
  text-align: left;
}

.cal-day-cell:hover .cal-event-badge {
  border-color: var(--teal-primary);
  box-shadow: 0 4px 10px rgba(41, 115, 115, 0.15);
}

.event-time-tag {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--teal-primary);
  text-transform: uppercase;
}

.event-title-tag {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.2;
}

.event-seats-pill {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 6px;
  border-radius: var(--radius-sm);
  width: fit-content;
  margin-top: 2px;
}

.seats-open {
  background: var(--teal-light);
  color: var(--teal-dark);
}

.seats-few {
  background: #FEEBC8;
  color: #9C4221;
}

.seats-soldout {
  background: #E2E8F0;
  color: #718096;
}

/* Event List Card Alternative View */
.upcoming-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 24px;
}

.event-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.event-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--teal-primary);
}

.event-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--teal-primary);
}

.event-card.sold-out::before {
  background: #CBD5E0;
}

.event-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 12px;
}

.event-date-display {
  display: flex;
  flex-direction: column;
}

.event-day-name {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--teal-primary);
}

.event-date-full {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
}

.event-time-badge {
  background: var(--bg-subtle);
  border: 1px solid var(--border-light);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: var(--radius-full);
}

.event-card-title {
  font-size: 1.4rem;
  line-height: 1.2;
  margin-bottom: 10px;
}

.event-card-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 18px;
  flex-grow: 1;
}

.event-card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-top: 1px dashed var(--border-light);
  border-bottom: 1px dashed var(--border-light);
  margin-bottom: 18px;
}

.meta-col {
  display: flex;
  flex-direction: column;
}

.meta-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

.meta-val {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
}

.meta-deposit {
  font-size: 0.78rem;
  color: var(--teal-dark);
  font-weight: 600;
}

/* Action Buttons */
.btn-primary {
  background: var(--teal-primary);
  color: #FFFFFF;
  padding: 12px 24px;
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 2px 8px rgba(41, 115, 115, 0.25);
}

.btn-primary:hover:not(:disabled) {
  background: var(--teal-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(41, 115, 115, 0.35);
}

.btn-primary:disabled {
  background: #CBD5E0;
  color: #718096;
  cursor: not-allowed;
  box-shadow: none;
}

.btn-secondary {
  background: var(--bg-subtle);
  color: var(--text-dark);
  border: 1px solid var(--border-light);
  padding: 10px 20px;
  border-radius: var(--radius-md);
  font-size: 0.92rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-secondary:hover {
  background: #EFEBE2;
  border-color: #D3CDC2;
}

.btn-gold {
  background: var(--gold-accent);
  color: #1A1A1A;
  padding: 12px 24px;
  border-radius: var(--radius-md);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-gold:hover {
  background: #B38B1E;
}

/* Modal Booking Experience */
.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(18, 19, 21, 0.7);
  backdrop-filter: blur(8px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 200;
  padding: 20px;
  overflow-y: auto;
}

.modal-backdrop.active {
  display: flex;
}

.modal-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  max-width: 680px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border-light);
  position: relative;
  display: flex;
  flex-direction: column;
}

.modal-header {
  padding: 24px 28px 16px;
  border-bottom: 1px solid var(--border-light);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: sticky;
  top: 0;
  background: var(--bg-card);
  z-index: 10;
}

.modal-close-btn {
  font-size: 1.5rem;
  color: var(--text-muted);
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--bg-subtle);
}

.modal-close-btn:hover {
  background: #EAE5DB;
  color: var(--text-dark);
}

.modal-steps-indicator {
  display: flex;
  padding: 12px 28px;
  background: var(--bg-subtle);
  border-bottom: 1px solid var(--border-light);
  gap: 12px;
}

.step-indicator {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  flex: 1;
}

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

.step-indicator.completed {
  color: var(--success-green);
}

.step-num {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--border-light);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
}

.step-indicator.active .step-num {
  background: var(--teal-primary);
  color: white;
}

.step-indicator.completed .step-num {
  background: var(--success-green);
  color: white;
}

.modal-body {
  padding: 28px;
  flex-grow: 1;
}

.modal-footer {
  padding: 18px 28px;
  border-top: 1px solid var(--border-light);
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--bg-card);
  position: sticky;
  bottom: 0;
  z-index: 10;
}

/* Step Wizard Sections */
.wizard-step {
  display: none;
}

.wizard-step.active {
  display: block;
  animation: fadeIn 0.25s ease-out;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Form Controls */
.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text-dark);
}

.form-label .required {
  color: var(--danger-red);
}

.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  background: var(--bg-card);
  color: var(--text-dark);
  transition: var(--transition);
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--teal-primary);
  box-shadow: 0 0 0 3px rgba(41, 115, 115, 0.15);
}

.form-textarea {
  resize: vertical;
  min-height: 80px;
}

.form-hint {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 4px;
}

.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* Party Size Selector */
.party-size-selector {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.seat-option-btn {
  width: 44px;
  height: 44px;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  background: var(--bg-card);
  font-weight: 600;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.seat-option-btn:hover {
  border-color: var(--teal-primary);
  background: var(--teal-light);
}

.seat-option-btn.selected {
  background: var(--teal-primary);
  color: white;
  border-color: var(--teal-primary);
  box-shadow: 0 2px 6px rgba(41, 115, 115, 0.3);
}

.seat-option-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
  background: #E2E8F0;
}

/* Drinks Add-ons Selector */
.addon-card {
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 16px;
  margin-bottom: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--bg-card);
  transition: var(--transition);
}

.addon-card:hover {
  border-color: var(--teal-primary);
  background: #FCFDFC;
}

.addon-info {
  max-width: 72%;
}

.addon-title {
  font-weight: 600;
  font-size: 1rem;
  color: var(--text-dark);
  margin-bottom: 2px;
}

.addon-desc {
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.35;
}

.addon-price {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--teal-primary);
  margin-top: 4px;
}

.addon-counter {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--bg-subtle);
  padding: 4px 8px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-light);
}

.counter-btn {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: white;
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1rem;
  color: var(--text-dark);
}

.counter-btn:hover:not(:disabled) {
  background: var(--teal-primary);
  color: white;
  border-color: var(--teal-primary);
}

.counter-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.counter-qty {
  font-weight: 700;
  min-width: 20px;
  text-align: center;
  font-size: 0.95rem;
}

/* Price & Deposit Summary Box */
.deposit-summary-box {
  background: var(--bg-subtle);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 20px;
  margin-bottom: 24px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  font-size: 0.92rem;
  color: var(--text-muted);
}

.summary-row.total-row {
  border-top: 1px dashed var(--border-light);
  padding-top: 10px;
  margin-top: 10px;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
}

.summary-row.deposit-highlight {
  background: var(--teal-light);
  margin: 12px -12px -12px;
  padding: 12px;
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  color: var(--teal-dark);
  font-weight: 700;
  font-size: 1.1rem;
}

/* Square Card Form Element */
.square-form-container {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 20px;
  margin-bottom: 16px;
}

.square-badge {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.square-logo-text {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #000;
  display: flex;
  align-items: center;
  gap: 6px;
}

.square-demo-pill {
  font-size: 0.72rem;
  background: #EDF2F7;
  color: #4A5568;
  padding: 3px 8px;
  border-radius: var(--radius-full);
  font-weight: 600;
}

/* Confirmation Pass (Digital Ticket) */
.confirmation-pass {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  margin: 20px 0;
  position: relative;
}

.pass-header {
  background: var(--bg-dark);
  color: var(--text-light);
  padding: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.pass-brand-title {
  color: var(--text-light);
  font-size: 1.5rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pass-ref-badge {
  background: rgba(255,255,255,0.15);
  font-family: monospace;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  letter-spacing: 0.1em;
}

.pass-body {
  padding: 24px;
}

.pass-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 20px;
}

.pass-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

.pass-value {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-dark);
}

.loyalty-reward-callout {
  background: var(--gold-light);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-md);
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 16px;
}

.loyalty-reward-icon {
  font-size: 2rem;
  color: var(--gold-accent);
}

.loyalty-reward-title {
  font-weight: 700;
  font-size: 0.95rem;
  color: #725304;
}

.loyalty-reward-desc {
  font-size: 0.85rem;
  color: #553e02;
}

/* Loyalty Cards & Tiers System */
.loyalty-section {
  padding: 60px 0;
  background: var(--bg-subtle);
  border-top: 1px solid var(--border-light);
}

.tier-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 32px;
}

.tier-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  position: relative;
}

.tier-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.tier-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  margin-bottom: 14px;
  width: fit-content;
}

.tier-name {
  font-size: 1.8rem;
  margin-bottom: 6px;
}

.tier-milestone {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.tier-perks-list {
  list-style: none;
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.tier-perks-list li {
  font-size: 0.88rem;
  color: var(--text-dark);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.tier-perks-list li::before {
  content: '✓';
  color: var(--teal-primary);
  font-weight: bold;
}

/* Kitchen Service Sheet & Admin Styles */
.admin-nav {
  display: flex;
  gap: 8px;
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 12px;
  margin-bottom: 24px;
}

.admin-nav-btn {
  padding: 10px 18px;
  font-weight: 600;
  font-size: 0.92rem;
  border-radius: var(--radius-md);
  color: var(--text-muted);
}

.admin-nav-btn.active {
  background: var(--teal-primary);
  color: white;
}

.admin-nav-btn:hover:not(.active) {
  background: var(--bg-subtle);
  color: var(--text-dark);
}

.kpi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-bottom: 28px;
}

.kpi-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 20px;
  box-shadow: var(--shadow-sm);
}

.kpi-num {
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--teal-primary);
  line-height: 1.1;
  margin-top: 6px;
}

.kpi-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

.data-table-container {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow-x: auto;
  box-shadow: var(--shadow-sm);
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 0.9rem;
}

.data-table th {
  background: var(--bg-subtle);
  padding: 12px 16px;
  font-weight: 600;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border-light);
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.05em;
}

.data-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--border-light);
  vertical-align: middle;
}

.data-table tr:hover td {
  background: #FCFDFC;
}

.tag-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: var(--radius-sm);
}

.tag-occasion {
  background: var(--gold-light);
  color: #7d5e05;
  border: 1px solid var(--gold-border);
}

.tag-dietary {
  background: #FFF5F5;
  color: #C53030;
  border: 1px solid #FEB2B2;
}

/* Service Sheet Print Mode */
@media print {
  .site-header, .admin-nav, .no-print, button {
    display: none !important;
  }
  body {
    background: #FFFFFF !important;
    color: #000000 !important;
  }
  .printable-sheet {
    box-shadow: none !important;
    border: none !important;
    padding: 0 !important;
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.4rem;
  }
  .calendar-weekdays-row {
    font-size: 0.7rem;
  }
  .cal-day-cell {
    min-height: 90px;
    padding: 4px;
  }
  .form-grid-2 {
    grid-template-columns: 1fr;
  }
  .nav-links {
    display: none;
  }
}

/* Launch Offer Deal Callouts */
.deal-callout {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #FCF8ED;
  border: 1px solid var(--gold-border);
  color: #7A5703;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  font-weight: 600;
  margin: 12px 0;
}

.deal-badge {
  background: var(--gold-accent);
  color: #1A1A1A;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 2px 7px;
  border-radius: var(--radius-sm);
}

.reg-price {
  text-decoration: line-through;
  opacity: 0.55;
  margin-right: 4px;
  font-weight: 400;
  font-size: 0.9em;
}

.deal-save-tag {
  background: #DEF7EC;
  color: #03543F;
  font-weight: 700;
  font-size: 0.75rem;
  padding: 2px 6px;
  border-radius: var(--radius-sm);
  display: inline-block;
  margin-left: 6px;
}

/* Admin Quick Seat & Button Helpers */
.btn-danger {
  background: var(--danger-light);
  color: var(--danger-red);
  border: 1px solid rgba(197, 48, 48, 0.3);
  padding: 10px 20px;
  border-radius: var(--radius-md);
  font-size: 0.92rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  transition: var(--transition);
}

.btn-danger:hover {
  background: #FEB2B2;
  border-color: var(--danger-red);
}

.seats-left-pill {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: var(--radius-sm);
  background: var(--teal-light);
  color: var(--teal-dark);
}

.seats-left-pill.sold-out {
  background: #E2E8F0;
  color: #4A5568;
}

.seats-quick-btn {
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  background: var(--bg-subtle);
  border: 1px solid var(--border-light);
  font-weight: 700;
  font-size: 0.82rem;
  cursor: pointer;
  transition: var(--transition);
  color: var(--text-dark);
  line-height: 1;
}

.seats-quick-btn:hover {
  background: var(--teal-primary);
  color: white;
  border-color: var(--teal-primary);
}
