* {
  box-sizing: border-box;
}

:root {
  --accent: #c9a84c;
  --accent-dark: #8a6500;
  --accent-rgb: 201, 168, 76;
}

html,
body {
  margin: 0;
  min-height: 100%;
  background: #0d0d0d;
  color: #fff;
  font-family: "Inter", sans-serif;
}

body {
  -webkit-text-size-adjust: 100%;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

.top-line {
  height: 5px;
  background: var(--accent);
  box-shadow: 0 0 20px var(--accent);
}

.page-shell {
  max-width: 760px;
  margin: 0 auto;
  padding: 28px 20px 56px;
}

.crumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.38);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.crumb strong {
  color: #fff;
  font-weight: 700;
}

.page-title {
  margin: 20px 0 0;
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: clamp(42px, 10vw, 74px);
  line-height: 0.94;
  letter-spacing: 0.05em;
}

.page-subtitle {
  max-width: 660px;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  line-height: 1.8;
}

.page-card {
  margin-top: 28px;
  padding: 24px 22px;
  border: 1px solid rgba(var(--accent-rgb), 0.18);
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
}

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

.section-title {
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: clamp(24px, 5vw, 34px);
  line-height: 0.98;
  letter-spacing: 0.05em;
}

.section-copy,
.page-card li {
  color: rgba(255, 255, 255, 0.74);
  font-size: 14px;
  line-height: 1.85;
}

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

.page-card p + p,
.page-card p + ul,
.page-card ul + p {
  margin-top: 12px;
}

.contact-form {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  color: #fff;
  padding: 14px;
  border-radius: 10px;
  outline: none;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.34);
}

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

.page-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 58px;
  margin-top: 14px;
  border: none;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--accent-dark), var(--accent));
  color: #000;
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: clamp(20px, 4vw, 24px);
  letter-spacing: 0.12em;
  cursor: pointer;
}

.page-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.form-status {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 12px;
  line-height: 1.6;
}

.footer-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 34px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-line div {
  height: 1px;
  flex: 1;
  background: rgba(var(--accent-rgb), 0.16);
}

.footer-line span {
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.12);
  letter-spacing: 0.3em;
}

.site-meta {
  margin-top: 18px;
  text-align: center;
}

.site-links {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.28);
}

.site-disclaimer {
  max-width: 760px;
  margin: 10px auto 0;
  color: rgba(255, 255, 255, 0.18);
  font-size: 10px;
  line-height: 1.6;
}

@media (max-width: 560px) {
  .page-shell {
    padding: 24px 16px 42px;
  }

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