/* ════════════════════════════════════════════════════════════════════════════
   VILLA MAMMA - FAQ STYLE
   Sciezka: /assets/css/faq-style.css
   Performance: Lighthouse 100/100 target
   Version: 1.0 - Unified with Partner Honorowy & Cennik 2026
   Updated: 2025-11-25
   ════════════════════════════════════════════════════════════════════════════ */

/* ═══════════════════════════════════════════════════════════════════════════
   1. CSS VARIABLES (Design Tokens) - UNIFIED
   ═══════════════════════════════════════════════════════════════════════════ */
:root {
  /* Tlo i powierzchnie */
  --vm-bg-primary: #020617;
  --vm-bg-surface: rgba(15, 23, 42, 0.95);
  --vm-bg-soft: rgba(15, 23, 42, 0.8);
  --vm-bg-card: rgba(10, 10, 20, 0.85);

  /* Tekst */
  --vm-text-primary: #f9fafb;
  --vm-text-secondary: rgba(249, 250, 251, 0.72);
  --vm-text-muted: rgba(148, 163, 184, 0.95);

  /* Kolory brandowe */
  --vm-primary: #6366f1;
  --vm-primary-light: #818cf8;
  --vm-secondary: #8b5cf6;
  --vm-secondary-light: #a78bfa;
  --vm-success: #10b981;
  --vm-success-light: #34d399;
  --vm-danger: #ef4444;
  --vm-danger-light: #f87171;
  --vm-warning-light: #fbbf24;
  --vm-black: #000;
  --vm-white: #fff;

  /* Gradient glowny (Villa Mamma) - UNIFIED 90deg */
  --vm-gradient-main: linear-gradient(
    90deg,
    #3b82f6 0%,
    #8b5cf6 50%,
    #ec4899 100%
  );

  /* Glow - identyczny z Partner Honorowy */
  --vm-glow-main: radial-gradient(
    circle at 20% -20%,
    rgba(59, 130, 246, 0.35) 0%,
    rgba(139, 92, 246, 0.2) 35%,
    transparent 70%
  );
  --vm-glow-primary: 0 0 40px rgba(99, 102, 241, 0.2), 0 0 20px rgba(99, 102, 241, 0.1);

  /* Shadows (2-layer for performance) */
  --vm-shadow-card:
    0 18px 45px rgba(15, 23, 42, 0.9),
    inset 0 0 0 1px rgba(148, 163, 184, 0.2);

  --vm-shadow-card-hover:
    0 24px 60px rgba(15, 23, 42, 0.95),
    inset 0 0 0 1px rgba(248, 250, 252, 0.18);

  /* Border */
  --vm-border: rgba(99, 102, 241, 0.15);

  /* Promienie - UNIFIED */
  --vm-radius-sm: 0.5rem;
  --vm-radius-md: 1.25rem;
  --vm-radius-lg: 1.75rem;
  --vm-radius-xl: 1.75rem;
  --vm-radius-pill: 999px;

  /* Spacing - UNIFIED */
  --vm-space-xs: 0.25rem;
  --vm-space-sm: 1rem;
  --vm-space-md: 1.5rem;
  --vm-space-lg: 2.25rem;
  --vm-space-xl: 3rem;

  /* Typografia */
  --vm-font-sans: system-ui, -apple-system, BlinkMacSystemFont,
    "SF Pro Text", "Segoe UI", sans-serif;
  --vm-font-size-h1: clamp(2.6rem, 4.6vw, 3.7rem);
  --vm-font-size-h2: clamp(2.1rem, 3.6vw, 2.8rem);
  --vm-font-size-h3: clamp(1.6rem, 2.4vw, 2.1rem);
  --vm-font-size-h4: clamp(1.25rem, 1.1rem + 0.75vw, 1.875rem);

  /* Timing */
  --vm-ease-standard: cubic-bezier(0.4, 0, 0.2, 1);
  --vm-duration-fast: 160ms;
  --vm-duration-normal: 240ms;
}

/* ═══════════════════════════════════════════════════════════════════════════
   2. RESET & BASE
   ═══════════════════════════════════════════════════════════════════════════ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
  font-size: 16px;
  scroll-behavior: smooth;
  background: var(--vm-bg-primary);
}

body {
  font-family: var(--vm-font-sans);
  line-height: 1.6;
  color: var(--vm-text-primary);
  min-height: 100vh;
  background:
    radial-gradient(circle at 0 -20%, rgba(59, 130, 246, 0.25), transparent 55%),
    var(--vm-bg-primary);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

/* ═══════════════════════════════════════════════════════════════════════════
   3. SKIP LINK (accessibility)
   ═══════════════════════════════════════════════════════════════════════════ */
.skip-link {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--vm-gradient-main);
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 0 0 8px 8px;
  font-weight: 600;
  z-index: 10000;
  transition: top 0.2s ease;
  text-decoration: none;
}

.skip-link:focus {
  top: 0;
  outline: 2px solid #fff;
  outline-offset: 2px;
}

/* ═══════════════════════════════════════════════════════════════════════════
   4. TOP BAR (kontakt)
   ═══════════════════════════════════════════════════════════════════════════ */
.topbar {
  background: linear-gradient(90deg, rgba(10, 10, 20, 0.98), rgba(20, 15, 35, 0.98));
  border-bottom: 1px solid rgba(138, 92, 246, 0.15);
  font-size: clamp(0.75rem, 1.2vw, 0.85rem);
  padding: clamp(0.4rem, 1vw, 0.6rem) 0;
}

.topbar__inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 3vw, 2rem);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: clamp(0.75rem, 2vw, 1.5rem);
}

.topbar__item {
  color: #cbd5e1;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: color 0.2s ease;
  white-space: nowrap;
}

.topbar__item:hover,
.topbar__item:focus {
  color: #fff;
}

.topbar__phone { color: #a5f3a3; }
.topbar__phone:hover { color: #4ade80; }

@media (max-width: 640px) {
  .topbar__address { display: none; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   5. STICKY HEADER
   ═══════════════════════════════════════════════════════════════════════════ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(10, 10, 20, 0.92);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border-bottom: 1px solid rgba(138, 92, 246, 0.2);
  padding: clamp(0.5rem, 1.5vw, 0.75rem) 0;
}

.header__inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 3vw, 2rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.header__logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.header__logo img {
  height: clamp(36px, 5vw, 48px);
  width: auto;
  display: block;
}

/* ═══════════════════════════════════════════════════════════════════════════
   6. MAIN NAVIGATION
   ═══════════════════════════════════════════════════════════════════════════ */
.main-nav {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: clamp(0.25rem, 1vw, 0.5rem);
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.5rem clamp(0.5rem, 1vw, 0.85rem);
  color: #e2e8f0;
  text-decoration: none;
  font-size: clamp(0.8rem, 1.1vw, 0.92rem);
  font-weight: 500;
  border-radius: 6px;
  background: transparent;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: color 0.2s, background 0.2s;
  font-family: inherit;
}

.nav-link:hover,
.nav-link:focus,
.nav-link[aria-expanded="true"] {
  color: #fff;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.15), rgba(138, 92, 246, 0.15));
}

/* Award link */
.nav-link--award {
  background: linear-gradient(135deg, rgba(234, 179, 8, 0.1), rgba(251, 191, 36, 0.15));
  border: 1px solid rgba(251, 191, 36, 0.3);
}

.nav-link--award:hover {
  background: linear-gradient(135deg, rgba(234, 179, 8, 0.2), rgba(251, 191, 36, 0.25));
  border-color: rgba(251, 191, 36, 0.5);
}

.award-badge {
  font-size: 1em;
}

/* Dropdown arrow */
.dropdown-arrow {
  font-size: 0.7em;
  transition: transform 0.2s ease;
}

.nav-link[aria-expanded="true"] .dropdown-arrow {
  transform: rotate(180deg);
}

/* CTA button */
.nav-cta {
  background: var(--vm-gradient-main) !important;
  color: #fff !important;
  padding: 0.6rem 1.25rem !important;
  border-radius: 8px !important;
  font-weight: 600 !important;
  box-shadow: 0 2px 8px rgba(138, 92, 246, 0.3);
  transition: transform 0.2s, box-shadow 0.2s, filter 0.2s;
}

.nav-cta:hover,
.nav-cta:focus {
  filter: brightness(1.1);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(138, 92, 246, 0.4);
}

/* ═══════════════════════════════════════════════════════════════════════════
   7. DROPDOWN MENU
   ═══════════════════════════════════════════════════════════════════════════ */
.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  min-width: 200px;
  background: rgba(15, 15, 30, 0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(138, 92, 246, 0.25);
  border-radius: 10px;
  padding: 0.5rem 0;
  list-style: none;
  margin: 0;
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(138, 92, 246, 0.1) inset;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
  z-index: 100;
}

.dropdown-menu::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 12px;
  height: 12px;
  background: rgba(15, 15, 30, 0.98);
  border-left: 1px solid rgba(138, 92, 246, 0.25);
  border-top: 1px solid rgba(138, 92, 246, 0.25);
}

.has-dropdown:hover .dropdown-menu,
.has-dropdown:focus-within .dropdown-menu,
.dropdown-menu.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-menu li {
  margin: 0;
}

.dropdown-menu a {
  display: block;
  padding: 0.65rem 1.25rem;
  color: #cbd5e1;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.15s, background 0.15s, padding-left 0.15s;
}

.dropdown-menu a:hover,
.dropdown-menu a:focus {
  color: #fff;
  background: linear-gradient(90deg, rgba(59, 130, 246, 0.15), transparent);
  padding-left: 1.5rem;
}

.dropdown-menu a[aria-current="page"] {
  color: var(--vm-primary-light);
  font-weight: 600;
}

/* ═══════════════════════════════════════════════════════════════════════════
   8. MOBILE TOGGLE (hamburger)
   ═══════════════════════════════════════════════════════════════════════════ */
.mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: 1px solid rgba(138, 92, 246, 0.3);
  border-radius: 8px;
  cursor: pointer;
  padding: 8px;
  transition: background 0.2s, border-color 0.2s;
}

.mobile-toggle:hover,
.mobile-toggle:focus {
  background: rgba(138, 92, 246, 0.1);
  border-color: rgba(138, 92, 246, 0.5);
}

.mobile-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #e2e8f0;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

/* Hamburger X animation */
.mobile-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.mobile-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.mobile-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ═══════════════════════════════════════════════════════════════════════════
   9. MOBILE NAVIGATION (<=900px)
   ═══════════════════════════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  .site-header {
    z-index: 9999 !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    background: rgba(10, 10, 20, 0.98) !important;
  }

  .mobile-toggle {
    display: flex !important;
    position: relative;
    z-index: 10001 !important;
  }

  .main-nav {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    background: rgba(10, 10, 20, 0.99) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 5rem 1.5rem 2rem !important;
    transform: translateX(100%) !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s;
    overflow-y: auto !important;
    z-index: 10000 !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
  }

  .main-nav.is-open {
    transform: translateX(0) !important;
    opacity: 1 !important;
    visibility: visible !important;
  }

  .nav-list {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 0.25rem !important;
    width: 100% !important;
  }

  .nav-item {
    border-bottom: 1px solid rgba(138, 92, 246, 0.1);
    width: 100% !important;
  }

  .nav-link {
    width: 100% !important;
    justify-content: space-between !important;
    padding: 1rem !important;
    font-size: 1.05rem !important;
    border-radius: 8px;
  }

  /* Dropdown on mobile */
  .dropdown-menu {
    position: static !important;
    transform: none !important;
    min-width: 100% !important;
    background: rgba(20, 20, 40, 0.5) !important;
    border: none !important;
    border-radius: 8px;
    box-shadow: none !important;
    padding: 0.5rem;
    margin-top: 0.5rem;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition: max-height 0.3s, opacity 0.3s, visibility 0.3s, padding 0.3s, margin 0.3s;
  }

  .dropdown-menu::before {
    display: none !important;
  }

  .dropdown-menu.is-open {
    max-height: 500px;
    opacity: 1;
    visibility: visible;
  }

  .dropdown-menu a {
    padding: 0.75rem 1rem;
    border-radius: 6px;
  }

  /* CTA at bottom */
  .nav-item--cta {
    margin-top: 1rem;
    border: none;
  }

  .nav-cta {
    display: block !important;
    text-align: center !important;
    padding: 1rem !important;
    font-size: 1.1rem !important;
  }
}

/* ═══════════════════════════════════════════════════════════════════════════
   10. BREADCRUMB
   ═══════════════════════════════════════════════════════════════════════════ */
.breadcrumb {
  background: linear-gradient(90deg, rgba(10, 10, 20, 0.6), rgba(15, 12, 25, 0.6));
  border-bottom: 1px solid rgba(138, 92, 246, 0.1);
  padding: clamp(0.5rem, 1vw, 0.75rem) 0;
  font-size: clamp(0.75rem, 1.1vw, 0.85rem);
}

.breadcrumb__list {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 3vw, 2rem);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
}

.breadcrumb__item {
  display: flex;
  align-items: center;
}

.breadcrumb__item:not(:last-child)::after {
  content: ">";
  margin-left: 0.5rem;
  color: rgba(148, 163, 184, 0.5);
  font-weight: 300;
}

.breadcrumb__link {
  color: #94a3b8;
  text-decoration: none;
  transition: color 0.2s;
}

.breadcrumb__link:hover,
.breadcrumb__link:focus {
  color: #fff;
}

.breadcrumb__link--active {
  color: #a78bfa;
  font-weight: 500;
}

@media (max-width: 480px) {
  .breadcrumb {
    display: none;
  }
}

/* ═══════════════════════════════════════════════════════════════════════════
   11. TYPOGRAPHY
   ═══════════════════════════════════════════════════════════════════════════ */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  letter-spacing: -0.03em;
}

h1 { font-size: var(--vm-font-size-h1); line-height: 1.02; }
h2 { font-size: var(--vm-font-size-h2); line-height: 1.08; }
h3 { font-size: var(--vm-font-size-h3); line-height: 1.1; }
h4 { font-size: var(--vm-font-size-h4); }

p {
  margin-bottom: 1rem;
  line-height: 1.7;
  color: var(--vm-text-secondary);
}

strong {
  color: var(--vm-text-primary);
  font-weight: 600;
}

a {
  color: var(--vm-primary-light);
  text-decoration: none;
  transition: color var(--vm-duration-fast) var(--vm-ease-standard);
}

a:hover {
  color: #a78bfa;
}

ul, ol {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

/* Gradient text - UNIFIED 90deg */
.gradient-text,
.section-title,
.vm-gradient-text {
  background-image: var(--vm-gradient-main);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  text-align: center;
  font-size: var(--vm-font-size-h2);
  margin-bottom: var(--vm-space-md);
}

@supports not (-webkit-background-clip: text) {
  .gradient-text,
  .section-title,
  .vm-gradient-text {
    background-image: none;
    color: #e5e7eb;
  }
}

/* Free/0 PLN styling (green) */
.is-free,
.vm-free {
  color: var(--vm-success) !important;
  font-weight: 700;
  text-shadow: 0 0 15px rgba(16, 185, 129, 0.3);
}

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

/* ═══════════════════════════════════════════════════════════════════════════
   12. CONTAINERS & SECTIONS
   ═══════════════════════════════════════════════════════════════════════════ */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 var(--vm-space-sm);
}

/* Section with glass/glow effect */
.section,
.vm-section {
  position: relative;
  border-radius: var(--vm-radius-lg);
  padding: var(--vm-space-lg);
  background:
    var(--vm-glow-main),
    var(--vm-bg-surface);
  box-shadow: var(--vm-shadow-card);
  margin-bottom: var(--vm-space-xl);
  contain: layout style;
}

/* Performance: content-visibility dla sekcji below-fold */
.section:not(.hero-faq),
.vm-section:not(.vm-hero) {
  content-visibility: auto;
  contain-intrinsic-size: auto 800px;
}

/* Section inside container needs padding adjustment */
.section > .container {
  padding: 0;
}

/* ═══════════════════════════════════════════════════════════════════════════
   13. HERO FAQ
   ═══════════════════════════════════════════════════════════════════════════ */
.hero-faq {
  position: relative;
  text-align: center;
  padding: clamp(3rem, 6vw, 5rem) 1rem;
  background: var(--vm-black);
  margin-bottom: var(--vm-space-lg);
}

.hero-faq__title {
  font-size: var(--vm-font-size-h1);
  font-weight: 800;
  margin-bottom: 1rem;
  line-height: 1.1;
}

.hero-faq__subtitle {
  font-size: clamp(1rem, 1rem + 0.5vw, 1.25rem);
  color: var(--vm-text-muted);
  max-width: 700px;
  margin: 0 auto;
}

/* ═══════════════════════════════════════════════════════════════════════════
   14. TOC FAQ (Table of Contents)
   ═══════════════════════════════════════════════════════════════════════════ */
.toc-faq {
  background: var(--vm-bg-soft);
  border: 1px solid var(--vm-border);
  border-radius: var(--vm-radius-lg);
  padding: var(--vm-space-md);
  margin-bottom: var(--vm-space-xl);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.toc-faq h2 {
  font-size: 1.25rem;
  margin-bottom: var(--vm-space-sm);
  text-align: center;
}

.toc-faq ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0.5rem;
}

.toc-faq li {
  margin: 0;
}

.toc-faq a {
  display: block;
  padding: 0.5rem 0.75rem;
  color: var(--vm-text-secondary);
  text-decoration: none;
  font-size: 0.9rem;
  border-radius: var(--vm-radius-sm);
  transition: color 0.2s, background 0.2s;
}

.toc-faq a:hover,
.toc-faq a:focus {
  color: var(--vm-text-primary);
  background: rgba(99, 102, 241, 0.1);
}

/* ═══════════════════════════════════════════════════════════════════════════
   15. FAQ SECTIONS
   ═══════════════════════════════════════════════════════════════════════════ */
.faq-section {
  margin-bottom: var(--vm-space-xl);
  scroll-margin-top: 100px;
}

.faq-section h2 {
  font-size: var(--vm-font-size-h3);
  margin-bottom: var(--vm-space-md);
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--vm-border);
  color: var(--vm-text-primary);
}

/* Wyroznienie sekcji kuchnia i obsluga */
#kuchnia h2,
#obsluga h2 {
  position: relative;
  padding-left: 1rem;
}

#kuchnia h2::before,
#obsluga h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--vm-gradient-main);
  border-radius: 2px;
}

/* ═══════════════════════════════════════════════════════════════════════════
   16. FAQ ITEMS
   ═══════════════════════════════════════════════════════════════════════════ */
.faq-item {
  margin-bottom: var(--vm-space-md);
  padding: var(--vm-space-md);
  background: var(--vm-bg-soft);
  border: 1px solid var(--vm-border);
  border-radius: var(--vm-radius-md);
  transition: border-color 0.2s;
}

.faq-item:hover {
  border-color: rgba(99, 102, 241, 0.35);
}

.faq-item h3 {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  color: var(--vm-text-primary);
}

.faq-item p {
  margin-bottom: 0.75rem;
  color: var(--vm-text-secondary);
}

.faq-item p:last-child {
  margin-bottom: 0;
}

/* Lists in FAQ items */
.faq-item ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

.faq-item li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
  color: var(--vm-text-secondary);
}

.faq-item li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--vm-success);
  font-weight: 700;
}

.faq-item li strong {
  color: var(--vm-text-primary);
}

/* ═══════════════════════════════════════════════════════════════════════════
   17. BUTTONS
   ═══════════════════════════════════════════════════════════════════════════ */
.btn,
.btn-primary,
.btn-outline,
.vm-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.7rem 1.4rem;
  border-radius: var(--vm-radius-pill);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid rgba(148, 163, 184, 0.7);
  transition: transform var(--vm-duration-fast) var(--vm-ease-standard);
}

.btn:hover,
.btn-primary:hover,
.btn-outline:hover,
.vm-button:hover {
  transform: translateY(-1px);
}

.btn-primary,
.vm-button {
  background-image: var(--vm-gradient-main);
  color: var(--vm-white);
  box-shadow: var(--vm-shadow-card);
}

.btn-outline,
.vm-button-secondary {
  background: rgba(15, 23, 42, 0.6);
  color: var(--vm-text-primary);
  border-color: rgba(148, 163, 184, 0.5);
}

.btn-outline:hover,
.vm-button-secondary:hover {
  background: rgba(59, 130, 246, 0.1);
  border-color: rgba(59, 130, 246, 0.5);
}

/* ═══════════════════════════════════════════════════════════════════════════
   18. LINKS
   ═══════════════════════════════════════════════════════════════════════════ */
.link-subtle {
  margin-top: var(--vm-space-sm);
  font-size: 0.9rem;
  color: var(--vm-text-muted);
}

.link-subtle a {
  color: var(--vm-primary-light);
  text-decoration: none;
  font-weight: 500;
}

.link-subtle a:hover {
  color: var(--vm-text-primary);
  text-decoration: underline;
}

/* ═══════════════════════════════════════════════════════════════════════════
   19. CTA FINAL
   ═══════════════════════════════════════════════════════════════════════════ */
.cta-final {
  text-align: center;
  padding: var(--vm-space-xl) var(--vm-space-md);
  background: linear-gradient(180deg, rgba(99, 102, 241, 0.05), transparent);
  border-radius: var(--vm-radius-lg);
  margin-top: var(--vm-space-xl);
}

.cta-final h2 {
  font-size: var(--vm-font-size-h3);
  margin-bottom: var(--vm-space-sm);
}

.cta-final p {
  max-width: 600px;
  margin: 0 auto var(--vm-space-md);
  color: var(--vm-text-muted);
}

.cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: var(--vm-space-sm);
  justify-content: center;
}

/* ═══════════════════════════════════════════════════════════════════════════
   20. FOOTER
   ═══════════════════════════════════════════════════════════════════════════ */
.footer,
.vm-footer {
  position: relative;
  margin-top: var(--vm-space-xl);
  padding: var(--vm-space-xl) 0 var(--vm-space-lg);
  background: linear-gradient(
    180deg,
    rgba(15, 23, 42, 0.3) 0%,
    rgba(15, 23, 42, 0.6) 100%
  );
  border-top: 1px solid rgba(148, 163, 184, 0.2);
  contain: layout style;
}

.vm-footer-shell {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 var(--vm-space-sm);
  text-align: center;
}

/* Brand + Tagline */
.vm-footer-brand {
  margin-bottom: var(--vm-space-lg);
  padding-bottom: var(--vm-space-lg);
  border-bottom: 1px solid rgba(148, 163, 184, 0.15);
}

.vm-footer-brand h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 0.75rem;
}

.vm-footer-tagline {
  max-width: 700px;
  margin: 0 auto;
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(249, 250, 251, 0.85);
}

/* Footer Nav */
.vm-footer-nav {
  display: flex !important;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 1.75rem;
  margin-bottom: var(--vm-space-lg);
  padding-bottom: var(--vm-space-lg);
  border-bottom: 1px solid rgba(148, 163, 184, 0.15);
}

.vm-footer-nav a {
  color: #94a3b8;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  transition: color var(--vm-duration-fast) var(--vm-ease-standard);
}

.vm-footer-nav a:hover {
  color: #f9fafb;
}

.vm-footer-nav a:focus {
  outline: 2px solid #3b82f6;
  outline-offset: 4px;
  border-radius: 4px;
}

/* Contact Grid */
.vm-footer-contact-grid {
  display: grid !important;
  grid-template-columns: 1fr 1fr;
  gap: var(--vm-space-xl);
  margin-bottom: var(--vm-space-lg);
  padding-bottom: var(--vm-space-lg);
  border-bottom: 1px solid rgba(148, 163, 184, 0.15);
  text-align: left;
}

/* Contact Info */
.vm-footer-contact-info h3 {
  font-size: 1.4rem;
  margin-bottom: 1.25rem;
}

.vm-footer-contact-info p {
  margin: 0.65rem 0;
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(249, 250, 251, 0.8);
}

.vm-footer-contact-info strong {
  color: #94a3b8;
  font-weight: 600;
}

.vm-footer-contact-info a {
  color: #60a5fa;
  text-decoration: none;
  font-weight: 500;
  transition: color var(--vm-duration-fast) var(--vm-ease-standard);
}

.vm-footer-contact-info a:hover {
  color: #93c5fd;
  text-decoration: underline;
}

/* Social Links */
.vm-footer-social h3 {
  font-size: 1.4rem;
  margin-bottom: 1.25rem;
}

.vm-footer-social-grid {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 1.25rem !important;
  width: 100%;
}

.vm-footer-social-link {
  display: flex !important;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 0.75rem;
  border-radius: var(--vm-radius-md);
  text-decoration: none;
  min-height: 90px;
  transition:
    background var(--vm-duration-normal) var(--vm-ease-standard),
    transform var(--vm-duration-fast) var(--vm-ease-standard);
}

.vm-footer-social-link:hover {
  background: rgba(59, 130, 246, 0.12);
  transform: translateY(-3px);
}

.vm-footer-social-link:focus {
  outline: 2px solid #3b82f6;
  outline-offset: 2px;
}

.vm-footer-social-icon {
  font-size: 2rem;
  display: block;
  line-height: 1;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.vm-footer-social-label {
  font-size: 0.75rem;
  color: #94a3b8;
  text-align: center;
  line-height: 1.3;
  font-weight: 500;
  transition: color var(--vm-duration-fast) var(--vm-ease-standard);
}

.vm-footer-social-link:hover .vm-footer-social-label {
  color: #f9fafb;
}

/* Maps Section */
.vm-footer-maps {
  margin-bottom: var(--vm-space-lg);
  padding-bottom: var(--vm-space-lg);
  border-bottom: 1px solid rgba(148, 163, 184, 0.15);
}

.vm-footer-maps h3 {
  font-size: 1.4rem;
  margin-bottom: 1.25rem;
}

.vm-footer-maps-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.25rem;
}

.vm-footer-map-link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--vm-radius-pill);
  border: 1px solid rgba(148, 163, 184, 0.4);
  background: rgba(15, 23, 42, 0.5);
  color: #94a3b8;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  transition:
    border-color var(--vm-duration-fast) var(--vm-ease-standard),
    background var(--vm-duration-fast) var(--vm-ease-standard),
    transform var(--vm-duration-fast) var(--vm-ease-standard),
    color var(--vm-duration-fast) var(--vm-ease-standard);
}

.vm-footer-map-link:hover {
  border-color: rgba(59, 130, 246, 0.7);
  background: rgba(59, 130, 246, 0.15);
  color: #f9fafb;
  transform: translateY(-2px);
}

.vm-footer-map-link:focus {
  outline: 2px solid #3b82f6;
  outline-offset: 4px;
}

/* Legal + Keywords */
.vm-footer-legal {
  text-align: center;
  padding-top: var(--vm-space-sm);
}

.vm-footer-copyright {
  font-size: 0.9rem;
  color: #94a3b8;
  margin-bottom: 0.75rem;
  font-weight: 500;
}

.vm-footer-keywords {
  font-size: 0.8rem;
  color: rgba(148, 163, 184, 0.8);
  line-height: 1.7;
}

.vm-footer-keywords::before,
.vm-footer-keywords::after {
  content: '\2014';
  margin: 0 0.75rem;
  opacity: 0.6;
}

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

/* ═══════════════════════════════════════════════════════════════════════════
   22. FOCUS STYLES
   ═══════════════════════════════════════════════════════════════════════════ */
:focus-visible {
  outline: 2px solid var(--vm-primary-light);
  outline-offset: 4px;
}

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

@media (prefers-contrast: high) {
  .faq-item,
  .toc-faq {
    border: 2px solid var(--vm-text-primary);
  }
}

/* ═══════════════════════════════════════════════════════════════════════════
   24. MOBILE RESPONSIVE
   ═══════════════════════════════════════════════════════════════════════════ */
@media (min-width: 641px) and (max-width: 1023px) {
  .vm-footer-contact-grid {
    gap: var(--vm-space-lg);
  }

  .vm-footer-social-grid {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 1rem !important;
  }

  .vm-footer-social-link {
    min-height: 85px;
    padding: 0.85rem 0.6rem;
  }

  .vm-footer-social-icon {
    font-size: 1.8rem;
  }
}

@media (max-width: 640px) {
  .vm-footer {
    padding: var(--vm-space-lg) 0;
  }

  .vm-footer-brand {
    margin-bottom: var(--vm-space-md);
    padding-bottom: var(--vm-space-md);
  }

  .vm-footer-brand h2 {
    font-size: 1.6rem;
  }

  .vm-footer-tagline {
    font-size: 0.9rem;
  }

  .vm-footer-nav {
    gap: 0.75rem 1.25rem;
    margin-bottom: var(--vm-space-md);
    padding-bottom: var(--vm-space-md);
  }

  .vm-footer-nav a {
    font-size: 0.9rem;
  }

  .vm-footer-contact-grid {
    grid-template-columns: 1fr !important;
    gap: var(--vm-space-lg);
    margin-bottom: var(--vm-space-md);
    padding-bottom: var(--vm-space-md);
    text-align: center;
  }

  .vm-footer-contact-info h3,
  .vm-footer-social h3 {
    font-size: 1.2rem;
  }

  .vm-footer-social-grid {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 1rem !important;
  }

  .vm-footer-social-link {
    min-height: 80px;
    padding: 0.75rem 0.5rem;
  }

  .vm-footer-social-icon {
    font-size: 1.6rem;
  }

  .vm-footer-social-label {
    font-size: 0.7rem;
  }

  .vm-footer-maps {
    margin-bottom: var(--vm-space-md);
    padding-bottom: var(--vm-space-md);
  }

  .vm-footer-maps h3 {
    font-size: 1.2rem;
  }

  .vm-footer-maps-links {
    flex-direction: column;
    align-items: stretch;
  }

  .vm-footer-map-link {
    width: 100%;
    justify-content: center;
  }

  .vm-footer-copyright {
    font-size: 0.8rem;
  }

  .vm-footer-keywords {
    font-size: 0.75rem;
  }

  .vm-footer-keywords::before,
  .vm-footer-keywords::after {
    display: none;
  }

  .toc-faq ul {
    grid-template-columns: 1fr;
  }

  .cta-group {
    flex-direction: column;
  }
}

/* ═══════════════════════════════════════════════════════════════════════════
   25. PRINT STYLES
   ═══════════════════════════════════════════════════════════════════════════ */
@media print {
  body {
    background: #fff;
    color: #000;
  }

  .topbar,
  .site-header,
  .breadcrumb,
  .hero-faq,
  .skip-link,
  .toc-faq,
  .btn,
  .btn-primary,
  .btn-outline,
  .vm-footer,
  .cta-final {
    display: none;
  }

  .gradient-text,
  .section-title,
  .vm-gradient-text {
    background: none;
    color: #000;
    -webkit-text-fill-color: initial;
  }

  .faq-item,
  .faq-section {
    break-inside: avoid;
    border: 1px solid #000;
    background: #fff;
    box-shadow: none;
  }
}

/* ═══════════════════════════════════════════════════════════════════════════
   FAQ AUTHOR SECTION — Villa Mamma Design System
   Styl 1:1 z .manager-card (o-nas-style.css)
   ═══════════════════════════════════════════════════════════════════════════ */

/* ═══ SEKCJA WRAPPER ═══ */
.faq-author-section {
  margin-top: var(--vm-space-xl, 2.5rem);
  padding-top: var(--vm-space-xl, 2.5rem);
  border-top: 1px solid rgba(99, 102, 241, 0.15);
}

/* ═══ KARTA AUTORA (identyczna jak .manager-card) ═══ */
.faq-author-card {
  --border-width: 2px;
  --border-radius: 1.25rem;
  
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  background: rgba(15, 15, 25, 0.95);
  border-radius: var(--border-radius);
  text-align: center;
  
  /* Conic gradient border */
  border: var(--border-width) solid transparent;
  background-clip: padding-box;
  
  /* Glow effect */
  box-shadow:
    0 0 30px rgba(99, 102, 241, 0.3),
    0 0 60px rgba(139, 92, 246, 0.15),
    inset 0 1px 0 rgba(255,255,255,0.05);
}

.faq-author-card::before {
  content: "";
  position: absolute;
  inset: calc(var(--border-width) * -1);
  border-radius: var(--border-radius);
  padding: var(--border-width);
  background: conic-gradient(
    from 180deg,
    #6366f1 0deg,
    #8b5cf6 90deg,
    #6366f1 180deg,
    #8b5cf6 270deg,
    #6366f1 360deg
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: -1;
}

/* ═══ LABEL "Autor FAQ" ═══ */
.faq-author-label {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", sans-serif;
  font-size: clamp(0.7rem, 1.2vw, 0.8rem);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(148, 163, 184, 0.7);
  margin: 0 0 clamp(0.75rem, 2vw, 1rem) 0;
}

/* ═══ IMIĘ — ZŁOTY GRADIENT + KURSYWA (identyczne jak .manager-card__title) ═══ */
.faq-author-name {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", sans-serif;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  font-style: italic;
  line-height: 1.2;
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 50%, #d97706 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0 0 var(--vm-space-xs, 0.5rem) 0;
  filter: drop-shadow(0 0 12px rgba(251, 191, 36, 0.3));
}

/* ═══ STANOWISKO — ZŁOTY (identyczne jak .manager-card__role) ═══ */
.faq-author-role {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", sans-serif;
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  font-weight: 600;
  color: #fbbf24;
  margin: 0 0 var(--vm-space-md, 1rem) 0;
  padding-bottom: var(--vm-space-sm, 0.75rem);
  border-bottom: 1px solid rgba(251, 191, 36, 0.25);
}

/* ═══ BIO (identyczne jak .manager-card__desc) ═══ */
.faq-author-bio {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", sans-serif;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
  margin-bottom: var(--vm-space-sm, 0.75rem);
  text-align: center;
}

.faq-author-bio p {
  margin: 0 0 0.75em 0;
}

.faq-author-bio p:last-child {
  margin-bottom: 0;
}

.faq-author-bio strong {
  color: #f8fafc;
  font-weight: 600;
}

.faq-author-bio em,
.faq-author-bio cite {
  font-style: italic;
  color: #f8fafc;
}

.faq-author-doi-link {
  color: #60a5fa;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s ease;
}

.faq-author-doi-link:hover {
  text-decoration: underline;
  color: #93c5fd;
}

/* ═══ PRZYCISKI (identyczne jak .manager-card__btn) ═══ */
.faq-author-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--vm-space-md, 1rem);
  margin-top: var(--vm-space-lg, 1.5rem);
}

.faq-author-badge {
  --border-width: 2px;
  --border-radius: 0.75rem;
  
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  background: rgba(99, 102, 241, 0.1);
  border-radius: var(--border-radius);
  color: #a78bfa;
  text-decoration: none;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.3s ease;
  
  border: var(--border-width) solid transparent;
  background-clip: padding-box;
}

.faq-author-badge::before {
  content: "";
  position: absolute;
  inset: calc(var(--border-width) * -1);
  border-radius: var(--border-radius);
  padding: var(--border-width);
  background: conic-gradient(
    from 180deg,
    #6366f1 0deg,
    #8b5cf6 120deg,
    #6366f1 240deg,
    #8b5cf6 360deg
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: -1;
}

.faq-author-badge:hover {
  background: rgba(99, 102, 241, 0.2);
  color: #f8fafc;
  box-shadow: 0 0 20px rgba(99, 102, 241, 0.4);
}

.faq-author-badge:focus {
  outline: 2px solid #6366f1;
  outline-offset: 2px;
}

.faq-author-badge-icon {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
}

/* ═══ RESPONSIVE ═══ */
@media (max-width: 640px) {
  .faq-author-badges {
    flex-direction: column;
    align-items: center;
  }
  
  .faq-author-badge {
    width: 100%;
    max-width: 200px;
    justify-content: center;
  }
}

/* ═══ REDUCED MOTION ═══ */
@media (prefers-reduced-motion: reduce) {
  .faq-author-badge {
    transition: none;
  }
}

/* ═══ PRINT ═══ */
@media print {
  .faq-author-section {
    border-top-color: #ccc;
  }
  
  .faq-author-card {
    box-shadow: none;
    border: 1px solid #ccc;
    background: #fff;
  }
  
  .faq-author-card::before {
    display: none;
  }
  
  .faq-author-name,
  .faq-author-role {
    background: none;
    -webkit-text-fill-color: #000;
    color: #000;
  }
  
  .faq-author-bio {
    color: #333;
  }
  
  .faq-author-badge::before {
    display: none;
  }
}

/* ═══════════════════════════════════════════════════════════════════════════
   SEASONAL FAQ ITEM — Catering Sylwestrowy
   ═══════════════════════════════════════════════════════════════════════════ */

.faq-item--seasonal {
  background: linear-gradient(135deg, rgba(251, 191, 36, 0.08) 0%, rgba(245, 158, 11, 0.04) 100%);
  border: 1px solid rgba(251, 191, 36, 0.25);
  border-radius: var(--vm-radius-md);
  padding: var(--vm-space-md);
  margin-top: var(--vm-space-md);
}

.faq-item--seasonal h3 {
  color: #fbbf24;
}

.btn-outline--sm {
  display: inline-block;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  margin-top: 0.75rem;
}

/* ═══════════════════════════════════════════════════════════
   KEY-INSIGHT — Villa Mamma Design System
   ═══════════════════════════════════════════════════════════ */

.key-insight {
  position: relative;
  max-width: 900px;
  margin: 3rem auto;
  padding: 2rem 2.5rem;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.95), rgba(30, 41, 59, 0.9));
  border-radius: 1.5rem;
  text-align: center;
  
  /* Conic-gradient border */
  border: 2px solid transparent;
  background-clip: padding-box;
  
  /* Glow effect */
  box-shadow:
    0 0 0 1px rgba(139, 92, 246, 0.3),
    0 0 30px rgba(139, 92, 246, 0.15),
    0 0 60px rgba(59, 130, 246, 0.1);
}

.key-insight::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 1.6rem;
  padding: 2px;
  background: conic-gradient(
    from 45deg,
    #3b82f6,
    #8b5cf6,
    #3b82f6
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: -1;
}

.key-insight__title {
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  font-weight: 700;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.key-insight__text {
  font-size: clamp(0.95rem, 2vw, 1.05rem);
  line-height: 1.8;
  color: #e2e8f0;
}

.key-insight__text strong {
  color: #f8fafc;
  font-weight: 600;
}

/* GREEN marks (zamiast żółtych) */
.key-insight__text mark {
  background: rgba(34, 197, 94, 0.25);
  color: #22c55e;
  padding: 0.15em 0.4em;
  border-radius: 0.3rem;
  font-weight: 700;
  border: none;
}

/* "0 zł" - jeszcze mocniejszy zielony */
.key-insight__text .u-free {
  color: #22c55e;
  font-weight: 700;
}

/* Responsive */
@media (max-width: 640px) {
  .key-insight {
    padding: 1.5rem 1.25rem;
    margin: 2rem 1rem;
  }
}

/* ═══════════════════════════════════════════════════════════════════════════
   END OF STYLESHEET
   ═══════════════════════════════════════════════════════════════════════════ */
