:root {
  color-scheme: dark;
  --bg: #12100f;
  --bg-accent: #2c1611;
  --panel: rgba(28, 23, 20, 0.92);
  --panel-strong: rgba(36, 29, 25, 0.96);
  --line: rgba(255, 244, 230, 0.12);
  --text: #f7efe3;
  --muted: rgba(247, 239, 227, 0.74);
  --red: #d95432;
  --amber: #ffb454;
  --shadow: 0 26px 70px rgba(0, 0, 0, 0.32);
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top, rgba(217, 84, 50, 0.18), transparent 32%),
    linear-gradient(180deg, #171210 0%, var(--bg) 100%);
  color: var(--text);
  font-family: "IBM Plex Sans", sans-serif;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: 0.22;
  pointer-events: none;
}

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

.top-line {
  width: min(1120px, calc(100% - 32px));
  height: 3px;
  margin: 0 auto;
  background: linear-gradient(90deg, transparent, var(--red), var(--amber), transparent);
}

.page-shell {
  position: relative;
  z-index: 1;
  width: min(860px, calc(100% - 32px));
  margin: 0 auto;
  padding: 24px 0 72px;
}

.crumb {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 26px;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.crumb strong {
  color: var(--text);
  font-family: "Bebas Neue", sans-serif;
  font-size: 22px;
  letter-spacing: 0.06em;
}

.page-title {
  margin: 0 0 10px;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(54px, 12vw, 92px);
  line-height: 0.94;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.page-subtitle {
  max-width: 720px;
  margin: 0 0 26px;
  color: var(--muted);
  font-size: clamp(18px, 3vw, 22px);
  line-height: 1.5;
}

.page-card {
  margin-bottom: 18px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent),
    var(--panel);
  box-shadow: var(--shadow);
}

.section-title {
  margin: 0 0 12px;
  color: var(--amber);
  font-family: "Bebas Neue", sans-serif;
  font-size: 30px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-copy,
.page-card li,
.page-card p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.72;
}

.page-card ul {
  margin: 0;
  padding-left: 18px;
}

.page-card li + li {
  margin-top: 10px;
}

.contact-form {
  display: grid;
  gap: 14px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font: inherit;
}

.contact-form select {
  appearance: none;
}

.contact-form textarea {
  min-height: 180px;
  resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(247, 239, 227, 0.44);
}

.page-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 54px;
  padding: 0 24px;
  border: none;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--red), var(--amber));
  color: #140f0c;
  cursor: pointer;
  font-family: "Bebas Neue", sans-serif;
  font-size: 22px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  transition: transform 160ms ease, filter 160ms ease;
}

.page-btn:hover:not(:disabled) {
  transform: translateY(-1px);
  filter: brightness(1.04);
}

.page-btn:disabled {
  cursor: wait;
  opacity: 0.72;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.footer-line {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 14px;
  margin: 38px 0 18px;
}

.footer-line div {
  height: 1px;
  background: var(--line);
}

.footer-line span {
  color: var(--amber);
  font-family: "Bebas Neue", sans-serif;
  font-size: 22px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.site-meta {
  display: grid;
  gap: 16px;
}

.site-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 16px;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.site-disclaimer {
  max-width: 760px;
  margin: 0;
  color: rgba(247, 239, 227, 0.58);
  font-size: 13px;
  line-height: 1.65;
}

@media (max-width: 720px) {
  .page-shell {
    width: min(100% - 24px, 100%);
    padding-bottom: 56px;
  }

  .page-card {
    padding: 20px 18px;
    border-radius: 24px;
  }

  .page-title {
    font-size: clamp(44px, 15vw, 72px);
  }

  .page-subtitle {
    font-size: 17px;
  }
}
