* {
  box-sizing: border-box;
}
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: #151515;
  background: #f5f5f2;
  line-height: 1.65;
}
header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: #050505;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
header > div {
  max-width: 1180px;
  margin: 0 auto;
  /* padding: 14px 22px; */
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}
header img {
  width: 150px;
  height: auto;
  display: block;
}
nav {
  display: flex;
  align-items: center;
  gap: 18px;
}
nav a {
  color: #fff;
  text-decoration: none;
  letter-spacing: 0.08em;
  font-size: 15px;
  padding: 12px 22px;
  border-radius: 5px;
}
nav a:last-child {
  color: #080808;
  background: #e1c600;
  font-weight: 700;
  text-transform: uppercase;
}
main {
  max-width: 1180px;
  margin: 0 auto;
  background: #fff;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}
figure {
  position: relative;
  margin: 0;
  min-height: 420px;
  overflow: hidden;
  background: #111;
}
figure > img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
  filter: brightness(0.72) saturate(1.1);
}
figcaption {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  padding: 24px;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.15));
}
figcaption a {
  width: 108px;
  height: 108px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #e1c600;
  color: #050505;
  text-decoration: none;
  font-size: 42px;
  font-weight: 800;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
}
figcaption p {
  margin: 18px 0 0;
  color: #fff;
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 0.08em;
  font-size: 24px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.45);
}
article {
  padding: 38px 28px 70px;
}
h1 {
  margin: 0 0 18px;
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1.08;
  letter-spacing: -0.03em;
}
h2 {
  margin: 44px 0 14px;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.2;
  letter-spacing: -0.02em;
}
p {
  margin: 0 0 16px;
  font-size: 18px;
}
strong {
  font-weight: 800;
}
table {
  width: 100%;
  border-collapse: collapse;
  margin: 22px 0 30px;
  font-size: 16px;
  overflow: hidden;
  border-radius: 10px;
}
thead {
  background: #dfc900;
  color: #111;
}
th,
td {
  padding: 14px 16px;
  border: 1px solid #fff;
  text-align: left;
  vertical-align: top;
}
tbody tr:nth-child(odd) {
  background: #f7f1bf;
}
tbody tr:nth-child(even) {
  background: #fffdf0;
}
td[align="right"],
th[align="right"] {
  text-align: right;
}
ul {
  margin: 18px 0 28px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}
li {
  position: relative;
  padding-left: 34px;
  font-size: 18px;
}
li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 1px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #dfc900;
  color: #111;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 14px;
}
li p {
  margin: 0;
}
article > section {
  margin: 36px 0;
  padding: 24px;
  border-radius: 16px;
  background: #1e1e1e;
  color: #fff;
  display: grid;
  grid-template-columns: 1fr 1fr 220px;
  align-items: center;
  gap: 20px;
}
article > section img {
  width: 150px;
  max-width: 100%;
}
article > section p {
  margin: 0;
  font-weight: 800;
  text-align: center;
}
article > section span {
  color: #dfc900;
}
article > section a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 56px;
  padding: 14px 24px;
  border-radius: 6px;
  background: #dfc900;
  color: #050505;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 0.04em;
}
footer {
  background: #090903;
  color: #fff;
}
footer > div {
  max-width: 1180px;
  margin: 0 auto;
  padding: 34px 24px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
  align-items: center;
}
footer img {
  width: 160px;
  display: block;
  margin-bottom: 16px;
}
footer p {
  font-size: 15px;
  margin: 0;
}
footer a {
  color: #dfc900;
  font-weight: 700;
}
footer small {
  display: block;
  text-align: center;
  background: #1b1b1b;
  padding: 18px;
  font-size: 14px;
}
@media (max-width: 760px) {
  header > div {
    flex-direction: column;
    gap: 10px;
  }
  nav {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }
  nav a {
    flex: 1;
    text-align: center;
    min-width: 130px;
  }
  figure,
  figure > img {
    min-height: 330px;
    height: 330px;
  }
  article {
    padding: 28px 16px 54px;
  }
  table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }
  article > section {
    grid-template-columns: 1fr;
    text-align: center;
  }
  article > section img {
    margin: 0 auto;
  }
  footer > div {
    grid-template-columns: 1fr;
  }
}
