* {
  box-sizing: border-box;
}

:root {
  color-scheme: dark;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    linear-gradient(rgb(38 8 9 / 72%), rgb(38 8 9 / 92%)),
    url('assets/background.webp') center / cover fixed;
  color: #fff8e8;
  font-family: Roboto, Arial, Helvetica, sans-serif;
}

a {
  color: inherit;
}

.site-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header,
.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0;
}

.site-header {
  border-bottom: 1px solid rgb(255 255 255 / 14%);
}

.brand img {
  display: block;
  width: min(180px, 42vw);
  height: auto;
}

.brand span {
  color: #fff;
  font-size: 1.25rem;
  font-weight: 900;
  text-decoration: none;
}

.nav,
.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  color: #ffeaa0;
  font-size: 0.95rem;
}

.section {
  margin: 34px 0;
}

.hero,
.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.92fr);
  gap: 28px;
  align-items: center;
}

.split-reverse {
  grid-template-columns: minmax(280px, 0.92fr) minmax(0, 1fr);
}

.split-reverse .content-card {
  order: 2;
}

.hero.no-media,
.split.no-media {
  grid-template-columns: 1fr;
}

.hero-copy,
.content-card,
.image-card,
.cta-strip {
  border: 1px solid rgb(255 255 255 / 16%);
  border-radius: 24px;
  background: rgb(58 14 12 / 82%);
  box-shadow: 0 22px 70px rgb(0 0 0 / 30%);
}

.hero-copy,
.content-card,
.cta-strip {
  padding: clamp(22px, 4vw, 42px);
}

.hero h1,
.legal-content h1 {
  margin: 0 0 18px;
  color: #fff;
  font-size: clamp(2.5rem, 7vw, 5.6rem);
  line-height: 0.95;
  letter-spacing: -0.06em;
}

h2 {
  margin: 0 0 16px;
  color: var(--primary-color);
  font-size: clamp(1.7rem, 4vw, 3rem);
  line-height: 1.08;
}

h3 {
  margin: 26px 0 10px;
  color: #fff;
  font-size: 1.35rem;
}

p,
li,
td,
th {
  color: #fff2cc;
  font-size: 1.05rem;
  line-height: 1.7;
}

.hero-copy p {
  font-size: 1.2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  margin-top: 16px;
  padding: 14px 28px;
  border-radius: 999px;
  background: linear-gradient(174deg, var(--button-gradient-start), var(--button-gradient-end));
  color: var(--accent-color);
  font-size: 1.15rem;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 10px 7px 34px 6px rgb(0 0 0 / 45%);
}

.button:hover,
.button:focus {
  filter: brightness(1.08);
}

.hero-media,
.image-card {
  display: block;
  overflow: hidden;
  margin: 0;
}

.hero-media img,
.image-card img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 24px;
}

.table-wrap {
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: 16px;
  background: rgb(0 0 0 / 20%);
}

th,
td {
  padding: 14px 16px;
  border-bottom: 1px solid rgb(255 255 255 / 14%);
  text-align: left;
  vertical-align: top;
}

th {
  width: 38%;
  color: #fff;
}

.faq details {
  border-top: 1px solid rgb(255 255 255 / 16%);
  padding: 18px 0;
}

.faq summary {
  cursor: pointer;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 800;
}

.cta-strip {
  text-align: center;
  background: linear-gradient(135deg, rgb(99 17 18 / 92%), rgb(111 39 15 / 92%));
}

.site-footer {
  margin-top: 56px;
  border-top: 1px solid rgb(255 255 255 / 14%);
}

.site-footer p {
  margin: 0;
}

.cookie-banner {
  position: fixed;
  right: 20px;
  bottom: 20px;
  left: 20px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: min(760px, calc(100% - 40px));
  margin: 0 auto;
  padding: 16px 18px;
  border: 1px solid rgb(255 255 255 / 18%);
  border-radius: 18px;
  background: rgb(32 9 10 / 94%);
  box-shadow: 0 18px 54px rgb(0 0 0 / 40%);
}

.cookie-banner p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.5;
}

.cookie-banner button {
  flex: 0 0 auto;
  min-height: 42px;
  border: 0;
  border-radius: 999px;
  padding: 10px 18px;
  background: var(--button-color);
  color: var(--accent-color);
  cursor: pointer;
  font: inherit;
  font-weight: 800;
}

@media (max-width: 820px) {
  .site-header,
  .site-footer,
  .nav,
  .site-footer nav {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero,
  .split,
  .split-reverse {
    grid-template-columns: 1fr;
  }

  .split-reverse .content-card {
    order: 0;
  }

  .cookie-banner {
    align-items: stretch;
    flex-direction: column;
  }
}
