/* ============================================
   LYNVORIXTOV – MAIN STYLESHEET
   Monochrome Plus Design System
   ============================================ */


:root {
  --slate-50: #f8f9fa;
  --slate-100: #f1f3f5;
  --slate-150: #eaecef;
  --slate-200: #e9ecef;
  --slate-300: #dee2e6;
  --slate-400: #adb5bd;
  --slate-500: #6c757d;
  --slate-600: #495057;
  --slate-700: #343a40;
  --slate-800: #212529;
  --slate-900: #141618;

  --accent: #c9763a;
  --accent-light: #e8934f;
  --accent-dark: #a05e2a;
  --accent-pale: rgba(201,118,58,0.12);
  --accent-pale-strong: rgba(201,118,58,0.2);

  --shadow-xs: 0 1px 2px rgba(20,22,24,0.06);
  --shadow-sm: 0 1px 3px rgba(20,22,24,0.08), 0 1px 2px rgba(20,22,24,0.06);
  --shadow-md: 0 4px 12px rgba(20,22,24,0.1), 0 2px 6px rgba(20,22,24,0.08);
  --shadow-lg: 0 12px 32px rgba(20,22,24,0.14), 0 4px 12px rgba(20,22,24,0.1);
  --shadow-xl: 0 20px 48px rgba(20,22,24,0.18), 0 8px 20px rgba(20,22,24,0.12);
  --shadow-2xl: 0 32px 64px rgba(20,22,24,0.22), 0 12px 28px rgba(20,22,24,0.16);

  --radius-xs: 4px;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-2xl: 40px;

  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
}


*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }
body {
  font-family: 'Manrope', sans-serif;
  background: var(--slate-100);
  color: var(--slate-800);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
button { cursor: pointer; font-family: inherit; }

/* ============================================
   NAVIGATION
   ============================================ */

.nav-dropdown-wrap { position: relative; }
.nav-dropdown-trigger { cursor: pointer; }
.nav-dropdown-panel {
  position: absolute;
  top: calc(100% + 0.75rem);
  left: 0;
  background: var(--slate-900);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  padding: 0.5rem;
  min-width: 220px;
  box-shadow: var(--shadow-xl);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  z-index: 200;
}
.nav-dropdown-wrap:hover .nav-dropdown-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-dropdown-panel a {
  display: block;
  padding: 0.625rem 0.875rem;
  color: rgba(248,249,250,0.8) !important;
  font-size: 0.85rem;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
}
.nav-dropdown-panel a:hover {
  background: rgba(201,118,58,0.15) !important;
  color: var(--accent-light) !important;
}


.mobile-curtain {
  position: fixed;
  inset: 0;
  background: var(--slate-900);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  clip-path: inset(0 0 100% 0);
  transition: clip-path 0.5s cubic-bezier(0.77,0,0.175,1);
  pointer-events: none;
}
.mobile-curtain.is-open {
  clip-path: inset(0 0 0% 0);
  pointer-events: all;
}
.mobile-curtain-inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-4);
  width: 100%;
  padding: var(--space-8);
}
.mobile-nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  width: 100%;
  max-width: 320px;
}
.mobile-nav-links li {
  opacity: 0;
  transform: translateY(-20px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.mobile-curtain.is-open .mobile-nav-links li {
  opacity: 1;
  transform: translateY(0);
}
.mobile-curtain.is-open .mobile-nav-links li:nth-child(1) { transition-delay: 0.1s; }
.mobile-curtain.is-open .mobile-nav-links li:nth-child(2) { transition-delay: 0.18s; }
.mobile-curtain.is-open .mobile-nav-links li:nth-child(3) { transition-delay: 0.26s; }
.mobile-curtain.is-open .mobile-nav-links li:nth-child(4) { transition-delay: 0.34s; }
.mobile-curtain.is-open .mobile-nav-links li:nth-child(5) { transition-delay: 0.42s; }

.mobile-nav-links a {
  display: block;
  padding: 1rem 1.5rem;
  font-family: 'Newsreader', serif;
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 600;
  color: var(--slate-50);
  text-decoration: none;
  border-radius: var(--radius-md);
  transition: background 0.2s, color 0.2s;
}
.mobile-nav-links a:hover {
  background: rgba(201,118,58,0.15);
  color: var(--accent-light);
}
.mobile-curtain-close {
  margin-top: var(--space-8);
  padding: 0.75rem 2rem;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-md);
  color: var(--slate-400);
  font-size: 0.875rem;
  font-weight: 500;
  transition: background 0.2s, color 0.2s;
  opacity: 0;
  transition: opacity 0.3s ease 0.5s, background 0.2s, color 0.2s;
}
.mobile-curtain.is-open .mobile-curtain-close {
  opacity: 1;
}
.mobile-curtain-close:hover {
  background: rgba(255,255,255,0.12);
  color: var(--slate-200);
}

@media (max-width: 900px) {
  .nav-links, .nav-cta-wrap { display: none !important; }
  .nav-hamburger { display: flex !important; }
}

/* ============================================
   HERO SECTION (/)
   ============================================ */

.hero-layout {
  max-width: 1320px;
  margin: 0 auto;
  padding: 7rem 2rem 5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
  position: relative;
  z-index: 1;
  width: 100%;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: var(--space-4);
  padding: 0.35rem 0.875rem;
  background: rgba(201,118,58,0.15);
  border-radius: 100px;
  border: 1px solid rgba(201,118,58,0.25);
}

.hero-display-heading {
  font-family: 'Newsreader', serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--slate-50);
  margin-bottom: var(--space-6);
  letter-spacing: -0.03em;
}

.hero-accent-word {
  color: var(--accent-light);
  font-style: italic;
}

.hero-lead-text {
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(248,249,250,0.72);
  margin-bottom: var(--space-8);
  max-width: 520px;
}

.hero-actions {
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
  margin-bottom: var(--space-8);
}

.primary-action {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  background: var(--accent);
  color: #fff;
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-md);
  border: none;
  box-shadow: 0 4px 16px rgba(201,118,58,0.35), 0 1px 3px rgba(20,22,24,0.1);
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.primary-action:hover {
  background: var(--accent-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,118,58,0.4), 0 2px 6px rgba(20,22,24,0.12);
}

.secondary-action {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  background: rgba(248,249,250,0.08);
  color: var(--slate-50);
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-md);
  border: 1px solid rgba(248,249,250,0.15);
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}
.secondary-action:hover {
  background: rgba(248,249,250,0.12);
  border-color: rgba(248,249,250,0.25);
  transform: translateY(-2px);
}

.ghost-action {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  background: transparent;
  color: var(--slate-600);
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-md);
  border: 1px solid var(--slate-300);
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.ghost-action:hover {
  background: var(--slate-200);
  border-color: var(--slate-400);
  color: var(--slate-800);
}

.hero-feature-row {
  display: flex;
  gap: var(--space-6);
  flex-wrap: wrap;
}

.hero-feature-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: rgba(248,249,250,0.55);
  font-weight: 500;
}
.hero-feature-item i { color: var(--accent-light); }

.hero-visual-block {
  display: flex;
  justify-content: flex-end;
  position: relative;
}

.hero-image-frame {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-2xl), 0 0 0 1px rgba(255,255,255,0.06);
  max-width: 520px;
  width: 100%;
}

.hero-main-image {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.hero-image-frame:hover .hero-main-image { transform: scale(1.03); }

.hero-image-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background: rgba(20,22,24,0.85);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 0.625rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--slate-50);
  font-size: 0.8125rem;
  font-weight: 600;
}
.hero-image-badge i { color: var(--accent-light); }

/* ============================================
   LAYOUT WITH SIDEBAR
   ============================================ */

.layout-with-sidebar {
  display: grid;
  grid-template-columns: 280px 1fr;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 2rem;
  gap: var(--space-12);
  align-items: start;
}

.persistent-sidebar {
  position: sticky;
  top: 100px;
  padding: var(--space-6) 0;
}

.sidebar-inner {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

.sidebar-section-block {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  box-shadow: var(--shadow-sm), 0 0 0 1px rgba(20,22,24,0.04);
}

.sidebar-heading {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--slate-500);
  margin-bottom: var(--space-4);
}

.sidebar-nav {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}

.sidebar-link {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.625rem 0.75rem;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--slate-600);
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.sidebar-link:hover {
  background: var(--slate-100);
  color: var(--slate-900);
}
.sidebar-link i { color: var(--slate-400); font-size: 0.8rem; width: 16px; }

.sidebar-highlight-block {
  background: linear-gradient(135deg, var(--slate-900) 0%, #1e2226 100%);
  color: var(--slate-50);
  text-align: center;
}
.sidebar-highlight-block h4 {
  font-family: 'Newsreader', serif;
  font-size: 1rem;
  font-weight: 600;
  margin: var(--space-3) 0 var(--space-2);
  color: var(--slate-50);
}
.sidebar-highlight-block p {
  font-size: 0.8125rem;
  color: rgba(248,249,250,0.65);
  line-height: 1.55;
  margin-bottom: var(--space-4);
}

.sidebar-icon-large {
  font-size: 2rem;
  color: var(--accent-light);
}

.sidebar-cta-btn {
  display: block;
  padding: 0.625rem 1rem;
  background: var(--accent);
  color: #fff;
  font-size: 0.8125rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  text-decoration: none;
  text-align: center;
  transition: background 0.2s, transform 0.2s;
}
.sidebar-cta-btn:hover {
  background: var(--accent-light);
  transform: translateY(-1px);
}

.sidebar-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.8125rem;
  color: var(--slate-600);
  margin-bottom: var(--space-3);
  line-height: 1.5;
}
.sidebar-contact-item i { color: var(--accent); margin-top: 2px; font-size: 0.8rem; }
.sidebar-contact-item a {
  color: var(--slate-700);
  text-decoration: none;
  transition: color 0.2s;
}
.sidebar-contact-item a:hover { color: var(--accent); }

.main-scroll-content {
  padding: var(--space-8) 0 var(--space-16);
  min-width: 0;
}

/* ============================================
   CONTENT SECTIONS
   ============================================ */

.content-section {
  margin-bottom: var(--space-20);
}

.section-label-row {
  margin-bottom: var(--space-8);
}

.section-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--space-3);
}

.section-heading-lg {
  font-family: 'Newsreader', serif;
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--slate-900);
  letter-spacing: -0.02em;
  margin-bottom: var(--space-4);
}

.section-heading-centered {
  font-family: 'Newsreader', serif;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--slate-900);
  letter-spacing: -0.02em;
  margin-bottom: var(--space-4);
}

.section-subtext {
  font-size: 1.0625rem;
  color: var(--slate-500);
  line-height: 1.65;
  max-width: 560px;
}

.body-text-block {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--slate-600);
  margin-bottom: var(--space-4);
}

.intro-text-large {
  font-size: 1.125rem;
  line-height: 1.75;
  color: var(--slate-600);
  max-width: 720px;
}


.alternating-feature-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
  align-items: center;
  margin-bottom: var(--space-16);
  position: relative;
}

.alternating-feature-block.reverse-layout {
  direction: rtl;
}
.alternating-feature-block.reverse-layout > * {
  direction: ltr;
}

.feature-visual-side {
  position: relative;
}

.feature-image-wrap {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  position: relative;
}
.feature-image-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201,118,58,0.08) 0%, transparent 60%);
  z-index: 1;
  pointer-events: none;
}

.feature-image {
  width: 100%;
  height: 380px;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.feature-image-wrap:hover .feature-image { transform: scale(1.04); }

.feature-step-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: var(--space-3);
}

.inline-link-action {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  margin-top: var(--space-4);
  transition: gap 0.2s, color 0.2s;
}
.inline-link-action:hover {
  color: var(--accent-dark);
  gap: 0.75rem;
}


.visual-break-section {
  background: var(--slate-900);
  border-radius: var(--radius-xl);
  padding: var(--space-12);
  margin-left: -1rem;
  margin-right: -1rem;
  position: relative;
  overflow: hidden;
}
.visual-break-section::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(201,118,58,0.1) 0%, transparent 70%);
  top: -100px;
  right: -100px;
  border-radius: 50%;
  pointer-events: none;
}
.visual-break-section .section-heading-centered,
.visual-break-section .section-label-row .section-eyebrow { color: var(--accent-light); }
.visual-break-section .section-heading-centered { color: var(--slate-50); }
.visual-break-section .section-subtext { color: rgba(248,249,250,0.6); }

/* ============================================
   HOW IT WORKS
   ============================================ */

.how-it-works-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  margin-top: var(--space-8);
  position: relative;
  z-index: 1;
}

.step-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s;
}
.step-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(20,22,24,0.3);
  border-color: rgba(201,118,58,0.3);
}
.step-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent) 0%, var(--accent-light) 100%);
  opacity: 0;
  transition: opacity 0.3s;
}
.step-card:hover::before { opacity: 1; }

.step-number-badge {
  font-family: 'Newsreader', serif;
  font-size: 3rem;
  font-weight: 700;
  color: rgba(201,118,58,0.2);
  line-height: 1;
  margin-bottom: var(--space-4);
  transition: color 0.3s;
}
.step-card:hover .step-number-badge { color: rgba(201,118,58,0.4); }

.step-icon-wrap {
  width: 48px;
  height: 48px;
  background: rgba(201,118,58,0.15);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-4);
  font-size: 1.25rem;
  color: var(--accent-light);
  transition: background 0.3s;
}
.step-card:hover .step-icon-wrap { background: rgba(201,118,58,0.25); }

.step-title {
  font-family: 'Newsreader', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--slate-50);
  margin-bottom: var(--space-3);
}

.step-description {
  font-size: 0.9rem;
  line-height: 1.65;
  color: rgba(248,249,250,0.6);
}

/* ============================================
   REGIONS GRID
   ============================================ */

.regions-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-4);
}

.region-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  box-shadow: var(--shadow-sm), 0 0 0 1px rgba(20,22,24,0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.region-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.region-icon {
  width: 40px;
  height: 40px;
  background: var(--accent-pale);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1rem;
  margin-bottom: var(--space-3);
}

.region-card h4 {
  font-family: 'Newsreader', serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--slate-800);
  margin-bottom: var(--space-2);
}

.region-card p {
  font-size: 0.8125rem;
  line-height: 1.6;
  color: var(--slate-500);
}

/* ============================================
   DUAL AUDIENCE GRID
   ============================================ */

.dual-audience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-6);
}

.audience-card {
  background: #fff;
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  box-shadow: var(--shadow-md), 0 0 0 1px rgba(20,22,24,0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.audience-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.audience-card.accent-card {
  background: linear-gradient(135deg, var(--slate-900) 0%, #1a1f24 100%);
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(201,118,58,0.2);
}

.audience-card-header {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  margin-bottom: var(--space-6);
}

.audience-icon-wrap {
  width: 52px;
  height: 52px;
  background: var(--accent-pale);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--accent);
  flex-shrink: 0;
}
.accent-card .audience-icon-wrap {
  background: rgba(201,118,58,0.2);
  color: var(--accent-light);
}

.audience-card-header h3 {
  font-family: 'Newsreader', serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--slate-900);
}
.accent-card .audience-card-header h3 { color: var(--slate-50); }

.audience-feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin-bottom: var(--space-8);
}

.audience-feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.9rem;
  color: var(--slate-600);
  line-height: 1.5;
}
.accent-card .audience-feature-list li { color: rgba(248,249,250,0.7); }

.audience-feature-list li i {
  color: var(--accent);
  margin-top: 2px;
  flex-shrink: 0;
  font-size: 0.8rem;
}
.accent-card .audience-feature-list li i { color: var(--accent-light); }

.audience-action-btn {
  display: block;
  padding: 0.75rem 1.25rem;
  background: var(--slate-100);
  color: var(--slate-800);
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  text-decoration: none;
  text-align: center;
  transition: background 0.2s, color 0.2s, transform 0.2s;
}
.audience-action-btn:hover {
  background: var(--slate-200);
  transform: translateY(-1px);
}
.audience-action-btn.accent-btn {
  background: var(--accent);
  color: #fff;
}
.audience-action-btn.accent-btn:hover {
  background: var(--accent-light);
}

/* ============================================
   COMPARISON TABLE
   ============================================ */

.comparison-table-wrap {
  position: relative;
  z-index: 1;
}

.comparison-table-scroll {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  min-width: 620px;
}

.comparison-table thead tr {
  background: var(--slate-800);
}

.comparison-table th {
  padding: 1.25rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--slate-300);
  text-align: left;
  position: relative;
}

.comparison-table th.recommended-col {
  background: rgba(201,118,58,0.2);
  color: var(--accent-light);
}

.recommended-badge {
  display: block;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-top: 0.25rem;
  opacity: 0.8;
}

.comparison-table .feature-col {
  font-weight: 600;
  color: var(--slate-700);
  background: var(--slate-50);
  min-width: 180px;
}

.comparison-table td {
  padding: 1rem 1.5rem;
  font-size: 0.9rem;
  color: var(--slate-600);
  border-bottom: 1px solid var(--slate-200);
  transition: background 0.15s;
}

.comparison-table tbody tr:hover td { background: var(--slate-50); }
.comparison-table tbody tr:hover td.feature-col { background: var(--slate-100); }

.comparison-table td.recommended-col {
  background: rgba(201,118,58,0.04);
  font-weight: 500;
  color: var(--slate-700);
}
.comparison-table tbody tr:hover td.recommended-col { background: rgba(201,118,58,0.08); }

.check-icon {
  color: var(--accent);
  font-size: 1rem;
}

/* ============================================
   CTA STRIP
   ============================================ */

.cta-strip-section {
  background: #fff;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(20,22,24,0.04);
  overflow: hidden;
}

.cta-strip-inner {
  padding: var(--space-12) var(--space-8);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-8);
  flex-wrap: wrap;
  position: relative;
}
.cta-strip-inner::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--accent) 0%, var(--accent-light) 100%);
}

.cta-strip-text h2 {
  font-family: 'Newsreader', serif;
  font-size: clamp(1.4rem, 2.5vw, 1.875rem);
  font-weight: 700;
  color: var(--slate-900);
  margin-bottom: var(--space-2);
}
.cta-strip-text p {
  font-size: 0.9375rem;
  color: var(--slate-500);
}

.cta-strip-actions {
  display: flex;
  gap: var(--space-3);
  flex-wrap: wrap;
  flex-shrink: 0;
}

/* ============================================
   INNER PAGE HERO
   ============================================ */

.inner-page-hero {
  background: linear-gradient(160deg, var(--slate-900) 0%, #1e2226 60%, #252b31 100%);
  padding: 8rem 2rem 5rem;
  position: relative;
  overflow: hidden;
}
.inner-page-hero::after {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(201,118,58,0.1) 0%, transparent 70%);
  bottom: -200px;
  right: -100px;
  border-radius: 50%;
  pointer-events: none;
}

.inner-hero-content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.inner-page-title {
  font-family: 'Newsreader', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--slate-50);
  line-height: 1.15;
  margin-bottom: var(--space-4);
  letter-spacing: -0.02em;
}

.inner-page-subtitle {
  font-size: 1.125rem;
  color: rgba(248,249,250,0.65);
  line-height: 1.65;
  max-width: 540px;
}

.inner-page-layout {
  padding: var(--space-16) 0 var(--space-24);
}

.inner-page-container {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ============================================
   ABOUT PAGE
   ============================================ */

.about-split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
  align-items: start;
  margin-bottom: var(--space-16);
}

.about-image-col { position: relative; }
.about-full-image {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
}

.about-text-col { padding-top: var(--space-4); }

.values-horizontal-block {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-6);
}

.value-item {
  padding: var(--space-6);
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm), 0 0 0 1px rgba(20,22,24,0.04);
  transition: transform 0.25s, box-shadow 0.25s;
}
.value-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.value-icon-wrap {
  width: 44px;
  height: 44px;
  background: var(--accent-pale);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--accent);
  margin-bottom: var(--space-4);
}

.value-item h4 {
  font-family: 'Newsreader', serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--slate-800);
  margin-bottom: var(--space-2);
}
.value-item p {
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--slate-500);
}

.topic-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-4);
  margin-top: var(--space-6);
}

.topic-card {
  background: var(--slate-50);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.topic-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}

.topic-icon {
  font-size: 1.5rem;
  color: var(--accent);
  margin-bottom: var(--space-3);
  display: block;
}

.topic-card h4 {
  font-family: 'Newsreader', serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--slate-800);
  margin-bottom: var(--space-2);
}
.topic-card p {
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--slate-500);
}

.prose-block { max-width: 720px; }

/* ============================================
   CONTENT PAGE (zawartosc)
   ============================================ */

.content-grid-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-8);
  align-items: start;
}

.info-highlight-card {
  background: var(--slate-900);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  color: var(--slate-50);
}

.info-highlight-card h4 {
  font-family: 'Newsreader', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--slate-50);
  margin-bottom: var(--space-4);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.info-highlight-card h4 i { color: var(--accent-light); }

.info-checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.info-checklist li {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.9rem;
  color: rgba(248,249,250,0.75);
}
.info-checklist li i { color: var(--accent-light); font-size: 0.8rem; }

.exhibitor-cards-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-4);
  margin-top: var(--space-6);
}

.exhibitor-sample-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  box-shadow: var(--shadow-sm), 0 0 0 1px rgba(20,22,24,0.04);
  transition: transform 0.25s, box-shadow 0.25s;
}
.exhibitor-sample-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.exhibitor-craft-badge {
  width: 44px;
  height: 44px;
  background: var(--accent-pale);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--accent);
  margin-bottom: var(--space-3);
}

.exhibitor-sample-card h4 {
  font-family: 'Newsreader', serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--slate-800);
  margin-bottom: var(--space-2);
}
.exhibitor-sample-card p {
  font-size: 0.8125rem;
  line-height: 1.6;
  color: var(--slate-500);
}

.regions-detail-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-4);
  position: relative;
  z-index: 1;
}

.region-detail-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  transition: border-color 0.25s, background 0.25s;
}
.region-detail-card:hover {
  border-color: rgba(201,118,58,0.3);
  background: rgba(255,255,255,0.09);
}

.region-detail-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: var(--space-3);
}
.region-detail-header i { color: var(--accent-light); font-size: 1.1rem; }
.region-detail-header h4 {
  font-family: 'Newsreader', serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--slate-50);
}

.region-detail-card p {
  font-size: 0.875rem;
  line-height: 1.65;
  color: rgba(248,249,250,0.6);
}

.practical-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-4);
}

.practical-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  box-shadow: var(--shadow-sm), 0 0 0 1px rgba(20,22,24,0.04);
  transition: transform 0.25s, box-shadow 0.25s;
}
.practical-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.practical-icon {
  font-size: 1.5rem;
  color: var(--accent);
  margin-bottom: var(--space-3);
  display: block;
}

.practical-card h4 {
  font-family: 'Newsreader', serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--slate-800);
  margin-bottom: var(--space-2);
}
.practical-card p {
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--slate-500);
}

/* ============================================
   PHOTO GALLERY
   ============================================ */

.photo-gallery-masonry {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 240px;
  gap: var(--space-4);
}

.gallery-item { position: relative; overflow: hidden; border-radius: var(--radius-lg); }
.gallery-item-wide { grid-column: span 2; }

.gallery-image-wrap {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.gallery-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover .gallery-image { transform: scale(1.06); }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20,22,24,0.7) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 1rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }

.gallery-overlay span {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--slate-50);
}

.workshop-photos-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-6);
}

.workshop-photo-card {
  background: #fff;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md), 0 0 0 1px rgba(20,22,24,0.04);
  transition: transform 0.25s, box-shadow 0.25s;
}
.workshop-photo-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.workshop-photo {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.workshop-photo-caption {
  padding: var(--space-6);
}
.workshop-photo-caption h4 {
  font-family: 'Newsreader', serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--slate-800);
  margin-bottom: var(--space-2);
}
.workshop-photo-caption p {
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--slate-500);
}

.photo-info-section { }

.photo-info-card {
  background: var(--slate-900);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  display: flex;
  align-items: flex-start;
  gap: var(--space-8);
}

.photo-info-icon {
  font-size: 2.5rem;
  color: var(--accent-light);
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.photo-info-text h3 {
  font-family: 'Newsreader', serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--slate-50);
  margin-bottom: var(--space-3);
}
.photo-info-text p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(248,249,250,0.65);
  margin-bottom: var(--space-3);
}
.photo-info-text .inline-link-action { color: var(--accent-light); }
.photo-info-text .inline-link-action:hover { color: var(--accent); }

/* ============================================
   CONTACT PAGE
   ============================================ */

.contact-layout-split {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--space-12);
  align-items: start;
}

.contact-form-block {
  background: #fff;
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(20,22,24,0.04);
  margin-top: var(--space-6);
}

.form-field-group {
  margin-bottom: var(--space-4);
}

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--slate-700);
  margin-bottom: var(--space-2);
}

.form-input, .form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  background: var(--slate-50);
  border: 1.5px solid var(--slate-200);
  border-radius: var(--radius-md);
  font-family: 'Manrope', sans-serif;
  font-size: 0.9375rem;
  color: var(--slate-800);
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
  outline: none;
}
.form-input:focus, .form-textarea:focus {
  border-color: var(--accent);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(201,118,58,0.12);
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--slate-400); }
.form-textarea { resize: vertical; min-height: 120px; }

.form-privacy-check {
  margin-bottom: var(--space-6);
}

.privacy-label-wrap {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
}
.privacy-label-wrap input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--accent);
  cursor: pointer;
}
.privacy-check-text {
  font-size: 0.8125rem;
  line-height: 1.6;
  color: var(--slate-500);
}
.privacy-check-text a {
  color: var(--accent);
  text-decoration: underline;
  transition: color 0.2s;
}
.privacy-check-text a:hover { color: var(--accent-dark); }

.form-error-msg {
  padding: 0.75rem 1rem;
  background: #fff0f0;
  border: 1px solid #fca5a5;
  border-radius: var(--radius-md);
  color: #dc2626;
  font-size: 0.875rem;
  margin-bottom: var(--space-4);
}

.form-submit-btn {
  width: 100%;
  justify-content: center;
  font-size: 1rem;
  padding: 1rem 2rem;
}

.contact-detail-cards {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  margin-top: var(--space-6);
  margin-bottom: var(--space-6);
}

.contact-detail-card {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
  padding: var(--space-4);
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm), 0 0 0 1px rgba(20,22,24,0.04);
  transition: transform 0.2s, box-shadow 0.2s;
}
.contact-detail-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.contact-detail-icon {
  width: 44px;
  height: 44px;
  background: var(--accent-pale);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--accent);
  flex-shrink: 0;
}

.contact-detail-card h4 {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--slate-400);
  margin-bottom: 0.25rem;
}
.contact-detail-card p, .contact-detail-card a {
  font-size: 0.9375rem;
  color: var(--slate-700);
  text-decoration: none;
  transition: color 0.2s;
}
.contact-detail-card a:hover { color: var(--accent); }

.contact-note-block {
  background: var(--slate-50);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
}
.contact-note-block h4 {
  font-family: 'Newsreader', serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--slate-800);
  margin-bottom: var(--space-3);
}
.contact-note-block p {
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--slate-500);
  margin-bottom: var(--space-3);
}

.service-area-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-8);
  align-items: start;
  margin-top: var(--space-6);
}

.area-highlight-row {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin-top: var(--space-6);
}

.area-highlight-item {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--slate-700);
}
.area-highlight-item i { color: var(--accent); }

.map-container-block {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

/* ============================================
   THANKS PAGE
   ============================================ */

.thanks-main-block {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6rem 2rem;
  text-align: center;
}

.thanks-content-wrap {
  max-width: 480px;
}

.thanks-icon-wrap {
  font-size: 4rem;
  color: var(--accent);
  margin-bottom: var(--space-6);
  opacity: 0.8;
}

.thanks-heading {
  font-family: 'Newsreader', serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--slate-900);
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: var(--space-4);
}

.thanks-subtext {
  font-size: 1.125rem;
  color: var(--slate-500);
  margin-bottom: var(--space-8);
}

.thanks-home-btn { margin: 0 auto; }

/* ============================================
   LEGAL PAGES
   ============================================ */

.legal-page-wrap {
  padding: var(--space-24) 0;
}

.legal-page-container {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 2rem;
}

.legal-page-header {
  padding: 6rem 0 3rem;
  border-bottom: 1px solid var(--slate-200);
  margin-bottom: var(--space-8);
}

.legal-page-title {
  font-family: 'Newsreader', serif;
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--slate-900);
  margin-bottom: var(--space-3);
  letter-spacing: -0.02em;
}

.legal-update-date {
  font-size: 0.875rem;
  color: var(--slate-400);
}

.legal-prose h2 {
  font-family: 'Newsreader', serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--slate-800);
  margin: 2.5rem 0 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--slate-200);
}

.legal-prose p {
  font-size: 0.9375rem;
  line-height: 1.8;
  color: var(--slate-600);
  margin-bottom: 1.25rem;
}

.legal-back-link {
  margin-top: var(--space-12);
  padding-top: var(--space-8);
  border-top: 1px solid var(--slate-200);
}
.legal-back-link a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  transition: gap 0.2s, color 0.2s;
}
.legal-back-link a:hover {
  color: var(--accent-dark);
  gap: 0.75rem;
}

/* ============================================
   FOOTER
   ============================================ */

.site-footer {
  background: var(--slate-900);
  color: var(--slate-300);
}

.footer-testimonial-band {
  background: rgba(201,118,58,0.08);
  border-top: 1px solid rgba(201,118,58,0.15);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  padding: var(--space-12) var(--space-8);
}

.footer-testimonial-inner {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.footer-quote-icon {
  font-size: 2rem;
  color: var(--accent);
  opacity: 0.6;
  margin-bottom: var(--space-4);
}

.footer-quote-text {
  font-family: 'Newsreader', serif;
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 400;
  font-style: italic;
  color: var(--slate-200);
  line-height: 1.65;
  margin-bottom: var(--space-4);
}

.footer-quote-attribution {
  font-size: 0.8125rem;
  color: var(--slate-500);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.footer-main-band {
  padding: var(--space-12) var(--space-8) var(--space-8);
  max-width: 1320px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-8);
  margin-bottom: var(--space-8);
}

.footer-brand-col {}

.footer-logo-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  margin-bottom: var(--space-4);
}
.footer-logo { width: 32px; height: 32px; }
.footer-brand-name {
  font-family: 'Newsreader', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--slate-50);
}

.footer-brand-desc {
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--slate-500);
  margin-bottom: var(--space-4);
  max-width: 300px;
}

.footer-address, .footer-phone {
  font-size: 0.8125rem;
  color: var(--slate-500);
  line-height: 1.6;
  text-decoration: none;
  display: block;
  margin-bottom: var(--space-1);
  transition: color 0.2s;
}
.footer-phone:hover { color: var(--accent-light); }

.footer-links-col h4 {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--slate-400);
  margin-bottom: var(--space-4);
}

.footer-links-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.footer-links-col ul li {
  font-size: 0.875rem;
  color: var(--slate-500);
}

.footer-links-col ul li a {
  color: var(--slate-500);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links-col ul li a:hover { color: var(--slate-200); }

.footer-bottom-bar {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: var(--space-6);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-3);
}

.footer-bottom-bar p {
  font-size: 0.8125rem;
  color: var(--slate-600);
}
.footer-bottom-bar a {
  color: var(--slate-500);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-bottom-bar a:hover { color: var(--slate-300); }

/* ============================================
   COOKIE CONSENT
   ============================================ */

.cookie-consent-card {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 340px;
  background: var(--slate-900);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-2xl), 0 0 0 1px rgba(201,118,58,0.1);
  z-index: 9999;
  overflow: hidden;
  transform: translateY(120%);
  opacity: 0;
  transition: transform 0.45s cubic-bezier(0.34,1.56,0.64,1), opacity 0.35s ease;
}
.cookie-consent-card.is-visible {
  transform: translateY(0);
  opacity: 1;
}
.cookie-consent-card.is-expanded { }

.cookie-card-inner {
  padding: 1.5rem;
}

.cookie-icon-wrap {
  width: 48px;
  height: 48px;
  background: rgba(201,118,58,0.15);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--accent-light);
  margin-bottom: 1rem;
}

.cookie-card-title {
  font-family: 'Newsreader', serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--slate-50);
  margin-bottom: 0.5rem;
}

.cookie-card-text {
  font-size: 0.8125rem;
  line-height: 1.6;
  color: rgba(248,249,250,0.6);
  margin-bottom: 1.25rem;
}
.cookie-card-text a {
  color: var(--accent-light);
  text-decoration: underline;
  transition: color 0.2s;
}

.cookie-card-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.cookie-btn-accept {
  padding: 0.75rem 1rem;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  font-family: 'Manrope', sans-serif;
}
.cookie-btn-accept:hover { background: var(--accent-light); transform: translateY(-1px); }

.cookie-btn-customize {
  padding: 0.75rem 1rem;
  background: rgba(255,255,255,0.06);
  color: var(--slate-300);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s;
  font-family: 'Manrope', sans-serif;
}
.cookie-btn-customize:hover { background: rgba(255,255,255,0.1); }

.cookie-btn-reject {
  padding: 0.625rem 1rem;
  background: transparent;
  color: var(--slate-500);
  border: none;
  border-radius: var(--radius-md);
  font-size: 0.8125rem;
  font-weight: 500;
  cursor: pointer;
  transition: color 0.2s;
  font-family: 'Manrope', sans-serif;
}
.cookie-btn-reject:hover { color: var(--slate-300); }

.cookie-toggles-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  padding: 0 1.5rem;
}
.cookie-toggles-panel.is-open {
  max-height: 400px;
  padding-bottom: 1.5rem;
}

.cookie-toggle-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.cookie-toggle-row:last-child { border-bottom: none; }

.cookie-toggle-info h5 {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--slate-200);
  margin-bottom: 0.2rem;
}
.cookie-toggle-info p {
  font-size: 0.75rem;
  color: rgba(248,249,250,0.45);
  line-height: 1.5;
}

.cookie-toggle-switch {
  position: relative;
  width: 40px;
  height: 22px;
  flex-shrink: 0;
}
.cookie-toggle-switch input { opacity: 0; width: 0; height: 0; }
.cookie-toggle-slider {
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.1);
  border-radius: 100px;
  cursor: pointer;
  transition: background 0.25s;
}
.cookie-toggle-slider::before {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  left: 3px;
  top: 3px;
  background: var(--slate-400);
  border-radius: 50%;
  transition: transform 0.25s, background 0.25s;
}
.cookie-toggle-switch input:checked + .cookie-toggle-slider { background: var(--accent); }
.cookie-toggle-switch input:checked + .cookie-toggle-slider::before {
  transform: translateX(18px);
  background: #fff;
}
.cookie-toggle-switch input:disabled + .cookie-toggle-slider { opacity: 0.5; cursor: not-allowed; }

.cookie-btn-save {
  width: 100%;
  margin-top: 1rem;
  padding: 0.75rem 1rem;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
  font-family: 'Manrope', sans-serif;
}
.cookie-btn-save:hover { background: var(--accent-light); }

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1100px) {
  .layout-with-sidebar {
    grid-template-columns: 240px 1fr;
    gap: var(--space-8);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-8);
  }
}

@media (max-width: 900px) {
  .layout-with-sidebar {
    grid-template-columns: 1fr;
  }
  .persistent-sidebar {
    position: static;
    display: none;
  }
  .hero-layout {
    grid-template-columns: 1fr;
    padding: 6rem 1.5rem 3rem;
    gap: var(--space-8);
  }
  .hero-visual-block { justify-content: center; }
  .hero-main-image { height: 320px; }
  .alternating-feature-block,
  .alternating-feature-block.reverse-layout {
    grid-template-columns: 1fr;
    direction: ltr;
  }
  .how-it-works-grid { grid-template-columns: 1fr; }
  .dual-audience-grid { grid-template-columns: 1fr; }
  .about-split-section { grid-template-columns: 1fr; }
  .contact-layout-split { grid-template-columns: 1fr; }
  .content-grid-2col { grid-template-columns: 1fr; }
  .service-area-grid { grid-template-columns: 1fr; }
  .photo-gallery-masonry {
    grid-template-columns: 1fr 1fr;
  }
  .gallery-item-wide { grid-column: span 2; }
  .workshop-photos-grid { grid-template-columns: 1fr; }
  .photo-info-card { flex-direction: column; gap: var(--space-4); }
  .cta-strip-inner { flex-direction: column; text-align: center; }
  .visual-break-section { margin-left: 0; margin-right: 0; padding: var(--space-8); }
}

@media (max-width: 640px) {
  .hero-display-heading { font-size: 2.25rem; }
  .hero-feature-row { gap: var(--space-4); }
  .hero-actions { flex-direction: column; }
  .primary-action, .secondary-action, .ghost-action { justify-content: center; }
  .footer-grid { grid-template-columns: 1fr; gap: var(--space-6); }
  .footer-bottom-bar { flex-direction: column; text-align: center; }
  .photo-gallery-masonry { grid-template-columns: 1fr; }
  .gallery-item-wide { grid-column: span 1; }
  .comparison-table-scroll { font-size: 0.8rem; }
  .cookie-consent-card { width: calc(100vw - 2rem); right: 1rem; bottom: 1rem; }
  .inner-page-hero { padding: 6rem 1.5rem 3rem; }
  .legal-page-header { padding: 5rem 0 2rem; }
  .values-horizontal-block { grid-template-columns: 1fr 1fr; }
  .topic-cards-grid { grid-template-columns: 1fr 1fr; }
  .regions-info-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 420px) {
  .values-horizontal-block,
  .topic-cards-grid,
  .regions-info-grid { grid-template-columns: 1fr; }
}