/* ==========================================================================
   PoseWithUs — Luxury Photobooth Experiences across the GTA
   Design System & Styling inspired by OHEY Photobooth (oheyphotobooth.ca)
   Typography: Playfair Display (Serif Headings) & Montserrat (Sans Body/UI)
   Palette: Luxury Deep Black, Warm Cream, Dusty Rose & Deep Burgundy
   ========================================================================== */

@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Montserrat:wght@300;400;500;600;700&display=swap");

:root {
  /* OHEY Exact Color Tokens */
  --background: 0 0% 4%;           /* #0a0a0a deep luxury black */
  --foreground: 25 33% 92%;        /* #f4ede4 warm cream */
  --card: 0 0% 7%;                 /* #121212 rich card surface */
  --card-foreground: 25 33% 92%;
  --primary: 12 35% 62%;           /* #c4887a elegant dusty rose */
  --primary-foreground: 0 0% 100%;
  --accent: 0 45% 35%;             /* #823131 deep burgundy / wine */
  --accent-foreground: 25 33% 92%;
  --muted: 0 0% 12%;               /* #1f1f1f dark muted */
  --muted-foreground: 25 20% 70%;  /* #baa99b warm muted gray */
  --border: 0 0% 18%;              /* #2e2e2e subtle divider */
  --input: 0 0% 12%;
  --ring: 12 35% 62%;
  
  /* Gradients & Ambient Glows */
  --gradient-rose: linear-gradient(135deg, hsl(12, 35% ,62%) 0%, hsl(0, 45%, 35%) 100%);
  --gradient-rose-subtle: linear-gradient(135deg, hsla(12, 35%, 62%, 0.15) 0%, hsla(0, 45%, 35%, 0.05) 100%);
  --gradient-dark: linear-gradient(180deg, hsl(0, 0%, 4%) 0%, hsl(0, 0%, 8%) 100%);
  --shadow-glow: 0 0 60px hsla(12, 35%, 62%, 0.2);
  --shadow-glow-sm: 0 0 25px hsla(12, 35%, 62%, 0.15);
  --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.45);

  /* Typography */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-sans: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  
  --radius: 1rem;
  --radius-sm: 0.5rem;
  --radius-full: 9999px;
}

/* ==========================================================================
   Base & Resets
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
}

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

body {
  font-family: var(--font-sans);
  background-color: hsl(var(--background));
  color: hsl(var(--foreground));
  margin: 0;
  padding: 0;
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

a {
  color: hsl(var(--primary));
  text-decoration: none;
  transition: color 0.3s ease, border-color 0.3s ease;
}

a:hover, a:focus {
  color: #df9e90;
  text-decoration: none;
}

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

/* Typography Utility Classes */
.font-display {
  font-family: var(--font-display) !important;
}

.font-sans {
  font-family: var(--font-sans) !important;
}

.text-cream {
  color: hsl(var(--foreground)) !important;
}

.text-rose {
  color: hsl(var(--primary)) !important;
}

.text-muted-foreground {
  color: hsl(var(--muted-foreground)) !important;
}

.text-rose-gradient {
  background: var(--gradient-rose);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline;
}

.relative-z {
  position: relative;
  z-index: 2;
}

/* Background utilities */
.bg-dark {
  background-color: hsl(var(--background)) !important;
}

.bg-darker {
  background-color: hsl(0, 0%, 2.5%) !important;
}

.section-padding {
  padding: 100px 0;
}

@media (max-width: 768px) {
  .section-padding {
    padding: 60px 0;
  }
}

/* Section Header Typography */
.section-badge-eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: hsl(var(--primary));
  margin-bottom: 12px;
}

.section-display-title {
  font-family: var(--font-display);
  font-size: 2.75rem;
  font-weight: 600;
  line-height: 1.2;
  color: hsl(var(--foreground));
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

@media (max-width: 768px) {
  .section-display-title {
    font-size: 2.1rem;
  }
}

.section-intro-paragraph {
  font-size: 1.05rem;
  line-height: 1.75;
  color: hsl(var(--muted-foreground));
}

/* ==========================================================================
   Glassmorphism Card & Hover Lift
   ========================================================================== */
.glass-card {
  background-color: hsla(0, 0%, 7%, 0.85);
  border: 1px solid hsla(0, 0%, 18%, 0.65);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
}

.hover-lift {
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease;
}

.hover-lift:hover {
  transform: translateY(-6px);
  border-color: hsla(12, 35%, 62%, 0.45);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.65), var(--shadow-glow-sm);
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn-rose-gradient {
  background: var(--gradient-rose);
  color: #ffffff !important;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 0.78rem 1.9rem;
  border-radius: var(--radius-full);
  border: none;
  box-shadow: 0 4px 20px hsla(12, 35%, 62%, 0.35);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
  cursor: pointer;
}

.btn-rose-gradient:hover, .btn-rose-gradient:focus {
  color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 28px hsla(12, 35%, 62%, 0.5);
  filter: brightness(1.08);
}

.btn-cream-outline {
  background: transparent;
  color: hsl(var(--foreground)) !important;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  padding: 0.78rem 1.9rem;
  border-radius: var(--radius-full);
  border: 1px solid hsla(25, 33%, 92%, 0.35);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.35s ease;
  text-decoration: none;
}

.btn-cream-outline:hover, .btn-cream-outline:focus {
  background: hsla(25, 33%, 92%, 0.1);
  color: #ffffff !important;
  border-color: hsl(var(--foreground));
  transform: translateY(-2px);
}

.btn-dark-outline {
  background: hsla(0, 0%, 10%, 0.6);
  color: hsl(var(--foreground)) !important;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  padding: 0.78rem 1.75rem;
  border-radius: var(--radius-full);
  border: 1px solid hsla(0, 0%, 25%, 0.8);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.btn-dark-outline:hover, .btn-dark-outline:focus {
  border-color: hsl(var(--primary));
  color: hsl(var(--primary)) !important;
  background: hsla(12, 35%, 62%, 0.1);
  transform: translateY(-2px);
}

.hero-button-group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

/* Custom Luxury Scrollbar & Selection */
::selection {
  background: hsla(12, 35%, 62%, 0.4);
  color: #ffffff;
}

::-webkit-scrollbar {
  width: 9px;
}

::-webkit-scrollbar-track {
  background: hsl(0, 0%, 4%);
}

::-webkit-scrollbar-thumb {
  background: hsl(0, 0%, 22%);
  border-radius: 9999px;
}

::-webkit-scrollbar-thumb:hover {
  background: hsl(12, 35%, 62%);
}

/* ==========================================================================
   Top Announcement Bar
   ========================================================================== */
.ohey-announcement-bar {
  background-color: hsl(0, 0%, 2.5%);
  border-bottom: 1px solid hsla(0, 0%, 15%, 0.7);
  padding: 8px 0;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  color: hsl(var(--muted-foreground));
  position: relative;
  z-index: 1050;
}

.pulse-beacon {
  display: inline-block;
  width: 7px;
  height: 7px;
  background-color: hsl(var(--primary));
  border-radius: 50%;
  margin-right: 8px;
  box-shadow: 0 0 0 0 hsla(12, 35%, 62%, 0.7);
  animation: beaconPulse 2s infinite cubic-bezier(0.66, 0, 0, 1);
  vertical-align: middle;
}

@keyframes beaconPulse {
  to {
    box-shadow: 0 0 0 8px rgba(196, 136, 122, 0);
  }
}

.announcement-tag {
  font-weight: 700;
  color: hsl(var(--primary));
  margin-right: 6px;
  letter-spacing: 0.08em;
}

.announcement-link {
  color: hsl(var(--foreground));
  font-weight: 600;
  transition: color 0.2s ease;
}

.announcement-link:hover {
  color: hsl(var(--primary));
}

/* ==========================================================================
   Navigation Bar (OHEY Minimalist Dark)
   ========================================================================== */
.ohey-navbar {
  background-color: hsla(0, 0%, 4%, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid hsla(0, 0%, 18%, 0.5);
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 1040;
  transition: all 0.3s ease;
}

.ohey-navbar.navbar-scrolled {
  padding: 10px 0;
  background-color: hsla(0, 0%, 3%, 0.98);
  border-bottom-color: hsla(12, 35%, 62%, 0.25);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
}

.navbar-brand {
  display: flex;
  flex-direction: column;
  padding: 0;
  margin-right: 2rem;
}

.brand-heading {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: hsl(var(--foreground));
  line-height: 1.1;
}

.brand-subheading {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: hsl(var(--primary));
  margin-top: 3px;
}

.ohey-nav-link {
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: hsl(var(--foreground)) !important;
  padding: 8px 16px !important;
  transition: color 0.25s ease;
}

.ohey-nav-link:hover, .ohey-nav-link.active {
  color: hsl(var(--primary)) !important;
}

.nav-cta-btn {
  padding: 0.55rem 1.4rem !important;
  font-size: 0.85rem !important;
}

.navbar-toggler {
  border: 1px solid hsla(0, 0%, 25%, 0.8);
  color: hsl(var(--foreground));
  padding: 8px 12px;
  border-radius: 8px;
}

.navbar-toggler:focus {
  outline: none;
  box-shadow: 0 0 0 2px hsl(var(--primary));
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.ohey-hero-section {
  position: relative;
  padding: 90px 0 100px;
  background-color: hsl(var(--background));
  overflow: hidden;
}

.hero-ambient-glow {
  position: absolute;
  top: -15%;
  left: 30%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, hsla(12, 35%, 62%, 0.16) 0%, hsla(0, 45%, 35%, 0.08) 50%, transparent 70%);
  filter: blur(80px);
  pointer-events: none;
  z-index: 1;
}

.hero-pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  color: hsl(var(--foreground));
  background: hsla(12, 35%, 62%, 0.1);
  border: 1px solid hsla(12, 35%, 62%, 0.35);
  border-radius: var(--radius-full);
  padding: 6px 16px;
}

.pill-sparkle {
  color: hsl(var(--primary));
  font-size: 0.9rem;
}

.hero-display-title {
  font-family: var(--font-display);
  font-size: 3.6rem;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: hsl(var(--foreground));
  margin: 18px 0 22px;
}

@media (max-width: 992px) {
  .hero-display-title {
    font-size: 2.8rem;
  }
}

@media (max-width: 576px) {
  .hero-display-title {
    font-size: 2.25rem;
  }
}

.hero-lead-description {
  font-size: 1.12rem;
  line-height: 1.8;
  color: hsl(var(--muted-foreground));
  margin-bottom: 32px;
  max-width: 560px;
}

.hero-feature-ribbon {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
}

.ribbon-item {
  font-size: 0.88rem;
  font-weight: 500;
  color: hsl(var(--foreground));
  display: flex;
  align-items: center;
}

/* Hero Portrait Card with User Image */
.hero-portrait-card {
  overflow: hidden;
  max-width: 440px;
  margin: 0 auto;
  border-radius: 1.25rem;
  background-color: hsla(0, 0%, 8%, 0.9);
}

.portrait-viewport {
  overflow: hidden;
  background-color: #000;
}

.portrait-viewport img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  object-position: center 25%;
  transition: transform 0.6s ease;
}

.hero-portrait-card:hover .portrait-viewport img {
  transform: scale(1.03);
}

.portrait-caption {
  padding: 20px 24px;
  text-align: left;
  border-top: 1px solid hsla(0, 0%, 18%, 0.6);
}

.caption-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: hsl(var(--foreground));
  margin-bottom: 4px;
}

.caption-meta {
  font-size: 0.8rem;
  color: hsl(var(--muted-foreground));
  margin-bottom: 0;
}

/* ==========================================================================
   GTA Coverage Ribbon
   ========================================================================== */
.ohey-service-bar {
  background-color: hsl(0, 0%, 3%);
  border-top: 1px solid hsla(0, 0%, 16%, 0.6);
  border-bottom: 1px solid hsla(0, 0%, 16%, 0.6);
}

.service-bar-title {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: hsl(var(--foreground));
  text-transform: uppercase;
}

.ohey-city-pill {
  font-size: 0.78rem;
  font-weight: 500;
  color: hsl(var(--muted-foreground));
  background: hsla(0, 0%, 9%, 0.8);
  border: 1px solid hsla(0, 0%, 18%, 0.6);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  margin: 3px 5px;
  display: inline-block;
  transition: all 0.2s ease;
}

.ohey-city-pill:hover {
  color: hsl(var(--foreground));
  border-color: hsla(12, 35%, 62%, 0.4);
}

/* ==========================================================================
   The Booth Experience (Features)
   ========================================================================== */
.booth-showcase-image img {
  width: 100%;
  height: 360px;
  object-fit: cover;
}

.feature-tile-box {
  border-radius: 0.9rem;
}

.tile-icon-bubble {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: hsla(12, 35%, 62%, 0.12);
  border: 1px solid hsla(12, 35%, 62%, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: hsl(var(--primary));
  font-size: 1.15rem;
}

/* ==========================================================================
   Packages & Pricing Section (3-Column Tier)
   ========================================================================== */
.ohey-pricing-card {
  display: flex;
  flex-direction: column;
  border-radius: 1.15rem;
  position: relative;
}

.tier-pill {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: hsl(var(--muted-foreground));
  background: hsla(0, 0%, 15%, 0.5);
  border: 1px solid hsla(0, 0%, 25%, 0.6);
  border-radius: var(--radius-full);
  padding: 4px 12px;
  margin-bottom: 12px;
}

.tier-pill.pill-rose {
  color: hsl(var(--primary));
  background: hsla(12, 35%, 62%, 0.12);
  border-color: hsla(12, 35%, 62%, 0.4);
}

.tier-name {
  font-size: 1.7rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: hsl(var(--foreground));
}

.tier-ideal {
  font-size: 0.85rem;
  margin-bottom: 12px;
}

.tier-rate-wrap {
  display: flex;
  align-items: baseline;
}

.rate-currency {
  font-size: 1.5rem;
  font-weight: 600;
  color: hsl(var(--foreground));
  margin-right: 2px;
}

.rate-amount {
  font-size: 3.4rem;
  font-weight: 700;
  line-height: 1;
  color: hsl(var(--foreground));
}

.rate-span {
  font-size: 0.95rem;
  color: hsl(var(--muted-foreground));
  margin-left: 8px;
}

.tier-checklist {
  list-style: none;
  padding: 0;
  margin: 16px 0;
}

.tier-checklist li {
  font-size: 0.88rem;
  color: hsl(var(--foreground));
  margin-bottom: 11px;
  display: flex;
  align-items: flex-start;
  line-height: 1.5;
}

.tier-checklist li i {
  margin-top: 3px;
}

/* Featured Card Glow */
.featured-glow-card {
  border: 2px solid hsla(12, 35%, 62%, 0.7) !important;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6), var(--shadow-glow-sm) !important;
  background: linear-gradient(180deg, hsla(12, 35%, 62%, 0.08) 0%, hsla(0, 0%, 7%, 0.92) 20%);
}

.featured-banner-tag {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-rose);
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  padding: 4px 18px;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
  white-space: nowrap;
}

/* ==========================================================================
   2. Modern Gallery Grid with Grounded Static Titles (STRICT: NO FLOATING)
   ========================================================================== */
.gallery-item-box {
  overflow: hidden;
  border-radius: 1rem;
  background-color: hsla(0, 0%, 7%, 0.85);
  display: flex;
  flex-direction: column;
}

.gallery-photo-frame {
  position: relative;
  overflow: hidden;
  background-color: #000;
  height: 320px;
}

.gallery-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-item-box:hover .gallery-photo-frame img {
  transform: scale(1.04);
}

.photo-expand-badge {
  position: absolute;
  bottom: 14px;
  right: 14px;
  background: hsla(0, 0%, 0%, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: hsl(var(--foreground));
  border: 1px solid hsla(0, 0%, 30%, 0.5);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 5px 12px;
  border-radius: var(--radius-full);
  transition: all 0.3s ease;
  pointer-events: none;
}

.gallery-item-box:hover .photo-expand-badge {
  background: var(--gradient-rose);
  border-color: transparent;
  color: #ffffff;
}

/* Grounded, Static Caption Container firmly beneath photo */
.gallery-caption-static {
  position: static !important;
  float: none !important;
  background-color: hsla(0, 0%, 7%, 0.95);
  border-top: 1px solid hsla(0, 0%, 18%, 0.6);
  flex-grow: 1;
}

.gallery-kicker-tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: hsl(var(--primary));
  margin-bottom: 6px;
}

/* ==========================================================================
   Reviews / Testimonials Section
   ========================================================================== */
.ohey-review-card {
  display: flex;
  flex-direction: column;
  border-radius: 1rem;
}

.review-stars-rose {
  color: hsl(var(--primary));
  letter-spacing: 3px;
  font-size: 1.15rem;
}

.review-quote-text {
  font-family: var(--font-display);
  font-size: 1.08rem;
  line-height: 1.7;
  color: hsl(var(--foreground));
  font-style: italic;
  margin: 0;
  padding: 0;
  border: none;
}

.review-client-info strong {
  font-family: var(--font-sans);
  font-size: 0.92rem;
  letter-spacing: 0.02em;
}

/* ==========================================================================
   FAQ Section
   ========================================================================== */
.ohey-faq-stack .glass-card {
  border-radius: 0.85rem;
  transition: border-color 0.3s ease;
}

.ohey-faq-stack .glass-card:hover {
  border-color: hsla(12, 35%, 62%, 0.4);
}

/* ==========================================================================
   Netlify Contact Form
   ========================================================================== */
.ohey-input-label {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: hsl(var(--foreground));
  margin-bottom: 6px;
}

.ohey-form-input {
  width: 100%;
  background-color: hsla(0, 0%, 10%, 0.85);
  border: 1px solid hsla(0, 0%, 22%, 0.8);
  border-radius: var(--radius-sm);
  color: hsl(var(--foreground));
  font-family: var(--font-sans);
  font-size: 0.95rem;
  padding: 0.75rem 1rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.ohey-form-input:focus {
  background-color: hsla(0, 0%, 12%, 0.95);
  border-color: hsl(var(--primary));
  box-shadow: 0 0 0 3px hsla(12, 35%, 62%, 0.25);
  outline: none;
  color: hsl(var(--foreground));
}

.ohey-form-input::placeholder {
  color: hsla(25, 20%, 70%, 0.5);
}

.ohey-select {
  height: 48px;
  cursor: pointer;
}

.ohey-select option {
  background-color: hsl(0, 0%, 10%);
  color: hsl(var(--foreground));
  padding: 8px;
}

.ohey-alert-success {
  background: hsla(12, 35%, 62%, 0.12);
  border: 1px solid hsla(12, 35%, 62%, 0.45);
  color: hsl(var(--foreground));
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  font-weight: 500;
}

.direct-contact-item {
  color: hsl(var(--foreground));
  font-weight: 500;
  font-size: 0.92rem;
  transition: color 0.2s ease;
}

.direct-contact-item:hover {
  color: hsl(var(--primary));
}

/* ==========================================================================
   Footer
   ========================================================================== */
.ohey-footer {
  border-top: 1px solid hsla(0, 0%, 16%, 0.6);
  padding: 40px 0 30px;
  background-color: hsl(0, 0%, 2%);
}

.footer-brand {
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: hsl(var(--foreground));
  margin-bottom: 6px;
}

.footer-tagline {
  letter-spacing: 0.05em;
}

/* ==========================================================================
   Magnific Popup Custom Luxury Dark Styling
   ========================================================================== */
.mfp-bg {
  background: hsla(0, 0%, 4%, 0.94) !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
}

.mfp-image-holder .mfp-content {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8), var(--shadow-glow);
}

.mfp-title {
  font-family: var(--font-display) !important;
  color: hsl(var(--foreground)) !important;
  font-size: 1.05rem !important;
  padding-top: 8px !important;
}

.mfp-counter {
  color: hsl(var(--primary)) !important;
  font-family: var(--font-sans) !important;
}
