﻿/* ==========================================================================
   CONTINENTAL BARBER KATOWICE - STYLESHEET
   Aesthetics: Soft Retro Industrial Brick, Emerald Green, Vintage Gold & Brass
   Address: ul. Panewnicka 52, 40-730 Katowice
   ========================================================================== */

/* --- CSS Variables & Design Tokens --- */
:root {
  /* Colors */
  --bg-main: #0d0f12;
  --bg-surface: #14171d;
  --bg-card: #1a1e27;
  --bg-card-hover: #222733;
  --bg-subtle: #11141a;

  /* Brick & Warm Accents */
  --brick-primary: #a73d23;
  --brick-light: #c54e32;
  --brick-dark: #6e2311;
  --brick-glow: rgba(197, 78, 50, 0.28);

  /* Emerald Heritage (inspired by salon lounge & cutting zone) */
  --emerald-dark: #0f261e;
  --emerald-main: #173d31;
  --emerald-light: #245746;
  --emerald-glow: rgba(36, 87, 70, 0.35);

  /* Vintage Gold & Brass */
  --gold-primary: #dfa14a;
  --gold-light: #f3c97d;
  --gold-dark: #b27a2b;
  --gold-glow: rgba(223, 161, 74, 0.3);
  --gold-border: rgba(223, 161, 74, 0.25);

  /* Typography Colors */
  --text-primary: #f8f4ed;
  --text-secondary: #c9c0b1;
  --text-muted: #8d8578;
  --text-dark: #121418;

  /* Borders & Shadows */
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-gold: rgba(223, 161, 74, 0.35);
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.35);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.45);
  --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.6);
  --shadow-gold: 0 8px 25px var(--gold-glow);

  /* Fonts */
  --font-display: 'Bebas Neue', sans-serif;
  --font-serif: 'DM Serif Display', serif;
  --font-heading: 'Cinzel', serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Layout */
  --container-max: 1240px;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-xl: 24px;
  --transition-fast: 0.2s ease;
  --transition-normal: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 85px;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  background-color: var(--bg-main);
  color: var(--text-secondary);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  overflow-x: hidden;
  position: relative;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Subtle background noise texture */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-image: radial-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 0);
  background-size: 24px 24px;
  pointer-events: none;
  z-index: 9999;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg-main);
}
::-webkit-scrollbar-thumb {
  background: var(--brick-dark);
  border-radius: 5px;
  border: 2px solid var(--bg-main);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--gold-dark);
}

/* --- Typography Utilities --- */
h1, h2, h3, h4, h5, h6 {
  color: var(--text-primary);
  font-weight: 700;
  line-height: 1.25;
}

h1, h2 {
  font-family: var(--font-heading);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

p {
  margin-bottom: 1rem;
}

p:last-child {
  margin-bottom: 0;
}

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

a:hover {
  color: #fff;
}

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

/* --- Container & Layout --- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

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

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

.text-gradient-gold {
  background: linear-gradient(135deg, #fff 10%, var(--gold-light) 60%, var(--gold-primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* --- Section Headers --- */
.section-header {
  margin-bottom: 3.5rem;
}

.section-tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.15em;
  color: var(--gold-primary);
  background: rgba(223, 161, 74, 0.1);
  border: 1px solid var(--gold-border);
  padding: 0.35rem 1.1rem;
  border-radius: 50px;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.section-title {
  font-size: clamp(2rem, 3.8vw, 2.85rem);
  color: var(--text-primary);
  margin-bottom: 1rem;
  font-family: var(--font-heading);
}

.section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 1.25rem 0 1.5rem;
  color: var(--gold-primary);
}

.divider-line {
  height: 1px;
  width: 60px;
  background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.7;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  padding: 0.85rem 1.6rem;
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: all var(--transition-normal);
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--brick-primary), var(--brick-light));
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 6px 18px var(--brick-glow);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--brick-light), #e05b3d);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(224, 91, 61, 0.45);
  color: #fff;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-primary);
  border: 1px solid var(--border-subtle);
  backdrop-filter: blur(8px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.25);
  color: #fff;
  transform: translateY(-2px);
}

.btn-outline-gold {
  background: transparent;
  color: var(--gold-light);
  border: 1px solid var(--gold-border);
}

.btn-outline-gold:hover {
  background: var(--gold-primary);
  color: var(--text-dark);
  border-color: var(--gold-primary);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px var(--gold-glow);
}

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

.btn-xl {
  padding: 1.15rem 2.2rem;
  font-size: 1.1rem;
  border-radius: var(--radius-lg);
}

.btn-sm {
  padding: 0.55rem 1.1rem;
  font-size: 0.85rem;
  border-radius: var(--radius-sm);
}

.btn-block {
  width: 100%;
}

.btn-glow {
  position: relative;
  overflow: hidden;
}

.btn-glow::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(60deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transform: rotate(30deg);
  animation: shine-sweep 4s infinite;
}

@keyframes shine-sweep {
  0% { transform: translate(-100%, -100%) rotate(30deg); }
  30%, 100% { transform: translate(100%, 100%) rotate(30deg); }
}

.btn-booksy-pulse {
  animation: subtle-pulse 3s infinite;
}

@keyframes subtle-pulse {
  0%, 100% { box-shadow: 0 4px 14px var(--brick-glow); }
  50% { box-shadow: 0 6px 24px rgba(223, 161, 74, 0.45); }
}

/* ==========================================================================
   TOP BAR
   ========================================================================== */
.top-bar {
  background: #080a0c;
  border-bottom: 1px solid var(--border-subtle);
  font-size: 0.84rem;
  padding: 0.55rem 0;
  color: var(--text-secondary);
}

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

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

.top-bar-item i {
  color: var(--gold-primary);
}

.top-bar-phone {
  color: var(--text-primary);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: color var(--transition-fast);
}

.top-bar-phone:hover {
  color: var(--gold-light);
}

.top-bar-phone i {
  color: var(--gold-primary);
}

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

.top-social-link {
  color: var(--text-muted);
  width: 26px;
  height: 26px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  transition: all var(--transition-fast);
}

.top-social-link:hover {
  color: #fff;
  background: #1877f2;
  border-color: #1877f2;
  transform: translateY(-1px);
}

.rating-badge {
  background: rgba(223, 161, 74, 0.18);
  color: var(--gold-light);
  border: 1px solid var(--gold-border);
  padding: 0.15rem 0.6rem;
  border-radius: 30px;
  font-size: 0.8rem;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.top-booksy-link {
  color: var(--gold-light);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.top-booksy-link:hover {
  color: #fff;
  text-decoration: underline;
}

/* ==========================================================================
   MAIN HEADER & NAV
   ========================================================================== */
.main-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(13, 15, 18, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-subtle);
  transition: all var(--transition-normal);
}

.main-header.scrolled {
  background: rgba(10, 12, 15, 0.96);
  box-shadow: var(--shadow-md);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

/* Brand Logo */
.brand-logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
}

.logo-emblem {
  width: 46px;
  height: 46px;
  background: rgba(223, 161, 74, 0.08);
  border: 1px solid var(--gold-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
  box-shadow: 0 0 15px rgba(223, 161, 74, 0.2);
  transition: transform var(--transition-normal), border-color var(--transition-normal);
  flex-shrink: 0;
}

.brand-emblem-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-logo:hover .logo-emblem {
  transform: scale(1.08) rotate(5deg);
  border-color: var(--gold-primary);
  box-shadow: 0 0 20px rgba(223, 161, 74, 0.35);
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  color: #fff;
  line-height: 1;
}

.logo-subtitle {
  font-family: var(--font-display);
  font-size: 0.9rem;
  letter-spacing: 0.2em;
  color: var(--gold-primary);
  margin-top: 2px;
}

/* Desktop Nav */
.desktop-nav .nav-list {
  display: flex;
  list-style: none;
  gap: 1.4rem;
}

.nav-link {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-secondary);
  letter-spacing: 0.02em;
  position: relative;
  padding: 0.5rem 0;
  transition: color var(--transition-fast);
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--gold-primary);
  transition: width var(--transition-fast);
}

.nav-link:hover, .nav-link.active {
  color: #fff;
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.header-action {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Mobile Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 42px;
  height: 42px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 10px;
  cursor: pointer;
}

.menu-toggle .bar {
  width: 100%;
  height: 2px;
  background: var(--gold-light);
  border-radius: 2px;
  transition: all var(--transition-fast);
}

/* Mobile Drawer */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -320px;
  width: 300px;
  height: 100vh;
  background: var(--bg-surface);
  border-left: 1px solid var(--border-gold);
  z-index: 10000;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: right var(--transition-normal);
  box-shadow: var(--shadow-lg);
}

.mobile-drawer.open {
  right: 0;
}

.drawer-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
}

.drawer-backdrop.open {
  opacity: 1;
  visibility: visible;
}

.drawer-brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.drawer-logo-img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.drawer-close {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-subtle);
  color: var(--text-primary);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.1rem;
}

.mobile-nav-list {
  list-style: none;
  margin: 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-weight: 600;
  font-size: 0.95rem;
}

.mobile-nav-link i {
  color: var(--gold-primary);
  width: 20px;
}

.mobile-nav-link:hover {
  background: rgba(223, 161, 74, 0.1);
  border-color: var(--gold-border);
  color: var(--gold-light);
}

.drawer-contact-info {
  margin-top: 1rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  text-align: center;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding: 5rem 0 6rem;
  overflow: hidden;
  background: #0b0d10;
}

/* Dynamic ambient glow & brick overlay */
.hero-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 75% 30%, rgba(197, 78, 50, 0.15) 0%, transparent 60%),
              radial-gradient(circle at 20% 80%, rgba(23, 61, 49, 0.22) 0%, transparent 65%),
              linear-gradient(180deg, rgba(13, 15, 18, 0.4) 0%, #0d0f12 100%);
  pointer-events: none;
}

.hero-texture {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.06;
  background-image: repeating-linear-gradient(0deg, #b2432a, #b2432a 1px, transparent 1px, transparent 30px),
                    repeating-linear-gradient(90deg, #b2432a, #b2432a 1px, transparent 1px, transparent 60px);
  pointer-events: none;
}

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

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  background: rgba(223, 161, 74, 0.08);
  border: 1px solid var(--gold-border);
  padding: 0.45rem 1.2rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--brick-light);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--brick-light);
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.85); }
}

.badge-text {
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--gold-light);
  text-transform: uppercase;
}

.hero-heading {
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  font-family: var(--font-heading);
  line-height: 1.12;
  margin-bottom: 1.5rem;
  letter-spacing: 0.03em;
}

.hero-description {
  font-size: 1.15rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 2rem;
  max-width: 600px;
}

.hero-features-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 2.25rem;
  padding: 1.25rem;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
}

.feat-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.feat-icon {
  width: 40px;
  height: 40px;
  background: rgba(223, 161, 74, 0.12);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-primary);
  font-size: 1.1rem;
  flex-shrink: 0;
}

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

.feat-info strong {
  color: #fff;
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.2;
}

.feat-info span {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-subtle);
}

.trust-avatars {
  display: flex;
}

.avatar-tag {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 2px solid var(--bg-main);
  color: var(--gold-light);
  font-weight: 700;
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: -10px;
}

.avatar-tag:first-child {
  margin-left: 0;
  background: var(--brick-dark);
}

.avatar-tag:last-child {
  background: var(--emerald-main);
  color: #fff;
}

.trust-text {
  display: flex;
  flex-direction: column;
  font-size: 0.85rem;
}

.stars-row {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  color: var(--gold-primary);
  font-size: 0.85rem;
  margin-bottom: 2px;
}

.stars-row strong {
  color: #fff;
  margin-left: 0.35rem;
}

.trust-text span {
  color: var(--text-secondary);
  font-style: italic;
}

/* Hero Visual Card (Real Photo Frame) */
.hero-visual {
  position: relative;
}

.visual-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  padding: 10px;
  background: linear-gradient(145deg, rgba(223, 161, 74, 0.3), rgba(167, 61, 35, 0.2), rgba(255, 255, 255, 0.05));
  box-shadow: var(--shadow-lg), 0 0 35px rgba(167, 61, 35, 0.25);
}

.hero-main-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius-md);
  filter: contrast(105%) brightness(95%);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.visual-frame:hover .hero-main-img {
  transform: scale(1.02);
}

/* Ornate Frame Corners */
.frame-corner {
  position: absolute;
  width: 20px;
  height: 20px;
  border-color: var(--gold-primary);
  border-style: solid;
  pointer-events: none;
  z-index: 5;
}

.frame-corner.top-left {
  top: 18px;
  left: 18px;
  border-width: 3px 0 0 3px;
}

.frame-corner.top-right {
  top: 18px;
  right: 18px;
  border-width: 3px 3px 0 0;
}

.frame-corner.bottom-left {
  bottom: 18px;
  left: 18px;
  border-width: 0 0 3px 3px;
}

.frame-corner.bottom-right {
  bottom: 18px;
  right: 18px;
  border-width: 0 3px 3px 0;
}

.visual-floating-badge {
  position: absolute;
  background: rgba(13, 15, 18, 0.9);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  padding: 0.75rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  box-shadow: var(--shadow-md);
  z-index: 6;
}

.top-badge {
  top: 25px;
  left: -20px;
}

.top-badge i {
  color: var(--gold-primary);
  font-size: 1.2rem;
}

.top-badge strong {
  display: block;
  font-size: 0.88rem;
  color: #fff;
}

.top-badge span {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.bottom-badge {
  bottom: 25px;
  right: -15px;
}

.bottom-badge .badge-icon-wrap {
  width: 34px;
  height: 34px;
  background: var(--emerald-main);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.9rem;
}

.bottom-badge strong {
  display: block;
  font-size: 0.88rem;
  color: #fff;
}

.bottom-badge span {
  font-size: 0.75rem;
  color: var(--gold-light);
}

/* ==========================================================================
   STATS STRIP
   ========================================================================== */
.stats-strip {
  background: #090a0d;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  padding: 3rem 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.stat-card {
  text-align: center;
  padding: 1rem;
  border-right: 1px solid var(--border-subtle);
}

.stat-card:last-child {
  border-right: none;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 3.5rem;
  color: var(--text-primary);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-accent {
  color: var(--gold-primary);
  font-size: 2.2rem;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-weight: 500;
}

/* ==========================================================================
   ABOUT SECTION
   ========================================================================== */
.about-section {
  padding: 7rem 0;
  background: radial-gradient(circle at 10% 20%, rgba(197, 78, 50, 0.08) 0%, transparent 40%),
              var(--bg-main);
}

.about-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 4.5rem;
  align-items: center;
}

.about-media {
  position: relative;
}

.media-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-gold);
  box-shadow: var(--shadow-lg);
  position: relative;
}

.media-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-normal);
}

.media-card:hover img {
  transform: scale(1.03);
}

.primary-media {
  height: 380px;
  margin-bottom: 2rem;
}

.secondary-media {
  height: 240px;
  width: 75%;
  margin-left: auto;
  margin-top: -5rem;
  position: relative;
  z-index: 3;
  border: 4px solid var(--bg-main);
}

.media-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1rem;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.85) 0%, transparent 100%);
  color: var(--gold-light);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.story-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gold-primary);
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.about-subheading {
  font-size: 1.85rem;
  font-family: var(--font-heading);
  line-height: 1.3;
  margin-bottom: 1.5rem;
}

.features-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin: 2rem 0 2.5rem;
}

.feature-box {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.25rem;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  transition: border-color var(--transition-fast), transform var(--transition-fast);
}

.feature-box:hover {
  border-color: var(--gold-border);
  transform: translateX(4px);
}

.feature-icon-box {
  width: 44px;
  height: 44px;
  background: rgba(167, 61, 35, 0.15);
  border: 1px solid rgba(167, 61, 35, 0.35);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brick-light);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.feature-text-box h4 {
  font-size: 1.05rem;
  color: #fff;
  margin-bottom: 0.35rem;
}

.feature-text-box p {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 0;
}

/* ==========================================================================
   TEAM SECTION
   ========================================================================== */
.team-section {
  padding: 7rem 0;
  background: #090a0d;
  border-top: 1px solid var(--border-subtle);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 780px;
  margin: 0 auto;
}

.team-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  text-align: center;
  position: relative;
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.team-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold-border);
  box-shadow: var(--shadow-lg), 0 0 25px rgba(223, 161, 74, 0.15);
}

.featured-team-card {
  border-color: var(--gold-border);
  background: linear-gradient(180deg, rgba(23, 61, 49, 0.3) 0%, var(--bg-surface) 100%);
}

.popular-ribbon {
  position: absolute;
  top: 18px;
  right: 18px;
  background: var(--gold-primary);
  color: var(--text-dark);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  padding: 0.25rem 0.75rem;
  border-radius: 30px;
  text-transform: uppercase;
}

.team-avatar-frame {
  width: 90px;
  height: 90px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--bg-card), var(--bg-surface));
  border: 2px solid var(--gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 0 0 20px rgba(223, 161, 74, 0.2);
}

.avatar-badge-icon {
  position: absolute;
  bottom: -4px;
  right: -4px;
  width: 28px;
  height: 28px;
  background: var(--brick-primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  border: 2px solid var(--bg-surface);
}

.team-initials {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold-light);
}

.team-name {
  font-size: 1.5rem;
  margin-bottom: 0.3rem;
  color: #fff;
}

.team-role {
  display: inline-block;
  color: var(--gold-primary);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.25rem;
}

.team-bio {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.team-review-quote {
  background: rgba(0, 0, 0, 0.35);
  border: 1px dashed var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 0.85rem;
  margin-bottom: 1.75rem;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-align: left;
}

.team-review-quote i {
  color: var(--gold-primary);
  font-size: 1rem;
  flex-shrink: 0;
}

.team-review-quote span {
  font-size: 0.82rem;
  font-style: italic;
  color: var(--text-primary);
}

/* ==========================================================================
   PRICING & SERVICES SECTION
   ========================================================================== */
.pricing-section {
  padding: 7rem 0;
  background: radial-gradient(circle at 85% 80%, rgba(23, 61, 49, 0.15) 0%, transparent 50%),
              var(--bg-main);
}

.pricing-filters {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 3.5rem;
  flex-wrap: wrap;
}

.filter-btn {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.65rem 1.4rem;
  border-radius: 50px;
  cursor: pointer;
  transition: all var(--transition-fast);
}

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

.filter-btn.active {
  background: var(--gold-primary);
  color: var(--text-dark);
  border-color: var(--gold-primary);
  box-shadow: 0 4px 15px var(--gold-glow);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.75rem;
}

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

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

.featured-service {
  border-color: var(--gold-border);
  background: linear-gradient(145deg, rgba(167, 61, 35, 0.15) 0%, var(--bg-surface) 100%);
  grid-column: span 2;
}

.service-badge-popular {
  position: absolute;
  top: 15px;
  right: 20px;
  background: var(--brick-primary);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  padding: 0.2rem 0.7rem;
  border-radius: 20px;
  text-transform: uppercase;
}

.service-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 1rem;
}

.service-title {
  font-size: 1.25rem;
  color: #fff;
  font-family: var(--font-heading);
  line-height: 1.3;
  margin-bottom: 0.35rem;
}

.service-duration {
  font-size: 0.82rem;
  color: var(--gold-primary);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.service-price {
  text-align: right;
  flex-shrink: 0;
}

.price-val {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--gold-light);
  line-height: 1;
}

.price-curr {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 700;
  margin-left: 2px;
}

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

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

.service-perk {
  font-size: 0.82rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.service-perk i {
  color: var(--emerald-light);
}

/* Payment Methods Strip */
.payment-methods-strip {
  margin-top: 3rem;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.payment-title {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-primary);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.payment-title i {
  color: var(--gold-primary);
}

.payment-badges {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.payment-badge {
  background: rgba(223, 161, 74, 0.08);
  border: 1px solid var(--gold-border);
  color: var(--gold-light);
  padding: 0.35rem 0.85rem;
  border-radius: 20px;
  font-size: 0.82rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.payment-badge i {
  font-size: 0.85rem;
}

/* Callout Box */
.pricing-booksy-callout {
  margin-top: 2rem;
  background: linear-gradient(135deg, var(--emerald-dark), var(--bg-card));
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.5rem;
  box-shadow: var(--shadow-lg);
}

.callout-icon {
  width: 65px;
  height: 65px;
  background: rgba(223, 161, 74, 0.15);
  border: 1px solid var(--gold-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  font-size: 1.8rem;
  flex-shrink: 0;
}

.callout-text h3 {
  font-size: 1.35rem;
  margin-bottom: 0.5rem;
  color: #fff;
  font-family: var(--font-heading);
}

.callout-text p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-bottom: 0;
}

.callout-btn {
  flex-shrink: 0;
}

/* ==========================================================================
   GALLERY SECTION (AUTHENTIC PHOTOS)
   ========================================================================== */
.gallery-section {
  padding: 7rem 0;
  background: #080a0d;
  border-top: 1px solid var(--border-subtle);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.75rem;
}

.gallery-item {
  position: relative;
  height: 340px;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-md);
}

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

.gallery-hover-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(13, 15, 18, 0.75);
  backdrop-filter: blur(4px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  opacity: 0;
  transition: opacity var(--transition-normal);
}

.gallery-hover-overlay i {
  font-size: 2.2rem;
  color: var(--gold-light);
  transform: scale(0.8);
  transition: transform var(--transition-normal);
}

.gallery-hover-overlay span {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.05em;
}

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

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

.gallery-item:hover .gallery-hover-overlay i {
  transform: scale(1);
}

/* Lightbox Modal */
.lightbox-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 100000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
}

.lightbox-modal.open {
  opacity: 1;
  visibility: visible;
}

.lightbox-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(10px);
}

.lightbox-content-box {
  position: relative;
  max-width: 90vw;
  max-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.lightbox-img-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

#lightboxImg {
  max-width: 85vw;
  max-height: 75vh;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-gold);
  box-shadow: var(--shadow-lg);
  object-fit: contain;
}

.lightbox-caption {
  margin-top: 1rem;
  color: var(--text-primary);
  font-size: 1rem;
  font-family: var(--font-heading);
  text-align: center;
  letter-spacing: 0.04em;
}

.lightbox-close {
  position: absolute;
  top: -45px;
  right: 0;
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  transition: color var(--transition-fast);
}

.lightbox-close:hover {
  color: var(--brick-light);
}

.lightbox-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid var(--border-subtle);
  color: #fff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.lightbox-nav-btn:hover {
  background: var(--gold-primary);
  color: var(--text-dark);
}

.prev-btn {
  left: -70px;
}

.next-btn {
  right: -70px;
}

/* ==========================================================================
   REVIEWS & TESTIMONIALS SECTION
   ========================================================================== */
.reviews-section {
  padding: 7rem 0;
  background: radial-gradient(circle at 15% 30%, rgba(197, 78, 50, 0.08) 0%, transparent 50%),
              var(--bg-main);
}

.reviews-summary-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 3rem;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 5rem;
  box-shadow: var(--shadow-lg);
}

.summary-left {
  text-align: center;
  border-right: 1px solid var(--border-subtle);
  padding-right: 2rem;
}

.big-score {
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--text-primary);
  line-height: 1;
}

.stars-gold {
  color: var(--gold-primary);
  font-size: 1.3rem;
  margin: 0.5rem 0;
  display: flex;
  justify-content: center;
  gap: 0.3rem;
}

.summary-count {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-bottom: 0.75rem;
}

.verified-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  color: var(--emerald-light);
  font-weight: 600;
}

.summary-middle {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  border-right: 1px solid var(--border-subtle);
  padding-right: 2rem;
}

.score-bar-row {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-size: 0.85rem;
}

.bar-label {
  width: 70px;
  color: var(--text-muted);
}

.bar-track {
  flex-grow: 1;
  height: 8px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 4px;
  overflow: hidden;
}

.bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
  border-radius: 4px;
}

.bar-val {
  width: 35px;
  text-align: right;
  color: var(--text-primary);
  font-weight: 600;
}

.summary-right h3 {
  font-size: 1.3rem;
  margin-bottom: 0.6rem;
  font-family: var(--font-heading);
}

.summary-right p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

.reviews-sub-header {
  margin-bottom: 2.5rem;
}

.review-filters {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.review-filter-btn {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.88rem;
  padding: 0.55rem 1.25rem;
  border-radius: 30px;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.review-filter-btn:hover {
  border-color: var(--gold-border);
  color: #fff;
}

.review-filter-btn.active {
  background: var(--brick-primary);
  color: #fff;
  border-color: var(--brick-primary);
  box-shadow: 0 4px 15px var(--brick-glow);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.review-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all var(--transition-normal);
}

.review-card:hover {
  transform: translateY(-5px);
  border-color: var(--gold-border);
  box-shadow: var(--shadow-md);
}

.featured-review {
  background: linear-gradient(160deg, rgba(223, 161, 74, 0.08) 0%, var(--bg-surface) 100%);
  border-color: var(--gold-border);
}

.review-card-header {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.author-avatar {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--brick-dark), var(--brick-primary));
  border: 1px solid var(--gold-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 800;
  font-size: 0.95rem;
  flex-shrink: 0;
}

.author-meta {
  flex-grow: 1;
}

.author-name {
  font-size: 1.05rem;
  color: #fff;
  line-height: 1.2;
}

.author-badge {
  font-size: 0.75rem;
  color: var(--gold-primary);
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.review-stars {
  color: var(--gold-primary);
  font-size: 0.8rem;
  display: flex;
  gap: 2px;
}

.review-body {
  font-size: 0.94rem;
  color: var(--text-primary);
  line-height: 1.65;
  font-style: normal;
  margin-bottom: 1.5rem;
}

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

.review-source {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--gold-light);
}

.reviews-bottom-cta {
  margin-top: 3.5rem;
}

/* ==========================================================================
   LOCATION & CONTACT SECTION
   ========================================================================== */
.location-section {
  padding: 7rem 0;
  background: #080a0d;
  border-top: 1px solid var(--border-subtle);
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.location-info-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  box-shadow: var(--shadow-md);
}

.info-block {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
}

.info-icon {
  width: 48px;
  height: 48px;
  background: rgba(223, 161, 74, 0.12);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-primary);
  font-size: 1.3rem;
  flex-shrink: 0;
}

.info-content {
  flex-grow: 1;
  min-width: 0;
}

.info-content h3 {
  font-size: 1.15rem;
  color: #fff;
  margin-bottom: 0.6rem;
  font-family: var(--font-heading);
  letter-spacing: 0.03em;
}

.info-content p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 0.5rem;
}

.address-bold {
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff !important;
  margin-bottom: 0.2rem !important;
}

.address-sub {
  color: var(--gold-light) !important;
  margin-bottom: 0.75rem !important;
}

.link-inline-gold {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--gold-light);
}

.link-inline-gold:hover {
  color: #fff;
  text-decoration: underline;
}

.hours-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  font-size: 0.92rem;
  width: 100%;
}

.hours-list li {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 1.5rem;
  padding-bottom: 0.45rem;
  border-bottom: 1px dashed var(--border-subtle);
}

.hours-list .day {
  color: var(--text-secondary);
  white-space: nowrap;
}

.hours-list .hours {
  color: #fff;
  font-weight: 700;
  text-align: right;
  white-space: nowrap;
  letter-spacing: 0.02em;
}

.hours-list li.is-today .day {
  color: #fff;
  font-weight: 700;
}

.hours-list li.is-today .hours {
  color: var(--gold-light);
}

.hours-list .today-badge {
  display: inline-block;
  color: var(--gold-primary);
  font-size: 0.72rem;
  font-weight: 700;
  margin-left: 6px;
  letter-spacing: 0.04em;
  vertical-align: middle;
  background: rgba(223, 161, 74, 0.12);
  border: 1px solid rgba(223, 161, 74, 0.35);
  padding: 1px 6px;
  border-radius: 4px;
}

.location-visual-column {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.storefront-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 250px;
  border: 1px solid var(--border-gold);
  box-shadow: var(--shadow-md);
}

.storefront-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.storefront-badge {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.9) 0%, transparent 100%);
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--gold-light);
  font-size: 0.88rem;
  font-weight: 600;
}

.map-embed-container {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-md);
  background: var(--bg-surface);
}

.map-embed-container iframe {
  filter: invert(90%) hue-rotate(180deg) contrast(90%);
}

.map-overlay-btn {
  position: absolute;
  bottom: 15px;
  right: 15px;
}

/* ==========================================================================
   FAQ SECTION
   ========================================================================== */
.faq-section {
  padding: 6rem 0 7rem;
  background: var(--bg-main);
}

.faq-accordion-wrap {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

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

.faq-item.active {
  border-color: var(--gold-border);
}

.faq-question {
  width: 100%;
  padding: 1.35rem 1.75rem;
  background: none;
  border: none;
  color: #fff;
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 700;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
}

.faq-icon {
  color: var(--gold-primary);
  transition: transform var(--transition-normal);
  font-size: 0.95rem;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 1.75rem;
}

.faq-item.active .faq-answer {
  max-height: 250px;
  padding: 0 1.75rem 1.5rem;
}

.faq-answer p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.65;
  margin-bottom: 0;
}

/* ==========================================================================
   BANNER BOOKSY CTA
   ========================================================================== */
.banner-cta-section {
  position: relative;
  padding: 6rem 0;
  background: #090a0d;
  overflow: hidden;
}

.banner-brick-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(167, 61, 35, 0.25) 0%, rgba(13, 15, 18, 0.95) 75%),
              url('../images/salon-brick-wall.jpg') center/cover no-repeat;
  filter: contrast(120%) brightness(50%);
  opacity: 0.45;
  pointer-events: none;
}

.banner-container {
  position: relative;
  z-index: 2;
  max-width: 780px;
}

.banner-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.15em;
  color: var(--gold-light);
  margin-bottom: 1rem;
}

.banner-title {
  font-size: clamp(2.2rem, 3.8vw, 3.2rem);
  font-family: var(--font-heading);
  line-height: 1.2;
  margin-bottom: 1.25rem;
}

.banner-subtitle {
  font-size: 1.15rem;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
}

.banner-btn-wrap {
  display: flex;
  justify-content: center;
}

/* ==========================================================================
   MAIN FOOTER
   ========================================================================== */
.main-footer {
  background: #060709;
  border-top: 1px solid var(--border-subtle);
  padding: 5rem 0 2rem;
  font-size: 0.92rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 1fr 1.1fr;
  gap: 3.5rem;
  margin-bottom: 4rem;
}

.brand-col .footer-logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.footer-logo-img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(223, 161, 74, 0.2));
}

.footer-about {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.footer-rating-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(223, 161, 74, 0.1);
  border: 1px solid var(--gold-border);
  color: var(--gold-light);
  padding: 0.4rem 1rem;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
}

.footer-socials {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.social-btn {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  font-size: 0.95rem;
  transition: all var(--transition-fast);
}

.social-btn:hover {
  background: var(--gold-primary);
  color: var(--text-dark);
  border-color: var(--gold-primary);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px var(--gold-glow);
}

.link-footer-phone, .font-phone {
  color: var(--gold-light);
  font-weight: 700;
  transition: color var(--transition-fast);
}

.link-footer-phone:hover, .font-phone:hover {
  color: #fff;
  text-decoration: underline;
}

.phone-subtext {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

.drawer-phone-btn {
  margin-bottom: 0.75rem;
  color: var(--gold-light);
  border-color: var(--gold-border);
}

.drawer-socials {
  margin-top: 0.75rem;
}

.drawer-socials a {
  color: var(--gold-light);
  font-size: 0.88rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.footer-heading {
  font-size: 1.1rem;
  font-family: var(--font-heading);
  color: #fff;
  margin-bottom: 1.5rem;
  letter-spacing: 0.05em;
}

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

.footer-links a {
  color: var(--text-secondary);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: color var(--transition-fast), transform var(--transition-fast);
}

.footer-links a i {
  font-size: 0.75rem;
  color: var(--gold-primary);
}

.footer-links a:hover {
  color: var(--gold-light);
  transform: translateX(4px);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  margin-bottom: 1rem;
  color: var(--text-secondary);
}

.footer-contact-item i {
  color: var(--gold-primary);
  margin-top: 4px;
}

.footer-btn-wrap {
  margin-top: 1.25rem;
}

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

/* ==========================================================================
   FLOATING BOTTOM BAR & BACK TO TOP
   ========================================================================== */
.floating-cta-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(13, 15, 18, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--border-gold);
  padding: 0.75rem 1.5rem;
  z-index: 999;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
  transform: translateY(100%);
  transition: transform var(--transition-normal);
}

.floating-cta-bar.visible {
  transform: translateY(0);
}

.floating-bar-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.floating-brand-info {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.floating-logo-tag {
  width: 36px;
  height: 36px;
  background: rgba(223, 161, 74, 0.1);
  border: 1px solid var(--gold-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3px;
  flex-shrink: 0;
}

.floating-logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.floating-text strong {
  display: block;
  font-size: 0.88rem;
  color: #fff;
  line-height: 1.2;
}

.floating-text span {
  font-size: 0.75rem;
  color: var(--gold-light);
}

.back-to-top {
  position: fixed;
  bottom: 80px;
  right: 25px;
  width: 44px;
  height: 44px;
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: 50%;
  color: var(--gold-light);
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-fast);
  z-index: 998;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--gold-primary);
  color: var(--text-dark);
  transform: translateY(-3px);
}

/* ==========================================================================
   RESPONSIVE DESIGN (MEDIA QUERIES)
   ========================================================================== */
@media (max-width: 1080px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .hero-visual {
    max-width: 600px;
    margin: 0 auto;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }

  .reviews-summary-card {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .summary-left, .summary-middle {
    border-right: none;
    border-bottom: 1px solid var(--border-subtle);
    padding-right: 0;
    padding-bottom: 2rem;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }
}

@media (max-width: 1040px) {
  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }
}

@media (max-width: 900px) {
  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .team-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .featured-service {
    grid-column: span 1;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
    max-width: 550px;
    margin: 0 auto;
  }

  .location-grid {
    grid-template-columns: 1fr;
  }

  .pricing-booksy-callout {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }

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

  .stat-card:nth-child(2) {
    border-right: none;
  }
}

@media (max-width: 640px) {
  .top-bar-content {
    flex-direction: column;
    gap: 0.35rem;
    text-align: center;
  }

  .top-bar-item.address-item,
  .top-bar-item.parking-item {
    display: none;
  }

  .header-content {
    height: 70px;
  }

  .hero-features-strip {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }

  .hero-cta-group {
    flex-direction: column;
    width: 100%;
  }

  .hero-cta-group .btn {
    width: 100%;
  }

  .hero-main-img {
    height: 340px;
  }

  .top-badge {
    left: 10px;
  }

  .bottom-badge {
    right: 10px;
  }

  .primary-media {
    height: 280px;
  }

  .secondary-media {
    height: 180px;
    margin-top: -3rem;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .stat-card {
    border-right: none;
    border-bottom: 1px solid var(--border-subtle);
    padding-bottom: 1.5rem;
  }

  .stat-card:last-child {
    border-bottom: none;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .prev-btn {
    left: 10px;
  }

  .next-btn {
    right: 10px;
  }
}

/* ==========================================================================
   PORTFOLIO SECTION
   ========================================================================== */
.portfolio-section {
  padding: 6rem 0;
  background: var(--bg-subtle);
  position: relative;
  overflow: hidden;
}

.portfolio-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 30% 40%, rgba(223, 161, 74, 0.06) 0%, transparent 60%),
              radial-gradient(circle at 70% 70%, rgba(197, 78, 50, 0.05) 0%, transparent 55%);
  pointer-events: none;
}

.portfolio-showcase {
  position: relative;
  z-index: 1;
}

.portfolio-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.portfolio-preview-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.portfolio-preview-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-primary), var(--brick-primary), var(--gold-primary));
  opacity: 0;
  transition: opacity var(--transition-normal);
}

.portfolio-preview-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--gold-border);
  transform: translateY(-6px);
  box-shadow: var(--shadow-md), 0 0 30px rgba(223, 161, 74, 0.08);
}

.portfolio-preview-card:hover::before {
  opacity: 1;
}

.portfolio-icon-wrap {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.25rem;
  background: linear-gradient(135deg, rgba(223, 161, 74, 0.12), rgba(197, 78, 50, 0.1));
  border: 1px solid var(--gold-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--gold-primary);
  transition: all var(--transition-normal);
}

.portfolio-preview-card:hover .portfolio-icon-wrap {
  background: linear-gradient(135deg, rgba(223, 161, 74, 0.25), rgba(197, 78, 50, 0.2));
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 0 20px var(--gold-glow);
}

.portfolio-preview-card h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

.portfolio-preview-card p {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* Portfolio CTA Callout */
.portfolio-booksy-cta {
  background: linear-gradient(135deg, var(--emerald-dark), var(--bg-card));
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  position: relative;
  overflow: hidden;
}

.portfolio-booksy-cta::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(223, 161, 74, 0.08), transparent 70%);
  pointer-events: none;
}

.portfolio-cta-content {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex: 1;
}

.portfolio-cta-icon {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, var(--brick-primary), var(--brick-light));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  color: #fff;
  flex-shrink: 0;
  box-shadow: 0 8px 20px var(--brick-glow);
}

.portfolio-cta-text h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.portfolio-cta-text p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.65;
  max-width: 520px;
}

/* Portfolio Responsive */
@media (max-width: 900px) {
  .portfolio-preview-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .portfolio-booksy-cta {
    flex-direction: column;
    text-align: center;
    padding: 2rem 1.5rem;
  }

  .portfolio-cta-content {
    flex-direction: column;
    text-align: center;
  }

  .portfolio-cta-text p {
    max-width: 100%;
  }
}

/* ==========================================================================
   LIVE STATUS PILL & QUICK COPY BUTTONS
   ========================================================================== */
.live-status-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.2rem 0.65rem;
  border-radius: 30px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-subtle);
  transition: all var(--transition-fast);
}

.live-status-pill .status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--text-muted);
}

.live-status-pill.status-open {
  background: rgba(46, 125, 50, 0.2);
  border-color: rgba(76, 175, 80, 0.4);
  color: #81c784;
}

.live-status-pill.status-open .status-dot {
  background: #4caf50;
  box-shadow: 0 0 8px #4caf50;
  animation: live-pulse 2s infinite;
}

.live-status-pill.status-closed {
  background: rgba(197, 78, 50, 0.15);
  border-color: rgba(197, 78, 50, 0.35);
  color: #ff8a80;
}

.live-status-pill.status-closed .status-dot {
  background: var(--brick-light);
}

@keyframes live-pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.6; }
}

.info-title-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.4rem;
}

.info-title-wrap h3 {
  margin-bottom: 0 !important;
}

.btn-copy-mini {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: rgba(223, 161, 74, 0.08);
  border: 1px solid var(--gold-border);
  color: var(--gold-light);
  font-size: 0.76rem;
  font-weight: 600;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.btn-copy-mini:hover {
  background: var(--gold-primary);
  color: var(--text-dark);
  transform: translateY(-1px);
  box-shadow: 0 3px 10px var(--gold-glow);
}

/* Footer Legal Buttons */
.footer-legal-link {
  background: none;
  border: none;
  padding: 0;
  color: var(--text-muted);
  font-size: inherit;
  font-family: inherit;
  cursor: pointer;
  transition: color var(--transition-fast);
  text-decoration: underline;
  text-underline-offset: 3px;
}

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

.meta-sep {
  margin: 0 0.45rem;
  color: rgba(255, 255, 255, 0.2);
}

/* ==========================================================================
   COOKIE CONSENT BANNER (RODO / GDPR)
   ========================================================================== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(13, 15, 18, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid var(--border-gold);
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.7);
  z-index: 10001;
  padding: 1.25rem 1.5rem;
  transform: translateY(110%);
  opacity: 0;
  visibility: hidden;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease, visibility 0.4s;
}

.cookie-banner.visible {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.cookie-banner-content {
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.cookie-text-wrap {
  flex: 1;
  min-width: 0;
}

.cookie-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gold-primary);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.cookie-badge i {
  font-size: 1.1rem;
}

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

.cookie-inline-link {
  background: none;
  border: none;
  padding: 0;
  color: var(--gold-light);
  font-weight: 600;
  font-size: inherit;
  font-family: inherit;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-inline-link:hover {
  color: #fff;
}

.cookie-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
  flex-wrap: wrap;
}

/* ==========================================================================
   CUSTOM MODALS (SETTINGS & PRIVACY POLICY)
   ========================================================================== */
.custom-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 10002;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.custom-modal.open {
  opacity: 1;
  visibility: visible;
}

.modal-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(5, 7, 10, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.modal-dialog {
  position: relative;
  width: 100%;
  max-width: 620px;
  background: var(--bg-surface);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg), 0 0 35px rgba(223, 161, 74, 0.15);
  display: flex;
  flex-direction: column;
  max-height: 88vh;
  z-index: 2;
  transform: translateY(20px) scale(0.97);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}

.custom-modal.open .modal-dialog {
  transform: translateY(0) scale(1);
}

.modal-dialog-lg {
  max-width: 780px;
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.75rem;
  border-bottom: 1px solid var(--border-subtle);
  background: rgba(255, 255, 255, 0.02);
}

.modal-title-wrap {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.modal-icon {
  color: var(--gold-primary);
  font-size: 1.25rem;
}

.modal-title-wrap h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: #fff;
  letter-spacing: 0.03em;
  margin: 0;
}

.modal-close-btn {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-subtle);
  color: var(--text-primary);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1rem;
  transition: all var(--transition-fast);
}

.modal-close-btn:hover {
  background: var(--brick-primary);
  color: #fff;
  border-color: var(--brick-light);
}

.modal-body {
  padding: 1.5rem 1.75rem;
  overflow-y: auto;
  font-size: 0.94rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

.modal-intro {
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.modal-footer {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.75rem;
  padding: 1.25rem 1.75rem;
  border-top: 1px solid var(--border-subtle);
  background: rgba(0, 0, 0, 0.25);
  flex-wrap: wrap;
}

/* Cookie Preference Items & Toggles */
.cookie-pref-group {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cookie-pref-item {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1.15rem 1.35rem;
  transition: border-color var(--transition-fast);
}

.cookie-pref-item:hover {
  border-color: var(--gold-border);
}

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

.cookie-pref-info {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.cookie-pref-info strong {
  font-size: 1rem;
  color: #fff;
}

.badge-required {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--gold-light);
  background: rgba(223, 161, 74, 0.15);
  border: 1px solid var(--gold-border);
  padding: 0.15rem 0.5rem;
  border-radius: 20px;
  text-transform: uppercase;
}

.badge-optional {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  padding: 0.15rem 0.5rem;
  border-radius: 20px;
}

.cookie-pref-desc {
  font-size: 0.86rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin: 0;
}

/* Toggle Switch */
.toggle-switch {
  position: relative;
  display: inline-block;
  width: 48px;
  height: 26px;
  flex-shrink: 0;
}

.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle-switch .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.15);
  border: 1px solid var(--border-subtle);
  border-radius: 30px;
  transition: all 0.3s ease;
}

.toggle-switch .slider::before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background-color: #fff;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.toggle-switch input:checked + .slider {
  background-color: var(--brick-primary);
  border-color: var(--brick-light);
}

.toggle-switch input:checked + .slider::before {
  transform: translateX(22px);
  background-color: #fff;
}

.toggle-switch.disabled {
  opacity: 0.75;
  cursor: not-allowed;
}

.toggle-switch.disabled .slider {
  cursor: not-allowed;
  background-color: rgba(223, 161, 74, 0.3);
  border-color: var(--gold-border);
}

.toggle-switch.disabled .slider::before {
  background-color: var(--gold-light);
}

/* Policy Content Formatting */
.policy-content h4 {
  color: var(--gold-light);
  font-family: var(--font-heading);
  font-size: 1.05rem;
  margin: 1.4rem 0 0.5rem;
  letter-spacing: 0.02em;
}

.policy-content h4:first-child {
  margin-top: 0;
}

.policy-content p {
  margin-bottom: 0.85rem;
}

.policy-content ul {
  padding-left: 1.4rem;
  margin-bottom: 1rem;
}

.policy-content li {
  margin-bottom: 0.35rem;
}

/* ==========================================================================
   TOAST NOTIFICATIONS
   ========================================================================== */
.toast-container {
  position: fixed;
  bottom: 90px;
  right: 25px;
  z-index: 10005;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  pointer-events: none;
}

.toast-item {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(13, 15, 18, 0.95);
  border: 1px solid var(--gold-border);
  color: #fff;
  padding: 0.85rem 1.35rem;
  border-radius: var(--radius-md);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.6), 0 0 15px var(--gold-glow);
  font-size: 0.92rem;
  font-weight: 600;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  pointer-events: auto;
  animation: toast-slide-in 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.toast-item.toast-fade-out {
  opacity: 0;
  transform: translateY(10px);
}

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

@keyframes toast-slide-in {
  from {
    transform: translateY(20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Responsive adjustments for Cookie Banner & Modals */
@media (max-width: 768px) {
  .cookie-banner-content {
    flex-direction: column;
    align-items: stretch;
    gap: 1.25rem;
  }

  .cookie-actions {
    justify-content: stretch;
  }

  .cookie-actions .btn {
    flex: 1 1 100%;
  }

  .modal-dialog {
    max-height: 94vh;
  }

  .modal-header, .modal-body, .modal-footer {
    padding: 1rem 1.25rem;
  }

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

  .toast-container {
    bottom: 80px;
    right: 15px;
    left: 15px;
  }

  .toast-item {
    width: 100%;
    justify-content: center;
  }
}
