 :root{
  --bg:#ecebe6;
  --bg-light:#f7f6f1;
  --navy:#21395f;
  --sage:#7f8d66;
  --gold:#c2a14a;
  --text:#243650;
}
*{box-sizing:border-box;margin:0;padding:0}
html,body{min-height:100%}
body{
  font-family: Montserrat, Avenir, Arial, sans-serif;
  color:var(--text);
  background:
    radial-gradient(circle at 50% 35%, rgba(255,255,255,.72) 0%, rgba(255,255,255,.30) 34%, rgba(255,255,255,0) 60%),
    linear-gradient(180deg,var(--bg-light) 0%,var(--bg) 100%);
  display:flex;
  align-items:center;
  justify-content:center;
  padding:32px 18px;
}
main{
  width:min(920px,100%);
  text-align:center;
  animation:fadeIn .7s ease-out both;
}
.logo{
  width:min(760px,96%);
  height:auto;
  display:block;
  margin:0 auto 48px;
}
.contact{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:18px 34px;
  flex-wrap:wrap;
  font-size:clamp(1rem,2vw,1.18rem);
  letter-spacing:.03em;
}
.contact a{
  color:var(--navy);
  text-decoration:none;
  border-bottom:1px solid rgba(127,141,102,.38);
  padding-bottom:3px;
  transition:color .2s ease,border-color .2s ease;
}
.contact a:hover{color:var(--sage);border-color:var(--gold)}
.separator{color:var(--sage)}
@media (max-width:640px){
  body{padding:26px 18px}
  .logo{margin-bottom:36px}
  .contact{gap:14px;line-height:1.8;flex-direction:column}
  .separator{display:none}
}
@keyframes fadeIn{from{opacity:0;transform:translateY(8px)}to{opacity:1;transform:none}}
