:root{
  --text:#272727;
  --gap-desktop:70px;
  --btn:#5F3279;
  --btn-hover:#4b2660;
}

html, body {
  height: 100%;
  margin: 0;
  background: linear-gradient(330.67deg, #BDD7E6 0%, #C3CBDD 100%);
  color: var(--text);
  font-family: "Montserrat", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

body {
  padding: 40px;
  box-sizing: border-box;
}

.page {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero {
  width: 100%;
  max-width: 1200px;
  display: flex;
  align-items: center;
  gap: var(--gap-desktop);
}

.col {
  flex: 1 1 0;
  min-width: 0;
}

.col.text { max-width: 480px; }

h1 {
  font-family: "Bree Serif", serif;
  font-size: 66px;
  line-height: 1.05;
  letter-spacing: 0;
  margin: 0 0 18px 0;
  color: var(--text);
  font-weight: normal;
}

.lead {
  font-size: 18px;
  line-height: 1.4;
  margin: 0 0 20px 0;
}

form {
  display: grid;
  gap: 14px;
  max-width: 320px;
}

label {
  font-size: 14px;
  font-weight: 600;
  display: inline-block;
  margin-bottom: -5px;
}

.input,
textarea,
button {
  height: 44px;
  border: none;
  border-radius: 0;
  padding: 0 13px;
  font-size: 13px;
  background: #fff;
  box-shadow: 0px 2.9423px 25.8922px 0.588459px rgba(33, 52, 63, 0.1);
  outline: none;
}

textarea { 
  height: 110px; 
  padding-top: 12px; 
  resize: vertical;
}

input { 
  margin-bottom: 4px;
}

.hp-wrap { 
  position: absolute; 
  left: -10000px; 
  top: auto; 
  width: 1px; 
  height: 1px; 
  overflow: hidden; 
}

button {
  background: var(--btn);
  color: #fff;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  cursor: pointer;
  border-radius: 50px;
  width: fit-content;
  padding: 0 30px;
}

button:hover { 
  background: #F4DDB0; 
  border: 2px solid #5A416F; 
  color: #5A416F;
}

button:disabled,
button[aria-disabled="true"],
.button:disabled,
.button[aria-disabled="true"] {
  opacity: .4;
  cursor: not-allowed;
  pointer-events: none;
  box-shadow: none;
  filter: grayscale(25%);
}

input:disabled, label:disabled, input[aria-disabled="true"], label[aria-disabled="true"] {
  opacity:0.4
}

.status { 
margin-top: 18px;
    font-size: 16px;
    font-weight: bold;
    line-height: 1.35;
}

.shot {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  box-shadow: 0px 2.9423px 25.8922px 0.588459px rgba(33, 52, 63, 0.1);
}

@media (max-width: 1150px) {
  h1 { font-size: 52px; }
  .lead { font-size: 16px; }
}

@media (max-width: 1024px) {
  .hero {
    flex-direction: column;
    gap: 28px;
    align-items: center;
  }
  .col.image { order: -1; max-width: 440px; }
  h1 { font-size: 40px; }
  .lead { font-size: 16px; }
  form { max-width: 100%; }
}

@media (max-width: 767px) {
  h1 { font-size: 36px; }
  .lead { font-size: 14px; }
}

@media (max-width: 375px) {
  h1 { font-size: 22px; margin: 0 0 10px 0; }
  .lead { font-size: 12px; }
  .hero {
    gap: 20px;
  }
}