:root{
  --bg:#ffffff;
  --fg:#0b0b0b;
  --muted:#5a5a5a;
  --line:#e9e9e9;
  --max: 920px;
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  background:var(--bg);
  color:var(--fg);
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  -webkit-font-smoothing:antialiased;
  line-height:1.4;
}

.wrap{
  max-width:var(--max);
  margin:0 auto;
  padding:72px 24px 64px;
}

.hero{
  padding: 0 0 48px;
  border-bottom:1px solid var(--line);
}

.logo{
  width: 280px;
  height: auto;
  display: block;
  margin: 0 auto 27px 0;
}

.lead{
  font-size: 22px;
  margin: 0 0 14px;
}

.sublead{
  font-size: 18px;
  color: var(--muted);
  margin: 0;
}

.section{
  padding: 48px 0;
  border-bottom:1px solid var(--line);
}

h2{
  margin:0 0 18px;
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.work{ margin: 0 0 30px; }
.caption{
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.embed{
  width:100%;
  background:#000;
  border-radius: 16px;
  overflow:hidden;
  border: 1px solid #111;
}

.embed::before{
  content:"";
  display:block;
  padding-top:56.25%;
}
.embed iframe{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
}
.embed{ position:relative; }

.list{
  margin:0;
  padding-left: 18px;
}
.list li{ margin: 10px 0; }

.contact a{
  color:var(--fg);
  text-decoration:none;
  border-bottom:1px solid var(--line);
}
.contact a:hover{
  border-bottom-color:var(--fg);
}

.footer{
  padding-top: 28px;
  color: var(--muted);
  font-size: 13px;
}
