:root {
  /* Jemné „sklo“ — text čitateľný, ilustrácia viditeľná */
  --panel: rgba(255, 252, 246, 0.38);
  --panel-border: rgba(255, 255, 255, 0.35);
  --fg: #1a1510;
  --muted: rgba(26, 21, 16, 0.92);
  --accent: #1e3a5f;
  --accent-hover: #152a45;
  --ring: rgba(30, 58, 95, 0.35);
  /* +50 % oproti predchádzajúcej základnej veľkosti */
  --fs-body: clamp(1.5rem, 1.65vw, 1.65rem);
  --fs-lead: clamp(1.575rem, 2.2vw, 1.8rem);
  --fs-h1: clamp(3.4rem, 6.5vw, 5rem);
  --fs-h2: clamp(2.4rem, 3.2vw, 3rem);
  --fs-prose: clamp(1.575rem, 1.85vw, 1.75rem);
}

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

html {
  scroll-behavior: smooth;
  width: 100%;
}

html,
body {
  min-height: 100%;
}

body {
  font-family: "Source Sans 3", system-ui, sans-serif;
  color: var(--fg);
  position: relative;
  line-height: 1.65;
  font-size: var(--fs-body);
  width: 100%;
  margin: 0;
  overflow-x: hidden;
}

/* Pozadie na celú obrazovku — žiadny biely „závoj“ navrch (žiadne body::after) */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background: url("images/background.jpg") center center / cover no-repeat;
}

.page {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  width: 100%;
  /* +25 % šírka oproti ~72rem → ~90rem */
  max-width: min(97vw, 90rem);
  margin: 0 auto;
  padding: clamp(2rem, 4vw, 3.5rem) clamp(1.25rem, 3.5vw, 3rem) clamp(3rem, 5vw, 4.5rem);
}

.site-header {
  text-align: center;
  margin-bottom: clamp(2.5rem, 4.5vw, 3.75rem);
  max-width: min(60rem, 100%);
  margin-left: auto;
  margin-right: auto;
}

.site-header h1 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: var(--fs-h1);
  font-weight: 600;
  margin-bottom: 0.75rem;
  text-shadow:
    0 0 28px rgba(255, 255, 255, 0.95),
    0 0 48px rgba(255, 255, 255, 0.75),
    0 2px 6px rgba(255, 255, 255, 0.9);
}

.tagline {
  font-size: var(--fs-lead);
  color: var(--muted);
  font-weight: 500;
  line-height: 1.5;
  text-shadow:
    0 0 20px rgba(255, 255, 255, 0.9),
    0 1px 3px rgba(255, 255, 255, 0.85);
}

.main-stack {
  flex: 1 0 auto;
  display: flex;
  flex-direction: column;
  gap: clamp(3rem, 5.5vw, 4.5rem);
  width: 100%;
}

.prose {
  width: 100%;
  max-width: min(65rem, 100%);
  margin-left: auto;
  margin-right: auto;
  background: var(--panel);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-radius: 16px;
  padding: clamp(1.75rem, 3.5vw, 2.75rem) clamp(1.5rem, 3.5vw, 3rem);
  text-align: left;
  box-shadow: 0 12px 40px rgba(26, 21, 16, 0.06);
  border: 1px solid var(--panel-border);
}

.prose p {
  font-size: var(--fs-prose);
  margin-bottom: 1.5rem;
  color: var(--muted);
  text-shadow:
    0 0 12px rgba(255, 255, 255, 0.85),
    0 1px 2px rgba(255, 255, 255, 0.9);
}

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

.prose strong {
  color: var(--fg);
  font-weight: 600;
}

.video-block {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(1.25rem, 2.5vw, 2rem);
}

.video-block h2,
.subscribe h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: var(--fs-h2);
  font-weight: 600;
  text-align: center;
  text-shadow:
    0 0 24px rgba(255, 255, 255, 0.95),
    0 2px 4px rgba(255, 255, 255, 0.85);
}

.video-wrap {
  width: 100%;
  max-width: min(70rem, 100%);
  margin: 0 auto;
}

.video-inner {
  position: relative;
  aspect-ratio: 16 / 9;
  width: 100%;
  background: #0a1628;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(26, 21, 16, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.video-inner iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.subscribe {
  width: 100%;
  max-width: min(50rem, 100%);
  margin-left: auto;
  margin-right: auto;
  background: var(--panel);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-radius: 16px;
  padding: clamp(1.75rem, 3.5vw, 2.75rem) clamp(1.5rem, 3.5vw, 3rem);
  text-align: center;
  box-shadow: 0 12px 40px rgba(26, 21, 16, 0.06);
  border: 1px solid var(--panel-border);
}

.subscribe-text {
  font-size: clamp(1.35rem, 1.65vw, 1.5rem);
  color: var(--muted);
  margin-bottom: 1.5rem;
  max-width: 36em;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.55;
  text-shadow:
    0 0 12px rgba(255, 255, 255, 0.85),
    0 1px 2px rgba(255, 255, 255, 0.9);
}

.subscribe-fields {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  align-items: stretch;
}

.subscribe-input {
  flex: 1 1 18rem;
  min-width: min(100%, 16rem);
  padding: 1rem 1.15rem;
  font-size: clamp(1.2rem, 1.5vw, 1.35rem);
  font-family: inherit;
  border: 2px solid rgba(30, 58, 95, 0.25);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--fg);
}

.subscribe-input::placeholder {
  color: rgba(26, 21, 16, 0.45);
}

.subscribe-input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--ring);
}

.subscribe-submit {
  flex: 0 1 auto;
  padding: 1rem 2rem;
  font-size: clamp(1.2rem, 1.5vw, 1.35rem);
  font-weight: 600;
  font-family: inherit;
  color: #fff;
  background: var(--accent);
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease;
}

.subscribe-submit:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
}

.subscribe-submit:focus-visible {
  outline: 3px solid var(--ring);
  outline-offset: 3px;
}

.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;
}

.back-link {
  text-align: center;
  font-size: clamp(1.2rem, 1.5vw, 1.35rem);
  color: var(--muted);
  margin-top: 0.5rem;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

.back-link a {
  color: var(--accent);
  font-weight: 600;
}

.site-footer {
  margin-top: clamp(2.5rem, 4.5vw, 3.5rem);
  text-align: center;
  font-size: clamp(1rem, 1.2vw, 1.15rem);
  color: rgba(26, 21, 16, 0.55);
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
}

@media (max-width: 520px) {
  .subscribe-fields {
    flex-direction: column;
  }

  .subscribe-submit {
    width: 100%;
  }
}
