/* =========================================================
   Separate stylesheet for partnerske-sluzby.html and all the pages linked
   to partnerske-sluzby.html (např. benatsky-stuk.html)
   Reason for creation: to avoid loading the main stylesheet (styles.css) and increase performance
   ========================================================= */

/* =========================================================
   1. Design Tokens & Variables
   ========================================================= */
:root {
  /* Rich Warm Color Palette */
  --choc-900: #160E09;
  --choc-800: #20140D;
  --choc-700: #2C1D14;
  --choc-600: #3E291C;
  --choc-500: #5C3D2A;
  --choc-400: #885D41;
  --choc-300: #B38669;
  --choc-200: #D8BCA8;
  --choc-100: #EFE4DC;
  --choc-50:  #FAF6F0;

  /* Luxurious Gold Accents */
  --gold: #D4AF37;
  --gold-light: #F3E5AB;
  --gold-dark: #AA820A;
  --gold-muted: rgba(212, 175, 55, 0.15);
  --gold-gradient: linear-gradient(135deg, #ECC856 0%, #D4AF37 50%, #A67C1E 100%);
  --gold-gradient-hover: linear-gradient(135deg, #F5D77F 0%, #E0BE4C 50%, #BF9227 100%);

  /* Theme-Dependent Semantic Variables (Default: Light Mode) */
  --bg-primary: #FAF6F0;
  --bg-secondary: #FFFFFF;
  --bg-tertiary: #F3ECE2;
  --bg-card: #FFFFFF;
  --bg-card-hover: #FAF7F2;
  --bg-header: rgba(250, 246, 240, 0.92);
  --bg-footer: #160E09;
  --bg-glass: rgba(255, 255, 255, 0.85);

  --text-primary: #20140D;
  --text-secondary: #5C3D2A;
  --text-tertiary: #885D41;
  --text-inverse: #FFFFFF;
  --text-muted: #9E7B66;
  --text-on-dark: #F5F3EF;

  --border-color: rgba(92, 61, 42, 0.12);
  --border-color-light: rgba(92, 61, 42, 0.06);
  --border-gold: rgba(212, 175, 55, 0.35);

  --shadow-sm: 0 2px 8px rgba(32, 20, 13, 0.04);
  --shadow-md: 0 8px 24px rgba(32, 20, 13, 0.07);
  --shadow-lg: 0 16px 40px rgba(32, 20, 13, 0.1);
  --shadow-xl: 0 24px 60px rgba(32, 20, 13, 0.14);
  --shadow-gold: 0 8px 25px rgba(212, 175, 55, 0.25);
  --shadow-choc: 0 8px 30px rgba(92, 61, 42, 0.25);
  --choc-card-gradient: linear-gradient(145deg, #3E291C 0%, #20140D 100%);

  /* Typography */
  --font-heading: 'Cinzel', 'Playfair Display', Georgia, serif;
  --font-body: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;

  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 1.875rem;
  --text-4xl: 2.25rem;
  --text-5xl: 3rem;

  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;

  /* Border Radius */
  --border-radius-sm: 6px;
  --border-radius-md: 12px;
  --border-radius-lg: 18px;
  --border-radius-xl: 28px;
  --border-radius-full: 9999px;

  /* Transitions */
  --transition-fast: 0.18s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-theme: 0.35s ease;

  /* Layout */
  --container-max: 1280px;
  --container-narrow: 960px;
  --header-height: 80px;
}

/* Dark Theme Overrides */
[data-theme="dark"] {
  --bg-primary: #120C08;
  --bg-secondary: #1B120B;
  --bg-tertiary: #251910;
  --bg-card: #1D130D;
  --bg-card-hover: #261A12;
  --bg-header: rgba(18, 12, 8, 0.94);
  --bg-footer: #0A0604;
  --bg-glass: rgba(27, 18, 11, 0.85);

  --text-primary: #FAF6F0;
  --text-secondary: #D8BCA8;
  --text-tertiary: #B38669;
  --text-muted: #885D41;

  --border-color: rgba(212, 175, 55, 0.18);
  --border-color-light: rgba(212, 175, 55, 0.08);
  --border-gold: rgba(212, 175, 55, 0.45);

  --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.45);
  --shadow-lg: 0 16px 50px rgba(0, 0, 0, 0.55);
  --shadow-xl: 0 24px 75px rgba(0, 0, 0, 0.65);
  --shadow-gold: 0 6px 28px rgba(212, 175, 55, 0.25);
  --shadow-choc: 0 8px 32px rgba(136, 93, 65, 0.28);
  --choc-card-gradient: linear-gradient(145deg, #281B13 0%, #1D130E 100%);
}

/* =========================================================
   2. Reset & Base Styles
   ========================================================= */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.7;
  color: var(--text-primary);
  background-color: var(--bg-primary);
  overflow-x: hidden;
  transition: background-color var(--transition-theme), color var(--transition-theme);
}

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

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

ul,
ol {
  list-style: none;
}

button,
input,
textarea,
select {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
}

button {
  cursor: pointer;
}

/* =========================================================
   3. Typography
   ========================================================= */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
  color: var(--text-primary);
  transition: color var(--transition-theme);
}

h1 {
  font-size: var(--text-5xl);
  letter-spacing: -0.02em;
}

h2 {
  font-size: var(--text-4xl);
  letter-spacing: -0.01em;
}

h3 {
  font-size: var(--text-3xl);
}

h4 {
  font-size: var(--text-2xl);
}

h5 {
  font-size: var(--text-xl);
}

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

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

.text-link {
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid rgba(212, 175, 55, 0.35);
  transition: color var(--transition-fast), border-color var(--transition-fast);
  font-weight: 600;
}

.text-link:hover {
  color: var(--gold-light);
  border-bottom-color: var(--gold);
}

.label {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #8C6239;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 18px;
  background: rgba(136, 93, 65, 0.08);
  border: 1.5px solid rgba(212, 175, 55, 0.45);
  border-radius: 999px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 2px 10px rgba(30, 18, 11, 0.04);
}

.label::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 8px rgba(212, 175, 55, 0.7);
  flex-shrink: 0;
}

[data-theme="dark"] .label {
  color: var(--gold-light);
  background: rgba(32, 20, 13, 0.75);
  border-color: rgba(212, 175, 55, 0.45);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

/* =========================================================
   4. Layout & Containers
   ========================================================= */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-xl);
}

.container-narrow {
  max-width: var(--container-narrow);
}

.section {
  padding: var(--space-4xl) 0;
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto var(--space-3xl);
}

.section-header .label {
  margin-bottom: var(--space-md);
}

.section-title {
  margin-bottom: var(--space-md);
  position: relative;
}

.section-desc {
  font-size: var(--text-lg);
  color: var(--text-secondary);
  line-height: 1.6;
}

.gold-line {
  width: 70px;
  height: 3px;
  background: linear-gradient(90deg, #885D41 0%, #D4AF37 50%, #F3E5AB 100%);
  margin: var(--space-lg) auto;
  border-radius: 3px;
  box-shadow: 0 0 12px rgba(212, 175, 55, 0.35);
}

.gold-line-left {
  margin-left: 0;
}

/* =========================================================
   5. Header & Navigation (Faithful Styles.css Matching)
   ========================================================= */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  z-index: 1000;
  background: var(--bg-header);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-color);
  transition: background-color var(--transition-theme), border-color var(--transition-theme), box-shadow var(--transition-base);
}

.header.scrolled {
  box-shadow: var(--shadow-md);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

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

.header-logo img {
  height: 44px;
  width: auto;
  transition: height var(--transition-fast);
}

[data-theme="dark"] .header-logo img,
.header-logo img[src*="dark"] {
  height: 50px;
}

/* Desktop Navigation */
.nav {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.nav-link {
  position: relative;
  padding: var(--space-sm) var(--space-md);
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: 0.03em;
  color: var(--text-secondary);
  transition: color var(--transition-fast);
  white-space: nowrap;
}

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

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--gold-gradient);
  transition: width var(--transition-base);
}

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

/* Dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
}

.nav-dropdown-trigger svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  transition: transform var(--transition-fast);
}

.nav-dropdown:hover .nav-dropdown-trigger svg {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 280px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-lg);
  padding: var(--space-sm) 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all var(--transition-base);
  z-index: 100;
}

.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown-item {
  display: block;
  padding: var(--space-sm) var(--space-lg);
  font-size: var(--text-sm);
  color: var(--text-secondary);
  transition: background var(--transition-fast), color var(--transition-fast), padding-left var(--transition-fast);
}

.nav-dropdown-item:hover {
  background: var(--gold-muted);
  color: var(--gold);
  padding-left: calc(var(--space-lg) + 4px);
}

.nav-dropdown-item-all {
  font-weight: 700;
  color: var(--gold-dark);
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 4px;
  padding-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
}

[data-theme="dark"] .nav-dropdown-item-all {
  color: var(--gold-light);
  border-color: rgba(212, 175, 55, 0.2);
}

.nav-dropdown-item-all:hover {
  color: var(--gold);
}

.nav-dropdown-divider {
  height: 1px;
  background: var(--border-color);
  margin: var(--space-xs) 0;
  opacity: 0.8;
}

[data-theme="dark"] .nav-dropdown-divider {
  background: rgba(212, 175, 55, 0.2);
}

.nav-dropdown-item-partner {
  font-weight: 600;
  color: var(--gold-dark);
}

[data-theme="dark"] .nav-dropdown-item-partner {
  color: var(--gold-light);
}

.nav-dropdown-item-partner:hover {
  color: var(--gold);
}

/* Actions (Theme Toggle & Mobile Menu) */
.header-actions {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.theme-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border-color);
  background: var(--bg-card);
  color: var(--text-primary);
  transition: all var(--transition-fast);
}

.theme-toggle:hover {
  border-color: var(--gold);
  color: var(--gold);
  box-shadow: var(--shadow-sm);
}

.theme-toggle svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}

/* Light/Dark icon switching */
.theme-toggle .icon-moon {
  display: none;
}

.theme-toggle .icon-sun {
  display: block;
}

[data-theme="dark"] .theme-toggle .icon-moon {
  display: block;
}

[data-theme="dark"] .theme-toggle .icon-sun {
  display: none;
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
}

.mobile-toggle-bar {
  width: 100%;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all var(--transition-fast);
}

.mobile-toggle.active .mobile-toggle-bar:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-toggle.active .mobile-toggle-bar:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.active .mobile-toggle-bar:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* =========================================================
   6. Mobile Navigation
   ========================================================= */
.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition-base), visibility var(--transition-base);
}

.mobile-nav-overlay.open {
  opacity: 1;
  visibility: visible;
}

.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 320px;
  max-width: 85vw;
  height: 100vh;
  background: var(--bg-card);
  border-left: 1px solid var(--border-color);
  box-shadow: var(--shadow-xl);
  z-index: 999;
  padding: calc(var(--header-height) + var(--space-lg)) var(--space-xl) var(--space-xl);
  overflow-y: auto;
  transition: right var(--transition-base);
}

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

.mobile-nav-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
  flex-grow: 1;
}

.mobile-nav-link {
  display: block;
  padding: var(--space-md) 0;
  font-size: var(--text-lg);
  font-weight: 500;
  color: var(--text-primary);
  border-bottom: 1px solid var(--border-color);
  transition: color var(--transition-fast);
}

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

.mobile-nav-accordion-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: var(--space-md) 0;
  font-size: var(--text-lg);
  font-weight: 500;
  color: var(--text-primary);
  border-bottom: 1px solid var(--border-color);
  cursor: pointer;
}

.mobile-nav-accordion-btn svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  transition: transform var(--transition-fast);
}

.mobile-nav-accordion-btn.open svg {
  transform: rotate(180deg);
}

.mobile-nav-accordion-btn.open,
.mobile-nav-accordion-btn:hover {
  color: var(--gold);
}

.mobile-nav-sub {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-slow);
}

.mobile-nav-sub.open {
  max-height: 650px;
}

.mobile-nav-sub-link {
  display: block;
  padding: var(--space-sm) var(--space-lg);
  font-size: var(--text-sm);
  color: var(--text-secondary);
  transition: color var(--transition-fast);
}

.mobile-nav-sub-link:hover {
  color: var(--gold);
}

.mobile-nav-sub-divider {
  height: 1px;
  background: var(--border-color);
  margin: var(--space-xs) var(--space-lg);
  opacity: 0.8;
}

[data-theme="dark"] .mobile-nav-sub-divider {
  background: rgba(212, 175, 55, 0.2);
}

.mobile-nav-sub-link-partner {
  font-weight: 600;
  color: var(--gold-dark);
}

[data-theme="dark"] .mobile-nav-sub-link-partner {
  color: var(--gold-light);
}

.mobile-nav-sub-link-partner:hover {
  color: var(--gold);
}

.mobile-nav-cta {
  margin-top: var(--space-xl);
}

/* =========================================================
   7. Buttons & Links
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: 14px 34px;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--border-radius-sm);
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  user-select: none;
  -webkit-user-select: none;
}

.btn:focus:not(:focus-visible),
button:focus:not(:focus-visible) {
  outline: none;
}

/* Tactile mobile & desktop press feedback */
.btn:active,
button:active {
  transform: scale(0.96) translateY(1px);
  filter: brightness(0.94);
  transition: transform 0.06s ease, filter 0.06s ease, box-shadow 0.06s ease;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
  transition: left 0.6s ease;
  pointer-events: none;
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: var(--gold-gradient);
  color: #160E09;
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.btn-primary:hover {
  background: var(--gold-gradient-hover);
  box-shadow: 0 8px 30px rgba(212, 175, 55, 0.5), 0 0 20px rgba(212, 175, 55, 0.3);
  transform: translateY(-2px);
}

.btn-primary:active {
  transform: scale(0.96) translateY(1px);
  box-shadow: 0 2px 10px rgba(212, 175, 55, 0.4), inset 0 2px 4px rgba(0, 0, 0, 0.18) !important;
}

.btn-secondary {
  background: rgba(30, 18, 11, 0.4);
  color: var(--text-on-dark);
  border: 1px solid rgba(212, 175, 55, 0.3);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.btn-secondary:hover {
  border-color: var(--gold);
  color: var(--gold-light);
  background: rgba(212, 175, 55, 0.15);
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.2);
}

.btn-secondary:active {
  background: rgba(212, 175, 55, 0.25) !important;
  transform: scale(0.96) translateY(1px);
}

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

.btn-outline:hover {
  background: var(--gold);
  color: #160E09;
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.btn-outline:active {
  background: var(--gold) !important;
  color: #160E09 !important;
  transform: scale(0.96) translateY(1px);
  box-shadow: 0 2px 10px rgba(212, 175, 55, 0.35) !important;
}

.btn-secondary-glass {
  background: rgba(22, 14, 9, 0.45);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(212, 175, 55, 0.35);
  color: #FAF6F0;
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

.btn-secondary-glass:hover {
  background: rgba(212, 175, 55, 0.2);
  border-color: var(--gold);
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.btn-secondary-glass:active {
  background: rgba(212, 175, 55, 0.3) !important;
  border-color: var(--gold) !important;
  transform: scale(0.96) translateY(1px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4) !important;
}

.btn-secondary-glass svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
}

.btn-sm {
  padding: 8px 18px;
  font-size: var(--text-xs);
  letter-spacing: 0.06em;
}

.btn-lg {
  padding: 18px 42px;
  font-size: var(--text-base);
}

.btn-full {
  width: 100%;
}

.btn-glow {
  position: relative;
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.4);
}

.btn-glow:hover {
  box-shadow: 0 8px 35px rgba(212, 175, 55, 0.6), 0 0 25px rgba(212, 175, 55, 0.35);
  transform: translateY(-2px);
}

.btn-glow:active {
  transform: scale(0.96) translateY(1px);
  box-shadow: 0 2px 12px rgba(212, 175, 55, 0.45) !important;
}

/* =========================================================
   8. Page Hero (Subpages)
   ========================================================= */
.page-hero {
  position: relative;
  min-height: 360px;
  display: flex;
  align-items: flex-end;
  box-sizing: border-box;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
      rgba(0, 0, 0, 0.15) 0%,
      rgba(0, 0, 0, 0.55) 100%);
}

.page-hero-content {
  position: relative;
  z-index: 2;
  padding: calc(var(--header-height) + var(--space-xl)) 0 var(--space-2xl);
  width: 100%;
}

.page-hero-breadcrumb {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: var(--text-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: var(--space-md);
}

.page-hero-breadcrumb a {
  color: var(--gold);
}

.page-hero-breadcrumb a:hover {
  color: #FFFFFF;
}

.page-hero-breadcrumb .separator {
  color: rgba(255, 255, 255, 0.35);
}

.page-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4.2vw, 2.75rem);
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.22;
  margin-bottom: var(--space-sm);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
}

.page-hero-subtitle {
  font-size: clamp(0.95rem, 1.8vw, 1.08rem);
  color: rgba(255, 255, 255, 0.9);
  max-width: 780px;
  line-height: 1.65;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.65);
}

/* =========================================================
   9. CTA Sections
   ========================================================= */
.cta-section {
  position: relative;
  padding: var(--space-2xl) 0;
  transition: padding var(--transition-base);
}

.cta-card {
  position: relative;
  max-width: 980px;
  margin: 0 auto;
  background: linear-gradient(135deg, #1C110A 0%, #291A11 50%, #150C07 100%);
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: var(--border-radius-lg);
  padding: 2.5rem 2.75rem;
  text-align: center;
  overflow: hidden;
  box-shadow:
    0 20px 50px -10px rgba(12, 7, 4, 0.65),
    0 0 40px -5px rgba(212, 175, 55, 0.18),
    inset 0 1px 0 rgba(255, 235, 160, 0.35);
}

.cta-card::before {
  content: '';
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 440px;
  height: 200px;
  background: radial-gradient(ellipse at center, rgba(212, 175, 55, 0.22) 0%, rgba(136, 93, 65, 0.1) 50%, transparent 75%);
  pointer-events: none;
  z-index: 1;
}

.cta-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(rgba(212, 175, 55, 0.06) 1px, transparent 1px);
  background-size: 20px 20px;
  opacity: 0.7;
  pointer-events: none;
  z-index: 1;
}

.cta-card > * {
  position: relative;
  z-index: 2;
}

.cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 16px;
  background: rgba(30, 19, 13, 0.6);
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: 999px;
  color: var(--gold-light);
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  backdrop-filter: blur(8px);
}

.cta-badge-dot {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--gold);
  animation: ctaPulse 2s infinite ease-in-out;
}

@keyframes ctaPulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.4;
    transform: scale(0.75);
  }
}

.cta-title,
.cta-section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.35rem, 2.2vw, 1.85rem);
  font-weight: 600;
  line-height: 1.28;
  color: #FFFFFF;
  letter-spacing: -0.01em;
  margin-bottom: 0.4rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cta-title .text-gold,
.cta-section-title .text-gold {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-style: italic;
}

.cta-text,
.cta-section-text {
  font-size: var(--text-sm);
  line-height: 1.6;
  color: rgba(245, 243, 239, 0.8);
  margin-bottom: 1.1rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 300;
}

.cta-perks {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--space-lg);
  flex-wrap: wrap;
  margin-bottom: 1.4rem;
  padding: 0;
  list-style: none;
}

.cta-perk {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.8);
  font-weight: 400;
}

.cta-perk svg {
  width: 14px;
  height: 14px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 2.2;
  flex-shrink: 0;
}

.cta-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.85rem;
  flex-wrap: wrap;
}

.cta-actions .btn {
  padding: 12px 26px;
  font-size: var(--text-xs);
  letter-spacing: 0.08em;
}

/* =========================================================
   10. Gallery Item & Lightbox Modal
   ========================================================= */
.gallery-item {
  break-inside: avoid;
  margin-bottom: var(--space-md);
  border-radius: var(--border-radius-md);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  background: var(--bg-card);
  box-shadow: var(--shadow-sm);
}

.gallery-item img {
  width: 100%;
  display: block;
  transition: transform var(--transition-slow);
}

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

.gallery-item-zoom {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition-base);
}

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

.gallery-item-zoom svg {
  width: 32px;
  height: 32px;
  stroke: #FFFFFF;
  fill: none;
  stroke-width: 2;
  transform: scale(0.8);
  transition: transform var(--transition-base);
}

.gallery-item:hover .gallery-item-zoom svg {
  transform: scale(1);
}

/* Lightbox Modal */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
}

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

.lightbox-img-wrap {
  max-width: 90vw;
  max-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-img {
  max-width: 100%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-xl);
}

.lightbox-close {
  position: absolute;
  top: var(--space-xl);
  right: var(--space-xl);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #FFFFFF;
  transition: background var(--transition-fast), transform var(--transition-fast);
  z-index: 10;
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: scale(1.1);
}

.lightbox-close svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #FFFFFF;
  transition: background var(--transition-fast), transform var(--transition-fast);
  z-index: 10;
}

.lightbox-nav:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-50%) scale(1.1);
}

.lightbox-nav svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}

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

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

.lightbox-counter {
  position: absolute;
  bottom: var(--space-xl);
  left: 50%;
  transform: translateX(-50%);
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.1em;
}

/* =========================================================
   11. Footer & Footer Social Buttons
   ========================================================= */
.footer {
  background: var(--bg-footer);
  color: rgba(255, 255, 255, 0.7);
  padding: var(--space-4xl) 0 0;
  transition: background-color var(--transition-theme);
  border-top: 1px solid rgba(212, 175, 55, 0.15);
}

[data-theme="dark"] .footer {
  background: #110B07;
  border-top: 1px solid rgba(212, 175, 55, 0.22);
  position: relative;
}

[data-theme="dark"] .footer::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 15%;
  right: 15%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.6), transparent);
  pointer-events: none;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: var(--space-3xl);
  padding-bottom: var(--space-3xl);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-logo img {
  height: 50px;
  width: auto;
  margin-bottom: var(--space-lg);
}

.footer-desc {
  font-size: var(--text-sm);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
}

.footer-title {
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  color: #FFFFFF;
  margin-bottom: var(--space-lg);
}

.footer-link {
  display: block;
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: var(--space-sm);
  transition: color var(--transition-fast), padding-left var(--transition-fast);
}

.footer-link:hover {
  color: var(--gold-light);
  padding-left: 6px;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: var(--space-sm);
}

.footer-contact-item svg {
  width: 16px;
  height: 16px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
  flex-shrink: 0;
}

.footer-contact-item a {
  color: rgba(255, 255, 255, 0.6);
  transition: color var(--transition-fast);
}

.footer-contact-item a:hover {
  color: var(--gold-light);
}

/* Footer Social Buttons (Instagram, Facebook, WhatsApp) */
.footer-socials {
  display: flex;
  gap: 0.55rem;
  align-items: center;
  margin-top: var(--space-md);
}

.footer-social {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  color: #FFFFFF;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  border: none;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.footer-social svg {
  width: 15px;
  height: 15px;
  fill: #FFFFFF;
  transition: transform 0.22s ease;
}

/* Instagram Original Official Gradient */
.social-ig,
.footer-social.social-ig {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

.social-ig:hover {
  transform: translateY(-3px) scale(1.06);
  box-shadow: 0 6px 18px rgba(214, 36, 159, 0.5);
}

.footer-social.social-ig:hover {
  transform: translateY(-2px) scale(1.08);
  box-shadow: 0 4px 14px rgba(214, 36, 159, 0.5);
}

/* Facebook Original Official Blue */
.social-fb,
.footer-social.social-fb {
  background: #1877F2;
}

.social-fb:hover {
  transform: translateY(-3px) scale(1.06);
  box-shadow: 0 6px 18px rgba(24, 119, 242, 0.5);
  background: #166fe5;
}

.footer-social.social-fb:hover {
  transform: translateY(-2px) scale(1.08);
  box-shadow: 0 4px 14px rgba(24, 119, 242, 0.5);
  background: #166fe5;
}

/* WhatsApp Original Official Green */
.social-wa,
.footer-social.social-wa {
  background: #25D366;
}

.social-wa:hover {
  transform: translateY(-3px) scale(1.06);
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.5);
  background: #20ba5a;
}

.footer-social.social-wa:hover {
  transform: translateY(-2px) scale(1.08);
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.5);
  background: #20ba5a;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-lg) 0;
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.4);
}

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

.footer-legal a {
  color: rgba(255, 255, 255, 0.4);
  transition: color var(--transition-fast);
}

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

/* =========================================================
   12. Responsive Media Queries
   ========================================================= */
@media (max-width: 1200px) {
  :root {
    --text-5xl: 3rem;
    --text-4xl: 2.25rem;
    --text-3xl: 1.75rem;
  }

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

@media (max-width: 992px) {
  :root {
    --text-5xl: 2.5rem;
    --text-4xl: 2rem;
    --text-3xl: 1.5rem;
    --header-height: 70px;
  }

  .nav {
    display: none;
  }

  .mobile-toggle {
    display: flex;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
  }

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

@media (max-width: 768px) {
  :root {
    --text-5xl: 2rem;
    --text-4xl: 1.75rem;
    --text-3xl: 1.35rem;
    --text-2xl: 1.25rem;
  }

  .container {
    padding: 0 var(--space-lg);
  }

  .page-hero {
    min-height: auto;
    height: auto;
  }

  .page-hero-content {
    padding: calc(var(--header-height) + var(--space-md)) 0 var(--space-xl);
  }

  .page-hero-title {
    font-size: clamp(1.45rem, 5.5vw, 1.85rem);
    line-height: 1.25;
    margin-bottom: var(--space-xs);
  }

  .page-hero-subtitle {
    font-size: 0.92rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.92);
  }

  .footer {
    padding: var(--space-xl) 0 0;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 0;
    text-align: center;
  }

  .footer-grid > div {
    padding: var(--space-lg) 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.12);
  }

  .footer-grid > div:last-child {
    border-bottom: none;
    padding-bottom: var(--space-md);
  }

  .footer-logo {
    display: flex;
    justify-content: center;
  }

  .footer-desc {
    max-width: 360px;
    margin: 0 auto;
  }

  .footer-title {
    margin-bottom: var(--space-md);
  }

  .footer-link {
    padding: 4px 0;
  }

  .footer-link:hover {
    padding-left: 0;
  }

  .footer-contact-item {
    justify-content: center;
  }

  .footer-socials {
    justify-content: center;
    margin-top: var(--space-sm);
  }

  .footer-bottom {
    flex-direction: column;
    gap: var(--space-md);
    text-align: center;
  }

  .footer-legal {
    justify-content: center;
    flex-wrap: wrap;
  }

  .cta-title,
  .cta-section-title {
    font-size: var(--text-2xl);
  }

  .cta-card {
    padding: 1.75rem 1.25rem;
    border-radius: var(--border-radius-md);
  }

  .cta-perks {
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.2rem;
  }

  .cta-actions {
    flex-direction: column;
    width: 100%;
    gap: 0.65rem;
  }

  .cta-actions .btn {
    width: 100%;
    max-width: 300px;
  }

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

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

  .lightbox-nav {
    width: 40px;
    height: 40px;
  }

  .lightbox-nav svg {
    width: 18px;
    height: 18px;
  }

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

@media (max-width: 480px) {
  :root {
    --text-5xl: 1.75rem;
    --text-4xl: 1.5rem;
  }
}

/* =========================================================
   13. Back to Top Button
   ========================================================= */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(16px);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: opacity var(--transition-base),
    visibility var(--transition-base),
    transform var(--transition-base),
    background-color var(--transition-fast),
    border-color var(--transition-fast),
    color var(--transition-fast),
    box-shadow var(--transition-base);
}

.back-to-top svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
  transition: transform var(--transition-fast);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #111111;
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.back-to-top:hover svg {
  transform: translateY(-2px);
}

.back-to-top:active {
  transform: translateY(-1px);
}

@media (max-width: 768px) {
  .back-to-top {
    bottom: 1.25rem;
    right: 1.25rem;
    width: 42px;
    height: 42px;
  }

  .back-to-top svg {
    width: 18px;
    height: 18px;
  }
}

/* =========================================================
   14. Button Ripple Effect
   ========================================================= */
.btn-ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  transform: scale(0);
  animation: btnRippleAnim 0.6s linear;
  pointer-events: none;
}

@keyframes btnRippleAnim {
  to {
    transform: scale(3.5);
    opacity: 0;
  }
}

/* =========================================================
   15. Animations (Scroll Reveal)
   ========================================================= */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

.reveal-delay-4 {
  transition-delay: 0.4s;
}

.reveal-delay-5 {
  transition-delay: 0.5s;
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-left.visible,
.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

/* =========================================================
   16. Cookie Consent Banner
   ========================================================= */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(140px);
  width: calc(100% - 48px);
  max-width: 920px;
  z-index: 10000;
  padding: 18px 24px;
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.28), 0 0 0 1px rgba(191, 155, 80, 0.12);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.9s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.8s ease, box-shadow 0.4s ease;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

[data-theme="dark"] .cookie-banner {
  background: rgba(26, 26, 26, 0.94);
  border-color: rgba(191, 155, 80, 0.25);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 30px rgba(191, 155, 80, 0.08);
}

.cookie-banner.visible {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.cookie-banner-inner {
  display: flex;
  align-items: center;
  gap: 20px;
}

.cookie-banner-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(191, 155, 80, 0.1);
  border: 1px solid rgba(191, 155, 80, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
}

.cookie-banner-icon svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cookie-banner-text {
  flex: 1;
  font-size: 13.5px;
  color: var(--text-secondary);
  line-height: 1.55;
  margin: 0;
}

.cookie-banner-text a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 500;
  transition: color 0.2s ease;
}

.cookie-banner-text a:hover {
  color: var(--gold-light);
}

.cookie-banner-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.cookie-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: 10px 24px;
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--border-radius-sm);
  cursor: pointer;
  transition: all var(--transition-base);
  white-space: nowrap;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  border: none;
}

.cookie-btn:active {
  transform: scale(0.96) translateY(1px);
  filter: brightness(0.94);
  transition: transform 0.06s ease;
}

.cookie-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
  transition: left 0.6s ease;
  pointer-events: none;
}

.cookie-btn:hover::before {
  left: 100%;
}

.cookie-btn-accept {
  background: var(--gold-gradient);
  color: #160E09;
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.cookie-btn-accept:hover {
  background: var(--gold-gradient-hover);
  box-shadow: 0 8px 30px rgba(212, 175, 55, 0.5), 0 0 20px rgba(212, 175, 55, 0.3);
  transform: translateY(-2px);
}

.cookie-btn-reject {
  background: var(--choc-500);
  color: #FAF6F0;
  border: 1px solid rgba(212, 175, 55, 0.45);
  box-shadow: 0 4px 16px rgba(92, 61, 42, 0.25);
}

.cookie-btn-reject:hover {
  background: #6D4932;
  color: #FFFFFF;
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(92, 61, 42, 0.35), 0 0 14px rgba(212, 175, 55, 0.3);
}

@media (max-width: 768px) {
  .cookie-banner {
    bottom: 16px;
    width: calc(100% - 24px);
    padding: 16px 18px;
    border-radius: 16px;
  }

  .cookie-banner-inner {
    flex-direction: column;
    text-align: center;
    gap: 14px;
  }

  .cookie-banner-icon {
    display: none;
  }

  .cookie-banner-actions {
    width: 100%;
    justify-content: center;
    gap: 8px;
  }

  .cookie-btn {
    flex: 1;
    padding: 9px 14px;
    text-align: center;
  }
}

/* =========================================================
   17. Partnerské služby Components
   ========================================================= */
.partner-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: var(--space-2xl);
  margin-top: var(--space-2xl);
}

.partner-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
  display: flex;
  flex-direction: column;
  position: relative;
}

.partner-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: var(--gold);
}

.partner-card-media {
  position: relative;
  width: 100%;
  height: 280px;
  overflow: hidden;
}

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

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

.partner-badge-pill {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--gold-gradient);
  color: var(--choc-900);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 6px 14px;
  border-radius: var(--border-radius-full);
  box-shadow: var(--shadow-sm);
  z-index: 2;
}

.partner-card-body {
  padding: var(--space-xl);
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.partner-card-title {
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-xs);
  line-height: 1.3;
}

.partner-card-meta {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  color: var(--gold-dark);
  font-size: var(--text-sm);
  font-weight: 600;
  margin-bottom: var(--space-md);
}

[data-theme="dark"] .partner-card-meta {
  color: var(--gold-light);
}

.partner-card-desc {
  font-size: var(--text-base);
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: var(--space-lg);
  flex-grow: 1;
}

.partner-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--space-md);
  border-top: 1px solid var(--border-color);
  gap: var(--space-md);
  flex-wrap: wrap;
}

.partner-price-tag {
  font-size: var(--text-sm);
  color: var(--text-tertiary);
}

.partner-price-tag strong {
  display: block;
  font-size: var(--text-xl);
  color: var(--gold-dark);
  font-weight: 700;
  font-family: var(--font-heading);
}

[data-theme="dark"] .partner-price-tag strong {
  color: var(--gold);
}

.partner-future-card {
  background: var(--bg-card);
  border: 2px dashed var(--border-color);
  border-radius: var(--border-radius-lg);
  padding: var(--space-2xl);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 380px;
  transition: border-color var(--transition-base);
}

.partner-future-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--gold-muted);
  color: var(--gold-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-lg);
}

[data-theme="dark"] .partner-future-icon {
  color: var(--gold);
}

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

/* =========================================================
   18. Benátský štuk Components
   ========================================================= */
.stuk-video-hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--header-height) + var(--space-md)) var(--space-md) calc(var(--space-2xl) + 30px);
  box-sizing: border-box;
}

.stuk-video-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.stuk-video-hero-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.stuk-video-hero-container {
  position: relative;
  z-index: 3;
  width: 100%;
}

.stuk-video-hero-content {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
  color: #FFFFFF;
}

.stuk-video-hero-content .stuk-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(1.65rem, 4.2vw, 3.2rem);
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.2;
  margin-bottom: var(--space-md);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8), 0 4px 24px rgba(0, 0, 0, 0.9);
}

.stuk-video-hero-content .stuk-hero-desc {
  font-size: clamp(0.95rem, 1.4vw, 1.2rem);
  color: #FFFFFF;
  line-height: 1.6;
  max-width: 780px;
  margin: 0 auto var(--space-xl);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8), 0 3px 16px rgba(0, 0, 0, 0.95);
}

.stuk-video-hero-content .stuk-hero-desc strong {
  color: var(--gold-light);
  font-weight: 700;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.9);
}

.stuk-video-hero-content .stuk-hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  flex-wrap: wrap;
  margin-bottom: 0;
}

.stuk-btn-hero-outline {
  background: rgba(0, 0, 0, 0.5) !important;
  border-color: rgba(255, 255, 255, 0.6) !important;
  color: #FFFFFF !important;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.stuk-btn-hero-outline:hover {
  background: var(--gold) !important;
  border-color: var(--gold) !important;
  color: #160E09 !important;
  transform: translateY(-2px);
}

.stuk-btn-hero-outline:active {
  background: var(--gold) !important;
  border-color: var(--gold) !important;
  color: #160E09 !important;
  transform: scale(0.96) translateY(1px) !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4) !important;
}

.stuk-scroll-down {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  color: #FFFFFF;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.4);
  border: 1.5px solid rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  animation: bounceStuk 2.2s infinite;
  transition: all var(--transition-fast);
  text-decoration: none;
}

.stuk-scroll-down:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #160E09;
  transform: translateX(-50%) scale(1.1);
}

.stuk-scroll-down svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  stroke-width: 2.2;
  fill: none;
}

@media (max-width: 768px) {
  .stuk-video-hero {
    padding: calc(var(--header-height) + var(--space-sm)) var(--space-md) calc(var(--space-2xl) + 20px);
  }

  .stuk-video-hero-content .stuk-hero-title {
    font-size: clamp(1.4rem, 5.5vw, 1.85rem);
    line-height: 1.22;
    margin-bottom: var(--space-sm);
  }

  .stuk-video-hero-content .stuk-hero-desc {
    font-size: 0.92rem;
    line-height: 1.5;
    margin-bottom: var(--space-lg);
  }

  .stuk-video-hero-content .stuk-hero-actions {
    gap: var(--space-xs);
  }

  .stuk-video-hero-content .stuk-hero-actions .btn {
    padding: 0.6rem 1rem;
    font-size: 0.85rem;
  }

  .stuk-scroll-down {
    bottom: 10px;
    width: 36px;
    height: 36px;
  }

  .stuk-scroll-down svg {
    width: 18px;
    height: 18px;
  }
}

@keyframes bounceStuk {
  0%, 20%, 50%, 80%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-9px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

/* Uniform Gallery Grid (all images identical size) */
.stuk-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: var(--space-md);
}

@media (min-width: 1024px) {
  .stuk-gallery-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stuk-gallery-grid .gallery-item {
  aspect-ratio: 4 / 3;
  width: 100%;
  height: 100%;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
  margin-bottom: 0 !important;
  break-inside: auto !important;
}

.stuk-gallery-grid .gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}

.stuk-gallery-grid .gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform var(--transition-slow);
}

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