/* =============================================
   PENÍZE VE DVOU — CUSTOM CSS
   Isometric Accent + Scandinavian Warmth
   ============================================= */


:root {
  --color-bg: #f7f5f2;
  --color-bg-alt: #eeeae4;
  --color-surface: #ffffff;
  --color-surface-glass: rgba(255,255,255,0.72);
  --color-text: #1e1c1a;
  --color-text-muted: #6b6560;
  --color-text-light: #9e9690;
  --color-primary: #2d6a5e;
  --color-primary-dark: #1e4d44;
  --color-primary-light: #e8f2f0;
  --color-accent: #c4763a;
  --color-accent-light: #f5ede3;
  --color-teal: #2d6a5e;
  --color-sage: #7aab96;
  --color-warm: #c4763a;
  --color-blue: #3a6b8a;
  --color-rose: #a85565;
  --color-amber: #c49a3a;
  --color-inverted-bg: #1a2e2a;
  --color-inverted-text: #e8f2f0;
  --color-inverted-muted: #8fb5aa;

  --font-heading: 'Fraunces', serif;
  --font-body: 'Inter', sans-serif;

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

  --shadow-xs: 0 1px 3px rgba(30,28,26,0.07), 0 1px 2px rgba(30,28,26,0.04);
  --shadow-sm: 0 2px 8px rgba(30,28,26,0.08), 0 1px 3px rgba(30,28,26,0.05);
  --shadow-md: 0 4px 20px rgba(30,28,26,0.1), 0 2px 8px rgba(30,28,26,0.06);
  --shadow-lg: 0 8px 40px rgba(30,28,26,0.12), 0 4px 16px rgba(30,28,26,0.07);
  --shadow-xl: 0 16px 60px rgba(30,28,26,0.15), 0 8px 24px rgba(30,28,26,0.08);

  --space-xs: clamp(0.5rem, 1vw, 0.75rem);
  --space-sm: clamp(0.75rem, 1.5vw, 1rem);
  --space-md: clamp(1rem, 2vw, 1.5rem);
  --space-lg: clamp(1.5rem, 3vw, 2.5rem);
  --space-xl: clamp(2.5rem, 5vw, 4rem);
  --space-2xl: clamp(4rem, 8vw, 7rem);

  --container: 1200px;
  --container-narrow: 800px;
}


*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--color-bg);
  color: var(--color-text);
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main { flex: 1; }

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

a { color: var(--color-primary); text-decoration: none; transition: color 0.2s ease, opacity 0.2s ease; }
a:hover { color: var(--color-primary-dark); }

ul { list-style: none; }

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  line-height: 1.2;
  color: var(--color-text);
}


.iso-cube {
  width: 48px;
  height: 48px;
  position: relative;
  transform-style: preserve-3d;
}

.iso-cube::before,
.iso-cube::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
}

.iso-cube--teal {
  background: linear-gradient(135deg, var(--color-teal), #4a9b8a);
  transform: rotate(45deg) skewX(-10deg) skewY(-10deg);
  border-radius: 4px;
  box-shadow: 4px 4px 0 #1e4d44, -2px 6px 0 #3d8a78;
}

.iso-cube--sage {
  background: linear-gradient(135deg, var(--color-sage), #9ecbb8);
  transform: rotate(45deg) skewX(-10deg) skewY(-10deg);
  border-radius: 4px;
  box-shadow: 4px 4px 0 #5a8a78, -2px 6px 0 #8abfac;
}

.iso-cube--warm {
  background: linear-gradient(135deg, var(--color-warm), #d9924f);
  transform: rotate(45deg) skewX(-10deg) skewY(-10deg);
  border-radius: 4px;
  box-shadow: 4px 4px 0 #8a4f22, -2px 6px 0 #c47840;
}

.iso-cube--blue {
  background: linear-gradient(135deg, var(--color-blue), #5a8baa);
  transform: rotate(45deg) skewX(-10deg) skewY(-10deg);
  border-radius: 4px;
  box-shadow: 4px 4px 0 #264d6a, -2px 6px 0 #4a7a9a;
}

.iso-cube--rose {
  background: linear-gradient(135deg, var(--color-rose), #c47080);
  transform: rotate(45deg) skewX(-10deg) skewY(-10deg);
  border-radius: 4px;
  box-shadow: 4px 4px 0 #7a3545, -2px 6px 0 #b46070;
}

.iso-cube--amber {
  background: linear-gradient(135deg, var(--color-amber), #d4aa4a);
  transform: rotate(45deg) skewX(-10deg) skewY(-10deg);
  border-radius: 4px;
  box-shadow: 4px 4px 0 #8a6a22, -2px 6px 0 #c49a30;
}

.iso-dot {
  display: inline-block;
  width: 16px;
  height: 16px;
  border-radius: 50%;
}
.iso-dot--teal { background: var(--color-teal); }
.iso-dot--sage { background: var(--color-sage); }
.iso-dot--rose { background: var(--color-rose); }
.iso-dot--amber { background: var(--color-amber); }


.global-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 500;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
  text-decoration: none;
  min-height: 44px;
}

.global-cta--primary {
  background: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
  box-shadow: var(--shadow-sm);
}
.global-cta--primary:hover {
  background: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.global-cta--ghost {
  background: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}
.global-cta--ghost:hover {
  background: var(--color-primary-light);
  color: var(--color-primary-dark);
  transform: translateY(-2px);
}

.global-cta--ghost-light {
  background: transparent;
  color: var(--color-inverted-text);
  border-color: var(--color-inverted-muted);
}
.global-cta--ghost-light:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--color-inverted-text);
  color: var(--color-inverted-text);
  transform: translateY(-2px);
}


.global-header {
  background: var(--color-surface);
  border-bottom: 1px solid rgba(30,28,26,0.08);
  box-shadow: var(--shadow-xs);
  position: relative;
  z-index: 100;
}

.global-header__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--space-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: var(--space-md);
}

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

.global-header__logo img {
  height: 36px;
  width: auto;
}

.global-header__nav { display: none; }

@media (min-width: 900px) {
  .global-header__nav { display: block; }
}

.global-header__nav-list {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.global-header__nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-text-muted);
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-sm);
  transition: color 0.2s ease, background 0.2s ease;
  white-space: nowrap;
}

.global-header__nav-link:hover,
.global-header__nav-link--active {
  color: var(--color-primary);
  background: var(--color-primary-light);
}

.global-header__hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  min-width: 44px;
  min-height: 44px;
  justify-content: center;
  align-items: center;
  border-radius: var(--radius-sm);
  transition: background 0.2s ease;
}

.global-header__hamburger:hover { background: var(--color-bg-alt); }

.global-header__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.global-header__hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.global-header__hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.global-header__hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (min-width: 900px) {
  .global-header__hamburger { display: none; }
}

.global-header__mobile-menu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  background: var(--color-surface);
  border-top: 1px solid var(--color-bg-alt);
}

.global-header__mobile-menu.is-open {
  max-height: 400px;
}

.global-header__mobile-list {
  padding: var(--space-sm) var(--space-md) var(--space-md);
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.global-header__mobile-link {
  display: block;
  padding: 0.625rem 0.75rem;
  font-weight: 500;
  color: var(--color-text);
  border-radius: var(--radius-sm);
  font-size: 0.9375rem;
  transition: background 0.2s ease, color 0.2s ease;
  min-height: 44px;
  display: flex;
  align-items: center;
}

.global-header__mobile-link:hover {
  background: var(--color-primary-light);
  color: var(--color-primary);
}


.global-footer {
  background: #1a1816;
  color: #c8c2bb;
  margin-top: auto;
}

.global-footer__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: var(--space-xl) var(--space-md) var(--space-lg);
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

@media (min-width: 768px) {
  .global-footer__inner {
    grid-template-columns: auto 1fr auto;
    align-items: start;
    gap: var(--space-xl);
  }
}

.global-footer__brand img { filter: brightness(0) invert(1); opacity: 0.8; margin-bottom: 0.5rem; }
.global-footer__brand p { font-size: 0.875rem; color: #8a847d; }

.global-footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 1rem;
  align-items: flex-start;
}

.global-footer__nav a {
  font-size: 0.875rem;
  color: #8a847d;
  transition: color 0.2s ease;
  white-space: nowrap;
  padding: 0.2rem 0;
}

.global-footer__nav a:hover { color: #e8e2db; }

.global-footer__contact p {
  font-size: 0.875rem;
  color: #8a847d;
  margin-bottom: 0.4rem;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.global-footer__contact i { color: var(--color-sage); margin-top: 0.2rem; flex-shrink: 0; }
.global-footer__contact a { color: #8a847d; }
.global-footer__contact a:hover { color: #e8e2db; }

.global-footer__bar {
  border-top: 1px solid #2a2724;
  text-align: center;
  padding: var(--space-md);
}

.global-footer__bar p {
  font-size: 0.8125rem;
  color: #5a5550;
}


.global-back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-primary);
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.3s ease, transform 0.3s ease, background 0.2s ease;
  z-index: 50;
}

.global-back-to-top.is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

/* =============================================
   HOME PAGE
   ============================================= */


.home-hero {
  position: relative;
  background: linear-gradient(135deg, #1a2e2a 0%, #2d4a42 50%, #1e3530 100%);
  overflow: hidden;
  min-height: clamp(500px, 80vh, 760px);
  display: flex;
  align-items: center;
}

.home-hero__iso-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.home-hero__iso-shape {
  position: absolute;
  opacity: 0.12;
}

.home-hero__iso-shape--1 {
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, var(--color-sage), transparent);
  transform: rotate(45deg) skewX(-15deg) skewY(-15deg);
  top: -60px;
  right: 15%;
  border-radius: 8px;
}

.home-hero__iso-shape--2 {
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, var(--color-accent), transparent);
  transform: rotate(45deg) skewX(-15deg) skewY(-15deg);
  bottom: 10%;
  right: 8%;
  border-radius: 6px;
  opacity: 0.15;
}

.home-hero__iso-shape--3 {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--color-sage), transparent);
  transform: rotate(45deg) skewX(-15deg) skewY(-15deg);
  top: 30%;
  right: 42%;
  border-radius: 4px;
  opacity: 0.1;
}

.home-hero__iso-shape--4 {
  width: 300px;
  height: 300px;
  background: linear-gradient(135deg, var(--color-primary), transparent);
  transform: rotate(45deg) skewX(-10deg) skewY(-10deg);
  bottom: -100px;
  left: -80px;
  border-radius: 12px;
  opacity: 0.08;
}

.home-hero__iso-shape--5 {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--color-amber), transparent);
  transform: rotate(45deg) skewX(-15deg) skewY(-15deg);
  top: 15%;
  left: 5%;
  border-radius: 4px;
  opacity: 0.2;
}

.home-hero__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: var(--space-2xl) var(--space-md);
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: center;
  position: relative;
  z-index: 2;
  width: 100%;
}

@media (min-width: 900px) {
  .home-hero__inner {
    grid-template-columns: 1fr 1fr;
  }
}

.home-hero__eyebrow {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-sage);
  margin-bottom: var(--space-sm);
  border: 1px solid rgba(122,171,150,0.3);
  padding: 0.25rem 0.75rem;
  border-radius: 100px;
  background: rgba(122,171,150,0.1);
}

.home-hero__heading {
  font-size: clamp(2.2rem, 4vw + 1rem, 3.8rem);
  font-weight: 700;
  color: #f0ece7;
  line-height: 1.1;
  margin-bottom: var(--space-md);
}

.home-hero__subtext {
  font-size: clamp(1rem, 1.2vw + 0.5rem, 1.125rem);
  color: #a8b8b2;
  line-height: 1.7;
  margin-bottom: var(--space-lg);
  max-width: 520px;
}

.home-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  align-items: center;
}

.home-hero__visual { display: none; }

@media (min-width: 900px) {
  .home-hero__visual { display: block; }
}

.home-hero__img-frame {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.home-hero__img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

.home-hero__img-badge {
  position: absolute;
  bottom: var(--space-md);
  left: var(--space-md);
  background: rgba(26,46,42,0.85);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(122,171,150,0.3);
  color: #e8f2f0;
  padding: 0.5rem 1rem;
  border-radius: 100px;
  font-size: 0.8125rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.home-hero__img-badge i { color: var(--color-sage); }


.home-intro {
  padding: var(--space-2xl) 0;
  background: var(--color-bg);
}

.home-intro__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.home-intro__label {
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: var(--space-md);
}

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

@media (min-width: 768px) {
  .home-intro__grid { grid-template-columns: 1fr 1fr; align-items: start; }
}

.home-intro__heading {
  font-size: clamp(1.5rem, 2.5vw + 0.5rem, 2.2rem);
  font-weight: 600;
  margin-bottom: var(--space-md);
  line-height: 1.25;
}

.home-intro__text p {
  color: var(--color-text-muted);
  margin-bottom: var(--space-sm);
}

.home-intro__aside {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.home-intro__card {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: var(--space-md) var(--space-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(30,28,26,0.06);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.home-intro__card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.home-intro__card-icon {
  width: 40px;
  height: 40px;
  background: var(--color-primary-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  font-size: 1.1rem;
  margin-bottom: var(--space-sm);
}

.home-intro__card h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.home-intro__card p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}


.home-topics {
  padding: var(--space-2xl) 0;
  background: var(--color-bg-alt);
}

.home-topics__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.home-topics__header {
  margin-bottom: var(--space-xl);
}

.home-topics__label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: var(--space-xs);
}

.home-topics__heading {
  font-size: clamp(1.75rem, 3vw + 0.5rem, 2.5rem);
  font-weight: 600;
}

.home-topics__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

@media (min-width: 640px) {
  .home-topics__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .home-topics__grid { grid-template-columns: repeat(3, 1fr); }
}

.home-topics__card {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(30,28,26,0.06);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  display: flex;
  flex-direction: column;
}

.home-topics__card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.home-topics__card-iso {
  padding: var(--space-md) var(--space-md) 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.home-topics__card-body {
  padding: var(--space-md) var(--space-md) var(--space-lg);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.home-topics__card-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: var(--space-sm);
  line-height: 1.3;
}

.home-topics__card-text {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.65;
  flex: 1;
  margin-bottom: var(--space-md);
}

.home-topics__card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-primary);
  transition: gap 0.2s ease, color 0.2s ease;
}

.home-topics__card-link:hover {
  gap: 0.7rem;
  color: var(--color-primary-dark);
}


.home-feature-article {
  padding: var(--space-2xl) 0;
  background: var(--color-bg);
}

.home-feature-article__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--space-md);
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: center;
}

@media (min-width: 900px) {
  .home-feature-article__inner { grid-template-columns: 1fr 1fr; }
}

.home-feature-article__img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  transition: transform 0.4s ease;
}

.home-feature-article__img:hover { transform: scale(1.02); }

.home-feature-article__tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-accent);
  background: var(--color-accent-light);
  padding: 0.25rem 0.75rem;
  border-radius: 100px;
  margin-bottom: var(--space-md);
}

.home-feature-article__heading {
  font-size: clamp(1.5rem, 2.5vw + 0.5rem, 2.2rem);
  font-weight: 600;
  margin-bottom: var(--space-md);
  line-height: 1.25;
}

.home-feature-article__content p {
  color: var(--color-text-muted);
  margin-bottom: var(--space-md);
  line-height: 1.75;
}


.home-inverted {
  position: relative;
  background: var(--color-inverted-bg);
  overflow: hidden;
  padding: var(--space-2xl) 0;
}

.home-inverted__iso-accent {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.home-inverted__iso-shape {
  position: absolute;
  opacity: 0.08;
}

.home-inverted__iso-shape--a {
  width: 180px;
  height: 180px;
  background: linear-gradient(135deg, var(--color-sage), transparent);
  transform: rotate(45deg) skewX(-15deg) skewY(-15deg);
  top: -40px;
  left: 5%;
  border-radius: 8px;
}

.home-inverted__iso-shape--b {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, var(--color-accent), transparent);
  transform: rotate(45deg) skewX(-15deg) skewY(-15deg);
  bottom: 10%;
  right: 10%;
  border-radius: 6px;
  opacity: 0.12;
}

.home-inverted__iso-shape--c {
  width: 240px;
  height: 240px;
  background: linear-gradient(135deg, var(--color-primary), transparent);
  transform: rotate(45deg) skewX(-10deg) skewY(-10deg);
  top: 40%;
  right: -60px;
  border-radius: 10px;
  opacity: 0.06;
}

.home-inverted__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--space-md);
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: center;
  position: relative;
  z-index: 2;
}

@media (min-width: 900px) {
  .home-inverted__inner { grid-template-columns: 1fr 1fr; }
}

.home-inverted__label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-sage);
  margin-bottom: var(--space-sm);
}

.home-inverted__heading {
  font-size: clamp(1.75rem, 3vw + 0.5rem, 2.8rem);
  font-weight: 700;
  color: var(--color-inverted-text);
  margin-bottom: var(--space-md);
}

.home-inverted__text {
  color: var(--color-inverted-muted);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: var(--space-lg);
}

.home-inverted__pillars {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
}

.home-inverted__pillar {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-inverted-muted);
}

.home-inverted__pillar i { color: var(--color-sage); font-size: 1rem; }

.home-inverted__img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  display: block;
  transition: transform 0.4s ease;
}

.home-inverted__img:hover { transform: scale(1.02); }


.home-gallery {
  padding: var(--space-2xl) 0;
  background: var(--color-bg-alt);
}

.home-gallery__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.home-gallery__label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: var(--space-xs);
}

.home-gallery__heading {
  font-size: clamp(1.5rem, 2.5vw + 0.5rem, 2.2rem);
  font-weight: 600;
  margin-bottom: var(--space-xl);
}

.home-gallery__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

@media (min-width: 640px) {
  .home-gallery__grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto auto;
  }
  .home-gallery__item--wide {
    grid-column: 1 / -1;
  }
}

@media (min-width: 900px) {
  .home-gallery__grid {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto;
  }
  .home-gallery__item--wide {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
  }
}

.home-gallery__item {
  display: block;
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.home-gallery__item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.home-gallery__item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.home-gallery__item--wide img { height: 280px; }

@media (min-width: 900px) {
  .home-gallery__item--wide img { height: 100%; min-height: 380px; }
}

.home-gallery__item:hover img { transform: scale(1.04); }

.home-gallery__item-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-md);
  background: linear-gradient(to top, rgba(26,46,42,0.85), transparent);
  color: #e8f2f0;
  font-size: 0.9rem;
  font-weight: 500;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.home-gallery__item:hover .home-gallery__item-overlay { opacity: 1; }


.home-faq {
  padding: var(--space-2xl) 0;
  background: var(--color-bg);
}

.home-faq__inner {
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.home-faq__header {
  margin-bottom: var(--space-xl);
  text-align: center;
}

.home-faq__label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: var(--space-xs);
}

.home-faq__heading {
  font-size: clamp(1.5rem, 2.5vw + 0.5rem, 2.2rem);
  font-weight: 600;
}

.home-faq__list {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.home-faq__item {
  background: var(--color-surface);
  border-radius: var(--radius-md);
  border: 1px solid rgba(30,28,26,0.08);
  overflow: hidden;
  box-shadow: var(--shadow-xs);
  transition: box-shadow 0.25s ease;
}

.home-faq__item:hover { box-shadow: var(--shadow-sm); }

.home-faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  padding: var(--space-md) var(--space-lg);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--color-text);
  min-height: 56px;
  transition: background 0.2s ease;
}

.home-faq__question:hover { background: var(--color-bg); }
.home-faq__question[aria-expanded="true"] { background: var(--color-primary-light); color: var(--color-primary-dark); }

.home-faq__icon {
  flex-shrink: 0;
  font-size: 0.875rem;
  color: var(--color-primary);
  transition: transform 0.3s ease;
}

.home-faq__question[aria-expanded="true"] .home-faq__icon { transform: rotate(45deg); }

.home-faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.home-faq__answer.is-open {
  max-height: 400px;
  padding-bottom: var(--space-md);
}

.home-faq__answer p {
  padding: 0 var(--space-lg);
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  line-height: 1.7;
}


.home-books-preview {
  padding: var(--space-2xl) 0;
  background: var(--color-bg-alt);
}

.home-books-preview__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--space-md);
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: center;
}

@media (min-width: 900px) {
  .home-books-preview__inner { grid-template-columns: 1fr 1fr; }
}

.home-books-preview__label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: var(--space-xs);
}

.home-books-preview__heading {
  font-size: clamp(1.5rem, 2.5vw + 0.5rem, 2.2rem);
  font-weight: 600;
  margin-bottom: var(--space-md);
}

.home-books-preview__content p {
  color: var(--color-text-muted);
  margin-bottom: var(--space-lg);
  line-height: 1.75;
}

.home-books-preview__img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  transition: transform 0.4s ease;
}

.home-books-preview__img:hover { transform: scale(1.02); }

/* =============================================
   SPONZORSTVÍ PAGE
   ============================================= */

.sponzorstvi-hero {
  position: relative;
  background: linear-gradient(135deg, #2d4a42 0%, #1a2e2a 100%);
  overflow: hidden;
  padding: var(--space-2xl) 0 var(--space-xl);
}

.sponzorstvi-hero__iso-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.sponzorstvi-hero__iso-shape {
  position: absolute;
  opacity: 0.1;
}

.sponzorstvi-hero__iso-shape--1 {
  width: 160px;
  height: 160px;
  background: linear-gradient(135deg, var(--color-sage), transparent);
  transform: rotate(45deg) skewX(-15deg) skewY(-15deg);
  top: -40px;
  right: 10%;
  border-radius: 8px;
}

.sponzorstvi-hero__iso-shape--2 {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--color-accent), transparent);
  transform: rotate(45deg) skewX(-15deg) skewY(-15deg);
  bottom: 10%;
  left: 5%;
  border-radius: 4px;
  opacity: 0.15;
}

.sponzorstvi-hero__inner {
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding: 0 var(--space-md);
  position: relative;
  z-index: 2;
}

.sponzorstvi-hero__eyebrow {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-sage);
  margin-bottom: var(--space-sm);
  border: 1px solid rgba(122,171,150,0.3);
  padding: 0.25rem 0.75rem;
  border-radius: 100px;
  background: rgba(122,171,150,0.1);
}

.sponzorstvi-hero__heading {
  font-size: clamp(1.75rem, 3vw + 0.5rem, 2.8rem);
  font-weight: 700;
  color: #f0ece7;
  margin-bottom: var(--space-md);
  line-height: 1.15;
}

.sponzorstvi-hero__text {
  font-size: 1.05rem;
  color: #a8b8b2;
  line-height: 1.7;
}

.sponzorstvi-content {
  padding: var(--space-2xl) 0;
  background: var(--color-bg);
}

.sponzorstvi-content__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--space-md);
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}

@media (min-width: 900px) {
  .sponzorstvi-content__inner {
    grid-template-columns: 220px 1fr;
    align-items: start;
  }
}

.sponzorstvi-content__sidebar {
  position: sticky;
  top: var(--space-lg);
}

.sponzorstvi-content__sidenav {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  border: 1px solid rgba(30,28,26,0.08);
  box-shadow: var(--shadow-xs);
}

.sponzorstvi-content__sidenav-title {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-light);
  margin-bottom: var(--space-sm);
}

.sponzorstvi-content__sidenav a {
  display: block;
  font-size: 0.875rem;
  color: var(--color-text-muted);
  padding: 0.4rem 0.5rem;
  border-radius: var(--radius-sm);
  margin-bottom: 2px;
  transition: background 0.2s ease, color 0.2s ease;
}

.sponzorstvi-content__sidenav a:hover {
  background: var(--color-primary-light);
  color: var(--color-primary);
}

.sponzorstvi-content__section {
  margin-bottom: var(--space-xl);
  padding-bottom: var(--space-xl);
  border-bottom: 1px solid rgba(30,28,26,0.08);
}

.sponzorstvi-content__section:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.sponzorstvi-content__section h2 {
  font-size: clamp(1.25rem, 2vw + 0.5rem, 1.75rem);
  font-weight: 600;
  margin-bottom: var(--space-md);
}

.sponzorstvi-content__section p {
  color: var(--color-text-muted);
  margin-bottom: var(--space-sm);
  line-height: 1.75;
}

.sponzorstvi-content__section a {
  color: var(--color-primary);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.sponzorstvi-content__no-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.sponzorstvi-content__no-item {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
  background: var(--color-surface);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  border: 1px solid rgba(30,28,26,0.07);
  box-shadow: var(--shadow-xs);
}

.sponzorstvi-content__no-icon {
  width: 36px;
  height: 36px;
  background: #fde8e8;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c0392b;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.sponzorstvi-content__no-item h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
}

.sponzorstvi-content__no-item p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  margin-bottom: 0;
  line-height: 1.6;
}

.sponzorstvi-content__process {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-top: var(--space-md);
}

.sponzorstvi-content__process-step {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
}

.sponzorstvi-content__process-num {
  width: 36px;
  height: 36px;
  background: var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.875rem;
  font-weight: 600;
  flex-shrink: 0;
}

.sponzorstvi-content__process-step h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
}

.sponzorstvi-content__process-step p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  margin-bottom: 0;
  line-height: 1.6;
}

/* =============================================
   KNIHY PAGE
   ============================================= */

.knihy-hero {
  position: relative;
  background: linear-gradient(135deg, #1a2e2a 0%, #2d4a42 100%);
  overflow: hidden;
  padding: var(--space-2xl) 0 var(--space-xl);
}

.knihy-hero__iso-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.knihy-hero__iso-shape {
  position: absolute;
  opacity: 0.1;
}

.knihy-hero__iso-shape--1 {
  width: 140px;
  height: 140px;
  background: linear-gradient(135deg, var(--color-amber), transparent);
  transform: rotate(45deg) skewX(-15deg) skewY(-15deg);
  top: -30px;
  right: 12%;
  border-radius: 6px;
}

.knihy-hero__iso-shape--2 {
  width: 90px;
  height: 90px;
  background: linear-gradient(135deg, var(--color-sage), transparent);
  transform: rotate(45deg) skewX(-15deg) skewY(-15deg);
  bottom: 15%;
  left: 8%;
  border-radius: 4px;
  opacity: 0.12;
}

.knihy-hero__iso-shape--3 {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--color-rose), transparent);
  transform: rotate(45deg) skewX(-15deg) skewY(-15deg);
  top: 20%;
  left: 40%;
  border-radius: 4px;
  opacity: 0.08;
}

.knihy-hero__inner {
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding: 0 var(--space-md);
  position: relative;
  z-index: 2;
}

.knihy-hero__eyebrow {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-amber);
  margin-bottom: var(--space-sm);
  border: 1px solid rgba(196,154,58,0.3);
  padding: 0.25rem 0.75rem;
  border-radius: 100px;
  background: rgba(196,154,58,0.1);
}

.knihy-hero__heading {
  font-size: clamp(1.75rem, 3vw + 0.5rem, 2.8rem);
  font-weight: 700;
  color: #f0ece7;
  margin-bottom: var(--space-md);
  line-height: 1.15;
}

.knihy-hero__text {
  font-size: 1.05rem;
  color: #a8b8b2;
  line-height: 1.7;
}

.knihy-disclaimer {
  background: var(--color-primary-light);
  border-bottom: 1px solid rgba(45,106,94,0.15);
}

.knihy-disclaimer__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: var(--space-md) var(--space-md);
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.knihy-disclaimer i {
  color: var(--color-primary);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.knihy-disclaimer p {
  font-size: 0.9rem;
  color: var(--color-primary-dark);
  line-height: 1.5;
}

.knihy-disclaimer a {
  color: var(--color-primary-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.knihy-list {
  padding: var(--space-2xl) 0;
  background: var(--color-bg);
}

.knihy-list__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.knihy-list__category {
  margin-bottom: var(--space-2xl);
}

.knihy-list__category:last-child { margin-bottom: 0; }

.knihy-list__category-title {
  font-size: clamp(1.25rem, 2vw + 0.5rem, 1.75rem);
  font-weight: 600;
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-sm);
  border-bottom: 2px solid var(--color-primary-light);
  color: var(--color-primary-dark);
}

.knihy-list__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

@media (min-width: 640px) {
  .knihy-list__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .knihy-list__grid { grid-template-columns: repeat(3, 1fr); }
}

.knihy-list__card {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(30,28,26,0.07);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  display: flex;
  flex-direction: column;
}

.knihy-list__card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.knihy-list__card-iso {
  padding: var(--space-md) var(--space-md) 0;
}

.knihy-list__card-body {
  padding: var(--space-sm) var(--space-md) var(--space-md);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.knihy-list__card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-xs);
}

.knihy-list__card-author {
  font-size: 0.8rem;
  color: var(--color-text-light);
  font-weight: 500;
}

.knihy-list__card-year {
  font-size: 0.8rem;
  color: var(--color-text-light);
  background: var(--color-bg-alt);
  padding: 0.15rem 0.5rem;
  border-radius: 100px;
}

.knihy-list__card-title {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: var(--space-sm);
  line-height: 1.3;
  flex: 1;
}

.knihy-list__card-desc {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.65;
  margin-bottom: var(--space-sm);
  flex: 1;
}

.knihy-list__card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: auto;
}

.knihy-list__card-tags span {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--color-primary);
  background: var(--color-primary-light);
  padding: 0.2rem 0.6rem;
  border-radius: 100px;
}

.knihy-cta {
  padding: var(--space-2xl) 0;
  background: var(--color-bg-alt);
}

.knihy-cta__inner {
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding: 0 var(--space-md);
  text-align: center;
  position: relative;
}

.knihy-cta__iso-accent {
  position: absolute;
  top: -20px;
  right: var(--space-md);
  opacity: 0.5;
}

.knihy-cta__heading {
  font-size: clamp(1.5rem, 2.5vw + 0.5rem, 2.2rem);
  font-weight: 600;
  margin-bottom: var(--space-md);
}

.knihy-cta p {
  color: var(--color-text-muted);
  margin-bottom: var(--space-lg);
  line-height: 1.75;
}

/* =============================================
   FINANČNÍ TYPY PAGE
   ============================================= */

.typy-hero {
  position: relative;
  background: linear-gradient(135deg, #1e2d3a 0%, #2a3d4a 100%);
  overflow: hidden;
  padding: var(--space-2xl) 0 var(--space-xl);
}

.typy-hero__iso-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.typy-hero__iso-shape {
  position: absolute;
  opacity: 0.1;
}

.typy-hero__iso-shape--1 {
  width: 150px;
  height: 150px;
  background: linear-gradient(135deg, var(--color-blue), transparent);
  transform: rotate(45deg) skewX(-15deg) skewY(-15deg);
  top: -30px;
  right: 8%;
  border-radius: 6px;
}

.typy-hero__iso-shape--2 {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--color-rose), transparent);
  transform: rotate(45deg) skewX(-15deg) skewY(-15deg);
  bottom: 10%;
  left: 5%;
  border-radius: 4px;
  opacity: 0.15;
}

.typy-hero__iso-shape--3 {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--color-amber), transparent);
  transform: rotate(45deg) skewX(-15deg) skewY(-15deg);
  top: 50%;
  right: 30%;
  border-radius: 3px;
  opacity: 0.08;
}

.typy-hero__inner {
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding: 0 var(--space-md);
  position: relative;
  z-index: 2;
}

.typy-hero__eyebrow {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #7aabcc;
  margin-bottom: var(--space-sm);
  border: 1px solid rgba(122,171,204,0.3);
  padding: 0.25rem 0.75rem;
  border-radius: 100px;
  background: rgba(122,171,204,0.1);
}

.typy-hero__heading {
  font-size: clamp(1.75rem, 3vw + 0.5rem, 2.8rem);
  font-weight: 700;
  color: #f0ece7;
  margin-bottom: var(--space-md);
  line-height: 1.15;
}

.typy-hero__text {
  font-size: 1.05rem;
  color: #a8b8c2;
  line-height: 1.7;
}

.typy-intro {
  padding: var(--space-2xl) 0;
  background: var(--color-bg);
}

.typy-intro__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--space-md);
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: center;
}

@media (min-width: 900px) {
  .typy-intro__inner { grid-template-columns: 1fr 1fr; }
}

.typy-intro__text h2 {
  font-size: clamp(1.25rem, 2vw + 0.5rem, 1.75rem);
  font-weight: 600;
  margin-bottom: var(--space-md);
}

.typy-intro__text p {
  color: var(--color-text-muted);
  margin-bottom: var(--space-sm);
  line-height: 1.75;
}

.typy-intro__img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  transition: transform 0.4s ease;
}

.typy-intro__img:hover { transform: scale(1.02); }

.typy-cards {
  padding: var(--space-2xl) 0;
  background: var(--color-bg-alt);
}

.typy-cards__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.typy-cards__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

@media (min-width: 768px) {
  .typy-cards__grid { grid-template-columns: repeat(2, 1fr); }
}

.typy-cards__card {
  background: var(--color-surface);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(30,28,26,0.07);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.typy-cards__card:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-4px);
}

.typy-cards__card-header {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-lg) var(--space-lg) var(--space-md);
  border-bottom: 1px solid rgba(30,28,26,0.07);
}

.typy-cards__card-title {
  font-size: 1.25rem;
  font-weight: 600;
}

.typy-cards__card-body {
  padding: var(--space-lg);
}

.typy-cards__card-lead {
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-text);
  margin-bottom: var(--space-md);
  line-height: 1.6;
  font-style: italic;
}

.typy-cards__card-body h3 {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-text-light);
  margin-bottom: 0.4rem;
  margin-top: var(--space-md);
}

.typy-cards__card-body h3:first-of-type { margin-top: 0; }

.typy-cards__card-body p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.65;
  margin-bottom: var(--space-sm);
}

.typy-combinations {
  padding: var(--space-2xl) 0;
  background: var(--color-bg);
}

.typy-combinations__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.typy-combinations__heading {
  font-size: clamp(1.5rem, 2.5vw + 0.5rem, 2.2rem);
  font-weight: 600;
  margin-bottom: var(--space-sm);
}

.typy-combinations__lead {
  color: var(--color-text-muted);
  margin-bottom: var(--space-xl);
  font-size: 1.05rem;
}

.typy-combinations__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

@media (min-width: 768px) {
  .typy-combinations__grid { grid-template-columns: repeat(3, 1fr); }
}

.typy-combinations__item {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(30,28,26,0.07);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.typy-combinations__item:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.typy-combinations__item-icons {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: var(--space-md);
}

.typy-combinations__item-icons i { color: var(--color-text-light); font-size: 0.75rem; }

.typy-combinations__item h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: var(--space-sm);
}

.typy-combinations__item p {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.65;
}

.typy-inverted {
  position: relative;
  background: var(--color-inverted-bg);
  overflow: hidden;
  padding: var(--space-2xl) 0;
  text-align: center;
}

.typy-inverted__iso-accent {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.typy-inverted__iso-shape {
  position: absolute;
  opacity: 0.08;
}

.typy-inverted__iso-shape--a {
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, var(--color-blue), transparent);
  transform: rotate(45deg) skewX(-15deg) skewY(-15deg);
  top: -50px;
  right: 5%;
  border-radius: 8px;
}

.typy-inverted__iso-shape--b {
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, var(--color-rose), transparent);
  transform: rotate(45deg) skewX(-15deg) skewY(-15deg);
  bottom: -30px;
  left: 8%;
  border-radius: 6px;
  opacity: 0.1;
}

.typy-inverted__inner {
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding: 0 var(--space-md);
  position: relative;
  z-index: 2;
}

.typy-inverted__heading {
  font-size: clamp(1.75rem, 3vw + 0.5rem, 2.8rem);
  font-weight: 700;
  color: var(--color-inverted-text);
  margin-bottom: var(--space-md);
}

.typy-inverted__text {
  color: var(--color-inverted-muted);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: var(--space-lg);
}

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

.contact-hero {
  position: relative;
  background: linear-gradient(135deg, #2a3020 0%, #3a4228 100%);
  overflow: hidden;
  padding: var(--space-2xl) 0 var(--space-xl);
}

.contact-hero__iso-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.contact-hero__iso-shape {
  position: absolute;
  opacity: 0.1;
}

.contact-hero__iso-shape--1 {
  width: 130px;
  height: 130px;
  background: linear-gradient(135deg, var(--color-sage), transparent);
  transform: rotate(45deg) skewX(-15deg) skewY(-15deg);
  top: -20px;
  right: 12%;
  border-radius: 6px;
}

.contact-hero__iso-shape--2 {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--color-warm), transparent);
  transform: rotate(45deg) skewX(-15deg) skewY(-15deg);
  bottom: 15%;
  left: 6%;
  border-radius: 4px;
  opacity: 0.15;
}

.contact-hero__inner {
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding: 0 var(--space-md);
  position: relative;
  z-index: 2;
}

.contact-hero__eyebrow {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-sage);
  margin-bottom: var(--space-sm);
  border: 1px solid rgba(122,171,150,0.3);
  padding: 0.25rem 0.75rem;
  border-radius: 100px;
  background: rgba(122,171,150,0.1);
}

.contact-hero__heading {
  font-size: clamp(1.75rem, 3vw + 0.5rem, 2.8rem);
  font-weight: 700;
  color: #f0ece7;
  margin-bottom: var(--space-md);
}

.contact-hero__text {
  font-size: 1.05rem;
  color: #a8b8b2;
  line-height: 1.7;
}

.contact-form-section {
  padding: var(--space-2xl) 0;
  background: var(--color-bg);
}

.contact-form-section__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--space-md);
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}

@media (min-width: 900px) {
  .contact-form-section__inner { grid-template-columns: 1.3fr 1fr; align-items: start; }
}

.contact-form-section__heading {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: var(--space-lg);
}

.contact-form-section__form {
  background: var(--color-surface);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(30,28,26,0.07);
}

.contact-form-section__row {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
}

@media (min-width: 640px) {
  .contact-form-section__row { grid-template-columns: 1fr 1fr; }
}

.contact-form-section__field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.contact-form-section__field--full {
  margin-bottom: var(--space-md);
}

.contact-form-section__field label {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-text);
}

.contact-form-section__field label span {
  color: var(--color-accent);
}

.contact-form-section__field input,
.contact-form-section__field textarea {
  padding: 0.625rem 0.875rem;
  border: 1.5px solid rgba(30,28,26,0.15);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--color-text);
  background: var(--color-bg);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  min-height: 44px;
  resize: vertical;
}

.contact-form-section__field input:focus,
.contact-form-section__field textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(45,106,94,0.12);
}

.contact-form-section__field input::placeholder,
.contact-form-section__field textarea::placeholder {
  color: var(--color-text-light);
}

.contact-form-section__footer-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
}

.contact-form-section__privacy {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  cursor: pointer;
  font-size: 0.875rem;
  color: var(--color-text-muted);
  flex: 1;
  min-width: 200px;
}

.contact-form-section__privacy input[type="checkbox"] {
  width: 18px;
  height: 18px;
  min-height: unset;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--color-primary);
  cursor: pointer;
}

.contact-form-section__privacy a {
  color: var(--color-primary);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact-form-section__note {
  margin-top: var(--space-md);
  font-size: 0.8125rem;
  color: var(--color-text-light);
  line-height: 1.5;
}

.contact-form-section__note a {
  color: var(--color-primary);
}

.contact-form-section__info-col {
  position: sticky;
  top: var(--space-lg);
}

.contact-form-section__info-items {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}

.contact-form-section__info-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  padding: var(--space-md);
  background: var(--color-surface);
  border-radius: var(--radius-md);
  border: 1px solid rgba(30,28,26,0.07);
  box-shadow: var(--shadow-xs);
  transition: box-shadow 0.2s ease;
}

.contact-form-section__info-item:hover { box-shadow: var(--shadow-sm); }

.contact-form-section__info-item i {
  color: var(--color-primary);
  font-size: 1.1rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.contact-form-section__info-item strong {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.2rem;
}

.contact-form-section__info-item p {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.5;
  margin: 0;
}

.contact-form-section__info-item a {
  color: var(--color-primary);
}

.contact-form-section__meeting {
  background: var(--color-primary-light);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  border: 1px solid rgba(45,106,94,0.15);
}

.contact-form-section__meeting h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-primary-dark);
  margin-bottom: var(--space-sm);
}

.contact-form-section__meeting p {
  font-size: 0.875rem;
  color: var(--color-primary-dark);
  line-height: 1.65;
  margin-bottom: var(--space-xs);
  opacity: 0.85;
}

.contact-map {
  background: var(--color-bg-alt);
  padding: 0;
}

.contact-map__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: var(--space-xl) var(--space-md);
}

.contact-map__iframe {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  display: block;
}

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

.thanks-main {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 60vh;
}

.thanks-section {
  padding: var(--space-2xl) 0;
  width: 100%;
}

.thanks-section__inner {
  max-width: 560px;
  margin: 0 auto;
  padding: 0 var(--space-md);
  text-align: center;
}


.thanks-section__envelope {
  display: flex;
  justify-content: center;
  margin-bottom: var(--space-xl);
}

.thanks-envelope {
  position: relative;
  width: 100px;
  height: 70px;
  animation: envelope-appear 0.5s ease 0.2s both;
}

.thanks-envelope__body {
  position: absolute;
  inset: 0;
  background: var(--color-surface);
  border: 2px solid var(--color-primary);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
}

.thanks-envelope__flap {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: var(--color-primary-light);
  border: 2px solid var(--color-primary);
  border-bottom: none;
  border-radius: var(--radius-sm) var(--radius-sm) 0 0;
  transform-origin: top center;
  animation: flap-open 0.5s ease 0.8s both;
}

.thanks-envelope__letter {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 8px;
  height: 55px;
  background: var(--color-surface);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(45,106,94,0.2);
  animation: letter-rise 0.5s ease 1.1s both;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8px;
  box-shadow: var(--shadow-sm);
}

.thanks-envelope__letter-lines {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.thanks-envelope__letter-lines span {
  display: block;
  height: 2px;
  background: var(--color-primary-light);
  border-radius: 2px;
}

.thanks-envelope__letter-lines span:nth-child(1) { width: 80%; }
.thanks-envelope__letter-lines span:nth-child(2) { width: 60%; }
.thanks-envelope__letter-lines span:nth-child(3) { width: 70%; }

@keyframes envelope-appear {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes flap-open {
  from { transform: rotateX(0deg); }
  to { transform: rotateX(-40deg); }
}

@keyframes letter-rise {
  from { transform: translateY(0); opacity: 0; }
  to { transform: translateY(-30px); opacity: 1; }
}

.thanks-section__heading {
  font-size: clamp(1.75rem, 3vw + 0.5rem, 2.5rem);
  font-weight: 700;
  margin-bottom: var(--space-md);
  animation: fade-up 0.5s ease 1.4s both;
}

.thanks-section__text {
  font-size: 1.05rem;
  color: var(--color-text-muted);
  margin-bottom: var(--space-xl);
  animation: fade-up 0.5s ease 1.6s both;
}

.thanks-section__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  justify-content: center;
  animation: fade-up 0.5s ease 1.8s both;
}

@keyframes fade-up {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

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


.privacy-hero {
  background: var(--color-bg-alt);
  padding: var(--space-xl) 0;
  border-bottom: 1px solid rgba(30,28,26,0.08);
}

.privacy-hero__inner {
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.privacy-hero__heading {
  font-size: clamp(1.5rem, 2.5vw + 0.5rem, 2.2rem);
  font-weight: 700;
  margin-bottom: var(--space-xs);
}

.privacy-hero__meta {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

.privacy-timeline {
  padding: var(--space-2xl) 0;
  background: var(--color-bg);
}

.privacy-timeline__inner {
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding: 0 var(--space-md);
  position: relative;
}

.privacy-timeline__line {
  position: absolute;
  left: calc(var(--space-md) + 16px);
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--color-primary-light), transparent);
}

@media (min-width: 640px) {
  .privacy-timeline__line { left: calc(var(--space-md) + 20px); }
}

.privacy-timeline__entry {
  display: flex;
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
  position: relative;
}

.privacy-timeline__marker {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  box-shadow: 0 0 0 4px var(--color-bg), var(--shadow-sm);
}

.privacy-timeline__marker span {
  font-size: 0.8125rem;
  font-weight: 600;
  color: #fff;
}

.privacy-timeline__content {
  flex: 1;
  padding-top: 0.4rem;
}

.privacy-timeline__content h2 {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: var(--space-sm);
  color: var(--color-primary-dark);
}

.privacy-timeline__content p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.75;
  margin-bottom: var(--space-sm);
}

.privacy-timeline__content ul {
  list-style: disc;
  padding-left: 1.25rem;
  margin-bottom: var(--space-sm);
}

.privacy-timeline__content li {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.65;
  margin-bottom: 0.4rem;
}

.privacy-timeline__content a {
  color: var(--color-primary);
  text-decoration: underline;
  text-underline-offset: 3px;
}


.terms-hero {
  background: linear-gradient(to right, var(--color-primary-light), var(--color-bg-alt));
  padding: var(--space-xl) 0;
  border-bottom: 1px solid rgba(30,28,26,0.08);
}

.terms-hero__inner {
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.terms-hero__badge {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--color-primary);
  background: rgba(45,106,94,0.1);
  border: 1px solid rgba(45,106,94,0.2);
  padding: 0.25rem 0.75rem;
  border-radius: 100px;
  margin-bottom: var(--space-sm);
}

.terms-hero__heading {
  font-size: clamp(1.5rem, 2.5vw + 0.5rem, 2.2rem);
  font-weight: 700;
  margin-bottom: var(--space-xs);
}

.terms-hero__sub {
  font-size: 1rem;
  color: var(--color-text-muted);
}

.terms-content {
  padding: var(--space-2xl) 0;
  background: var(--color-bg);
}

.terms-content__inner {
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.terms-content__block {
  margin-bottom: var(--space-xl);
  padding: var(--space-xl);
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(30,28,26,0.07);
  box-shadow: var(--shadow-xs);
}

.terms-content__block h2 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: var(--space-md);
  color: var(--color-primary-dark);
  padding-bottom: var(--space-sm);
  border-bottom: 2px solid var(--color-primary-light);
}

.terms-content__block p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.75;
  margin-bottom: var(--space-sm);
}

.terms-content__block p:last-child { margin-bottom: 0; }


.cookies-hero {
  background: var(--color-bg-alt);
  padding: var(--space-xl) 0;
  border-bottom: 1px solid rgba(30,28,26,0.08);
}

.cookies-hero__inner {
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.cookies-hero__heading {
  font-size: clamp(1.5rem, 2.5vw + 0.5rem, 2.2rem);
  font-weight: 700;
  margin-bottom: var(--space-xs);
}

.cookies-hero__meta {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

.cookies-content {
  padding: var(--space-2xl) 0;
  background: var(--color-bg);
}

.cookies-content__inner {
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.cookies-content__intro {
  margin-bottom: var(--space-xl);
  padding: var(--space-lg);
  background: var(--color-primary-light);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-primary);
}

.cookies-content__intro p {
  font-size: 0.9375rem;
  color: var(--color-primary-dark);
  line-height: 1.7;
}

.cookies-content__section {
  margin-bottom: var(--space-xl);
}

.cookies-content__section h2 {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: var(--space-md);
  color: var(--color-text);
}

.cookies-content__section p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.75;
  margin-bottom: var(--space-sm);
}

.cookies-content__section ul {
  list-style: disc;
  padding-left: 1.25rem;
  margin-bottom: var(--space-sm);
}

.cookies-content__section li {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.65;
  margin-bottom: 0.4rem;
}

.cookies-content__section a {
  color: var(--color-primary);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cookies-content__category {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  margin-bottom: var(--space-md);
  border: 1px solid rgba(30,28,26,0.07);
  box-shadow: var(--shadow-xs);
}

.cookies-content__category-header {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-sm);
}

.cookies-content__category-header h3 {
  font-size: 1rem;
  font-weight: 600;
}

.cookies-content__category-badge {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.2rem 0.6rem;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.cookies-content__category-badge--required {
  background: #e8f5e9;
  color: #2e7d32;
}

.cookies-content__category-badge--analytics {
  background: #e3f2fd;
  color: #1565c0;
}

.cookies-content__category-badge--prefs {
  background: var(--color-accent-light);
  color: var(--color-accent);
}

.cookies-content__category p {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.65;
  margin-bottom: var(--space-sm);
}

.cookies-content__table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.8125rem;
  margin-top: var(--space-sm);
}

.cookies-content__table th {
  text-align: left;
  padding: 0.5rem 0.75rem;
  background: var(--color-bg-alt);
  font-weight: 600;
  color: var(--color-text);
  border-bottom: 1px solid rgba(30,28,26,0.1);
}

.cookies-content__table td {
  padding: 0.5rem 0.75rem;
  color: var(--color-text-muted);
  border-bottom: 1px solid rgba(30,28,26,0.06);
}

.cookies-content__table tr:last-child td { border-bottom: none; }

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

.cookie-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--color-inverted-bg);
  border-bottom: 1px solid rgba(122,171,150,0.2);
  box-shadow: 0 4px 24px rgba(0,0,0,0.3);
  transform: translateY(-100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-banner.is-visible {
  transform: translateY(0);
}

.cookie-banner__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0.75rem var(--space-md);
  display: flex;
  align-items: center;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.cookie-banner__text {
  flex: 1;
  min-width: 200px;
  font-size: 0.875rem;
  color: #c8c2bb;
  line-height: 1.5;
}

.cookie-banner__text a {
  color: var(--color-sage);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cookie-banner__actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.cookie-banner__btn {
  padding: 0.45rem 1rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 500;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  min-height: 36px;
  white-space: nowrap;
}

.cookie-banner__btn--accept {
  background: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
}

.cookie-banner__btn--accept:hover {
  background: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
}

.cookie-banner__btn--reject {
  background: transparent;
  color: #8a847d;
  border-color: #3a3530;
}

.cookie-banner__btn--reject:hover {
  color: #c8c2bb;
  border-color: #5a5550;
}

.cookie-banner__btn--customize {
  background: transparent;
  color: var(--color-sage);
  border-color: rgba(122,171,150,0.3);
}

.cookie-banner__btn--customize:hover {
  background: rgba(122,171,150,0.1);
  border-color: var(--color-sage);
}


.cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-md);
  background: rgba(26,24,22,0.7);
  backdrop-filter: blur(4px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

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

.cookie-modal__box {
  background: var(--color-surface);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  max-width: 520px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-xl);
  transform: translateY(16px);
  transition: transform 0.3s ease;
}

.cookie-modal.is-visible .cookie-modal__box {
  transform: translateY(0);
}

.cookie-modal__title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: var(--space-sm);
}

.cookie-modal__desc {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  margin-bottom: var(--space-lg);
  line-height: 1.65;
}

.cookie-modal__category {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--space-md);
  padding: var(--space-md) 0;
  border-bottom: 1px solid rgba(30,28,26,0.08);
}

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

.cookie-modal__category-info h3 {
  font-size: 0.9375rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.cookie-modal__category-info p {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  line-height: 1.55;
}

.cookie-modal__toggle {
  position: relative;
  flex-shrink: 0;
  width: 44px;
  height: 24px;
}

.cookie-modal__toggle input {
  opacity: 0;
  width: 0;
  height: 0;
  position: absolute;
}

.cookie-modal__toggle-track {
  position: absolute;
  inset: 0;
  background: #d0cbc4;
  border-radius: 100px;
  cursor: pointer;
  transition: background 0.2s ease;
}

.cookie-modal__toggle input:checked + .cookie-modal__toggle-track {
  background: var(--color-primary);
}

.cookie-modal__toggle-track::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 18px;
  height: 18px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.2s ease;
  box-shadow: var(--shadow-xs);
}

.cookie-modal__toggle input:checked + .cookie-modal__toggle-track::after {
  transform: translateX(20px);
}

.cookie-modal__toggle input:disabled + .cookie-modal__toggle-track {
  opacity: 0.6;
  cursor: not-allowed;
}

.cookie-modal__actions {
  display: flex;
  gap: var(--space-sm);
  margin-top: var(--space-lg);
  flex-wrap: wrap;
}

.cookie-modal__save {
  flex: 1;
  padding: 0.625rem 1rem;
  background: var(--color-primary);
  color: #fff;
  border: none;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s ease;
  min-height: 44px;
}

.cookie-modal__save:hover { background: var(--color-primary-dark); }

.cookie-modal__close {
  padding: 0.625rem 1rem;
  background: transparent;
  color: var(--color-text-muted);
  border: 1.5px solid rgba(30,28,26,0.15);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease;
  min-height: 44px;
}

.cookie-modal__close:hover {
  border-color: var(--color-text-muted);
  color: var(--color-text);
}

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

@media (max-width: 639px) {
  .home-hero__actions { flex-direction: column; align-items: flex-start; }
  .home-inverted__pillars { grid-template-columns: 1fr; }
  .contact-form-section__footer-row { flex-direction: column; align-items: flex-start; }
  .cookie-banner__inner { flex-direction: column; align-items: flex-start; }
  .cookie-banner__actions { width: 100%; }
  .cookie-modal__actions { flex-direction: column; }
}

@media (max-width: 899px) {
  .sponzorstvi-content__sidebar { display: none; }
}


* { max-width: 100%; }
img, video, iframe { max-width: 100%; }
table { max-width: 100%; overflow-x: auto; display: block; }

@media (max-width: 639px) {
  .cookies-content__table { font-size: 0.75rem; }
  .cookies-content__table th,
  .cookies-content__table td { padding: 0.4rem 0.5rem; }
}