:root{
  --burgundy:#8c001f;
  --burgundy-dark:#710019;
  --text:#222;
  --line:#e6e6e6;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Arial,Helvetica,sans-serif;
  color:var(--text);
  background:#fff;
}
img{display:block;max-width:100%}
a{text-decoration:none;color:inherit}
.wrap{width:min(1180px,calc(100% - 36px));margin:0 auto}

.topbar{
  background:#fff;
  border-bottom:1px solid #eeeeee;
}
.topbar-inner{
  min-height:86px;
  display:flex;
  align-items:center;
  justify-content:space-between;
}
.topbar-spacer{
  width:1px;
  height:1px;
}
.contact-link{
  font-size:13px;
  font-weight:700;
  color:#202020;
  letter-spacing:.04em;
}

.hero{
  background:#f7f4f2;
}
.hero img{
  width:100%;
  height:auto;
}

.contact-section{
  padding:56px 0 64px;
  background:#fff;
}
.contact-grid{
  display:grid;
  grid-template-columns:.82fr 1.18fr;
  gap:52px;
  align-items:start;
}
.contact-copy{
  text-align:center;
  padding:12px 8px;
}
.mail-icon{
  width:66px;
  height:66px;
  border:1px solid var(--burgundy);
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  margin:0 auto 22px;
  color:var(--burgundy);
  font-size:28px;
}
.contact-copy h2{
  margin:0;
  color:var(--burgundy);
  font-size:28px;
}
.short-line{
  width:38px;
  height:2px;
  background:var(--burgundy);
  margin:15px auto 23px;
}
.contact-copy p{
  margin:0;
  line-height:1.75;
  font-size:15px;
}
.email-link{
  display:inline-block;
  color:var(--burgundy);
  font-size:19px;
  font-weight:700;
  margin-top:28px;
}

.form-card{
  padding-left:48px;
  border-left:1px solid #ddd;
}
form{
  display:grid;
  gap:14px;
}
input,textarea{
  width:100%;
  padding:16px 17px;
  border:1px solid #ddd;
  border-radius:4px;
  background:#fff;
  color:#222;
  font:inherit;
}
textarea{
  min-height:165px;
  resize:vertical;
}
button{
  border:0;
  border-radius:4px;
  padding:17px 16px;
  background:linear-gradient(90deg,var(--burgundy),#a1082c);
  color:#fff;
  font-size:14px;
  font-weight:700;
  cursor:pointer;
}
button:hover{filter:brightness(.96)}
.hp{display:none!important}
.status{
  margin-bottom:14px;
  padding:12px 14px;
  border-radius:4px;
  font-size:14px;
}
.status.success{background:#eaf7ee;color:#1d6a38;border:1px solid #c9e9d2}
.status.error{background:#fff0f0;color:#9d2525;border:1px solid #efcccc}

footer{
  background:linear-gradient(90deg,#7e001c,#980326 55%,#740018);
  color:#fff;
  padding:34px 0;
}
.footer-simple{
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
  gap:8px;
  font-size:13px;
}
.footer-simple strong{
  font-size:19px;
  letter-spacing:.02em;
}
.copyright{margin-top:10px}

@media(max-width:800px){
  .topbar-inner{min-height:72px}
  .contact-link{font-size:12px}

  .contact-section{padding:44px 0 50px}
  .contact-grid{
    grid-template-columns:1fr;
    gap:30px;
  }
  .form-card{
    border-left:0;
    border-top:1px solid #ddd;
    padding-left:0;
    padding-top:30px;
  }
}

@media(max-width:480px){
  .wrap{width:min(100% - 28px,1180px)}
  .contact-link{font-size:11px}
  .contact-copy h2{font-size:25px}
  .contact-copy p{font-size:14px}
  .email-link{font-size:17px;word-break:break-word}
  input,textarea{padding:15px}
  .footer-simple strong{font-size:17px}
  .footer-simple{font-size:12px}
}
