/* ==========================================================================
   Brogue & Co. — domáce financie
   Paleta: oxford brown, mahagón, slonovina, starožitná mosadz
   ========================================================================== */

:root {
  --oxford: #5A3825;
  --mahogany: #7A4B34;
  --ivory: #F9F5EF;
  --brass: #B38B45;
  --ink: #2B1B12;
  --parchment: #EFE5D6;
  --line: rgba(90, 56, 37, 0.18);
  --shadow-soft: 0 18px 40px -28px rgba(43, 27, 18, 0.55);
  --shadow-card: 0 22px 50px -34px rgba(43, 27, 18, 0.7);
  --radius: 4px;
  --maxw: 1180px;
  --display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --body: "Lato", "Segoe UI", Helvetica, Arial, sans-serif;
}

/* Reset ------------------------------------------------------------------ */
*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 96px; }

body {
  margin: 0;
  background-color: var(--ivory);
  background-image:
    radial-gradient(rgba(179, 139, 69, 0.12) 1px, transparent 1.2px);
  background-size: 22px 22px;
  color: var(--ink);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.72;
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--mahogany); text-decoration: none; }
a:hover { color: var(--brass); }

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 700;
  color: var(--oxford);
  letter-spacing: 0.005em;
  line-height: 1.15;
  margin: 0 0 0.5em;
}

h1 { font-size: clamp(2.4rem, 5.6vw, 4rem); }
h2 { font-size: clamp(1.9rem, 3.8vw, 2.9rem); }
h3 { font-size: clamp(1.25rem, 2.2vw, 1.6rem); }

p { margin: 0 0 1.1em; }

:focus-visible {
  outline: 2px solid var(--brass);
  outline-offset: 3px;
}

/* Pomocné triedy --------------------------------------------------------- */
.wrap { width: min(100% - 44px, var(--maxw)); margin-inline: auto; }

.eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--brass);
  margin: 0 0 14px;
}

.lead { font-size: 1.12rem; color: rgba(43, 27, 18, 0.82); }

.section { padding: 92px 0; }
.section--tinted { background: linear-gradient(180deg, #FFFDF9 0%, var(--parchment) 100%); }

.section-head { max-width: 720px; margin-bottom: 52px; }
.section-head--center { margin-inline: auto; text-align: center; }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--oxford);
  color: var(--ivory);
  padding: 12px 18px;
  z-index: 200;
}
.skip-link:focus { left: 12px; top: 12px; }

/* Perforácia (brogue) — podpisový prvok ---------------------------------- */
.perf-rule {
  height: 14px;
  background-image: radial-gradient(circle, var(--brass) 2px, transparent 2.4px);
  background-size: 18px 14px;
  background-repeat: repeat-x;
  opacity: 0.75;
}

.perf-rule--tight { background-size: 13px 14px; opacity: 0.55; }

/* Tlačidlá --------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 14px 30px;
  font-family: var(--body);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.25s ease, background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.btn--primary { background: var(--oxford); color: var(--ivory); }
.btn--primary:hover { background: var(--mahogany); color: var(--ivory); transform: translateY(-2px); }

.btn--brass { background: var(--brass); color: #2B1B12; }
.btn--brass:hover { background: #C79C50; color: #2B1B12; transform: translateY(-2px); }

.btn--ghost { background: transparent; color: var(--oxford); border-color: var(--brass); }
.btn--ghost:hover { background: rgba(179, 139, 69, 0.14); color: var(--oxford); transform: translateY(-2px); }

.btn--light { background: var(--ivory); color: var(--oxford); }
.btn--light:hover { background: var(--parchment); color: var(--oxford); transform: translateY(-2px); }

/* Hlavička --------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 90;
  background: rgba(249, 245, 239, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 82px;
}

.brand { display: flex; align-items: center; gap: 12px; color: var(--oxford); }
.brand:hover { color: var(--oxford); }
.brand svg { width: 40px; height: 40px; flex: none; }
.brand-name { font-family: var(--display); font-size: 1.5rem; font-weight: 700; line-height: 1; }
.brand-tag {
  display: block;
  font-size: 0.6rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--brass);
  margin-top: 4px;
  font-weight: 700;
}

.nav { display: flex; align-items: center; gap: 28px; }
.nav a {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--oxford);
  padding: 6px 0;
  border-bottom: 1px solid transparent;
}
.nav a:hover, .nav a[aria-current="page"] { color: var(--mahogany); border-bottom-color: var(--brass); }

.header-cta { display: inline-flex; }

.nav-toggle {
  display: none;
  width: 46px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: transparent;
  cursor: pointer;
  padding: 11px 10px;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--oxford);
  margin: 0 0 5px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.nav-toggle span:last-child { margin-bottom: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Hero ------------------------------------------------------------------- */
.hero {
  position: relative;
  color: var(--ivory);
  background-color: var(--oxford);
  background-image:
    radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1.4px),
    linear-gradient(135deg, #6B4029 0%, #4A2C1C 60%, #3B2316 100%);
  background-size: 20px 20px, auto;
  overflow: hidden;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  align-items: center;
  padding: 96px 0 104px;
}

.hero h1 { color: var(--ivory); }
.hero h1 em { font-style: italic; color: var(--brass); }
.hero p { color: rgba(249, 245, 239, 0.86); max-width: 52ch; }
.hero .eyebrow { color: var(--brass); }

.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin: 30px 0 34px; }

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  border-top: 1px solid rgba(179, 139, 69, 0.4);
  padding-top: 26px;
}
.hero-facts dt {
  font-family: var(--display);
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--brass);
  line-height: 1;
}
.hero-facts dd {
  margin: 8px 0 0;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(249, 245, 239, 0.72);
  line-height: 1.5;
}

.hero-figure { position: relative; }
.hero-figure img {
  border-radius: 3px;
  border: 1px solid rgba(179, 139, 69, 0.55);
  box-shadow: 0 40px 70px -40px rgba(0, 0, 0, 0.9);
  aspect-ratio: 4 / 5;
  object-fit: cover;
  width: 100%;
}

.medallion {
  position: absolute;
  left: -34px;
  bottom: 40px;
  width: 148px;
  height: 148px;
  border-radius: 50%;
  background: var(--ivory);
  color: var(--oxford);
  display: grid;
  place-content: center;
  text-align: center;
  border: 1px solid var(--brass);
  box-shadow: var(--shadow-card);
}
.medallion::before {
  content: "";
  position: absolute;
  inset: 9px;
  border-radius: 50%;
  border: 1.5px dotted var(--brass);
}
.medallion strong { font-family: var(--display); font-size: 1.7rem; display: block; line-height: 1.1; }
.medallion span {
  font-size: 0.6rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mahogany);
  display: block;
  margin-top: 6px;
  padding: 0 12px;
}

/* Pás dôvery ------------------------------------------------------------- */
.trust-strip { background: var(--parchment); border-bottom: 1px solid var(--line); }
.trust-strip ul {
  list-style: none;
  margin: 0;
  padding: 20px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 14px 40px;
  justify-content: space-between;
}
.trust-strip li {
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--mahogany);
  display: flex;
  align-items: center;
  gap: 10px;
}
.trust-strip li::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--brass);
  flex: none;
}

/* Karty služieb ---------------------------------------------------------- */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 26px;
}

.card {
  background: #FFFDFA;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-card); }

.card img { height: 190px; object-fit: cover; width: 100%; }
.card-body { padding: 26px 26px 30px; display: flex; flex-direction: column; flex: 1; }
.card-body h3 { margin-bottom: 10px; }
.card-body p { color: rgba(43, 27, 18, 0.8); font-size: 0.98rem; }
.card-list { list-style: none; padding: 0; margin: 4px 0 0; }
.card-list li {
  position: relative;
  padding-left: 22px;
  font-size: 0.94rem;
  margin-bottom: 8px;
  color: rgba(43, 27, 18, 0.82);
}
.card-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 1.5px solid var(--brass);
}

/* Postup ----------------------------------------------------------------- */
.steps { counter-reset: step; display: grid; gap: 0; }
.step {
  counter-increment: step;
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 26px;
  padding: 28px 0;
  border-top: 1px solid var(--line);
  align-items: start;
}
.step:last-child { border-bottom: 1px solid var(--line); }
.step::before {
  content: counter(step, decimal-leading-zero);
  font-family: var(--display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--brass);
  line-height: 1;
}
.step h3 { margin-bottom: 6px; }
.step p { margin: 0; color: rgba(43, 27, 18, 0.8); }

/* Cenník ----------------------------------------------------------------- */
.pricing {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 26px;
  align-items: stretch;
}

.plan {
  position: relative;
  background: #FFFDFA;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 30px 34px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-soft);
}
.plan--featured {
  border-color: var(--brass);
  border-width: 2px;
  background:
    radial-gradient(rgba(179, 139, 69, 0.09) 1px, transparent 1.3px) 0 0 / 16px 16px,
    #FFFDFA;
}
.plan-flag {
  position: absolute;
  top: -14px;
  left: 30px;
  background: var(--brass);
  color: #2B1B12;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 2px;
}
.plan h3 { margin-bottom: 4px; }
.plan-note { font-size: 0.82rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--brass); font-weight: 700; margin-bottom: 18px; }
.plan-price {
  font-family: var(--display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--oxford);
  line-height: 1;
}
.plan-price span { font-family: var(--body); font-size: 0.85rem; font-weight: 700; color: rgba(43, 27, 18, 0.6); letter-spacing: 0.06em; }
.plan-desc { font-size: 0.95rem; margin: 16px 0 18px; color: rgba(43, 27, 18, 0.8); }
.plan ul { list-style: none; padding: 0; margin: 0 0 26px; }
.plan li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 10px;
  font-size: 0.95rem;
  color: rgba(43, 27, 18, 0.86);
}
.plan li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--brass);
  opacity: 0.85;
}
.plan .btn { margin-top: auto; width: 100%; }

.price-notes {
  margin-top: 34px;
  border: 1px dashed var(--brass);
  border-radius: var(--radius);
  padding: 24px 26px;
  background: rgba(255, 253, 250, 0.8);
}
.price-notes h3 { font-size: 1.15rem; }
.price-notes ul { margin: 0; padding-left: 20px; }
.price-notes li { margin-bottom: 8px; font-size: 0.94rem; }
.price-notes li:last-child { margin-bottom: 0; }

/* O nás ------------------------------------------------------------------ */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.split img {
  border-radius: 3px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-card);
  aspect-ratio: 5 / 4;
  object-fit: cover;
  width: 100%;
}
.about-list { list-style: none; padding: 0; margin: 22px 0 0; }
.about-list li {
  border-top: 1px solid var(--line);
  padding: 14px 0;
  display: grid;
  grid-template-columns: 132px 1fr;
  gap: 18px;
  font-size: 0.96rem;
}
.about-list li strong {
  font-family: var(--display);
  font-size: 1.05rem;
  color: var(--mahogany);
}

/* Tím ------------------------------------------------------------------- */
.team { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 26px; }
.member { text-align: center; }
.member img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid var(--brass);
  padding: 6px;
  background: var(--ivory);
}
.member h3 { margin: 18px 0 2px; font-size: 1.2rem; }
.member p { font-size: 0.9rem; color: rgba(43, 27, 18, 0.75); margin: 0; }
.member .role {
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brass);
  font-weight: 700;
  margin-bottom: 8px;
}

/* Referencie ------------------------------------------------------------- */
.quotes { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 26px; }
.quote {
  background: #FFFDFA;
  border-left: 3px solid var(--brass);
  border-radius: var(--radius);
  padding: 28px 28px 24px;
  box-shadow: var(--shadow-soft);
}
.quote blockquote { margin: 0 0 16px; font-family: var(--display); font-size: 1.22rem; line-height: 1.5; color: var(--oxford); }
.quote figcaption { font-size: 0.85rem; color: rgba(43, 27, 18, 0.7); }
.quote figcaption strong { display: block; color: var(--mahogany); font-size: 0.95rem; }

/* FAQ -------------------------------------------------------------------- */
.faq { max-width: 860px; margin-inline: auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%;
  background: none;
  border: 0;
  text-align: left;
  font-family: var(--display);
  font-size: 1.22rem;
  font-weight: 700;
  color: var(--oxford);
  padding: 22px 44px 22px 0;
  cursor: pointer;
  position: relative;
}
.faq-q::after {
  content: "";
  position: absolute;
  right: 8px;
  top: 50%;
  width: 11px;
  height: 11px;
  border-right: 2px solid var(--brass);
  border-bottom: 2px solid var(--brass);
  transform: translateY(-70%) rotate(45deg);
  transition: transform 0.28s ease;
}
.faq-q[aria-expanded="true"]::after { transform: translateY(-20%) rotate(-135deg); }
.faq-a { display: none; padding: 0 40px 24px 0; color: rgba(43, 27, 18, 0.85); }
.faq-a.is-open { display: block; }

/* Kontakt ---------------------------------------------------------------- */
.contact-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 54px; align-items: start; }

.form-card {
  background: #FFFDFA;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 32px;
  box-shadow: var(--shadow-card);
}

.field { margin-bottom: 20px; }
.field label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--mahogany);
  margin-bottom: 8px;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  font-family: var(--body);
  font-size: 1rem;
  color: var(--ink);
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 13px 15px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--brass);
  box-shadow: 0 0 0 3px rgba(179, 139, 69, 0.18);
  outline: none;
}
.field .error-text { display: none; color: #8C2F1E; font-size: 0.84rem; margin-top: 6px; }
.field.has-error input,
.field.has-error select,
.field.has-error textarea { border-color: #8C2F1E; }
.field.has-error .error-text { display: block; }

.field--check { display: flex; align-items: flex-start; gap: 12px; }
.field--check input { width: 18px; height: 18px; margin-top: 4px; flex: none; accent-color: var(--mahogany); }
.field--check label {
  text-transform: none;
  letter-spacing: 0;
  font-size: 0.9rem;
  font-weight: 400;
  color: rgba(43, 27, 18, 0.85);
  margin: 0;
}
.field--check.has-error label { color: #8C2F1E; }

.form-status {
  display: none;
  margin-top: 18px;
  padding: 16px 18px;
  border-radius: var(--radius);
  background: rgba(179, 139, 69, 0.16);
  border: 1px solid var(--brass);
  font-size: 0.95rem;
}
.form-status.is-visible { display: block; }

.contact-aside .info-block {
  border-top: 1px solid var(--line);
  padding: 18px 0;
}
.contact-aside .info-block:first-of-type { border-top: 0; padding-top: 0; }
.contact-aside h3 { font-size: 1.15rem; margin-bottom: 6px; }
.contact-aside p { margin: 0; font-size: 0.98rem; color: rgba(43, 27, 18, 0.85); }
.contact-aside .map-figure { margin: 24px 0 0; }
.contact-aside .map-figure img { border: 1px solid var(--line); border-radius: var(--radius); aspect-ratio: 16 / 10; object-fit: cover; }
.contact-aside .map-figure figcaption { font-size: 0.82rem; color: rgba(43, 27, 18, 0.65); margin-top: 8px; }

/* Upozornenie ------------------------------------------------------------ */
.disclaimer {
  background: var(--parchment);
  border-top: 1px solid var(--line);
  padding: 34px 0;
}
.disclaimer p {
  margin: 0;
  font-size: 0.88rem;
  color: rgba(43, 27, 18, 0.78);
  max-width: 90ch;
}

/* Pätička ---------------------------------------------------------------- */
.site-footer {
  background: var(--oxford);
  background-image: radial-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1.4px);
  background-size: 20px 20px;
  color: rgba(249, 245, 239, 0.82);
  padding: 64px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 44px;
  padding-bottom: 34px;
}
.site-footer h4 {
  color: var(--brass);
  font-family: var(--body);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin: 0 0 16px;
}
.site-footer p { font-size: 0.92rem; }
.site-footer a { color: rgba(249, 245, 239, 0.85); }
.site-footer a:hover { color: var(--brass); }
.footer-links { list-style: none; margin: 0; padding: 0; }
.footer-links li { margin-bottom: 9px; font-size: 0.92rem; }
.footer-brand .brand-name { color: var(--ivory); }
.footer-bottom {
  border-top: 1px solid rgba(249, 245, 239, 0.18);
  padding-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  justify-content: space-between;
  font-size: 0.84rem;
}
.footer-bottom button {
  background: none;
  border: 0;
  color: rgba(249, 245, 239, 0.85);
  font-family: var(--body);
  font-size: 0.84rem;
  cursor: pointer;
  text-decoration: underline;
  padding: 0;
}
.footer-bottom button:hover { color: var(--brass); }

/* Cookie lišta ----------------------------------------------------------- */
.cookie-bar {
  position: fixed;
  left: 50%;
  bottom: 20px;
  transform: translateX(-50%) translateY(140%);
  width: min(100% - 32px, 980px);
  background: #FFFDFA;
  border: 1px solid var(--brass);
  border-radius: var(--radius);
  box-shadow: 0 26px 60px -30px rgba(43, 27, 18, 0.85);
  padding: 24px 26px;
  z-index: 120;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 22px;
  align-items: center;
  transition: transform 0.45s ease;
  visibility: hidden;
}
.cookie-bar.is-visible { transform: translateX(-50%) translateY(0); visibility: visible; }
.cookie-bar h4 { font-family: var(--display); font-size: 1.2rem; color: var(--oxford); margin: 0 0 6px; }
.cookie-bar p { margin: 0; font-size: 0.9rem; color: rgba(43, 27, 18, 0.82); }
.cookie-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.cookie-actions .btn { padding: 12px 22px; font-size: 0.72rem; }

/* Právne stránky --------------------------------------------------------- */
.page-hero {
  background-color: var(--oxford);
  background-image:
    radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1.4px),
    linear-gradient(135deg, #6B4029 0%, #4A2C1C 100%);
  background-size: 20px 20px, auto;
  color: var(--ivory);
  padding: 74px 0;
}
.page-hero h1 { color: var(--ivory); margin-bottom: 10px; }
.page-hero p { color: rgba(249, 245, 239, 0.82); margin: 0; }

.legal { padding: 74px 0 90px; }
.legal-body { max-width: 840px; }
.legal-body h2 { font-size: clamp(1.4rem, 2.6vw, 1.9rem); margin-top: 42px; }
.legal-body h2:first-child { margin-top: 0; }
.legal-body h3 { font-size: 1.2rem; margin-top: 26px; }
.legal-body ul, .legal-body ol { padding-left: 22px; margin: 0 0 1.1em; }
.legal-body li { margin-bottom: 8px; }
.legal-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 0 1.4em;
  font-size: 0.94rem;
}
.legal-body th, .legal-body td {
  border: 1px solid var(--line);
  padding: 11px 13px;
  text-align: left;
  vertical-align: top;
}
.legal-body th { background: var(--parchment); font-family: var(--body); font-weight: 700; color: var(--oxford); }
.legal-meta {
  font-size: 0.86rem;
  color: rgba(43, 27, 18, 0.7);
  border-left: 3px solid var(--brass);
  padding: 6px 0 6px 16px;
  margin-bottom: 34px;
}
.legal-back { margin-top: 44px; }

/* Animácia pri scrollovaní ----------------------------------------------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.is-in { opacity: 1; transform: none; }

/* Responzivita ----------------------------------------------------------- */
@media (max-width: 1000px) {
  .hero-inner { grid-template-columns: 1fr; gap: 46px; padding: 72px 0 84px; }
  .hero-figure { max-width: 520px; }
  .medallion { left: auto; right: 16px; bottom: -30px; width: 128px; height: 128px; }
  .split { grid-template-columns: 1fr; gap: 34px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 860px) {
  .nav-toggle { display: block; }
  .header-cta { display: none; }
  .nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--ivory);
    border-bottom: 1px solid var(--line);
    padding: 8px 22px 22px;
    display: none;
  }
  .nav.is-open { display: flex; }
  .nav a { padding: 14px 0; border-bottom: 1px solid var(--line); }
  .nav a:last-child { border-bottom: 0; }
  .site-header { position: relative; }
}

@media (max-width: 640px) {
  body { font-size: 16px; }
  .section { padding: 64px 0; }
  .hero-facts { grid-template-columns: 1fr; gap: 16px; }
  .step { grid-template-columns: 1fr; gap: 6px; }
  .step::before { font-size: 1.9rem; }
  .about-list li { grid-template-columns: 1fr; gap: 2px; }
  .cookie-bar { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .trust-strip ul { gap: 12px 20px; }
  .form-card { padding: 26px 22px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}
