@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,500..900;1,500..900&family=Plus+Jakarta+Sans:ital,wght@0,300..800;1,300..800&display=swap');

:root {
  --bg-dark: #0d0d11;
  --bg-surface: #14141a;
  --bg-surface-elevated: #1c1c24;
  --bg-card: rgba(24, 24, 32, 0.85);
  --bg-card-hover: rgba(32, 32, 44, 0.95);

  --gold-primary: #d4af37;
  --gold-bright: #eec95d;
  --gold-dim: #9a7d23;
  --gold-glow: rgba(212, 175, 55, 0.25);
  --gold-badge: rgba(212, 175, 55, 0.12);

  --pink-neon: #f0287e;
  --pink-badge: rgba(240, 40, 126, 0.15);
  --pink-glow: rgba(240, 40, 126, 0.35);

  --barber-red: #d32f2f;
  --barber-red-badge: rgba(211, 47, 47, 0.15);
  --barber-blue: #33469c;
  --barber-blue-badge: rgba(51, 70, 156, 0.15);

  --cure-emerald: #10b981;
  --cure-badge: rgba(16, 185, 129, 0.15);

  --text-main: #f9f9fb;
  --text-secondary: #c2c2cf;
  --text-muted: #8a8a9a;
  --text-inverse: #0d0d11;

  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-gold: rgba(212, 175, 55, 0.3);
  --border-gold-hover: rgba(212, 175, 55, 0.7);
  --border-pink: rgba(240, 40, 126, 0.4);
  --border-barber: rgba(211, 47, 47, 0.4);
  --border-cure: rgba(16, 185, 129, 0.4);

  --success: #10b981;
  --success-bg: rgba(16, 185, 129, 0.12);

  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
    'Helvetica Neue', Arial, sans-serif;
  --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;

  --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-normal: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  --container-max: 1200px;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 9999px;

  --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.4);
  --shadow-gold: 0 4px 20px rgba(212, 175, 55, 0.2);
  --shadow-pink: 0 4px 20px rgba(240, 40, 126, 0.25);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  color-scheme: dark;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-dark);
  color: var(--text-main);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--text-main);
  font-weight: 700;
  line-height: 1.25;
}

h1,
h2 {
  font-family: var(--font-serif);
  letter-spacing: -0.01em;
}

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

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

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

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: 1.5rem;
}

.top-bar {
  background-color: var(--bg-surface);
  border-bottom: 1px solid var(--border-subtle);
  font-size: 0.85rem;
  padding: 0.45rem 0;
  color: var(--text-muted);
}

.top-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.top-bar-item {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.top-bar-item address {
  font-style: normal;
  display: inline;
}

.top-bar-item svg {
  width: 14px;
  height: 14px;
  color: var(--gold-primary);
  flex-shrink: 0;
}

.top-bar-link {
  color: var(--gold-bright);
  font-weight: 600;
}

.top-bar-link:hover {
  text-decoration: underline;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: rgba(13, 13, 17, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-subtle);
  transition: background-color var(--transition-fast);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-block: 1rem;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
}

.brand-logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(212, 175, 55, 0.35));
  transition: transform var(--transition-fast);
}

.brand-logo:hover .brand-logo-img {
  transform: scale(1.05);
}

.brand-info {
  display: flex;
  flex-direction: column;
}

.brand-title-wrap {
  display: flex;
  align-items: baseline;
  gap: 0.35rem;
  line-height: 1;
}

.brand-martha {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.45rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 0.01em;
}

.brand-unisex {
  font-family: var(--font-sans);
  font-weight: 900;
  font-size: 0.88rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-bright);
}

.brand-studio-pink {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--pink-neon);
  margin-top: 2px;
}

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

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-secondary);
  position: relative;
  padding-block: 0.25rem;
}

.nav-link:hover,
.nav-link.active {
  color: var(--gold-bright);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--gold-primary);
  border-radius: var(--radius-full);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-main);
  padding: 0.5rem;
  cursor: pointer;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition-fast);
  border: 1px solid transparent;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold-bright), var(--gold-primary));
  color: var(--text-inverse);
  box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #f7d670, var(--gold-bright));
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(212, 175, 55, 0.35);
}

.btn-secondary {
  background: var(--bg-surface-elevated);
  border-color: var(--border-subtle);
  color: var(--text-main);
}

.btn-secondary:hover {
  border-color: var(--gold-primary);
  color: var(--gold-bright);
  transform: translateY(-2px);
}

.btn-outline-gold {
  background: transparent;
  border-color: var(--gold-primary);
  color: var(--gold-bright);
}

.btn-outline-gold:hover {
  background: var(--gold-badge);
  border-color: var(--gold-bright);
}

.btn-sm {
  padding: 0.45rem 1rem;
  font-size: 0.85rem;
}

.btn-lg {
  padding: 0.9rem 2rem;
  font-size: 1.05rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.3rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: var(--radius-full);
}

.badge-gold {
  background-color: var(--gold-badge);
  color: var(--gold-bright);
  border: 1px solid var(--border-gold);
}

.badge-verified {
  background-color: var(--success-bg);
  color: var(--success);
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.badge-pink {
  background-color: var(--pink-badge);
  color: var(--pink-neon);
  border: 1px solid var(--border-pink);
}

.badge-barber {
  background-color: var(--barber-red-badge);
  color: #ff5252;
  border: 1px solid var(--border-barber);
}

.badge-cure {
  background-color: var(--cure-badge);
  color: var(--cure-emerald);
  border: 1px solid var(--border-cure);
}

.badge-legacy {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.25), rgba(240, 40, 126, 0.15));
  color: #fff;
  border: 1px solid var(--gold-bright);
  box-shadow: 0 0 12px rgba(212, 175, 55, 0.2);
}

.service-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 3rem;
}

.service-tab-btn {
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  padding: 0.65rem 1.4rem;
  border-radius: var(--radius-full);
  font-size: 0.92rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.service-tab-btn:hover {
  border-color: var(--gold-primary);
  color: #fff;
}

.service-tab-btn.active {
  background: linear-gradient(135deg, var(--gold-bright), var(--gold-primary));
  color: var(--text-inverse);
  border-color: transparent;
  box-shadow: var(--shadow-gold);
}

.service-tab-btn[data-category='salon'].active {
  background: linear-gradient(135deg, var(--pink-neon), #c2185b);
  color: #fff;
  box-shadow: var(--shadow-pink);
}

.service-tab-btn[data-category='barber'].active {
  background: linear-gradient(135deg, var(--barber-red), #b71c1c);
  color: #fff;
  box-shadow: 0 4px 20px rgba(211, 47, 47, 0.35);
}

.service-tab-btn[data-category='cure'].active {
  background: linear-gradient(135deg, var(--cure-emerald), #059669);
  color: #fff;
  box-shadow: 0 4px 20px rgba(16, 185, 129, 0.3);
}

/* Service Card Variants */
.service-card-salon:hover {
  border-color: var(--pink-neon);
  box-shadow: 0 12px 30px rgba(240, 40, 126, 0.2);
}

.service-card-barber:hover {
  border-color: var(--barber-red);
  box-shadow: 0 12px 30px rgba(211, 47, 47, 0.25);
}

.service-card-cure {
  border-color: rgba(16, 185, 129, 0.35);
  background: linear-gradient(180deg, rgba(16, 185, 129, 0.05), rgba(24, 24, 32, 0.9));
}

.service-card-cure:hover {
  border-color: var(--cure-emerald);
  box-shadow: 0 12px 30px rgba(16, 185, 129, 0.25);
}

.service-consult-btn {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold-bright);
  background: transparent;
  border: 1px solid var(--border-gold);
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.service-consult-btn:hover {
  background: var(--gold-badge);
  border-color: var(--gold-bright);
}

.showcase-card-body {
  display: grid;
  grid-template-columns: 148px 1fr;
  gap: 1.75rem;
  align-items: start;
}

.menu-photo-frame {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--bg-surface-elevated);
  box-shadow: var(--shadow-card);
}

.menu-photo-frame img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.menu-photo-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  border-radius: var(--radius-sm);
  pointer-events: none;
}

.menu-photo-frame::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 7px;
  z-index: 2;
}

.menu-photo-frame--barber::before {
  box-shadow: inset 0 0 0 2px var(--border-barber);
}

.menu-photo-frame--barber::after {
  background: repeating-linear-gradient(
    -45deg,
    var(--barber-red) 0 8px,
    #f4f4f4 8px 16px,
    var(--barber-blue) 16px 24px
  );
}

.menu-photo-frame--salon::before {
  box-shadow: inset 0 0 0 2px var(--border-gold);
}

.menu-photo-frame--salon::after {
  background: linear-gradient(90deg, var(--gold-dim), var(--pink-neon), var(--gold-bright));
}

.menu-photo-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  padding: 1.5rem 0.5rem 0.5rem;
  text-align: center;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.85));
}

.showcase-menu-inline {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.showcase-menu-inline .menu-photo-frame {
  width: 130px;
  flex-shrink: 0;
}

.showcase-menu-inline .section-menu-copy {
  flex: 1;
  min-width: 240px;
}

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

  .showcase-card-body .menu-photo-frame {
    max-width: 200px;
    margin-inline: auto;
  }

  .showcase-menu-inline {
    flex-direction: column;
  }

  .showcase-menu-inline .menu-photo-frame {
    width: 160px;
    margin-inline: auto;
  }

  .showcase-menu-inline .section-menu-copy {
    min-width: 0;
  }
}

.media-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.5rem;
}

.media-gallery--reels {
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
}

.media-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  background: var(--bg-card);
  transition: all var(--transition-normal);
}

.media-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-gold-hover);
  box-shadow: var(--shadow-card);
}

.media-card img,
.media-card video {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  display: block;
  background: var(--bg-surface-elevated);
}

.media-card--wide img,
.media-card--wide video {
  aspect-ratio: 16 / 10;
}

.media-card--reel img,
.media-card--reel video {
  aspect-ratio: 9 / 16;
}

.media-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.75rem 0.9rem 0.7rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.85));
}

.media-play-badge {
  position: absolute;
  top: 0.7rem;
  right: 0.7rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  background: rgba(13, 13, 17, 0.75);
  color: var(--gold-bright);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.25rem 0.55rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-gold);
}

.hero {
  position: relative;
  padding-block: 5rem 4rem;
  background: radial-gradient(circle at 80% 20%, rgba(212, 175, 55, 0.08), transparent 50%),
    radial-gradient(circle at 10% 80%, rgba(30, 30, 45, 0.5), transparent 50%), var(--bg-dark);
  overflow: hidden;
  border-bottom: 1px solid var(--border-subtle);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3.5rem;
  align-items: center;
}

.hero-badge-wrap {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.hero-title {
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 800;
  margin-bottom: 1.25rem;
  line-height: 1.12;
}

.hero-title span {
  background: linear-gradient(135deg, #fff 40%, var(--gold-bright) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 580px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.hero-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-subtle);
}

.highlight-item {
  display: flex;
  flex-direction: column;
}

.highlight-val {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--gold-bright);
}

.highlight-label {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Hero Location Card (GEO Anchor) */
.hero-geo-card {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  padding: 2rem;
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(12px);
  position: relative;
}

.hero-geo-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold-dim), var(--gold-bright), var(--gold-dim));
  border-top-left-radius: var(--radius-md);
  border-top-right-radius: var(--radius-md);
}

.geo-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.25rem;
}

.geo-card-title {
  font-size: 1.2rem;
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.geo-details {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  margin-bottom: 1.5rem;
}

.geo-detail-row {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.92rem;
}

.geo-detail-row svg {
  width: 18px;
  height: 18px;
  color: var(--gold-primary);
  flex-shrink: 0;
  margin-top: 3px;
}

.geo-detail-text strong {
  color: var(--text-main);
  display: block;
}

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

.geo-transit-tag {
  background: rgba(255, 255, 255, 0.05);
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  border: 1px solid var(--border-subtle);
  margin-bottom: 1.25rem;
}

.geo-transit-tag strong {
  color: var(--gold-bright);
}

.section {
  padding-block: 5rem;
}

.section-alt {
  background-color: var(--bg-surface);
  border-block: 1px solid var(--border-subtle);
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin-inline: auto;
  margin-bottom: 3.5rem;
}

.section-tag {
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: clamp(1.85rem, 3.5vw, 2.65rem);
  margin-bottom: 1rem;
}

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

/* ==========================================================================
   Services Grid
   ========================================================================== */

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.75rem;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 2rem;
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
  position: relative;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-gold-hover);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6);
}

.service-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: var(--gold-badge);
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-bright);
  margin-bottom: 1.25rem;
}

.service-icon svg {
  width: 24px;
  height: 24px;
}

.service-name {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  font-family: var(--font-sans);
}

.service-desc {
  font-size: 0.92rem;
  color: var(--text-secondary);
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

.service-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px solid var(--border-subtle);
}

.service-tag {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--gold-bright);
}

.service-action {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.service-card:hover .service-action {
  color: var(--gold-bright);
}

/* ==========================================================================
   AEO FAQ Section (Semantic Native Details)
   ========================================================================== */

.faq-container {
  max-width: 820px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--transition-fast);
}

.faq-item[open] {
  border-color: var(--border-gold);
}

.faq-summary {
  padding: 1.25rem 1.5rem;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-main);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  list-style: none;
}

.faq-summary::-webkit-details-marker {
  display: none;
}

.faq-summary::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--gold-primary);
  transition: transform var(--transition-fast);
}

.faq-item[open] .faq-summary::after {
  content: '−';
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 1.5rem 1.5rem 1.5rem;
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.faq-answer a {
  color: var(--gold-bright);
  text-decoration: underline;
}

/* ==========================================================================
   Hiring Banner & Job Cards
   ========================================================================== */

.hiring-banner {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.12), rgba(20, 20, 26, 0.95)),
    var(--bg-surface);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 3.5rem 2.5rem;
  margin-block: 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.jobs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 2rem;
}

.job-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  transition: all var(--transition-fast);
}

.job-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-3px);
  box-shadow: var(--shadow-card);
}

.job-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 0.75rem;
}

.job-title {
  font-size: 1.25rem;
  font-family: var(--font-sans);
}

.job-meta-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.job-meta-item {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.job-meta-item svg {
  width: 14px;
  height: 14px;
  color: var(--gold-primary);
}

.job-duties {
  list-style-position: inside;
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  flex-grow: 1;
}

.application-form-wrap {
  max-width: 680px;
  margin-inline: auto;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 2.5rem;
  box-shadow: var(--shadow-card);
}

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

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

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  background-color: var(--bg-surface-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  color: var(--text-main);
  transition: border-color var(--transition-fast);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--gold-primary);
  box-shadow: 0 0 0 3px var(--gold-badge);
}

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
  background-color: var(--bg-surface);
  border-top: 1px solid var(--border-subtle);
  padding-top: 4.5rem;
  padding-bottom: 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
}

.footer-brand p {
  margin-top: 1rem;
  font-size: 0.9rem;
  max-width: 320px;
}

.footer-col-title {
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-main);
  margin-bottom: 1.25rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-link {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.footer-link:hover {
  color: var(--gold-bright);
}

.footer-bottom {
  border-top: 1px solid var(--border-subtle);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-ai-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--bg-surface-elevated);
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-gold);
  font-size: 0.75rem;
  color: var(--gold-bright);
}

.footer-spotlight {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.footer-spotlight strong {
  color: var(--gold-bright);
  font-weight: 600;
}

.footer-disclaimer {
  border-top: 1px solid var(--border-subtle);
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  font-size: 0.78rem;
  line-height: 1.6;
  color: var(--text-muted);
}

.footer-legal-links {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.4rem;
  font-size: 0.8rem;
}

.nav-actions .btn-primary.active {
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
}

dialog {
  margin: auto;
  background: var(--bg-surface);
  color: var(--text-main);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  padding: 2.25rem;
  max-width: 520px;
  width: 90vw;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.8);
}

dialog::backdrop {
  background: rgba(10, 10, 14, 0.8);
  backdrop-filter: blur(6px);
}

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

.dialog-title {
  font-size: 1.4rem;
}

.dialog-close {
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.25rem;
  line-height: 1;
}

.dialog-close:hover {
  color: var(--gold-bright);
}

/* Toast Notifications */
.toast-container {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.toast {
  background: var(--bg-surface-elevated);
  color: var(--text-main);
  border: 1px solid var(--gold-primary);
  padding: 1rem 1.5rem;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-card);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  animation: slideIn 0.3s ease;
}

@keyframes slideIn {
  from {
    transform: translateX(100%);
    opacity: 0;
  }

  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/* ==========================================================================
   Blog & Editorial Article Styling
   ========================================================================== */

.blog-filter-bar {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 3rem;
}

.blog-filter-btn {
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.blog-filter-btn:hover,
.blog-filter-btn.active {
  background: var(--gold-badge);
  border-color: var(--gold-primary);
  color: var(--gold-bright);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 2rem;
}

.blog-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all var(--transition-normal);
  text-decoration: none;
}

.blog-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-gold);
  box-shadow: var(--shadow-card);
}

.blog-card-content {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.blog-card-category {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold-bright);
  font-weight: 700;
  margin-bottom: 0.6rem;
}

.blog-card-title {
  font-size: 1.3rem;
  color: var(--text-main);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.blog-card-excerpt {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.blog-card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: var(--text-muted);
  padding-top: 1rem;
  border-top: 1px solid var(--border-subtle);
}

/* Dedicated Article Reader Layout */
.article-container {
  max-width: 780px;
  margin-inline: auto;
  padding-inline: 1.5rem;
  padding-block: 4rem 6rem;
}

.article-header {
  text-align: center;
  margin-bottom: 3rem;
}

.article-category-tag {
  display: inline-block;
  margin-bottom: 1rem;
}

.article-title {
  font-size: clamp(2.1rem, 4.5vw, 3.2rem);
  line-height: 1.18;
  margin-bottom: 1.25rem;
  color: var(--text-main);
}

.article-subtitle {
  font-size: 1.2rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 2rem;
}

.article-meta-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  font-size: 0.88rem;
  color: var(--text-muted);
  padding-block: 1rem;
  border-block: 1px solid var(--border-subtle);
}

.article-meta-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.article-body {
  font-size: 1.1rem;
  line-height: 1.85;
  color: #d1d1db;
}

.article-body h2 {
  font-size: 1.85rem;
  margin-top: 2.75rem;
  margin-bottom: 1rem;
  color: var(--gold-bright);
}

.article-body h3 {
  font-size: 1.4rem;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  color: var(--text-main);
}

.article-body p {
  margin-bottom: 1.6rem;
  color: #cfcfe0;
}

.article-body ul,
.article-body ol {
  margin-bottom: 1.6rem;
  padding-left: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.article-body li {
  color: #cfcfe0;
}

.article-body strong {
  color: var(--text-main);
}

.article-body blockquote {
  margin: 2.5rem 0;
  padding: 1.5rem 2rem;
  background: var(--bg-card);
  border-left: 4px solid var(--gold-primary);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--text-main);
}

.article-callout {
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  margin-block: 2.5rem;
}

.article-callout h4 {
  color: var(--gold-bright);
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

.author-box {
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 2rem;
  margin-top: 4rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.author-avatar {
  width: 68px;
  height: 68px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--gold-bright), var(--gold-dim));
  color: var(--text-inverse);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  font-weight: 800;
  flex-shrink: 0;
}

.author-name {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 0.25rem;
}

.author-bio {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* ==========================================================================
   Booking Splash Lander Concept
   ========================================================================== */

.booking-page {
  background-color: var(--bg-dark);
}

.booking-splash-hero {
  position: relative;
  padding: 4.5rem 0 3rem;
  text-align: center;
  background: radial-gradient(ellipse at top, rgba(212, 175, 55, 0.12) 0%, rgba(13, 13, 17, 0) 70%),
    radial-gradient(ellipse at bottom right, rgba(240, 40, 126, 0.08) 0%, rgba(13, 13, 17, 0) 60%),
    var(--bg-dark);
  border-bottom: 1px solid var(--border-subtle);
  overflow: hidden;
}

.booking-splash-glow {
  position: absolute;
  top: -150px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 350px;
  background: radial-gradient(circle, var(--gold-glow) 0%, rgba(0, 0, 0, 0) 70%);
  filter: blur(50px);
  pointer-events: none;
}

.booking-splash-content {
  position: relative;
  z-index: 2;
  max-width: 1100px;
}

.splash-badge-row {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-bottom: 1.25rem;
}

.splash-title {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #ffffff 40%, var(--gold-bright) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.splash-subtitle {
  font-size: 1.15rem;
  color: var(--text-secondary);
  max-width: 680px;
  margin: 0 auto 2.5rem;
  line-height: 1.6;
}

/* Interactive Concierge Funnel */
.booking-funnel-section {
  padding-top: 2rem;
  padding-bottom: 5rem;
}

.booking-progress-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 640px;
  margin: 0 auto 2.5rem;
  padding: 0 1rem;
  scroll-margin-top: 100px;
}

.step-indicator {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-muted);
  font-size: 0.88rem;
  font-weight: 600;
  transition: var(--transition-fast);
}

.step-indicator.active {
  color: var(--gold-bright);
}

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

.step-num {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  transition: var(--transition-fast);
}

.step-indicator.active .step-num {
  background: var(--gold-primary);
  border-color: var(--gold-bright);
  color: var(--text-inverse);
  box-shadow: 0 0 12px var(--gold-glow);
}

.step-indicator.completed .step-num {
  background: var(--success);
  border-color: var(--success);
  color: #fff;
}

.step-line {
  flex: 1;
  height: 2px;
  background: var(--border-subtle);
  margin: 0 0.75rem;
  transition: var(--transition-fast);
}

.booking-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-card);
  max-width: 960px;
  margin: 0 auto;
  position: relative;
}

.funnel-step {
  display: none;
  animation: fadeInStep 0.35s ease forwards;
}

.funnel-step.active {
  display: block;
}

@keyframes fadeInStep {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.funnel-step-header {
  margin-bottom: 2rem;
  text-align: left;
}

.step-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin-bottom: 0.35rem;
}

.funnel-step-title {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.funnel-step-desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
}

/* Step 1: Track Cards */
.track-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.track-card {
  position: relative;
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  cursor: pointer;
  transition: var(--transition-fast);
  display: flex;
  flex-direction: column;
}

.track-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-2px);
  background: var(--bg-card-hover);
}

.track-card.selected {
  border-color: var(--gold-bright);
  background: rgba(212, 175, 55, 0.06);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.15);
}

.track-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.track-badge {
  align-self: flex-start;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-full);
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.track-name {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text-main);
}

.track-summary {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 1rem;
  flex: 1;
}

.track-perk {
  font-size: 0.75rem;
  color: var(--gold-bright);
  font-weight: 600;
  border-top: 1px dashed var(--border-subtle);
  padding-top: 0.6rem;
}

/* Step 2: Service Selection */
.service-track-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.track-filter-btn {
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  padding: 0.45rem 0.9rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-fast);
}

.track-filter-btn:hover {
  border-color: var(--border-gold);
  color: var(--text-main);
}

.track-filter-btn.active {
  background: var(--gold-badge);
  border-color: var(--gold-bright);
  color: var(--gold-bright);
}

.service-selection-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
  max-height: 520px;
  overflow-y: auto;
  padding-right: 0.5rem;
}

/* Custom Scrollbar for Service Grid */
.service-selection-grid::-webkit-scrollbar {
  width: 6px;
}

.service-selection-grid::-webkit-scrollbar-track {
  background: var(--bg-surface);
}

.service-selection-grid::-webkit-scrollbar-thumb {
  background: var(--border-subtle);
  border-radius: var(--radius-full);
}

.service-selection-grid::-webkit-scrollbar-thumb:hover {
  background: var(--gold-dim);
}

.service-choice-card {
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  cursor: pointer;
  transition: var(--transition-fast);
  display: flex;
  flex-direction: column;
}

.service-choice-card:hover {
  border-color: var(--border-gold);
  background: var(--bg-card-hover);
}

.service-choice-card.selected {
  border-color: var(--gold-bright);
  background: rgba(212, 175, 55, 0.08);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.12);
}

.service-choice-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.6rem;
}

.service-choice-icon {
  font-size: 1.3rem;
}

.service-duration {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 500;
}

.service-choice-title {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
  color: var(--text-main);
}

.service-choice-desc {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.45;
  margin-bottom: 1rem;
  flex: 1;
}

.service-choice-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 0.6rem;
  border-top: 1px solid var(--border-subtle);
}

.service-tag-pill {
  font-size: 0.7rem;
  color: var(--text-muted);
  font-weight: 600;
}

.service-select-btn {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gold-bright);
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-sm);
  background: rgba(212, 175, 55, 0.1);
}

.service-choice-card.selected .service-select-btn {
  background: var(--gold-primary);
  color: var(--text-inverse);
}

/* Step 3: Timing & Specialist */
.scheduling-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 2rem;
}

.pref-block {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.chip-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.chip-btn {
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border-subtle);
  color: var(--text-main);
  padding: 0.65rem 1.15rem;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-fast);
}

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

.chip-btn.active {
  background: var(--gold-primary);
  border-color: var(--gold-bright);
  color: var(--text-inverse);
  box-shadow: 0 0 12px var(--gold-glow);
}

.chair-selection-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.chair-card {
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  cursor: pointer;
  transition: var(--transition-fast);
  text-align: center;
}

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

.chair-card.selected {
  border-color: var(--gold-bright);
  background: rgba(212, 175, 55, 0.08);
}

.chair-icon {
  font-size: 1.6rem;
  margin-bottom: 0.4rem;
}

.chair-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 0.2rem;
}

.chair-sub {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* Step 4: Details */
.selection-capsule {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  margin-bottom: 2rem;
}

.capsule-item {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.capsule-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  font-weight: 600;
}

.capsule-val {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--gold-bright);
}

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

.form-col-full {
  grid-column: 1 / -1;
}

.confirmation-channel-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 0.35rem;
}

.channel-radio-label {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.88rem;
  color: var(--text-secondary);
  cursor: pointer;
}

.channel-radio-label input {
  accent-color: var(--gold-primary);
}

.funnel-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-subtle);
  margin-top: 1.5rem;
}

/* Step 5: VIP Confirmation Screen */
.confirmation-screen {
  text-align: center;
  padding: 1.5rem 0;
  animation: fadeInStep 0.4s ease forwards;
}

.confirm-icon-wrap {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-full);
  background: rgba(16, 185, 129, 0.15);
  border: 2px solid var(--success);
  color: var(--success);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: 0 0 25px rgba(16, 185, 129, 0.3);
}

.confirm-title {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, #ffffff 40%, var(--gold-bright) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.confirm-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 2rem;
}

.confirm-ticket {
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  max-width: 540px;
  margin: 0 auto 2rem;
  text-align: left;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
}

.ticket-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.9rem 1.25rem;
  background: rgba(212, 175, 55, 0.12);
  border-bottom: 1px solid var(--border-gold);
}

.ticket-brand {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold-bright);
}

.ticket-ref {
  font-family: monospace;
  font-weight: 700;
  font-size: 0.95rem;
  background: var(--bg-surface);
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-sm);
  color: #fff;
  border: 1px solid var(--border-subtle);
}

.ticket-body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.ticket-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px dashed var(--border-subtle);
}

.ticket-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

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

.t-val {
  color: var(--text-main);
  font-weight: 600;
  text-align: right;
}

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

.confirm-notice {
  font-size: 0.85rem;
  color: var(--text-muted);
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.5;
}

/* Generic Card Grid Utilities */
.grid {
  display: grid;
  gap: 1.5rem;
}

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  transition: var(--transition-fast);
}

.card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-gold);
  transform: translateY(-4px);
}

/* Guarantees Grid */
.guarantee-grid {
  margin-top: 1rem;
}

.guarantee-card {
  text-align: center;
  padding: 2rem 1.5rem;
}

.guarantee-icon {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.guarantee-title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--gold-bright);
}

.guarantee-desc {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.55;
}

/* Client Review Cards */
.review-card {
  padding: 1.75rem;
}

.review-stars {
  color: var(--gold-bright);
  font-size: 1.05rem;
  letter-spacing: 0.15em;
  margin-bottom: 0.85rem;
}

.review-text {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

.review-meta {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-subtle);
}

.review-author {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text-main);
}

.review-source {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Mobile Media Queries for Splash Lander */
@media (max-width: 768px) {
  .booking-splash-hero {
    padding: 3rem 0 2rem;
  }

  .booking-card {
    padding: 1.5rem 1rem;
  }

  .client-details-grid {
    grid-template-columns: 1fr;
  }

  .booking-progress-bar {
    margin-bottom: 1.5rem;
  }

  .step-text {
    display: none;
  }

  .step-line {
    margin: 0 0.4rem;
  }

  .funnel-step-title {
    font-size: 1.4rem;
  }

  .funnel-footer {
    flex-direction: column-reverse;
    gap: 0.75rem;
  }

  .funnel-footer .btn {
    width: 100%;
  }

  .confirm-title {
    font-size: 1.7rem;
  }

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

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

/* ==========================================================================
   Elevated Two-Sided Showcase Banner
   ========================================================================== */
.showcase-dual-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.showcase-dual-card {
  position: relative;
  border-radius: var(--radius-md);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal),
    border-color var(--transition-normal);
  background-size: cover;
  background-position: center;
}

.showcase-dual-card:hover {
  transform: translateY(-4px);
}

.showcase-dual-barber {
  background: linear-gradient(180deg, rgba(13, 13, 17, 0.88) 0%, rgba(13, 13, 17, 0.96) 100%),
    url('../assets/images/barbershop.png') center/cover no-repeat;
  border: 1px solid var(--border-barber);
}

.showcase-dual-barber:hover {
  border-color: var(--barber-red);
  box-shadow: 0 16px 40px rgba(211, 47, 47, 0.25);
}

.showcase-dual-saloon {
  background: linear-gradient(180deg, rgba(13, 13, 17, 0.88) 0%, rgba(13, 13, 17, 0.96) 100%),
    url('../assets/images/new-style-salon.png') center/cover no-repeat;
  border: 1px solid var(--border-pink);
}

.showcase-dual-saloon:hover {
  border-color: var(--pink-neon);
  box-shadow: 0 16px 40px rgba(240, 40, 126, 0.25);
}

.showcase-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.25rem;
}

.showcase-card-heading {
  font-size: 1.75rem;
  margin-bottom: 0.85rem;
  color: #ffffff;
}

.showcase-card-desc {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.showcase-feature-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  font-size: 0.92rem;
  color: var(--text-main);
  margin-bottom: 2rem;
}

.showcase-feature-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.showcase-feature-list li .check-icon {
  color: var(--gold-bright);
  font-weight: bold;
}

/* ==========================================================================
   Mobile Bottom Quick-Action Bar
   ========================================================================== */
.mobile-bottom-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: rgba(13, 13, 17, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid var(--border-subtle);
  padding: 0.6rem 1rem env(safe-area-inset-bottom, 0.6rem);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.6);
}

.mobile-bottom-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0.5rem;
}

.mobile-bottom-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.5rem 0.25rem;
  border-radius: var(--radius-sm);
  color: var(--text-secondary);
  transition: all var(--transition-fast);
  text-decoration: none;
}

.mobile-bottom-btn svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
}

.mobile-bottom-btn.active,
.mobile-bottom-btn:hover {
  color: var(--gold-bright);
}

.mobile-bottom-btn--primary {
  background: linear-gradient(135deg, var(--gold-bright), var(--gold-primary));
  color: var(--text-inverse) !important;
  font-weight: 700;
  box-shadow: 0 2px 10px rgba(212, 175, 55, 0.3);
}

.mobile-bottom-btn--primary svg {
  stroke: var(--text-inverse);
}

@media (max-width: 768px) {
  .mobile-bottom-bar {
    display: block;
  }
  body {
    padding-bottom: 4.5rem;
  }
}

/* ==========================================================================
   Navigation Backdrop Overlay
   ========================================================================== */
.nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 1040;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition-normal), visibility var(--transition-normal);
}

.nav-backdrop.is-active {
  opacity: 1;
  visibility: visible;
}

/* ==========================================================================
   Smooth Fade Transitions for Tabs & Filters
   ========================================================================== */
.fade-in {
  animation: fadeIn 0.35s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

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

.splash-fast-lane {
  margin: 28px auto 0;
  max-width: 1100px;
  padding: 24px;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  background: var(--bg-surface-elevated);
  box-shadow: var(--shadow-card);
}

.fast-lane-heading {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}

.fast-lane-eyebrow {
  display: inline-block;

  color: var(--gold-bright);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1;
}

.fast-lane-heading strong {
  display: inline-block;

  color: var(--text-main);
  font-size: 20px;
  font-weight: 800;
  line-height: 1.2;
}

.fast-lane-heading > span:last-child {
  width: 100%;

  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.4;
}

.fast-lane-actions {
  width: 100%;

  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 10px;

  box-sizing: border-box;
}

.fast-lane-action {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;

  position: relative;

  display: flex;
  align-items: center;
  gap: 12px;

  min-height: 92px;
  padding: 15px;

  color: var(--text-main);
  text-decoration: none;

  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);

  overflow: hidden;

  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.fast-lane-action:hover {
  transform: translateY(-2px);

  background: var(--bg-card-hover);
  border-color: var(--border-gold-hover);
}

.fast-lane-primary {
  color: var(--text-inverse);
  background: linear-gradient(135deg, var(--gold-bright), var(--gold-primary));
  border-color: transparent;
  box-shadow: var(--shadow-gold);
}

.fast-lane-primary:hover {
  background: linear-gradient(135deg, #f7d670, var(--gold-bright));
  border-color: transparent;
}

.fast-lane-icon {
  width: 42px;
  height: 42px;
  min-width: 42px;

  display: grid;
  place-items: center;

  border-radius: 50%;

  background: var(--gold-badge);
  color: var(--gold-bright);

  font-size: 18px;
  line-height: 1;
}

.fast-lane-primary .fast-lane-icon {
  background: rgba(13, 13, 17, 0.15);
  color: var(--text-inverse);
}

.fast-lane-content {
  min-width: 0;

  display: flex;
  flex-direction: column;
  gap: 3px;
}

.fast-lane-label {
  display: block;

  color: var(--text-muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.1;
}

.fast-lane-content strong {
  display: block;

  color: inherit;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.2;
}

.fast-lane-content small {
  display: block;

  color: var(--text-secondary);
  font-size: 11px;
  line-height: 1.3;
}
.fast-lane-primary .fast-lane-label,
.fast-lane-primary .fast-lane-content small {
  color: rgba(13, 13, 17, 0.65);
}
.fast-lane-arrow {
  margin-left: auto;
  flex: 0 0 auto;

  color: var(--text-muted);
  font-size: 20px;
  line-height: 1;
  opacity: 0;
  transition: var(--transition-fast);
}

.fast-lane-primary .fast-lane-arrow {
  color: rgba(13, 13, 17, 0.65);
}

.fast-lane-action:hover .fast-lane-arrow {
  opacity: 1;
  transform: translateX(2px);
}

@media (max-width: 560px) {
  .splash-fast-lane {
    width: calc(100% - 24px);
    padding: 20px;
    border-radius: 15px;
  }

  .fast-lane-heading {
    display: block;
    margin-bottom: 16px;
  }

  .fast-lane-heading strong {
    display: block;
    margin-top: 5px;
    font-size: 19px;
  }

  .fast-lane-heading > span:last-child {
    margin-top: 5px;
  }

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

  .fast-lane-action {
    min-height: 78px;
  }
}
