/* ============================================================
   Presidential Fades - Design System
   Dark Luxury aesthetic: bold, premium, high-contrast
   Mobile-first: 375px base -> 600px tablet -> 769px desktop
   Fonts: Cormorant Garamond (headings) + Outfit (body)
   ============================================================ */


/* ==========  1. CUSTOM PROPERTIES  ========== */

:root {
  /* Colors - Dark Luxury */
  --bg-primary: #000000;
  --bg-card: #0D0D0D;
  --bg-alt: #111111;
  --bg-selected: #1A1A1A;
  --text-primary: #F5F5F5;
  --text-secondary: #999999;
  --accent-gold: #C9A646;
  --neon-yellow: #FFE600;
  --border: #2A2A2A;
  --border-hover: #3A3A3A;
  --cta-bg: #FFE600;
  --cta-text: #000000;
  --success: #22c55e;
  --error: #ef4444;
  --warning: #f59e0b;
  --deep-green: #0F3D2E;
  --text-muted: #666666;
  --success-bg-subtle: rgba(34, 197, 94, 0.08);
  --success-bg-badge: rgba(34, 197, 94, 0.12);
  --success-border-subtle: rgba(34, 197, 94, 0.15);
  --success-border-medium: rgba(34, 197, 94, 0.2);

  /* Spacing */
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-2xl: 48px;
  --space-3xl: 64px;

  /* Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 100px;

  /* Shadows - dark with glow */
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.4);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.5);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.6);
  --glow-yellow: 0 0 20px rgba(255,230,0,0.15);

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-med: 0.35s ease;

  /* Header */
  --header-height: 64px;

  /* Sticky CTA */
  --sticky-cta-height: 72px;
}


/* ==========  2. RESET AND BASE  ========== */

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Outfit', -apple-system, sans-serif;
  background: #000000;
  background-image: radial-gradient(ellipse at 20% 50%, rgba(201, 166, 70, 0.03) 0%, transparent 50%),
                    radial-gradient(ellipse at 80% 20%, rgba(255, 230, 0, 0.02) 0%, transparent 40%);
  background-attachment: fixed;
  color: var(--text-primary);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
  touch-action: manipulation;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding-bottom: var(--sticky-cta-height);
}

body.page-booking {
  padding-bottom: 0;
}

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

a:hover {
  color: var(--neon-yellow);
}

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

ul, ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

*:focus-visible {
  outline: 3px solid var(--neon-yellow);
  outline-offset: 2px;
}

::selection {
  background: var(--neon-yellow);
  color: var(--bg-primary);
}


/* ==========  3. TYPOGRAPHY  ========== */

h1, h2, h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  line-height: 1.2;
  color: var(--text-primary);
}

h1 {
  font-weight: 700;
  font-size: clamp(28px, 5vw, 44px);
  letter-spacing: -1px;
}

h2 {
  font-weight: 600;
  font-size: clamp(24px, 4vw, 36px);
  letter-spacing: -0.75px;
}

h3 {
  font-weight: 600;
  font-size: clamp(20px, 3vw, 28px);
  letter-spacing: -0.5px;
}

p {
  font-family: 'Outfit', -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-secondary);
}

.label,
label {
  display: block;
  font-family: 'Outfit', -apple-system, sans-serif;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--text-secondary);
  margin-bottom: var(--space-sm);
}

.text-lg {
  font-size: 18px;
  line-height: 1.7;
}

.text-sm {
  font-size: 14px;
}

.text-secondary {
  color: var(--text-secondary);
}

.text-xs {
  font-size: 12px;
}

.section-subtitle {
  font-family: 'Outfit', -apple-system, sans-serif;
  font-size: 16px;
  color: var(--text-secondary);
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
  margin-top: var(--space-sm);
  margin-bottom: var(--space-lg);
}


/* ==========  4. LAYOUT  ========== */

.container {
  width: 100%;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--space-lg);
  padding-right: var(--space-lg);
}

.container-sm {
  width: 100%;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--space-lg);
  padding-right: var(--space-lg);
}

.section {
  padding-top: var(--space-2xl);
  padding-bottom: var(--space-2xl);
}

.card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  padding: var(--space-lg);
  transition: box-shadow var(--transition-med), transform var(--transition-med);
}

.card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--border-hover);
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

.grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}


/* ==========  5. HEADER / NAVIGATION  ========== */

.site-header {
  position: sticky;
  top: 0;
  height: var(--header-height);
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--bg-selected);
  box-shadow: 0 4px 20px rgba(0,0,0,0.5);
  z-index: 999;
  display: flex;
  align-items: center;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

/* Logo */
.header-logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  text-decoration: none;
  flex-shrink: 0;
}

.header-logo:hover {
  color: var(--text-primary);
}

.header-logo-mark {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--accent-gold);
  letter-spacing: -0.5px;
}

.header-logo-text {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.5px;
}

/* Desktop Nav */
.header-nav {
  display: none;
  align-items: center;
  gap: var(--space-xl);
}

.header-nav a {
  font-family: 'Outfit', -apple-system, sans-serif;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-secondary);
  transition: color var(--transition-fast);
  text-decoration: none;
  padding: var(--space-sm) 0;
}

.header-nav a:hover {
  color: var(--neon-yellow);
}

.header-nav a[aria-current="page"] {
  color: var(--neon-yellow);
  border-bottom: 2px solid var(--neon-yellow);
  padding-bottom: 4px;
}

/* Header CTA (desktop only) */
.header-cta {
  display: none;
}

/* Burger */
.burger {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  position: relative;
  z-index: 1001;
}

.burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: transform var(--transition-fast), opacity var(--transition-fast);
  position: absolute;
}

.burger span:nth-child(1) {
  transform: translateY(-6px);
}

.burger span:nth-child(3) {
  transform: translateY(6px);
}

.burger[aria-expanded="true"] span:nth-child(1) {
  transform: rotate(45deg);
}

.burger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.burger[aria-expanded="true"] span:nth-child(3) {
  transform: rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 280px;
  max-width: 85vw;
  background: #0A0A0A; /* intentionally darker than --bg-card for visual separation */
  z-index: 998;
  transform: translateX(100%);
  transition: transform var(--transition-med);
  padding: calc(var(--header-height) + var(--space-lg)) var(--space-lg) var(--space-lg);
  box-shadow: var(--shadow-lg);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  display: flex;
  flex-direction: column;
}

.mobile-menu.open {
  transform: translateX(0);
}

body.menu-open {
  overflow: hidden;
}

.mobile-menu-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
  list-style: none;
}

.mobile-menu-links a {
  display: flex;
  align-items: center;
  padding: 14px var(--space-md);
  font-family: 'Outfit', -apple-system, sans-serif;
  font-size: 17px;
  font-weight: 500;
  color: var(--text-primary);
  border-radius: var(--radius-md);
  transition: background var(--transition-fast), color var(--transition-fast);
  min-height: 48px;
}

.mobile-menu-links a:hover {
  background: var(--bg-selected);
  color: var(--neon-yellow);
}

.mobile-menu-links a[aria-current="page"] {
  color: var(--neon-yellow);
  border-left: 3px solid var(--neon-yellow);
  padding-left: calc(var(--space-md) - 3px);
}

.mobile-menu-cta {
  margin-top: auto;
  padding-top: var(--space-lg);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 997;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-med);
}

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

/* Skip Link */
.skip-link {
  position: absolute;
  top: -100%;
  left: var(--space-md);
  background: var(--cta-bg);
  color: var(--cta-text);
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-md);
  font-family: 'Outfit', -apple-system, sans-serif;
  font-size: 14px;
  font-weight: 600;
  z-index: 10000;
  transition: top var(--transition-fast);
}

.skip-link:focus {
  top: var(--space-sm);
}


/* ==========  6. BUTTONS  ========== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  min-height: 48px;
  padding: 12px 24px;
  border: 2px solid transparent;
  border-radius: var(--radius-md);
  font-family: 'Outfit', -apple-system, sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  transition: background var(--transition-fast),
              color var(--transition-fast),
              border-color var(--transition-fast),
              transform var(--transition-fast),
              box-shadow var(--transition-fast);
  position: relative;
  overflow: hidden;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.btn-primary {
  background: var(--cta-bg);
  color: var(--cta-text);
  border-color: var(--cta-bg);
}

.btn-primary:hover {
  filter: brightness(1.1);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md), var(--glow-yellow);
}

.btn-primary:active {
  transform: scale(0.98);
  box-shadow: none;
}

.btn-primary:focus-visible {
  outline: 3px solid var(--neon-yellow);
  outline-offset: 2px;
}

.btn-secondary {
  background: transparent;
  color: var(--text-primary);
  border: 2px solid var(--border-hover);
}

.btn-secondary:hover {
  border-color: var(--neon-yellow);
  color: var(--neon-yellow);
  transform: translateY(-1px);
}

.btn-secondary:active {
  transform: scale(0.98);
}

.btn-secondary:focus-visible {
  outline: 3px solid var(--neon-yellow);
  outline-offset: 2px;
}

.btn-pill {
  border-radius: var(--radius-full);
}

.btn-sm {
  min-height: 44px;
  padding: 8px 18px;
  font-size: 14px;
}

.btn-block {
  width: 100%;
}

.btn-gold {
  background: var(--accent-gold);
  color: var(--bg-primary);
  border-color: var(--accent-gold);
}

.btn-gold:hover {
  filter: brightness(1.15);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-gold:active {
  transform: scale(0.98);
}

/* Ripple effect */
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--ripple-x, 50%) var(--ripple-y, 50%),
    rgba(255,255,255,0.3) 0%,
    transparent 60%
  );
  opacity: 0;
  transform: scale(0);
  transition: opacity 0.4s ease, transform 0.4s ease;
  pointer-events: none;
}

.btn:active::after {
  opacity: 1;
  transform: scale(2.5);
  transition: opacity 0s, transform 0s;
}

.btn[disabled],
.btn.disabled {
  opacity: 0.3;
  pointer-events: none;
  cursor: not-allowed;
  filter: grayscale(0.5);
}

.btn-primary[disabled],
.btn-primary.disabled {
  background: var(--border-hover);
  color: var(--text-secondary);
  border-color: var(--border-hover);
  opacity: 1;
  filter: none;
}


/* ==========  7. FORMS  ========== */

.form-group {
  margin-bottom: var(--space-lg);
}

.form-group label {
  display: block;
  font-family: 'Outfit', -apple-system, sans-serif;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--text-secondary);
  margin-bottom: var(--space-sm);
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
input[type="search"],
input[type="url"],
input[type="password"],
select,
textarea {
  width: 100%;
  padding: 14px 16px;
  font-family: 'Outfit', -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: var(--text-primary);
  background: var(--bg-selected);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  appearance: none;
  -webkit-appearance: none;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--neon-yellow);
  box-shadow: 0 0 0 3px rgba(255, 230, 0, 0.15);
  outline: none;
}

input::placeholder,
textarea::placeholder {
  color: var(--text-secondary);
}

textarea {
  resize: vertical;
  min-height: 120px;
}

select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23999999' d='M1.41 0L6 4.58 10.59 0 12 1.41l-6 6-6-6z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.form-error {
  color: var(--error);
  font-size: 13px;
  font-family: 'Outfit', -apple-system, sans-serif;
  margin-top: var(--space-xs);
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

.form-error::before {
  content: '';
  display: inline-block;
  width: 14px;
  height: 14px;
  background: var(--error);
  border-radius: 50%;
  flex-shrink: 0;
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='white'%3E%3Cpath d='M10 2a8 8 0 100 16 8 8 0 000-16zm.75 4.75a.75.75 0 00-1.5 0v3.5a.75.75 0 001.5 0v-3.5zm-.75 7a.75.75 0 100-1.5.75.75 0 000 1.5z'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='white'%3E%3Cpath d='M10 2a8 8 0 100 16 8 8 0 000-16zm.75 4.75a.75.75 0 00-1.5 0v3.5a.75.75 0 001.5 0v-3.5zm-.75 7a.75.75 0 100-1.5.75.75 0 000 1.5z'/%3E%3C/svg%3E");
}

.form-hint {
  color: var(--text-secondary);
  font-size: 13px;
  font-family: 'Outfit', -apple-system, sans-serif;
  margin-top: var(--space-xs);
}

/* Checkbox */
input[type="checkbox"] {
  width: 20px;
  height: 20px;
  accent-color: var(--neon-yellow);
  border-radius: var(--radius-sm);
  cursor: pointer;
  flex-shrink: 0;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
}

.checkbox-group label {
  text-transform: none;
  letter-spacing: 0;
  font-size: 15px;
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: 0;
  cursor: pointer;
}

/* Radio */
input[type="radio"] {
  width: 20px;
  height: 20px;
  accent-color: var(--neon-yellow);
  cursor: pointer;
  flex-shrink: 0;
}


/* ==========  8. TOAST NOTIFICATIONS  ========== */

.toast-container {
  position: fixed;
  bottom: calc(var(--space-lg) + env(safe-area-inset-bottom, 0px));
  left: 50%;
  transform: translateX(-50%);
  z-index: 1100;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  width: calc(100% - var(--space-lg) * 2);
  max-width: 420px;
  pointer-events: none;
}

.toast {
  background: var(--bg-selected);
  box-shadow: var(--shadow-lg);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  display: flex;
  align-items: center;
  gap: var(--space-md);
  border-left: 4px solid var(--border);
  pointer-events: auto;
  animation: toastSlideUp 0.35s ease forwards;
}

.toast-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.toast-text {
  font-family: 'Outfit', -apple-system, sans-serif;
  font-size: 15px;
  color: var(--text-primary);
  line-height: 1.4;
  flex: 1;
}

.toast-close {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  flex-shrink: 0;
  border-radius: var(--radius-sm);
  transition: background var(--transition-fast);
  cursor: pointer;
}

.toast-close:hover {
  background: rgba(255, 255, 255, 0.05);
}

.toast-success {
  border-left-color: var(--success);
}

.toast-error {
  border-left-color: var(--error);
}

.toast-warning {
  border-left-color: var(--warning);
}

.toast-dismiss {
  animation: toastSlideDown 0.3s ease forwards;
}

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

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


/* ==========  9. SKELETON LOADING  ========== */

.skeleton {
  background: linear-gradient(
    90deg,
    #1A1A1A 25%,
    #2A2A2A 37%,
    #1A1A1A 63%
  );
  background-size: 400% 100%;
  animation: shimmer 1.4s ease infinite;
  border-radius: var(--radius-md);
  color: transparent !important;
  user-select: none;
  pointer-events: none;
}

.skeleton * {
  visibility: hidden;
}

.skeleton-text {
  height: 16px;
  border-radius: var(--radius-sm);
  margin-bottom: var(--space-sm);
}

.skeleton-text.short {
  width: 60%;
}

.skeleton-text.medium {
  width: 80%;
}

.skeleton-card {
  height: 200px;
  border-radius: var(--radius-lg);
}

.skeleton-circle {
  border-radius: 50%;
}

.skeleton-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
}

.skeleton-heading {
  height: 28px;
  width: 50%;
  border-radius: var(--radius-sm);
  margin-bottom: var(--space-md);
}

@keyframes shimmer {
  0% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0 50%;
  }
}


/* ==========  10. STICKY MOBILE CTA  ========== */

.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--bg-card);
  box-shadow: 0 -4px 16px rgba(0,0,0,0.5);
  z-index: 997;
  padding: var(--space-md) var(--space-lg);
  padding-bottom: calc(var(--space-md) + env(safe-area-inset-bottom, 0px));
  text-align: center;
  animation: stickySlideUp 0.4s ease forwards;
  border-top: 1px solid var(--border);
}

.sticky-cta .btn {
  width: 100%;
  max-width: 360px;
}

body.page-booking .sticky-cta,
body.page-booking .footer-cta {
  display: none;
}

@keyframes stickySlideUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}


/* ==========  11. LIGHTBOX  ========== */

.lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.25s ease forwards;
  padding: var(--space-lg);
}

.lightbox-overlay[aria-hidden="true"] {
  display: none;
}

.lightbox-img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: var(--radius-md);
  object-fit: contain;
  animation: lightboxZoomIn 0.3s ease forwards;
}

@keyframes lightboxZoomIn {
  from {
    opacity: 0;
    transform: scale(0.92);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.lightbox-close {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 24px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: background var(--transition-fast);
  z-index: 1;
}

.lightbox-close:hover {
  background: rgba(255, 230, 0, 0.2);
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  font-size: 20px;
  border: none;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: background var(--transition-fast);
}

.lightbox-prev {
  left: var(--space-md);
}

.lightbox-next {
  right: var(--space-md);
}

.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(255, 230, 0, 0.2);
}

.lightbox-counter {
  position: absolute;
  bottom: var(--space-lg);
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Outfit', -apple-system, sans-serif;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  background: rgba(0, 0, 0, 0.6);
  padding: var(--space-xs) var(--space-md);
  border-radius: var(--radius-full);
}


/* ==========  12. GALLERY  ========== */

.gallery-filters {
  display: flex;
  gap: var(--space-sm);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: var(--space-sm);
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  margin-bottom: var(--space-lg);
}

.gallery-filters::-webkit-scrollbar {
  display: none;
}

.filter-pill {
  padding: 10px 18px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border);
  background: var(--bg-card);
  font-family: 'Outfit', -apple-system, sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  white-space: nowrap;
  scroll-snap-align: start;
  cursor: pointer;
  transition: background var(--transition-fast),
              color var(--transition-fast),
              border-color var(--transition-fast);
  min-height: 48px;
  display: inline-flex;
  align-items: center;
}

.filter-pill:hover {
  border-color: var(--border-hover);
  color: var(--text-primary);
}

.filter-pill[aria-pressed="true"],
.filter-pill.active {
  background: var(--neon-yellow);
  color: var(--bg-primary);
  border-color: var(--neon-yellow);
  box-shadow: 0 0 16px rgba(255, 230, 0, 0.25);
  font-weight: 700;
}

.gallery-grid {
  columns: 2;
  column-gap: 12px;
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: 12px;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  position: relative;
}

.gallery-item img {
  aspect-ratio: 1;
  width: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--transition-med);
}

.gallery-item:hover img {
  transform: scale(1.03);
}

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.4) 0%, transparent 40%);
  opacity: 0;
  transition: opacity var(--transition-med);
  pointer-events: none;
}

.gallery-item:hover::after {
  opacity: 1;
}

.gallery-empty {
  text-align: center;
  padding: var(--space-3xl) var(--space-lg);
  color: var(--text-secondary);
}

/* Gallery skeleton loading */
.gallery-skeleton {
  break-inside: avoid;
  margin-bottom: 12px;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.gallery-skeleton .skeleton-img {
  width: 100%;
  aspect-ratio: 1;
  background: linear-gradient(90deg, var(--bg-card) 25%, #1a1a1a 50%, var(--bg-card) 75%);
  background-size: 200% 100%;
  animation: gallery-shimmer 1.5s infinite;
}

@keyframes gallery-shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* Before/After gallery items */
.gallery-item-ba { position: relative; cursor: pointer; }
.gallery-item-ba .ba-badge {
  position: absolute; top: var(--space-sm); left: var(--space-sm);
  background: var(--accent-gold); color: var(--bg-primary);
  padding: 2px 10px; border-radius: var(--radius-sm);
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1px; z-index: 2; pointer-events: none;
}
.gallery-item-ba .ba-after {
  transition: opacity 0.3s ease;
}
.gallery-item-ba .ba-after img {
  width: 100%; display: block;
  transition: transform var(--transition-med);
}
.gallery-item-ba .ba-before {
  position: absolute; inset: 0; opacity: 0;
  transition: opacity 0.3s ease;
}
.gallery-item-ba .ba-before img {
  width: 100%; height: 100%; object-fit: cover;
}
.gallery-item-ba.show-before .ba-badge { display: none; }
.gallery-item-ba.show-before .ba-after { opacity: 0; }
.gallery-item-ba.show-before .ba-before { opacity: 1; }
.gallery-item-ba.show-before::after {
  content: 'AFTER';
  position: absolute; top: var(--space-sm); left: var(--space-sm);
  background: var(--neon-yellow); color: var(--bg-primary);
  padding: 2px 10px; border-radius: var(--radius-sm);
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1px; z-index: 2; pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {
  .gallery-item-ba .ba-after,
  .gallery-item-ba .ba-before {
    transition: none;
  }
  .gallery-skeleton .skeleton-img {
    animation: none;
  }
}


/* ==========  12b. SECTION HEADING ACCENTS  ========== */

.section > .container > h2::after {
  content: '';
  display: block;
  width: 40px;
  height: 3px;
  background: var(--accent-gold);
  margin-top: var(--space-sm);
  border-radius: 2px;
}

.section > .container > h2.text-center::after {
  margin-left: auto;
  margin-right: auto;
}

.badge, .tag {
  background: rgba(201, 166, 70, 0.15);
  color: var(--accent-gold);
  border: 1px solid rgba(201, 166, 70, 0.3);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 600;
}


/* ==========  13. BOOKING WIZARD  ========== */

/* Progress Bar */
.booking-progress {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
  padding: var(--space-md) 0;
}

.progress-step {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.progress-dot {
  width: 12px;
  height: 12px;
  border-radius: var(--radius-full);
  background: var(--border);
  border: 2px solid var(--border);
  transition: background var(--transition-fast),
              border-color var(--transition-fast),
              transform var(--transition-fast);
  flex-shrink: 0;
}

.progress-dot.done {
  background: var(--accent-gold);
  border-color: var(--accent-gold);
}

.progress-dot.active {
  background: var(--neon-yellow);
  border-color: var(--neon-yellow);
  transform: scale(1.3);
  box-shadow: 0 0 12px rgba(255, 230, 0, 0.3);
}

.progress-label {
  font-family: 'Outfit', -apple-system, sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  display: none;
}

.progress-step.active .progress-label,
.progress-step.done .progress-label {
  color: var(--text-primary);
}

.progress-connector {
  width: 40px;
  height: 2px;
  background: var(--border);
  flex-shrink: 0;
}

.progress-connector.done {
  background: var(--accent-gold);
}

/* Steps */
.step-container {
  display: none;
  padding-bottom: calc(var(--sticky-cta-height) + env(safe-area-inset-bottom, 0px) + var(--space-xl));
}

.step-container.active {
  display: block;
  animation: stepFadeIn 0.3s ease forwards;
}

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

/* Service Cards */
.service-card {
  background: var(--bg-card);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  cursor: pointer;
  transition: border-color var(--transition-fast),
              background var(--transition-fast),
              box-shadow var(--transition-fast);
  min-height: 48px;
  -webkit-tap-highlight-color: transparent;
}

.service-card:hover {
  border-color: var(--border-hover);
  box-shadow: var(--shadow-sm);
}

.service-card.selected {
  border-color: var(--neon-yellow);
  background: var(--bg-selected);
  box-shadow: var(--glow-yellow);
}

.service-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: var(--space-md);
}

.service-card-name {
  font-family: 'Outfit', -apple-system, sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--text-primary);
}

.service-card-price {
  font-family: 'Outfit', -apple-system, sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--neon-yellow);
  white-space: nowrap;
}

.service-card-duration {
  font-family: 'Outfit', -apple-system, sans-serif;
  font-size: 14px;
  color: var(--text-secondary);
  margin-top: var(--space-xs);
}

.service-card-description {
  font-size: 14px;
  color: var(--text-secondary);
  margin-top: var(--space-sm);
  line-height: 1.5;
}

/* Barber Cards */
.barber-card {
  flex-shrink: 0;
  min-width: 160px;
  scroll-snap-align: start;
  background: var(--bg-card);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  cursor: pointer;
  transition: border-color var(--transition-fast),
              background var(--transition-fast),
              box-shadow var(--transition-fast);
  display: flex;
  align-items: center;
  gap: var(--space-md);
  min-height: 48px;
  -webkit-tap-highlight-color: transparent;
}

.barber-card:hover {
  border-color: var(--border-hover);
  box-shadow: var(--shadow-sm);
}

.barber-card.selected {
  border-color: var(--neon-yellow);
  background: var(--bg-selected);
  box-shadow: var(--glow-yellow);
}

.barber-card-name {
  font-family: 'Outfit', -apple-system, sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--text-primary);
}

/* Date Strip */
.date-strip {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: var(--space-sm);
  padding-bottom: var(--space-sm);
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.date-strip::-webkit-scrollbar {
  display: none;
}

.date-chip {
  min-width: 56px;
  scroll-snap-align: start;
  text-align: center;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: var(--bg-card);
  padding: var(--space-sm) var(--space-md);
  cursor: pointer;
  transition: background var(--transition-fast),
              color var(--transition-fast),
              border-color var(--transition-fast);
  flex-shrink: 0;
  min-height: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  -webkit-tap-highlight-color: transparent;
}

.date-chip:hover {
  border-color: var(--border-hover);
}

.date-chip.selected {
  background: var(--neon-yellow);
  color: var(--bg-primary);
  border-color: var(--neon-yellow);
}

.date-chip-day {
  font-family: 'Outfit', -apple-system, sans-serif;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  opacity: 0.7;
}

.date-chip.selected .date-chip-day {
  color: var(--bg-primary);
}

/* Time Grid */
.time-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-sm);
}

.time-slot {
  padding: 12px;
  text-align: center;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: var(--bg-card);
  font-family: 'Outfit', -apple-system, sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-primary);
  cursor: pointer;
  transition: background var(--transition-fast),
              color var(--transition-fast),
              border-color var(--transition-fast);
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-tap-highlight-color: transparent;
}

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

.time-slot.selected {
  background: var(--neon-yellow);
  color: var(--bg-primary);
  border-color: var(--neon-yellow);
}

.time-slot.unavailable {
  opacity: 0.3;
  pointer-events: none;
  cursor: not-allowed;
  text-decoration: line-through;
}

/* Booking Summary */
.booking-summary {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-sm);
}

.booking-summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-sm) 0;
  font-family: 'Outfit', -apple-system, sans-serif;
}

.booking-summary-row + .booking-summary-row {
  border-top: 1px solid var(--border);
}

.booking-summary-label {
  font-size: 14px;
  color: var(--text-secondary);
}

.booking-summary-value {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
}

.booking-summary-total {
  font-size: 18px;
  font-weight: 700;
  color: var(--neon-yellow);
}

/* Booking CTA (fixed bottom on mobile) */
.booking-cta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  padding: var(--space-md) var(--space-lg);
  padding-bottom: calc(var(--space-md) + env(safe-area-inset-bottom, 0px));
  z-index: 997;
  box-shadow: 0 -4px 16px rgba(0,0,0,0.5);
}

.booking-cta .btn {
  flex: 1;
  min-width: 0;
}

.booking-cta .btn-secondary {
  flex: 0 0 auto;
  width: auto;
}

.booking-nav {
  display: flex;
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.booking-nav .btn {
  flex: 1;
}

/* Add-on Cards */
.addon-card {
  background: var(--bg-card);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-md) var(--space-lg);
  cursor: pointer;
  transition: border-color var(--transition-fast),
              background var(--transition-fast);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  min-height: 48px;
  -webkit-tap-highlight-color: transparent;
}

.addon-card:hover {
  border-color: var(--border-hover);
}

.addon-card.selected {
  border-color: var(--neon-yellow);
  background: var(--bg-selected);
}

.addon-card-info {
  flex: 1;
}

.addon-card-name {
  font-family: 'Outfit', -apple-system, sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
}

.addon-card-detail,
.addon-card-desc {
  font-size: 13px;
  color: var(--text-secondary);
  margin-top: 2px;
}

.addon-card-time {
  color: var(--accent-gold);
  font-weight: 600;
}

.addon-card-price {
  font-family: 'Outfit', -apple-system, sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--neon-yellow);
  white-space: nowrap;
}

/* Booking layout containers */
.service-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

@media (min-width: 600px) {
  .service-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

.barber-cards {
  display: flex;
  gap: var(--space-md);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  padding-bottom: var(--space-sm);
}

.addon-section {
  margin-top: var(--space-lg);
}

.addon-cards {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

/* Services page add-on list */
.addons-list {
  max-width: 500px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

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

/* Selection summary - shows what user has chosen */
.selection-summary {
  background: var(--bg-selected);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-md) var(--space-lg);
  margin-top: var(--space-lg);
  display: flex;
  align-items: center;
  gap: var(--space-md);
  animation: slideUp 0.3s ease;
}

.selection-summary-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  background: rgba(201, 166, 70, 0.12);
  color: var(--accent-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.selection-summary-details {
  flex: 1;
  min-width: 0;
}

.selection-summary-service {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.2;
}

.selection-summary-meta {
  font-size: 13px;
  color: var(--text-secondary);
  margin-top: 2px;
}

.selection-summary-addons {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs);
  margin-top: var(--space-sm);
}

.selection-summary-addon {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 2px 10px;
  background: rgba(201, 166, 70, 0.08);
  color: var(--accent-gold);
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 600;
}

.selection-summary-price {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--neon-yellow);
  flex-shrink: 0;
}

.booking-total {
  font-family: 'Outfit', -apple-system, sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-secondary);
  width: 100%;
  text-align: center;
  padding: 0 0 var(--space-sm) 0;
}

.booking-total span {
  color: var(--neon-yellow);
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 24px;
}

.consent-label {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.5;
  cursor: pointer;
  min-height: 48px;
  padding: var(--space-sm) 0;
}

.consent-label input[type="checkbox"] {
  margin-top: 2px;
  flex-shrink: 0;
}

.demo-banner {
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.3);
  color: var(--warning);
  padding: var(--space-md);
  border-radius: var(--radius-md);
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: var(--space-lg);
}

/* Barber card internals */
.barber-photo {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--border);
}

.barber-initials {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--bg-selected);
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--accent-gold);
}

.barber-card-specialty {
  font-size: 13px;
  color: var(--text-secondary);
  margin-top: var(--space-xs);
}

/* Addon card internals */
.addon-card-content {
  flex: 1;
}

.addon-card-desc {
  font-size: 13px;
  color: var(--text-secondary);
  margin-top: 2px;
}

/* Date chip internals - fix class name mismatch */
.date-chip-num {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1;
}

.date-chip.selected .date-chip-num {
  color: var(--bg-primary);
}

/* Time slot internals for "any barber" mode */
.time-slot-time {
  font-size: 15px;
  font-weight: 600;
}

.time-slot-barber {
  font-size: 11px;
  color: var(--text-secondary);
  margin-top: 2px;
}

.time-slot.selected .time-slot-barber {
  color: rgba(0, 0, 0, 0.6);
}

/* Summary rows - fix class name mismatch */
.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-sm) 0;
  font-size: 15px;
}

.summary-row + .summary-row {
  border-top: 1px solid var(--border);
}

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

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

.summary-total {
  border-top: 2px solid var(--border) !important;
  padding-top: var(--space-md);
  margin-top: var(--space-sm);
}

.summary-total .summary-value {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 24px;
  color: var(--neon-yellow);
}

/* Confirmation screen */
.confirmation-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--success);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  margin: 0 auto var(--space-lg);
}

.confirmation-ref {
  display: inline-block;
  background: var(--bg-selected);
  border: 1px solid var(--border);
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-md);
  font-family: monospace;
  font-size: 16px;
  font-weight: 700;
  color: var(--neon-yellow);
  letter-spacing: 2px;
  margin: var(--space-md) 0;
}

.confirmation-actions {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

@media (min-width: 600px) {
  .confirmation-actions {
    flex-direction: row;
    justify-content: center;
  }
}

.confirmation-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  margin-top: var(--space-lg);
  text-align: center;
}

.confirmation-links a {
  color: var(--text-secondary);
  font-size: 14px;
}

.confirmation-links a:hover {
  color: var(--neon-yellow);
}

/* Demo mode warning in confirmation */
.demo-confirm-warning {
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.3);
  color: var(--warning);
  padding: var(--space-md);
  border-radius: var(--radius-md);
  text-align: center;
  font-size: 14px;
  margin-top: var(--space-lg);
}

/* Manage booking actions */
.manage-actions {
  display: flex;
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

/* Danger button */
.btn-danger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  min-height: 48px;
  padding: 12px 24px;
  border: 2px solid var(--error);
  border-radius: var(--radius-md);
  font-family: 'Outfit', -apple-system, sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--error);
  background: transparent;
  cursor: pointer;
  transition: background var(--transition-fast), color var(--transition-fast);
}

.btn-danger:hover {
  background: var(--error);
  color: #fff;
}

/* Booking History */
.history-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-lg);
  flex-wrap: wrap;
  gap: var(--space-md);
}

.history-phone {
  font-size: 14px;
  color: var(--text-secondary);
}

.history-section {
  margin-bottom: var(--space-xl);
}

.history-section-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: var(--space-md);
  color: var(--text-primary);
}

.history-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  margin-bottom: var(--space-md);
}

.history-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-sm);
}

.history-ref {
  font-family: monospace;
  color: var(--accent-gold);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
}

.history-service {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-xs);
}

.history-detail {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: var(--space-xs);
}

.history-status {
  display: inline-block;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 600;
  text-transform: capitalize;
}

.history-status-confirmed {
  background: var(--success-border-subtle);
  color: var(--success);
}

.history-status-completed {
  background: rgba(59, 130, 246, 0.15);
  color: #3b82f6;
}

.history-status-cancelled {
  background: rgba(239, 68, 68, 0.15);
  color: var(--error);
}

.history-status-no_show {
  background: rgba(245, 158, 11, 0.15);
  color: var(--warning);
}

.history-actions {
  display: flex;
  gap: var(--space-sm);
  margin-top: var(--space-md);
}

.history-actions .btn {
  font-size: 14px;
  min-height: 44px;
  padding: 8px 16px;
}

.history-empty {
  text-align: center;
  padding: var(--space-2xl);
  color: var(--text-secondary);
}

.history-empty a {
  display: inline-block;
  margin-top: var(--space-md);
  color: var(--neon-yellow);
}

.history-empty a:hover {
  text-decoration: underline;
}

/* Discount section */
.discount-toggle {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-md) 0;
  color: var(--text-secondary);
  font-size: 14px;
  cursor: pointer;
  border: none;
  background: none;
  font-family: 'Outfit', -apple-system, sans-serif;
  min-height: 48px;
  -webkit-tap-highlight-color: transparent;
}

.discount-toggle::after {
  content: '+';
  font-size: 18px;
  color: var(--accent-gold);
  transition: transform var(--transition-fast);
}

.discount-toggle:hover {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.03);
}

.discount-toggle.open::after {
  content: '\2212';
}

.discount-content {
  display: none;
  padding: 0 0 var(--space-md);
}

.discount-content.open {
  display: block;
}

.discount-input-row {
  display: flex;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}

.discount-input-row input {
  flex: 1;
  min-width: 0;
}

.discount-input-row .btn {
  flex-shrink: 0;
  padding: 10px 16px;
  font-size: 14px;
  min-height: 44px;
}

.discount-inline-error {
  font-size: 13px;
  color: var(--error);
  margin-top: -8px;
  margin-bottom: var(--space-sm);
}

.discount-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-xs) var(--space-md);
  background: var(--success-bg-badge);
  color: var(--success);
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: var(--space-sm);
}

.discount-badge .remove-discount {
  cursor: pointer;
  opacity: 0.7;
  font-size: 16px;
  background: none;
  border: none;
  color: inherit;
  padding: 0;
  line-height: 1;
  min-width: 44px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.discount-badge .remove-discount:hover {
  opacity: 1;
}

/* Deposit breakdown */
.deposit-breakdown {
  border-top: 1px solid var(--border);
  padding-top: var(--space-md);
  margin-top: var(--space-md);
}

.deposit-row {
  display: flex;
  justify-content: space-between;
  padding: var(--space-sm) 0;
  font-size: 14px;
  color: var(--text-secondary);
  font-family: 'Outfit', -apple-system, sans-serif;
}

.deposit-row.discount {
  color: var(--success);
}

.deposit-row.total {
  border-top: 2px solid var(--border);
  padding-top: var(--space-md);
  margin-top: var(--space-sm);
  font-size: 18px;
  font-weight: 700;
  color: var(--neon-yellow);
}

.deposit-row.remaining {
  font-size: 15px;
  color: var(--text-secondary);
  padding-top: var(--space-sm);
}

/* Loyalty toggle */
.loyalty-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-md) 0;
  gap: var(--space-md);
}

.loyalty-info {
  font-size: 14px;
  color: var(--text-secondary);
  flex: 1;
}

.loyalty-points-value {
  color: var(--accent-gold);
  font-weight: 600;
}

.loyalty-toggle-label {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 14px;
  color: var(--text-secondary);
  cursor: pointer;
  min-height: 48px;
  -webkit-tap-highlight-color: transparent;
}

.loyalty-toggle-label input[type="checkbox"] {
  flex-shrink: 0;
}

/* Square card container */
.square-card-container {
  padding: var(--space-md);
  background: var(--bg-selected);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  margin: var(--space-md) 0;
}

.square-card-container.hidden {
  display: none;
}

.square-card-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: var(--space-sm);
  font-family: 'Outfit', -apple-system, sans-serif;
}

#card-container {
  min-height: 48px;
}

/* Deposit confirmation info */
.deposit-confirm-info {
  background: var(--success-bg-subtle);
  border: 1px solid var(--success-border-medium);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  margin-top: var(--space-md);
}

.deposit-confirm-row {
  display: flex;
  justify-content: space-between;
  padding: var(--space-xs) 0;
  font-size: 14px;
  color: var(--text-secondary);
  font-family: 'Outfit', -apple-system, sans-serif;
}

.deposit-confirm-row.highlight {
  color: var(--success);
  font-weight: 600;
}

.deposit-confirm-row.remaining-balance {
  border-top: 1px solid var(--success-border-subtle);
  padding-top: var(--space-sm);
  margin-top: var(--space-xs);
  font-size: 15px;
}


/* ==========  14. FOOTER  ========== */

.site-footer {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  box-shadow: 0 -4px 20px rgba(255, 230, 0, 0.03);
  padding: var(--space-2xl) 0;
}

/* Footer top: brand + CTA */
.footer-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-lg);
  text-align: center;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xs);
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
  text-decoration: none;
}

.footer-logo:hover {
  color: var(--text-primary);
}

.footer-logo-mark {
  color: var(--accent-gold);
}

.footer-tagline {
  font-family: 'Outfit', -apple-system, sans-serif;
  font-size: 13px;
  color: var(--text-secondary);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.footer-cta .btn {
  min-width: 220px;
}

/* Footer divider: gold gradient line */
.footer-divider {
  background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
  height: 1px;
  opacity: 0.2;
  margin: var(--space-xl) 0;
}

/* Footer middle: nav + contact + hours */
.footer-middle {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  text-align: center;
}

.footer-nav-label {
  display: block;
  font-family: 'Outfit', -apple-system, sans-serif;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--accent-gold);
  margin-bottom: var(--space-md);
}

.footer-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xs);
}

.footer-nav a {
  font-family: 'Outfit', -apple-system, sans-serif;
  font-size: 14px;
  color: var(--text-secondary);
  transition: color var(--transition-fast);
  padding: var(--space-xs) 0;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
}

.footer-nav a:hover {
  color: var(--neon-yellow);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xs);
}

.footer-contact a {
  font-family: 'Outfit', -apple-system, sans-serif;
  font-size: 14px;
  color: var(--text-secondary);
  transition: color var(--transition-fast);
  padding: var(--space-xs) 0;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
}

.footer-contact a:hover {
  color: var(--neon-yellow);
}

.footer-hours {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-hours p {
  font-family: 'Outfit', -apple-system, sans-serif;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.8;
}

/* Footer bottom: social + legal */
.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-lg);
}

.social-icons {
  display: flex;
  gap: var(--space-md);
}

.social-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  color: var(--text-secondary);
  background: var(--bg-selected);
  transition: color var(--transition-fast),
              background var(--transition-fast),
              transform var(--transition-fast),
              box-shadow var(--transition-fast);
}

.social-icon:hover {
  background: var(--neon-yellow);
  color: var(--bg-primary);
  transform: translateY(-2px);
  box-shadow: var(--glow-yellow);
}

.social-icon svg {
  width: 20px;
  height: 20px;
}

.footer-legal {
  font-family: 'Outfit', -apple-system, sans-serif;
  font-size: 12px;
  color: var(--text-muted);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
}

.footer-legal a {
  color: var(--text-muted);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color var(--transition-fast);
}

.footer-legal a:hover {
  color: var(--neon-yellow);
}


/* ==========  15. UTILITY CLASSES  ========== */

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  padding: inherit;
  margin: inherit;
  overflow: visible;
  clip: auto;
  white-space: normal;
}

.hidden {
  display: none !important;
}

.text-center {
  text-align: center;
}

.text-gold {
  color: var(--accent-gold);
}

.text-success {
  color: var(--success);
}

.text-error {
  color: var(--error);
}

.text-warning {
  color: var(--warning);
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.mt-xs { margin-top: var(--space-xs); }
.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mt-xl { margin-top: var(--space-xl); }
.mt-2xl { margin-top: var(--space-2xl); }

.mb-xs { margin-bottom: var(--space-xs); }
.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }
.mb-xl { margin-bottom: var(--space-xl); }
.mb-2xl { margin-bottom: var(--space-2xl); }

.gap-sm { gap: var(--space-sm); }
.gap-md { gap: var(--space-md); }
.gap-lg { gap: var(--space-lg); }

.flex { display: flex; }
.flex-col { flex-direction: column; }
.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}
.flex-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.w-full { width: 100%; }

/* Content width constraints */
.content-narrow {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.content-medium {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Map overlay positioning */
.map-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

/* Link variants */
.link-muted {
  color: var(--text-secondary);
}

.link-muted:hover {
  color: var(--neon-yellow);
}


/* ==========  16. ANIMATIONS  ========== */

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

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

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.6;
  }
}

/* Stagger animation for lists */
.stagger-item {
  opacity: 0;
  transform: translateY(16px);
  animation: slideUp 0.4s ease forwards;
}

.stagger-item:nth-child(1) { animation-delay: 0s; }
.stagger-item:nth-child(2) { animation-delay: 0.06s; }
.stagger-item:nth-child(3) { animation-delay: 0.12s; }
.stagger-item:nth-child(4) { animation-delay: 0.18s; }
.stagger-item:nth-child(5) { animation-delay: 0.24s; }
.stagger-item:nth-child(6) { animation-delay: 0.3s; }
.stagger-item:nth-child(7) { animation-delay: 0.36s; }
.stagger-item:nth-child(8) { animation-delay: 0.42s; }


/* ==========  16b. COMPONENT CLASSES  ========== */

/* Hero - Full Bleed */
.hero {
  position: relative;
  min-height: 85vh;
  min-height: 85dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 0;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.7) 60%, rgba(0,0,0,0.95) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: var(--space-xl) var(--space-lg);
  max-width: 600px;
}

.hero-content h1 {
  font-size: clamp(32px, 7vw, 56px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: var(--space-md);
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

.hero-sub {
  font-family: 'Outfit', -apple-system, sans-serif;
  font-size: 18px;
  color: rgba(245, 245, 245, 0.8);
  margin-bottom: var(--space-lg);
}

.hero-cta {
  margin-bottom: var(--space-lg);
}

.hero-cta .btn {
  font-size: 18px;
  padding: 16px 40px;
  min-height: 56px;
}

.hero-rating {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}

.hero-rating .star {
  color: var(--accent-gold);
  font-size: 20px;
}

.hero-rating .score {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--text-primary);
}

.hero-rating .source {
  font-size: 14px;
  color: rgba(245, 245, 245, 0.6);
}

.hero-chips {
  display: flex;
  justify-content: center;
  gap: var(--space-lg);
  flex-wrap: wrap;
}

.hero-chip {
  font-size: 14px;
  color: rgba(245, 245, 245, 0.6);
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

.hero-chip::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-gold);
}

/* Service cards (page context, not booking wizard) */
.card .service-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: var(--space-md);
}

.card .service-card-name {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
}

.card .service-card-price {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--neon-yellow);
  line-height: 1;
}

.card .service-card-duration {
  display: inline-block;
  background: rgba(201, 166, 70, 0.12);
  color: var(--accent-gold);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 600;
  margin-top: var(--space-xs);
  letter-spacing: 0.5px;
}

.card .service-card-description {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: var(--space-md);
}

/* Gallery strip (homepage) */
.gallery-strip {
  display: flex;
  gap: var(--space-md);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  padding-bottom: var(--space-sm);
  scrollbar-width: none;
}

.gallery-strip::-webkit-scrollbar {
  display: none;
}

.gallery-strip img {
  width: 280px;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius-md);
  flex-shrink: 0;
  scroll-snap-align: start;
  transition: transform var(--transition-med), box-shadow var(--transition-med);
  cursor: default;
}

.gallery-strip img:hover {
  transform: scale(1.04);
  box-shadow: var(--glow-yellow);
}

/* Social proof card */
.social-proof-card {
  max-width: 500px;
  margin: 0 auto;
  padding: var(--space-xl);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.social-proof-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
  border-radius: 2px;
}

.social-proof-stars {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  margin-bottom: var(--space-md);
  color: var(--accent-gold);
  font-size: 24px;
}

.social-proof-score {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-sm);
  line-height: 1;
}

.social-proof-label {
  font-size: 14px;
  color: var(--text-secondary);
}

/* Location card */
.location-card {
  max-width: 700px;
  margin: 0 auto;
}

.location-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.location-info-label {
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: var(--space-sm);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* FAQ */
.faq-question {
  font-family: 'Outfit', -apple-system, sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: var(--space-sm);
}

.faq-list {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

/* Section visual rhythm - alternating subtle bg */
.section-alt {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

/* Atmospheric background gradients moved to body background-image for perf */


/* ==========  17. MEDIA QUERIES  ========== */

/* -- Tablet: 600px+ -- */
@media (min-width: 600px) {
  .grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

  .progress-label {
    display: block;
  }

  h1 {
    letter-spacing: -1.5px;
  }

  .section {
    padding-top: var(--space-3xl);
    padding-bottom: var(--space-3xl);
  }

  .booking-nav {
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* -- Desktop: 769px+ -- */
@media (min-width: 769px) {
  .header-nav {
    display: flex;
  }

  .header-cta {
    display: inline-flex;
  }

  .burger {
    display: none;
  }

  .mobile-menu {
    display: none !important;
  }

  .sticky-cta {
    display: none;
  }

  body {
    padding-bottom: 0;
  }

  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }

  .gallery-grid {
    columns: 3;
    column-gap: 16px;
  }

  .gallery-item {
    margin-bottom: 16px;
  }

  /* Footer desktop */
  .footer-top {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }

  .footer-brand {
    align-items: flex-start;
  }

  .footer-middle {
    grid-template-columns: 1fr 1fr 1fr;
    text-align: left;
  }

  .footer-nav {
    align-items: flex-start;
  }

  .footer-contact {
    align-items: flex-start;
  }

  .footer-hours {
    align-items: flex-start;
  }

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .footer-legal {
    flex-direction: row;
    gap: var(--space-lg);
  }

  .step-container {
    padding-bottom: 0;
  }

  .booking-cta {
    position: static;
    background: transparent;
    border-top: none;
    padding: var(--space-lg) 0 0;
    box-shadow: none;
  }

  .booking-cta .btn {
    width: auto;
    min-width: 200px;
  }

  .container {
    padding-left: var(--space-xl);
    padding-right: var(--space-xl);
  }

  .container-sm {
    padding-left: var(--space-xl);
    padding-right: var(--space-xl);
  }

  .service-card {
    padding: var(--space-lg) var(--space-xl);
  }

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

  /* Desktop header spacing */
  .header-inner {
    gap: var(--space-xl);
  }

  .header-logo-mark {
    font-size: 20px;
  }

  .header-logo-text {
    font-size: 20px;
  }
}

/* -- Large desktop: 1024px+ -- */
@media (min-width: 1024px) {
  .gallery-grid {
    columns: 3;
    column-gap: 20px;
  }

  .gallery-item {
    margin-bottom: 20px;
  }
}

/* -- Reduced motion -- */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  html {
    scroll-behavior: auto;
  }

  .fade-in {
    opacity: 1;
    transform: none;
  }

  .stagger-item {
    opacity: 1;
    transform: none;
    animation: none;
  }

  .card:hover {
    transform: none;
  }

  .btn:hover {
    transform: none;
  }

  .btn-primary:hover,
  .btn-secondary:hover {
    transform: none;
  }

  .gallery-item img {
    transition: none;
  }

  .gallery-item:hover img {
    transform: none;
  }

  .skeleton {
    animation: none;
    background: var(--border);
  }
}


/* ==========  18. PAGE-SPECIFIC  ========== */

/* Hero Section - page-specific overrides handled by section 16b */
.hero-actions {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  align-items: center;
}

@media (min-width: 600px) {
  .hero-actions {
    flex-direction: row;
    justify-content: center;
  }
}

/* About / Barbers Page */
.barber-profile {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.barber-profile-img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

@media (min-width: 769px) {
  .barber-profile {
    flex-direction: row;
    align-items: flex-start;
  }

  .barber-profile-img {
    width: 280px;
    flex-shrink: 0;
  }
}

/* Services Page */
.services-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

/* Gift Card Page */
.amount-btn {
  min-height: 48px;
  padding: var(--space-md);
  border: 2px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--bg-card);
  color: var(--text-primary);
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 20px;
  font-weight: 700;
  cursor: pointer;
  transition: border-color var(--transition-fast), background var(--transition-fast);
}

.amount-btn:hover {
  border-color: var(--neon-yellow);
  background: rgba(255, 230, 0, 0.04);
}

.amount-btn:active {
  transform: scale(0.97);
}

.amount-btn:focus-visible {
  outline: 3px solid var(--neon-yellow);
  outline-offset: 2px;
}

.amount-btn.selected {
  border-color: var(--neon-yellow);
  background: var(--bg-selected);
  color: var(--neon-yellow);
}

.gift-card-form {
  margin-top: var(--space-xl);
}

.gift-amount-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
}

@media (min-width: 600px) {
  .gift-amount-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.gift-custom-amount {
  margin-top: var(--space-md);
}

.gift-confirmation {
  text-align: center;
  margin-top: var(--space-xl);
}

/* Privacy / Legal Pages */
.legal-content {
  max-width: 700px;
  margin: 0 auto;
}

.legal-content h2 {
  font-size: 22px;
  margin-top: var(--space-xl);
  margin-bottom: var(--space-md);
}

.legal-content h3 {
  font-size: 18px;
  margin-top: var(--space-lg);
  margin-bottom: var(--space-sm);
}

.legal-content p {
  margin-bottom: var(--space-md);
}

.legal-content ul {
  list-style: disc;
  padding-left: var(--space-lg);
  margin-bottom: var(--space-md);
}

.legal-content li {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: var(--space-sm);
}

/* 404 Page */
.page-404 {
  text-align: center;
  padding: var(--space-3xl) var(--space-lg);
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-404 h1 {
  font-size: clamp(48px, 10vw, 96px);
  color: #444444;
  margin-bottom: var(--space-md);
}

.page-404 p {
  margin-bottom: var(--space-lg);
}

/* Join the Team page */
.join-form {
  max-width: 600px;
  margin: 0 auto;
}

/* Map section */
.map-container {
  position: relative;
  width: 100%;
  height: 300px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}

.map-container iframe {
  width: 100%;
  height: min(300px, 40vh);
  border: 0;
}

@media (min-width: 769px) {
  .map-container {
    height: 400px;
  }
}

/* Hours display */
.hours-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-sm) 0;
  font-family: 'Outfit', -apple-system, sans-serif;
  font-size: 15px;
  border-bottom: 1px solid var(--border);
}

.hours-row:last-child {
  border-bottom: none;
}

.hours-day {
  color: var(--text-primary);
  font-weight: 500;
}

.hours-time {
  color: var(--text-secondary);
}

.hours-row.today {
  color: var(--neon-yellow);
  font-weight: 600;
}

.hours-row.today .hours-day,
.hours-row.today .hours-time {
  color: var(--neon-yellow);
}

@media (max-width: 400px) {
  .hours-row {
    flex-direction: column;
    gap: 2px;
  }
}


/* ==========  NEWSLETTER  ========== */

.newsletter-form {
  display: flex;
  gap: var(--space-sm);
  max-width: 420px;
  margin: var(--space-lg) auto 0;
}

.newsletter-form input {
  flex: 1;
}

.newsletter-consent {
  font-size: 12px;
  color: var(--text-secondary);
  margin-top: var(--space-sm);
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
}

.newsletter-success {
  color: var(--success);
  font-weight: 600;
  margin-top: var(--space-md);
}

@media (max-width: 480px) {
  .newsletter-form {
    flex-direction: column;
  }
}


/* ==========  REVIEW CAROUSEL  ========== */

.review-carousel {
  overflow: hidden;
  margin: var(--space-xl) auto;
  max-width: 600px;
}

.review-carousel-track {
  display: flex;
  transition: transform 0.5s ease;
}

.review-card {
  min-width: 100%;
  padding: var(--space-xl) var(--space-lg);
  text-align: center;
}

.review-card .review-stars {
  font-size: 20px;
  margin-bottom: var(--space-md);
}

.review-text {
  font-size: 16px;
  color: var(--text-primary);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: var(--space-md);
}

.review-author {
  font-size: 14px;
  color: var(--text-secondary);
  font-weight: 600;
}

.review-dots {
  display: flex;
  justify-content: center;
  gap: var(--space-sm);
  margin-top: var(--space-md);
}

.review-dot {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.review-dot::after {
  content: '';
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--border);
  transition: background var(--transition-fast);
}

.review-dot.active::after {
  background: var(--accent-gold);
}


/* ==========  19. BLOG  ========== */

/* Blog listing */
.blog-hero { text-align: center; margin-bottom: var(--space-xl); }

.blog-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

@media (min-width: 600px) {
  .blog-cards { grid-template-columns: repeat(2, 1fr); }
}

.blog-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition-med), box-shadow var(--transition-med);
}

.blog-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg), 0 0 20px rgba(201, 166, 70, 0.06);
}

.blog-card a { text-decoration: none; color: inherit; display: block; }

.blog-card-image {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.blog-card-body { padding: var(--space-lg); }

.blog-card-category {
  display: inline-block;
  background: rgba(201, 166, 70, 0.12);
  color: var(--accent-gold);
  padding: 2px 10px;
  border-radius: var(--radius-full);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: var(--space-sm);
}

.blog-card-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.3;
  margin-bottom: var(--space-sm);
}

.blog-card-excerpt {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: var(--space-md);
}

.blog-card-meta {
  font-size: 12px;
  color: var(--text-muted, #666);
  display: flex;
  gap: var(--space-md);
}

/* Blog pagination */
.blog-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--space-sm);
  margin-top: var(--space-xl);
}

.blog-pagination a, .blog-pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-md);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}

.blog-pagination a {
  color: var(--text-secondary);
  border: 1px solid var(--border);
  transition: all var(--transition-fast);
}

.blog-pagination a:hover {
  color: var(--neon-yellow);
  border-color: var(--neon-yellow);
}

.blog-pagination .current {
  background: var(--neon-yellow);
  color: var(--bg-primary);
  border: 1px solid var(--neon-yellow);
}

/* Article page */
.article-header { text-align: center; margin-bottom: var(--space-xl); }

.article-header h1 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(28px, 5vw, 40px);
  line-height: 1.2;
  margin-bottom: var(--space-md);
}

.article-meta {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
  flex-wrap: wrap;
  color: var(--text-secondary);
  font-size: 14px;
}

.article-featured-image {
  width: 100%;
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-xl);
}

/* Article body - Markdown rendered content */
.article-body {
  max-width: 700px;
  margin: 0 auto;
  font-size: 17px;
  line-height: 1.8;
  color: var(--text-primary);
}

.article-body h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 24px;
  margin-top: var(--space-xl);
  margin-bottom: var(--space-md);
}

.article-body h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 20px;
  margin-top: var(--space-lg);
  margin-bottom: var(--space-sm);
}

.article-body p {
  margin-bottom: var(--space-md);
  color: var(--text-primary);
}

.article-body ul, .article-body ol {
  margin-left: var(--space-lg);
  margin-bottom: var(--space-md);
}

.article-body li {
  margin-bottom: var(--space-sm);
  line-height: 1.7;
}

.article-body blockquote {
  border-left: 3px solid var(--accent-gold);
  padding-left: var(--space-lg);
  margin: var(--space-lg) 0;
  color: var(--text-secondary);
  font-style: italic;
  font-size: 18px;
  line-height: 1.7;
}

.article-body img {
  max-width: 100%;
  border-radius: var(--radius-md);
  margin: var(--space-lg) 0;
}

.article-body a {
  color: var(--neon-yellow);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.article-body a:hover {
  color: var(--accent-gold);
}

/* Article CTA */
.article-cta {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  text-align: center;
  margin-top: var(--space-3xl);
}

.article-cta h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  margin-bottom: var(--space-md);
}

/* Article share */
.article-share {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
  margin-top: var(--space-xl);
  padding-top: var(--space-lg);
  border-top: 1px solid var(--border);
  align-items: center;
}

.article-share-label {
  font-size: 14px;
  color: var(--text-secondary);
}

/* Related articles */
.related-articles {
  margin-top: var(--space-3xl);
  border-top: 1px solid var(--border);
  padding-top: var(--space-xl);
}

.related-articles h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 24px;
  margin-bottom: var(--space-lg);
  text-align: center;
}

/* Share buttons */
.share-buttons {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
  margin-top: var(--space-xl);
  padding-top: var(--space-lg);
  border-top: 1px solid var(--border);
}

.share-btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-md);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  color: var(--text-secondary);
  font-size: 13px;
  cursor: pointer;
  background: none;
  transition: all var(--transition-fast);
  min-height: 44px;
}

.share-btn:hover {
  color: var(--neon-yellow);
  border-color: var(--neon-yellow);
}


/* ==========  20. PRINT  ========== */

@media print {
  .site-header,
  .site-footer,
  .sticky-cta,
  .booking-cta,
  .mobile-menu,
  .mobile-menu-overlay,
  .toast-container,
  .lightbox-overlay,
  .burger {
    display: none !important;
  }

  body {
    background: #ffffff;
    color: #000000;
    padding: 0;
    font-size: 12pt;
  }

  .card {
    box-shadow: none;
    border: 1px solid #cccccc;
    break-inside: avoid;
  }

  a {
    color: #000000;
    text-decoration: underline;
  }

  .container,
  .container-sm {
    max-width: 100%;
    padding: 0;
  }
}


/* ==========  TURNSTILE BOT PROTECTION  ========== */

.cf-turnstile {
  margin: var(--space-md) 0;
  display: flex;
  justify-content: center;
}
