:root {
  color-scheme: dark;
  --bg: #10110f;
  --bg-deep: #080908;
  --panel: #181916;
  --panel-soft: #20211e;
  --line: #33362f;
  --line-soft: #272922;
  --text: #ece4d4;
  --muted: #b8ad99;
  --dim: #837968;
  --accent: #aeb6c4;
  --accent-hot: #e8d184;
  --accent-dark: #6f7d92;
  --max: 980px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 50% 0%, rgba(174, 182, 196, 0.18), transparent 34rem),
    linear-gradient(180deg, #171815 0%, var(--bg) 44%, var(--bg-deep) 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;
}

.landing {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(28px, 5vw, 56px) 0 24px;
}

.hero {
  display: grid;
  justify-items: center;
  text-align: center;
}

.site-label,
.landing-meta {
  margin: 0;
  color: var(--accent-hot);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-banner {
  position: relative;
  width: min(100%, 680px);
  margin: 20px auto 22px;
  border: 1px solid rgba(232, 209, 132, 0.24);
  border-radius: 10px;
  overflow: hidden;
  background: #0b0c0b;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.48);
}

.hero-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.22)),
    radial-gradient(circle at center, transparent 18%, rgba(0, 0, 0, 0.42) 100%);
}

.hero-banner img {
  display: block;
  width: 100%;
  aspect-ratio: 2.7 / 1;
  object-fit: cover;
  object-position: var(--hero-position, center);
}

.hero-title {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  width: 92%;
  margin: 0;
  transform: translate(-50%, -50%);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(40px, 8vw, 76px);
  font-weight: 800;
  line-height: 0.9;
  text-transform: uppercase;
  color: transparent;
  background: linear-gradient(100deg, var(--accent-dark), var(--accent-hot) 42%, #fff1a3 50%, var(--accent) 64%, var(--accent-dark));
  -webkit-background-clip: text;
  background-clip: text;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.9));
}

.hero-lead {
  max-width: 760px;
  margin: 18px auto 0;
  color: var(--muted);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(21px, 3vw, 32px);
  line-height: 1.18;
}

.annotation,
.story-block,
.reasons {
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  background: rgba(24, 25, 22, 0.72);
  box-shadow: inset 0 0 0 1px rgba(232, 209, 132, 0.04);
}

.annotation {
  margin: clamp(28px, 5vw, 52px) auto 0;
  padding: clamp(20px, 3vw, 34px);
  text-align: left;
}

.annotation p,
.story-copy p,
.reasons li {
  color: #d5ccbb;
  font-size: clamp(16px, 1.9vw, 19px);
  line-height: 1.62;
}

.annotation p {
  margin: 0;
}

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

.story-block {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 22px;
  margin-top: 28px;
  padding: clamp(18px, 3vw, 30px);
}

.story-copy h2,
.reasons h2 {
  margin: 0 0 14px;
  color: transparent;
  background: linear-gradient(100deg, var(--accent-dark), var(--accent-hot) 42%, #fff1a3 50%, var(--accent) 64%, var(--accent-dark));
  -webkit-background-clip: text;
  background-clip: text;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(30px, 5vw, 52px);
  font-weight: 520;
  line-height: 1;
}

.story-copy p {
  margin: 0;
}

.story-copy p + p {
  margin-top: 13px;
}

.story-image {
  width: 100%;
  border: 1px solid rgba(232, 209, 132, 0.15);
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.38);
}

.reasons {
  margin-top: 28px;
  padding: clamp(18px, 3vw, 30px);
  text-align: left;
}

.reasons ul {
  display: grid;
  gap: 13px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.reasons li {
  position: relative;
  padding-left: 22px;
}

.reasons li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--accent-hot);
  box-shadow: 0 0 16px rgba(232, 209, 132, 0.4);
}

.cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin: clamp(34px, 5vw, 58px) 0;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: min(100%, 292px);
  min-height: 58px;
  padding: 14px 26px;
  border: 1px solid var(--accent-hot);
  border-radius: 6px;
  background: linear-gradient(110deg, var(--accent-dark), var(--accent-hot) 42%, #fff1a3 50%, var(--accent) 68%, var(--accent-dark));
  color: #14130e;
  font-size: 17px;
  font-weight: 850;
  text-align: center;
  text-transform: uppercase;
  box-shadow: 0 8px 26px rgba(232, 209, 132, 0.22);
}

.cta-button:hover,
.cta-button:focus-visible {
  transform: translateY(-2px);
  outline: none;
  box-shadow: 0 12px 34px rgba(232, 209, 132, 0.34);
}

.footer {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 16px 0 24px;
  border-top: 1px solid var(--line-soft);
  color: var(--dim);
  font-size: 13px;
  text-align: center;
}

.cookie-banner {
  position: fixed;
  z-index: 50;
  right: 16px;
  bottom: 16px;
  left: 16px;
  display: none;
  max-width: 760px;
  margin: 0 auto;
  padding: 13px 15px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(16, 17, 15, 0.94);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.5);
}

.cookie-banner.is-visible {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.cookie-banner p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
}

.cookie-banner button {
  flex: 0 0 auto;
  min-height: 34px;
  padding: 6px 14px;
  border: 0;
  border-radius: 5px;
  background: var(--accent-hot);
  color: #14130e;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

@media (min-width: 820px) {
  .story-block {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }

  .story-block.is-reverse .story-image {
    order: -1;
  }
}

@media (max-width: 560px) {
  .landing {
    width: min(100% - 24px, var(--max));
    padding-top: 22px;
  }

  .hero-title {
    font-size: clamp(32px, 12vw, 48px);
  }

  .hero-lead {
    font-size: 21px;
  }

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