:root{
  --bg:#ffffff;
  --text:#101113;
  --muted:#6b7280;
  --border:#e5e7eb;
  --accent:#C8B8A6;
  --r:22px;
  --shadow:0 18px 40px rgba(16,17,19,.08);
}
html { 
  font-family: century-gothic, sans-serif;
  font-weight: 400;
  font-style: normal;
}

*{box-sizing:border-box}
body{
  margin:0;
  /* font-family:ui-sans-serif,system-ui,-apple-system,Segoe UI,Roboto,Arial; */
  background:var(--bg);
  color:var(--text);
}

/*.container{*/
/*  width:min(1100px,92%);*/
/*  margin:auto;*/
/*}*/

.contact-hero{
  padding:70px 0 30px;
}
.contact-hero h1{
  margin:0;
  font-size:clamp(28px,4vw,44px);
  letter-spacing:-.5px;
}
.contact-hero p{
  margin:14px 0 0;
  max-width:60ch;
  color:var(--muted);
  line-height:1.7;
}

.contact-wrap{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:32px;
  padding:40px 0 80px;
}
@media(max-width:900px){
  .contact-wrap{grid-template-columns:1fr}
}

.form-card{
  background:#fff;
  border:1px solid var(--border);
  border-radius:var(--r);
  padding:26px;
  box-shadow:var(--shadow);
}

.field{
  display:flex;
  flex-direction:column;
  gap:6px;
  margin-bottom:18px;
}
.field label{
  font-size:13px;
  color:var(--muted);
}
.field input,
.field textarea{
  padding:12px 14px;
  border-radius:14px;
  border:1px solid var(--border);
  font-size:14px;
  font-family:inherit;
}
.field textarea{
  min-height:140px;
  resize:vertical;
}
.field input:focus,
.field textarea:focus{
  outline:none;
  border-color:rgba(200,184,166,.8);
  box-shadow:0 0 0 4px rgba(200,184,166,.22);
}

.btn{
  padding:14px 22px;
  border-radius:999px;
  border:1px solid var(--border);
  background:#fff;
  cursor:pointer;
  font-size:14px;
}
.btn.primary{
  background:#111;
  color:#fff;
  border-color:#111;
}
.btn.primary:hover{
  opacity:.92;
}

.notice{
  padding:14px 16px;
  border-radius:14px;
  font-size:14px;
  margin-bottom:20px;
}
.notice.ok{
  background:rgba(22,163,74,.08);
  color:#166534;
}
.notice.bad{
  background:rgba(220,38,38,.08);
  color:#991b1b;
}

.info{
  padding:26px;
}
.info h3{
  margin:0 0 14px;
  font-size:18px;
}
.info p{
  margin:0 0 18px;
  color:var(--muted);
  line-height:1.7;
}
.info .line{
  padding:12px 0;
  border-bottom:1px solid var(--border);
  font-size:14px;
}
.info .line:last-child{border-bottom:0}