/* =========================================================
   Nikon Artofvision – Main Stylesheet
   Visual Identity: Black / #FFE600 Yellow / White
   Font: Roboto (Light 300, Regular 400, Medium 500, Bold 700)
   ========================================================= */

/* ----- Reset & Base ----- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

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

body {
  background: #000;
  color: #fff;
  font-family: 'Roboto', sans-serif;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  min-height: 100vh;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font-family: inherit; }
button { cursor: pointer; }

/* ----- CSS Variables ----- */
:root {
  --yellow: #FFE600;
  --black:  #000000;
  --white:  #FFFFFF;
  --red:    #FF3B30;
  --grid:   1280px;
}

/* =========================================================
   LAYOUT UTILITIES
   ========================================================= */
.container {
  max-width: var(--grid);
  margin: 0 auto;
  padding: 0 96px;
  position: relative;
}

/* Vertical grid lines (decorative) */
.grid-lines {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  display: flex;
  justify-content: space-between;
  padding: 0 96px;
}
.grid-lines__line {
  width: 1px;
  background: rgba(255,255,255,0.04);
  height: 100%;
}

/* =========================================================
   HEADER
   ========================================================= */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  mix-blend-mode: normal;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.site-header__logo img {
  height: 80px;
  width: auto;
}

.site-header__label {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 4.8px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}

/* Internal page nav */
.site-header__nav {
  display: flex;
  gap: 36px;
  align-items: center;
}
.site-header__nav a {
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  transition: color .2s;
}
.site-header__nav a:hover { color: var(--yellow); }

/* Hamburger button – skrytý na desktopu */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 110;
}
.nav-hamburger span {
  display: block;
  width: 100%;
  height: 1.5px;
  background: #fff;
  transition: transform .25s, opacity .25s;
}
.nav-hamburger.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.is-open span:nth-child(2) { opacity: 0; }
.nav-hamburger.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* =========================================================
   HOMEPAGE – HERO
   ========================================================= */
.page-homepage { background: #000; position: relative; overflow: hidden; }

/* Lens background – centered on page */
.homepage-lens-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.homepage-lens-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: brightness(0.45);
  mask-image: radial-gradient(
    ellipse 70% 60% at 50% 50%,
    rgba(0,0,0,1) 30%,
    rgba(0,0,0,0.6) 60%,
    rgba(0,0,0,0) 100%
  );
  -webkit-mask-image: radial-gradient(
    ellipse 70% 60% at 50% 50%,
    rgba(0,0,0,1) 30%,
    rgba(0,0,0,0.6) 60%,
    rgba(0,0,0,0) 100%
  );
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 120px;
  padding-bottom: 120px;
}

/* Radial yellow glow */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 1200px 900px at 50% 45%, rgba(255,230,0,0.07) 0%, transparent 65%);
  pointer-events: none;
}

/* Decorative rings */
.hero__ring {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.03);
  pointer-events: none;
}
.hero__ring--sm  { width: 600px;  height: 600px; }
.hero__ring--md  { width: 900px;  height: 900px; }
.hero__ring--lg  { width: 1200px; height: 1200px; border-color: rgba(255,230,0,0.04); }

.hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 700px;
  padding: 0 24px;
}

.hero__eyebrow {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 4.8px;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 28px;
}

.hero__heading {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(72px, 8vw, 96px);
  font-weight: 400;
  letter-spacing: 9.6px;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 0;
}
.hero__heading span {
  display: block;
  font-weight: 700;
  position: relative;
}
.hero__heading span::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 380px;
  height: 4px;
  background: var(--yellow);
  opacity: .8;
}

.hero__meta {
  margin-top: 48px;
  display: inline-flex;
  flex-direction: column;
  gap: 2px;
  border: 1px solid var(--yellow);
  padding: 16px 28px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fff;
  line-height: 1.6;
}

.hero__description {
  margin-top: 32px;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.6;
  color: rgba(255,255,255,0.7);
  max-width: 620px;
}

/* Vertical divider below hero */
.hero__divider {
  position: absolute;
  bottom: 48px;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 64px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  opacity: .5;
}

/* =========================================================
   ACCESS GATE (Homepage validation form)
   ========================================================= */
.access-gate {
  position: relative;
  z-index: 2;
  margin: 0 auto 0;
  max-width: 768px;
  background: rgba(10,10,10,0.85);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 56px 64px 48px;
}

/* Yellow corner accents */
.access-gate::before,
.access-gate::after,
.access-gate__corner-bl,
.access-gate__corner-br {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  border-color: rgba(255,230,0,0.5);
  border-style: solid;
}
.access-gate::before         { top: 0; left: 0;    border-width: 1px 0 0 1px; }
.access-gate::after          { top: 0; right: 0;   border-width: 1px 1px 0 0; }
.access-gate__corner-bl      { bottom: 0; left: 0;  border-width: 0 0 1px 1px; }
.access-gate__corner-br      { bottom: 0; right: 0; border-width: 0 1px 1px 0; }

.access-gate__title {
  font-size: 24px;
  font-weight: 300;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 12px;
}

.access-gate__subtitle {
  font-size: 14px;
  font-weight: 400;
  color: rgba(255,255,255,0.4);
  letter-spacing: 1px;
  text-align: center;
  line-height: 1.6;
  margin-bottom: 40px;
}

/* Form row */
.access-gate__fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 32px;
}

.nikon-input {
  position: relative;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  padding-bottom: 10px;
  transition: border-color .2s;
}
.nikon-input:focus-within { border-color: var(--yellow); }
.nikon-input--error        { border-color: var(--red); }

.nikon-input input {
  width: 100%;
  background: transparent;
  border: none;
  outline: none;
  color: #fff;
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  padding: 6px 0 4px;
  text-align: center;
}
.nikon-input input::placeholder {
  color: #9CA3AF;
  font-size: 14px;
  letter-spacing: 1.4px;
}
.nikon-input input[type="email"] {
  text-transform: none;
}

/* Submit button */
.btn-primary {
  display: block;
  width: 100%;
  max-width: 280px;
  margin: 0 auto;
  background: var(--yellow);
  color: #000;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 4.2px;
  text-transform: uppercase;
  padding: 16px 24px;
  border: none;
  transition: opacity .2s, transform .15s;
}
.btn-primary:hover    { opacity: .9; transform: translateY(-1px); }
.btn-primary:active   { transform: translateY(0); }
.btn-primary:disabled { opacity: .4; cursor: not-allowed; transform: none; }

/* Error message inline */
.access-gate__error {
  display: none;
  background: rgba(255,59,48,0.08);
  border: 1px solid rgba(255,59,48,0.3);
  padding: 12px 20px;
  margin-top: 20px;
  font-size: 13px;
  color: var(--red);
  text-align: center;
  letter-spacing: .3px;
  white-space: pre-line;
}
.access-gate__error.is-visible { display: block; }

/* =========================================================
   INNER PAGES (VIP / Standard) – Section: Program
   ========================================================= */
.page-inner { background: #000; padding-top: 88px; padding-bottom: 120px; width: 100%; max-width: 100vw; overflow-x: hidden; box-sizing: border-box; }

/* Scroll offset for fixed header (88px) */
#section-form,
#section-timeline,
#section-kunsthalle,
#section-nikon {
  scroll-margin-top: 88px;
}

.section-program-wrap {
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.section-program-wrap__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.section-program-wrap__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
  opacity: 0.18;
}
.section-program-wrap__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.85) 40%, rgba(0,0,0,0.4) 100%);
  z-index: 1;
}
.section-program {
  position: relative;
  z-index: 2;
  padding: 80px 96px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 0 64px;
  max-width: var(--grid);
  margin: 0 auto;
}
.section-program__heading-wrap {
  grid-column: 1;
  grid-row: 1;
  padding-bottom: 32px;
}
.section-program__text-wrap {
  grid-column: 1;
  grid-row: 2;
}
.program-col2 {
  grid-column: 2;
  grid-row: 2;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-self: start;
}
.program-photo {
  width: 100%;
}

/* Map thumbnails below photo */
.program-maps {
  display: flex;
  gap: 12px;
}
.program-map-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-decoration: none;
  color: inherit;
}
.program-map-item__thumb {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 4px;
  border: 1px solid rgba(255,255,255,0.12);
  transition: border-color 0.2s;
}
.program-map-item__thumb img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.program-map-item:hover .program-map-item__thumb {
  border-color: var(--yellow);
}
.program-map-item__label {
  font-size: 11px;
  font-weight: 400;
  color: rgba(255,255,255,0.55);
  text-align: center;
  letter-spacing: 0.5px;
}

.section-program__label {
  display: inline-flex;
  align-items: center;
  padding: 4px 16px;
  border: 1px solid rgba(255,255,255,0.2);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 3.6px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 40px;
}

.section-program__heading {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 48px;
  font-weight: 400;
  letter-spacing: 1.2px;
  line-height: 1.1;
  margin-bottom: 28px;
}
.section-program__heading em {
  font-style: normal;
  font-weight: 500;
  color: var(--yellow);
}

.section-program__text {
  font-size: 18px;
  font-weight: 300;
  line-height: 1.65;
  color: rgba(255,255,255,0.6);
  margin-bottom: 20px;
}
.section-program__link {
  color: var(--yellow);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.section-program__link:hover { opacity: .8; }

.section-program__stats {
  display: flex;
  gap: 48px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 24px;
}
.stat__number {
  font-size: 30px;
  font-weight: 300;
  color: #fff;
  line-height: 1;
  margin-bottom: 6px;
}
.stat__number--yellow { color: var(--yellow); }
.stat__label {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}

/* Photo panel */
.program-photo {
  position: relative;
  background: #0a0a0a;
  overflow: hidden;
}
.program-photo img {
  width: 100%;
  height: auto;
  display: block;
}
.program-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255,255,255,0.1);
  pointer-events: none;
}
.program-photo__bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 33%;
  height: 4px;
  background: var(--yellow);
}
.program-photo__badge {
  position: absolute;
  bottom: 48px;
  right: 48px;
  background: rgba(0,0,0,0.8);
  backdrop-filter: blur(4px);
  border-left: 1px solid var(--yellow);
  padding: 12px 20px;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
}

/* =========================================================
   SECTION: Registration Form
   ========================================================= */
.section-form {
  background: #000;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 80px 96px;
  max-width: var(--grid);
  margin: 0 auto;
}

.section-form__heading {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 30px;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 12px;
}
.section-form__sub {
  font-size: 14px;
  font-weight: 300;
  color: rgba(255,255,255,0.4);
  text-align: center;
  margin-bottom: 48px;
}

.reg-form-card {
  max-width: 896px;
  margin: 0 auto;
  background: rgba(10,10,10,0.8);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 64px;
  position: relative;
}

.reg-form-card__badge {
  font-size: 20px;
  font-weight: 300;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--yellow);
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 40px;
}

.form-group {
  margin-bottom: 52px;
}
.form-group__label {
  display: block;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  margin-bottom: 14px;
}

/* Radio group */
.radio-group {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}
.radio-group--inline {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 24px;
}

/* Form group sub-note */
.form-group__sub {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  margin: 4px 0 12px;
  letter-spacing: 0.5px;
}
.form-group__link {
  color: var(--yellow);
  text-decoration: none;
}
.form-group__link:hover { text-decoration: underline; }
.radio-label {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  font-size: 18px;
  font-weight: 300;
  color: rgba(255,255,255,0.7);
  transition: color .2s;
}
.radio-label:has(input:checked) { color: #fff; }

.radio-label input[type="radio"] { display: none; }
.radio-custom {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.3);
  flex-shrink: 0;
  position: relative;
  transition: border-color .2s;
}
.radio-label input[type="radio"]:checked + .radio-custom {
  border-color: var(--yellow);
  box-shadow: inset 0 0 0 5px #000, inset 0 0 0 11px var(--yellow);
}

/* Textarea */
.nikon-textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  outline: none;
  color: #fff;
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 1.6px;
  padding: 10px 0;
  resize: none;
  min-height: 60px;
  transition: border-color .2s;
}
.nikon-textarea::placeholder { color: #9CA3AF; text-transform: uppercase; }
.nikon-textarea:focus         { border-color: var(--yellow); }

/* Inline form group (Jméno + Příjmení) */
.form-group--inline {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.nikon-text-input {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  font-family: 'Roboto', sans-serif;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 10px 0;
  outline: none;
  transition: border-color .2s;
}
.nikon-text-input::placeholder { color: #9CA3AF; }
.nikon-text-input:focus { border-bottom-color: var(--yellow); }
.nikon-text-input[name="first_name"],
.nikon-text-input[name="last_name"] { text-transform: none; }

/* Poznámka pod polem */
.form-group__note {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  margin-top: 10px;
  margin-bottom: 24px;
  line-height: 1.5;
}

/* Právní poznámky pod CTA */
.form-legal {
  list-style: disc;
  padding-left: 18px;
  margin-top: 20px;
}
.form-legal li {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
  margin-bottom: 6px;
}

/* Submit row */
.form-submit-row {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 32px;
  margin-top: 32px;
}
.btn-submit {
  display: block;
  width: 100%;
  background: var(--yellow);
  color: #000;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 4.2px;
  text-transform: uppercase;
  padding: 20px 24px;
  border: none;
  transition: opacity .2s, transform .15s;
}
.btn-submit:hover  { opacity: .9; transform: translateY(-1px); }
.btn-submit:active { transform: translateY(0); }

/* =========================================================
   SECTION: Timeline / Harmonogram
   ========================================================= */
.section-timeline {
  background: rgba(10,10,10,0.5);
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 80px 96px;
  max-width: var(--grid);
  margin: 0 auto;
}

.section-timeline__heading {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 36px;
  font-weight: 400;
  letter-spacing: 3.6px;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 8px;
}
.section-timeline__divider {
  width: 48px;
  height: 1px;
  background: var(--yellow);
  margin: 0 auto 64px;
}

.timeline {
  display: flex;
  flex-direction: column;
}
.timeline__section-title {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 3px;
  color: var(--yellow);
  text-transform: uppercase;
  text-align: center;
  padding: 32px 0 32px;
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 8px;
}
.timeline__section-title:first-child {
  border-top: none;
  margin-top: 0;
  padding-top: 0;
}
.timeline__section-deco {
  text-align: center;
  margin-bottom: 32px;
}
.timeline__section-deco img {
  width: 180px;
  height: 180px;
  object-fit: cover;
  border-radius: 50%;
  opacity: 0.25;
  display: inline-block;
}
.timeline__row {
  display: grid;
  grid-template-columns: 160px 48px 1fr;
  gap: 0 24px;
  align-items: start;
}
.timeline__center {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 20px;
}
.timeline-card--empty {
  visibility: hidden;
  pointer-events: none;
}

/* Central line (legacy – no longer used) */
.timeline__track {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}
.timeline__line {
  width: 1px;
  flex: 1;
  background: rgba(255,255,255,0.1);
}
.timeline__dot {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  cursor: pointer;
  transition: border-color .2s;
}
.timeline__dot--active {
  border-color: var(--yellow);
}
.timeline__dot--active .timeline__dot-inner {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 10px rgba(255,230,0,.5);
}
.timeline__dot-inner-dim {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.5);
}

.timeline-card {
  background: rgba(0,0,0,0.4);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,0.05);
  padding: 28px;
  margin-bottom: 32px;
  grid-column: 3;
}
.timeline-card--right { margin-top: 80px; }
.timeline-card--time {
  background: transparent;
  backdrop-filter: none;
  border: none;
  padding: 28px 20px 28px 0;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  grid-column: 1;
}

.timeline-card__time {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 1px;
  color: var(--yellow);
  margin-bottom: 8px;
}
.timeline-card__time--dim { color: rgba(255,255,255,0.8); }
.timeline-card__divider  {
  display: none;
}
.timeline-card__title {
  font-size: 22px;
  font-weight: 300;
  margin-bottom: 10px;
}
.timeline-card__desc {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.65;
  color: rgba(255,255,255,0.5);
}
.timeline-card--active {
  border-color: rgba(255,230,0,.3);
  background: rgba(255,230,0,.05);
  transition: border-color .2s, background .2s;
}

/* =========================================================
   SECTION: Kunsthalle About
   ========================================================= */
.section-kunsthalle {
  padding: 80px 96px;
  max-width: var(--grid);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 0 80px;
}
.section-kunsthalle__titles {
  grid-column: 1;
  grid-row: 1;
  margin-bottom: 32px;
}
.section-kunsthalle__body-wrap {
  grid-column: 1;
  grid-row: 2;
}
.section-kunsthalle__photo {
  grid-column: 2;
  grid-row: 2;
}
.section-kunsthalle__eyebrow {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 4.2px;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 20px;
}
.section-kunsthalle__heading {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(36px, 4vw, 60px);
  font-weight: 400;
  letter-spacing: 6px;
  text-transform: uppercase;
  margin-bottom: 32px;
}
.section-kunsthalle__heading strong {
  font-weight: 400;
}
.section-kunsthalle__accent {
  position: absolute;
  left: -26px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--yellow);
}
.section-kunsthalle__body-wrap { position: relative; padding-left: 26px; }
.section-kunsthalle__body {
  font-size: 18px;
  font-weight: 300;
  line-height: 1.65;
  color: rgba(255,255,255,0.6);
}
.section-kunsthalle__photo {
  grid-column: 2;
  grid-row: 2;
}
.section-kunsthalle__photo img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
  display: block;
}

/* =========================================================
   SECTION: O značce Nikon (hero banner)
   ========================================================= */
.section-nikon-brand {
  position: relative;
  overflow: hidden;
  padding: 120px 96px;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.section-nikon-brand::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,.2), rgba(0,0,0,.8) 50%, #000);
  z-index: 1;
}
.section-nikon-brand__bg {
  position: absolute;
  inset: -55px 92px 0;
  z-index: 0;
}
.section-nikon-brand__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .36;
}
.section-nikon-brand__content {
  position: relative;
  z-index: 2;
}
.section-nikon-brand__eyebrow {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 4.2px;
  color: var(--yellow);
  text-transform: uppercase;
  margin-bottom: 24px;
}
.section-nikon-brand__heading {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(48px, 7vw, 96px);
  font-weight: 400;
  letter-spacing: 9.6px;
  text-transform: uppercase;
  margin-bottom: 48px;
}
.section-nikon-brand__heading strong { font-weight: 400; }
.section-nikon-brand__heading-link {
  color: inherit;
  text-decoration: none;
  display: inline-flex;
  align-items: flex-start;
  gap: 6px;
}
.section-nikon-brand__heading-link:hover { color: inherit; text-decoration: none; }
.ext-link-icon {
  width: 0.45em;
  height: 0.45em;
  flex-shrink: 0;
  margin-top: 0.12em;
  stroke: currentColor;
  stroke-width: 1.5;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.section-nikon-brand__text {
  max-width: 892px;
  margin: 0 auto;
  font-size: 20px;
  font-weight: 300;
  line-height: 1.6;
  color: rgba(255,255,255,0.8);
  letter-spacing: .5px;
}

/* =========================================================
   SECTION: Footer lens image
   ========================================================= */
.section-footer-lens {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #000;
  line-height: 0;
}
.section-footer-lens img {
  width: 100%;
  height: auto;
  display: block;
  filter: brightness(0.55);
  mask-image: linear-gradient(
    to bottom,
    rgba(0,0,0,0) 0%,
    rgba(0,0,0,0.6) 8%,
    rgba(0,0,0,1) 20%,
    rgba(0,0,0,1) 80%,
    rgba(0,0,0,0.6) 92%,
    rgba(0,0,0,0) 100%
  );
  -webkit-mask-image: linear-gradient(
    to bottom,
    rgba(0,0,0,0) 0%,
    rgba(0,0,0,0.6) 8%,
    rgba(0,0,0,1) 20%,
    rgba(0,0,0,1) 80%,
    rgba(0,0,0,0.6) 92%,
    rgba(0,0,0,0) 100%
  );
}

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
  background: #000;
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 24px 64px;
}
.site-footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.site-footer__links-item,
.site-footer__email {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  text-decoration: none;
  color: rgba(255,255,255,0.4);
  transition: color .2s;
}
.site-footer__links-item:hover,
.site-footer__email:hover { color: rgba(255,255,255,0.7); }

/* =========================================================
   POPUP – Success Confirmation
   ========================================================= */
.popup-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(4px);
  overflow-y: auto;
}
.popup-overlay.is-open { display: flex; align-items: flex-start; justify-content: center; }
@media (min-height: 700px) {
  .popup-overlay.is-open { align-items: center; }
}

.popup {
  position: relative;
  width: 100%;
  max-width: 1024px;
  margin: 64px auto;
  padding: 24px;
}

.popup__inner {
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.6);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
  position: relative;
}

/* Simple single-column variant */
.popup--simple { max-width: 640px; }
.popup--simple .popup__inner {
  grid-template-columns: 1fr;
  min-height: auto;
}
.popup--simple .popup__left {
  padding: 64px 72px;
  justify-content: flex-start;
  gap: 0;
}
.popup__close-row {
  display: flex;
  justify-content: flex-start;
  padding: 16px 0 0;
}
.popup__close-btn {
  background: none;
  border: none;
  color: rgba(255,255,255,.4);
  font-size: 10px;
  font-family: inherit;
  letter-spacing: 3px;
  text-transform: uppercase;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color .2s;
}
.popup__close-btn:hover { color: rgba(255,255,255,.7); }

/* Progress bar (3-second countdown) */
.popup__progress {
  height: 4px;
  background: rgba(255,255,255,.1);
  overflow: hidden;
}
.popup__progress-bar {
  height: 100%;
  width: 100%;
  background: var(--yellow);
  transform-origin: left center;
  animation: progress-drain 3s linear forwards;
}
@keyframes progress-drain {
  from { transform: scaleX(1); }
  to   { transform: scaleX(0); }
}

/* Yellow left bar */
.popup__inner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 8px;
  background: var(--yellow);
}

.popup__left {
  padding: 64px 56px 64px 80px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.popup__check {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 1px solid var(--yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 36px;
}
.popup__check svg { width: 40px; height: 40px; }

.popup__heading {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 48px;
  font-weight: 400;
  letter-spacing: 4.8px;
  text-transform: uppercase;
  line-height: 1.05;
  margin-bottom: 16px;
}
.popup__heading strong { font-weight: 700; }

.popup__subtitle {
  font-size: 20px;
  font-weight: 300;
  line-height: 1.65;
  color: rgba(255,255,255,0.75);
  margin-bottom: 36px;
}

.popup__details {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.popup__detail-label {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 6px;
}
.popup__detail-value {
  font-size: 18px;
  font-weight: 300;
  color: #fff;
  letter-spacing: .3px;
}
.popup__detail-value--yellow { color: var(--yellow); }

.popup__download {
  margin-top: 32px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3.6px;
  text-transform: uppercase;
  color: var(--yellow);
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}

/* QR Panel */
.popup__right {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px;
  border-left: 1px solid rgba(255,255,255,0.06);
}

.popup__qr-wrap {
  position: relative;
  background: #fff;
  padding: 20px;
  margin-bottom: 24px;
}
/* Corner accents on QR */
.popup__qr-wrap::before,
.popup__qr-wrap::after {
  content: '';
  position: absolute;
  width: 24px;
  height: 24px;
  border-color: var(--yellow);
  border-style: solid;
}
.popup__qr-wrap::before { top: -8px; left: -8px; border-width: 1px 0 0 1px; }
.popup__qr-wrap::after  { bottom: -8px; right: -8px; border-width: 0 1px 1px 0; }

.popup__qr-wrap img { width: 200px; height: 200px; }

.popup__serial-label {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  text-align: center;
  margin-bottom: 6px;
}
.popup__serial {
  font-family: 'Consolas', monospace;
  font-size: 14px;
  letter-spacing: 1.4px;
  color: rgba(255,255,255,0.6);
  text-align: center;
  margin-bottom: 20px;
}
.popup__qr-note {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.05);
  padding: 16px 20px;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  text-align: center;
  line-height: 1.6;
}

/* =========================================================
   ERROR / Authentication Failed State
   ========================================================= */
.auth-error-page {
  background: #000;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
}
.auth-error-page::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 900px 900px at 50% 45%, rgba(255,59,48,.1) 0%, transparent 65%);
  pointer-events: none;
}

.auth-error-section {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 96px 60px;
}

.auth-error-card {
  width: 100%;
  max-width: 768px;
  background: rgba(10,10,10,0.9);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,59,48,0.3);
  box-shadow: 0 0 30px rgba(255,59,48,0.1);
  padding: 64px;
  position: relative;
  text-align: center;
}
/* Red corner accents */
.auth-error-card::before,
.auth-error-card::after,
.auth-error-card__corner-bl,
.auth-error-card__corner-br {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  border-color: var(--red);
  border-style: solid;
}
.auth-error-card::before         { top: 0; left: 0;    border-width: 1px 0 0 1px; }
.auth-error-card::after          { top: 0; right: 0;   border-width: 1px 1px 0 0; }
.auth-error-card__corner-bl      { bottom: 0; left: 0;  border-width: 0 0 1px 1px; }
.auth-error-card__corner-br      { bottom: 0; right: 0; border-width: 0 1px 1px 0; }

/* Error icon ring */
.auth-error-card__icon-wrap {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  border: 1px solid rgba(255,59,48,.2);
  margin: 0 auto 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.auth-error-card__icon {
  width: 40px;
  height: 40px;
  color: var(--red);
}

.auth-error-card__title {
  font-size: 24px;
  font-weight: 300;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
}
.auth-error-card__sub {
  font-size: 14px;
  font-weight: 400;
  color: rgba(255,59,48,0.6);
  letter-spacing: .7px;
  margin-bottom: 40px;
}

.auth-error-card__fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
}
.nikon-input--red { border-bottom-color: var(--red); }
.nikon-input--red input { color: var(--red); }

.btn-retry {
  width: 100%;
  background: var(--red);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 4.2px;
  text-transform: uppercase;
  padding: 16px 24px;
  border: none;
  cursor: pointer;
  transition: opacity .2s;
  margin-bottom: 32px;
}
.btn-retry:hover { opacity: .85; }

.auth-error-card__help {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 24px;
}
.auth-error-card__help-label {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 10px;
}
.auth-error-card__help-text {
  font-size: 14px;
  font-weight: 300;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
}
.auth-error-card__help-text a { color: var(--yellow); }

/* =========================================================
   LOADING STATE
   ========================================================= */
.btn-primary.is-loading,
.btn-submit.is-loading,
.btn-retry.is-loading {
  position: relative;
  color: transparent;
  pointer-events: none;
}
.btn-primary.is-loading::after,
.btn-submit.is-loading::after,
.btn-retry.is-loading::after {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(0,0,0,.3);
  border-top-color: #000;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  animation: spin .7s linear infinite;
}
@keyframes spin { to { transform: translate(-50%,-50%) rotate(360deg); } }

/* =========================================================
   RESPONSIVE – basic
   ========================================================= */
@media (max-width: 1024px) {
  .container,
  .section-program,
  .section-form,
  .section-timeline,
  .section-kunsthalle,
  .section-nikon-brand,
  .gdpr-section { padding-left: 48px; padding-right: 48px; }

  .hero__heading  { font-size: 64px; }
  .access-gate    { margin-top: 0; padding: 40px; }
  .popup__inner   { grid-template-columns: 1fr; }

  /* Sekce Program – jednosloupec */
  .section-program {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .section-program__heading-wrap { grid-column: 1; grid-row: auto; }
  .section-program__text-wrap    { grid-column: 1; grid-row: auto; }
  .program-col2 {
    grid-column: 1;
    grid-row: auto;
  }
  .program-maps {
    flex-direction: column;
  }
  .section-program > [aria-hidden="true"] { display: none; }

  /* Mapy – větší mezera při skládání */
  .program-maps       { gap: 20px; }
  .program-map-item__label { font-size: 12px; }

  /* Sekce Kunsthalle – jednosloupec */
  .section-kunsthalle {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 32px;
  }
  .section-kunsthalle__titles    { grid-column: 1; grid-row: auto; }
  .section-kunsthalle__body-wrap { grid-column: 1; grid-row: auto; }
  .section-kunsthalle__photo     { grid-column: 1; grid-row: auto; }
  .section-kunsthalle > [aria-hidden="true"] { display: none; }
}

@media (max-width: 768px) {
  .container,
  .section-program,
  .section-form,
  .section-timeline,
  .section-kunsthalle,
  .section-nikon-brand { padding-left: 24px; padding-right: 24px; }

  /* Header + hamburger */
  .site-header        { padding: 0 20px; height: 72px; }
  .site-header__logo img { height: 48px; }
  .nav-hamburger      { display: flex; }
  .site-header__nav {
    display: none;
    position: fixed;
    top: 64px; left: 0; right: 0;
    background: rgba(0,0,0,0.97);
    backdrop-filter: blur(16px);
    flex-direction: column;
    gap: 0;
    padding: 16px 0 24px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    z-index: 99;
  }
  .site-header__nav.is-open { display: flex; }
  .site-header__nav a {
    padding: 14px 24px;
    font-size: 13px;
    letter-spacing: 2px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    white-space: nowrap;
  }

  /* Hero */
  .hero__heading  { font-size: 48px; letter-spacing: 5px; }

  /* Access gate */
  .access-gate-wrap   { padding: 0 16px 80px !important; }
  .access-gate        { padding: 32px 20px; margin-top: 40px; }
  .access-gate__fields { grid-template-columns: 1fr; gap: 16px; }
  .access-gate__subtitle { font-size: 13px; }

  /* Popup */
  .popup          { padding: 16px; margin: 32px auto; }
  .popup__inner   { min-height: auto; }
  .popup__left    { padding: 40px 32px 40px 40px; }
  .popup__right   { padding: 32px; border-left: none; border-top: 1px solid rgba(255,255,255,0.06); }
  .popup__heading { font-size: 36px; letter-spacing: 3px; }
  .popup__details { grid-template-columns: 1fr 1fr; gap: 16px; }
  .popup__qr-wrap img { width: 160px; height: 160px; }

  /* Formulář */
  .reg-form-card  { padding: 32px 24px; }
  .form-group__radios { flex-direction: column; gap: 12px; }
  .hero__description  { font-size: 16px; }
  .access-gate__title { font-size: 20px; }

  /* Patička */
  .site-footer    { grid-template-columns: 1fr; }
  .site-footer__contact { text-align: left; }

  /* Sekce Program */
  .section-program__heading { font-size: 36px; }
  .program-col2         { min-height: 280px; }
  .program-photo__badge { bottom: 16px; right: 16px; font-size: 10px; padding: 8px 14px; }

  /* Sekce Kunsthalle */
  .section-kunsthalle   { padding: 60px 24px; }
  .section-kunsthalle__heading { font-size: clamp(22px, 7vw, 32px); letter-spacing: 2px; word-break: break-word; }
  .section-kunsthalle__photo img { height: 260px; }

  /* Sekce Nikon brand */
  .section-nikon-brand  { padding: 80px 24px; }
  .section-nikon-brand__heading { font-size: clamp(28px, 8vw, 36px); letter-spacing: 2px; }

  /* GDPR */
  .gdpr-section { padding: 60px 24px 80px !important; max-width: 100% !important; }
  .gdpr-section__heading { font-size: 36px !important; letter-spacing: 2px !important; }
  .gdpr-section__cta { padding: 0 0 60px !important; max-width: 100% !important; }
  .gdpr-section__cta .btn-submit { min-width: 0 !important; width: 100% !important; display: block !important; }
}

@media (max-width: 480px) {
  /* Popup – malé telefony */
  .popup          { padding: 12px; margin: 16px auto; }
  .popup__left    { padding: 32px 20px 32px 28px; }
  .popup__right   { padding: 24px 20px; }
  .popup__heading { font-size: clamp(24px, 8vw, 32px); letter-spacing: 2px; }
  .popup__check   { width: 60px; height: 60px; margin-bottom: 24px; }
  .popup__check svg { width: 30px; height: 30px; }
  .popup__subtitle { font-size: 15px; margin-bottom: 24px; }
  .popup__subtitle br { display: none; }
  .popup__details { grid-template-columns: 1fr; gap: 16px; padding-top: 24px; }
  .popup__detail-value { font-size: 15px; }
  .popup__qr-wrap img  { width: 140px; height: 140px; }
  .popup__download     { font-size: 11px; letter-spacing: 2.5px; }

  /* Hero nadpis – malé telefony */
  .hero__heading  { font-size: clamp(36px, 11vw, 48px); letter-spacing: 3px; }
  .hero__heading span::after { width: 80%; }

  /* Header */
  .site-header        { padding: 0 16px; }
  .site-header__label { font-size: 9px; letter-spacing: 2px; }

  /* Access gate */
  .access-gate-wrap   { padding: 0 12px 60px !important; }
  .access-gate        { padding: 28px 16px; }

  /* Sekce program */
  .section-program__heading { font-size: 30px; }
  .section-form__heading    { font-size: 28px; letter-spacing: 2px; }

  /* Timeline */
  .section-timeline   { padding: 60px 20px; box-sizing: border-box; width: 100%; }
  .timeline__row      { grid-template-columns: 32px 1fr !important; grid-template-rows: auto auto; gap: 0 16px; }
  .timeline__center   { grid-column: 1 !important; grid-row: 1 / 3 !important; padding-top: 0; align-self: start; }
  .timeline-card--time { grid-column: 2 !important; grid-row: 1 !important; padding: 20px 16px 4px 16px !important; justify-content: flex-start !important; background: transparent !important; border: none !important; backdrop-filter: none !important; margin-bottom: 0 !important; }
  .timeline-card:not(.timeline-card--time) { grid-column: 2 !important; grid-row: 2 !important; padding: 4px 16px 20px !important; }
  .timeline-card--empty { display: none !important; }
  .timeline__dot      { width: 28px; height: 28px; }
  .timeline__line     { min-height: 32px; flex: none; height: 32px; }
  .timeline-card__title { font-size: 18px; }
  .timeline-card__time  { font-size: 17px; }

  /* Formulář – malé telefony */
  .reg-form-card      { padding: 24px 16px; }
  .form-group         { margin-bottom: 36px; }
  .form-group--inline { grid-template-columns: 1fr; gap: 24px; }
  .nikon-text-input   { font-size: 15px; letter-spacing: 1px; padding: 12px 0; }
  .form-group__note   { font-size: 14px; }
  .form-legal li      { font-size: 14px; }
  .btn-submit         { padding: 16px 20px; }

  /* Hero */
  .hero               { padding-top: 80px; padding-bottom: 80px; }
  .hero__description  { font-size: 15px; }
  .hero__ring--sm     { width: 300px; height: 300px; }
  .hero__ring--md     { width: 500px; height: 500px; }
  .hero__ring--lg     { width: 800px; height: 800px; }

  /* GDPR – malé telefony */
  .gdpr-section       { padding: 48px 20px 60px; }
  .gdpr-section__heading { font-size: clamp(28px, 9vw, 36px); letter-spacing: 2px; }
  .gdpr-content__subheading { font-size: 18px; }
  .gdpr-content__p,
  .gdpr-content__list li { font-size: 15px; }
  .gdpr-section__cta  { padding: 0 0 60px; }
  .gdpr-section__cta .btn-submit { min-width: 0; width: 100%; }
}

/* =========================================================
   GDPR PAGE
   ========================================================= */
.gdpr-section {
  padding: 80px 96px 120px;
  max-width: var(--grid);
  width: 100%;
  box-sizing: border-box;
  margin: 0 auto;
}

/* Ensure all GDPR content containers fill available width */
.gdpr-section__inner,
.gdpr-content {
  width: 100%;
  box-sizing: border-box;
}

.gdpr-section__label-wrap {
  display: flex;
  align-items: stretch;
  gap: 20px;
  margin-bottom: 24px;
}

.gdpr-section__border {
  width: 1px;
  background: var(--yellow);
  flex-shrink: 0;
}

.gdpr-section__label {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 4.2px;
  text-transform: uppercase;
  color: var(--yellow);
  display: flex;
  align-items: center;
}

.gdpr-section__heading {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 60px;
  font-weight: 400;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: #fff;
  line-height: 1;
  margin-bottom: 48px;
}

.gdpr-section__body {
  font-size: 18px;
  font-weight: 300;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  color: #fff;
  line-height: 1.55;
  max-width: 860px;
}

/* GDPR content body */
.gdpr-content {
  max-width: 913px;
}

.gdpr-content__subheading {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fff;
  line-height: 1.55;
  margin-top: 40px;
  margin-bottom: 12px;
}

.gdpr-content__p {
  font-size: 18px;
  font-weight: 300;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  color: #fff;
  line-height: 1.55;
  margin-bottom: 16px;
  word-break: break-word;
  overflow-wrap: break-word;
}

.gdpr-content__p--meta {
  color: rgba(255,255,255,0.5);
  margin-top: 40px;
}

.gdpr-section__cta {
  max-width: 720px;
  margin: 48px auto 0;
  padding: 0 40px 32px;
  text-align: center;
  text-decoration: none;
}

.gdpr-section__cta .btn-submit {
  display: inline-block;
  width: auto;
  min-width: 280px;
  text-decoration: none;
  cursor: pointer;
  text-align: center;
}

.gdpr-content__list {
  list-style: none;
  padding: 0;
  margin: 0 0 16px 0;
}

.gdpr-content__list li {
  font-size: 18px;
  font-weight: 300;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  color: #fff;
  line-height: 1.55;
  padding-left: 28px;
  position: relative;
  margin-bottom: 6px;
  word-break: break-word;
  overflow-wrap: break-word;
}

.gdpr-content__list li::before {
  content: '·';
  position: absolute;
  left: 8px;
  color: var(--yellow);
}

.gdpr-content__link {
  color: var(--yellow);
  text-decoration: none;
}
.gdpr-content__link:hover { text-decoration: underline; }
