/* ============================================================
   GDPR — Zásady ochrany osobních údajů
   ============================================================ */

/* Hero */
.gdpr__hero {
  padding: 140px 0 64px;
  background: var(--cream);
  border-bottom: 1px solid rgba(10,8,6,.08);
}
.gdpr__hero-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap;
}
.gdpr__hero .section-label {
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
}
.gdpr__hero-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 900;
  color: var(--ink);
  line-height: 1.1;
  margin: 0 0 16px;
}
.gdpr__hero-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
}
.gdpr__hero-meta {
  font-size: 13px;
  color: var(--muted);
  letter-spacing: .02em;
}
.gdpr__hero-cards {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: flex-start;
  padding-top: 8px;
}
.gdpr__hero-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  background: #fff;
  border: 1px solid rgba(10,8,6,.07);
  border-radius: 16px;
  padding: 20px 24px;
  min-width: 140px;
  box-shadow: 0 2px 12px rgba(10,8,6,.04);
  transition: box-shadow .25s, transform .25s;
}
.gdpr__hero-card:hover {
  box-shadow: 0 8px 28px rgba(10,8,6,.09);
  transform: translateY(-2px);
}
.gdpr__hero-card svg {
  width: 28px;
  height: 28px;
  color: var(--gold);
  flex-shrink: 0;
}
.gdpr__hero-card span {
  font-size: 12px;
  line-height: 1.5;
  color: var(--ink);
  font-family: 'Inter', sans-serif;
}

/* Layout */
.gdpr__layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  max-width: 1100px;
  margin: 0 auto;
  padding: 64px 24px 96px;
  gap: 64px;
  align-items: start;
}

/* Sidebar TOC */
.gdpr__toc {
  position: sticky;
  top: 96px;
  max-height: calc(100vh - 120px);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-right: 8px;
}
.gdpr__toc::-webkit-scrollbar { display: none; }
.gdpr__toc-title {
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
  margin-bottom: 12px;
}
.gdpr__toc nav {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.gdpr__toc-link {
  display: block;
  font-size: 12.5px;
  line-height: 1.5;
  color: var(--muted);
  text-decoration: none;
  padding: 5px 8px;
  border-radius: 6px;
  transition: background .18s, color .18s;
  border-left: 2px solid transparent;
}
.gdpr__toc-link:hover,
.gdpr__toc-link.active {
  color: var(--ink);
  background: rgba(10,8,6,.04);
  border-left-color: var(--gold);
}
.gdpr__toc-back {
  display: inline-block;
  margin-top: 24px;
  font-size: 12px;
  color: var(--gold);
  text-decoration: none;
  font-weight: 500;
  letter-spacing: .03em;
  transition: opacity .2s;
}
.gdpr__toc-back:hover { opacity: .7; }

/* Main content */
.gdpr__main {
  min-width: 0;
}
.gdpr__sec {
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(10,8,6,.06);
  margin-bottom: 56px;
}
.gdpr__sec:last-of-type {
  border-bottom: none;
}
.gdpr__sec-title {
  display: flex;
  align-items: baseline;
  gap: 16px;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 24px;
  line-height: 1.2;
}
.gdpr__sec-num {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  color: var(--gold);
  background: rgba(180,142,90,.1);
  padding: 3px 8px;
  border-radius: 20px;
  flex-shrink: 0;
  align-self: center;
}
.gdpr__sec p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--ink);
  margin: 0 0 14px;
}
.gdpr__sec a {
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid rgba(180,142,90,.3);
  transition: border-color .2s;
}
.gdpr__sec a:hover { border-bottom-color: var(--gold); }

/* Note boxes */
.gdpr__note {
  display: flex;
  gap: 12px;
  background: rgba(180,142,90,.07);
  border: 1px solid rgba(180,142,90,.25);
  border-left: 3px solid var(--gold);
  border-radius: 8px;
  padding: 16px 20px;
  font-size: 13.5px;
  line-height: 1.65;
  color: var(--ink);
  margin-top: 20px;
}
.gdpr__note svg {
  width: 18px;
  height: 18px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}
.gdpr__note--eu {
  background: rgba(58,158,106,.06);
  border-color: rgba(58,158,106,.25);
  border-left-color: #3a9e6a;
}
.gdpr__note--eu svg {
  color: #3a9e6a;
}

/* Identity card (section 1) */
.gdpr__identity {
  background: rgba(10,8,6,.02);
  border: 1px solid rgba(10,8,6,.07);
  border-radius: 14px;
  overflow: hidden;
  margin-top: 16px;
}
.gdpr__identity-row {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 12px;
  padding: 12px 20px;
  border-bottom: 1px solid rgba(10,8,6,.05);
  font-size: 14px;
  line-height: 1.6;
  align-items: center;
}
.gdpr__identity-row:last-child { border-bottom: none; }
.gdpr__identity-label {
  font-size: 11.5px;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .06em;
}
.gdpr__identity-val {
  color: var(--ink);
  font-size: 14px;
}

/* Data categories (section 2) */
.gdpr__data-cats {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 20px;
}
.gdpr__data-cat {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: #fff;
  border: 1px solid rgba(10,8,6,.07);
  border-radius: 12px;
  padding: 16px 20px;
  box-shadow: 0 1px 6px rgba(10,8,6,.03);
  transition: box-shadow .2s;
}
.gdpr__data-cat:hover {
  box-shadow: 0 4px 16px rgba(10,8,6,.07);
}
.gdpr__data-cat-icon {
  width: 40px;
  height: 40px;
  background: rgba(180,142,90,.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.gdpr__data-cat-icon svg {
  width: 20px;
  height: 20px;
  color: var(--gold);
}
.gdpr__data-cat-body {
  flex: 1;
  min-width: 0;
}
.gdpr__data-cat-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  margin: 0 0 4px !important;
}
.gdpr__data-cat-desc {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--muted);
  margin: 0 !important;
}

/* Table (sections 3, 4) */
.gdpr__table-wrap {
  overflow-x: auto;
  margin-top: 20px;
  border-radius: 12px;
  border: 1px solid rgba(10,8,6,.08);
}
.gdpr__table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13.5px;
  line-height: 1.6;
  background: #fff;
}
.gdpr__table thead tr {
  background: var(--ink);
  color: #fff;
}
.gdpr__table thead th {
  padding: 13px 18px;
  text-align: left;
  font-size: 11px;
  letter-spacing: .09em;
  text-transform: uppercase;
  font-weight: 600;
  color: rgba(255,255,255,.85);
}
.gdpr__table tbody tr {
  border-bottom: 1px solid rgba(10,8,6,.06);
  transition: background .18s;
}
.gdpr__table tbody tr:last-child { border-bottom: none; }
.gdpr__table tbody tr:hover {
  background: rgba(10,8,6,.02);
}
.gdpr__table tbody td {
  padding: 14px 18px;
  color: var(--ink);
  vertical-align: top;
}
.gdpr__table-sub {
  font-size: 12px;
  color: var(--muted);
  display: block;
  margin-top: 3px;
}
.gdpr__table-law {
  font-size: 11px;
  color: var(--muted);
  display: block;
  margin-top: 4px;
  font-family: 'Inter', monospace;
}

/* Legal basis badges */
.gdpr__badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.gdpr__badge--contract {
  background: rgba(58,120,200,.12);
  color: #3a78c8;
}
.gdpr__badge--legal {
  background: rgba(180,142,90,.12);
  color: #8a6830;
}
.gdpr__badge--interest {
  background: rgba(100,160,100,.12);
  color: #3a7a3a;
}
.gdpr__badge--consent {
  background: rgba(160,80,160,.12);
  color: #7a3a7a;
}

/* Retention labels */
.gdpr__retention {
  display: inline-block;
  font-weight: 700;
  color: var(--ink);
  white-space: nowrap;
}

/* Recipients (section 5) */
.gdpr__recipients {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 14px;
  margin-top: 20px;
}
.gdpr__recipient {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: #fff;
  border: 1px solid rgba(10,8,6,.07);
  border-radius: 12px;
  padding: 16px 18px;
  box-shadow: 0 1px 6px rgba(10,8,6,.03);
}
.gdpr__recipient-icon {
  width: 38px;
  height: 38px;
  background: rgba(180,142,90,.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.gdpr__recipient-icon svg {
  width: 18px;
  height: 18px;
  color: var(--gold);
}
.gdpr__recipient-name {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink);
  margin: 0 0 4px;
}
.gdpr__recipient-desc {
  font-size: 12.5px;
  line-height: 1.55;
  color: var(--muted);
  margin: 0;
}

/* Rights grid (section 6) */
.gdpr__rights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 14px;
  margin-top: 24px;
}
.gdpr__right-card {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: #fff;
  border: 1px solid rgba(10,8,6,.07);
  border-radius: 14px;
  padding: 18px 20px;
  box-shadow: 0 2px 10px rgba(10,8,6,.04);
  transition: box-shadow .25s, transform .25s;
}
.gdpr__right-card:hover {
  box-shadow: 0 6px 24px rgba(10,8,6,.09);
  transform: translateY(-2px);
}
.gdpr__right-icon {
  width: 42px;
  height: 42px;
  background: rgba(180,142,90,.1);
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.gdpr__right-icon svg {
  width: 20px;
  height: 20px;
  color: var(--gold);
}
.gdpr__right-body {
  flex: 1;
  min-width: 0;
}
.gdpr__right-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 2px !important;
}
.gdpr__right-art {
  font-size: 11px;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: .04em;
  font-family: 'Inter', sans-serif;
  margin: 0 0 8px !important;
}
.gdpr__right-desc {
  font-size: 13px;
  line-height: 1.6;
  color: var(--muted);
  margin: 0 !important;
}

/* Contact ways (section 7) */
.gdpr__contact-ways {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 24px;
}
.gdpr__contact-way {
  display: flex;
  gap: 14px;
  align-items: center;
  background: #fff;
  border: 1px solid rgba(10,8,6,.07);
  border-radius: 12px;
  padding: 16px 20px;
  flex: 1;
  min-width: 220px;
  box-shadow: 0 1px 6px rgba(10,8,6,.03);
}
.gdpr__contact-way-icon {
  width: 40px;
  height: 40px;
  background: rgba(180,142,90,.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.gdpr__contact-way-icon svg {
  width: 18px;
  height: 18px;
  color: var(--gold);
}
.gdpr__contact-way > div {
  min-width: 0;
  overflow: hidden;
}
.gdpr__contact-way-label {
  font-size: 11px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .07em;
  font-weight: 600;
  margin: 0 0 4px;
  font-family: 'Inter', sans-serif;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.gdpr__contact-way-val {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  display: block;
  border: none !important;
  transition: color .2s;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.gdpr__contact-way-val:hover { color: var(--gold); }

/* UOOU box (section 8) */
.gdpr__uoou {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: rgba(10,8,6,.02);
  border: 1px solid rgba(10,8,6,.08);
  border-left: 4px solid var(--gold);
  border-radius: 14px;
  padding: 24px 28px;
  margin-top: 20px;
}
.gdpr__uoou-logo {
  width: 52px;
  height: 52px;
  background: rgba(180,142,90,.12);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.gdpr__uoou-logo svg {
  width: 26px;
  height: 26px;
  color: var(--gold);
}
.gdpr__uoou-body {
  flex: 1;
  min-width: 0;
}
.gdpr__uoou-name {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 14px;
}
.gdpr__uoou-details {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.gdpr__uoou-row {
  display: flex;
  gap: 12px;
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--ink);
}
.gdpr__uoou-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--muted);
  min-width: 100px;
  padding-top: 2px;
}
.gdpr__uoou-row a {
  color: var(--gold);
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px solid rgba(180,142,90,.3);
  transition: border-color .2s;
}
.gdpr__uoou-row a:hover { border-bottom-color: var(--gold); }

/* Cookie types (section 9) */
.gdpr__cookie-types {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
  margin-top: 20px;
}
.gdpr__cookie-type {
  background: #fff;
  border: 1px solid rgba(10,8,6,.07);
  border-top: 3px solid var(--gold);
  border-radius: 12px;
  padding: 20px 20px 16px;
  box-shadow: 0 2px 10px rgba(10,8,6,.04);
}
.gdpr__cookie-type--analytics {
  border-top-color: #7a6aaa;
}
.gdpr__cookie-type--marketing {
  border-top-color: #c08850;
}
.gdpr__cookie-type-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 8px;
}
.gdpr__cookie-type-desc {
  font-size: 13px;
  line-height: 1.6;
  color: var(--muted);
  margin: 0 0 14px;
}
.gdpr__cookie-badge {
  display: inline-block;
  padding: 3px 10px;
  background: rgba(58,158,106,.1);
  color: #3a7a3a;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .04em;
}
.gdpr__cookie-badge--opt {
  background: rgba(160,120,180,.1);
  color: #7a5090;
}

/* GDPR list */
.gdpr__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.gdpr__list li {
  display: flex;
  gap: 12px;
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--ink);
}
.gdpr__list li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  margin-top: 10px;
}

/* Footer CTA */
.gdpr__footer-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 24px;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all .25s;
  cursor: pointer;
  border: none;
  font-family: 'Inter', sans-serif;
}
.btn-gold {
  background: var(--gold);
  color: #fff;
  box-shadow: 0 4px 16px rgba(180,142,90,.3);
}
.btn-gold:hover {
  background: #a07840;
  box-shadow: 0 6px 20px rgba(180,142,90,.4);
  transform: translateY(-1px);
}
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid rgba(10,8,6,.18);
}
.btn-ghost:hover {
  background: rgba(10,8,6,.04);
  border-color: rgba(10,8,6,.3);
}

/* ── RESPONSIVE ─────────────────────────────── */
@media (max-width: 900px) {
  .gdpr__layout {
    grid-template-columns: 1fr;
    padding: 40px 20px 72px;
    gap: 0;
  }
  .gdpr__toc {
    position: static;
    max-height: none;
    display: none;
  }
  .gdpr__hero-inner {
    flex-direction: column;
    gap: 32px;
  }
  .gdpr__hero-cards {
    width: 100%;
    justify-content: flex-start;
  }
  .gdpr__contact-ways {
    flex-direction: column;
  }
  .gdpr__uoou {
    flex-direction: column;
    gap: 14px;
  }
}
@media (max-width: 600px) {
  .gdpr__hero { padding: 120px 0 48px; }
  .gdpr__identity-row {
    grid-template-columns: 1fr;
    gap: 2px;
  }
  .gdpr__identity-label { margin-top: 6px; }
  .gdpr__rights {
    grid-template-columns: 1fr;
  }
  .gdpr__hero-cards { flex-direction: column; }
  .gdpr__hero-card { flex-direction: row; text-align: left; min-width: unset; width: 100%; }
  .gdpr__table-wrap { font-size: 12.5px; }
  .gdpr__uoou-row { flex-direction: column; gap: 2px; }
  .gdpr__uoou-label { min-width: unset; }
}
