* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background: #f7f4ec;
  color: #161616;
  font-family: Arial, Helvetica, sans-serif;
}

.site-header {
  background: #050505;
  color: #f7f1df;
  padding: 28px 18px 32px;
  border-bottom: 1px solid #c8a24a;
}

.brand {
  max-width: 720px;
  margin: 0 auto 18px;
}

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

.call-button {
  display: block;
  max-width: 720px;
  margin: 0 auto;
  border-radius: 8px;
  background: #d4af37;
  color: #080808;
  padding: 16px;
  text-align: center;
  text-decoration: none;
  font-size: 18px;
  font-weight: 700;
}

.page {
  width: min(100%, 760px);
  margin: 0 auto;
  padding: 48px 18px;
}

.intro h1,
.thank-you h1 {
  margin: 0 0 28px;
  color: #151515;
  font-size: 40px;
  line-height: 1.1;
}

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

input,
textarea {
  width: 100%;
  border: 1px solid #b89438;
  border-radius: 8px;
  background: #ffffff;
  padding: 16px 18px;
  color: #161616;
  font: inherit;
}

input::placeholder,
textarea::placeholder {
  color: #786f5a;
}

textarea {
  resize: vertical;
}

.upload-box {
  display: grid;
  gap: 10px;
  place-items: center;
  min-height: 190px;
  border: 2px dashed #b89438;
  border-radius: 8px;
  background: #ffffff;
  padding: 24px;
  text-align: center;
  cursor: pointer;
}

.upload-box span {
  max-width: 620px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.35;
}

.upload-box small {
  color: #706a5a;
  font-size: 15px;
  line-height: 1.4;
}

.upload-box input {
  border: 0;
  padding: 8px;
  text-align: center;
}

button {
  border: 0;
  border-radius: 6px;
  background: #d4af37;
  color: #080808;
  padding: 17px;
  font-size: 18px;
  font-weight: 800;
  text-transform: uppercase;
  cursor: pointer;
}

button:hover,
.call-button:hover {
  background: #f0cf66;
}

.disclaimer {
  margin: 4px 0 0;
  padding: 12px 14px;
  border-left: 4px solid #b89438;
  background: #fffaf0;
  color: #4f4635;
  font-size: 15px;
  line-height: 1.5;
}

.thank-you p {
  font-size: 18px;
  line-height: 1.5;
}

.thank-you a {
  color: #d4af37;
  font-weight: 700;
}

@media (max-width: 520px) {
  .brand {
    font-size: 28px;
  }

  .intro h1,
  .thank-you h1 {
    font-size: 34px;
  }
}
