:root {
  color-scheme: dark;
  --bg: #11110f;
  --bg-deep: #0b0b0a;
  --line: #343026;
  --line-soft: #25231e;
  --text: #e8dfce;
  --muted: #aaa18f;
  --dim: #777061;
  --accent: #d3ad55;
  --accent-hot: #f0d27a;
  --accent-dark: #8d6b2e;
  --zt-blue: #72c9e8;
  --zt-rust: #c9894a;
  --max: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: linear-gradient(180deg, #16140f 0%, var(--bg) 44%, #090a09 100%);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

.zt-page {
  width: 100%;
  margin: 0;
}

.zt-hero {
  min-height: min(760px, 82vh);
  display: grid;
  align-items: start;
  padding: clamp(34px, 6vw, 78px) clamp(18px, 5vw, 72px) clamp(30px, 7vw, 90px);
  background-image:
    linear-gradient(90deg, rgba(8, 8, 7, 0.9) 0%, rgba(8, 8, 7, 0.66) 42%, rgba(8, 8, 7, 0.24) 76%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(17, 17, 15, 0.1) 64%, var(--bg) 100%),
    url("zt-header.webp");
  background-position: center;
  background-size: cover;
  border-bottom: 1px solid rgba(240, 210, 122, 0.18);
}

.zt-hero__inner {
  width: min(780px, 100%);
}

.zt-kicker,
.zt-meta {
  margin: 0;
  color: var(--accent-hot);
  font-size: clamp(12px, 1.5vw, 14px);
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.zt-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
}

.zt-badge {
  display: inline-flex;
  align-items: center;
  padding: 5px 11px;
  border: 1px solid rgba(240, 210, 122, 0.4);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: #e0d5bf;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.zt-title {
  margin: 14px 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 7.4vw, 96px);
  font-weight: 520;
  line-height: 0.92;
  color: #f0e0c2;
  text-shadow:
    0 3px 18px rgba(0, 0, 0, 0.86),
    0 0 34px rgba(0, 0, 0, 0.62);
}

.zt-lead {
  max-width: 720px;
  margin: 22px 0 0;
  color: #e0d5bf;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(20px, 2.7vw, 31px);
  line-height: 1.18;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.82);
}

.zt-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.zt-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 24px;
  border: 1px solid rgba(240, 210, 122, 0.72);
  border-radius: 6px;
  background: linear-gradient(110deg, var(--accent-dark), var(--zt-rust) 42%, #fff1a3 52%, var(--accent) 68%, #6f4d24);
  color: #171208;
  font-size: 15px;
  font-weight: 850;
  text-transform: uppercase;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.34);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.zt-button:hover,
.zt-button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.44);
  outline: none;
}

.zt-wrap {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}

.zt-summary {
  display: grid;
  gap: 16px;
  padding: clamp(34px, 7vw, 76px) 0 clamp(24px, 5vw, 52px);
}

.zt-summary p,
.zt-copy p,
.zt-cta p {
  margin: 0;
  color: #d8cfbd;
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.62;
}

.zt-summary p {
  max-width: 920px;
}

.zt-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(20px, 4vw, 48px);
  align-items: center;
  padding: clamp(34px, 7vw, 78px) 0;
  border-top: 1px solid rgba(240, 210, 122, 0.15);
}

.zt-section__image {
  width: 100%;
  margin: 0;
}

.zt-section__image img {
  display: block;
  width: 100%;
  aspect-ratio: 1.72 / 1;
  object-fit: cover;
  object-position: center;
  border: 1px solid rgba(240, 210, 122, 0.18);
  border-radius: 8px;
  box-shadow: 0 22px 64px rgba(0, 0, 0, 0.38);
}

.zt-section--miri .zt-section__image img {
  aspect-ratio: 1.56 / 1;
  object-position: center;
}

.zt-copy h2 {
  margin: 0 0 18px;
  color: #f1deb5;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 4.8vw, 58px);
  font-weight: 520;
  line-height: 1;
}

.zt-copy p + p {
  margin-top: 16px;
}

.zt-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.zt-facts li {
  min-height: 58px;
  padding: 12px 14px;
  border: 1px solid rgba(159, 169, 173, 0.22);
  border-radius: 6px;
  background: rgba(22, 21, 18, 0.72);
  color: #cfc4b1;
  font-size: 15px;
  line-height: 1.35;
}

.zt-facts strong {
  display: block;
  margin-bottom: 3px;
  color: var(--accent-hot);
  font-size: 12px;
  text-transform: uppercase;
}

.zt-section--miri .zt-copy h2 {
  color: #d9f2ff;
  text-shadow: 0 0 18px rgba(114, 201, 232, 0.16);
}

.zt-section--miri .zt-facts li {
  border-color: rgba(114, 201, 232, 0.22);
}

.zt-section--miri .zt-facts strong {
  color: var(--zt-blue);
}

.zt-cta {
  display: grid;
  justify-items: center;
  gap: 18px;
  padding: clamp(36px, 7vw, 80px) 0 clamp(46px, 8vw, 92px);
  border-top: 1px solid rgba(240, 210, 122, 0.15);
  text-align: center;
}

.zt-cta h2 {
  max-width: 860px;
  margin: 0;
  color: #f0e0c2;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 520;
  line-height: 1;
}

.zt-cta p {
  max-width: 740px;
}

.zt-footer {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 0 0 34px;
  color: var(--dim);
  font-size: 13px;
  text-align: center;
}

.cookie-banner {
  position: fixed;
  z-index: 50;
  right: 14px;
  bottom: 14px;
  left: 14px;
  display: none;
  max-width: 760px;
  margin: 0 auto;
  padding: 14px 16px;
  border: 1px solid rgba(240, 210, 122, 0.2);
  border-radius: 8px;
  background: rgba(17, 17, 15, 0.96);
  color: #ddd3c1;
  text-align: center;
  box-shadow: 0 16px 52px rgba(0, 0, 0, 0.48);
}

.cookie-banner.is-visible {
  display: block;
}

body.has-cookie-banner {
  padding-bottom: 100px;
}

.cookie-banner p {
  display: inline;
  margin: 0 12px 0 0;
  font-size: 14px;
  line-height: 1.4;
}

.cookie-banner button {
  margin-top: 8px;
  padding: 8px 14px;
  border: 0;
  border-radius: 5px;
  background: var(--accent);
  color: #171208;
  cursor: pointer;
  font-weight: 800;
}

@media (min-width: 840px) {
  .zt-section {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  }

  .zt-section--miri .zt-section__image {
    order: 2;
  }
}

@media (max-width: 680px) {
  .zt-hero {
    min-height: auto;
    padding-top: 28px;
    padding-bottom: 32px;
    background-position: 56% center;
  }

  .zt-badge {
    padding: 4px 9px;
    font-size: 10px;
  }

  .zt-title {
    max-width: 18ch;
    font-size: clamp(30px, 9.5vw, 42px);
    line-height: 1.02;
  }

  .zt-lead {
    font-size: clamp(16px, 4.3vw, 19px);
    line-height: 1.32;
  }

  .zt-summary {
    gap: 12px;
    padding: 24px 0 18px;
  }

  .zt-section {
    gap: 20px;
    padding: 26px 0;
  }

  .zt-summary p,
  .zt-copy p,
  .zt-cta p {
    font-size: 16px;
    line-height: 1.5;
  }

  .zt-copy h2 {
    font-size: clamp(26px, 8vw, 34px);
    margin-bottom: 12px;
  }

  .zt-copy p + p {
    margin-top: 12px;
  }

  .zt-facts {
    grid-template-columns: minmax(0, 1fr);
  }

  .zt-section__image img,
  .zt-section--miri .zt-section__image img {
    aspect-ratio: 1.22 / 1;
  }

  .zt-cta {
    padding: 28px 0 40px;
    gap: 14px;
  }

  .zt-cta h2 {
    font-size: clamp(26px, 8vw, 40px);
  }

  .zt-button {
    width: 100%;
  }

  .cookie-banner p {
    display: block;
    margin: 0;
  }

  body.has-cookie-banner {
    padding-bottom: 140px;
  }
}
