@import url('https://fonts.googleapis.com/css2?family=Familjen+Grotesk:wght@400;500;600;700&family=DM+Sans:wght@400;500;600&display=swap');

/* ============================================
   CSS CUSTOM PROPERTIES
   ============================================ */
:root {
  
  --ink: #0f0e1a;
  --ink-soft: #1a1828;
  --ink-muted: #2d2b42;
  --parchment: #faf7f0;
  --parchment-warm: #f4f0e6;
  --amber: #e8a020;
  --amber-light: #f0b840;
  --amber-pale: #fdf0cc;
  --indigo: #2a2460;
  --indigo-mid: #3d3580;
  --indigo-bright: #5048b8;

  
  --shadow-sm: 0 1px 4px rgba(15,14,26,0.08), 0 2px 8px rgba(15,14,26,0.04);
  --shadow-md: 0 4px 12px rgba(15,14,26,0.12), 0 8px 24px rgba(15,14,26,0.06);
  --shadow-lg: 0 8px 24px rgba(15,14,26,0.16), 0 20px 48px rgba(15,14,26,0.08);
  --shadow-amber: 0 4px 20px rgba(232,160,32,0.25), 0 2px 8px rgba(232,160,32,0.15);
  --shadow-amber-lg: 0 8px 32px rgba(232,160,32,0.35), 0 4px 12px rgba(232,160,32,0.2);
  --shadow-indigo: 0 4px 20px rgba(42,36,96,0.3), 0 2px 8px rgba(42,36,96,0.15);

  
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 6rem;
  --space-2xl: 8rem;

  
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --radius-pill: 100px;

  
  --nav-height: 72px;
}

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

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

body.canvas {
  font-family: 'DM Sans', system-ui, sans-serif;
  background-color: var(--parchment);
  color: var(--ink);
  line-height: 1.65;
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: all 0.25s ease; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ============================================
   NAVIGATION
   ============================================ */
.nav-shell {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  transition: background 0.35s ease, box-shadow 0.35s ease, backdrop-filter 0.35s ease;
  background: transparent;
}

.nav-shell.nav-solid {
  background: var(--ink);
  box-shadow: var(--shadow-md);
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-brand { display: flex; align-items: center; flex-shrink: 0; }
.nav-logo-img { height: 36px; width: auto; }

.nav-links {
  display: none;
  align-items: center;
  gap: 0.25rem;
  margin-left: auto;
}

.nav-link {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--parchment);
  padding: 0.5rem 0.875rem;
  border-radius: var(--radius-sm);
  transition: color 0.2s ease, background 0.2s ease;
  opacity: 0.85;
}

.nav-link:hover,
.nav-link.active {
  color: var(--amber);
  opacity: 1;
  background: rgba(232,160,32,0.08);
}

.nav-hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  margin-left: auto;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  transition: background 0.2s ease;
}

.nav-hamburger:hover { background: rgba(232,160,32,0.1); }

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--parchment);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }


.drawer {
  max-height: 0;
  overflow: hidden;
  background: var(--ink-soft);
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-top: 1px solid rgba(232,160,32,0.1);
}

.drawer.open { max-height: 400px; }

.drawer-links {
  display: flex;
  flex-direction: column;
  padding: 0.75rem 1.5rem 1.25rem;
  gap: 0.25rem;
}

.drawer-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--parchment);
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  opacity: 0.85;
  transition: color 0.2s ease, background 0.2s ease, opacity 0.2s ease;
  min-height: 44px;
  display: flex;
  align-items: center;
}

.drawer-link:hover,
.drawer-link.active {
  color: var(--amber);
  opacity: 1;
  background: rgba(232,160,32,0.08);
}

/* ============================================
   HERO / STAGE SECTION
   ============================================ */
.stage {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 0;
  overflow: hidden;
  background: var(--ink);
}

.stage-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.stage-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.35) saturate(0.7);
  mix-blend-mode: normal;
}

.stage-curtain {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(10,8,20,0.5) 0%,
    rgba(42,36,96,0.6) 50%,
    rgba(232,160,32,0.08) 100%
  );
}

.stage-content {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: calc(var(--nav-height) + 4rem) 1.5rem 3rem;
  width: 100%;
}

.stage-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  background: rgba(232,160,32,0.12);
  border: 1px solid rgba(232,160,32,0.25);
  padding: 0.375rem 0.875rem;
  border-radius: var(--radius-pill);
  margin-bottom: 1.5rem;
}

.stage-headline {
  font-family: 'Familjen Grotesk', sans-serif;
  font-size: clamp(2.25rem, 5.5vw, 4.5rem);
  font-weight: 700;
  color: var(--parchment);
  line-height: 1.1;
  margin-bottom: 1.5rem;
  max-width: 680px;
}

.stage-accent { color: var(--amber); }

.stage-subtext {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: rgba(250,247,240,0.75);
  max-width: 560px;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.stage-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}


.shelf-wrapper {
  position: relative;
  z-index: 2;
  background: rgba(15,14,26,0.7);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(232,160,32,0.15);
}

.shelf {
  display: flex;
  gap: 0;
  overflow-x: auto;
  max-width: 1280px;
  margin: 0 auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.shelf::-webkit-scrollbar { display: none; }

.shelf-card {
  flex: 0 0 auto;
  min-width: 200px;
  max-width: 260px;
  padding: 1.5rem 1.25rem;
  border-right: 1px solid rgba(232,160,32,0.1);
  transition: background 0.25s ease;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

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

.shelf-card:hover { background: rgba(232,160,32,0.06); }

.shelf-card-icon {
  font-size: 1.25rem;
  color: var(--amber);
  margin-bottom: 0.25rem;
}

.shelf-card-title {
  font-family: 'Familjen Grotesk', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--parchment);
  line-height: 1.3;
}

.shelf-card-desc {
  font-size: 0.8rem;
  color: rgba(250,247,240,0.55);
  line-height: 1.4;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--amber);
  color: var(--ink);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-amber);
  transition: background 0.25s ease, box-shadow 0.25s ease, transform 0.2s ease;
  min-height: 44px;
}

.btn-primary:hover {
  background: var(--amber-light);
  box-shadow: var(--shadow-amber-lg);
  transform: translateY(-2px);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--parchment);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-pill);
  border: 1.5px solid rgba(250,247,240,0.3);
  transition: border-color 0.25s ease, color 0.25s ease, background 0.25s ease;
  min-height: 44px;
}

.btn-ghost:hover {
  border-color: var(--amber);
  color: var(--amber);
  background: rgba(232,160,32,0.06);
}

.btn-ghost-dark {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--indigo);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--indigo);
  transition: border-color 0.25s ease, color 0.25s ease, background 0.25s ease;
  min-height: 44px;
}

.btn-ghost-dark:hover {
  border-color: var(--indigo-bright);
  color: var(--indigo-bright);
  background: rgba(42,36,96,0.06);
}

.btn-large {
  font-size: 1rem;
  padding: 0.875rem 2.25rem;
}

.btn-table {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.625rem 1.25rem;
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--indigo);
  color: var(--indigo);
  transition: all 0.2s ease;
  min-height: 40px;
}

.btn-table:hover {
  background: var(--indigo);
  color: var(--parchment);
}

.btn-table-featured {
  background: var(--amber);
  border-color: var(--amber);
  color: var(--ink);
  box-shadow: var(--shadow-amber);
}

.btn-table-featured:hover {
  background: var(--amber-light);
  border-color: var(--amber-light);
  box-shadow: var(--shadow-amber-lg);
  color: var(--ink);
}

/* ============================================
   SECTION CARDS LAYOUT
   ============================================ */
.canvas-section {
  position: relative;
  padding: var(--space-xl) 1.5rem;
}

.canvas-light { background: var(--parchment); }
.canvas-dark { background: var(--ink); }
.canvas-accent { background: var(--amber-pale); }
.canvas-accent-dark { background: var(--indigo); }

.section-card {
  max-width: 1280px;
  margin: 0 auto;
  background: var(--parchment);
  border-radius: var(--radius-xl);
  padding: var(--space-lg) var(--space-lg);
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 2;
}

.dark-card {
  background: var(--ink-soft);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4), 0 2px 8px rgba(0,0,0,0.2);
}

.accent-card {
  background: var(--parchment-warm);
  box-shadow: var(--shadow-md);
}


.angle-top { padding-top: calc(var(--space-xl) + 3rem); }
.angle-top::before {
  content: '';
  position: absolute;
  top: -2px;
  left: 0;
  right: 0;
  height: 80px;
  background: inherit;
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
  z-index: 1;
}

.angle-bottom { padding-bottom: calc(var(--space-xl) + 3rem); }
.angle-bottom::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 80px;
  background: inherit;
  clip-path: polygon(0 0, 100% 100%, 0 100%);
  z-index: 1;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
.section-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 0.875rem;
}

.tag-light {
  color: var(--amber);
}

.section-heading {
  font-family: 'Familjen Grotesk', sans-serif;
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.2;
  margin-bottom: 1.25rem;
}

.heading-light { color: var(--parchment); }

.section-intro {
  font-size: 1.05rem;
  color: var(--ink-muted);
  max-width: 640px;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.intro-light { color: rgba(250,247,240,0.75); }

/* ============================================
   SPOTLIGHT / INTRO SECTION
   ============================================ */
.spotlight-card { }

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

.spotlight-text p {
  color: var(--ink-muted);
  margin-bottom: 1.25rem;
  line-height: 1.75;
}

.spotlight-text .btn-primary { margin-top: 0.5rem; }

.spotlight-visual { position: relative; }

.spotlight-img-wrap { position: relative; display: inline-block; width: 100%; }

.spotlight-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.spotlight-img:hover {
  transform: scale(1.02);
  box-shadow: 0 16px 48px rgba(15,14,26,0.2), 0 8px 24px rgba(15,14,26,0.12);
}

.spotlight-img-badge {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  background: var(--amber);
  color: var(--ink);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.375rem 0.875rem;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-amber);
}

/* ============================================
   GALLERY GRID
   ============================================ */
.gallery {
  display: grid;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.gallery-4 { grid-template-columns: 1fr; }
.gallery-3 { grid-template-columns: 1fr; }
.gallery-2-wide { grid-template-columns: 1fr; }

.gallery-item {
  padding: 1.75rem;
  border-radius: var(--radius-lg);
  background: var(--parchment-warm);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.gallery-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.dark-item {
  background: var(--ink-muted);
  border: 1px solid rgba(232,160,32,0.08);
}

.dark-item:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.3), 0 0 0 1px rgba(232,160,32,0.15);
}

.gallery-icon {
  font-size: 1.5rem;
  color: var(--amber);
  margin-bottom: 1rem;
}

.gallery-item h3 {
  font-family: 'Familjen Grotesk', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--parchment);
  margin-bottom: 0.75rem;
}

.dark-item p { color: rgba(250,247,240,0.65); font-size: 0.95rem; line-height: 1.65; }


.approach-item {
  padding: 1.75rem;
  border-radius: var(--radius-lg);
  background: var(--ink-muted);
  border: 1px solid rgba(232,160,32,0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.approach-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}

.approach-icon {
  font-size: 1.5rem;
  color: var(--amber);
  margin-bottom: 1rem;
}

.approach-item h3 {
  font-family: 'Familjen Grotesk', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--parchment);
  margin-bottom: 0.75rem;
}

.approach-item p { color: rgba(250,247,240,0.65); font-size: 0.9rem; line-height: 1.65; margin-bottom: 0.75rem; }


.gallery-photo-link {
  display: block;
  text-decoration: none;
}

.gallery-photo-wrap {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  aspect-ratio: 4/3;
  margin-bottom: 0.875rem;
}

.gallery-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease, filter 0.3s ease;
  filter: brightness(0.85) saturate(0.9);
}

.gallery-photo-link:hover .gallery-photo {
  transform: scale(1.05);
  filter: brightness(1) saturate(1.1);
}

.gallery-photo-overlay {
  position: absolute;
  inset: 0;
  background: rgba(42,36,96,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--amber);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-photo-link:hover .gallery-photo-overlay { opacity: 1; }

.gallery-photo-caption {
  font-family: 'Familjen Grotesk', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--parchment);
}

/* ============================================
   RESEARCH SPLIT
   ============================================ */
.research-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}

.research-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: transform 0.3s ease;
}

.research-img:hover { transform: scale(1.02); }

.research-text-col p {
  color: var(--ink-muted);
  margin-bottom: 1.25rem;
  line-height: 1.75;
}

/* ============================================
   COMPARISON TABLE
   ============================================ */
.comparison-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 560px;
  background: var(--parchment);
}

.comparison-table thead {
  background: var(--ink);
}

.comparison-table th {
  font-family: 'Familjen Grotesk', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--parchment);
  padding: 1.25rem 1rem;
  text-align: center;
  vertical-align: middle;
}

.comparison-table th.col-feature {
  text-align: left;
  padding-left: 1.5rem;
}

.col-recommended {
  background: var(--amber);
  color: var(--ink) !important;
  position: relative;
}

.recommended-badge {
  display: block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
  background: rgba(15,14,26,0.12);
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-pill);
  margin-bottom: 0.375rem;
}

.comparison-table tbody tr {
  border-bottom: 1px solid var(--parchment-warm);
  transition: background 0.2s ease;
}

.comparison-table tbody tr:hover { background: var(--parchment-warm); }

.comparison-table td {
  padding: 1rem;
  text-align: center;
  font-size: 0.9rem;
  color: var(--ink-muted);
  vertical-align: middle;
}

.comparison-table td.feature-name {
  text-align: left;
  padding-left: 1.5rem;
  font-weight: 500;
  color: var(--ink);
}

.recommended-col {
  background: rgba(232,160,32,0.06);
}

.check-yes { color: #22a64a; font-size: 1.1rem; }
.check-no { color: #c0bdb8; font-size: 1rem; }

.comparison-table tfoot td {
  padding: 1.25rem 1rem;
  text-align: center;
  background: var(--parchment-warm);
}

.comparison-table tfoot td:first-child { background: var(--parchment-warm); }

/* ============================================
   CTA SECTIONS
   ============================================ */
.cta-card {
  background: var(--indigo);
  box-shadow: var(--shadow-indigo);
}

.cta-inner { text-align: center; max-width: 620px; margin: 0 auto; }

.cta-heading {
  font-family: 'Familjen Grotesk', sans-serif;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: var(--parchment);
  margin-bottom: 1rem;
}

.cta-text {
  color: rgba(250,247,240,0.75);
  margin-bottom: 2rem;
  line-height: 1.7;
}

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

.cta-light-card {
  text-align: center;
  background: var(--parchment);
}

.cta-light-card .section-heading { color: var(--ink); }
.cta-light-card .section-intro { margin: 0 auto 2rem; }

/* ============================================
   PAGE STAGE (inner pages)
   ============================================ */
.page-stage {
  padding: calc(var(--nav-height) + 3rem) 1.5rem 4rem;
}

.page-stage-content {
  max-width: 800px;
  margin: 0 auto;
}

.page-heading {
  font-family: 'Familjen Grotesk', sans-serif;
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

.page-subtext {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  line-height: 1.7;
  max-width: 580px;
}

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-intro-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}

.about-intro-text p {
  color: var(--ink-muted);
  margin-bottom: 1.25rem;
  line-height: 1.75;
}

.about-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: transform 0.3s ease;
}

.about-img:hover { transform: scale(1.02); }

.slovak-context-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}

.slovak-text p {
  color: var(--ink-muted);
  margin-bottom: 1.25rem;
  line-height: 1.75;
}

.slovak-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}


.format-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
}

.format-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.5rem;
  align-items: start;
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  background: var(--parchment-warm);
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.format-item:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-md);
}

.format-num {
  font-family: 'Familjen Grotesk', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--amber);
  line-height: 1;
  min-width: 3rem;
}

.format-content h3 {
  font-family: 'Familjen Grotesk', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.5rem;
}

.format-content p { color: var(--ink-muted); font-size: 0.95rem; line-height: 1.65; }

/* ============================================
   COURSES PAGE
   ============================================ */
.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-top: 2rem;
  align-items: start;
}

.why-text p {
  color: var(--ink-muted);
  margin-bottom: 1.25rem;
  line-height: 1.75;
}

.why-points {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.why-point {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding: 0.875rem 1.25rem;
  background: var(--amber-pale);
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ink);
  border-left: 3px solid var(--amber);
}

.why-point i { color: var(--amber); flex-shrink: 0; }


.modules-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.module-item {
  background: var(--ink-muted);
  border: 1px solid rgba(232,160,32,0.1);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.module-item:hover {
  border-color: rgba(232,160,32,0.3);
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
}

.module-header {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.5rem;
  border-bottom: 1px solid rgba(232,160,32,0.08);
}

.module-num {
  font-family: 'Familjen Grotesk', sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--amber);
  flex-shrink: 0;
  min-width: 2.5rem;
}

.module-title-group { flex: 1; }

.module-title-group h3 {
  font-family: 'Familjen Grotesk', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--parchment);
  margin-bottom: 0.375rem;
}

.module-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber);
  background: rgba(232,160,32,0.12);
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-pill);
}

.module-body {
  padding: 1.5rem;
}

.module-body p {
  color: rgba(250,247,240,0.65);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.module-topics {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.module-topics span {
  font-size: 0.75rem;
  font-weight: 500;
  padding: 0.3rem 0.75rem;
  background: rgba(232,160,32,0.08);
  border: 1px solid rgba(232,160,32,0.15);
  border-radius: var(--radius-pill);
  color: var(--amber);
}

.course-img-feature {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

.course-feature-img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: transform 0.3s ease;
}

.course-feature-img:hover { transform: scale(1.02); }

.course-img-caption h3 {
  font-family: 'Familjen Grotesk', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.875rem;
}

.course-img-caption p { color: var(--ink-muted); line-height: 1.7; }

/* ============================================
   COOPERATION PAGE
   ============================================ */
.coop-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.coop-card {
  padding: 2rem;
  border-radius: var(--radius-lg);
  background: var(--parchment-warm);
  border: 1.5px solid transparent;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.coop-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--amber);
}

.coop-featured {
  background: var(--indigo);
  border-color: var(--amber);
  box-shadow: var(--shadow-indigo);
}

.coop-featured h3,
.coop-featured p { color: var(--parchment) !important; }
.coop-featured p { opacity: 0.75; }
.coop-featured .coop-link { color: var(--amber) !important; }

.coop-icon {
  font-size: 1.75rem;
  color: var(--amber);
  margin-bottom: 1rem;
}

.coop-card h3 {
  font-family: 'Familjen Grotesk', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 1rem;
}

.coop-card p {
  color: var(--ink-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.coop-link {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--indigo);
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  transition: gap 0.2s ease, color 0.2s ease;
}

.coop-link:hover { gap: 0.625rem; color: var(--indigo-bright); }


.process-steps {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.process-step {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 1.5rem;
  background: var(--ink-muted);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(232,160,32,0.08);
  transition: border-color 0.25s ease;
}

.process-step:hover { border-color: rgba(232,160,32,0.25); }

.process-icon {
  font-size: 1.5rem;
  color: var(--amber);
  flex-shrink: 0;
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(232,160,32,0.1);
  border-radius: var(--radius-md);
}

.process-content h3 {
  font-family: 'Familjen Grotesk', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--parchment);
  margin-bottom: 0.5rem;
}

.process-content p { color: rgba(250,247,240,0.65); font-size: 0.9rem; line-height: 1.65; }


.audience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}

.audience-item {
  padding: 1.5rem;
  background: var(--parchment);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease;
}

.audience-item:hover { transform: translateY(-3px); }

.audience-item i {
  font-size: 1.5rem;
  color: var(--amber);
  margin-bottom: 0.875rem;
  display: block;
}

.audience-item h4 {
  font-family: 'Familjen Grotesk', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.5rem;
}

.audience-item p { color: var(--ink-muted); font-size: 0.875rem; line-height: 1.6; }

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-methods-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}

.contact-method-card {
  padding: 1.75rem;
  border-radius: var(--radius-lg);
  background: var(--parchment-warm);
  border: 1.5px solid transparent;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.contact-method-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--amber);
}

.contact-method-icon {
  width: 3rem;
  height: 3rem;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.email-icon { background: rgba(42,36,96,0.1); color: var(--indigo); }
.phone-icon { background: rgba(232,160,32,0.12); color: var(--amber); }
.location-icon { background: rgba(34,166,74,0.1); color: #22a64a; }

.contact-method-card h3 {
  font-family: 'Familjen Grotesk', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.5rem;
}

.contact-method-value {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  color: var(--indigo);
  margin-bottom: 1rem;
  transition: color 0.2s ease;
}

.contact-method-value:hover { color: var(--indigo-bright); }

.contact-method-best { margin-bottom: 1rem; }

.contact-method-best strong {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--ink);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.5rem;
}

.contact-method-best ul {
  list-style: none;
  padding: 0;
}

.contact-method-best ul li {
  font-size: 0.875rem;
  color: var(--ink-muted);
  padding: 0.25rem 0;
  padding-left: 1rem;
  position: relative;
}

.contact-method-best ul li::before {
  content: '·';
  position: absolute;
  left: 0;
  color: var(--amber);
  font-weight: 700;
}

.contact-method-time {
  font-size: 0.8rem;
  color: var(--ink-muted);
  padding-top: 0.75rem;
  border-top: 1px solid var(--parchment-warm);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.contact-method-time i { color: var(--amber); }


.contact-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}


.accordion-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.accordion-section {
  border: 1.5px solid rgba(232,160,32,0.15);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color 0.25s ease;
}

.accordion-section.open { border-color: rgba(232,160,32,0.4); }

.accordion-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: var(--ink-muted);
  color: var(--parchment);
  text-align: left;
  transition: background 0.2s ease;
  min-height: 56px;
}

.accordion-toggle:hover { background: rgba(232,160,32,0.08); }

.acc-num {
  font-family: 'Familjen Grotesk', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--amber);
  flex-shrink: 0;
}

.acc-label {
  font-size: 0.95rem;
  font-weight: 600;
  flex: 1;
}

.acc-status {
  font-size: 0.8rem;
  color: var(--amber);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.accordion-section.open .acc-status { transform: rotate(180deg); }

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  background: var(--ink-soft);
}

.accordion-section.open .accordion-body { max-height: 600px; }

.accordion-body > * { padding: 1.5rem; }
.accordion-body > *:not(:last-child) { padding-bottom: 0; }

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
}

.form-group:first-child { padding-top: 1.5rem; }
.form-group:last-child { padding-bottom: 1.5rem; }

.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(250,247,240,0.6);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.form-group input,
.form-group textarea,
.form-group select {
  background: var(--ink-muted);
  border: 1.5px solid rgba(232,160,32,0.15);
  border-radius: var(--radius-sm);
  color: var(--parchment);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  padding: 0.75rem 1rem;
  width: 100%;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  min-height: 44px;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--amber);
  box-shadow: 0 0 0 3px rgba(232,160,32,0.12);
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(250,247,240,0.3); }

.form-group textarea { min-height: 120px; resize: vertical; }

.form-group-check { flex-direction: row; align-items: flex-start; }

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  cursor: pointer;
  font-size: 0.875rem;
  color: rgba(250,247,240,0.7);
  line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  min-width: 18px;
  min-height: 18px;
  accent-color: var(--amber);
  margin-top: 2px;
  cursor: pointer;
}

.checkbox-label a { color: var(--amber); text-decoration: underline; }

.btn-submit {
  margin: 1rem 1.5rem 1.5rem;
  width: calc(100% - 3rem);
}

.form-error {
  color: #e55;
  font-size: 0.875rem;
  padding: 0.75rem 1rem;
  background: rgba(220,50,50,0.1);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(220,50,50,0.2);
  display: none;
}

.form-error.visible { display: block; }


.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 2px solid rgba(232,160,32,0.15);
}

/* ============================================
   THANKS PAGE
   ============================================ */
.thanks-stage {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--nav-height) + 2rem) 1.5rem 4rem;
  min-height: 70vh;
}

.thanks-inner {
  text-align: center;
  max-width: 520px;
}

.thanks-icon {
  font-size: 4rem;
  color: var(--amber);
  margin-bottom: 1.5rem;
  filter: drop-shadow(0 4px 12px rgba(232,160,32,0.4));
}

.thanks-heading {
  font-family: 'Familjen Grotesk', sans-serif;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.thanks-text {
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.thanks-countdown {
  font-size: 0.9rem;
  color: rgba(250,247,240,0.55);
  margin-bottom: 2rem;
  padding: 0.75rem 1.25rem;
  background: rgba(232,160,32,0.08);
  border-radius: var(--radius-pill);
  border: 1px solid rgba(232,160,32,0.15);
}

.thanks-btn { margin: 0 auto; }

/* ============================================
   LEGAL PAGES
   ============================================ */
.legal-stage {
  flex: 1;
  padding: calc(var(--nav-height) + 3rem) 1.5rem 5rem;
}

.legal-inner {
  max-width: 800px;
  margin: 0 auto;
}

.legal-header {
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--amber);
}

.legal-header h1 {
  font-family: 'Familjen Grotesk', sans-serif;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.5rem;
}

.legal-date {
  font-size: 0.875rem;
  color: var(--ink-muted);
}

.legal-body { line-height: 1.75; }

.legal-intro {
  font-size: 1.05rem;
  color: var(--ink-muted);
  margin-bottom: 2rem;
  padding: 1.25rem 1.5rem;
  background: var(--amber-pale);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--amber);
}


.privacy-body .legal-block {
  margin-bottom: 2.25rem;
}

.privacy-body h2 {
  font-family: 'Familjen Grotesk', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.875rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--parchment-warm);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.privacy-body h2::before {
  content: '';
  display: inline-block;
  width: 4px;
  height: 1em;
  background: var(--amber);
  border-radius: 2px;
}

.privacy-body p,
.privacy-body li {
  color: var(--ink-muted);
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
}

.privacy-body ul {
  list-style: none;
  padding-left: 0;
}

.privacy-body ul li {
  padding: 0.375rem 0 0.375rem 1.25rem;
  position: relative;
}

.privacy-body ul li::before {
  content: '·';
  position: absolute;
  left: 0;
  color: var(--amber);
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.2;
}


.terms-body .legal-intro { margin-bottom: 2rem; }

.terms-list {
  list-style: none;
  counter-reset: terms-counter;
  padding: 0;
}

.terms-list > li {
  counter-increment: terms-counter;
  margin-bottom: 2rem;
  padding-left: 3.5rem;
  position: relative;
}

.terms-list > li::before {
  content: counter(terms-counter, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 0;
  font-family: 'Familjen Grotesk', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--amber);
  line-height: 1.3;
}

.terms-list h3 {
  font-family: 'Familjen Grotesk', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.625rem;
}

.terms-list p { color: var(--ink-muted); font-size: 0.95rem; }


.cookies-body h2 {
  font-family: 'Familjen Grotesk', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--ink);
  margin-top: 2rem;
  margin-bottom: 0.875rem;
}

.cookies-body p {
  color: var(--ink-muted);
  font-size: 0.95rem;
  margin-bottom: 1rem;
  line-height: 1.75;
}

.cookie-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  margin: 1.5rem 0;
}

.cookie-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 500px;
  background: var(--parchment);
}

.cookie-table thead { background: var(--indigo); }

.cookie-table th {
  font-family: 'Familjen Grotesk', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--parchment);
  padding: 0.875rem 1rem;
  text-align: left;
}

.cookie-table tbody tr { border-bottom: 1px solid var(--parchment-warm); }
.cookie-table tbody tr:hover { background: var(--parchment-warm); }

.cookie-table td {
  padding: 0.875rem 1rem;
  font-size: 0.875rem;
  color: var(--ink-muted);
  vertical-align: middle;
}

.cookie-table code {
  font-family: 'Courier New', monospace;
  font-size: 0.8rem;
  background: var(--parchment-warm);
  padding: 0.15rem 0.4rem;
  border-radius: 4px;
  color: var(--indigo-bright);
}

/* ============================================
   FOOTER
   ============================================ */
.footer-stage {
  background: var(--ink);
  padding: var(--space-lg) 1.5rem var(--space-md);
  border-top: 1px solid rgba(232,160,32,0.12);
}

.footer-inner {
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
}

.footer-logo {
  height: 40px;
  width: auto;
  opacity: 0.9;
  transition: opacity 0.2s ease;
}

.footer-logo:hover { opacity: 1; }

.footer-tagline {
  font-size: 0.9rem;
  color: rgba(250,247,240,0.5);
  max-width: 380px;
  line-height: 1.6;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.25rem 0.5rem;
}

.footer-links a {
  font-size: 0.875rem;
  color: rgba(250,247,240,0.6);
  padding: 0.375rem 0.625rem;
  border-radius: var(--radius-sm);
  transition: color 0.2s ease;
  min-height: 36px;
  display: inline-flex;
  align-items: center;
}

.footer-links a:hover { color: var(--amber); }

.footer-contact {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 1.5rem;
}

.footer-contact span {
  font-size: 0.85rem;
  color: rgba(250,247,240,0.5);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-contact i { color: var(--amber); font-size: 0.8rem; }

.footer-contact a {
  color: rgba(250,247,240,0.5);
  transition: color 0.2s ease;
}

.footer-contact a:hover { color: var(--amber); }

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 1rem;
  padding-top: 0.5rem;
  border-top: 1px solid rgba(250,247,240,0.06);
  width: 100%;
}

.footer-legal a {
  font-size: 0.8rem;
  color: rgba(250,247,240,0.35);
  transition: color 0.2s ease;
}

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

.footer-copy {
  font-size: 0.8rem;
  color: rgba(250,247,240,0.25);
}

/* ============================================
   COOKIE CONSENT
   ============================================ */
.kv-cookie-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--ink-soft);
  border-bottom: 2px solid var(--amber);
  padding: 0.75rem 1.5rem;
  transform: translateY(-110%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}

.kv-cookie-bar.visible { transform: translateY(0); }

.kv-cookie-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.875rem;
}

.kv-cookie-text {
  font-size: 0.875rem;
  color: rgba(250,247,240,0.8);
  flex: 1;
  min-width: 200px;
}

.kv-cookie-actions {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.kv-btn-accept {
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-pill);
  background: var(--amber);
  color: var(--ink);
  transition: background 0.2s ease, transform 0.2s ease;
  min-height: 36px;
}

.kv-btn-accept:hover { background: var(--amber-light); transform: translateY(-1px); }

.kv-btn-customize {
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(250,247,240,0.25);
  color: rgba(250,247,240,0.8);
  transition: border-color 0.2s ease, color 0.2s ease;
  min-height: 36px;
}

.kv-btn-customize:hover { border-color: var(--amber); color: var(--amber); }

.kv-btn-reject {
  font-size: 0.8rem;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-pill);
  color: rgba(250,247,240,0.45);
  transition: color 0.2s ease;
  min-height: 36px;
}

.kv-btn-reject:hover { color: var(--parchment); }


.kv-cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(15,14,26,0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.kv-cookie-modal.visible {
  opacity: 1;
  pointer-events: all;
}

.kv-cookie-modal-inner {
  background: var(--ink-soft);
  border-radius: var(--radius-lg);
  padding: 2rem;
  max-width: 480px;
  width: 100%;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(232,160,32,0.2);
}

.kv-cookie-modal-inner h2 {
  font-family: 'Familjen Grotesk', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--parchment);
  margin-bottom: 1.5rem;
}

.kv-cookie-category {
  padding: 1rem 0;
  border-bottom: 1px solid rgba(250,247,240,0.06);
}

.kv-cookie-category:last-of-type { border-bottom: none; }

.kv-cookie-cat-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.5rem;
}

.kv-cookie-cat-header span:last-child {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--parchment);
  flex: 1;
}

.kv-tag-always {
  font-size: 0.7rem !important;
  font-weight: 600 !important;
  padding: 0.2rem 0.6rem;
  background: rgba(34,166,74,0.15);
  color: #22a64a !important;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(34,166,74,0.25);
  white-space: nowrap;
}

.kv-cookie-category p {
  font-size: 0.8rem;
  color: rgba(250,247,240,0.5);
  line-height: 1.5;
}

.kv-switch {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 22px;
  flex-shrink: 0;
}

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

.kv-slider {
  position: absolute;
  cursor: pointer;
  inset: 0;
  background: rgba(250,247,240,0.15);
  border-radius: 22px;
  transition: background 0.3s ease;
}

.kv-slider::before {
  content: '';
  position: absolute;
  height: 16px;
  width: 16px;
  left: 3px;
  bottom: 3px;
  background: var(--parchment);
  border-radius: 50%;
  transition: transform 0.3s ease;
}

.kv-switch input:checked + .kv-slider { background: var(--amber); }
.kv-switch input:checked + .kv-slider::before { transform: translateX(18px); }

.kv-cookie-modal-actions {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

/* ============================================
   ABOUT PAGE - Slovak context additional
   ============================================ */
.slovak-img { transition: transform 0.3s ease; }
.slovak-img:hover { transform: scale(1.02); }

/* ============================================
   RESPONSIVE BREAKPOINTS
   ============================================ */
@media (min-width: 640px) {
  .gallery-4 { grid-template-columns: repeat(2, 1fr); }
  .gallery-3 { grid-template-columns: repeat(2, 1fr); }
  .gallery-2-wide { grid-template-columns: repeat(2, 1fr); }
  .coop-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-methods-grid { grid-template-columns: repeat(2, 1fr); }
  .course-img-feature { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 768px) {
  .spotlight-grid { grid-template-columns: 1fr 1fr; }
  .research-split { grid-template-columns: 1fr 1fr; }
  .about-intro-grid { grid-template-columns: 1fr 1fr; }
  .slovak-context-grid { grid-template-columns: 1fr 1fr; }
  .contact-layout { grid-template-columns: 1fr 1fr; }
  .audience-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (min-width: 1024px) {
  .nav-links { display: flex; }
  .nav-hamburger { display: none; }
  .gallery-4 { grid-template-columns: repeat(4, 1fr); }
  .gallery-3 { grid-template-columns: repeat(3, 1fr); }
  .gallery-2-wide { grid-template-columns: repeat(2, 1fr); }
  .coop-grid { grid-template-columns: repeat(3, 1fr); }
  .contact-methods-grid { grid-template-columns: repeat(3, 1fr); }
  .section-card { padding: var(--space-lg) calc(var(--space-lg) * 1.25); }
}

@media (max-width: 639px) {
  .canvas-section { padding: 3rem 1rem; }
  .section-card { padding: 2rem 1.25rem; border-radius: var(--radius-lg); }
  .shelf-card { min-width: 180px; }
  .stage-actions { flex-direction: column; }
  .cta-actions { flex-direction: column; align-items: center; }
  .audience-grid { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .format-item { grid-template-columns: auto 1fr; gap: 1rem; }
  .kv-cookie-inner { flex-direction: column; align-items: flex-start; }
  .process-step { flex-direction: column; gap: 1rem; }
}